@atscript/ui-styles 0.1.96 → 0.1.98
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/index.cjs +6 -6
- package/dist/index.d.cts +69 -10
- package/dist/index.d.mts +69 -10
- package/dist/index.mjs +5 -7
- package/dist/{kebab-CIOWFpN-.mjs → kebab-BTLZj6qb.mjs} +408 -1872
- package/dist/{kebab-DBLSvkJF.cjs → kebab-DIhHuSSr.cjs} +411 -1863
- package/dist/vite.cjs +1 -1
- package/dist/vite.mjs +1 -1
- package/package.json +8 -5
|
@@ -1,3 +1,37 @@
|
|
|
1
|
+
//#region src/companions.ts
|
|
2
|
+
/**
|
|
3
|
+
* Single runtime implementation of the companion-expansion walk.
|
|
4
|
+
*
|
|
5
|
+
* Given a set of starting component names, collects each component's own
|
|
6
|
+
* classes plus the classes of every companion reachable through the
|
|
7
|
+
* `componentCompanions` adjacency map (companions of companions included).
|
|
8
|
+
*
|
|
9
|
+
* Exclusion semantics: an excluded name is skipped entirely — its own
|
|
10
|
+
* classes are NOT added and the walk does NOT continue through its
|
|
11
|
+
* companions. Classes reachable only through an excluded component are
|
|
12
|
+
* therefore dropped, while classes also reachable via a non-excluded path
|
|
13
|
+
* are kept.
|
|
14
|
+
*
|
|
15
|
+
* The maps are passed in (rather than imported) so this module has no
|
|
16
|
+
* dependency on the generated data file — the generated module delegates
|
|
17
|
+
* here, and the extractor reuses the same walk.
|
|
18
|
+
*/
|
|
19
|
+
function expandComponentClasses(names, componentClasses, componentCompanions, exclude) {
|
|
20
|
+
const out = /* @__PURE__ */ new Set();
|
|
21
|
+
const visited = /* @__PURE__ */ new Set();
|
|
22
|
+
const stack = [...names];
|
|
23
|
+
while (stack.length > 0) {
|
|
24
|
+
const name = stack.pop();
|
|
25
|
+
if (visited.has(name) || exclude !== void 0 && exclude.has(name)) continue;
|
|
26
|
+
visited.add(name);
|
|
27
|
+
const classes = componentClasses[name];
|
|
28
|
+
if (classes) for (const cls of classes) out.add(cls);
|
|
29
|
+
const companions = componentCompanions[name];
|
|
30
|
+
if (companions) for (const companion of companions) stack.push(companion);
|
|
31
|
+
}
|
|
32
|
+
return out;
|
|
33
|
+
}
|
|
34
|
+
//#endregion
|
|
1
35
|
//#region src/generated/component-classes.ts
|
|
2
36
|
const componentClasses = {
|
|
3
37
|
"as-action": [
|
|
@@ -28,7 +62,6 @@ const componentClasses = {
|
|
|
28
62
|
],
|
|
29
63
|
"as-action-form-dialog": [
|
|
30
64
|
"as-action-center",
|
|
31
|
-
"as-action-field",
|
|
32
65
|
"as-action-form-body",
|
|
33
66
|
"as-action-form-cancel",
|
|
34
67
|
"as-action-form-close",
|
|
@@ -47,77 +80,6 @@ const componentClasses = {
|
|
|
47
80
|
"as-action-form-title",
|
|
48
81
|
"as-action-left",
|
|
49
82
|
"as-action-right",
|
|
50
|
-
"as-action-text",
|
|
51
|
-
"as-array-add-btn",
|
|
52
|
-
"as-array-add-row",
|
|
53
|
-
"as-array-items-chip",
|
|
54
|
-
"as-checkbox-field",
|
|
55
|
-
"as-checkbox-indeterminate",
|
|
56
|
-
"as-checkbox-row",
|
|
57
|
-
"as-collapsible-body",
|
|
58
|
-
"as-collapsible-chevron",
|
|
59
|
-
"as-collapsible-chevron-collapsed",
|
|
60
|
-
"as-collapsible-description",
|
|
61
|
-
"as-collapsible-error",
|
|
62
|
-
"as-collapsible-error-badge",
|
|
63
|
-
"as-collapsible-header",
|
|
64
|
-
"as-collapsible-island",
|
|
65
|
-
"as-collapsible-island-even",
|
|
66
|
-
"as-collapsible-island-odd",
|
|
67
|
-
"as-collapsible-section",
|
|
68
|
-
"as-collapsible-summary",
|
|
69
|
-
"as-collapsible-title",
|
|
70
|
-
"as-collapsible-title-index",
|
|
71
|
-
"as-collapsible-title-nested",
|
|
72
|
-
"as-collapsible-title-row",
|
|
73
|
-
"as-decimal",
|
|
74
|
-
"as-decimal-decimal",
|
|
75
|
-
"as-decimal-integer",
|
|
76
|
-
"as-decimal-sep",
|
|
77
|
-
"as-default-field",
|
|
78
|
-
"as-dropdown",
|
|
79
|
-
"as-dropdown-item",
|
|
80
|
-
"as-dropdown-item--active",
|
|
81
|
-
"as-dropdown-menu",
|
|
82
|
-
"as-error-slot",
|
|
83
|
-
"as-field-action-link",
|
|
84
|
-
"as-field-description",
|
|
85
|
-
"as-field-footer-row",
|
|
86
|
-
"as-field-header-actions",
|
|
87
|
-
"as-field-header-content",
|
|
88
|
-
"as-field-header-row",
|
|
89
|
-
"as-field-input-row",
|
|
90
|
-
"as-field-label",
|
|
91
|
-
"as-field-label-index",
|
|
92
|
-
"as-field-missing",
|
|
93
|
-
"as-field-remove-btn",
|
|
94
|
-
"as-field-remove-btn-icon",
|
|
95
|
-
"as-form",
|
|
96
|
-
"as-form-description",
|
|
97
|
-
"as-form-error",
|
|
98
|
-
"as-form-error-dismiss",
|
|
99
|
-
"as-form-error-message",
|
|
100
|
-
"as-form-grid",
|
|
101
|
-
"as-form-overlay",
|
|
102
|
-
"as-form-overlay-icon",
|
|
103
|
-
"as-form-title",
|
|
104
|
-
"as-grid-item",
|
|
105
|
-
"as-input-shell",
|
|
106
|
-
"as-multi-select-anchor",
|
|
107
|
-
"as-multi-select-caret",
|
|
108
|
-
"as-multi-select-chip",
|
|
109
|
-
"as-multi-select-chip-label",
|
|
110
|
-
"as-multi-select-chip-remove",
|
|
111
|
-
"as-multi-select-clear",
|
|
112
|
-
"as-multi-select-content",
|
|
113
|
-
"as-multi-select-empty",
|
|
114
|
-
"as-multi-select-footer",
|
|
115
|
-
"as-multi-select-footer-action",
|
|
116
|
-
"as-multi-select-input",
|
|
117
|
-
"as-multi-select-item",
|
|
118
|
-
"as-multi-select-item-label",
|
|
119
|
-
"as-multi-select-root",
|
|
120
|
-
"as-multi-select-viewport",
|
|
121
83
|
"as-narrow:col-span-1",
|
|
122
84
|
"as-narrow:col-span-10",
|
|
123
85
|
"as-narrow:col-span-11",
|
|
@@ -136,43 +98,7 @@ const componentClasses = {
|
|
|
136
98
|
"as-narrow:row-span-4",
|
|
137
99
|
"as-narrow:row-span-5",
|
|
138
100
|
"as-narrow:row-span-6",
|
|
139
|
-
"as-no-data",
|
|
140
|
-
"as-no-data-icon",
|
|
141
|
-
"as-no-data-text",
|
|
142
|
-
"as-no-data-textarea",
|
|
143
|
-
"as-number",
|
|
144
|
-
"as-number-input",
|
|
145
|
-
"as-object-empty",
|
|
146
|
-
"as-object-empty-add",
|
|
147
|
-
"as-object-empty-add-icon",
|
|
148
|
-
"as-optional-clear",
|
|
149
|
-
"as-paragraph-field",
|
|
150
|
-
"as-prefix",
|
|
151
|
-
"as-prefix-icon",
|
|
152
|
-
"as-radio-group",
|
|
153
|
-
"as-ref-anchor",
|
|
154
|
-
"as-ref-clear",
|
|
155
|
-
"as-ref-content",
|
|
156
|
-
"as-ref-input",
|
|
157
|
-
"as-ref-item",
|
|
158
|
-
"as-ref-item-description",
|
|
159
|
-
"as-ref-item-id",
|
|
160
|
-
"as-ref-item-label",
|
|
161
|
-
"as-ref-loading",
|
|
162
|
-
"as-ref-root",
|
|
163
|
-
"as-ref-spinner",
|
|
164
|
-
"as-ref-status",
|
|
165
|
-
"as-ref-viewport",
|
|
166
|
-
"as-select-caret",
|
|
167
|
-
"as-select-wrap",
|
|
168
|
-
"as-submit-btn",
|
|
169
|
-
"as-suffix",
|
|
170
|
-
"as-suffix-icon",
|
|
171
|
-
"as-variant-trigger",
|
|
172
|
-
"i-as-chevron-down",
|
|
173
101
|
"i-as-close",
|
|
174
|
-
"i-as-field-empty",
|
|
175
|
-
"i-as-field-fill",
|
|
176
102
|
"i-as-trash"
|
|
177
103
|
],
|
|
178
104
|
"as-array": [
|
|
@@ -182,27 +108,11 @@ const componentClasses = {
|
|
|
182
108
|
"as-array-add-btn",
|
|
183
109
|
"as-array-add-row",
|
|
184
110
|
"as-array-items-chip",
|
|
185
|
-
"as-collapsible-body",
|
|
186
|
-
"as-collapsible-chevron",
|
|
187
|
-
"as-collapsible-chevron-collapsed",
|
|
188
111
|
"as-collapsible-description",
|
|
189
|
-
"as-collapsible-error",
|
|
190
|
-
"as-collapsible-error-badge",
|
|
191
|
-
"as-collapsible-header",
|
|
192
|
-
"as-collapsible-island",
|
|
193
|
-
"as-collapsible-island-even",
|
|
194
|
-
"as-collapsible-island-odd",
|
|
195
|
-
"as-collapsible-section",
|
|
196
|
-
"as-collapsible-summary",
|
|
197
|
-
"as-collapsible-title",
|
|
198
|
-
"as-collapsible-title-index",
|
|
199
|
-
"as-collapsible-title-nested",
|
|
200
|
-
"as-collapsible-title-row",
|
|
201
112
|
"as-dropdown",
|
|
202
113
|
"as-dropdown-item",
|
|
203
114
|
"as-dropdown-item--active",
|
|
204
115
|
"as-dropdown-menu",
|
|
205
|
-
"as-field-missing",
|
|
206
116
|
"as-field-remove-btn",
|
|
207
117
|
"as-field-remove-btn-icon",
|
|
208
118
|
"as-grid-item",
|
|
@@ -373,21 +283,8 @@ const componentClasses = {
|
|
|
373
283
|
"as-checkbox-field",
|
|
374
284
|
"as-checkbox-indeterminate",
|
|
375
285
|
"as-checkbox-row",
|
|
376
|
-
"as-default-field",
|
|
377
|
-
"as-dropdown",
|
|
378
|
-
"as-dropdown-item",
|
|
379
|
-
"as-dropdown-item--active",
|
|
380
|
-
"as-dropdown-menu",
|
|
381
|
-
"as-error-slot",
|
|
382
|
-
"as-field-action-link",
|
|
383
286
|
"as-field-description",
|
|
384
|
-
"as-field-footer-row",
|
|
385
|
-
"as-field-header-actions",
|
|
386
|
-
"as-field-header-content",
|
|
387
|
-
"as-field-header-row",
|
|
388
|
-
"as-field-input-row",
|
|
389
287
|
"as-field-label",
|
|
390
|
-
"as-field-label-index",
|
|
391
288
|
"as-field-remove-btn",
|
|
392
289
|
"as-field-remove-btn-icon",
|
|
393
290
|
"as-narrow:col-span-1",
|
|
@@ -407,14 +304,7 @@ const componentClasses = {
|
|
|
407
304
|
"as-narrow:row-span-3",
|
|
408
305
|
"as-narrow:row-span-4",
|
|
409
306
|
"as-narrow:row-span-5",
|
|
410
|
-
"as-narrow:row-span-6"
|
|
411
|
-
"as-no-data",
|
|
412
|
-
"as-no-data-icon",
|
|
413
|
-
"as-no-data-text",
|
|
414
|
-
"as-no-data-textarea",
|
|
415
|
-
"as-variant-trigger",
|
|
416
|
-
"i-as-field-empty",
|
|
417
|
-
"i-as-field-fill"
|
|
307
|
+
"as-narrow:row-span-6"
|
|
418
308
|
],
|
|
419
309
|
"as-collapsible": [
|
|
420
310
|
"as-action-center",
|
|
@@ -621,85 +511,14 @@ const componentClasses = {
|
|
|
621
511
|
],
|
|
622
512
|
"as-consent-array": [
|
|
623
513
|
"as-action-center",
|
|
624
|
-
"as-action-field",
|
|
625
514
|
"as-action-left",
|
|
626
515
|
"as-action-right",
|
|
627
|
-
"as-action-text",
|
|
628
|
-
"as-array-add-btn",
|
|
629
|
-
"as-array-add-row",
|
|
630
|
-
"as-array-items-chip",
|
|
631
|
-
"as-checkbox-field",
|
|
632
|
-
"as-checkbox-indeterminate",
|
|
633
|
-
"as-checkbox-row",
|
|
634
|
-
"as-collapsible-body",
|
|
635
|
-
"as-collapsible-chevron",
|
|
636
|
-
"as-collapsible-chevron-collapsed",
|
|
637
|
-
"as-collapsible-description",
|
|
638
|
-
"as-collapsible-error",
|
|
639
|
-
"as-collapsible-error-badge",
|
|
640
|
-
"as-collapsible-header",
|
|
641
|
-
"as-collapsible-island",
|
|
642
|
-
"as-collapsible-island-even",
|
|
643
|
-
"as-collapsible-island-odd",
|
|
644
|
-
"as-collapsible-section",
|
|
645
|
-
"as-collapsible-summary",
|
|
646
|
-
"as-collapsible-title",
|
|
647
|
-
"as-collapsible-title-index",
|
|
648
|
-
"as-collapsible-title-nested",
|
|
649
|
-
"as-collapsible-title-row",
|
|
650
516
|
"as-consent-array-group",
|
|
651
517
|
"as-consent-array-item",
|
|
652
518
|
"as-consent-array-link",
|
|
653
519
|
"as-consent-array-row",
|
|
654
520
|
"as-consent-array-text",
|
|
655
|
-
"as-decimal",
|
|
656
|
-
"as-decimal-decimal",
|
|
657
|
-
"as-decimal-integer",
|
|
658
|
-
"as-decimal-sep",
|
|
659
|
-
"as-default-field",
|
|
660
|
-
"as-dropdown",
|
|
661
|
-
"as-dropdown-item",
|
|
662
|
-
"as-dropdown-item--active",
|
|
663
|
-
"as-dropdown-menu",
|
|
664
521
|
"as-error-slot",
|
|
665
|
-
"as-field-action-link",
|
|
666
|
-
"as-field-description",
|
|
667
|
-
"as-field-footer-row",
|
|
668
|
-
"as-field-header-actions",
|
|
669
|
-
"as-field-header-content",
|
|
670
|
-
"as-field-header-row",
|
|
671
|
-
"as-field-input-row",
|
|
672
|
-
"as-field-label",
|
|
673
|
-
"as-field-label-index",
|
|
674
|
-
"as-field-missing",
|
|
675
|
-
"as-field-remove-btn",
|
|
676
|
-
"as-field-remove-btn-icon",
|
|
677
|
-
"as-form",
|
|
678
|
-
"as-form-description",
|
|
679
|
-
"as-form-error",
|
|
680
|
-
"as-form-error-dismiss",
|
|
681
|
-
"as-form-error-message",
|
|
682
|
-
"as-form-grid",
|
|
683
|
-
"as-form-overlay",
|
|
684
|
-
"as-form-overlay-icon",
|
|
685
|
-
"as-form-title",
|
|
686
|
-
"as-grid-item",
|
|
687
|
-
"as-input-shell",
|
|
688
|
-
"as-multi-select-anchor",
|
|
689
|
-
"as-multi-select-caret",
|
|
690
|
-
"as-multi-select-chip",
|
|
691
|
-
"as-multi-select-chip-label",
|
|
692
|
-
"as-multi-select-chip-remove",
|
|
693
|
-
"as-multi-select-clear",
|
|
694
|
-
"as-multi-select-content",
|
|
695
|
-
"as-multi-select-empty",
|
|
696
|
-
"as-multi-select-footer",
|
|
697
|
-
"as-multi-select-footer-action",
|
|
698
|
-
"as-multi-select-input",
|
|
699
|
-
"as-multi-select-item",
|
|
700
|
-
"as-multi-select-item-label",
|
|
701
|
-
"as-multi-select-root",
|
|
702
|
-
"as-multi-select-viewport",
|
|
703
522
|
"as-narrow:col-span-1",
|
|
704
523
|
"as-narrow:col-span-10",
|
|
705
524
|
"as-narrow:col-span-11",
|
|
@@ -717,126 +536,17 @@ const componentClasses = {
|
|
|
717
536
|
"as-narrow:row-span-3",
|
|
718
537
|
"as-narrow:row-span-4",
|
|
719
538
|
"as-narrow:row-span-5",
|
|
720
|
-
"as-narrow:row-span-6"
|
|
721
|
-
"as-no-data",
|
|
722
|
-
"as-no-data-icon",
|
|
723
|
-
"as-no-data-text",
|
|
724
|
-
"as-no-data-textarea",
|
|
725
|
-
"as-number",
|
|
726
|
-
"as-number-input",
|
|
727
|
-
"as-object-empty",
|
|
728
|
-
"as-object-empty-add",
|
|
729
|
-
"as-object-empty-add-icon",
|
|
730
|
-
"as-optional-clear",
|
|
731
|
-
"as-paragraph-field",
|
|
732
|
-
"as-prefix",
|
|
733
|
-
"as-prefix-icon",
|
|
734
|
-
"as-radio-group",
|
|
735
|
-
"as-ref-anchor",
|
|
736
|
-
"as-ref-clear",
|
|
737
|
-
"as-ref-content",
|
|
738
|
-
"as-ref-input",
|
|
739
|
-
"as-ref-item",
|
|
740
|
-
"as-ref-item-description",
|
|
741
|
-
"as-ref-item-id",
|
|
742
|
-
"as-ref-item-label",
|
|
743
|
-
"as-ref-loading",
|
|
744
|
-
"as-ref-root",
|
|
745
|
-
"as-ref-spinner",
|
|
746
|
-
"as-ref-status",
|
|
747
|
-
"as-ref-viewport",
|
|
748
|
-
"as-select-caret",
|
|
749
|
-
"as-select-wrap",
|
|
750
|
-
"as-submit-btn",
|
|
751
|
-
"as-suffix",
|
|
752
|
-
"as-suffix-icon",
|
|
753
|
-
"as-variant-trigger",
|
|
754
|
-
"i-as-chevron-down",
|
|
755
|
-
"i-as-close",
|
|
756
|
-
"i-as-field-empty",
|
|
757
|
-
"i-as-field-fill"
|
|
539
|
+
"as-narrow:row-span-6"
|
|
758
540
|
],
|
|
759
541
|
"as-copy": [
|
|
760
542
|
"as-action-center",
|
|
761
|
-
"as-action-field",
|
|
762
543
|
"as-action-left",
|
|
763
544
|
"as-action-right",
|
|
764
|
-
"as-action-text",
|
|
765
|
-
"as-array-add-btn",
|
|
766
|
-
"as-array-add-row",
|
|
767
|
-
"as-array-items-chip",
|
|
768
|
-
"as-checkbox-field",
|
|
769
|
-
"as-checkbox-indeterminate",
|
|
770
|
-
"as-checkbox-row",
|
|
771
|
-
"as-collapsible-body",
|
|
772
|
-
"as-collapsible-chevron",
|
|
773
|
-
"as-collapsible-chevron-collapsed",
|
|
774
|
-
"as-collapsible-description",
|
|
775
|
-
"as-collapsible-error",
|
|
776
|
-
"as-collapsible-error-badge",
|
|
777
|
-
"as-collapsible-header",
|
|
778
|
-
"as-collapsible-island",
|
|
779
|
-
"as-collapsible-island-even",
|
|
780
|
-
"as-collapsible-island-odd",
|
|
781
|
-
"as-collapsible-section",
|
|
782
|
-
"as-collapsible-summary",
|
|
783
|
-
"as-collapsible-title",
|
|
784
|
-
"as-collapsible-title-index",
|
|
785
|
-
"as-collapsible-title-nested",
|
|
786
|
-
"as-collapsible-title-row",
|
|
787
545
|
"as-copy-btn",
|
|
788
546
|
"as-copy-icon",
|
|
789
547
|
"as-copy-input",
|
|
790
548
|
"as-copy-label",
|
|
791
549
|
"as-copy-row",
|
|
792
|
-
"as-decimal",
|
|
793
|
-
"as-decimal-decimal",
|
|
794
|
-
"as-decimal-integer",
|
|
795
|
-
"as-decimal-sep",
|
|
796
|
-
"as-default-field",
|
|
797
|
-
"as-dropdown",
|
|
798
|
-
"as-dropdown-item",
|
|
799
|
-
"as-dropdown-item--active",
|
|
800
|
-
"as-dropdown-menu",
|
|
801
|
-
"as-error-slot",
|
|
802
|
-
"as-field-action-link",
|
|
803
|
-
"as-field-description",
|
|
804
|
-
"as-field-footer-row",
|
|
805
|
-
"as-field-header-actions",
|
|
806
|
-
"as-field-header-content",
|
|
807
|
-
"as-field-header-row",
|
|
808
|
-
"as-field-input-row",
|
|
809
|
-
"as-field-label",
|
|
810
|
-
"as-field-label-index",
|
|
811
|
-
"as-field-missing",
|
|
812
|
-
"as-field-remove-btn",
|
|
813
|
-
"as-field-remove-btn-icon",
|
|
814
|
-
"as-form",
|
|
815
|
-
"as-form-description",
|
|
816
|
-
"as-form-error",
|
|
817
|
-
"as-form-error-dismiss",
|
|
818
|
-
"as-form-error-message",
|
|
819
|
-
"as-form-grid",
|
|
820
|
-
"as-form-overlay",
|
|
821
|
-
"as-form-overlay-icon",
|
|
822
|
-
"as-form-title",
|
|
823
|
-
"as-grid-item",
|
|
824
|
-
"as-input-shell",
|
|
825
|
-
"as-multi-select-anchor",
|
|
826
|
-
"as-multi-select-caret",
|
|
827
|
-
"as-multi-select-chip",
|
|
828
|
-
"as-multi-select-chip-label",
|
|
829
|
-
"as-multi-select-chip-remove",
|
|
830
|
-
"as-multi-select-clear",
|
|
831
|
-
"as-multi-select-content",
|
|
832
|
-
"as-multi-select-empty",
|
|
833
|
-
"as-multi-select-footer",
|
|
834
|
-
"as-multi-select-footer-action",
|
|
835
|
-
"as-multi-select-input",
|
|
836
|
-
"as-multi-select-item",
|
|
837
|
-
"as-multi-select-item-label",
|
|
838
|
-
"as-multi-select-root",
|
|
839
|
-
"as-multi-select-viewport",
|
|
840
550
|
"as-narrow:col-span-1",
|
|
841
551
|
"as-narrow:col-span-10",
|
|
842
552
|
"as-narrow:col-span-11",
|
|
@@ -855,68 +565,14 @@ const componentClasses = {
|
|
|
855
565
|
"as-narrow:row-span-4",
|
|
856
566
|
"as-narrow:row-span-5",
|
|
857
567
|
"as-narrow:row-span-6",
|
|
858
|
-
"as-no-data",
|
|
859
|
-
"as-no-data-icon",
|
|
860
|
-
"as-no-data-text",
|
|
861
|
-
"as-no-data-textarea",
|
|
862
|
-
"as-number",
|
|
863
|
-
"as-number-input",
|
|
864
|
-
"as-object-empty",
|
|
865
|
-
"as-object-empty-add",
|
|
866
|
-
"as-object-empty-add-icon",
|
|
867
|
-
"as-optional-clear",
|
|
868
|
-
"as-paragraph-field",
|
|
869
|
-
"as-prefix",
|
|
870
|
-
"as-prefix-icon",
|
|
871
|
-
"as-radio-group",
|
|
872
|
-
"as-ref-anchor",
|
|
873
|
-
"as-ref-clear",
|
|
874
|
-
"as-ref-content",
|
|
875
|
-
"as-ref-input",
|
|
876
|
-
"as-ref-item",
|
|
877
|
-
"as-ref-item-description",
|
|
878
|
-
"as-ref-item-id",
|
|
879
|
-
"as-ref-item-label",
|
|
880
|
-
"as-ref-loading",
|
|
881
|
-
"as-ref-root",
|
|
882
|
-
"as-ref-spinner",
|
|
883
|
-
"as-ref-status",
|
|
884
|
-
"as-ref-viewport",
|
|
885
|
-
"as-select-caret",
|
|
886
|
-
"as-select-wrap",
|
|
887
|
-
"as-submit-btn",
|
|
888
|
-
"as-suffix",
|
|
889
|
-
"as-suffix-icon",
|
|
890
|
-
"as-variant-trigger",
|
|
891
568
|
"i-as-check-circle",
|
|
892
|
-
"i-as-
|
|
893
|
-
"i-as-close",
|
|
894
|
-
"i-as-copy",
|
|
895
|
-
"i-as-field-empty",
|
|
896
|
-
"i-as-field-fill"
|
|
569
|
+
"i-as-copy"
|
|
897
570
|
],
|
|
898
571
|
"as-date": [
|
|
899
572
|
"as-action-center",
|
|
900
573
|
"as-action-left",
|
|
901
574
|
"as-action-right",
|
|
902
575
|
"as-decimal",
|
|
903
|
-
"as-default-field",
|
|
904
|
-
"as-dropdown",
|
|
905
|
-
"as-dropdown-item",
|
|
906
|
-
"as-dropdown-item--active",
|
|
907
|
-
"as-dropdown-menu",
|
|
908
|
-
"as-error-slot",
|
|
909
|
-
"as-field-action-link",
|
|
910
|
-
"as-field-description",
|
|
911
|
-
"as-field-footer-row",
|
|
912
|
-
"as-field-header-actions",
|
|
913
|
-
"as-field-header-content",
|
|
914
|
-
"as-field-header-row",
|
|
915
|
-
"as-field-input-row",
|
|
916
|
-
"as-field-label",
|
|
917
|
-
"as-field-label-index",
|
|
918
|
-
"as-field-remove-btn",
|
|
919
|
-
"as-field-remove-btn-icon",
|
|
920
576
|
"as-input-shell",
|
|
921
577
|
"as-narrow:col-span-1",
|
|
922
578
|
"as-narrow:col-span-10",
|
|
@@ -936,41 +592,17 @@ const componentClasses = {
|
|
|
936
592
|
"as-narrow:row-span-4",
|
|
937
593
|
"as-narrow:row-span-5",
|
|
938
594
|
"as-narrow:row-span-6",
|
|
939
|
-
"as-no-data",
|
|
940
|
-
"as-no-data-icon",
|
|
941
|
-
"as-no-data-text",
|
|
942
|
-
"as-no-data-textarea",
|
|
943
595
|
"as-number",
|
|
944
596
|
"as-prefix",
|
|
945
597
|
"as-prefix-icon",
|
|
946
598
|
"as-suffix",
|
|
947
|
-
"as-suffix-icon"
|
|
948
|
-
"as-variant-trigger",
|
|
949
|
-
"i-as-field-empty",
|
|
950
|
-
"i-as-field-fill"
|
|
599
|
+
"as-suffix-icon"
|
|
951
600
|
],
|
|
952
601
|
"as-datetime": [
|
|
953
602
|
"as-action-center",
|
|
954
603
|
"as-action-left",
|
|
955
604
|
"as-action-right",
|
|
956
605
|
"as-decimal",
|
|
957
|
-
"as-default-field",
|
|
958
|
-
"as-dropdown",
|
|
959
|
-
"as-dropdown-item",
|
|
960
|
-
"as-dropdown-item--active",
|
|
961
|
-
"as-dropdown-menu",
|
|
962
|
-
"as-error-slot",
|
|
963
|
-
"as-field-action-link",
|
|
964
|
-
"as-field-description",
|
|
965
|
-
"as-field-footer-row",
|
|
966
|
-
"as-field-header-actions",
|
|
967
|
-
"as-field-header-content",
|
|
968
|
-
"as-field-header-row",
|
|
969
|
-
"as-field-input-row",
|
|
970
|
-
"as-field-label",
|
|
971
|
-
"as-field-label-index",
|
|
972
|
-
"as-field-remove-btn",
|
|
973
|
-
"as-field-remove-btn-icon",
|
|
974
606
|
"as-input-shell",
|
|
975
607
|
"as-narrow:col-span-1",
|
|
976
608
|
"as-narrow:col-span-10",
|
|
@@ -990,18 +622,11 @@ const componentClasses = {
|
|
|
990
622
|
"as-narrow:row-span-4",
|
|
991
623
|
"as-narrow:row-span-5",
|
|
992
624
|
"as-narrow:row-span-6",
|
|
993
|
-
"as-no-data",
|
|
994
|
-
"as-no-data-icon",
|
|
995
|
-
"as-no-data-text",
|
|
996
|
-
"as-no-data-textarea",
|
|
997
625
|
"as-number",
|
|
998
626
|
"as-prefix",
|
|
999
627
|
"as-prefix-icon",
|
|
1000
628
|
"as-suffix",
|
|
1001
|
-
"as-suffix-icon"
|
|
1002
|
-
"as-variant-trigger",
|
|
1003
|
-
"i-as-field-empty",
|
|
1004
|
-
"i-as-field-fill"
|
|
629
|
+
"as-suffix-icon"
|
|
1005
630
|
],
|
|
1006
631
|
"as-decimal": [
|
|
1007
632
|
"as-action-center",
|
|
@@ -1011,23 +636,6 @@ const componentClasses = {
|
|
|
1011
636
|
"as-decimal-decimal",
|
|
1012
637
|
"as-decimal-integer",
|
|
1013
638
|
"as-decimal-sep",
|
|
1014
|
-
"as-default-field",
|
|
1015
|
-
"as-dropdown",
|
|
1016
|
-
"as-dropdown-item",
|
|
1017
|
-
"as-dropdown-item--active",
|
|
1018
|
-
"as-dropdown-menu",
|
|
1019
|
-
"as-error-slot",
|
|
1020
|
-
"as-field-action-link",
|
|
1021
|
-
"as-field-description",
|
|
1022
|
-
"as-field-footer-row",
|
|
1023
|
-
"as-field-header-actions",
|
|
1024
|
-
"as-field-header-content",
|
|
1025
|
-
"as-field-header-row",
|
|
1026
|
-
"as-field-input-row",
|
|
1027
|
-
"as-field-label",
|
|
1028
|
-
"as-field-label-index",
|
|
1029
|
-
"as-field-remove-btn",
|
|
1030
|
-
"as-field-remove-btn-icon",
|
|
1031
639
|
"as-narrow:col-span-1",
|
|
1032
640
|
"as-narrow:col-span-10",
|
|
1033
641
|
"as-narrow:col-span-11",
|
|
@@ -1046,17 +654,10 @@ const componentClasses = {
|
|
|
1046
654
|
"as-narrow:row-span-4",
|
|
1047
655
|
"as-narrow:row-span-5",
|
|
1048
656
|
"as-narrow:row-span-6",
|
|
1049
|
-
"as-no-data",
|
|
1050
|
-
"as-no-data-icon",
|
|
1051
|
-
"as-no-data-text",
|
|
1052
|
-
"as-no-data-textarea",
|
|
1053
657
|
"as-prefix",
|
|
1054
658
|
"as-prefix-icon",
|
|
1055
659
|
"as-suffix",
|
|
1056
|
-
"as-suffix-icon"
|
|
1057
|
-
"as-variant-trigger",
|
|
1058
|
-
"i-as-field-empty",
|
|
1059
|
-
"i-as-field-fill"
|
|
660
|
+
"as-suffix-icon"
|
|
1060
661
|
],
|
|
1061
662
|
"as-field": [
|
|
1062
663
|
"as-action-center",
|
|
@@ -1134,41 +735,13 @@ const componentClasses = {
|
|
|
1134
735
|
"as-action-center",
|
|
1135
736
|
"as-action-left",
|
|
1136
737
|
"as-action-right",
|
|
1137
|
-
"as-cell-number",
|
|
1138
|
-
"as-column-menu-content",
|
|
1139
|
-
"as-column-menu-item",
|
|
1140
|
-
"as-column-menu-item-active",
|
|
1141
|
-
"as-column-menu-item-badge",
|
|
1142
|
-
"as-column-menu-item-danger",
|
|
1143
|
-
"as-column-menu-item-hint",
|
|
1144
|
-
"as-column-menu-item-icon",
|
|
1145
|
-
"as-column-menu-item-label",
|
|
1146
|
-
"as-column-menu-label",
|
|
1147
|
-
"as-column-menu-separator",
|
|
1148
|
-
"as-config-dialog-close",
|
|
1149
|
-
"as-config-dialog-content",
|
|
1150
|
-
"as-config-dialog-footer",
|
|
1151
|
-
"as-config-dialog-header",
|
|
1152
|
-
"as-config-dialog-overlay",
|
|
1153
|
-
"as-config-dialog-tabs",
|
|
1154
|
-
"as-config-dialog-title",
|
|
1155
|
-
"as-config-field-count",
|
|
1156
|
-
"as-config-field-label-text",
|
|
1157
|
-
"as-config-field-label-wrap",
|
|
1158
|
-
"as-config-tab-content",
|
|
1159
738
|
"as-config-tab-count",
|
|
1160
739
|
"as-config-tab-count-active",
|
|
1161
|
-
"as-config-tab-icon",
|
|
1162
|
-
"as-config-tab-summary",
|
|
1163
|
-
"as-config-tab-summary-count",
|
|
1164
|
-
"as-config-tab-summary-count-num",
|
|
1165
|
-
"as-config-tab-summary-hint",
|
|
1166
740
|
"as-config-tab-trigger",
|
|
1167
741
|
"as-config-tabs-list",
|
|
1168
742
|
"as-filter-add-condition",
|
|
1169
743
|
"as-filter-btn",
|
|
1170
744
|
"as-filter-btn-apply",
|
|
1171
|
-
"as-filter-btn-ghost",
|
|
1172
745
|
"as-filter-condition-remove",
|
|
1173
746
|
"as-filter-condition-row",
|
|
1174
747
|
"as-filter-condition-select",
|
|
@@ -1194,165 +767,46 @@ const componentClasses = {
|
|
|
1194
767
|
"as-filter-dialog-title",
|
|
1195
768
|
"as-filter-dialog-title-label",
|
|
1196
769
|
"as-filter-dialog-title-value",
|
|
1197
|
-
"as-filter-
|
|
1198
|
-
"as-filter-
|
|
1199
|
-
"as-filter-
|
|
1200
|
-
"as-filter-
|
|
1201
|
-
"as-filter-
|
|
1202
|
-
"as-filter-
|
|
1203
|
-
"as-filter-
|
|
1204
|
-
"as-filter-
|
|
1205
|
-
"as-filter-
|
|
1206
|
-
"as-filter-
|
|
1207
|
-
"as-filter-
|
|
1208
|
-
"as-filter-
|
|
1209
|
-
"as-
|
|
1210
|
-
"as-
|
|
1211
|
-
"as-
|
|
1212
|
-
"as-
|
|
1213
|
-
"as-
|
|
1214
|
-
"as-
|
|
1215
|
-
"as-
|
|
1216
|
-
"as-
|
|
1217
|
-
"as-
|
|
1218
|
-
"as-
|
|
1219
|
-
"as-
|
|
1220
|
-
"as-
|
|
1221
|
-
"as-
|
|
1222
|
-
"as-
|
|
1223
|
-
"as-
|
|
1224
|
-
"as-
|
|
1225
|
-
"as-
|
|
1226
|
-
"as-
|
|
1227
|
-
"as-
|
|
1228
|
-
"as-
|
|
1229
|
-
"as-
|
|
1230
|
-
"as-
|
|
1231
|
-
"as-
|
|
1232
|
-
|
|
1233
|
-
|
|
1234
|
-
"as-
|
|
1235
|
-
"as-
|
|
1236
|
-
"as-
|
|
1237
|
-
"as-narrow:col-span-6",
|
|
1238
|
-
"as-narrow:col-span-7",
|
|
1239
|
-
"as-narrow:col-span-8",
|
|
1240
|
-
"as-narrow:col-span-9",
|
|
1241
|
-
"as-narrow:row-span-1",
|
|
1242
|
-
"as-narrow:row-span-2",
|
|
1243
|
-
"as-narrow:row-span-3",
|
|
1244
|
-
"as-narrow:row-span-4",
|
|
1245
|
-
"as-narrow:row-span-5",
|
|
1246
|
-
"as-narrow:row-span-6",
|
|
1247
|
-
"as-orderable-list-box",
|
|
1248
|
-
"as-orderable-list-check-icon",
|
|
1249
|
-
"as-orderable-list-checkbox",
|
|
1250
|
-
"as-orderable-list-checkbox-disabled",
|
|
1251
|
-
"as-orderable-list-drop-indicator",
|
|
1252
|
-
"as-orderable-list-grip",
|
|
1253
|
-
"as-orderable-list-grip-disabled",
|
|
1254
|
-
"as-orderable-list-item",
|
|
1255
|
-
"as-orderable-list-item-actions",
|
|
1256
|
-
"as-orderable-list-item-body",
|
|
1257
|
-
"as-orderable-list-item-content",
|
|
1258
|
-
"as-orderable-list-item-disabled",
|
|
1259
|
-
"as-orderable-list-item-dragging",
|
|
1260
|
-
"as-orderable-list-item-label",
|
|
1261
|
-
"as-orderable-list-items",
|
|
1262
|
-
"as-orderable-list-search",
|
|
1263
|
-
"as-orderable-list-search-icon",
|
|
1264
|
-
"as-orderable-list-search-wrap",
|
|
1265
|
-
"as-orderable-list-toolbar",
|
|
1266
|
-
"as-orderable-list-toolbar-actions",
|
|
1267
|
-
"as-orderable-list-toolbar-btn",
|
|
1268
|
-
"as-sorter-direction-disabled",
|
|
1269
|
-
"as-sorter-index",
|
|
1270
|
-
"as-sorter-label",
|
|
1271
|
-
"as-sorter-lock",
|
|
1272
|
-
"as-sorter-segment",
|
|
1273
|
-
"as-sorter-segment-btn",
|
|
1274
|
-
"as-sorter-segment-btn-active",
|
|
1275
|
-
"as-spacer",
|
|
1276
|
-
"as-table",
|
|
1277
|
-
"as-table-checkbox",
|
|
1278
|
-
"as-table-checkbox-checked",
|
|
1279
|
-
"as-table-checkbox-dash",
|
|
1280
|
-
"as-table-checkbox-indeterminate",
|
|
1281
|
-
"as-table-checkbox-tick",
|
|
1282
|
-
"as-table-empty",
|
|
1283
|
-
"as-table-error",
|
|
1284
|
-
"as-table-outer-wrap",
|
|
1285
|
-
"as-table-query-overlay",
|
|
1286
|
-
"as-table-query-overlay-icon",
|
|
1287
|
-
"as-table-row-active",
|
|
1288
|
-
"as-table-scroll-container",
|
|
1289
|
-
"as-table-sticky",
|
|
1290
|
-
"as-table-stretch",
|
|
1291
|
-
"as-td-filler",
|
|
1292
|
-
"as-td-select",
|
|
1293
|
-
"as-th-btn",
|
|
1294
|
-
"as-th-chevron",
|
|
1295
|
-
"as-th-dragging",
|
|
1296
|
-
"as-th-drop-indicator-after",
|
|
1297
|
-
"as-th-drop-indicator-before",
|
|
1298
|
-
"as-th-filler",
|
|
1299
|
-
"as-th-filter-badge",
|
|
1300
|
-
"as-th-fixed",
|
|
1301
|
-
"as-th-indicators",
|
|
1302
|
-
"as-th-label",
|
|
1303
|
-
"as-th-reorderable",
|
|
1304
|
-
"as-th-resize-handle",
|
|
1305
|
-
"as-th-resizing",
|
|
1306
|
-
"as-th-select",
|
|
1307
|
-
"as-th-sort",
|
|
1308
|
-
"as-vh-empty",
|
|
1309
|
-
"as-vh-empty-body",
|
|
1310
|
-
"as-vh-empty-clear",
|
|
1311
|
-
"as-vh-empty-code",
|
|
1312
|
-
"as-vh-empty-icon",
|
|
1313
|
-
"as-vh-empty-title",
|
|
1314
|
-
"as-vh-error-icon",
|
|
1315
|
-
"as-window-empty-row",
|
|
1316
|
-
"as-window-scrollbar",
|
|
1317
|
-
"as-window-scrollbar-thumb",
|
|
1318
|
-
"as-window-scrollbar-track",
|
|
1319
|
-
"as-window-skeleton-cell",
|
|
1320
|
-
"as-window-skeleton-row",
|
|
1321
|
-
"as-window-table-scroll-area",
|
|
1322
|
-
"as-window-table-wrapper",
|
|
1323
|
-
"i-as-arrow-down",
|
|
1324
|
-
"i-as-arrow-up",
|
|
1325
|
-
"i-as-chevron-double-down",
|
|
1326
|
-
"i-as-chevron-double-up",
|
|
1327
|
-
"i-as-chevron-down",
|
|
1328
|
-
"i-as-chevron-up",
|
|
1329
|
-
"i-as-close",
|
|
1330
|
-
"i-as-columns",
|
|
1331
|
-
"i-as-eye-slash",
|
|
1332
|
-
"i-as-filter",
|
|
1333
|
-
"i-as-grip",
|
|
1334
|
-
"i-as-refresh",
|
|
1335
|
-
"i-as-search",
|
|
1336
|
-
"i-as-sorters",
|
|
1337
|
-
"i-as-trash",
|
|
1338
|
-
"i-as-value-help",
|
|
1339
|
-
"i-as-warning"
|
|
1340
|
-
],
|
|
1341
|
-
"as-filter-field": [
|
|
1342
|
-
"as-action-center",
|
|
1343
|
-
"as-action-left",
|
|
1344
|
-
"as-action-right",
|
|
1345
|
-
"as-cell-number",
|
|
1346
|
-
"as-column-menu-content",
|
|
1347
|
-
"as-column-menu-item",
|
|
1348
|
-
"as-column-menu-item-active",
|
|
1349
|
-
"as-column-menu-item-badge",
|
|
1350
|
-
"as-column-menu-item-danger",
|
|
1351
|
-
"as-column-menu-item-hint",
|
|
1352
|
-
"as-column-menu-item-icon",
|
|
1353
|
-
"as-column-menu-item-label",
|
|
1354
|
-
"as-column-menu-label",
|
|
1355
|
-
"as-column-menu-separator",
|
|
770
|
+
"as-filter-shortcut-btn",
|
|
771
|
+
"as-filter-shortcuts",
|
|
772
|
+
"as-filter-shortcuts-label",
|
|
773
|
+
"as-filter-value-help",
|
|
774
|
+
"as-filter-value-help-count",
|
|
775
|
+
"as-filter-value-help-filters",
|
|
776
|
+
"as-filter-value-help-filters-toggle",
|
|
777
|
+
"as-filter-value-help-filters-toggle-active",
|
|
778
|
+
"as-filter-value-help-search",
|
|
779
|
+
"as-filter-value-help-search-icon",
|
|
780
|
+
"as-filter-value-help-search-wrap",
|
|
781
|
+
"as-filter-value-help-toolbar",
|
|
782
|
+
"as-narrow:col-span-1",
|
|
783
|
+
"as-narrow:col-span-10",
|
|
784
|
+
"as-narrow:col-span-11",
|
|
785
|
+
"as-narrow:col-span-12",
|
|
786
|
+
"as-narrow:col-span-2",
|
|
787
|
+
"as-narrow:col-span-3",
|
|
788
|
+
"as-narrow:col-span-4",
|
|
789
|
+
"as-narrow:col-span-5",
|
|
790
|
+
"as-narrow:col-span-6",
|
|
791
|
+
"as-narrow:col-span-7",
|
|
792
|
+
"as-narrow:col-span-8",
|
|
793
|
+
"as-narrow:col-span-9",
|
|
794
|
+
"as-narrow:row-span-1",
|
|
795
|
+
"as-narrow:row-span-2",
|
|
796
|
+
"as-narrow:row-span-3",
|
|
797
|
+
"as-narrow:row-span-4",
|
|
798
|
+
"as-narrow:row-span-5",
|
|
799
|
+
"as-narrow:row-span-6",
|
|
800
|
+
"as-spacer",
|
|
801
|
+
"i-as-close",
|
|
802
|
+
"i-as-filter",
|
|
803
|
+
"i-as-search",
|
|
804
|
+
"i-as-trash"
|
|
805
|
+
],
|
|
806
|
+
"as-filter-field": [
|
|
807
|
+
"as-action-center",
|
|
808
|
+
"as-action-left",
|
|
809
|
+
"as-action-right",
|
|
1356
810
|
"as-filter-field",
|
|
1357
811
|
"as-filter-field-body",
|
|
1358
812
|
"as-filter-field-chip",
|
|
@@ -1402,21 +856,15 @@ const componentClasses = {
|
|
|
1402
856
|
"as-table-stretch",
|
|
1403
857
|
"as-td-filler",
|
|
1404
858
|
"as-td-select",
|
|
1405
|
-
"as-th-btn",
|
|
1406
|
-
"as-th-chevron",
|
|
1407
859
|
"as-th-dragging",
|
|
1408
860
|
"as-th-drop-indicator-after",
|
|
1409
861
|
"as-th-drop-indicator-before",
|
|
1410
862
|
"as-th-filler",
|
|
1411
|
-
"as-th-filter-badge",
|
|
1412
863
|
"as-th-fixed",
|
|
1413
|
-
"as-th-indicators",
|
|
1414
|
-
"as-th-label",
|
|
1415
864
|
"as-th-reorderable",
|
|
1416
865
|
"as-th-resize-handle",
|
|
1417
866
|
"as-th-resizing",
|
|
1418
867
|
"as-th-select",
|
|
1419
|
-
"as-th-sort",
|
|
1420
868
|
"as-vh-empty",
|
|
1421
869
|
"as-vh-empty-body",
|
|
1422
870
|
"as-vh-empty-clear",
|
|
@@ -1424,13 +872,7 @@ const componentClasses = {
|
|
|
1424
872
|
"as-vh-empty-icon",
|
|
1425
873
|
"as-vh-empty-title",
|
|
1426
874
|
"as-vh-error-icon",
|
|
1427
|
-
"i-as-arrow-down",
|
|
1428
|
-
"i-as-arrow-up",
|
|
1429
|
-
"i-as-chevron-down",
|
|
1430
|
-
"i-as-chevron-up",
|
|
1431
875
|
"i-as-close",
|
|
1432
|
-
"i-as-eye-slash",
|
|
1433
|
-
"i-as-filter",
|
|
1434
876
|
"i-as-refresh",
|
|
1435
877
|
"i-as-search",
|
|
1436
878
|
"i-as-trash",
|
|
@@ -1469,32 +911,6 @@ const componentClasses = {
|
|
|
1469
911
|
"as-action-center",
|
|
1470
912
|
"as-action-left",
|
|
1471
913
|
"as-action-right",
|
|
1472
|
-
"as-cell-number",
|
|
1473
|
-
"as-column-menu-content",
|
|
1474
|
-
"as-column-menu-item",
|
|
1475
|
-
"as-column-menu-item-active",
|
|
1476
|
-
"as-column-menu-item-badge",
|
|
1477
|
-
"as-column-menu-item-danger",
|
|
1478
|
-
"as-column-menu-item-hint",
|
|
1479
|
-
"as-column-menu-item-icon",
|
|
1480
|
-
"as-column-menu-item-label",
|
|
1481
|
-
"as-column-menu-label",
|
|
1482
|
-
"as-column-menu-separator",
|
|
1483
|
-
"as-filter-field",
|
|
1484
|
-
"as-filter-field-body",
|
|
1485
|
-
"as-filter-field-chip",
|
|
1486
|
-
"as-filter-field-chip-remove",
|
|
1487
|
-
"as-filter-field-chips",
|
|
1488
|
-
"as-filter-field-dropdown",
|
|
1489
|
-
"as-filter-field-dropdown-body",
|
|
1490
|
-
"as-filter-field-dropdown-footer",
|
|
1491
|
-
"as-filter-field-f4",
|
|
1492
|
-
"as-filter-field-input",
|
|
1493
|
-
"as-filter-field-label",
|
|
1494
|
-
"as-filter-field-loading",
|
|
1495
|
-
"as-filter-field-loading-icon",
|
|
1496
|
-
"as-filter-field-search",
|
|
1497
|
-
"as-kbd",
|
|
1498
914
|
"as-narrow:col-span-1",
|
|
1499
915
|
"as-narrow:col-span-10",
|
|
1500
916
|
"as-narrow:col-span-11",
|
|
@@ -1513,62 +929,12 @@ const componentClasses = {
|
|
|
1513
929
|
"as-narrow:row-span-4",
|
|
1514
930
|
"as-narrow:row-span-5",
|
|
1515
931
|
"as-narrow:row-span-6",
|
|
1516
|
-
"as-
|
|
1517
|
-
"as-table-checkbox",
|
|
1518
|
-
"as-table-checkbox-checked",
|
|
1519
|
-
"as-table-checkbox-dash",
|
|
1520
|
-
"as-table-checkbox-indeterminate",
|
|
1521
|
-
"as-table-checkbox-tick",
|
|
1522
|
-
"as-table-empty",
|
|
1523
|
-
"as-table-error",
|
|
1524
|
-
"as-table-query-overlay",
|
|
1525
|
-
"as-table-query-overlay-icon",
|
|
1526
|
-
"as-table-row-active",
|
|
1527
|
-
"as-table-scroll-container",
|
|
1528
|
-
"as-table-sticky",
|
|
1529
|
-
"as-table-stretch",
|
|
1530
|
-
"as-td-filler",
|
|
1531
|
-
"as-td-select",
|
|
1532
|
-
"as-th-btn",
|
|
1533
|
-
"as-th-chevron",
|
|
1534
|
-
"as-th-dragging",
|
|
1535
|
-
"as-th-drop-indicator-after",
|
|
1536
|
-
"as-th-drop-indicator-before",
|
|
1537
|
-
"as-th-filler",
|
|
1538
|
-
"as-th-filter-badge",
|
|
1539
|
-
"as-th-fixed",
|
|
1540
|
-
"as-th-indicators",
|
|
1541
|
-
"as-th-label",
|
|
1542
|
-
"as-th-reorderable",
|
|
1543
|
-
"as-th-resize-handle",
|
|
1544
|
-
"as-th-resizing",
|
|
1545
|
-
"as-th-select",
|
|
1546
|
-
"as-th-sort",
|
|
1547
|
-
"as-vh-empty",
|
|
1548
|
-
"as-vh-empty-body",
|
|
1549
|
-
"as-vh-empty-clear",
|
|
1550
|
-
"as-vh-empty-code",
|
|
1551
|
-
"as-vh-empty-icon",
|
|
1552
|
-
"as-vh-empty-title",
|
|
1553
|
-
"as-vh-error-icon",
|
|
1554
|
-
"i-as-arrow-down",
|
|
1555
|
-
"i-as-arrow-up",
|
|
1556
|
-
"i-as-chevron-down",
|
|
1557
|
-
"i-as-chevron-up",
|
|
1558
|
-
"i-as-close",
|
|
1559
|
-
"i-as-eye-slash",
|
|
1560
|
-
"i-as-filter",
|
|
1561
|
-
"i-as-refresh",
|
|
1562
|
-
"i-as-search",
|
|
1563
|
-
"i-as-trash",
|
|
1564
|
-
"i-as-value-help",
|
|
1565
|
-
"i-as-warning"
|
|
932
|
+
"i-as-trash"
|
|
1566
933
|
],
|
|
1567
934
|
"as-form": [
|
|
1568
935
|
"as-action-center",
|
|
1569
936
|
"as-action-left",
|
|
1570
937
|
"as-action-right",
|
|
1571
|
-
"as-field-missing",
|
|
1572
938
|
"as-form",
|
|
1573
939
|
"as-form-error",
|
|
1574
940
|
"as-form-error-dismiss",
|
|
@@ -1576,7 +942,6 @@ const componentClasses = {
|
|
|
1576
942
|
"as-form-grid",
|
|
1577
943
|
"as-form-overlay",
|
|
1578
944
|
"as-form-overlay-icon",
|
|
1579
|
-
"as-grid-item",
|
|
1580
945
|
"as-narrow:col-span-1",
|
|
1581
946
|
"as-narrow:col-span-10",
|
|
1582
947
|
"as-narrow:col-span-11",
|
|
@@ -1602,23 +967,6 @@ const componentClasses = {
|
|
|
1602
967
|
"as-action-left",
|
|
1603
968
|
"as-action-right",
|
|
1604
969
|
"as-decimal",
|
|
1605
|
-
"as-default-field",
|
|
1606
|
-
"as-dropdown",
|
|
1607
|
-
"as-dropdown-item",
|
|
1608
|
-
"as-dropdown-item--active",
|
|
1609
|
-
"as-dropdown-menu",
|
|
1610
|
-
"as-error-slot",
|
|
1611
|
-
"as-field-action-link",
|
|
1612
|
-
"as-field-description",
|
|
1613
|
-
"as-field-footer-row",
|
|
1614
|
-
"as-field-header-actions",
|
|
1615
|
-
"as-field-header-content",
|
|
1616
|
-
"as-field-header-row",
|
|
1617
|
-
"as-field-input-row",
|
|
1618
|
-
"as-field-label",
|
|
1619
|
-
"as-field-label-index",
|
|
1620
|
-
"as-field-remove-btn",
|
|
1621
|
-
"as-field-remove-btn-icon",
|
|
1622
970
|
"as-input-shell",
|
|
1623
971
|
"as-narrow:col-span-1",
|
|
1624
972
|
"as-narrow:col-span-10",
|
|
@@ -1638,25 +986,16 @@ const componentClasses = {
|
|
|
1638
986
|
"as-narrow:row-span-4",
|
|
1639
987
|
"as-narrow:row-span-5",
|
|
1640
988
|
"as-narrow:row-span-6",
|
|
1641
|
-
"as-no-data",
|
|
1642
|
-
"as-no-data-icon",
|
|
1643
|
-
"as-no-data-text",
|
|
1644
|
-
"as-no-data-textarea",
|
|
1645
989
|
"as-number",
|
|
1646
990
|
"as-prefix",
|
|
1647
991
|
"as-prefix-icon",
|
|
1648
992
|
"as-suffix",
|
|
1649
|
-
"as-suffix-icon"
|
|
1650
|
-
"as-variant-trigger",
|
|
1651
|
-
"i-as-field-empty",
|
|
1652
|
-
"i-as-field-fill"
|
|
993
|
+
"as-suffix-icon"
|
|
1653
994
|
],
|
|
1654
995
|
"as-iterator": [
|
|
1655
996
|
"as-action-center",
|
|
1656
997
|
"as-action-left",
|
|
1657
998
|
"as-action-right",
|
|
1658
|
-
"as-field-missing",
|
|
1659
|
-
"as-grid-item",
|
|
1660
999
|
"as-narrow:col-span-1",
|
|
1661
1000
|
"as-narrow:col-span-10",
|
|
1662
1001
|
"as-narrow:col-span-11",
|
|
@@ -1680,23 +1019,7 @@ const componentClasses = {
|
|
|
1680
1019
|
"as-action-center",
|
|
1681
1020
|
"as-action-left",
|
|
1682
1021
|
"as-action-right",
|
|
1683
|
-
"as-default-field",
|
|
1684
|
-
"as-dropdown",
|
|
1685
|
-
"as-dropdown-item",
|
|
1686
|
-
"as-dropdown-item--active",
|
|
1687
|
-
"as-dropdown-menu",
|
|
1688
|
-
"as-error-slot",
|
|
1689
|
-
"as-field-action-link",
|
|
1690
|
-
"as-field-description",
|
|
1691
|
-
"as-field-footer-row",
|
|
1692
|
-
"as-field-header-actions",
|
|
1693
|
-
"as-field-header-content",
|
|
1694
|
-
"as-field-header-row",
|
|
1695
|
-
"as-field-input-row",
|
|
1696
1022
|
"as-field-label",
|
|
1697
|
-
"as-field-label-index",
|
|
1698
|
-
"as-field-remove-btn",
|
|
1699
|
-
"as-field-remove-btn-icon",
|
|
1700
1023
|
"as-multi-select-anchor",
|
|
1701
1024
|
"as-multi-select-caret",
|
|
1702
1025
|
"as-multi-select-chip",
|
|
@@ -1730,37 +1053,13 @@ const componentClasses = {
|
|
|
1730
1053
|
"as-narrow:row-span-4",
|
|
1731
1054
|
"as-narrow:row-span-5",
|
|
1732
1055
|
"as-narrow:row-span-6",
|
|
1733
|
-
"as-no-data",
|
|
1734
|
-
"as-no-data-icon",
|
|
1735
|
-
"as-no-data-text",
|
|
1736
|
-
"as-no-data-textarea",
|
|
1737
|
-
"as-variant-trigger",
|
|
1738
1056
|
"i-as-chevron-down",
|
|
1739
|
-
"i-as-close"
|
|
1740
|
-
"i-as-field-empty",
|
|
1741
|
-
"i-as-field-fill"
|
|
1057
|
+
"i-as-close"
|
|
1742
1058
|
],
|
|
1743
1059
|
"as-number": [
|
|
1744
1060
|
"as-action-center",
|
|
1745
1061
|
"as-action-left",
|
|
1746
1062
|
"as-action-right",
|
|
1747
|
-
"as-default-field",
|
|
1748
|
-
"as-dropdown",
|
|
1749
|
-
"as-dropdown-item",
|
|
1750
|
-
"as-dropdown-item--active",
|
|
1751
|
-
"as-dropdown-menu",
|
|
1752
|
-
"as-error-slot",
|
|
1753
|
-
"as-field-action-link",
|
|
1754
|
-
"as-field-description",
|
|
1755
|
-
"as-field-footer-row",
|
|
1756
|
-
"as-field-header-actions",
|
|
1757
|
-
"as-field-header-content",
|
|
1758
|
-
"as-field-header-row",
|
|
1759
|
-
"as-field-input-row",
|
|
1760
|
-
"as-field-label",
|
|
1761
|
-
"as-field-label-index",
|
|
1762
|
-
"as-field-remove-btn",
|
|
1763
|
-
"as-field-remove-btn-icon",
|
|
1764
1063
|
"as-narrow:col-span-1",
|
|
1765
1064
|
"as-narrow:col-span-10",
|
|
1766
1065
|
"as-narrow:col-span-11",
|
|
@@ -1779,45 +1078,22 @@ const componentClasses = {
|
|
|
1779
1078
|
"as-narrow:row-span-4",
|
|
1780
1079
|
"as-narrow:row-span-5",
|
|
1781
1080
|
"as-narrow:row-span-6",
|
|
1782
|
-
"as-no-data",
|
|
1783
|
-
"as-no-data-icon",
|
|
1784
|
-
"as-no-data-text",
|
|
1785
|
-
"as-no-data-textarea",
|
|
1786
1081
|
"as-number",
|
|
1787
1082
|
"as-number-input",
|
|
1788
1083
|
"as-prefix",
|
|
1789
1084
|
"as-prefix-icon",
|
|
1790
1085
|
"as-suffix",
|
|
1791
|
-
"as-suffix-icon"
|
|
1792
|
-
"as-variant-trigger",
|
|
1793
|
-
"i-as-field-empty",
|
|
1794
|
-
"i-as-field-fill"
|
|
1086
|
+
"as-suffix-icon"
|
|
1795
1087
|
],
|
|
1796
1088
|
"as-object": [
|
|
1797
1089
|
"as-action-center",
|
|
1798
1090
|
"as-action-left",
|
|
1799
1091
|
"as-action-right",
|
|
1800
|
-
"as-collapsible-body",
|
|
1801
|
-
"as-collapsible-chevron",
|
|
1802
|
-
"as-collapsible-chevron-collapsed",
|
|
1803
1092
|
"as-collapsible-description",
|
|
1804
|
-
"as-collapsible-error",
|
|
1805
|
-
"as-collapsible-error-badge",
|
|
1806
|
-
"as-collapsible-header",
|
|
1807
|
-
"as-collapsible-island",
|
|
1808
|
-
"as-collapsible-island-even",
|
|
1809
|
-
"as-collapsible-island-odd",
|
|
1810
|
-
"as-collapsible-section",
|
|
1811
|
-
"as-collapsible-summary",
|
|
1812
|
-
"as-collapsible-title",
|
|
1813
|
-
"as-collapsible-title-index",
|
|
1814
|
-
"as-collapsible-title-nested",
|
|
1815
|
-
"as-collapsible-title-row",
|
|
1816
1093
|
"as-dropdown",
|
|
1817
1094
|
"as-dropdown-item",
|
|
1818
1095
|
"as-dropdown-item--active",
|
|
1819
1096
|
"as-dropdown-menu",
|
|
1820
|
-
"as-field-missing",
|
|
1821
1097
|
"as-field-remove-btn",
|
|
1822
1098
|
"as-field-remove-btn-icon",
|
|
1823
1099
|
"as-form-description",
|
|
@@ -1875,80 +1151,8 @@ const componentClasses = {
|
|
|
1875
1151
|
],
|
|
1876
1152
|
"as-password-rules": [
|
|
1877
1153
|
"as-action-center",
|
|
1878
|
-
"as-action-field",
|
|
1879
1154
|
"as-action-left",
|
|
1880
1155
|
"as-action-right",
|
|
1881
|
-
"as-action-text",
|
|
1882
|
-
"as-array-add-btn",
|
|
1883
|
-
"as-array-add-row",
|
|
1884
|
-
"as-array-items-chip",
|
|
1885
|
-
"as-checkbox-field",
|
|
1886
|
-
"as-checkbox-indeterminate",
|
|
1887
|
-
"as-checkbox-row",
|
|
1888
|
-
"as-collapsible-body",
|
|
1889
|
-
"as-collapsible-chevron",
|
|
1890
|
-
"as-collapsible-chevron-collapsed",
|
|
1891
|
-
"as-collapsible-description",
|
|
1892
|
-
"as-collapsible-error",
|
|
1893
|
-
"as-collapsible-error-badge",
|
|
1894
|
-
"as-collapsible-header",
|
|
1895
|
-
"as-collapsible-island",
|
|
1896
|
-
"as-collapsible-island-even",
|
|
1897
|
-
"as-collapsible-island-odd",
|
|
1898
|
-
"as-collapsible-section",
|
|
1899
|
-
"as-collapsible-summary",
|
|
1900
|
-
"as-collapsible-title",
|
|
1901
|
-
"as-collapsible-title-index",
|
|
1902
|
-
"as-collapsible-title-nested",
|
|
1903
|
-
"as-collapsible-title-row",
|
|
1904
|
-
"as-decimal",
|
|
1905
|
-
"as-decimal-decimal",
|
|
1906
|
-
"as-decimal-integer",
|
|
1907
|
-
"as-decimal-sep",
|
|
1908
|
-
"as-default-field",
|
|
1909
|
-
"as-dropdown",
|
|
1910
|
-
"as-dropdown-item",
|
|
1911
|
-
"as-dropdown-item--active",
|
|
1912
|
-
"as-dropdown-menu",
|
|
1913
|
-
"as-error-slot",
|
|
1914
|
-
"as-field-action-link",
|
|
1915
|
-
"as-field-description",
|
|
1916
|
-
"as-field-footer-row",
|
|
1917
|
-
"as-field-header-actions",
|
|
1918
|
-
"as-field-header-content",
|
|
1919
|
-
"as-field-header-row",
|
|
1920
|
-
"as-field-input-row",
|
|
1921
|
-
"as-field-label",
|
|
1922
|
-
"as-field-label-index",
|
|
1923
|
-
"as-field-missing",
|
|
1924
|
-
"as-field-remove-btn",
|
|
1925
|
-
"as-field-remove-btn-icon",
|
|
1926
|
-
"as-form",
|
|
1927
|
-
"as-form-description",
|
|
1928
|
-
"as-form-error",
|
|
1929
|
-
"as-form-error-dismiss",
|
|
1930
|
-
"as-form-error-message",
|
|
1931
|
-
"as-form-grid",
|
|
1932
|
-
"as-form-overlay",
|
|
1933
|
-
"as-form-overlay-icon",
|
|
1934
|
-
"as-form-title",
|
|
1935
|
-
"as-grid-item",
|
|
1936
|
-
"as-input-shell",
|
|
1937
|
-
"as-multi-select-anchor",
|
|
1938
|
-
"as-multi-select-caret",
|
|
1939
|
-
"as-multi-select-chip",
|
|
1940
|
-
"as-multi-select-chip-label",
|
|
1941
|
-
"as-multi-select-chip-remove",
|
|
1942
|
-
"as-multi-select-clear",
|
|
1943
|
-
"as-multi-select-content",
|
|
1944
|
-
"as-multi-select-empty",
|
|
1945
|
-
"as-multi-select-footer",
|
|
1946
|
-
"as-multi-select-footer-action",
|
|
1947
|
-
"as-multi-select-input",
|
|
1948
|
-
"as-multi-select-item",
|
|
1949
|
-
"as-multi-select-item-label",
|
|
1950
|
-
"as-multi-select-root",
|
|
1951
|
-
"as-multi-select-viewport",
|
|
1952
1156
|
"as-narrow:col-span-1",
|
|
1953
1157
|
"as-narrow:col-span-10",
|
|
1954
1158
|
"as-narrow:col-span-11",
|
|
@@ -1967,48 +1171,11 @@ const componentClasses = {
|
|
|
1967
1171
|
"as-narrow:row-span-4",
|
|
1968
1172
|
"as-narrow:row-span-5",
|
|
1969
1173
|
"as-narrow:row-span-6",
|
|
1970
|
-
"as-no-data",
|
|
1971
|
-
"as-no-data-icon",
|
|
1972
|
-
"as-no-data-text",
|
|
1973
|
-
"as-no-data-textarea",
|
|
1974
|
-
"as-number",
|
|
1975
|
-
"as-number-input",
|
|
1976
|
-
"as-object-empty",
|
|
1977
|
-
"as-object-empty-add",
|
|
1978
|
-
"as-object-empty-add-icon",
|
|
1979
|
-
"as-optional-clear",
|
|
1980
|
-
"as-paragraph-field",
|
|
1981
1174
|
"as-password-rules",
|
|
1982
1175
|
"as-password-rules-icon",
|
|
1983
1176
|
"as-password-rules-list",
|
|
1984
1177
|
"as-password-rules-row",
|
|
1985
|
-
"as-password-rules-text"
|
|
1986
|
-
"as-prefix",
|
|
1987
|
-
"as-prefix-icon",
|
|
1988
|
-
"as-radio-group",
|
|
1989
|
-
"as-ref-anchor",
|
|
1990
|
-
"as-ref-clear",
|
|
1991
|
-
"as-ref-content",
|
|
1992
|
-
"as-ref-input",
|
|
1993
|
-
"as-ref-item",
|
|
1994
|
-
"as-ref-item-description",
|
|
1995
|
-
"as-ref-item-id",
|
|
1996
|
-
"as-ref-item-label",
|
|
1997
|
-
"as-ref-loading",
|
|
1998
|
-
"as-ref-root",
|
|
1999
|
-
"as-ref-spinner",
|
|
2000
|
-
"as-ref-status",
|
|
2001
|
-
"as-ref-viewport",
|
|
2002
|
-
"as-select-caret",
|
|
2003
|
-
"as-select-wrap",
|
|
2004
|
-
"as-submit-btn",
|
|
2005
|
-
"as-suffix",
|
|
2006
|
-
"as-suffix-icon",
|
|
2007
|
-
"as-variant-trigger",
|
|
2008
|
-
"i-as-chevron-down",
|
|
2009
|
-
"i-as-close",
|
|
2010
|
-
"i-as-field-empty",
|
|
2011
|
-
"i-as-field-fill"
|
|
1178
|
+
"as-password-rules-text"
|
|
2012
1179
|
],
|
|
2013
1180
|
"as-preset-dialog": [
|
|
2014
1181
|
"as-action-center",
|
|
@@ -2155,80 +1322,8 @@ const componentClasses = {
|
|
|
2155
1322
|
],
|
|
2156
1323
|
"as-qr-code": [
|
|
2157
1324
|
"as-action-center",
|
|
2158
|
-
"as-action-field",
|
|
2159
1325
|
"as-action-left",
|
|
2160
1326
|
"as-action-right",
|
|
2161
|
-
"as-action-text",
|
|
2162
|
-
"as-array-add-btn",
|
|
2163
|
-
"as-array-add-row",
|
|
2164
|
-
"as-array-items-chip",
|
|
2165
|
-
"as-checkbox-field",
|
|
2166
|
-
"as-checkbox-indeterminate",
|
|
2167
|
-
"as-checkbox-row",
|
|
2168
|
-
"as-collapsible-body",
|
|
2169
|
-
"as-collapsible-chevron",
|
|
2170
|
-
"as-collapsible-chevron-collapsed",
|
|
2171
|
-
"as-collapsible-description",
|
|
2172
|
-
"as-collapsible-error",
|
|
2173
|
-
"as-collapsible-error-badge",
|
|
2174
|
-
"as-collapsible-header",
|
|
2175
|
-
"as-collapsible-island",
|
|
2176
|
-
"as-collapsible-island-even",
|
|
2177
|
-
"as-collapsible-island-odd",
|
|
2178
|
-
"as-collapsible-section",
|
|
2179
|
-
"as-collapsible-summary",
|
|
2180
|
-
"as-collapsible-title",
|
|
2181
|
-
"as-collapsible-title-index",
|
|
2182
|
-
"as-collapsible-title-nested",
|
|
2183
|
-
"as-collapsible-title-row",
|
|
2184
|
-
"as-decimal",
|
|
2185
|
-
"as-decimal-decimal",
|
|
2186
|
-
"as-decimal-integer",
|
|
2187
|
-
"as-decimal-sep",
|
|
2188
|
-
"as-default-field",
|
|
2189
|
-
"as-dropdown",
|
|
2190
|
-
"as-dropdown-item",
|
|
2191
|
-
"as-dropdown-item--active",
|
|
2192
|
-
"as-dropdown-menu",
|
|
2193
|
-
"as-error-slot",
|
|
2194
|
-
"as-field-action-link",
|
|
2195
|
-
"as-field-description",
|
|
2196
|
-
"as-field-footer-row",
|
|
2197
|
-
"as-field-header-actions",
|
|
2198
|
-
"as-field-header-content",
|
|
2199
|
-
"as-field-header-row",
|
|
2200
|
-
"as-field-input-row",
|
|
2201
|
-
"as-field-label",
|
|
2202
|
-
"as-field-label-index",
|
|
2203
|
-
"as-field-missing",
|
|
2204
|
-
"as-field-remove-btn",
|
|
2205
|
-
"as-field-remove-btn-icon",
|
|
2206
|
-
"as-form",
|
|
2207
|
-
"as-form-description",
|
|
2208
|
-
"as-form-error",
|
|
2209
|
-
"as-form-error-dismiss",
|
|
2210
|
-
"as-form-error-message",
|
|
2211
|
-
"as-form-grid",
|
|
2212
|
-
"as-form-overlay",
|
|
2213
|
-
"as-form-overlay-icon",
|
|
2214
|
-
"as-form-title",
|
|
2215
|
-
"as-grid-item",
|
|
2216
|
-
"as-input-shell",
|
|
2217
|
-
"as-multi-select-anchor",
|
|
2218
|
-
"as-multi-select-caret",
|
|
2219
|
-
"as-multi-select-chip",
|
|
2220
|
-
"as-multi-select-chip-label",
|
|
2221
|
-
"as-multi-select-chip-remove",
|
|
2222
|
-
"as-multi-select-clear",
|
|
2223
|
-
"as-multi-select-content",
|
|
2224
|
-
"as-multi-select-empty",
|
|
2225
|
-
"as-multi-select-footer",
|
|
2226
|
-
"as-multi-select-footer-action",
|
|
2227
|
-
"as-multi-select-input",
|
|
2228
|
-
"as-multi-select-item",
|
|
2229
|
-
"as-multi-select-item-label",
|
|
2230
|
-
"as-multi-select-root",
|
|
2231
|
-
"as-multi-select-viewport",
|
|
2232
1327
|
"as-narrow:col-span-1",
|
|
2233
1328
|
"as-narrow:col-span-10",
|
|
2234
1329
|
"as-narrow:col-span-11",
|
|
@@ -2247,68 +1342,15 @@ const componentClasses = {
|
|
|
2247
1342
|
"as-narrow:row-span-4",
|
|
2248
1343
|
"as-narrow:row-span-5",
|
|
2249
1344
|
"as-narrow:row-span-6",
|
|
2250
|
-
"as-no-data",
|
|
2251
|
-
"as-no-data-icon",
|
|
2252
|
-
"as-no-data-text",
|
|
2253
|
-
"as-no-data-textarea",
|
|
2254
|
-
"as-number",
|
|
2255
|
-
"as-number-input",
|
|
2256
|
-
"as-object-empty",
|
|
2257
|
-
"as-object-empty-add",
|
|
2258
|
-
"as-object-empty-add-icon",
|
|
2259
|
-
"as-optional-clear",
|
|
2260
|
-
"as-paragraph-field",
|
|
2261
|
-
"as-prefix",
|
|
2262
|
-
"as-prefix-icon",
|
|
2263
1345
|
"as-qr-code-secret",
|
|
2264
1346
|
"as-qr-code-stack",
|
|
2265
|
-
"as-qr-code-svg"
|
|
2266
|
-
"as-radio-group",
|
|
2267
|
-
"as-ref-anchor",
|
|
2268
|
-
"as-ref-clear",
|
|
2269
|
-
"as-ref-content",
|
|
2270
|
-
"as-ref-input",
|
|
2271
|
-
"as-ref-item",
|
|
2272
|
-
"as-ref-item-description",
|
|
2273
|
-
"as-ref-item-id",
|
|
2274
|
-
"as-ref-item-label",
|
|
2275
|
-
"as-ref-loading",
|
|
2276
|
-
"as-ref-root",
|
|
2277
|
-
"as-ref-spinner",
|
|
2278
|
-
"as-ref-status",
|
|
2279
|
-
"as-ref-viewport",
|
|
2280
|
-
"as-select-caret",
|
|
2281
|
-
"as-select-wrap",
|
|
2282
|
-
"as-submit-btn",
|
|
2283
|
-
"as-suffix",
|
|
2284
|
-
"as-suffix-icon",
|
|
2285
|
-
"as-variant-trigger",
|
|
2286
|
-
"i-as-chevron-down",
|
|
2287
|
-
"i-as-close",
|
|
2288
|
-
"i-as-field-empty",
|
|
2289
|
-
"i-as-field-fill"
|
|
1347
|
+
"as-qr-code-svg"
|
|
2290
1348
|
],
|
|
2291
1349
|
"as-radio": [
|
|
2292
1350
|
"as-action-center",
|
|
2293
1351
|
"as-action-left",
|
|
2294
1352
|
"as-action-right",
|
|
2295
|
-
"as-default-field",
|
|
2296
|
-
"as-dropdown",
|
|
2297
|
-
"as-dropdown-item",
|
|
2298
|
-
"as-dropdown-item--active",
|
|
2299
|
-
"as-dropdown-menu",
|
|
2300
|
-
"as-error-slot",
|
|
2301
|
-
"as-field-action-link",
|
|
2302
|
-
"as-field-description",
|
|
2303
|
-
"as-field-footer-row",
|
|
2304
|
-
"as-field-header-actions",
|
|
2305
|
-
"as-field-header-content",
|
|
2306
|
-
"as-field-header-row",
|
|
2307
|
-
"as-field-input-row",
|
|
2308
1353
|
"as-field-label",
|
|
2309
|
-
"as-field-label-index",
|
|
2310
|
-
"as-field-remove-btn",
|
|
2311
|
-
"as-field-remove-btn-icon",
|
|
2312
1354
|
"as-narrow:col-span-1",
|
|
2313
1355
|
"as-narrow:col-span-10",
|
|
2314
1356
|
"as-narrow:col-span-11",
|
|
@@ -2327,36 +1369,12 @@ const componentClasses = {
|
|
|
2327
1369
|
"as-narrow:row-span-4",
|
|
2328
1370
|
"as-narrow:row-span-5",
|
|
2329
1371
|
"as-narrow:row-span-6",
|
|
2330
|
-
"as-
|
|
2331
|
-
"as-no-data-icon",
|
|
2332
|
-
"as-no-data-text",
|
|
2333
|
-
"as-no-data-textarea",
|
|
2334
|
-
"as-radio-group",
|
|
2335
|
-
"as-variant-trigger",
|
|
2336
|
-
"i-as-field-empty",
|
|
2337
|
-
"i-as-field-fill"
|
|
1372
|
+
"as-radio-group"
|
|
2338
1373
|
],
|
|
2339
1374
|
"as-ref": [
|
|
2340
1375
|
"as-action-center",
|
|
2341
1376
|
"as-action-left",
|
|
2342
1377
|
"as-action-right",
|
|
2343
|
-
"as-default-field",
|
|
2344
|
-
"as-dropdown",
|
|
2345
|
-
"as-dropdown-item",
|
|
2346
|
-
"as-dropdown-item--active",
|
|
2347
|
-
"as-dropdown-menu",
|
|
2348
|
-
"as-error-slot",
|
|
2349
|
-
"as-field-action-link",
|
|
2350
|
-
"as-field-description",
|
|
2351
|
-
"as-field-footer-row",
|
|
2352
|
-
"as-field-header-actions",
|
|
2353
|
-
"as-field-header-content",
|
|
2354
|
-
"as-field-header-row",
|
|
2355
|
-
"as-field-input-row",
|
|
2356
|
-
"as-field-label",
|
|
2357
|
-
"as-field-label-index",
|
|
2358
|
-
"as-field-remove-btn",
|
|
2359
|
-
"as-field-remove-btn-icon",
|
|
2360
1378
|
"as-narrow:col-span-1",
|
|
2361
1379
|
"as-narrow:col-span-10",
|
|
2362
1380
|
"as-narrow:col-span-11",
|
|
@@ -2375,10 +1393,6 @@ const componentClasses = {
|
|
|
2375
1393
|
"as-narrow:row-span-4",
|
|
2376
1394
|
"as-narrow:row-span-5",
|
|
2377
1395
|
"as-narrow:row-span-6",
|
|
2378
|
-
"as-no-data",
|
|
2379
|
-
"as-no-data-icon",
|
|
2380
|
-
"as-no-data-text",
|
|
2381
|
-
"as-no-data-textarea",
|
|
2382
1396
|
"as-ref-anchor",
|
|
2383
1397
|
"as-ref-clear",
|
|
2384
1398
|
"as-ref-content",
|
|
@@ -2391,10 +1405,7 @@ const componentClasses = {
|
|
|
2391
1405
|
"as-ref-root",
|
|
2392
1406
|
"as-ref-spinner",
|
|
2393
1407
|
"as-ref-status",
|
|
2394
|
-
"as-ref-viewport"
|
|
2395
|
-
"as-variant-trigger",
|
|
2396
|
-
"i-as-field-empty",
|
|
2397
|
-
"i-as-field-fill"
|
|
1408
|
+
"as-ref-viewport"
|
|
2398
1409
|
],
|
|
2399
1410
|
"as-row-actions": [
|
|
2400
1411
|
"as-action-center",
|
|
@@ -2441,23 +1452,6 @@ const componentClasses = {
|
|
|
2441
1452
|
"as-action-center",
|
|
2442
1453
|
"as-action-left",
|
|
2443
1454
|
"as-action-right",
|
|
2444
|
-
"as-default-field",
|
|
2445
|
-
"as-dropdown",
|
|
2446
|
-
"as-dropdown-item",
|
|
2447
|
-
"as-dropdown-item--active",
|
|
2448
|
-
"as-dropdown-menu",
|
|
2449
|
-
"as-error-slot",
|
|
2450
|
-
"as-field-action-link",
|
|
2451
|
-
"as-field-description",
|
|
2452
|
-
"as-field-footer-row",
|
|
2453
|
-
"as-field-header-actions",
|
|
2454
|
-
"as-field-header-content",
|
|
2455
|
-
"as-field-header-row",
|
|
2456
|
-
"as-field-input-row",
|
|
2457
|
-
"as-field-label",
|
|
2458
|
-
"as-field-label-index",
|
|
2459
|
-
"as-field-remove-btn",
|
|
2460
|
-
"as-field-remove-btn-icon",
|
|
2461
1455
|
"as-narrow:col-span-1",
|
|
2462
1456
|
"as-narrow:col-span-10",
|
|
2463
1457
|
"as-narrow:col-span-11",
|
|
@@ -2476,94 +1470,17 @@ const componentClasses = {
|
|
|
2476
1470
|
"as-narrow:row-span-4",
|
|
2477
1471
|
"as-narrow:row-span-5",
|
|
2478
1472
|
"as-narrow:row-span-6",
|
|
2479
|
-
"as-no-data",
|
|
2480
|
-
"as-no-data-icon",
|
|
2481
|
-
"as-no-data-text",
|
|
2482
|
-
"as-no-data-textarea",
|
|
2483
1473
|
"as-select-caret",
|
|
2484
1474
|
"as-select-wrap",
|
|
2485
|
-
"as-
|
|
2486
|
-
"i-as-chevron-down",
|
|
2487
|
-
"i-as-field-empty",
|
|
2488
|
-
"i-as-field-fill"
|
|
1475
|
+
"i-as-chevron-down"
|
|
2489
1476
|
],
|
|
2490
1477
|
"as-sso-providers": [
|
|
2491
1478
|
"as-action-center",
|
|
2492
|
-
"as-action-field",
|
|
2493
1479
|
"as-action-left",
|
|
2494
1480
|
"as-action-right",
|
|
2495
|
-
"as-action-text",
|
|
2496
|
-
"as-array-add-btn",
|
|
2497
|
-
"as-array-add-row",
|
|
2498
|
-
"as-array-items-chip",
|
|
2499
|
-
"as-checkbox-field",
|
|
2500
|
-
"as-checkbox-indeterminate",
|
|
2501
|
-
"as-checkbox-row",
|
|
2502
|
-
"as-collapsible-body",
|
|
2503
|
-
"as-collapsible-chevron",
|
|
2504
|
-
"as-collapsible-chevron-collapsed",
|
|
2505
|
-
"as-collapsible-description",
|
|
2506
|
-
"as-collapsible-error",
|
|
2507
|
-
"as-collapsible-error-badge",
|
|
2508
|
-
"as-collapsible-header",
|
|
2509
|
-
"as-collapsible-island",
|
|
2510
|
-
"as-collapsible-island-even",
|
|
2511
|
-
"as-collapsible-island-odd",
|
|
2512
|
-
"as-collapsible-section",
|
|
2513
|
-
"as-collapsible-summary",
|
|
2514
|
-
"as-collapsible-title",
|
|
2515
|
-
"as-collapsible-title-index",
|
|
2516
|
-
"as-collapsible-title-nested",
|
|
2517
|
-
"as-collapsible-title-row",
|
|
2518
1481
|
"as-consent-array-group",
|
|
2519
|
-
"as-decimal",
|
|
2520
|
-
"as-decimal-decimal",
|
|
2521
|
-
"as-decimal-integer",
|
|
2522
|
-
"as-decimal-sep",
|
|
2523
|
-
"as-default-field",
|
|
2524
|
-
"as-dropdown",
|
|
2525
|
-
"as-dropdown-item",
|
|
2526
|
-
"as-dropdown-item--active",
|
|
2527
|
-
"as-dropdown-menu",
|
|
2528
|
-
"as-error-slot",
|
|
2529
1482
|
"as-field-action-link",
|
|
2530
|
-
"as-field-description",
|
|
2531
|
-
"as-field-footer-row",
|
|
2532
|
-
"as-field-header-actions",
|
|
2533
|
-
"as-field-header-content",
|
|
2534
|
-
"as-field-header-row",
|
|
2535
1483
|
"as-field-input-row",
|
|
2536
|
-
"as-field-label",
|
|
2537
|
-
"as-field-label-index",
|
|
2538
|
-
"as-field-missing",
|
|
2539
|
-
"as-field-remove-btn",
|
|
2540
|
-
"as-field-remove-btn-icon",
|
|
2541
|
-
"as-form",
|
|
2542
|
-
"as-form-description",
|
|
2543
|
-
"as-form-error",
|
|
2544
|
-
"as-form-error-dismiss",
|
|
2545
|
-
"as-form-error-message",
|
|
2546
|
-
"as-form-grid",
|
|
2547
|
-
"as-form-overlay",
|
|
2548
|
-
"as-form-overlay-icon",
|
|
2549
|
-
"as-form-title",
|
|
2550
|
-
"as-grid-item",
|
|
2551
|
-
"as-input-shell",
|
|
2552
|
-
"as-multi-select-anchor",
|
|
2553
|
-
"as-multi-select-caret",
|
|
2554
|
-
"as-multi-select-chip",
|
|
2555
|
-
"as-multi-select-chip-label",
|
|
2556
|
-
"as-multi-select-chip-remove",
|
|
2557
|
-
"as-multi-select-clear",
|
|
2558
|
-
"as-multi-select-content",
|
|
2559
|
-
"as-multi-select-empty",
|
|
2560
|
-
"as-multi-select-footer",
|
|
2561
|
-
"as-multi-select-footer-action",
|
|
2562
|
-
"as-multi-select-input",
|
|
2563
|
-
"as-multi-select-item",
|
|
2564
|
-
"as-multi-select-item-label",
|
|
2565
|
-
"as-multi-select-root",
|
|
2566
|
-
"as-multi-select-viewport",
|
|
2567
1484
|
"as-narrow:col-span-1",
|
|
2568
1485
|
"as-narrow:col-span-10",
|
|
2569
1486
|
"as-narrow:col-span-11",
|
|
@@ -2582,35 +1499,6 @@ const componentClasses = {
|
|
|
2582
1499
|
"as-narrow:row-span-4",
|
|
2583
1500
|
"as-narrow:row-span-5",
|
|
2584
1501
|
"as-narrow:row-span-6",
|
|
2585
|
-
"as-no-data",
|
|
2586
|
-
"as-no-data-icon",
|
|
2587
|
-
"as-no-data-text",
|
|
2588
|
-
"as-no-data-textarea",
|
|
2589
|
-
"as-number",
|
|
2590
|
-
"as-number-input",
|
|
2591
|
-
"as-object-empty",
|
|
2592
|
-
"as-object-empty-add",
|
|
2593
|
-
"as-object-empty-add-icon",
|
|
2594
|
-
"as-optional-clear",
|
|
2595
|
-
"as-paragraph-field",
|
|
2596
|
-
"as-prefix",
|
|
2597
|
-
"as-prefix-icon",
|
|
2598
|
-
"as-radio-group",
|
|
2599
|
-
"as-ref-anchor",
|
|
2600
|
-
"as-ref-clear",
|
|
2601
|
-
"as-ref-content",
|
|
2602
|
-
"as-ref-input",
|
|
2603
|
-
"as-ref-item",
|
|
2604
|
-
"as-ref-item-description",
|
|
2605
|
-
"as-ref-item-id",
|
|
2606
|
-
"as-ref-item-label",
|
|
2607
|
-
"as-ref-loading",
|
|
2608
|
-
"as-ref-root",
|
|
2609
|
-
"as-ref-spinner",
|
|
2610
|
-
"as-ref-status",
|
|
2611
|
-
"as-ref-viewport",
|
|
2612
|
-
"as-select-caret",
|
|
2613
|
-
"as-select-wrap",
|
|
2614
1502
|
"as-sso-provider-btn",
|
|
2615
1503
|
"as-sso-provider-chip",
|
|
2616
1504
|
"as-sso-provider-icon",
|
|
@@ -2618,31 +1506,12 @@ const componentClasses = {
|
|
|
2618
1506
|
"as-sso-providers-divider",
|
|
2619
1507
|
"as-sso-providers-primary",
|
|
2620
1508
|
"as-sso-providers-secondary",
|
|
2621
|
-
"as-sso-providers-stack"
|
|
2622
|
-
"as-submit-btn",
|
|
2623
|
-
"as-suffix",
|
|
2624
|
-
"as-suffix-icon",
|
|
2625
|
-
"as-variant-trigger",
|
|
2626
|
-
"i-as-chevron-down",
|
|
2627
|
-
"i-as-close",
|
|
2628
|
-
"i-as-field-empty",
|
|
2629
|
-
"i-as-field-fill"
|
|
1509
|
+
"as-sso-providers-stack"
|
|
2630
1510
|
],
|
|
2631
1511
|
"as-table": [
|
|
2632
1512
|
"as-action-center",
|
|
2633
1513
|
"as-action-left",
|
|
2634
1514
|
"as-action-right",
|
|
2635
|
-
"as-cell-number",
|
|
2636
|
-
"as-column-menu-content",
|
|
2637
|
-
"as-column-menu-item",
|
|
2638
|
-
"as-column-menu-item-active",
|
|
2639
|
-
"as-column-menu-item-badge",
|
|
2640
|
-
"as-column-menu-item-danger",
|
|
2641
|
-
"as-column-menu-item-hint",
|
|
2642
|
-
"as-column-menu-item-icon",
|
|
2643
|
-
"as-column-menu-item-label",
|
|
2644
|
-
"as-column-menu-label",
|
|
2645
|
-
"as-column-menu-separator",
|
|
2646
1515
|
"as-narrow:col-span-1",
|
|
2647
1516
|
"as-narrow:col-span-10",
|
|
2648
1517
|
"as-narrow:col-span-11",
|
|
@@ -2678,21 +1547,15 @@ const componentClasses = {
|
|
|
2678
1547
|
"as-table-stretch",
|
|
2679
1548
|
"as-td-filler",
|
|
2680
1549
|
"as-td-select",
|
|
2681
|
-
"as-th-btn",
|
|
2682
|
-
"as-th-chevron",
|
|
2683
1550
|
"as-th-dragging",
|
|
2684
1551
|
"as-th-drop-indicator-after",
|
|
2685
1552
|
"as-th-drop-indicator-before",
|
|
2686
1553
|
"as-th-filler",
|
|
2687
|
-
"as-th-filter-badge",
|
|
2688
1554
|
"as-th-fixed",
|
|
2689
|
-
"as-th-indicators",
|
|
2690
|
-
"as-th-label",
|
|
2691
1555
|
"as-th-reorderable",
|
|
2692
1556
|
"as-th-resize-handle",
|
|
2693
1557
|
"as-th-resizing",
|
|
2694
1558
|
"as-th-select",
|
|
2695
|
-
"as-th-sort",
|
|
2696
1559
|
"as-vh-empty",
|
|
2697
1560
|
"as-vh-empty-body",
|
|
2698
1561
|
"as-vh-empty-clear",
|
|
@@ -2700,13 +1563,6 @@ const componentClasses = {
|
|
|
2700
1563
|
"as-vh-empty-icon",
|
|
2701
1564
|
"as-vh-empty-title",
|
|
2702
1565
|
"as-vh-error-icon",
|
|
2703
|
-
"i-as-arrow-down",
|
|
2704
|
-
"i-as-arrow-up",
|
|
2705
|
-
"i-as-chevron-down",
|
|
2706
|
-
"i-as-chevron-up",
|
|
2707
|
-
"i-as-close",
|
|
2708
|
-
"i-as-eye-slash",
|
|
2709
|
-
"i-as-filter",
|
|
2710
1566
|
"i-as-refresh",
|
|
2711
1567
|
"i-as-search",
|
|
2712
1568
|
"i-as-trash",
|
|
@@ -2781,16 +1637,6 @@ const componentClasses = {
|
|
|
2781
1637
|
"as-action-center",
|
|
2782
1638
|
"as-action-left",
|
|
2783
1639
|
"as-action-right",
|
|
2784
|
-
"as-column-menu-content",
|
|
2785
|
-
"as-column-menu-item",
|
|
2786
|
-
"as-column-menu-item-active",
|
|
2787
|
-
"as-column-menu-item-badge",
|
|
2788
|
-
"as-column-menu-item-danger",
|
|
2789
|
-
"as-column-menu-item-hint",
|
|
2790
|
-
"as-column-menu-item-icon",
|
|
2791
|
-
"as-column-menu-item-label",
|
|
2792
|
-
"as-column-menu-label",
|
|
2793
|
-
"as-column-menu-separator",
|
|
2794
1640
|
"as-narrow:col-span-1",
|
|
2795
1641
|
"as-narrow:col-span-10",
|
|
2796
1642
|
"as-narrow:col-span-11",
|
|
@@ -2819,450 +1665,38 @@ const componentClasses = {
|
|
|
2819
1665
|
"i-as-arrow-up",
|
|
2820
1666
|
"i-as-chevron-down",
|
|
2821
1667
|
"i-as-chevron-up",
|
|
2822
|
-
"i-as-close",
|
|
2823
|
-
"i-as-eye-slash",
|
|
2824
1668
|
"i-as-filter",
|
|
2825
|
-
"i-as-
|
|
1669
|
+
"i-as-trash"
|
|
2826
1670
|
],
|
|
2827
1671
|
"as-table-root": [
|
|
2828
1672
|
"as-action-center",
|
|
2829
|
-
"as-action-field",
|
|
2830
|
-
"as-action-form-body",
|
|
2831
|
-
"as-action-form-cancel",
|
|
2832
|
-
"as-action-form-close",
|
|
2833
|
-
"as-action-form-content",
|
|
2834
|
-
"as-action-form-description",
|
|
2835
|
-
"as-action-form-error",
|
|
2836
|
-
"as-action-form-footer",
|
|
2837
|
-
"as-action-form-header",
|
|
2838
|
-
"as-action-form-id",
|
|
2839
|
-
"as-action-form-id-more",
|
|
2840
|
-
"as-action-form-ids",
|
|
2841
|
-
"as-action-form-ids-measure",
|
|
2842
|
-
"as-action-form-overlay",
|
|
2843
|
-
"as-action-form-status",
|
|
2844
|
-
"as-action-form-submit",
|
|
2845
|
-
"as-action-form-title",
|
|
2846
1673
|
"as-action-left",
|
|
2847
1674
|
"as-action-right",
|
|
2848
|
-
"as-
|
|
2849
|
-
"as-
|
|
2850
|
-
"as-
|
|
2851
|
-
"as-
|
|
2852
|
-
"as-
|
|
2853
|
-
"as-
|
|
2854
|
-
"as-
|
|
2855
|
-
"as-
|
|
2856
|
-
"as-
|
|
2857
|
-
"as-
|
|
2858
|
-
"as-
|
|
2859
|
-
"as-
|
|
2860
|
-
"as-
|
|
2861
|
-
"as-
|
|
2862
|
-
"as-
|
|
2863
|
-
"as-
|
|
2864
|
-
"as-
|
|
2865
|
-
"as-
|
|
2866
|
-
"as-
|
|
2867
|
-
"as-collapsible-description",
|
|
2868
|
-
"as-collapsible-error",
|
|
2869
|
-
"as-collapsible-error-badge",
|
|
2870
|
-
"as-collapsible-header",
|
|
2871
|
-
"as-collapsible-island",
|
|
2872
|
-
"as-collapsible-island-even",
|
|
2873
|
-
"as-collapsible-island-odd",
|
|
2874
|
-
"as-collapsible-section",
|
|
2875
|
-
"as-collapsible-summary",
|
|
2876
|
-
"as-collapsible-title",
|
|
2877
|
-
"as-collapsible-title-index",
|
|
2878
|
-
"as-collapsible-title-nested",
|
|
2879
|
-
"as-collapsible-title-row",
|
|
2880
|
-
"as-column-menu-content",
|
|
2881
|
-
"as-column-menu-item",
|
|
2882
|
-
"as-column-menu-item-active",
|
|
2883
|
-
"as-column-menu-item-badge",
|
|
2884
|
-
"as-column-menu-item-danger",
|
|
2885
|
-
"as-column-menu-item-hint",
|
|
2886
|
-
"as-column-menu-item-icon",
|
|
2887
|
-
"as-column-menu-item-label",
|
|
2888
|
-
"as-column-menu-label",
|
|
2889
|
-
"as-column-menu-separator",
|
|
2890
|
-
"as-config-dialog-close",
|
|
2891
|
-
"as-config-dialog-content",
|
|
2892
|
-
"as-config-dialog-footer",
|
|
2893
|
-
"as-config-dialog-header",
|
|
2894
|
-
"as-config-dialog-overlay",
|
|
2895
|
-
"as-config-dialog-tabs",
|
|
2896
|
-
"as-config-dialog-title",
|
|
2897
|
-
"as-config-field-count",
|
|
2898
|
-
"as-config-field-label-text",
|
|
2899
|
-
"as-config-field-label-wrap",
|
|
2900
|
-
"as-config-tab-content",
|
|
2901
|
-
"as-config-tab-count",
|
|
2902
|
-
"as-config-tab-count-active",
|
|
2903
|
-
"as-config-tab-icon",
|
|
2904
|
-
"as-config-tab-summary",
|
|
2905
|
-
"as-config-tab-summary-count",
|
|
2906
|
-
"as-config-tab-summary-count-num",
|
|
2907
|
-
"as-config-tab-summary-hint",
|
|
2908
|
-
"as-config-tab-trigger",
|
|
2909
|
-
"as-config-tabs-list",
|
|
2910
|
-
"as-confirm-dialog-body",
|
|
2911
|
-
"as-confirm-dialog-body-wrap",
|
|
2912
|
-
"as-confirm-dialog-cancel",
|
|
2913
|
-
"as-confirm-dialog-confirm",
|
|
2914
|
-
"as-confirm-dialog-confirm-error",
|
|
2915
|
-
"as-confirm-dialog-confirm-good",
|
|
2916
|
-
"as-confirm-dialog-confirm-neutral",
|
|
2917
|
-
"as-confirm-dialog-confirm-primary",
|
|
2918
|
-
"as-confirm-dialog-confirm-secondary",
|
|
2919
|
-
"as-confirm-dialog-confirm-warn",
|
|
2920
|
-
"as-confirm-dialog-content",
|
|
2921
|
-
"as-confirm-dialog-footer",
|
|
2922
|
-
"as-confirm-dialog-overlay",
|
|
2923
|
-
"as-confirm-dialog-title",
|
|
2924
|
-
"as-decimal",
|
|
2925
|
-
"as-decimal-decimal",
|
|
2926
|
-
"as-decimal-integer",
|
|
2927
|
-
"as-decimal-sep",
|
|
2928
|
-
"as-default-field",
|
|
2929
|
-
"as-dropdown",
|
|
2930
|
-
"as-dropdown-item",
|
|
2931
|
-
"as-dropdown-item--active",
|
|
2932
|
-
"as-dropdown-menu",
|
|
2933
|
-
"as-error-slot",
|
|
2934
|
-
"as-field-action-link",
|
|
2935
|
-
"as-field-description",
|
|
2936
|
-
"as-field-footer-row",
|
|
2937
|
-
"as-field-header-actions",
|
|
2938
|
-
"as-field-header-content",
|
|
2939
|
-
"as-field-header-row",
|
|
2940
|
-
"as-field-input-row",
|
|
2941
|
-
"as-field-label",
|
|
2942
|
-
"as-field-label-index",
|
|
2943
|
-
"as-field-missing",
|
|
2944
|
-
"as-field-remove-btn",
|
|
2945
|
-
"as-field-remove-btn-icon",
|
|
2946
|
-
"as-filter-add-condition",
|
|
2947
|
-
"as-filter-btn",
|
|
2948
|
-
"as-filter-btn-apply",
|
|
2949
|
-
"as-filter-btn-ghost",
|
|
2950
|
-
"as-filter-condition-remove",
|
|
2951
|
-
"as-filter-condition-row",
|
|
2952
|
-
"as-filter-condition-select",
|
|
2953
|
-
"as-filter-dialog-body",
|
|
2954
|
-
"as-filter-dialog-chip",
|
|
2955
|
-
"as-filter-dialog-chip-remove",
|
|
2956
|
-
"as-filter-dialog-chips",
|
|
2957
|
-
"as-filter-dialog-chips-bar",
|
|
2958
|
-
"as-filter-dialog-chips-count",
|
|
2959
|
-
"as-filter-dialog-chips-header",
|
|
2960
|
-
"as-filter-dialog-chips-more",
|
|
2961
|
-
"as-filter-dialog-clear-all",
|
|
2962
|
-
"as-filter-dialog-close",
|
|
2963
|
-
"as-filter-dialog-content",
|
|
2964
|
-
"as-filter-dialog-footer",
|
|
2965
|
-
"as-filter-dialog-footer-right",
|
|
2966
|
-
"as-filter-dialog-has-value-help",
|
|
2967
|
-
"as-filter-dialog-header",
|
|
2968
|
-
"as-filter-dialog-overlay",
|
|
2969
|
-
"as-filter-dialog-tab-conditions",
|
|
2970
|
-
"as-filter-dialog-tab-content",
|
|
2971
|
-
"as-filter-dialog-tabs",
|
|
2972
|
-
"as-filter-dialog-title",
|
|
2973
|
-
"as-filter-dialog-title-label",
|
|
2974
|
-
"as-filter-dialog-title-value",
|
|
2975
|
-
"as-filter-field",
|
|
2976
|
-
"as-filter-field-body",
|
|
2977
|
-
"as-filter-field-chip",
|
|
2978
|
-
"as-filter-field-chip-remove",
|
|
2979
|
-
"as-filter-field-chips",
|
|
2980
|
-
"as-filter-field-dropdown",
|
|
2981
|
-
"as-filter-field-dropdown-body",
|
|
2982
|
-
"as-filter-field-dropdown-footer",
|
|
2983
|
-
"as-filter-field-f4",
|
|
2984
|
-
"as-filter-field-input",
|
|
2985
|
-
"as-filter-field-label",
|
|
2986
|
-
"as-filter-field-loading",
|
|
2987
|
-
"as-filter-field-loading-icon",
|
|
2988
|
-
"as-filter-field-search",
|
|
2989
|
-
"as-filter-input",
|
|
2990
|
-
"as-filter-input-disabled",
|
|
2991
|
-
"as-filter-input-range",
|
|
2992
|
-
"as-filter-input-range-sep",
|
|
2993
|
-
"as-filter-select",
|
|
2994
|
-
"as-filter-shortcut-btn",
|
|
2995
|
-
"as-filter-shortcuts",
|
|
2996
|
-
"as-filter-shortcuts-label",
|
|
2997
|
-
"as-filter-value-help",
|
|
2998
|
-
"as-filter-value-help-count",
|
|
2999
|
-
"as-filter-value-help-filters",
|
|
3000
|
-
"as-filter-value-help-filters-toggle",
|
|
3001
|
-
"as-filter-value-help-filters-toggle-active",
|
|
3002
|
-
"as-filter-value-help-search",
|
|
3003
|
-
"as-filter-value-help-search-icon",
|
|
3004
|
-
"as-filter-value-help-search-wrap",
|
|
3005
|
-
"as-filter-value-help-toolbar",
|
|
3006
|
-
"as-form",
|
|
3007
|
-
"as-form-description",
|
|
3008
|
-
"as-form-error",
|
|
3009
|
-
"as-form-error-dismiss",
|
|
3010
|
-
"as-form-error-message",
|
|
3011
|
-
"as-form-grid",
|
|
3012
|
-
"as-form-overlay",
|
|
3013
|
-
"as-form-overlay-icon",
|
|
3014
|
-
"as-form-title",
|
|
3015
|
-
"as-grid-item",
|
|
3016
|
-
"as-input-shell",
|
|
3017
|
-
"as-kbd",
|
|
3018
|
-
"as-multi-select-anchor",
|
|
3019
|
-
"as-multi-select-caret",
|
|
3020
|
-
"as-multi-select-chip",
|
|
3021
|
-
"as-multi-select-chip-label",
|
|
3022
|
-
"as-multi-select-chip-remove",
|
|
3023
|
-
"as-multi-select-clear",
|
|
3024
|
-
"as-multi-select-content",
|
|
3025
|
-
"as-multi-select-empty",
|
|
3026
|
-
"as-multi-select-footer",
|
|
3027
|
-
"as-multi-select-footer-action",
|
|
3028
|
-
"as-multi-select-input",
|
|
3029
|
-
"as-multi-select-item",
|
|
3030
|
-
"as-multi-select-item-label",
|
|
3031
|
-
"as-multi-select-root",
|
|
3032
|
-
"as-multi-select-viewport",
|
|
3033
|
-
"as-narrow:col-span-1",
|
|
3034
|
-
"as-narrow:col-span-10",
|
|
3035
|
-
"as-narrow:col-span-11",
|
|
3036
|
-
"as-narrow:col-span-12",
|
|
3037
|
-
"as-narrow:col-span-2",
|
|
3038
|
-
"as-narrow:col-span-3",
|
|
3039
|
-
"as-narrow:col-span-4",
|
|
3040
|
-
"as-narrow:col-span-5",
|
|
3041
|
-
"as-narrow:col-span-6",
|
|
3042
|
-
"as-narrow:col-span-7",
|
|
3043
|
-
"as-narrow:col-span-8",
|
|
3044
|
-
"as-narrow:col-span-9",
|
|
3045
|
-
"as-narrow:row-span-1",
|
|
3046
|
-
"as-narrow:row-span-2",
|
|
3047
|
-
"as-narrow:row-span-3",
|
|
3048
|
-
"as-narrow:row-span-4",
|
|
3049
|
-
"as-narrow:row-span-5",
|
|
3050
|
-
"as-narrow:row-span-6",
|
|
3051
|
-
"as-no-data",
|
|
3052
|
-
"as-no-data-icon",
|
|
3053
|
-
"as-no-data-text",
|
|
3054
|
-
"as-no-data-textarea",
|
|
3055
|
-
"as-number",
|
|
3056
|
-
"as-number-input",
|
|
3057
|
-
"as-object-empty",
|
|
3058
|
-
"as-object-empty-add",
|
|
3059
|
-
"as-object-empty-add-icon",
|
|
3060
|
-
"as-optional-clear",
|
|
3061
|
-
"as-orderable-list-box",
|
|
3062
|
-
"as-orderable-list-check-icon",
|
|
3063
|
-
"as-orderable-list-checkbox",
|
|
3064
|
-
"as-orderable-list-checkbox-disabled",
|
|
3065
|
-
"as-orderable-list-drop-indicator",
|
|
3066
|
-
"as-orderable-list-grip",
|
|
3067
|
-
"as-orderable-list-grip-disabled",
|
|
3068
|
-
"as-orderable-list-item",
|
|
3069
|
-
"as-orderable-list-item-actions",
|
|
3070
|
-
"as-orderable-list-item-body",
|
|
3071
|
-
"as-orderable-list-item-content",
|
|
3072
|
-
"as-orderable-list-item-disabled",
|
|
3073
|
-
"as-orderable-list-item-dragging",
|
|
3074
|
-
"as-orderable-list-item-label",
|
|
3075
|
-
"as-orderable-list-items",
|
|
3076
|
-
"as-orderable-list-search",
|
|
3077
|
-
"as-orderable-list-search-icon",
|
|
3078
|
-
"as-orderable-list-search-wrap",
|
|
3079
|
-
"as-orderable-list-toolbar",
|
|
3080
|
-
"as-orderable-list-toolbar-actions",
|
|
3081
|
-
"as-orderable-list-toolbar-btn",
|
|
3082
|
-
"as-paragraph-field",
|
|
3083
|
-
"as-prefix",
|
|
3084
|
-
"as-prefix-icon",
|
|
3085
|
-
"as-preset-dialog-aspect-chip",
|
|
3086
|
-
"as-preset-dialog-aspect-strip",
|
|
3087
|
-
"as-preset-dialog-body",
|
|
3088
|
-
"as-preset-dialog-close",
|
|
3089
|
-
"as-preset-dialog-content",
|
|
3090
|
-
"as-preset-dialog-counter",
|
|
3091
|
-
"as-preset-dialog-empty",
|
|
3092
|
-
"as-preset-dialog-footer",
|
|
3093
|
-
"as-preset-dialog-footer-actions",
|
|
3094
|
-
"as-preset-dialog-footer-close",
|
|
3095
|
-
"as-preset-dialog-footer-save",
|
|
3096
|
-
"as-preset-dialog-footer-status",
|
|
3097
|
-
"as-preset-dialog-footer-unsaved",
|
|
3098
|
-
"as-preset-dialog-footer-unsaved-dot",
|
|
3099
|
-
"as-preset-dialog-header",
|
|
3100
|
-
"as-preset-dialog-legend",
|
|
3101
|
-
"as-preset-dialog-legend-icon",
|
|
3102
|
-
"as-preset-dialog-legend-item",
|
|
3103
|
-
"as-preset-dialog-overlay",
|
|
3104
|
-
"as-preset-dialog-row",
|
|
3105
|
-
"as-preset-dialog-row-active",
|
|
3106
|
-
"as-preset-dialog-row-default",
|
|
3107
|
-
"as-preset-dialog-row-delete",
|
|
3108
|
-
"as-preset-dialog-row-delete-spacer",
|
|
3109
|
-
"as-preset-dialog-row-fav",
|
|
3110
|
-
"as-preset-dialog-row-fav-spacer",
|
|
3111
|
-
"as-preset-dialog-row-label",
|
|
3112
|
-
"as-preset-dialog-row-label-text",
|
|
3113
|
-
"as-preset-dialog-row-owner",
|
|
3114
|
-
"as-preset-dialog-row-owner-self",
|
|
3115
|
-
"as-preset-dialog-row-public-indicator",
|
|
3116
|
-
"as-preset-dialog-row-public-spacer",
|
|
3117
|
-
"as-preset-dialog-row-public-toggle",
|
|
3118
|
-
"as-preset-dialog-row-rename",
|
|
3119
|
-
"as-preset-dialog-search",
|
|
3120
|
-
"as-preset-dialog-search-icon",
|
|
3121
|
-
"as-preset-dialog-search-input",
|
|
3122
|
-
"as-preset-dialog-section-header",
|
|
3123
|
-
"as-preset-dialog-title",
|
|
3124
|
-
"as-preset-dialog-toolbar",
|
|
3125
|
-
"as-radio-group",
|
|
3126
|
-
"as-ref-anchor",
|
|
3127
|
-
"as-ref-clear",
|
|
3128
|
-
"as-ref-content",
|
|
3129
|
-
"as-ref-input",
|
|
3130
|
-
"as-ref-item",
|
|
3131
|
-
"as-ref-item-description",
|
|
3132
|
-
"as-ref-item-id",
|
|
3133
|
-
"as-ref-item-label",
|
|
3134
|
-
"as-ref-loading",
|
|
3135
|
-
"as-ref-root",
|
|
3136
|
-
"as-ref-spinner",
|
|
3137
|
-
"as-ref-status",
|
|
3138
|
-
"as-ref-viewport",
|
|
3139
|
-
"as-row-actions",
|
|
3140
|
-
"as-row-actions-btn",
|
|
3141
|
-
"as-row-actions-btn-icon",
|
|
3142
|
-
"as-row-actions-btn-label",
|
|
3143
|
-
"as-row-actions-btn-labelled",
|
|
3144
|
-
"as-row-actions-intent-negative",
|
|
3145
|
-
"as-row-actions-intent-positive",
|
|
3146
|
-
"as-row-actions-intent-primary",
|
|
3147
|
-
"as-row-actions-intent-secondary",
|
|
3148
|
-
"as-row-actions-intent-warning",
|
|
3149
|
-
"as-row-actions-menu",
|
|
3150
|
-
"as-row-actions-menu-item",
|
|
3151
|
-
"as-row-actions-menu-item-icon",
|
|
3152
|
-
"as-row-actions-menu-item-label",
|
|
3153
|
-
"as-row-actions-menu-separator",
|
|
3154
|
-
"as-select-caret",
|
|
3155
|
-
"as-select-wrap",
|
|
3156
|
-
"as-sorter-direction-disabled",
|
|
3157
|
-
"as-sorter-index",
|
|
3158
|
-
"as-sorter-label",
|
|
3159
|
-
"as-sorter-lock",
|
|
3160
|
-
"as-sorter-segment",
|
|
3161
|
-
"as-sorter-segment-btn",
|
|
3162
|
-
"as-sorter-segment-btn-active",
|
|
3163
|
-
"as-spacer",
|
|
3164
|
-
"as-submit-btn",
|
|
3165
|
-
"as-suffix",
|
|
3166
|
-
"as-suffix-icon",
|
|
3167
|
-
"as-table",
|
|
3168
|
-
"as-table-actions",
|
|
3169
|
-
"as-table-checkbox",
|
|
3170
|
-
"as-table-checkbox-checked",
|
|
3171
|
-
"as-table-checkbox-dash",
|
|
3172
|
-
"as-table-checkbox-indeterminate",
|
|
3173
|
-
"as-table-checkbox-tick",
|
|
3174
|
-
"as-table-empty",
|
|
3175
|
-
"as-table-error",
|
|
3176
|
-
"as-table-outer-wrap",
|
|
3177
|
-
"as-table-query-overlay",
|
|
3178
|
-
"as-table-query-overlay-icon",
|
|
3179
|
-
"as-table-row-active",
|
|
3180
|
-
"as-table-scroll-container",
|
|
3181
|
-
"as-table-sticky",
|
|
3182
|
-
"as-table-stretch",
|
|
3183
|
-
"as-td-filler",
|
|
3184
|
-
"as-td-select",
|
|
3185
|
-
"as-th-btn",
|
|
3186
|
-
"as-th-chevron",
|
|
3187
|
-
"as-th-dragging",
|
|
3188
|
-
"as-th-drop-indicator-after",
|
|
3189
|
-
"as-th-drop-indicator-before",
|
|
3190
|
-
"as-th-filler",
|
|
3191
|
-
"as-th-filter-badge",
|
|
3192
|
-
"as-th-fixed",
|
|
3193
|
-
"as-th-indicators",
|
|
3194
|
-
"as-th-label",
|
|
3195
|
-
"as-th-reorderable",
|
|
3196
|
-
"as-th-resize-handle",
|
|
3197
|
-
"as-th-resizing",
|
|
3198
|
-
"as-th-select",
|
|
3199
|
-
"as-th-sort",
|
|
3200
|
-
"as-variant-trigger",
|
|
3201
|
-
"as-vh-empty",
|
|
3202
|
-
"as-vh-empty-body",
|
|
3203
|
-
"as-vh-empty-clear",
|
|
3204
|
-
"as-vh-empty-code",
|
|
3205
|
-
"as-vh-empty-icon",
|
|
3206
|
-
"as-vh-empty-title",
|
|
3207
|
-
"as-vh-error-icon",
|
|
3208
|
-
"as-window-empty-row",
|
|
3209
|
-
"as-window-scrollbar",
|
|
3210
|
-
"as-window-scrollbar-thumb",
|
|
3211
|
-
"as-window-scrollbar-track",
|
|
3212
|
-
"as-window-skeleton-cell",
|
|
3213
|
-
"as-window-skeleton-row",
|
|
3214
|
-
"as-window-table-scroll-area",
|
|
3215
|
-
"as-window-table-wrapper",
|
|
3216
|
-
"i-as-arrow-down",
|
|
3217
|
-
"i-as-arrow-up",
|
|
3218
|
-
"i-as-chevron-double-down",
|
|
3219
|
-
"i-as-chevron-double-up",
|
|
3220
|
-
"i-as-chevron-down",
|
|
3221
|
-
"i-as-chevron-up",
|
|
3222
|
-
"i-as-close",
|
|
3223
|
-
"i-as-columns",
|
|
3224
|
-
"i-as-eye",
|
|
3225
|
-
"i-as-eye-off",
|
|
3226
|
-
"i-as-eye-slash",
|
|
3227
|
-
"i-as-field-empty",
|
|
3228
|
-
"i-as-field-fill",
|
|
3229
|
-
"i-as-filter",
|
|
3230
|
-
"i-as-filter-ops",
|
|
3231
|
-
"i-as-grip",
|
|
3232
|
-
"i-as-menu",
|
|
3233
|
-
"i-as-pin",
|
|
3234
|
-
"i-as-pin-filled",
|
|
3235
|
-
"i-as-refresh",
|
|
3236
|
-
"i-as-search",
|
|
3237
|
-
"i-as-sorters",
|
|
3238
|
-
"i-as-star",
|
|
3239
|
-
"i-as-star-filled",
|
|
3240
|
-
"i-as-trash",
|
|
3241
|
-
"i-as-value-help",
|
|
3242
|
-
"i-as-warning"
|
|
1675
|
+
"as-narrow:col-span-1",
|
|
1676
|
+
"as-narrow:col-span-10",
|
|
1677
|
+
"as-narrow:col-span-11",
|
|
1678
|
+
"as-narrow:col-span-12",
|
|
1679
|
+
"as-narrow:col-span-2",
|
|
1680
|
+
"as-narrow:col-span-3",
|
|
1681
|
+
"as-narrow:col-span-4",
|
|
1682
|
+
"as-narrow:col-span-5",
|
|
1683
|
+
"as-narrow:col-span-6",
|
|
1684
|
+
"as-narrow:col-span-7",
|
|
1685
|
+
"as-narrow:col-span-8",
|
|
1686
|
+
"as-narrow:col-span-9",
|
|
1687
|
+
"as-narrow:row-span-1",
|
|
1688
|
+
"as-narrow:row-span-2",
|
|
1689
|
+
"as-narrow:row-span-3",
|
|
1690
|
+
"as-narrow:row-span-4",
|
|
1691
|
+
"as-narrow:row-span-5",
|
|
1692
|
+
"as-narrow:row-span-6",
|
|
1693
|
+
"i-as-trash"
|
|
3243
1694
|
],
|
|
3244
1695
|
"as-time": [
|
|
3245
1696
|
"as-action-center",
|
|
3246
1697
|
"as-action-left",
|
|
3247
1698
|
"as-action-right",
|
|
3248
1699
|
"as-decimal",
|
|
3249
|
-
"as-default-field",
|
|
3250
|
-
"as-dropdown",
|
|
3251
|
-
"as-dropdown-item",
|
|
3252
|
-
"as-dropdown-item--active",
|
|
3253
|
-
"as-dropdown-menu",
|
|
3254
|
-
"as-error-slot",
|
|
3255
|
-
"as-field-action-link",
|
|
3256
|
-
"as-field-description",
|
|
3257
|
-
"as-field-footer-row",
|
|
3258
|
-
"as-field-header-actions",
|
|
3259
|
-
"as-field-header-content",
|
|
3260
|
-
"as-field-header-row",
|
|
3261
|
-
"as-field-input-row",
|
|
3262
|
-
"as-field-label",
|
|
3263
|
-
"as-field-label-index",
|
|
3264
|
-
"as-field-remove-btn",
|
|
3265
|
-
"as-field-remove-btn-icon",
|
|
3266
1700
|
"as-input-shell",
|
|
3267
1701
|
"as-narrow:col-span-1",
|
|
3268
1702
|
"as-narrow:col-span-10",
|
|
@@ -3282,44 +1716,21 @@ const componentClasses = {
|
|
|
3282
1716
|
"as-narrow:row-span-4",
|
|
3283
1717
|
"as-narrow:row-span-5",
|
|
3284
1718
|
"as-narrow:row-span-6",
|
|
3285
|
-
"as-no-data",
|
|
3286
|
-
"as-no-data-icon",
|
|
3287
|
-
"as-no-data-text",
|
|
3288
|
-
"as-no-data-textarea",
|
|
3289
1719
|
"as-number",
|
|
3290
1720
|
"as-prefix",
|
|
3291
1721
|
"as-prefix-icon",
|
|
3292
1722
|
"as-suffix",
|
|
3293
|
-
"as-suffix-icon"
|
|
3294
|
-
"as-variant-trigger",
|
|
3295
|
-
"i-as-field-empty",
|
|
3296
|
-
"i-as-field-fill"
|
|
1723
|
+
"as-suffix-icon"
|
|
3297
1724
|
],
|
|
3298
1725
|
"as-tuple": [
|
|
3299
1726
|
"as-action-center",
|
|
3300
1727
|
"as-action-left",
|
|
3301
1728
|
"as-action-right",
|
|
3302
|
-
"as-collapsible-body",
|
|
3303
|
-
"as-collapsible-chevron",
|
|
3304
|
-
"as-collapsible-chevron-collapsed",
|
|
3305
1729
|
"as-collapsible-description",
|
|
3306
|
-
"as-collapsible-error",
|
|
3307
|
-
"as-collapsible-error-badge",
|
|
3308
|
-
"as-collapsible-header",
|
|
3309
|
-
"as-collapsible-island",
|
|
3310
|
-
"as-collapsible-island-even",
|
|
3311
|
-
"as-collapsible-island-odd",
|
|
3312
|
-
"as-collapsible-section",
|
|
3313
|
-
"as-collapsible-summary",
|
|
3314
|
-
"as-collapsible-title",
|
|
3315
|
-
"as-collapsible-title-index",
|
|
3316
|
-
"as-collapsible-title-nested",
|
|
3317
|
-
"as-collapsible-title-row",
|
|
3318
1730
|
"as-dropdown",
|
|
3319
1731
|
"as-dropdown-item",
|
|
3320
1732
|
"as-dropdown-item--active",
|
|
3321
1733
|
"as-dropdown-menu",
|
|
3322
|
-
"as-field-missing",
|
|
3323
1734
|
"as-field-remove-btn",
|
|
3324
1735
|
"as-field-remove-btn-icon",
|
|
3325
1736
|
"as-grid-item",
|
|
@@ -3412,164 +1823,37 @@ const componentClasses = {
|
|
|
3412
1823
|
"as-wf-finish-skip-fill",
|
|
3413
1824
|
"as-wf-finish-skip-label"
|
|
3414
1825
|
],
|
|
3415
|
-
"as-wf-form": [
|
|
3416
|
-
"as-action-center",
|
|
3417
|
-
"as-action-
|
|
3418
|
-
"as-action-
|
|
3419
|
-
"as-
|
|
3420
|
-
"as-
|
|
3421
|
-
"as-
|
|
3422
|
-
"as-
|
|
3423
|
-
"as-
|
|
3424
|
-
"as-
|
|
3425
|
-
"as-
|
|
3426
|
-
"as-
|
|
3427
|
-
"as-
|
|
3428
|
-
"as-
|
|
3429
|
-
"as-
|
|
3430
|
-
"as-
|
|
3431
|
-
"as-
|
|
3432
|
-
"as-
|
|
3433
|
-
"as-
|
|
3434
|
-
"as-
|
|
3435
|
-
"as-
|
|
3436
|
-
"as-
|
|
3437
|
-
"as-
|
|
3438
|
-
"as-
|
|
3439
|
-
"as-collapsible-title",
|
|
3440
|
-
"as-collapsible-title-index",
|
|
3441
|
-
"as-collapsible-title-nested",
|
|
3442
|
-
"as-collapsible-title-row",
|
|
3443
|
-
"as-decimal",
|
|
3444
|
-
"as-decimal-decimal",
|
|
3445
|
-
"as-decimal-integer",
|
|
3446
|
-
"as-decimal-sep",
|
|
3447
|
-
"as-default-field",
|
|
3448
|
-
"as-dropdown",
|
|
3449
|
-
"as-dropdown-item",
|
|
3450
|
-
"as-dropdown-item--active",
|
|
3451
|
-
"as-dropdown-menu",
|
|
3452
|
-
"as-error-slot",
|
|
3453
|
-
"as-field-action-link",
|
|
3454
|
-
"as-field-description",
|
|
3455
|
-
"as-field-footer-row",
|
|
3456
|
-
"as-field-header-actions",
|
|
3457
|
-
"as-field-header-content",
|
|
3458
|
-
"as-field-header-row",
|
|
3459
|
-
"as-field-input-row",
|
|
3460
|
-
"as-field-label",
|
|
3461
|
-
"as-field-label-index",
|
|
3462
|
-
"as-field-missing",
|
|
3463
|
-
"as-field-remove-btn",
|
|
3464
|
-
"as-field-remove-btn-icon",
|
|
3465
|
-
"as-form",
|
|
3466
|
-
"as-form-description",
|
|
3467
|
-
"as-form-error",
|
|
3468
|
-
"as-form-error-dismiss",
|
|
3469
|
-
"as-form-error-message",
|
|
3470
|
-
"as-form-grid",
|
|
3471
|
-
"as-form-overlay",
|
|
3472
|
-
"as-form-overlay-icon",
|
|
3473
|
-
"as-form-title",
|
|
3474
|
-
"as-grid-item",
|
|
3475
|
-
"as-input-shell",
|
|
3476
|
-
"as-multi-select-anchor",
|
|
3477
|
-
"as-multi-select-caret",
|
|
3478
|
-
"as-multi-select-chip",
|
|
3479
|
-
"as-multi-select-chip-label",
|
|
3480
|
-
"as-multi-select-chip-remove",
|
|
3481
|
-
"as-multi-select-clear",
|
|
3482
|
-
"as-multi-select-content",
|
|
3483
|
-
"as-multi-select-empty",
|
|
3484
|
-
"as-multi-select-footer",
|
|
3485
|
-
"as-multi-select-footer-action",
|
|
3486
|
-
"as-multi-select-input",
|
|
3487
|
-
"as-multi-select-item",
|
|
3488
|
-
"as-multi-select-item-label",
|
|
3489
|
-
"as-multi-select-root",
|
|
3490
|
-
"as-multi-select-viewport",
|
|
3491
|
-
"as-narrow:col-span-1",
|
|
3492
|
-
"as-narrow:col-span-10",
|
|
3493
|
-
"as-narrow:col-span-11",
|
|
3494
|
-
"as-narrow:col-span-12",
|
|
3495
|
-
"as-narrow:col-span-2",
|
|
3496
|
-
"as-narrow:col-span-3",
|
|
3497
|
-
"as-narrow:col-span-4",
|
|
3498
|
-
"as-narrow:col-span-5",
|
|
3499
|
-
"as-narrow:col-span-6",
|
|
3500
|
-
"as-narrow:col-span-7",
|
|
3501
|
-
"as-narrow:col-span-8",
|
|
3502
|
-
"as-narrow:col-span-9",
|
|
3503
|
-
"as-narrow:row-span-1",
|
|
3504
|
-
"as-narrow:row-span-2",
|
|
3505
|
-
"as-narrow:row-span-3",
|
|
3506
|
-
"as-narrow:row-span-4",
|
|
3507
|
-
"as-narrow:row-span-5",
|
|
3508
|
-
"as-narrow:row-span-6",
|
|
3509
|
-
"as-no-data",
|
|
3510
|
-
"as-no-data-icon",
|
|
3511
|
-
"as-no-data-text",
|
|
3512
|
-
"as-no-data-textarea",
|
|
3513
|
-
"as-number",
|
|
3514
|
-
"as-number-input",
|
|
3515
|
-
"as-object-empty",
|
|
3516
|
-
"as-object-empty-add",
|
|
3517
|
-
"as-object-empty-add-icon",
|
|
3518
|
-
"as-optional-clear",
|
|
3519
|
-
"as-paragraph-field",
|
|
3520
|
-
"as-prefix",
|
|
3521
|
-
"as-prefix-icon",
|
|
3522
|
-
"as-radio-group",
|
|
3523
|
-
"as-ref-anchor",
|
|
3524
|
-
"as-ref-clear",
|
|
3525
|
-
"as-ref-content",
|
|
3526
|
-
"as-ref-input",
|
|
3527
|
-
"as-ref-item",
|
|
3528
|
-
"as-ref-item-description",
|
|
3529
|
-
"as-ref-item-id",
|
|
3530
|
-
"as-ref-item-label",
|
|
3531
|
-
"as-ref-loading",
|
|
3532
|
-
"as-ref-root",
|
|
3533
|
-
"as-ref-spinner",
|
|
3534
|
-
"as-ref-status",
|
|
3535
|
-
"as-ref-viewport",
|
|
3536
|
-
"as-select-caret",
|
|
3537
|
-
"as-select-wrap",
|
|
3538
|
-
"as-submit-btn",
|
|
3539
|
-
"as-suffix",
|
|
3540
|
-
"as-suffix-icon",
|
|
3541
|
-
"as-variant-trigger",
|
|
3542
|
-
"as-wf-finish",
|
|
3543
|
-
"as-wf-finish-actions",
|
|
3544
|
-
"as-wf-finish-countdown",
|
|
3545
|
-
"as-wf-finish-message",
|
|
3546
|
-
"as-wf-finish-option",
|
|
3547
|
-
"as-wf-finish-primary",
|
|
3548
|
-
"as-wf-finish-skip",
|
|
3549
|
-
"as-wf-finish-skip-fill",
|
|
3550
|
-
"as-wf-finish-skip-label",
|
|
1826
|
+
"as-wf-form": [
|
|
1827
|
+
"as-action-center",
|
|
1828
|
+
"as-action-left",
|
|
1829
|
+
"as-action-right",
|
|
1830
|
+
"as-form-overlay",
|
|
1831
|
+
"as-form-overlay-icon",
|
|
1832
|
+
"as-narrow:col-span-1",
|
|
1833
|
+
"as-narrow:col-span-10",
|
|
1834
|
+
"as-narrow:col-span-11",
|
|
1835
|
+
"as-narrow:col-span-12",
|
|
1836
|
+
"as-narrow:col-span-2",
|
|
1837
|
+
"as-narrow:col-span-3",
|
|
1838
|
+
"as-narrow:col-span-4",
|
|
1839
|
+
"as-narrow:col-span-5",
|
|
1840
|
+
"as-narrow:col-span-6",
|
|
1841
|
+
"as-narrow:col-span-7",
|
|
1842
|
+
"as-narrow:col-span-8",
|
|
1843
|
+
"as-narrow:col-span-9",
|
|
1844
|
+
"as-narrow:row-span-1",
|
|
1845
|
+
"as-narrow:row-span-2",
|
|
1846
|
+
"as-narrow:row-span-3",
|
|
1847
|
+
"as-narrow:row-span-4",
|
|
1848
|
+
"as-narrow:row-span-5",
|
|
1849
|
+
"as-narrow:row-span-6",
|
|
3551
1850
|
"as-wf-form-error",
|
|
3552
|
-
"as-wf-form-loading"
|
|
3553
|
-
"i-as-chevron-down",
|
|
3554
|
-
"i-as-close",
|
|
3555
|
-
"i-as-field-empty",
|
|
3556
|
-
"i-as-field-fill"
|
|
1851
|
+
"as-wf-form-loading"
|
|
3557
1852
|
],
|
|
3558
1853
|
"as-window-table": [
|
|
3559
1854
|
"as-action-center",
|
|
3560
1855
|
"as-action-left",
|
|
3561
1856
|
"as-action-right",
|
|
3562
|
-
"as-cell-number",
|
|
3563
|
-
"as-column-menu-content",
|
|
3564
|
-
"as-column-menu-item",
|
|
3565
|
-
"as-column-menu-item-active",
|
|
3566
|
-
"as-column-menu-item-badge",
|
|
3567
|
-
"as-column-menu-item-danger",
|
|
3568
|
-
"as-column-menu-item-hint",
|
|
3569
|
-
"as-column-menu-item-icon",
|
|
3570
|
-
"as-column-menu-item-label",
|
|
3571
|
-
"as-column-menu-label",
|
|
3572
|
-
"as-column-menu-separator",
|
|
3573
1857
|
"as-narrow:col-span-1",
|
|
3574
1858
|
"as-narrow:col-span-10",
|
|
3575
1859
|
"as-narrow:col-span-11",
|
|
@@ -3603,21 +1887,15 @@ const componentClasses = {
|
|
|
3603
1887
|
"as-table-stretch",
|
|
3604
1888
|
"as-td-filler",
|
|
3605
1889
|
"as-td-select",
|
|
3606
|
-
"as-th-btn",
|
|
3607
|
-
"as-th-chevron",
|
|
3608
1890
|
"as-th-dragging",
|
|
3609
1891
|
"as-th-drop-indicator-after",
|
|
3610
1892
|
"as-th-drop-indicator-before",
|
|
3611
1893
|
"as-th-filler",
|
|
3612
|
-
"as-th-filter-badge",
|
|
3613
1894
|
"as-th-fixed",
|
|
3614
|
-
"as-th-indicators",
|
|
3615
|
-
"as-th-label",
|
|
3616
1895
|
"as-th-reorderable",
|
|
3617
1896
|
"as-th-resize-handle",
|
|
3618
1897
|
"as-th-resizing",
|
|
3619
1898
|
"as-th-select",
|
|
3620
|
-
"as-th-sort",
|
|
3621
1899
|
"as-vh-empty",
|
|
3622
1900
|
"as-vh-empty-body",
|
|
3623
1901
|
"as-vh-empty-clear",
|
|
@@ -3633,19 +1911,275 @@ const componentClasses = {
|
|
|
3633
1911
|
"as-window-skeleton-row",
|
|
3634
1912
|
"as-window-table-scroll-area",
|
|
3635
1913
|
"as-window-table-wrapper",
|
|
3636
|
-
"i-as-arrow-down",
|
|
3637
|
-
"i-as-arrow-up",
|
|
3638
|
-
"i-as-chevron-down",
|
|
3639
|
-
"i-as-chevron-up",
|
|
3640
|
-
"i-as-close",
|
|
3641
|
-
"i-as-eye-slash",
|
|
3642
|
-
"i-as-filter",
|
|
3643
1914
|
"i-as-refresh",
|
|
3644
1915
|
"i-as-search",
|
|
3645
1916
|
"i-as-trash",
|
|
3646
1917
|
"i-as-warning"
|
|
3647
1918
|
]
|
|
3648
1919
|
};
|
|
1920
|
+
const componentCompanions = {
|
|
1921
|
+
"as-action-form-dialog": [
|
|
1922
|
+
"as-action",
|
|
1923
|
+
"as-array",
|
|
1924
|
+
"as-checkbox",
|
|
1925
|
+
"as-collapsible",
|
|
1926
|
+
"as-date",
|
|
1927
|
+
"as-datetime",
|
|
1928
|
+
"as-decimal",
|
|
1929
|
+
"as-field",
|
|
1930
|
+
"as-field-shell",
|
|
1931
|
+
"as-form",
|
|
1932
|
+
"as-input",
|
|
1933
|
+
"as-iterator",
|
|
1934
|
+
"as-multi-select",
|
|
1935
|
+
"as-number",
|
|
1936
|
+
"as-object",
|
|
1937
|
+
"as-paragraph",
|
|
1938
|
+
"as-radio",
|
|
1939
|
+
"as-ref",
|
|
1940
|
+
"as-select",
|
|
1941
|
+
"as-time",
|
|
1942
|
+
"as-tuple",
|
|
1943
|
+
"as-union"
|
|
1944
|
+
],
|
|
1945
|
+
"as-array": ["as-collapsible", "as-field"],
|
|
1946
|
+
"as-checkbox": ["as-field-shell"],
|
|
1947
|
+
"as-consent-array": [
|
|
1948
|
+
"as-action",
|
|
1949
|
+
"as-array",
|
|
1950
|
+
"as-checkbox",
|
|
1951
|
+
"as-collapsible",
|
|
1952
|
+
"as-date",
|
|
1953
|
+
"as-datetime",
|
|
1954
|
+
"as-decimal",
|
|
1955
|
+
"as-field",
|
|
1956
|
+
"as-field-shell",
|
|
1957
|
+
"as-form",
|
|
1958
|
+
"as-input",
|
|
1959
|
+
"as-iterator",
|
|
1960
|
+
"as-multi-select",
|
|
1961
|
+
"as-number",
|
|
1962
|
+
"as-object",
|
|
1963
|
+
"as-paragraph",
|
|
1964
|
+
"as-radio",
|
|
1965
|
+
"as-ref",
|
|
1966
|
+
"as-select",
|
|
1967
|
+
"as-time",
|
|
1968
|
+
"as-tuple",
|
|
1969
|
+
"as-union"
|
|
1970
|
+
],
|
|
1971
|
+
"as-copy": [
|
|
1972
|
+
"as-action",
|
|
1973
|
+
"as-array",
|
|
1974
|
+
"as-checkbox",
|
|
1975
|
+
"as-collapsible",
|
|
1976
|
+
"as-date",
|
|
1977
|
+
"as-datetime",
|
|
1978
|
+
"as-decimal",
|
|
1979
|
+
"as-field",
|
|
1980
|
+
"as-field-shell",
|
|
1981
|
+
"as-form",
|
|
1982
|
+
"as-input",
|
|
1983
|
+
"as-iterator",
|
|
1984
|
+
"as-multi-select",
|
|
1985
|
+
"as-number",
|
|
1986
|
+
"as-object",
|
|
1987
|
+
"as-paragraph",
|
|
1988
|
+
"as-radio",
|
|
1989
|
+
"as-ref",
|
|
1990
|
+
"as-select",
|
|
1991
|
+
"as-time",
|
|
1992
|
+
"as-tuple",
|
|
1993
|
+
"as-union"
|
|
1994
|
+
],
|
|
1995
|
+
"as-date": ["as-field-shell"],
|
|
1996
|
+
"as-datetime": ["as-field-shell"],
|
|
1997
|
+
"as-decimal": ["as-field-shell"],
|
|
1998
|
+
"as-filter-dialog": [
|
|
1999
|
+
"as-config-dialog",
|
|
2000
|
+
"as-filter-input",
|
|
2001
|
+
"as-filters",
|
|
2002
|
+
"as-window-table"
|
|
2003
|
+
],
|
|
2004
|
+
"as-filter-field": [
|
|
2005
|
+
"as-cell-array",
|
|
2006
|
+
"as-cell-date",
|
|
2007
|
+
"as-cell-json",
|
|
2008
|
+
"as-cell-number",
|
|
2009
|
+
"as-cell-union",
|
|
2010
|
+
"as-column-menu",
|
|
2011
|
+
"as-config-dialog",
|
|
2012
|
+
"as-confirm-dialog",
|
|
2013
|
+
"as-filter-dialog",
|
|
2014
|
+
"as-filter-input",
|
|
2015
|
+
"as-preset-dialog",
|
|
2016
|
+
"as-row-actions",
|
|
2017
|
+
"as-table-cell-value",
|
|
2018
|
+
"as-table-header-cell"
|
|
2019
|
+
],
|
|
2020
|
+
"as-filters": ["as-filter-field"],
|
|
2021
|
+
"as-form": ["as-field", "as-iterator"],
|
|
2022
|
+
"as-input": ["as-field-shell"],
|
|
2023
|
+
"as-iterator": ["as-field"],
|
|
2024
|
+
"as-multi-select": ["as-field-shell"],
|
|
2025
|
+
"as-number": ["as-field-shell"],
|
|
2026
|
+
"as-object": ["as-collapsible", "as-iterator"],
|
|
2027
|
+
"as-password-rules": [
|
|
2028
|
+
"as-action",
|
|
2029
|
+
"as-array",
|
|
2030
|
+
"as-checkbox",
|
|
2031
|
+
"as-collapsible",
|
|
2032
|
+
"as-date",
|
|
2033
|
+
"as-datetime",
|
|
2034
|
+
"as-decimal",
|
|
2035
|
+
"as-field",
|
|
2036
|
+
"as-field-shell",
|
|
2037
|
+
"as-form",
|
|
2038
|
+
"as-input",
|
|
2039
|
+
"as-iterator",
|
|
2040
|
+
"as-multi-select",
|
|
2041
|
+
"as-number",
|
|
2042
|
+
"as-object",
|
|
2043
|
+
"as-paragraph",
|
|
2044
|
+
"as-radio",
|
|
2045
|
+
"as-ref",
|
|
2046
|
+
"as-select",
|
|
2047
|
+
"as-time",
|
|
2048
|
+
"as-tuple",
|
|
2049
|
+
"as-union"
|
|
2050
|
+
],
|
|
2051
|
+
"as-qr-code": [
|
|
2052
|
+
"as-action",
|
|
2053
|
+
"as-array",
|
|
2054
|
+
"as-checkbox",
|
|
2055
|
+
"as-collapsible",
|
|
2056
|
+
"as-date",
|
|
2057
|
+
"as-datetime",
|
|
2058
|
+
"as-decimal",
|
|
2059
|
+
"as-field",
|
|
2060
|
+
"as-field-shell",
|
|
2061
|
+
"as-form",
|
|
2062
|
+
"as-input",
|
|
2063
|
+
"as-iterator",
|
|
2064
|
+
"as-multi-select",
|
|
2065
|
+
"as-number",
|
|
2066
|
+
"as-object",
|
|
2067
|
+
"as-paragraph",
|
|
2068
|
+
"as-radio",
|
|
2069
|
+
"as-ref",
|
|
2070
|
+
"as-select",
|
|
2071
|
+
"as-time",
|
|
2072
|
+
"as-tuple",
|
|
2073
|
+
"as-union"
|
|
2074
|
+
],
|
|
2075
|
+
"as-radio": ["as-field-shell"],
|
|
2076
|
+
"as-ref": ["as-field-shell"],
|
|
2077
|
+
"as-select": ["as-field-shell"],
|
|
2078
|
+
"as-sso-providers": [
|
|
2079
|
+
"as-action",
|
|
2080
|
+
"as-array",
|
|
2081
|
+
"as-checkbox",
|
|
2082
|
+
"as-collapsible",
|
|
2083
|
+
"as-date",
|
|
2084
|
+
"as-datetime",
|
|
2085
|
+
"as-decimal",
|
|
2086
|
+
"as-field",
|
|
2087
|
+
"as-field-shell",
|
|
2088
|
+
"as-form",
|
|
2089
|
+
"as-input",
|
|
2090
|
+
"as-iterator",
|
|
2091
|
+
"as-multi-select",
|
|
2092
|
+
"as-number",
|
|
2093
|
+
"as-object",
|
|
2094
|
+
"as-paragraph",
|
|
2095
|
+
"as-radio",
|
|
2096
|
+
"as-ref",
|
|
2097
|
+
"as-select",
|
|
2098
|
+
"as-time",
|
|
2099
|
+
"as-tuple",
|
|
2100
|
+
"as-union"
|
|
2101
|
+
],
|
|
2102
|
+
"as-table": [
|
|
2103
|
+
"as-cell-array",
|
|
2104
|
+
"as-cell-date",
|
|
2105
|
+
"as-cell-json",
|
|
2106
|
+
"as-cell-number",
|
|
2107
|
+
"as-cell-union",
|
|
2108
|
+
"as-column-menu",
|
|
2109
|
+
"as-config-dialog",
|
|
2110
|
+
"as-confirm-dialog",
|
|
2111
|
+
"as-filter-dialog",
|
|
2112
|
+
"as-filter-field",
|
|
2113
|
+
"as-filter-input",
|
|
2114
|
+
"as-preset-dialog",
|
|
2115
|
+
"as-row-actions",
|
|
2116
|
+
"as-table-cell-value",
|
|
2117
|
+
"as-table-header-cell"
|
|
2118
|
+
],
|
|
2119
|
+
"as-table-header-cell": ["as-column-menu"],
|
|
2120
|
+
"as-table-root": [
|
|
2121
|
+
"as-action-form-dialog",
|
|
2122
|
+
"as-cell-array",
|
|
2123
|
+
"as-cell-date",
|
|
2124
|
+
"as-cell-json",
|
|
2125
|
+
"as-cell-number",
|
|
2126
|
+
"as-cell-union",
|
|
2127
|
+
"as-column-menu",
|
|
2128
|
+
"as-config-dialog",
|
|
2129
|
+
"as-confirm-dialog",
|
|
2130
|
+
"as-filter-dialog",
|
|
2131
|
+
"as-filter-field",
|
|
2132
|
+
"as-filter-input",
|
|
2133
|
+
"as-preset-dialog",
|
|
2134
|
+
"as-row-actions",
|
|
2135
|
+
"as-table-cell-value",
|
|
2136
|
+
"as-table-header-cell"
|
|
2137
|
+
],
|
|
2138
|
+
"as-time": ["as-field-shell"],
|
|
2139
|
+
"as-tuple": ["as-collapsible", "as-field"],
|
|
2140
|
+
"as-wf-form": [
|
|
2141
|
+
"as-action",
|
|
2142
|
+
"as-array",
|
|
2143
|
+
"as-checkbox",
|
|
2144
|
+
"as-collapsible",
|
|
2145
|
+
"as-date",
|
|
2146
|
+
"as-datetime",
|
|
2147
|
+
"as-decimal",
|
|
2148
|
+
"as-field",
|
|
2149
|
+
"as-field-shell",
|
|
2150
|
+
"as-form",
|
|
2151
|
+
"as-input",
|
|
2152
|
+
"as-iterator",
|
|
2153
|
+
"as-multi-select",
|
|
2154
|
+
"as-number",
|
|
2155
|
+
"as-object",
|
|
2156
|
+
"as-paragraph",
|
|
2157
|
+
"as-radio",
|
|
2158
|
+
"as-ref",
|
|
2159
|
+
"as-select",
|
|
2160
|
+
"as-time",
|
|
2161
|
+
"as-tuple",
|
|
2162
|
+
"as-union",
|
|
2163
|
+
"as-wf-finish"
|
|
2164
|
+
],
|
|
2165
|
+
"as-window-table": [
|
|
2166
|
+
"as-cell-array",
|
|
2167
|
+
"as-cell-date",
|
|
2168
|
+
"as-cell-json",
|
|
2169
|
+
"as-cell-number",
|
|
2170
|
+
"as-cell-union",
|
|
2171
|
+
"as-column-menu",
|
|
2172
|
+
"as-config-dialog",
|
|
2173
|
+
"as-confirm-dialog",
|
|
2174
|
+
"as-filter-dialog",
|
|
2175
|
+
"as-filter-field",
|
|
2176
|
+
"as-filter-input",
|
|
2177
|
+
"as-preset-dialog",
|
|
2178
|
+
"as-row-actions",
|
|
2179
|
+
"as-table-cell-value",
|
|
2180
|
+
"as-table-header-cell"
|
|
2181
|
+
]
|
|
2182
|
+
};
|
|
3649
2183
|
const helperAliases = {
|
|
3650
2184
|
createDefaultCellTypes: [
|
|
3651
2185
|
"as-cell-array",
|
|
@@ -3663,7 +2197,6 @@ const helperAliases = {
|
|
|
3663
2197
|
"as-filter-dialog",
|
|
3664
2198
|
"as-filter-field",
|
|
3665
2199
|
"as-filter-input",
|
|
3666
|
-
"as-row-actions",
|
|
3667
2200
|
"as-table-header-cell"
|
|
3668
2201
|
],
|
|
3669
2202
|
createDefaultTypes: [
|
|
@@ -3757,13 +2290,16 @@ const primaryComponents = new Set([
|
|
|
3757
2290
|
"as-wf-form",
|
|
3758
2291
|
"as-window-table"
|
|
3759
2292
|
]);
|
|
3760
|
-
|
|
3761
|
-
|
|
3762
|
-
|
|
3763
|
-
|
|
2293
|
+
/**
|
|
2294
|
+
* Own classes + transitively expanded companions for the given components.
|
|
2295
|
+
* An excluded name contributes nothing and is not traversed through —
|
|
2296
|
+
* see expandComponentClasses for the exact semantics.
|
|
2297
|
+
*/
|
|
2298
|
+
function getComponentClasses(names, exclude) {
|
|
2299
|
+
return [...expandComponentClasses(names, componentClasses, componentCompanions, exclude)];
|
|
3764
2300
|
}
|
|
3765
2301
|
function getHelperClasses(...helpers) {
|
|
3766
|
-
return getComponentClasses(
|
|
2302
|
+
return getComponentClasses(helpers.flatMap((h) => helperAliases[h] ?? []));
|
|
3767
2303
|
}
|
|
3768
2304
|
//#endregion
|
|
3769
2305
|
//#region src/kebab.ts
|
|
@@ -3771,4 +2307,4 @@ function kebabize(pascal) {
|
|
|
3771
2307
|
return pascal.replace(/([a-z0-9])([A-Z])/g, "$1-$2").replace(/([A-Z]+)([A-Z][a-z])/g, "$1-$2").toLowerCase();
|
|
3772
2308
|
}
|
|
3773
2309
|
//#endregion
|
|
3774
|
-
export {
|
|
2310
|
+
export { getComponentClasses as a, primaryComponents as c, componentPackages as i, expandComponentClasses as l, componentClasses as n, getHelperClasses as o, componentCompanions as r, helperAliases as s, kebabize as t };
|