@symbo.ls/shorthand 2.34.35 → 3.2.7
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/esm/decode.js +167 -0
- package/dist/esm/encode.js +166 -0
- package/dist/esm/further.js +250 -0
- package/dist/esm/index.js +27 -0
- package/dist/esm/registry.js +592 -0
- package/dist/iife/index.js +1180 -0
- package/package.json +23 -10
- package/dist/cjs/package.json +0 -4
- package/docs/SymbolsProps.md +0 -728
- package/docs/SymbolsPropsAbbr.md +0 -721
package/docs/SymbolsProps.md
DELETED
|
@@ -1,728 +0,0 @@
|
|
|
1
|
-
# Symbols Property Reference
|
|
2
|
-
|
|
3
|
-
All possible properties used in Symbols (DOMQL v3): CSS-in-props, HTML attributes, JS events, and core DOMQL properties.
|
|
4
|
-
|
|
5
|
-
---
|
|
6
|
-
|
|
7
|
-
## Core DOMQL Properties
|
|
8
|
-
|
|
9
|
-
- attr
|
|
10
|
-
- childExtends
|
|
11
|
-
- childExtendsRecursive
|
|
12
|
-
- childProps
|
|
13
|
-
- children
|
|
14
|
-
- childrenAs
|
|
15
|
-
- class
|
|
16
|
-
- content
|
|
17
|
-
- context
|
|
18
|
-
- data
|
|
19
|
-
- extends
|
|
20
|
-
- hide
|
|
21
|
-
- html
|
|
22
|
-
- if
|
|
23
|
-
- ignoreChildExtend
|
|
24
|
-
- key
|
|
25
|
-
- query
|
|
26
|
-
- routes
|
|
27
|
-
- scope
|
|
28
|
-
- show
|
|
29
|
-
- state
|
|
30
|
-
- style
|
|
31
|
-
- tag
|
|
32
|
-
- text
|
|
33
|
-
|
|
34
|
-
---
|
|
35
|
-
|
|
36
|
-
## Symbols Shorthand Props
|
|
37
|
-
|
|
38
|
-
- align (alignItems + justifyContent)
|
|
39
|
-
- boxSize (width + height)
|
|
40
|
-
- flow (flexFlow shorthand: 'x' = row, 'y' = column)
|
|
41
|
-
- heightRange (minHeight + maxHeight)
|
|
42
|
-
- horizontalInset (left + right)
|
|
43
|
-
- round (borderRadius)
|
|
44
|
-
- shadow (boxShadow)
|
|
45
|
-
- size (width + height)
|
|
46
|
-
- templateColumns (gridTemplateColumns)
|
|
47
|
-
- verticalInset (top + bottom)
|
|
48
|
-
- widthRange (minWidth + maxWidth)
|
|
49
|
-
- wrap (flexWrap)
|
|
50
|
-
|
|
51
|
-
---
|
|
52
|
-
|
|
53
|
-
## CSS Properties (Unified in Props)
|
|
54
|
-
|
|
55
|
-
### Box / Sizing
|
|
56
|
-
|
|
57
|
-
- aspectRatio
|
|
58
|
-
- blockSize
|
|
59
|
-
- boxSizing
|
|
60
|
-
- height
|
|
61
|
-
- inlineSize
|
|
62
|
-
- margin
|
|
63
|
-
- marginBottom
|
|
64
|
-
- marginLeft
|
|
65
|
-
- marginRight
|
|
66
|
-
- marginTop
|
|
67
|
-
- maxBlockSize
|
|
68
|
-
- maxHeight
|
|
69
|
-
- maxInlineSize
|
|
70
|
-
- maxWidth
|
|
71
|
-
- minBlockSize
|
|
72
|
-
- minHeight
|
|
73
|
-
- minInlineSize
|
|
74
|
-
- minWidth
|
|
75
|
-
- padding
|
|
76
|
-
- paddingBottom
|
|
77
|
-
- paddingInline
|
|
78
|
-
- paddingLeft
|
|
79
|
-
- paddingRight
|
|
80
|
-
- paddingTop
|
|
81
|
-
- width
|
|
82
|
-
|
|
83
|
-
### Flexbox
|
|
84
|
-
|
|
85
|
-
- alignContent
|
|
86
|
-
- alignItems
|
|
87
|
-
- alignSelf
|
|
88
|
-
- flex
|
|
89
|
-
- flexBasis
|
|
90
|
-
- flexDirection
|
|
91
|
-
- flexFlow
|
|
92
|
-
- flexGrow
|
|
93
|
-
- flexShrink
|
|
94
|
-
- flexWrap
|
|
95
|
-
- gap
|
|
96
|
-
- justifyContent
|
|
97
|
-
- justifyItems
|
|
98
|
-
- justifySelf
|
|
99
|
-
- order
|
|
100
|
-
- placeContent
|
|
101
|
-
- placeItems
|
|
102
|
-
- placeSelf
|
|
103
|
-
- rowGap
|
|
104
|
-
|
|
105
|
-
### Grid
|
|
106
|
-
|
|
107
|
-
- columnGap
|
|
108
|
-
- gridArea
|
|
109
|
-
- gridAutoColumns
|
|
110
|
-
- gridAutoFlow
|
|
111
|
-
- gridAutoRows
|
|
112
|
-
- gridColumn
|
|
113
|
-
- gridColumnEnd
|
|
114
|
-
- gridColumnStart
|
|
115
|
-
- gridRow
|
|
116
|
-
- gridRowEnd
|
|
117
|
-
- gridRowStart
|
|
118
|
-
- gridTemplateAreas
|
|
119
|
-
- gridTemplateColumns
|
|
120
|
-
- gridTemplateRows
|
|
121
|
-
|
|
122
|
-
### Position
|
|
123
|
-
|
|
124
|
-
- bottom
|
|
125
|
-
- float
|
|
126
|
-
- inset
|
|
127
|
-
- left
|
|
128
|
-
- position
|
|
129
|
-
- right
|
|
130
|
-
- top
|
|
131
|
-
- zIndex
|
|
132
|
-
|
|
133
|
-
### Display / Visibility
|
|
134
|
-
|
|
135
|
-
- clear
|
|
136
|
-
- contain
|
|
137
|
-
- content
|
|
138
|
-
- cursor
|
|
139
|
-
- display
|
|
140
|
-
- opacity
|
|
141
|
-
- overflow
|
|
142
|
-
- overflowX
|
|
143
|
-
- overflowY
|
|
144
|
-
- pointerEvents
|
|
145
|
-
- resize
|
|
146
|
-
- userSelect
|
|
147
|
-
- visibility
|
|
148
|
-
|
|
149
|
-
### Color / Theme
|
|
150
|
-
|
|
151
|
-
- background
|
|
152
|
-
- backgroundAttachment
|
|
153
|
-
- backgroundBlendMode
|
|
154
|
-
- backgroundClip
|
|
155
|
-
- backgroundColor
|
|
156
|
-
- backgroundImage
|
|
157
|
-
- backgroundOrigin
|
|
158
|
-
- backgroundPosition
|
|
159
|
-
- backgroundPositionX
|
|
160
|
-
- backgroundPositionY
|
|
161
|
-
- backgroundRepeat
|
|
162
|
-
- backgroundRepeatX
|
|
163
|
-
- backgroundRepeatY
|
|
164
|
-
- backgroundSize
|
|
165
|
-
- color
|
|
166
|
-
- theme
|
|
167
|
-
- themeModifier
|
|
168
|
-
|
|
169
|
-
### Border
|
|
170
|
-
|
|
171
|
-
- border
|
|
172
|
-
- borderBottom
|
|
173
|
-
- borderBottomLeftRadius
|
|
174
|
-
- borderBottomRightRadius
|
|
175
|
-
- borderCollapse
|
|
176
|
-
- borderColor
|
|
177
|
-
- borderImage
|
|
178
|
-
- borderImageOutset
|
|
179
|
-
- borderImageRepeat
|
|
180
|
-
- borderImageSlice
|
|
181
|
-
- borderImageSource
|
|
182
|
-
- borderImageWidth
|
|
183
|
-
- borderLeft
|
|
184
|
-
- borderRadius
|
|
185
|
-
- borderRight
|
|
186
|
-
- borderSpacing
|
|
187
|
-
- borderStyle
|
|
188
|
-
- borderTop
|
|
189
|
-
- borderTopLeftRadius
|
|
190
|
-
- borderTopRightRadius
|
|
191
|
-
- borderWidth
|
|
192
|
-
|
|
193
|
-
### Outline
|
|
194
|
-
|
|
195
|
-
- outline
|
|
196
|
-
- outlineColor
|
|
197
|
-
- outlineOffset
|
|
198
|
-
- outlineStyle
|
|
199
|
-
- outlineWidth
|
|
200
|
-
|
|
201
|
-
### Shadow
|
|
202
|
-
|
|
203
|
-
- boxShadow
|
|
204
|
-
- textShadow
|
|
205
|
-
|
|
206
|
-
### Typography
|
|
207
|
-
|
|
208
|
-
- direction
|
|
209
|
-
- fontDisplay
|
|
210
|
-
- fontFamily
|
|
211
|
-
- fontFeatureSettings
|
|
212
|
-
- fontKerning
|
|
213
|
-
- fontOpticalSizing
|
|
214
|
-
- fontPalette
|
|
215
|
-
- fontSize
|
|
216
|
-
- fontSizeAdjust
|
|
217
|
-
- fontSmooth
|
|
218
|
-
- fontStretch
|
|
219
|
-
- fontStyle
|
|
220
|
-
- fontSynthesis
|
|
221
|
-
- fontVariant
|
|
222
|
-
- fontVariationSettings
|
|
223
|
-
- fontWeight
|
|
224
|
-
- hyphens
|
|
225
|
-
- letterSpacing
|
|
226
|
-
- lineHeight
|
|
227
|
-
- tabSize
|
|
228
|
-
- textAlign
|
|
229
|
-
- textDecoration
|
|
230
|
-
- textDecorationColor
|
|
231
|
-
- textDecorationLine
|
|
232
|
-
- textDecorationStyle
|
|
233
|
-
- textIndent
|
|
234
|
-
- textOverflow
|
|
235
|
-
- textStroke
|
|
236
|
-
- textTransform
|
|
237
|
-
- unicodeBidi
|
|
238
|
-
- verticalAlign
|
|
239
|
-
- whiteSpace
|
|
240
|
-
- wordBreak
|
|
241
|
-
- wordSpacing
|
|
242
|
-
- wordWrap
|
|
243
|
-
- writingMode
|
|
244
|
-
|
|
245
|
-
### List / Table
|
|
246
|
-
|
|
247
|
-
- borderCollapse
|
|
248
|
-
- borderSpacing
|
|
249
|
-
- captionSide
|
|
250
|
-
- counterIncrement
|
|
251
|
-
- counterReset
|
|
252
|
-
- emptyCells
|
|
253
|
-
- listStyle
|
|
254
|
-
- listStyleImage
|
|
255
|
-
- listStylePosition
|
|
256
|
-
- listStyleType
|
|
257
|
-
- quotes
|
|
258
|
-
- tableLayout
|
|
259
|
-
|
|
260
|
-
### Column
|
|
261
|
-
|
|
262
|
-
- columnCount
|
|
263
|
-
- columnFill
|
|
264
|
-
- columnGap
|
|
265
|
-
- columnRule
|
|
266
|
-
- columnRuleColor
|
|
267
|
-
- columnRuleStyle
|
|
268
|
-
- columnRuleWidth
|
|
269
|
-
- columnSpan
|
|
270
|
-
- columnWidth
|
|
271
|
-
- columns
|
|
272
|
-
|
|
273
|
-
### Filter / Effects
|
|
274
|
-
|
|
275
|
-
- backdropFilter
|
|
276
|
-
- boxDecorationBreak
|
|
277
|
-
- clipPath
|
|
278
|
-
- filter
|
|
279
|
-
- isolation
|
|
280
|
-
- mixBlendMode
|
|
281
|
-
- objectFit
|
|
282
|
-
- objectPosition
|
|
283
|
-
- perspective
|
|
284
|
-
- perspectiveOrigin
|
|
285
|
-
- willChange
|
|
286
|
-
|
|
287
|
-
### Transform
|
|
288
|
-
|
|
289
|
-
- transform
|
|
290
|
-
- transformOrigin
|
|
291
|
-
- transformStyle
|
|
292
|
-
|
|
293
|
-
### Transition
|
|
294
|
-
|
|
295
|
-
- transition
|
|
296
|
-
- transitionDelay
|
|
297
|
-
- transitionDuration
|
|
298
|
-
- transitionProperty
|
|
299
|
-
- transitionTimingFunction
|
|
300
|
-
|
|
301
|
-
### Animation
|
|
302
|
-
|
|
303
|
-
- animation
|
|
304
|
-
- animationDelay
|
|
305
|
-
- animationDirection
|
|
306
|
-
- animationDuration
|
|
307
|
-
- animationFillMode
|
|
308
|
-
- animationIterationCount
|
|
309
|
-
- animationName
|
|
310
|
-
- animationPlayState
|
|
311
|
-
- animationTimingFunction
|
|
312
|
-
|
|
313
|
-
### Scroll
|
|
314
|
-
|
|
315
|
-
- scrollBehavior
|
|
316
|
-
- scrollMargin
|
|
317
|
-
- scrollMarginBottom
|
|
318
|
-
- scrollMarginLeft
|
|
319
|
-
- scrollMarginRight
|
|
320
|
-
- scrollMarginTop
|
|
321
|
-
- scrollPadding
|
|
322
|
-
- scrollPaddingBottom
|
|
323
|
-
- scrollPaddingLeft
|
|
324
|
-
- scrollPaddingRight
|
|
325
|
-
- scrollPaddingTop
|
|
326
|
-
- scrollSnapAlign
|
|
327
|
-
- scrollSnapStop
|
|
328
|
-
- scrollSnapType
|
|
329
|
-
|
|
330
|
-
### Page Break
|
|
331
|
-
|
|
332
|
-
- breakAfter
|
|
333
|
-
- breakBefore
|
|
334
|
-
- breakInside
|
|
335
|
-
- pageBreakAfter
|
|
336
|
-
- pageBreakBefore
|
|
337
|
-
- pageBreakInside
|
|
338
|
-
|
|
339
|
-
---
|
|
340
|
-
|
|
341
|
-
## HTML Attributes
|
|
342
|
-
|
|
343
|
-
### Global
|
|
344
|
-
|
|
345
|
-
- accessKey
|
|
346
|
-
- className
|
|
347
|
-
- contentEditable
|
|
348
|
-
- contextMenu
|
|
349
|
-
- dir
|
|
350
|
-
- draggable
|
|
351
|
-
- hidden
|
|
352
|
-
- id
|
|
353
|
-
- is
|
|
354
|
-
- lang
|
|
355
|
-
- nonce
|
|
356
|
-
- spellCheck
|
|
357
|
-
- style
|
|
358
|
-
- tabIndex
|
|
359
|
-
- title
|
|
360
|
-
- translate
|
|
361
|
-
|
|
362
|
-
### Form
|
|
363
|
-
|
|
364
|
-
- accept
|
|
365
|
-
- acceptCharset
|
|
366
|
-
- action
|
|
367
|
-
- autoComplete
|
|
368
|
-
- autoFocus
|
|
369
|
-
- capture
|
|
370
|
-
- challenge
|
|
371
|
-
- checked
|
|
372
|
-
- cols
|
|
373
|
-
- colSpan
|
|
374
|
-
- controls
|
|
375
|
-
- default
|
|
376
|
-
- defer
|
|
377
|
-
- disabled
|
|
378
|
-
- encType
|
|
379
|
-
- form
|
|
380
|
-
- formAction
|
|
381
|
-
- formEncType
|
|
382
|
-
- formMethod
|
|
383
|
-
- formNoValidate
|
|
384
|
-
- formTarget
|
|
385
|
-
- high
|
|
386
|
-
- inputMode
|
|
387
|
-
- kind
|
|
388
|
-
- label
|
|
389
|
-
- list
|
|
390
|
-
- loop
|
|
391
|
-
- low
|
|
392
|
-
- max
|
|
393
|
-
- maxLength
|
|
394
|
-
- method
|
|
395
|
-
- min
|
|
396
|
-
- minLength
|
|
397
|
-
- multiple
|
|
398
|
-
- muted
|
|
399
|
-
- name
|
|
400
|
-
- open
|
|
401
|
-
- optimum
|
|
402
|
-
- pattern
|
|
403
|
-
- placeholder
|
|
404
|
-
- readOnly
|
|
405
|
-
- required
|
|
406
|
-
- reversed
|
|
407
|
-
- rows
|
|
408
|
-
- rowSpan
|
|
409
|
-
- selected
|
|
410
|
-
- size
|
|
411
|
-
- span
|
|
412
|
-
- start
|
|
413
|
-
- step
|
|
414
|
-
- type
|
|
415
|
-
- value
|
|
416
|
-
- wrap
|
|
417
|
-
|
|
418
|
-
### Link / Navigation
|
|
419
|
-
|
|
420
|
-
- download
|
|
421
|
-
- href
|
|
422
|
-
- hrefLang
|
|
423
|
-
- ping
|
|
424
|
-
- referrerPolicy
|
|
425
|
-
- rel
|
|
426
|
-
- target
|
|
427
|
-
|
|
428
|
-
### Media
|
|
429
|
-
|
|
430
|
-
- allow
|
|
431
|
-
- allowFullScreen
|
|
432
|
-
- allowPaymentRequest
|
|
433
|
-
- alt
|
|
434
|
-
- cellPadding
|
|
435
|
-
- cellSpacing
|
|
436
|
-
- cite
|
|
437
|
-
- coords
|
|
438
|
-
- crossOrigin
|
|
439
|
-
- data
|
|
440
|
-
- dateTime
|
|
441
|
-
- fetchPriority
|
|
442
|
-
- headers
|
|
443
|
-
- height
|
|
444
|
-
- httpEquiv
|
|
445
|
-
- integrity
|
|
446
|
-
- isMap
|
|
447
|
-
- keyType
|
|
448
|
-
- loading
|
|
449
|
-
- manifest
|
|
450
|
-
- media
|
|
451
|
-
- poster
|
|
452
|
-
- preload
|
|
453
|
-
- radioGroup
|
|
454
|
-
- sandbox
|
|
455
|
-
- scope
|
|
456
|
-
- scoped
|
|
457
|
-
- seamless
|
|
458
|
-
- shape
|
|
459
|
-
- sizes
|
|
460
|
-
- src
|
|
461
|
-
- srcDoc
|
|
462
|
-
- srcLang
|
|
463
|
-
- srcSet
|
|
464
|
-
- useMap
|
|
465
|
-
- width
|
|
466
|
-
|
|
467
|
-
### Microdata
|
|
468
|
-
|
|
469
|
-
- itemId
|
|
470
|
-
- itemProp
|
|
471
|
-
- itemRef
|
|
472
|
-
- itemScope
|
|
473
|
-
- itemType
|
|
474
|
-
|
|
475
|
-
### ARIA
|
|
476
|
-
|
|
477
|
-
- ariaActiveDescendant
|
|
478
|
-
- ariaAtomic
|
|
479
|
-
- ariaBusy
|
|
480
|
-
- ariaChecked
|
|
481
|
-
- ariaControls
|
|
482
|
-
- ariaCurrent
|
|
483
|
-
- ariaDescribedBy
|
|
484
|
-
- ariaDetails
|
|
485
|
-
- ariaDisabled
|
|
486
|
-
- ariaDropEffect
|
|
487
|
-
- ariaErrorMessage
|
|
488
|
-
- ariaExpanded
|
|
489
|
-
- ariaGrabbed
|
|
490
|
-
- ariaHasPopup
|
|
491
|
-
- ariaHidden
|
|
492
|
-
- ariaInvalid
|
|
493
|
-
- ariaLabel
|
|
494
|
-
- ariaLabelledBy
|
|
495
|
-
- ariaLive
|
|
496
|
-
- ariaModal
|
|
497
|
-
- ariaMultiSelectable
|
|
498
|
-
- ariaOrientation
|
|
499
|
-
- ariaOwns
|
|
500
|
-
- ariaPosInSet
|
|
501
|
-
- ariaPressed
|
|
502
|
-
- ariaReadOnly
|
|
503
|
-
- ariaRelevant
|
|
504
|
-
- ariaRequired
|
|
505
|
-
- ariaSelected
|
|
506
|
-
- ariaSetSize
|
|
507
|
-
- ariaValueMax
|
|
508
|
-
- ariaValueMin
|
|
509
|
-
- ariaValueNow
|
|
510
|
-
- role
|
|
511
|
-
|
|
512
|
-
---
|
|
513
|
-
|
|
514
|
-
## JS Events (onX Prefix)
|
|
515
|
-
|
|
516
|
-
### Lifecycle (DOMQL custom)
|
|
517
|
-
|
|
518
|
-
- onInit
|
|
519
|
-
- onRender
|
|
520
|
-
- onUpdate
|
|
521
|
-
- onStateChange
|
|
522
|
-
- onStateUpdate
|
|
523
|
-
|
|
524
|
-
### Mouse
|
|
525
|
-
|
|
526
|
-
- onClick
|
|
527
|
-
- onContextMenu
|
|
528
|
-
- onDblClick
|
|
529
|
-
- onMouseDown
|
|
530
|
-
- onMouseEnter
|
|
531
|
-
- onMouseLeave
|
|
532
|
-
- onMouseMove
|
|
533
|
-
- onMouseOut
|
|
534
|
-
- onMouseOver
|
|
535
|
-
- onMouseUp
|
|
536
|
-
|
|
537
|
-
### Keyboard
|
|
538
|
-
|
|
539
|
-
- onKeyDown
|
|
540
|
-
- onKeyPress
|
|
541
|
-
- onKeyUp
|
|
542
|
-
|
|
543
|
-
### Focus
|
|
544
|
-
|
|
545
|
-
- onBlur
|
|
546
|
-
- onFocus
|
|
547
|
-
- onFocusIn
|
|
548
|
-
- onFocusOut
|
|
549
|
-
|
|
550
|
-
### Form
|
|
551
|
-
|
|
552
|
-
- onBeforeInput
|
|
553
|
-
- onChange
|
|
554
|
-
- onFormData
|
|
555
|
-
- onInput
|
|
556
|
-
- onInvalid
|
|
557
|
-
- onReset
|
|
558
|
-
- onSearch
|
|
559
|
-
- onSelect
|
|
560
|
-
- onSubmit
|
|
561
|
-
|
|
562
|
-
### Touch
|
|
563
|
-
|
|
564
|
-
- onTouchCancel
|
|
565
|
-
- onTouchEnd
|
|
566
|
-
- onTouchMove
|
|
567
|
-
- onTouchStart
|
|
568
|
-
|
|
569
|
-
### Pointer
|
|
570
|
-
|
|
571
|
-
- onPointerCancel
|
|
572
|
-
- onPointerDown
|
|
573
|
-
- onPointerEnter
|
|
574
|
-
- onPointerLeave
|
|
575
|
-
- onPointerMove
|
|
576
|
-
- onPointerOut
|
|
577
|
-
- onPointerOver
|
|
578
|
-
- onPointerUp
|
|
579
|
-
|
|
580
|
-
### Drag
|
|
581
|
-
|
|
582
|
-
- onDrag
|
|
583
|
-
- onDragEnd
|
|
584
|
-
- onDragEnter
|
|
585
|
-
- onDragLeave
|
|
586
|
-
- onDragOver
|
|
587
|
-
- onDragStart
|
|
588
|
-
- onDrop
|
|
589
|
-
|
|
590
|
-
### Scroll / Resize
|
|
591
|
-
|
|
592
|
-
- onResize
|
|
593
|
-
- onScroll
|
|
594
|
-
- onWheel
|
|
595
|
-
|
|
596
|
-
### Clipboard
|
|
597
|
-
|
|
598
|
-
- onCopy
|
|
599
|
-
- onCut
|
|
600
|
-
- onPaste
|
|
601
|
-
|
|
602
|
-
### Composition
|
|
603
|
-
|
|
604
|
-
- onCompositionEnd
|
|
605
|
-
- onCompositionStart
|
|
606
|
-
- onCompositionUpdate
|
|
607
|
-
|
|
608
|
-
### Animation / Transition
|
|
609
|
-
|
|
610
|
-
- onAnimationEnd
|
|
611
|
-
- onAnimationIteration
|
|
612
|
-
- onAnimationStart
|
|
613
|
-
- onTransitionEnd
|
|
614
|
-
- onTransitionStart
|
|
615
|
-
|
|
616
|
-
### Media
|
|
617
|
-
|
|
618
|
-
- onAbort
|
|
619
|
-
- onCanPlay
|
|
620
|
-
- onCanPlayThrough
|
|
621
|
-
- onDurationChange
|
|
622
|
-
- onEmptied
|
|
623
|
-
- onEncrypted
|
|
624
|
-
- onEnded
|
|
625
|
-
- onError
|
|
626
|
-
- onLoad
|
|
627
|
-
- onLoadedData
|
|
628
|
-
- onLoadedMetadata
|
|
629
|
-
- onPause
|
|
630
|
-
- onPlay
|
|
631
|
-
- onPlaying
|
|
632
|
-
- onProgress
|
|
633
|
-
- onRateChange
|
|
634
|
-
- onSeeked
|
|
635
|
-
- onSeeking
|
|
636
|
-
- onStalled
|
|
637
|
-
- onSuspend
|
|
638
|
-
- onTimeUpdate
|
|
639
|
-
- onVolumeChange
|
|
640
|
-
- onWaiting
|
|
641
|
-
|
|
642
|
-
---
|
|
643
|
-
|
|
644
|
-
## Selectors, Media, and Cases
|
|
645
|
-
|
|
646
|
-
### Pseudo-classes
|
|
647
|
-
|
|
648
|
-
- :active
|
|
649
|
-
- :checked
|
|
650
|
-
- :disabled
|
|
651
|
-
- :empty
|
|
652
|
-
- :enabled
|
|
653
|
-
- :first-child
|
|
654
|
-
- :first-of-type
|
|
655
|
-
- :focus
|
|
656
|
-
- :focus-visible
|
|
657
|
-
- :focus-within
|
|
658
|
-
- :hover
|
|
659
|
-
- :last-child
|
|
660
|
-
- :last-of-type
|
|
661
|
-
- :not()
|
|
662
|
-
- :nth-child()
|
|
663
|
-
- :nth-of-type()
|
|
664
|
-
- :only-child
|
|
665
|
-
- :only-of-type
|
|
666
|
-
- :visited
|
|
667
|
-
|
|
668
|
-
### Pseudo-elements
|
|
669
|
-
|
|
670
|
-
- ::after
|
|
671
|
-
- ::backdrop
|
|
672
|
-
- ::before
|
|
673
|
-
- ::cue
|
|
674
|
-
- ::marker
|
|
675
|
-
- ::placeholder
|
|
676
|
-
- ::selection
|
|
677
|
-
- ::slotted
|
|
678
|
-
- ::-webkit-scrollbar
|
|
679
|
-
|
|
680
|
-
### CSS selectors
|
|
681
|
-
|
|
682
|
-
- '& > span'
|
|
683
|
-
- '&:hover'
|
|
684
|
-
- '> label'
|
|
685
|
-
- '> \*'
|
|
686
|
-
|
|
687
|
-
### Responsive breakpoints (@media)
|
|
688
|
-
|
|
689
|
-
- @desktop
|
|
690
|
-
- @laptop
|
|
691
|
-
- @mobile
|
|
692
|
-
- @mobileM
|
|
693
|
-
- @mobileS
|
|
694
|
-
- @mobileXS
|
|
695
|
-
- @print
|
|
696
|
-
- @tablet
|
|
697
|
-
- @tabletM
|
|
698
|
-
- @tv
|
|
699
|
-
|
|
700
|
-
### Theme modes
|
|
701
|
-
|
|
702
|
-
- @dark
|
|
703
|
-
- @light
|
|
704
|
-
|
|
705
|
-
### Conditional cases
|
|
706
|
-
|
|
707
|
-
- .propName (local case, true match)
|
|
708
|
-
- !propName (local case, negation)
|
|
709
|
-
- $caseName (global case, e.g. $ios, $android, $localhost)
|
|
710
|
-
|
|
711
|
-
---
|
|
712
|
-
|
|
713
|
-
## Special / Advanced Properties
|
|
714
|
-
|
|
715
|
-
- childExtends (string, array, or inline object)
|
|
716
|
-
- childProps (object or function)
|
|
717
|
-
- childrenAs ('props' or 'state')
|
|
718
|
-
- columns
|
|
719
|
-
- icon
|
|
720
|
-
- iconText
|
|
721
|
-
- ignoreChildExtend
|
|
722
|
-
- lookup
|
|
723
|
-
- router
|
|
724
|
-
- shape
|
|
725
|
-
- shapeModifier
|
|
726
|
-
- templateColumns
|
|
727
|
-
- theme
|
|
728
|
-
- themeModifier
|