1
1
/*!
2
- * Vue.js v2.6.0-beta.3
2
+ * Vue.js v2.6.0
3
3
* (c) 2014-2019 Evan You
4
4
* Released under the MIT License.
5
5
*/
@@ -2752,7 +2752,7 @@ function resolveScopedSlots (
2752
2752
var slot = fns [ i ] ;
2753
2753
if ( Array . isArray ( slot ) ) {
2754
2754
resolveScopedSlots ( slot , hasDynamicKeys , res ) ;
2755
- } else {
2755
+ } else if ( slot ) {
2756
2756
res [ slot . key ] = slot . fn ;
2757
2757
}
2758
2758
}
@@ -3899,7 +3899,7 @@ function normalizeScopedSlots (
3899
3899
}
3900
3900
}
3901
3901
res . _normalized = true ;
3902
- res . $stable = slots && slots . $stable ;
3902
+ res . $stable = slots ? slots . $stable : true ;
3903
3903
return res
3904
3904
}
3905
3905
@@ -5319,7 +5319,7 @@ Object.defineProperty(Vue, 'FunctionalRenderContext', {
5319
5319
value : FunctionalRenderContext
5320
5320
} ) ;
5321
5321
5322
- Vue . version = '2.6.0-beta.3 ' ;
5322
+ Vue . version = '2.6.0' ;
5323
5323
5324
5324
/* */
5325
5325
@@ -5340,6 +5340,17 @@ var mustUseProp = function (tag, type, attr) {
5340
5340
5341
5341
var isEnumeratedAttr = makeMap ( 'contenteditable,draggable,spellcheck' ) ;
5342
5342
5343
+ var isValidContentEditableValue = makeMap ( 'events,caret,typing,plaintext-only' ) ;
5344
+
5345
+ var convertEnumeratedValue = function ( key , value ) {
5346
+ return isFalsyAttrValue ( value ) || value === 'false'
5347
+ ? 'false'
5348
+ // allow arbitrary string value for contenteditable
5349
+ : key === 'contenteditable' && isValidContentEditableValue ( value )
5350
+ ? value
5351
+ : 'true'
5352
+ } ;
5353
+
5343
5354
var isBooleanAttr = makeMap (
5344
5355
'allowfullscreen,async,autofocus,autoplay,checked,compact,controls,declare,' +
5345
5356
'default,defaultchecked,defaultmuted,defaultselected,defer,disabled,' +
@@ -6607,7 +6618,7 @@ function setAttr (el, key, value) {
6607
6618
el . setAttribute ( key , value ) ;
6608
6619
}
6609
6620
} else if ( isEnumeratedAttr ( key ) ) {
6610
- el . setAttribute ( key , isFalsyAttrValue ( value ) || value === 'false' ? 'false' : 'true' ) ;
6621
+ el . setAttribute ( key , convertEnumeratedValue ( key , value ) ) ;
6611
6622
} else if ( isXlink ( key ) ) {
6612
6623
if ( isFalsyAttrValue ( value ) ) {
6613
6624
el . removeAttributeNS ( xlinkNS , getXlinkProp ( key ) ) ;
@@ -7622,7 +7633,7 @@ var setProp = function (el, name, val) {
7622
7633
if ( cssVarRE . test ( name ) ) {
7623
7634
el . style . setProperty ( name , val ) ;
7624
7635
} else if ( importantRE . test ( val ) ) {
7625
- el . style . setProperty ( name , val . replace ( importantRE , '' ) , 'important' ) ;
7636
+ el . style . setProperty ( hyphenate ( name ) , val . replace ( importantRE , '' ) , 'important' ) ;
7626
7637
} else {
7627
7638
var normalizedName = normalize ( name ) ;
7628
7639
if ( Array . isArray ( val ) ) {
@@ -9380,15 +9391,14 @@ function parseHTML (html, options) {
9380
9391
/* */
9381
9392
9382
9393
var onRE = / ^ @ | ^ v - o n : / ;
9383
- var dirRE = / ^ v - | ^ @ | ^ : | ^ \. / ;
9394
+ var dirRE = / ^ v - | ^ @ | ^ : / ;
9384
9395
var forAliasRE = / ( [ \s \S ] * ?) \s + (?: i n | o f ) \s + ( [ \s \S ] * ) / ;
9385
9396
var forIteratorRE = / , ( [ ^ , \} \] ] * ) (?: , ( [ ^ , \} \] ] * ) ) ? $ / ;
9386
9397
var stripParensRE = / ^ \( | \) $ / g;
9387
9398
var dynamicArgRE = / ^ \[ .* \] $ / ;
9388
9399
9389
9400
var argRE = / : ( .* ) $ / ;
9390
9401
var bindRE = / ^ : | ^ \. | ^ v - b i n d : / ;
9391
- var propBindRE = / ^ \. / ;
9392
9402
var modifierRE = / \. [ ^ . ] + / g;
9393
9403
9394
9404
var slotRE = / ^ v - s l o t ( : | $ ) | ^ # / ;
@@ -9465,6 +9475,7 @@ function parse (
9465
9475
}
9466
9476
9467
9477
function closeElement ( element ) {
9478
+ trimEndingWhitespace ( element ) ;
9468
9479
if ( ! inVPre && ! element . processed ) {
9469
9480
element = processElement ( element , options ) ;
9470
9481
}
@@ -9491,14 +9502,25 @@ function parse (
9491
9502
if ( currentParent && ! element . forbidden ) {
9492
9503
if ( element . elseif || element . else ) {
9493
9504
processIfConditions ( element , currentParent ) ;
9494
- } else if ( element . slotScope ) { // scoped slot
9495
- var name = element . slotTarget || '"default"'
9496
- ; ( currentParent . scopedSlots || ( currentParent . scopedSlots = { } ) ) [ name ] = element ;
9497
9505
} else {
9506
+ if ( element . slotScope ) {
9507
+ // scoped slot
9508
+ // keep it in the children list so that v-else(-if) conditions can
9509
+ // find it as the prev node.
9510
+ var name = element . slotTarget || '"default"'
9511
+ ; ( currentParent . scopedSlots || ( currentParent . scopedSlots = { } ) ) [ name ] = element ;
9512
+ }
9498
9513
currentParent . children . push ( element ) ;
9499
9514
element . parent = currentParent ;
9500
9515
}
9501
9516
}
9517
+
9518
+ // final children cleanup
9519
+ // filter out scoped slots
9520
+ element . children = element . children . filter ( function ( c ) { return ! ( c ) . slotScope ; } ) ;
9521
+ // remove trailing whitespace node again
9522
+ trimEndingWhitespace ( element ) ;
9523
+
9502
9524
// check pre state
9503
9525
if ( element . pre ) {
9504
9526
inVPre = false ;
@@ -9512,6 +9534,20 @@ function parse (
9512
9534
}
9513
9535
}
9514
9536
9537
+ function trimEndingWhitespace ( el ) {
9538
+ // remove trailing whitespace node
9539
+ if ( ! inPre ) {
9540
+ var lastNode ;
9541
+ while (
9542
+ ( lastNode = el . children [ el . children . length - 1 ] ) &&
9543
+ lastNode . type === 3 &&
9544
+ lastNode . text === ' '
9545
+ ) {
9546
+ el . children . pop ( ) ;
9547
+ }
9548
+ }
9549
+ }
9550
+
9515
9551
function checkRootConstraints ( el ) {
9516
9552
if ( el . tag === 'slot' || el . tag === 'template' ) {
9517
9553
warnOnce (
@@ -9626,13 +9662,6 @@ function parse (
9626
9662
9627
9663
end : function end ( tag , start , end$1 ) {
9628
9664
var element = stack [ stack . length - 1 ] ;
9629
- if ( ! inPre ) {
9630
- // remove trailing whitespace node
9631
- var lastNode = element . children [ element . children . length - 1 ] ;
9632
- if ( lastNode && lastNode . type === 3 && lastNode . text === ' ' ) {
9633
- element . children . pop ( ) ;
9634
- }
9635
- }
9636
9665
// pop stack
9637
9666
stack . length -= 1 ;
9638
9667
currentParent = stack [ stack . length - 1 ] ;
@@ -9976,6 +10005,13 @@ function processSlotContent (el) {
9976
10005
el
9977
10006
) ;
9978
10007
}
10008
+ if ( el . parent && ! maybeComponent ( el . parent ) ) {
10009
+ warn$2 (
10010
+ "<template v-slot> can only appear at the root level inside " +
10011
+ "the receiving the component" ,
10012
+ el
10013
+ ) ;
10014
+ }
9979
10015
}
9980
10016
var ref = getSlotName ( slotBinding ) ;
9981
10017
var name = ref . name ;
@@ -10015,8 +10051,9 @@ function processSlotContent (el) {
10015
10051
var name$1 = ref$1 . name ;
10016
10052
var dynamic$1 = ref$1 . dynamic ;
10017
10053
var slotContainer = slots [ name$1 ] = createASTElement ( 'template' , [ ] , el ) ;
10054
+ slotContainer . slotTarget = name$1 ;
10018
10055
slotContainer . slotTargetDynamic = dynamic$1 ;
10019
- slotContainer . children = el . children ;
10056
+ slotContainer . children = el . children . filter ( function ( c ) { return ! ( c ) . slotScope ; } ) ;
10020
10057
slotContainer . slotScope = slotBinding$1 . value || "_" ;
10021
10058
// remove children as they are returned from scopedSlots now
10022
10059
el . children = [ ] ;
@@ -10083,10 +10120,7 @@ function processAttrs (el) {
10083
10120
// modifiers
10084
10121
modifiers = parseModifiers ( name . replace ( dirRE , '' ) ) ;
10085
10122
// support .foo shorthand syntax for the .prop modifier
10086
- if ( propBindRE . test ( name ) ) {
10087
- ( modifiers || ( modifiers = { } ) ) . prop = true ;
10088
- name = "." + name . slice ( 1 ) . replace ( modifierRE , '' ) ;
10089
- } else if ( modifiers ) {
10123
+ if ( modifiers ) {
10090
10124
name = name . replace ( modifierRE , '' ) ;
10091
10125
}
10092
10126
if ( bindRE . test ( name ) ) { // v-bind
@@ -11023,43 +11057,30 @@ function genScopedSlots (
11023
11057
slots ,
11024
11058
state
11025
11059
) {
11026
- var hasDynamicKeys = Object . keys ( slots ) . some ( function ( key ) { return slots [ key ] . slotTargetDynamic ; } ) ;
11060
+ var hasDynamicKeys = Object . keys ( slots ) . some ( function ( key ) {
11061
+ var slot = slots [ key ] ;
11062
+ return slot . slotTargetDynamic || slot . if || slot . for
11063
+ } ) ;
11027
11064
return ( "scopedSlots:_u([" + ( Object . keys ( slots ) . map ( function ( key ) {
11028
- return genScopedSlot ( key , slots [ key ] , state )
11065
+ return genScopedSlot ( slots [ key ] , state )
11029
11066
} ) . join ( ',' ) ) + "]" + ( hasDynamicKeys ? ",true" : "" ) + ")" )
11030
11067
}
11031
11068
11032
11069
function genScopedSlot (
11033
- key ,
11034
11070
el ,
11035
11071
state
11036
11072
) {
11073
+ if ( el . if && ! el . ifProcessed ) {
11074
+ return genIf ( el , state , genScopedSlot , "null" )
11075
+ }
11037
11076
if ( el . for && ! el . forProcessed ) {
11038
- return genForScopedSlot ( key , el , state )
11077
+ return genFor ( el , state , genScopedSlot )
11039
11078
}
11040
11079
var fn = "function(" + ( String ( el . slotScope ) ) + "){" +
11041
11080
"return " + ( el . tag === 'template'
11042
- ? el . if
11043
- ? ( "(" + ( el . if ) + ")?" + ( genChildren ( el , state ) || 'undefined' ) + ":undefined" )
11044
- : genChildren ( el , state ) || 'undefined'
11081
+ ? genChildren ( el , state ) || 'undefined'
11045
11082
: genElement ( el , state ) ) + "}" ;
11046
- return ( "{key:" + key + ",fn:" + fn + "}" )
11047
- }
11048
-
11049
- function genForScopedSlot (
11050
- key ,
11051
- el ,
11052
- state
11053
- ) {
11054
- var exp = el . for ;
11055
- var alias = el . alias ;
11056
- var iterator1 = el . iterator1 ? ( "," + ( el . iterator1 ) ) : '' ;
11057
- var iterator2 = el . iterator2 ? ( "," + ( el . iterator2 ) ) : '' ;
11058
- el . forProcessed = true ; // avoid recursion
11059
- return "_l((" + exp + ")," +
11060
- "function(" + alias + iterator1 + iterator2 + "){" +
11061
- "return " + ( genScopedSlot ( key , el , state ) ) +
11062
- '})'
11083
+ return ( "{key:" + ( el . slotTarget || "\"default\"" ) + ",fn:" + fn + "}" )
11063
11084
}
11064
11085
11065
11086
function genChildren (
0 commit comments