@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/SymbolsPropsAbbr.md
DELETED
|
@@ -1,721 +0,0 @@
|
|
|
1
|
-
# Symbols Shorthand Abbreviations
|
|
2
|
-
|
|
3
|
-
Unique abbreviations for all Symbols properties. Used in shorthand syntax: `abbr:value` with space-separated tokens.
|
|
4
|
-
|
|
5
|
-
**Syntax rules:**
|
|
6
|
-
|
|
7
|
-
- `:` separates key from value — `bg:red`
|
|
8
|
-
- Space separates tokens — `bg:red p:A`
|
|
9
|
-
- `,` separates array values — `ext:Flex,Box`
|
|
10
|
-
- `_` replaces spaces in values — `p:A_B` → `padding: 'A B'`
|
|
11
|
-
- Boolean true: just the abbreviation — `hid` → `hidden: true`
|
|
12
|
-
- Boolean false: prefix with `!` — `!hid` → `hidden: false`
|
|
13
|
-
|
|
14
|
-
---
|
|
15
|
-
|
|
16
|
-
## Core DOMQL Properties
|
|
17
|
-
|
|
18
|
-
| Property | Abbr |
|
|
19
|
-
| --------------------- | ---- |
|
|
20
|
-
| attr | at |
|
|
21
|
-
| childExtends | cex |
|
|
22
|
-
| childExtendsRecursive | cexr |
|
|
23
|
-
| childProps | cp |
|
|
24
|
-
| children | ch |
|
|
25
|
-
| childrenAs | cha |
|
|
26
|
-
| class | cl |
|
|
27
|
-
| content | cnt |
|
|
28
|
-
| context | ctx |
|
|
29
|
-
| data | dt |
|
|
30
|
-
| extends | ext |
|
|
31
|
-
| hide | hd |
|
|
32
|
-
| html | htm |
|
|
33
|
-
| if | if |
|
|
34
|
-
| ignoreChildExtend | icex |
|
|
35
|
-
| key | ky |
|
|
36
|
-
| query | qy |
|
|
37
|
-
| routes | rt |
|
|
38
|
-
| scope | scp |
|
|
39
|
-
| show | shw |
|
|
40
|
-
| state | st |
|
|
41
|
-
| style | sy |
|
|
42
|
-
| tag | tg |
|
|
43
|
-
| text | tx |
|
|
44
|
-
|
|
45
|
-
---
|
|
46
|
-
|
|
47
|
-
## Symbols Shorthand Props
|
|
48
|
-
|
|
49
|
-
| Property | Abbr |
|
|
50
|
-
| --------------- | ---- |
|
|
51
|
-
| align | aln |
|
|
52
|
-
| boxSize | bsz |
|
|
53
|
-
| flow | fl |
|
|
54
|
-
| heightRange | hr |
|
|
55
|
-
| horizontalInset | hi |
|
|
56
|
-
| round | rnd |
|
|
57
|
-
| shadow | shd |
|
|
58
|
-
| size | sz |
|
|
59
|
-
| templateColumns | tcol |
|
|
60
|
-
| verticalInset | vi |
|
|
61
|
-
| widthRange | wr |
|
|
62
|
-
| wrap | wrp |
|
|
63
|
-
|
|
64
|
-
---
|
|
65
|
-
|
|
66
|
-
## CSS Properties
|
|
67
|
-
|
|
68
|
-
### Box / Sizing
|
|
69
|
-
|
|
70
|
-
| Property | Abbr |
|
|
71
|
-
| ------------- | ---- |
|
|
72
|
-
| aspectRatio | ar |
|
|
73
|
-
| blockSize | bks |
|
|
74
|
-
| boxSizing | bxs |
|
|
75
|
-
| height | h |
|
|
76
|
-
| inlineSize | ins |
|
|
77
|
-
| margin | m |
|
|
78
|
-
| marginBottom | mb |
|
|
79
|
-
| marginLeft | ml |
|
|
80
|
-
| marginRight | mr |
|
|
81
|
-
| marginTop | mt |
|
|
82
|
-
| maxBlockSize | mxbs |
|
|
83
|
-
| maxHeight | mxh |
|
|
84
|
-
| maxInlineSize | mxis |
|
|
85
|
-
| maxWidth | mxw |
|
|
86
|
-
| minBlockSize | mnbs |
|
|
87
|
-
| minHeight | mnh |
|
|
88
|
-
| minInlineSize | mnis |
|
|
89
|
-
| minWidth | mnw |
|
|
90
|
-
| padding | p |
|
|
91
|
-
| paddingBottom | pb |
|
|
92
|
-
| paddingInline | pil |
|
|
93
|
-
| paddingLeft | pl |
|
|
94
|
-
| paddingRight | pr |
|
|
95
|
-
| paddingTop | pt |
|
|
96
|
-
| width | w |
|
|
97
|
-
|
|
98
|
-
### Flexbox
|
|
99
|
-
|
|
100
|
-
| Property | Abbr |
|
|
101
|
-
| -------------- | ---- |
|
|
102
|
-
| alignContent | ac |
|
|
103
|
-
| alignItems | ai |
|
|
104
|
-
| alignSelf | as |
|
|
105
|
-
| flex | fx |
|
|
106
|
-
| flexBasis | fxb |
|
|
107
|
-
| flexDirection | fxd |
|
|
108
|
-
| flexFlow | fxf |
|
|
109
|
-
| flexGrow | fxg |
|
|
110
|
-
| flexShrink | fxs |
|
|
111
|
-
| flexWrap | fxw |
|
|
112
|
-
| gap | g |
|
|
113
|
-
| justifyContent | jc |
|
|
114
|
-
| justifyItems | ji |
|
|
115
|
-
| justifySelf | js |
|
|
116
|
-
| order | od |
|
|
117
|
-
| placeContent | pcn |
|
|
118
|
-
| placeItems | pit |
|
|
119
|
-
| placeSelf | psl |
|
|
120
|
-
| rowGap | rg |
|
|
121
|
-
|
|
122
|
-
### Grid
|
|
123
|
-
|
|
124
|
-
| Property | Abbr |
|
|
125
|
-
| ------------------- | ---- |
|
|
126
|
-
| columnGap | cg |
|
|
127
|
-
| gridArea | ga |
|
|
128
|
-
| gridAutoColumns | gac |
|
|
129
|
-
| gridAutoFlow | gaf |
|
|
130
|
-
| gridAutoRows | gar |
|
|
131
|
-
| gridColumn | gc |
|
|
132
|
-
| gridColumnEnd | gce |
|
|
133
|
-
| gridColumnStart | gcs |
|
|
134
|
-
| gridRow | gr |
|
|
135
|
-
| gridRowEnd | gre |
|
|
136
|
-
| gridRowStart | grs |
|
|
137
|
-
| gridTemplateAreas | gta |
|
|
138
|
-
| gridTemplateColumns | gtc |
|
|
139
|
-
| gridTemplateRows | gtr |
|
|
140
|
-
|
|
141
|
-
### Position
|
|
142
|
-
|
|
143
|
-
| Property | Abbr |
|
|
144
|
-
| -------- | ---- |
|
|
145
|
-
| bottom | bot |
|
|
146
|
-
| float | flt |
|
|
147
|
-
| inset | ist |
|
|
148
|
-
| left | lft |
|
|
149
|
-
| position | pos |
|
|
150
|
-
| right | rgt |
|
|
151
|
-
| top | tp |
|
|
152
|
-
| zIndex | zi |
|
|
153
|
-
|
|
154
|
-
### Display / Visibility
|
|
155
|
-
|
|
156
|
-
| Property | Abbr |
|
|
157
|
-
| ------------- | ---- |
|
|
158
|
-
| clear | clr |
|
|
159
|
-
| contain | ctn |
|
|
160
|
-
| cursor | cur |
|
|
161
|
-
| display | d |
|
|
162
|
-
| opacity | op |
|
|
163
|
-
| overflow | ov |
|
|
164
|
-
| overflowX | ovx |
|
|
165
|
-
| overflowY | ovy |
|
|
166
|
-
| pointerEvents | pe |
|
|
167
|
-
| resize | rsz |
|
|
168
|
-
| userSelect | us |
|
|
169
|
-
| visibility | vis |
|
|
170
|
-
|
|
171
|
-
### Color / Theme
|
|
172
|
-
|
|
173
|
-
| Property | Abbr |
|
|
174
|
-
| -------------------- | ---- |
|
|
175
|
-
| background | bg |
|
|
176
|
-
| backgroundAttachment | bga |
|
|
177
|
-
| backgroundBlendMode | bgbm |
|
|
178
|
-
| backgroundClip | bgcl |
|
|
179
|
-
| backgroundColor | bgc |
|
|
180
|
-
| backgroundImage | bgi |
|
|
181
|
-
| backgroundOrigin | bgo |
|
|
182
|
-
| backgroundPosition | bgp |
|
|
183
|
-
| backgroundPositionX | bgpx |
|
|
184
|
-
| backgroundPositionY | bgpy |
|
|
185
|
-
| backgroundRepeat | bgr |
|
|
186
|
-
| backgroundRepeatX | bgrx |
|
|
187
|
-
| backgroundRepeatY | bgry |
|
|
188
|
-
| backgroundSize | bgs |
|
|
189
|
-
| color | c |
|
|
190
|
-
| theme | thm |
|
|
191
|
-
| themeModifier | thmm |
|
|
192
|
-
|
|
193
|
-
### Border
|
|
194
|
-
|
|
195
|
-
| Property | Abbr |
|
|
196
|
-
| ----------------------- | ------ |
|
|
197
|
-
| border | bd |
|
|
198
|
-
| borderBottom | bdb |
|
|
199
|
-
| borderBottomLeftRadius | bdblr |
|
|
200
|
-
| borderBottomRightRadius | bdbrr |
|
|
201
|
-
| borderCollapse | bdcl |
|
|
202
|
-
| borderColor | bdc |
|
|
203
|
-
| borderImage | bdi |
|
|
204
|
-
| borderImageOutset | bdio |
|
|
205
|
-
| borderImageRepeat | bdir |
|
|
206
|
-
| borderImageSlice | bdis |
|
|
207
|
-
| borderImageSource | bdisrc |
|
|
208
|
-
| borderImageWidth | bdiw |
|
|
209
|
-
| borderLeft | bdl |
|
|
210
|
-
| borderRadius | bdr |
|
|
211
|
-
| borderRight | bdrg |
|
|
212
|
-
| borderSpacing | bdsp |
|
|
213
|
-
| borderStyle | bdst |
|
|
214
|
-
| borderTop | bdt |
|
|
215
|
-
| borderTopLeftRadius | bdtlr |
|
|
216
|
-
| borderTopRightRadius | bdtrr |
|
|
217
|
-
| borderWidth | bdw |
|
|
218
|
-
|
|
219
|
-
### Outline
|
|
220
|
-
|
|
221
|
-
| Property | Abbr |
|
|
222
|
-
| ------------- | ---- |
|
|
223
|
-
| outline | ol |
|
|
224
|
-
| outlineColor | olc |
|
|
225
|
-
| outlineOffset | olo |
|
|
226
|
-
| outlineStyle | ols |
|
|
227
|
-
| outlineWidth | olw |
|
|
228
|
-
|
|
229
|
-
### Shadow
|
|
230
|
-
|
|
231
|
-
| Property | Abbr |
|
|
232
|
-
| ---------- | ---- |
|
|
233
|
-
| boxShadow | bxsh |
|
|
234
|
-
| textShadow | txsh |
|
|
235
|
-
|
|
236
|
-
### Typography
|
|
237
|
-
|
|
238
|
-
| Property | Abbr |
|
|
239
|
-
| --------------------- | ---- |
|
|
240
|
-
| direction | dir |
|
|
241
|
-
| fontDisplay | fdi |
|
|
242
|
-
| fontFamily | ff |
|
|
243
|
-
| fontFeatureSettings | ffs |
|
|
244
|
-
| fontKerning | fk |
|
|
245
|
-
| fontOpticalSizing | fos |
|
|
246
|
-
| fontPalette | fpl |
|
|
247
|
-
| fontSize | fs |
|
|
248
|
-
| fontSizeAdjust | fsa |
|
|
249
|
-
| fontSmooth | fsm |
|
|
250
|
-
| fontStretch | fsr |
|
|
251
|
-
| fontStyle | fsy |
|
|
252
|
-
| fontSynthesis | fsyn |
|
|
253
|
-
| fontVariant | fv |
|
|
254
|
-
| fontVariationSettings | fvs |
|
|
255
|
-
| fontWeight | fw |
|
|
256
|
-
| hyphens | hyp |
|
|
257
|
-
| letterSpacing | ls |
|
|
258
|
-
| lineHeight | lh |
|
|
259
|
-
| tabSize | tsz |
|
|
260
|
-
| textAlign | ta |
|
|
261
|
-
| textDecoration | td |
|
|
262
|
-
| textDecorationColor | tdc |
|
|
263
|
-
| textDecorationLine | tdl |
|
|
264
|
-
| textDecorationStyle | tds |
|
|
265
|
-
| textIndent | ti |
|
|
266
|
-
| textOverflow | tov |
|
|
267
|
-
| textStroke | tsk |
|
|
268
|
-
| textTransform | tt |
|
|
269
|
-
| unicodeBidi | ub |
|
|
270
|
-
| verticalAlign | va |
|
|
271
|
-
| whiteSpace | ws |
|
|
272
|
-
| wordBreak | wbr |
|
|
273
|
-
| wordSpacing | wsp |
|
|
274
|
-
| wordWrap | wwr |
|
|
275
|
-
| writingMode | wm |
|
|
276
|
-
|
|
277
|
-
### List / Table
|
|
278
|
-
|
|
279
|
-
| Property | Abbr |
|
|
280
|
-
| ----------------- | ---- |
|
|
281
|
-
| captionSide | cps |
|
|
282
|
-
| counterIncrement | ci |
|
|
283
|
-
| counterReset | cr |
|
|
284
|
-
| emptyCells | ec |
|
|
285
|
-
| listStyle | lst |
|
|
286
|
-
| listStyleImage | lsi |
|
|
287
|
-
| listStylePosition | lsp |
|
|
288
|
-
| listStyleType | lsty |
|
|
289
|
-
| quotes | qt |
|
|
290
|
-
| tableLayout | tl |
|
|
291
|
-
|
|
292
|
-
### Column
|
|
293
|
-
|
|
294
|
-
| Property | Abbr |
|
|
295
|
-
| --------------- | ---- |
|
|
296
|
-
| columnCount | cc |
|
|
297
|
-
| columnFill | cf |
|
|
298
|
-
| columnRule | crl |
|
|
299
|
-
| columnRuleColor | crlc |
|
|
300
|
-
| columnRuleStyle | crls |
|
|
301
|
-
| columnRuleWidth | crlw |
|
|
302
|
-
| columnSpan | csp |
|
|
303
|
-
| columnWidth | cwi |
|
|
304
|
-
| columns | col |
|
|
305
|
-
|
|
306
|
-
### Filter / Effects
|
|
307
|
-
|
|
308
|
-
| Property | Abbr |
|
|
309
|
-
| ------------------ | ---- |
|
|
310
|
-
| backdropFilter | bdf |
|
|
311
|
-
| boxDecorationBreak | bxdb |
|
|
312
|
-
| clipPath | cpth |
|
|
313
|
-
| filter | fil |
|
|
314
|
-
| isolation | iso |
|
|
315
|
-
| mixBlendMode | mbm |
|
|
316
|
-
| objectFit | obf |
|
|
317
|
-
| objectPosition | obp |
|
|
318
|
-
| perspective | prs |
|
|
319
|
-
| perspectiveOrigin | prso |
|
|
320
|
-
| willChange | wc |
|
|
321
|
-
|
|
322
|
-
### Transform
|
|
323
|
-
|
|
324
|
-
| Property | Abbr |
|
|
325
|
-
| --------------- | ---- |
|
|
326
|
-
| transform | tf |
|
|
327
|
-
| transformOrigin | tfo |
|
|
328
|
-
| transformStyle | tfs |
|
|
329
|
-
|
|
330
|
-
### Transition
|
|
331
|
-
|
|
332
|
-
| Property | Abbr |
|
|
333
|
-
| ------------------------ | ----- |
|
|
334
|
-
| transition | trn |
|
|
335
|
-
| transitionDelay | trnd |
|
|
336
|
-
| transitionDuration | trndr |
|
|
337
|
-
| transitionProperty | trnp |
|
|
338
|
-
| transitionTimingFunction | trntf |
|
|
339
|
-
|
|
340
|
-
### Animation
|
|
341
|
-
|
|
342
|
-
| Property | Abbr |
|
|
343
|
-
| ----------------------- | ----- |
|
|
344
|
-
| animation | an |
|
|
345
|
-
| animationDelay | and |
|
|
346
|
-
| animationDirection | andr |
|
|
347
|
-
| animationDuration | andur |
|
|
348
|
-
| animationFillMode | anfm |
|
|
349
|
-
| animationIterationCount | anic |
|
|
350
|
-
| animationName | ann |
|
|
351
|
-
| animationPlayState | anps |
|
|
352
|
-
| animationTimingFunction | antf |
|
|
353
|
-
|
|
354
|
-
### Scroll
|
|
355
|
-
|
|
356
|
-
| Property | Abbr |
|
|
357
|
-
| ------------------- | ---- |
|
|
358
|
-
| scrollBehavior | sb |
|
|
359
|
-
| scrollMargin | smr |
|
|
360
|
-
| scrollMarginBottom | smrb |
|
|
361
|
-
| scrollMarginLeft | smrl |
|
|
362
|
-
| scrollMarginRight | smrr |
|
|
363
|
-
| scrollMarginTop | smrt |
|
|
364
|
-
| scrollPadding | spd |
|
|
365
|
-
| scrollPaddingBottom | spdb |
|
|
366
|
-
| scrollPaddingLeft | spdl |
|
|
367
|
-
| scrollPaddingRight | spdr |
|
|
368
|
-
| scrollPaddingTop | spdt |
|
|
369
|
-
| scrollSnapAlign | ssa |
|
|
370
|
-
| scrollSnapStop | sss |
|
|
371
|
-
| scrollSnapType | sst |
|
|
372
|
-
|
|
373
|
-
### Page Break
|
|
374
|
-
|
|
375
|
-
| Property | Abbr |
|
|
376
|
-
| --------------- | ---- |
|
|
377
|
-
| breakAfter | bka |
|
|
378
|
-
| breakBefore | bkb |
|
|
379
|
-
| breakInside | bki |
|
|
380
|
-
| pageBreakAfter | pbka |
|
|
381
|
-
| pageBreakBefore | pbkb |
|
|
382
|
-
| pageBreakInside | pbki |
|
|
383
|
-
|
|
384
|
-
---
|
|
385
|
-
|
|
386
|
-
## HTML Attributes
|
|
387
|
-
|
|
388
|
-
### Global
|
|
389
|
-
|
|
390
|
-
| Property | Abbr |
|
|
391
|
-
| --------------- | ---- |
|
|
392
|
-
| accessKey | ack |
|
|
393
|
-
| className | cn |
|
|
394
|
-
| contentEditable | ced |
|
|
395
|
-
| contextMenu | cmu |
|
|
396
|
-
| draggable | drg |
|
|
397
|
-
| hidden | hid |
|
|
398
|
-
| id | id |
|
|
399
|
-
| is | is |
|
|
400
|
-
| lang | lng |
|
|
401
|
-
| nonce | nnc |
|
|
402
|
-
| spellCheck | spc |
|
|
403
|
-
| tabIndex | tbi |
|
|
404
|
-
| title | ttl |
|
|
405
|
-
| translate | trl |
|
|
406
|
-
|
|
407
|
-
### Form
|
|
408
|
-
|
|
409
|
-
| Property | Abbr |
|
|
410
|
-
| -------------- | ---- |
|
|
411
|
-
| accept | acp |
|
|
412
|
-
| acceptCharset | accs |
|
|
413
|
-
| action | act |
|
|
414
|
-
| autoComplete | atc |
|
|
415
|
-
| autoFocus | atf |
|
|
416
|
-
| capture | cap |
|
|
417
|
-
| challenge | chg |
|
|
418
|
-
| checked | chk |
|
|
419
|
-
| cols | cls |
|
|
420
|
-
| colSpan | csn |
|
|
421
|
-
| controls | ctl |
|
|
422
|
-
| default | def |
|
|
423
|
-
| defer | dfr |
|
|
424
|
-
| disabled | dis |
|
|
425
|
-
| encType | ect |
|
|
426
|
-
| form | frm |
|
|
427
|
-
| formAction | fac |
|
|
428
|
-
| formEncType | fect |
|
|
429
|
-
| formMethod | fme |
|
|
430
|
-
| formNoValidate | fnv |
|
|
431
|
-
| formTarget | ftg |
|
|
432
|
-
| high | hgh |
|
|
433
|
-
| inputMode | imd |
|
|
434
|
-
| kind | knd |
|
|
435
|
-
| label | lbl |
|
|
436
|
-
| list | lis |
|
|
437
|
-
| loop | lp |
|
|
438
|
-
| low | lw |
|
|
439
|
-
| max | mx |
|
|
440
|
-
| maxLength | mxl |
|
|
441
|
-
| method | mtd |
|
|
442
|
-
| min | mn |
|
|
443
|
-
| minLength | mnl |
|
|
444
|
-
| multiple | mul |
|
|
445
|
-
| muted | mut |
|
|
446
|
-
| name | nm |
|
|
447
|
-
| open | opn |
|
|
448
|
-
| optimum | opt |
|
|
449
|
-
| pattern | ptn |
|
|
450
|
-
| placeholder | phd |
|
|
451
|
-
| readOnly | ro |
|
|
452
|
-
| required | req |
|
|
453
|
-
| reversed | rev |
|
|
454
|
-
| rows | rws |
|
|
455
|
-
| rowSpan | rsn |
|
|
456
|
-
| selected | sel |
|
|
457
|
-
| span | spn |
|
|
458
|
-
| start | srt |
|
|
459
|
-
| step | stp |
|
|
460
|
-
| type | typ |
|
|
461
|
-
| value | val |
|
|
462
|
-
|
|
463
|
-
### Link / Navigation
|
|
464
|
-
|
|
465
|
-
| Property | Abbr |
|
|
466
|
-
| -------------- | ---- |
|
|
467
|
-
| download | dl |
|
|
468
|
-
| href | hrf |
|
|
469
|
-
| hrefLang | hrl |
|
|
470
|
-
| ping | png |
|
|
471
|
-
| referrerPolicy | rfp |
|
|
472
|
-
| rel | rl |
|
|
473
|
-
| target | tgt |
|
|
474
|
-
|
|
475
|
-
### Media
|
|
476
|
-
|
|
477
|
-
| Property | Abbr |
|
|
478
|
-
| ------------------- | ---- |
|
|
479
|
-
| allow | alw |
|
|
480
|
-
| allowFullScreen | afs |
|
|
481
|
-
| allowPaymentRequest | apr |
|
|
482
|
-
| alt | alt |
|
|
483
|
-
| cellPadding | cpg |
|
|
484
|
-
| cellSpacing | csg |
|
|
485
|
-
| cite | cit |
|
|
486
|
-
| coords | crd |
|
|
487
|
-
| crossOrigin | cor |
|
|
488
|
-
| dateTime | dtm |
|
|
489
|
-
| fetchPriority | fpr |
|
|
490
|
-
| headers | hds |
|
|
491
|
-
| httpEquiv | hte |
|
|
492
|
-
| integrity | itg |
|
|
493
|
-
| isMap | ism |
|
|
494
|
-
| keyType | kty |
|
|
495
|
-
| loading | ldg |
|
|
496
|
-
| manifest | mft |
|
|
497
|
-
| media | mda |
|
|
498
|
-
| poster | pst |
|
|
499
|
-
| preload | prl |
|
|
500
|
-
| radioGroup | rdg |
|
|
501
|
-
| sandbox | sbx |
|
|
502
|
-
| scope | sco |
|
|
503
|
-
| scoped | scod |
|
|
504
|
-
| seamless | sml |
|
|
505
|
-
| shape | shp |
|
|
506
|
-
| sizes | szs |
|
|
507
|
-
| src | src |
|
|
508
|
-
| srcDoc | srd |
|
|
509
|
-
| srcLang | srl |
|
|
510
|
-
| srcSet | srs |
|
|
511
|
-
| useMap | ump |
|
|
512
|
-
|
|
513
|
-
### ARIA
|
|
514
|
-
|
|
515
|
-
| Property | Abbr |
|
|
516
|
-
| -------------------- | ---- |
|
|
517
|
-
| ariaActiveDescendant | aad |
|
|
518
|
-
| ariaAtomic | aat |
|
|
519
|
-
| ariaBusy | abu |
|
|
520
|
-
| ariaChecked | achk |
|
|
521
|
-
| ariaControls | acl |
|
|
522
|
-
| ariaCurrent | acr |
|
|
523
|
-
| ariaDescribedBy | adb |
|
|
524
|
-
| ariaDetails | adt |
|
|
525
|
-
| ariaDisabled | adis |
|
|
526
|
-
| ariaDropEffect | ade |
|
|
527
|
-
| ariaErrorMessage | aem |
|
|
528
|
-
| ariaExpanded | aexp |
|
|
529
|
-
| ariaGrabbed | agr |
|
|
530
|
-
| ariaHasPopup | ahp |
|
|
531
|
-
| ariaHidden | ahid |
|
|
532
|
-
| ariaInvalid | ainv |
|
|
533
|
-
| ariaLabel | alb |
|
|
534
|
-
| ariaLabelledBy | alby |
|
|
535
|
-
| ariaLive | alv |
|
|
536
|
-
| ariaModal | amod |
|
|
537
|
-
| ariaMultiSelectable | ams |
|
|
538
|
-
| ariaOrientation | aor |
|
|
539
|
-
| ariaOwns | aow |
|
|
540
|
-
| ariaPosInSet | apis |
|
|
541
|
-
| ariaPressed | apr2 |
|
|
542
|
-
| ariaReadOnly | aro |
|
|
543
|
-
| ariaRelevant | arl |
|
|
544
|
-
| ariaRequired | areq |
|
|
545
|
-
| ariaSelected | asel |
|
|
546
|
-
| ariaSetSize | assz |
|
|
547
|
-
| ariaValueMax | avmx |
|
|
548
|
-
| ariaValueMin | avmn |
|
|
549
|
-
| ariaValueNow | avn |
|
|
550
|
-
| role | rl2 |
|
|
551
|
-
|
|
552
|
-
---
|
|
553
|
-
|
|
554
|
-
## Events
|
|
555
|
-
|
|
556
|
-
### Lifecycle
|
|
557
|
-
|
|
558
|
-
| Property | Abbr |
|
|
559
|
-
| ------------- | ---- |
|
|
560
|
-
| onInit | @in |
|
|
561
|
-
| onRender | @rn |
|
|
562
|
-
| onUpdate | @up |
|
|
563
|
-
| onStateChange | @sc |
|
|
564
|
-
| onStateUpdate | @su |
|
|
565
|
-
|
|
566
|
-
### Mouse
|
|
567
|
-
|
|
568
|
-
| Property | Abbr |
|
|
569
|
-
| ------------- | ---- |
|
|
570
|
-
| onClick | @ck |
|
|
571
|
-
| onContextMenu | @cm |
|
|
572
|
-
| onDblClick | @dc |
|
|
573
|
-
| onMouseDown | @md |
|
|
574
|
-
| onMouseEnter | @me |
|
|
575
|
-
| onMouseLeave | @ml |
|
|
576
|
-
| onMouseMove | @mm |
|
|
577
|
-
| onMouseOut | @mo |
|
|
578
|
-
| onMouseOver | @mv |
|
|
579
|
-
| onMouseUp | @mu |
|
|
580
|
-
|
|
581
|
-
### Keyboard
|
|
582
|
-
|
|
583
|
-
| Property | Abbr |
|
|
584
|
-
| ---------- | ---- |
|
|
585
|
-
| onKeyDown | @kd |
|
|
586
|
-
| onKeyPress | @kp |
|
|
587
|
-
| onKeyUp | @ku |
|
|
588
|
-
|
|
589
|
-
### Focus
|
|
590
|
-
|
|
591
|
-
| Property | Abbr |
|
|
592
|
-
| ---------- | ---- |
|
|
593
|
-
| onBlur | @bl |
|
|
594
|
-
| onFocus | @fc |
|
|
595
|
-
| onFocusIn | @fi |
|
|
596
|
-
| onFocusOut | @fo |
|
|
597
|
-
|
|
598
|
-
### Form
|
|
599
|
-
|
|
600
|
-
| Property | Abbr |
|
|
601
|
-
| ------------- | ---- |
|
|
602
|
-
| onBeforeInput | @bi |
|
|
603
|
-
| onChange | @cg |
|
|
604
|
-
| onFormData | @fd |
|
|
605
|
-
| onInput | @ip |
|
|
606
|
-
| onInvalid | @iv |
|
|
607
|
-
| onReset | @rs |
|
|
608
|
-
| onSearch | @sr |
|
|
609
|
-
| onSelect | @sl |
|
|
610
|
-
| onSubmit | @sb |
|
|
611
|
-
|
|
612
|
-
### Touch
|
|
613
|
-
|
|
614
|
-
| Property | Abbr |
|
|
615
|
-
| ------------- | ---- |
|
|
616
|
-
| onTouchCancel | @tc |
|
|
617
|
-
| onTouchEnd | @te |
|
|
618
|
-
| onTouchMove | @tm |
|
|
619
|
-
| onTouchStart | @ts |
|
|
620
|
-
|
|
621
|
-
### Pointer
|
|
622
|
-
|
|
623
|
-
| Property | Abbr |
|
|
624
|
-
| --------------- | ---- |
|
|
625
|
-
| onPointerCancel | @pc |
|
|
626
|
-
| onPointerDown | @pd |
|
|
627
|
-
| onPointerEnter | @pe |
|
|
628
|
-
| onPointerLeave | @ple |
|
|
629
|
-
| onPointerMove | @pm |
|
|
630
|
-
| onPointerOut | @po |
|
|
631
|
-
| onPointerOver | @pov |
|
|
632
|
-
| onPointerUp | @pu |
|
|
633
|
-
|
|
634
|
-
### Drag
|
|
635
|
-
|
|
636
|
-
| Property | Abbr |
|
|
637
|
-
| ----------- | ---- |
|
|
638
|
-
| onDrag | @dg |
|
|
639
|
-
| onDragEnd | @dge |
|
|
640
|
-
| onDragEnter | @dgn |
|
|
641
|
-
| onDragLeave | @dgl |
|
|
642
|
-
| onDragOver | @dgo |
|
|
643
|
-
| onDragStart | @dgs |
|
|
644
|
-
| onDrop | @dp |
|
|
645
|
-
|
|
646
|
-
### Scroll / Resize
|
|
647
|
-
|
|
648
|
-
| Property | Abbr |
|
|
649
|
-
| -------- | ---- |
|
|
650
|
-
| onResize | @rz |
|
|
651
|
-
| onScroll | @scl |
|
|
652
|
-
| onWheel | @wh |
|
|
653
|
-
|
|
654
|
-
### Clipboard
|
|
655
|
-
|
|
656
|
-
| Property | Abbr |
|
|
657
|
-
| -------- | ---- |
|
|
658
|
-
| onCopy | @cy |
|
|
659
|
-
| onCut | @ct |
|
|
660
|
-
| onPaste | @pt |
|
|
661
|
-
|
|
662
|
-
### Composition
|
|
663
|
-
|
|
664
|
-
| Property | Abbr |
|
|
665
|
-
| ------------------- | ---- |
|
|
666
|
-
| onCompositionEnd | @cpe |
|
|
667
|
-
| onCompositionStart | @cps |
|
|
668
|
-
| onCompositionUpdate | @cpu |
|
|
669
|
-
|
|
670
|
-
### Animation / Transition Events
|
|
671
|
-
|
|
672
|
-
| Property | Abbr |
|
|
673
|
-
| -------------------- | ---- |
|
|
674
|
-
| onAnimationEnd | @ae |
|
|
675
|
-
| onAnimationIteration | @ai |
|
|
676
|
-
| onAnimationStart | @as |
|
|
677
|
-
| onTransitionEnd | @tre |
|
|
678
|
-
| onTransitionStart | @trs |
|
|
679
|
-
|
|
680
|
-
### Media Events
|
|
681
|
-
|
|
682
|
-
| Property | Abbr |
|
|
683
|
-
| ---------------- | ---- |
|
|
684
|
-
| onAbort | @ab |
|
|
685
|
-
| onCanPlay | @cp2 |
|
|
686
|
-
| onCanPlayThrough | @cpt |
|
|
687
|
-
| onDurationChange | @duc |
|
|
688
|
-
| onEmptied | @em |
|
|
689
|
-
| onEncrypted | @enc |
|
|
690
|
-
| onEnded | @end |
|
|
691
|
-
| onError | @er |
|
|
692
|
-
| onLoad | @ld |
|
|
693
|
-
| onLoadedData | @ldd |
|
|
694
|
-
| onLoadedMetadata | @ldm |
|
|
695
|
-
| onPause | @pa |
|
|
696
|
-
| onPlay | @pl |
|
|
697
|
-
| onPlaying | @plg |
|
|
698
|
-
| onProgress | @prg |
|
|
699
|
-
| onRateChange | @rc |
|
|
700
|
-
| onSeeked | @sk |
|
|
701
|
-
| onSeeking | @skg |
|
|
702
|
-
| onStalled | @stl |
|
|
703
|
-
| onSuspend | @ssp |
|
|
704
|
-
| onTimeUpdate | @tu |
|
|
705
|
-
| onVolumeChange | @vc |
|
|
706
|
-
| onWaiting | @wt |
|
|
707
|
-
|
|
708
|
-
---
|
|
709
|
-
|
|
710
|
-
## Special / Advanced
|
|
711
|
-
|
|
712
|
-
| Property | Abbr |
|
|
713
|
-
| ----------------- | ----- |
|
|
714
|
-
| columns | cols2 |
|
|
715
|
-
| icon | ico |
|
|
716
|
-
| iconText | ict |
|
|
717
|
-
| ignoreChildExtend | icex |
|
|
718
|
-
| lookup | lkp |
|
|
719
|
-
| router | rtr |
|
|
720
|
-
| shape | shp2 |
|
|
721
|
-
| shapeModifier | shpm |
|