@kubex/zinc 1.0.14 → 1.0.16
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/custom-elements.json +156 -43
- package/dist/vscode.html-custom-data.json +11 -3
- package/dist/web-types.json +37 -16
- package/dist/zn.d.ts +102 -91
- package/dist/zn.min.css +1 -1
- package/dist/zn.min.js +206 -191
- package/docs/pages/components/collapsible.md +41 -1
- package/docs/pages/components/note.md +11 -1
- package/docs/pages/components/select.md +2 -2
- package/package.json +1 -1
- package/scss/shared/_button.scss +1 -1
- package/src/components/button/button.component.ts +2 -2
- package/src/components/button/button.scss +12 -13
- package/src/components/collapsible/collapsible.component.ts +53 -20
- package/src/components/collapsible/collapsible.scss +2 -0
- package/src/components/confirm/confirm.component.ts +28 -7
- package/src/components/data-table/data-table.component.ts +35 -20
- package/src/components/data-table/data-table.scss +1 -1
- package/src/components/dialog/dialog.component.ts +1 -3
- package/src/components/filter-container/filter-container.component.ts +1 -1
- package/src/components/input/input.component.ts +1 -1
- package/src/components/note/note.component.ts +20 -34
- package/src/components/note/note.scss +8 -0
- package/src/components/option/option.component.ts +11 -10
- package/src/components/order-table/order-table.scss +4 -1
- package/src/components/select/select.component.ts +64 -52
- package/src/components/style/style.component.ts +7 -1
- package/src/components/textarea/textarea.component.ts +36 -1
- package/src/components/textarea/textarea.scss +2 -2
|
@@ -3403,7 +3403,6 @@
|
|
|
3403
3403
|
"type": {
|
|
3404
3404
|
"text": "string"
|
|
3405
3405
|
},
|
|
3406
|
-
"default": "''",
|
|
3407
3406
|
"attribute": "description",
|
|
3408
3407
|
"reflects": true
|
|
3409
3408
|
},
|
|
@@ -3524,6 +3523,20 @@
|
|
|
3524
3523
|
},
|
|
3525
3524
|
"privacy": "private"
|
|
3526
3525
|
},
|
|
3526
|
+
{
|
|
3527
|
+
"kind": "field",
|
|
3528
|
+
"name": "showArrow",
|
|
3529
|
+
"type": {
|
|
3530
|
+
"text": "boolean"
|
|
3531
|
+
},
|
|
3532
|
+
"privacy": "private",
|
|
3533
|
+
"default": "true"
|
|
3534
|
+
},
|
|
3535
|
+
{
|
|
3536
|
+
"kind": "field",
|
|
3537
|
+
"name": "handleCaptionToggle",
|
|
3538
|
+
"privacy": "public"
|
|
3539
|
+
},
|
|
3527
3540
|
{
|
|
3528
3541
|
"kind": "field",
|
|
3529
3542
|
"name": "handleCollapse"
|
|
@@ -3548,7 +3561,6 @@
|
|
|
3548
3561
|
"type": {
|
|
3549
3562
|
"text": "string"
|
|
3550
3563
|
},
|
|
3551
|
-
"default": "''",
|
|
3552
3564
|
"fieldName": "description"
|
|
3553
3565
|
},
|
|
3554
3566
|
{
|
|
@@ -3994,6 +4006,16 @@
|
|
|
3994
4006
|
"default": "false",
|
|
3995
4007
|
"attribute": "hide-icon"
|
|
3996
4008
|
},
|
|
4009
|
+
{
|
|
4010
|
+
"kind": "field",
|
|
4011
|
+
"name": "showLoading",
|
|
4012
|
+
"type": {
|
|
4013
|
+
"text": "boolean"
|
|
4014
|
+
},
|
|
4015
|
+
"default": "false",
|
|
4016
|
+
"description": "Show a loading state when the dialog is submitted.",
|
|
4017
|
+
"attribute": "show-loading"
|
|
4018
|
+
},
|
|
3997
4019
|
{
|
|
3998
4020
|
"kind": "field",
|
|
3999
4021
|
"name": "trigger",
|
|
@@ -4031,6 +4053,16 @@
|
|
|
4031
4053
|
"text": "ZnDialog"
|
|
4032
4054
|
}
|
|
4033
4055
|
},
|
|
4056
|
+
{
|
|
4057
|
+
"kind": "field",
|
|
4058
|
+
"name": "loading",
|
|
4059
|
+
"type": {
|
|
4060
|
+
"text": "boolean"
|
|
4061
|
+
},
|
|
4062
|
+
"privacy": "private",
|
|
4063
|
+
"default": "false",
|
|
4064
|
+
"description": "Internal loading state used when showLoading is enabled"
|
|
4065
|
+
},
|
|
4034
4066
|
{
|
|
4035
4067
|
"kind": "method",
|
|
4036
4068
|
"name": "updateTriggers"
|
|
@@ -4139,6 +4171,15 @@
|
|
|
4139
4171
|
"default": "false",
|
|
4140
4172
|
"fieldName": "hideIcon"
|
|
4141
4173
|
},
|
|
4174
|
+
{
|
|
4175
|
+
"name": "show-loading",
|
|
4176
|
+
"type": {
|
|
4177
|
+
"text": "boolean"
|
|
4178
|
+
},
|
|
4179
|
+
"default": "false",
|
|
4180
|
+
"description": "Show a loading state when the dialog is submitted.",
|
|
4181
|
+
"fieldName": "showLoading"
|
|
4182
|
+
},
|
|
4142
4183
|
{
|
|
4143
4184
|
"name": "trigger",
|
|
4144
4185
|
"type": {
|
|
@@ -5256,6 +5297,15 @@
|
|
|
5256
5297
|
"default": "\"asc\"",
|
|
5257
5298
|
"attribute": "sort-direction"
|
|
5258
5299
|
},
|
|
5300
|
+
{
|
|
5301
|
+
"kind": "field",
|
|
5302
|
+
"name": "localSort",
|
|
5303
|
+
"type": {
|
|
5304
|
+
"text": "boolean"
|
|
5305
|
+
},
|
|
5306
|
+
"default": "false",
|
|
5307
|
+
"attribute": "local-sort"
|
|
5308
|
+
},
|
|
5259
5309
|
{
|
|
5260
5310
|
"kind": "field",
|
|
5261
5311
|
"name": "filter",
|
|
@@ -5963,6 +6013,24 @@
|
|
|
5963
6013
|
}
|
|
5964
6014
|
]
|
|
5965
6015
|
},
|
|
6016
|
+
{
|
|
6017
|
+
"kind": "method",
|
|
6018
|
+
"name": "sortLocalData",
|
|
6019
|
+
"privacy": "private",
|
|
6020
|
+
"return": {
|
|
6021
|
+
"type": {
|
|
6022
|
+
"text": "Row[]"
|
|
6023
|
+
}
|
|
6024
|
+
},
|
|
6025
|
+
"parameters": [
|
|
6026
|
+
{
|
|
6027
|
+
"name": "rows",
|
|
6028
|
+
"type": {
|
|
6029
|
+
"text": "Row[]"
|
|
6030
|
+
}
|
|
6031
|
+
}
|
|
6032
|
+
]
|
|
6033
|
+
},
|
|
5966
6034
|
{
|
|
5967
6035
|
"kind": "method",
|
|
5968
6036
|
"name": "loadingTable",
|
|
@@ -6018,6 +6086,14 @@
|
|
|
6018
6086
|
"default": "\"asc\"",
|
|
6019
6087
|
"fieldName": "sortDirection"
|
|
6020
6088
|
},
|
|
6089
|
+
{
|
|
6090
|
+
"name": "local-sort",
|
|
6091
|
+
"type": {
|
|
6092
|
+
"text": "boolean"
|
|
6093
|
+
},
|
|
6094
|
+
"default": "false",
|
|
6095
|
+
"fieldName": "localSort"
|
|
6096
|
+
},
|
|
6021
6097
|
{
|
|
6022
6098
|
"name": "filter",
|
|
6023
6099
|
"type": {
|
|
@@ -7410,16 +7486,9 @@
|
|
|
7410
7486
|
},
|
|
7411
7487
|
{
|
|
7412
7488
|
"kind": "field",
|
|
7413
|
-
"name": "
|
|
7414
|
-
"type": {
|
|
7415
|
-
"text": "HTMLElement"
|
|
7416
|
-
}
|
|
7417
|
-
},
|
|
7418
|
-
{
|
|
7419
|
-
"kind": "field",
|
|
7420
|
-
"name": "overlay",
|
|
7489
|
+
"name": "closer",
|
|
7421
7490
|
"type": {
|
|
7422
|
-
"text": "
|
|
7491
|
+
"text": "HTMLButtonElement"
|
|
7423
7492
|
}
|
|
7424
7493
|
},
|
|
7425
7494
|
{
|
|
@@ -14214,13 +14283,10 @@
|
|
|
14214
14283
|
},
|
|
14215
14284
|
{
|
|
14216
14285
|
"kind": "field",
|
|
14217
|
-
"name": "
|
|
14218
|
-
"
|
|
14219
|
-
|
|
14220
|
-
|
|
14221
|
-
"default": "3",
|
|
14222
|
-
"attribute": "collapse-at-lines",
|
|
14223
|
-
"reflects": true
|
|
14286
|
+
"name": "hasSlotController",
|
|
14287
|
+
"privacy": "private",
|
|
14288
|
+
"readonly": true,
|
|
14289
|
+
"default": "new HasSlotController(this, 'caption', 'date', '[default]', 'snippet', 'footer')"
|
|
14224
14290
|
},
|
|
14225
14291
|
{
|
|
14226
14292
|
"kind": "field",
|
|
@@ -14231,15 +14297,15 @@
|
|
|
14231
14297
|
"privacy": "private",
|
|
14232
14298
|
"default": "false"
|
|
14233
14299
|
},
|
|
14234
|
-
{
|
|
14235
|
-
"kind": "field",
|
|
14236
|
-
"name": "_toggleExpand",
|
|
14237
|
-
"privacy": "private"
|
|
14238
|
-
},
|
|
14239
14300
|
{
|
|
14240
14301
|
"kind": "method",
|
|
14241
|
-
"name": "
|
|
14242
|
-
"privacy": "private"
|
|
14302
|
+
"name": "_toggleExpand",
|
|
14303
|
+
"privacy": "private",
|
|
14304
|
+
"return": {
|
|
14305
|
+
"type": {
|
|
14306
|
+
"text": "void"
|
|
14307
|
+
}
|
|
14308
|
+
}
|
|
14243
14309
|
}
|
|
14244
14310
|
],
|
|
14245
14311
|
"events": [
|
|
@@ -14279,14 +14345,6 @@
|
|
|
14279
14345
|
},
|
|
14280
14346
|
"default": "''",
|
|
14281
14347
|
"fieldName": "body"
|
|
14282
|
-
},
|
|
14283
|
-
{
|
|
14284
|
-
"name": "collapse-at-lines",
|
|
14285
|
-
"type": {
|
|
14286
|
-
"text": "number"
|
|
14287
|
-
},
|
|
14288
|
-
"default": "3",
|
|
14289
|
-
"fieldName": "collapseAtLines"
|
|
14290
14348
|
}
|
|
14291
14349
|
],
|
|
14292
14350
|
"superclass": {
|
|
@@ -14369,7 +14427,7 @@
|
|
|
14369
14427
|
"text": "object"
|
|
14370
14428
|
},
|
|
14371
14429
|
"static": true,
|
|
14372
|
-
"default": "{'zn-icon': ZnIcon}"
|
|
14430
|
+
"default": "{ 'zn-icon': ZnIcon }"
|
|
14373
14431
|
},
|
|
14374
14432
|
{
|
|
14375
14433
|
"kind": "field",
|
|
@@ -14410,14 +14468,6 @@
|
|
|
14410
14468
|
},
|
|
14411
14469
|
"default": "false"
|
|
14412
14470
|
},
|
|
14413
|
-
{
|
|
14414
|
-
"kind": "field",
|
|
14415
|
-
"name": "selected",
|
|
14416
|
-
"type": {
|
|
14417
|
-
"text": "boolean"
|
|
14418
|
-
},
|
|
14419
|
-
"default": "false"
|
|
14420
|
-
},
|
|
14421
14471
|
{
|
|
14422
14472
|
"kind": "field",
|
|
14423
14473
|
"name": "hasHover",
|
|
@@ -14448,6 +14498,16 @@
|
|
|
14448
14498
|
"attribute": "disabled",
|
|
14449
14499
|
"reflects": true
|
|
14450
14500
|
},
|
|
14501
|
+
{
|
|
14502
|
+
"kind": "field",
|
|
14503
|
+
"name": "selected",
|
|
14504
|
+
"type": {
|
|
14505
|
+
"text": "boolean"
|
|
14506
|
+
},
|
|
14507
|
+
"default": "false",
|
|
14508
|
+
"attribute": "selected",
|
|
14509
|
+
"reflects": true
|
|
14510
|
+
},
|
|
14451
14511
|
{
|
|
14452
14512
|
"kind": "method",
|
|
14453
14513
|
"name": "handleDefaultSlotChange",
|
|
@@ -14499,6 +14559,14 @@
|
|
|
14499
14559
|
"default": "false",
|
|
14500
14560
|
"description": "Draws the option in a disabled state, preventing selection.",
|
|
14501
14561
|
"fieldName": "disabled"
|
|
14562
|
+
},
|
|
14563
|
+
{
|
|
14564
|
+
"name": "selected",
|
|
14565
|
+
"type": {
|
|
14566
|
+
"text": "boolean"
|
|
14567
|
+
},
|
|
14568
|
+
"default": "false",
|
|
14569
|
+
"fieldName": "selected"
|
|
14502
14570
|
}
|
|
14503
14571
|
],
|
|
14504
14572
|
"superclass": {
|
|
@@ -22932,6 +23000,15 @@
|
|
|
22932
23000
|
"default": "false",
|
|
22933
23001
|
"attribute": "center"
|
|
22934
23002
|
},
|
|
23003
|
+
{
|
|
23004
|
+
"kind": "field",
|
|
23005
|
+
"name": "display",
|
|
23006
|
+
"type": {
|
|
23007
|
+
"text": "string"
|
|
23008
|
+
},
|
|
23009
|
+
"default": "'contents'",
|
|
23010
|
+
"attribute": "display"
|
|
23011
|
+
},
|
|
22935
23012
|
{
|
|
22936
23013
|
"kind": "field",
|
|
22937
23014
|
"name": "font",
|
|
@@ -23060,6 +23137,14 @@
|
|
|
23060
23137
|
"default": "false",
|
|
23061
23138
|
"fieldName": "center"
|
|
23062
23139
|
},
|
|
23140
|
+
{
|
|
23141
|
+
"name": "display",
|
|
23142
|
+
"type": {
|
|
23143
|
+
"text": "string"
|
|
23144
|
+
},
|
|
23145
|
+
"default": "'contents'",
|
|
23146
|
+
"fieldName": "display"
|
|
23147
|
+
},
|
|
23063
23148
|
{
|
|
23064
23149
|
"name": "font",
|
|
23065
23150
|
"type": {
|
|
@@ -24202,6 +24287,16 @@
|
|
|
24202
24287
|
},
|
|
24203
24288
|
"privacy": "private"
|
|
24204
24289
|
},
|
|
24290
|
+
{
|
|
24291
|
+
"kind": "field",
|
|
24292
|
+
"name": "_didInitFromContent",
|
|
24293
|
+
"type": {
|
|
24294
|
+
"text": "boolean"
|
|
24295
|
+
},
|
|
24296
|
+
"privacy": "private",
|
|
24297
|
+
"default": "false",
|
|
24298
|
+
"description": "Ensures we only attempt to derive the initial value from light DOM content once"
|
|
24299
|
+
},
|
|
24205
24300
|
{
|
|
24206
24301
|
"kind": "field",
|
|
24207
24302
|
"name": "formControl",
|
|
@@ -24367,6 +24462,16 @@
|
|
|
24367
24462
|
"attribute": "form",
|
|
24368
24463
|
"reflects": true
|
|
24369
24464
|
},
|
|
24465
|
+
{
|
|
24466
|
+
"kind": "field",
|
|
24467
|
+
"name": "flush",
|
|
24468
|
+
"type": {
|
|
24469
|
+
"text": "boolean"
|
|
24470
|
+
},
|
|
24471
|
+
"default": "false",
|
|
24472
|
+
"attribute": "flush",
|
|
24473
|
+
"reflects": true
|
|
24474
|
+
},
|
|
24370
24475
|
{
|
|
24371
24476
|
"kind": "field",
|
|
24372
24477
|
"name": "required",
|
|
@@ -24825,6 +24930,14 @@
|
|
|
24825
24930
|
"description": "By default, form controls are associated with the nearest containing `<form>` element. This attribute allows you\nto place the form control outside of a form and associate it with the form that has this `id`. The form must be in\nthe same document or shadow root for this to work.",
|
|
24826
24931
|
"fieldName": "form"
|
|
24827
24932
|
},
|
|
24933
|
+
{
|
|
24934
|
+
"name": "flush",
|
|
24935
|
+
"type": {
|
|
24936
|
+
"text": "boolean"
|
|
24937
|
+
},
|
|
24938
|
+
"default": "false",
|
|
24939
|
+
"fieldName": "flush"
|
|
24940
|
+
},
|
|
24828
24941
|
{
|
|
24829
24942
|
"name": "required",
|
|
24830
24943
|
"type": {
|
|
@@ -26385,7 +26498,7 @@
|
|
|
26385
26498
|
"package": {
|
|
26386
26499
|
"name": "@kubex/zinc",
|
|
26387
26500
|
"description": "A collection of web components for building web applications based off of @shoelace-style/Shoelace",
|
|
26388
|
-
"version": "1.0.
|
|
26501
|
+
"version": "1.0.16",
|
|
26389
26502
|
"author": "",
|
|
26390
26503
|
"license": "MIT"
|
|
26391
26504
|
}
|
|
@@ -532,6 +532,11 @@
|
|
|
532
532
|
{ "name": "confirmText", "values": [] },
|
|
533
533
|
{ "name": "cancelText", "values": [] },
|
|
534
534
|
{ "name": "hide-icon", "values": [] },
|
|
535
|
+
{
|
|
536
|
+
"name": "show-loading",
|
|
537
|
+
"description": "Show a loading state when the dialog is submitted.",
|
|
538
|
+
"values": []
|
|
539
|
+
},
|
|
535
540
|
{
|
|
536
541
|
"name": "trigger",
|
|
537
542
|
"description": "The dialog's trigger element. This is used to open the dialog when clicked. If you do not provide a trigger, you\nwill need to manually open the dialog using the `show()` method.",
|
|
@@ -698,6 +703,7 @@
|
|
|
698
703
|
{ "name": "data", "values": [] },
|
|
699
704
|
{ "name": "sort-column", "values": [] },
|
|
700
705
|
{ "name": "sort-direction", "values": [] },
|
|
706
|
+
{ "name": "local-sort", "values": [] },
|
|
701
707
|
{ "name": "filter", "values": [] },
|
|
702
708
|
{ "name": "wide-column", "values": [] },
|
|
703
709
|
{ "name": "key", "values": [] },
|
|
@@ -1704,8 +1710,7 @@
|
|
|
1704
1710
|
{ "name": "color", "values": [{ "name": "typeof colors[number]" }] },
|
|
1705
1711
|
{ "name": "caption", "values": [] },
|
|
1706
1712
|
{ "name": "date", "values": [] },
|
|
1707
|
-
{ "name": "body", "values": [] }
|
|
1708
|
-
{ "name": "collapse-at-lines", "values": [] }
|
|
1713
|
+
{ "name": "body", "values": [] }
|
|
1709
1714
|
],
|
|
1710
1715
|
"references": [
|
|
1711
1716
|
{ "name": "Documentation", "url": "https://zinc.style/components/note" }
|
|
@@ -1724,7 +1729,8 @@
|
|
|
1724
1729
|
"name": "disabled",
|
|
1725
1730
|
"description": "Draws the option in a disabled state, preventing selection.",
|
|
1726
1731
|
"values": []
|
|
1727
|
-
}
|
|
1732
|
+
},
|
|
1733
|
+
{ "name": "selected", "values": [] }
|
|
1728
1734
|
],
|
|
1729
1735
|
"references": [
|
|
1730
1736
|
{
|
|
@@ -2588,6 +2594,7 @@
|
|
|
2588
2594
|
{ "name": "primary", "values": [] },
|
|
2589
2595
|
{ "name": "accent", "values": [] },
|
|
2590
2596
|
{ "name": "center", "values": [] },
|
|
2597
|
+
{ "name": "display", "values": [] },
|
|
2591
2598
|
{ "name": "font", "values": [] },
|
|
2592
2599
|
{ "name": "width", "values": [] },
|
|
2593
2600
|
{ "name": "height", "values": [] },
|
|
@@ -2726,6 +2733,7 @@
|
|
|
2726
2733
|
"description": "By default, form controls are associated with the nearest containing `<form>` element. This attribute allows you\nto place the form control outside of a form and associate it with the form that has this `id`. The form must be in\nthe same document or shadow root for this to work.",
|
|
2727
2734
|
"values": []
|
|
2728
2735
|
},
|
|
2736
|
+
{ "name": "flush", "values": [] },
|
|
2729
2737
|
{
|
|
2730
2738
|
"name": "required",
|
|
2731
2739
|
"description": "Makes the textarea a required field.",
|
package/dist/web-types.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"$schema": "https://raw.githubusercontent.com/JetBrains/web-types/master/schema/web-types.json",
|
|
3
3
|
"name": "@kubex/zinc",
|
|
4
|
-
"version": "1.0.
|
|
4
|
+
"version": "1.0.16",
|
|
5
5
|
"description-markup": "markdown",
|
|
6
6
|
"contributions": {
|
|
7
7
|
"html": {
|
|
@@ -967,10 +967,7 @@
|
|
|
967
967
|
"name": "caption",
|
|
968
968
|
"value": { "type": "string", "default": "''" }
|
|
969
969
|
},
|
|
970
|
-
{
|
|
971
|
-
"name": "description",
|
|
972
|
-
"value": { "type": "string", "default": "''" }
|
|
973
|
-
},
|
|
970
|
+
{ "name": "description", "value": { "type": "string" } },
|
|
974
971
|
{ "name": "label", "value": { "type": "string", "default": "''" } },
|
|
975
972
|
{
|
|
976
973
|
"name": "show-number",
|
|
@@ -1020,6 +1017,7 @@
|
|
|
1020
1017
|
{ "name": "storeTtl", "type": "number" },
|
|
1021
1018
|
{ "name": "flush", "type": "boolean" },
|
|
1022
1019
|
{ "name": "numberOfItems", "type": "number" },
|
|
1020
|
+
{ "name": "handleCaptionToggle" },
|
|
1023
1021
|
{ "name": "handleCollapse" },
|
|
1024
1022
|
{ "name": "recalculateNumberOfItems" }
|
|
1025
1023
|
],
|
|
@@ -1136,6 +1134,11 @@
|
|
|
1136
1134
|
"name": "hide-icon",
|
|
1137
1135
|
"value": { "type": "boolean", "default": "false" }
|
|
1138
1136
|
},
|
|
1137
|
+
{
|
|
1138
|
+
"name": "show-loading",
|
|
1139
|
+
"description": "Show a loading state when the dialog is submitted.",
|
|
1140
|
+
"value": { "type": "boolean", "default": "false" }
|
|
1141
|
+
},
|
|
1139
1142
|
{
|
|
1140
1143
|
"name": "trigger",
|
|
1141
1144
|
"description": "The dialog's trigger element. This is used to open the dialog when clicked. If you do not provide a trigger, you\nwill need to manually open the dialog using the `show()` method.",
|
|
@@ -1187,6 +1190,11 @@
|
|
|
1187
1190
|
{ "name": "confirmText", "type": "string" },
|
|
1188
1191
|
{ "name": "cancelText", "type": "string" },
|
|
1189
1192
|
{ "name": "hideIcon", "type": "boolean" },
|
|
1193
|
+
{
|
|
1194
|
+
"name": "showLoading",
|
|
1195
|
+
"description": "Show a loading state when the dialog is submitted.",
|
|
1196
|
+
"type": "boolean"
|
|
1197
|
+
},
|
|
1190
1198
|
{
|
|
1191
1199
|
"name": "trigger",
|
|
1192
1200
|
"description": "The dialog's trigger element. This is used to open the dialog when clicked. If you do not provide a trigger, you\nwill need to manually open the dialog using the `show()` method.",
|
|
@@ -1509,6 +1517,10 @@
|
|
|
1509
1517
|
"name": "sort-direction",
|
|
1510
1518
|
"value": { "type": "string", "default": "\"asc\"" }
|
|
1511
1519
|
},
|
|
1520
|
+
{
|
|
1521
|
+
"name": "local-sort",
|
|
1522
|
+
"value": { "type": "boolean", "default": "false" }
|
|
1523
|
+
},
|
|
1512
1524
|
{
|
|
1513
1525
|
"name": "filter",
|
|
1514
1526
|
"value": { "type": "string", "default": "''" }
|
|
@@ -1578,6 +1590,7 @@
|
|
|
1578
1590
|
{ "name": "data", "type": "any" },
|
|
1579
1591
|
{ "name": "sortColumn", "type": "string" },
|
|
1580
1592
|
{ "name": "sortDirection", "type": "string" },
|
|
1593
|
+
{ "name": "localSort", "type": "boolean" },
|
|
1581
1594
|
{ "name": "filter", "type": "string" },
|
|
1582
1595
|
{ "name": "wideColumn", "type": "string" },
|
|
1583
1596
|
{ "name": "key", "type": "string" },
|
|
@@ -1996,8 +2009,7 @@
|
|
|
1996
2009
|
"js": {
|
|
1997
2010
|
"properties": [
|
|
1998
2011
|
{ "name": "dialog", "type": "HTMLDialogElement" },
|
|
1999
|
-
{ "name": "
|
|
2000
|
-
{ "name": "overlay", "type": "HTMLElement" },
|
|
2012
|
+
{ "name": "closer", "type": "HTMLButtonElement" },
|
|
2001
2013
|
{
|
|
2002
2014
|
"name": "variant",
|
|
2003
2015
|
"description": "The dialog's theme variant.",
|
|
@@ -3840,11 +3852,7 @@
|
|
|
3840
3852
|
"value": { "type": "string", "default": "''" }
|
|
3841
3853
|
},
|
|
3842
3854
|
{ "name": "date", "value": { "type": "string", "default": "''" } },
|
|
3843
|
-
{ "name": "body", "value": { "type": "string", "default": "''" } }
|
|
3844
|
-
{
|
|
3845
|
-
"name": "collapse-at-lines",
|
|
3846
|
-
"value": { "type": "number", "default": "3" }
|
|
3847
|
-
}
|
|
3855
|
+
{ "name": "body", "value": { "type": "string", "default": "''" } }
|
|
3848
3856
|
],
|
|
3849
3857
|
"slots": [
|
|
3850
3858
|
{ "name": "caption", "description": "The note's caption." },
|
|
@@ -3859,8 +3867,7 @@
|
|
|
3859
3867
|
{ "name": "color", "type": "typeof colors[number]" },
|
|
3860
3868
|
{ "name": "caption", "type": "string" },
|
|
3861
3869
|
{ "name": "date", "type": "string" },
|
|
3862
|
-
{ "name": "body", "type": "string" }
|
|
3863
|
-
{ "name": "collapseAtLines", "type": "number" }
|
|
3870
|
+
{ "name": "body", "type": "string" }
|
|
3864
3871
|
],
|
|
3865
3872
|
"events": [
|
|
3866
3873
|
{
|
|
@@ -3884,6 +3891,10 @@
|
|
|
3884
3891
|
"name": "disabled",
|
|
3885
3892
|
"description": "Draws the option in a disabled state, preventing selection.",
|
|
3886
3893
|
"value": { "type": "boolean", "default": "false" }
|
|
3894
|
+
},
|
|
3895
|
+
{
|
|
3896
|
+
"name": "selected",
|
|
3897
|
+
"value": { "type": "boolean", "default": "false" }
|
|
3887
3898
|
}
|
|
3888
3899
|
],
|
|
3889
3900
|
"slots": [
|
|
@@ -3903,7 +3914,6 @@
|
|
|
3903
3914
|
{ "name": "multiple", "type": "boolean" },
|
|
3904
3915
|
{ "name": "defaultSlot", "type": "HTMLSlotElement" },
|
|
3905
3916
|
{ "name": "current", "type": "boolean" },
|
|
3906
|
-
{ "name": "selected", "type": "boolean" },
|
|
3907
3917
|
{ "name": "hasHover", "type": "boolean" },
|
|
3908
3918
|
{
|
|
3909
3919
|
"name": "value",
|
|
@@ -3914,7 +3924,8 @@
|
|
|
3914
3924
|
"name": "disabled",
|
|
3915
3925
|
"description": "Draws the option in a disabled state, preventing selection.",
|
|
3916
3926
|
"type": "boolean"
|
|
3917
|
-
}
|
|
3927
|
+
},
|
|
3928
|
+
{ "name": "selected", "type": "boolean" }
|
|
3918
3929
|
],
|
|
3919
3930
|
"events": []
|
|
3920
3931
|
}
|
|
@@ -5975,6 +5986,10 @@
|
|
|
5975
5986
|
"name": "center",
|
|
5976
5987
|
"value": { "type": "boolean", "default": "false" }
|
|
5977
5988
|
},
|
|
5989
|
+
{
|
|
5990
|
+
"name": "display",
|
|
5991
|
+
"value": { "type": "string", "default": "'contents'" }
|
|
5992
|
+
},
|
|
5978
5993
|
{ "name": "font", "value": { "type": "string", "default": "''" } },
|
|
5979
5994
|
{ "name": "width", "value": { "type": "string", "default": "''" } },
|
|
5980
5995
|
{
|
|
@@ -6003,6 +6018,7 @@
|
|
|
6003
6018
|
{ "name": "primary", "type": "boolean" },
|
|
6004
6019
|
{ "name": "accent", "type": "boolean" },
|
|
6005
6020
|
{ "name": "center", "type": "boolean" },
|
|
6021
|
+
{ "name": "display", "type": "string" },
|
|
6006
6022
|
{ "name": "font", "type": "string" },
|
|
6007
6023
|
{ "name": "width", "type": "string" },
|
|
6008
6024
|
{ "name": "height", "type": "string" },
|
|
@@ -6238,6 +6254,10 @@
|
|
|
6238
6254
|
"description": "By default, form controls are associated with the nearest containing `<form>` element. This attribute allows you\nto place the form control outside of a form and associate it with the form that has this `id`. The form must be in\nthe same document or shadow root for this to work.",
|
|
6239
6255
|
"value": { "type": "string", "default": "''" }
|
|
6240
6256
|
},
|
|
6257
|
+
{
|
|
6258
|
+
"name": "flush",
|
|
6259
|
+
"value": { "type": "boolean", "default": "false" }
|
|
6260
|
+
},
|
|
6241
6261
|
{
|
|
6242
6262
|
"name": "required",
|
|
6243
6263
|
"description": "Makes the textarea a required field.",
|
|
@@ -6410,6 +6430,7 @@
|
|
|
6410
6430
|
"description": "By default, form controls are associated with the nearest containing `<form>` element. This attribute allows you\nto place the form control outside of a form and associate it with the form that has this `id`. The form must be in\nthe same document or shadow root for this to work.",
|
|
6411
6431
|
"type": "string"
|
|
6412
6432
|
},
|
|
6433
|
+
{ "name": "flush", "type": "boolean" },
|
|
6413
6434
|
{
|
|
6414
6435
|
"name": "required",
|
|
6415
6436
|
"description": "Makes the textarea a required field.",
|