@aurodesignsystem-dev/auro-formkit 0.0.0-pr1492.1 → 0.0.0-pr1492.3
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/components/checkbox/demo/customize.min.js +1 -1
- package/components/checkbox/demo/getting-started.min.js +1 -1
- package/components/checkbox/demo/index.min.js +1 -1
- package/components/checkbox/dist/index.js +1 -1
- package/components/checkbox/dist/registered.js +1 -1
- package/components/combobox/demo/customize.min.js +3 -3
- package/components/combobox/demo/getting-started.min.js +3 -3
- package/components/combobox/demo/index.min.js +3 -3
- package/components/combobox/dist/index.js +3 -3
- package/components/combobox/dist/registered.js +3 -3
- package/components/counter/demo/customize.min.js +2 -2
- package/components/counter/demo/index.min.js +2 -2
- package/components/counter/dist/index.js +1 -1
- package/components/counter/dist/registered.js +1 -1
- package/components/datepicker/demo/index.min.js +33 -26
- package/components/datepicker/dist/index.js +33 -26
- package/components/datepicker/dist/registered.js +33 -26
- package/components/datepicker/dist/src/auro-calendar-month.d.ts +9 -1
- package/components/datepicker/dist/src/auro-calendar.d.ts +4 -1
- package/components/datepicker/dist/src/auro-datepicker.d.ts +3 -9
- package/components/dropdown/demo/customize.min.js +1 -1
- package/components/dropdown/demo/getting-started.min.js +1 -1
- package/components/dropdown/demo/index.min.js +1 -1
- package/components/dropdown/dist/index.js +1 -1
- package/components/dropdown/dist/registered.js +1 -1
- package/components/form/demo/customize.min.js +43 -36
- package/components/form/demo/getting-started.min.js +43 -36
- package/components/form/demo/index.min.js +43 -36
- package/components/form/demo/registerDemoDeps.min.js +43 -36
- package/components/input/demo/customize.min.js +1 -1
- package/components/input/demo/getting-started.min.js +1 -1
- package/components/input/demo/index.min.js +1 -1
- package/components/input/dist/index.js +1 -1
- package/components/input/dist/registered.js +1 -1
- package/components/radio/demo/index.min.js +1 -1
- package/components/radio/dist/index.js +1 -1
- package/components/radio/dist/registered.js +1 -1
- package/components/select/demo/customize.min.js +2 -2
- package/components/select/demo/getting-started.min.js +2 -2
- package/components/select/demo/index.min.js +2 -2
- package/components/select/dist/index.js +2 -2
- package/components/select/dist/registered.js +2 -2
- package/custom-elements.json +418 -414
- package/package.json +1 -1
package/custom-elements.json
CHANGED
|
@@ -2,250 +2,6 @@
|
|
|
2
2
|
"schemaVersion": "1.0.0",
|
|
3
3
|
"readme": "",
|
|
4
4
|
"modules": [
|
|
5
|
-
{
|
|
6
|
-
"kind": "javascript-module",
|
|
7
|
-
"path": "components/bibtemplate/src/auro-bibtemplate.js",
|
|
8
|
-
"declarations": [
|
|
9
|
-
{
|
|
10
|
-
"kind": "class",
|
|
11
|
-
"description": "The `auro-bibtemplate` element provides users a template for creating modal dialog elements.",
|
|
12
|
-
"name": "AuroBibtemplate",
|
|
13
|
-
"slots": [
|
|
14
|
-
{
|
|
15
|
-
"description": "The default slot for the main content.",
|
|
16
|
-
"name": "default"
|
|
17
|
-
},
|
|
18
|
-
{
|
|
19
|
-
"description": "Slot for the header content.",
|
|
20
|
-
"name": "header"
|
|
21
|
-
},
|
|
22
|
-
{
|
|
23
|
-
"description": "Slot for the subheader content.",
|
|
24
|
-
"name": "subheader"
|
|
25
|
-
},
|
|
26
|
-
{
|
|
27
|
-
"description": "Slot for the footer content.",
|
|
28
|
-
"name": "footer"
|
|
29
|
-
},
|
|
30
|
-
{
|
|
31
|
-
"description": "Slot for the close button aria-label.",
|
|
32
|
-
"name": "ariaLabel.close"
|
|
33
|
-
}
|
|
34
|
-
],
|
|
35
|
-
"members": [
|
|
36
|
-
{
|
|
37
|
-
"kind": "method",
|
|
38
|
-
"name": "register",
|
|
39
|
-
"static": true,
|
|
40
|
-
"parameters": [
|
|
41
|
-
{
|
|
42
|
-
"name": "name",
|
|
43
|
-
"default": "\"auro-bibtemplate\"",
|
|
44
|
-
"description": "The name of element that you want to register to.",
|
|
45
|
-
"optional": true,
|
|
46
|
-
"type": {
|
|
47
|
-
"text": "string"
|
|
48
|
-
}
|
|
49
|
-
}
|
|
50
|
-
],
|
|
51
|
-
"description": "This will register this element with the browser."
|
|
52
|
-
},
|
|
53
|
-
{
|
|
54
|
-
"kind": "method",
|
|
55
|
-
"name": "preventBodyScroll",
|
|
56
|
-
"parameters": [
|
|
57
|
-
{
|
|
58
|
-
"name": "event",
|
|
59
|
-
"description": "The touchmove event.",
|
|
60
|
-
"type": {
|
|
61
|
-
"text": "Event"
|
|
62
|
-
}
|
|
63
|
-
}
|
|
64
|
-
],
|
|
65
|
-
"description": "Prevents scrolling of the body when touching empty areas of the component.",
|
|
66
|
-
"return": {
|
|
67
|
-
"type": {
|
|
68
|
-
"text": "void"
|
|
69
|
-
}
|
|
70
|
-
}
|
|
71
|
-
},
|
|
72
|
-
{
|
|
73
|
-
"kind": "method",
|
|
74
|
-
"name": "focusCloseButton",
|
|
75
|
-
"description": "Focuses the close button inside the bibtemplate's shadow DOM.\nUsed by parent components to set initial focus when the fullscreen dialog opens.",
|
|
76
|
-
"return": {
|
|
77
|
-
"type": {
|
|
78
|
-
"text": "void"
|
|
79
|
-
}
|
|
80
|
-
}
|
|
81
|
-
},
|
|
82
|
-
{
|
|
83
|
-
"kind": "method",
|
|
84
|
-
"name": "onCloseButtonClick"
|
|
85
|
-
},
|
|
86
|
-
{
|
|
87
|
-
"kind": "method",
|
|
88
|
-
"name": "exposeCssParts",
|
|
89
|
-
"description": "Exposes CSS parts for styling from parent components.",
|
|
90
|
-
"return": {
|
|
91
|
-
"type": {
|
|
92
|
-
"text": "void"
|
|
93
|
-
}
|
|
94
|
-
}
|
|
95
|
-
},
|
|
96
|
-
{
|
|
97
|
-
"kind": "field",
|
|
98
|
-
"name": "large",
|
|
99
|
-
"privacy": "public",
|
|
100
|
-
"type": {
|
|
101
|
-
"text": "boolean"
|
|
102
|
-
},
|
|
103
|
-
"default": "false",
|
|
104
|
-
"attribute": "large",
|
|
105
|
-
"reflects": true
|
|
106
|
-
},
|
|
107
|
-
{
|
|
108
|
-
"kind": "field",
|
|
109
|
-
"name": "iconTag",
|
|
110
|
-
"privacy": "private"
|
|
111
|
-
},
|
|
112
|
-
{
|
|
113
|
-
"kind": "field",
|
|
114
|
-
"name": "headerTag",
|
|
115
|
-
"privacy": "private"
|
|
116
|
-
},
|
|
117
|
-
{
|
|
118
|
-
"kind": "field",
|
|
119
|
-
"name": "buttonTag",
|
|
120
|
-
"privacy": "private"
|
|
121
|
-
},
|
|
122
|
-
{
|
|
123
|
-
"kind": "field",
|
|
124
|
-
"name": "isFullscreen",
|
|
125
|
-
"privacy": "public",
|
|
126
|
-
"type": {
|
|
127
|
-
"text": "boolean"
|
|
128
|
-
},
|
|
129
|
-
"attribute": "isFullscreen",
|
|
130
|
-
"reflects": true
|
|
131
|
-
}
|
|
132
|
-
],
|
|
133
|
-
"events": [
|
|
134
|
-
{
|
|
135
|
-
"name": "close-click",
|
|
136
|
-
"type": {
|
|
137
|
-
"text": "Event"
|
|
138
|
-
}
|
|
139
|
-
},
|
|
140
|
-
{
|
|
141
|
-
"name": "auro-bibtemplate-connected",
|
|
142
|
-
"type": {
|
|
143
|
-
"text": "CustomEvent"
|
|
144
|
-
}
|
|
145
|
-
}
|
|
146
|
-
],
|
|
147
|
-
"attributes": [
|
|
148
|
-
{
|
|
149
|
-
"name": "isFullscreen",
|
|
150
|
-
"type": {
|
|
151
|
-
"text": "boolean"
|
|
152
|
-
},
|
|
153
|
-
"fieldName": "isFullscreen"
|
|
154
|
-
},
|
|
155
|
-
{
|
|
156
|
-
"name": "large",
|
|
157
|
-
"type": {
|
|
158
|
-
"text": "boolean"
|
|
159
|
-
},
|
|
160
|
-
"default": "false",
|
|
161
|
-
"fieldName": "large"
|
|
162
|
-
}
|
|
163
|
-
],
|
|
164
|
-
"superclass": {
|
|
165
|
-
"name": "LitElement",
|
|
166
|
-
"package": "lit"
|
|
167
|
-
},
|
|
168
|
-
"tagName": "auro-bibtemplate",
|
|
169
|
-
"customElement": true
|
|
170
|
-
}
|
|
171
|
-
],
|
|
172
|
-
"exports": [
|
|
173
|
-
{
|
|
174
|
-
"kind": "js",
|
|
175
|
-
"name": "AuroBibtemplate",
|
|
176
|
-
"declaration": {
|
|
177
|
-
"name": "AuroBibtemplate",
|
|
178
|
-
"module": "components/bibtemplate/src/auro-bibtemplate.js"
|
|
179
|
-
}
|
|
180
|
-
}
|
|
181
|
-
]
|
|
182
|
-
},
|
|
183
|
-
{
|
|
184
|
-
"kind": "javascript-module",
|
|
185
|
-
"path": "components/bibtemplate/src/buttonVersion.js",
|
|
186
|
-
"declarations": [],
|
|
187
|
-
"exports": [
|
|
188
|
-
{
|
|
189
|
-
"kind": "js",
|
|
190
|
-
"name": "default",
|
|
191
|
-
"declaration": {
|
|
192
|
-
"name": "12.3.2",
|
|
193
|
-
"module": "components/bibtemplate/src/buttonVersion.js"
|
|
194
|
-
}
|
|
195
|
-
}
|
|
196
|
-
]
|
|
197
|
-
},
|
|
198
|
-
{
|
|
199
|
-
"kind": "javascript-module",
|
|
200
|
-
"path": "components/bibtemplate/src/headerVersion.js",
|
|
201
|
-
"declarations": [],
|
|
202
|
-
"exports": [
|
|
203
|
-
{
|
|
204
|
-
"kind": "js",
|
|
205
|
-
"name": "default",
|
|
206
|
-
"declaration": {
|
|
207
|
-
"name": "5.0.1",
|
|
208
|
-
"module": "components/bibtemplate/src/headerVersion.js"
|
|
209
|
-
}
|
|
210
|
-
}
|
|
211
|
-
]
|
|
212
|
-
},
|
|
213
|
-
{
|
|
214
|
-
"kind": "javascript-module",
|
|
215
|
-
"path": "components/bibtemplate/src/iconVersion.js",
|
|
216
|
-
"declarations": [],
|
|
217
|
-
"exports": [
|
|
218
|
-
{
|
|
219
|
-
"kind": "js",
|
|
220
|
-
"name": "default",
|
|
221
|
-
"declaration": {
|
|
222
|
-
"name": "9.2.0",
|
|
223
|
-
"module": "components/bibtemplate/src/iconVersion.js"
|
|
224
|
-
}
|
|
225
|
-
}
|
|
226
|
-
]
|
|
227
|
-
},
|
|
228
|
-
{
|
|
229
|
-
"kind": "javascript-module",
|
|
230
|
-
"path": "components/bibtemplate/src/index.js",
|
|
231
|
-
"declarations": [],
|
|
232
|
-
"exports": [
|
|
233
|
-
{
|
|
234
|
-
"kind": "js",
|
|
235
|
-
"name": "AuroBibtemplate",
|
|
236
|
-
"declaration": {
|
|
237
|
-
"name": "AuroBibtemplate",
|
|
238
|
-
"module": "components/bibtemplate/src/index.js"
|
|
239
|
-
}
|
|
240
|
-
}
|
|
241
|
-
]
|
|
242
|
-
},
|
|
243
|
-
{
|
|
244
|
-
"kind": "javascript-module",
|
|
245
|
-
"path": "components/bibtemplate/src/registered.js",
|
|
246
|
-
"declarations": [],
|
|
247
|
-
"exports": []
|
|
248
|
-
},
|
|
249
5
|
{
|
|
250
6
|
"kind": "javascript-module",
|
|
251
7
|
"path": "components/checkbox/src/auro-checkbox-group.js",
|
|
@@ -861,231 +617,475 @@
|
|
|
861
617
|
},
|
|
862
618
|
{
|
|
863
619
|
"kind": "field",
|
|
864
|
-
"name": "value",
|
|
620
|
+
"name": "value",
|
|
621
|
+
"privacy": "public",
|
|
622
|
+
"type": {
|
|
623
|
+
"text": "string"
|
|
624
|
+
},
|
|
625
|
+
"description": "Sets the element's input value. Must be unique within an auro-checkbox-group element.",
|
|
626
|
+
"attribute": "value"
|
|
627
|
+
},
|
|
628
|
+
{
|
|
629
|
+
"kind": "field",
|
|
630
|
+
"name": "tabIndex",
|
|
631
|
+
"privacy": "private",
|
|
632
|
+
"type": {
|
|
633
|
+
"text": "number"
|
|
634
|
+
},
|
|
635
|
+
"description": "The tabindex attribute for the checkbox.",
|
|
636
|
+
"attribute": "tabindex",
|
|
637
|
+
"reflects": true
|
|
638
|
+
},
|
|
639
|
+
{
|
|
640
|
+
"kind": "field",
|
|
641
|
+
"name": "ariaChecked",
|
|
642
|
+
"privacy": "private",
|
|
643
|
+
"type": {
|
|
644
|
+
"text": "string"
|
|
645
|
+
},
|
|
646
|
+
"description": "The aria-checked attribute for the checkbox.",
|
|
647
|
+
"attribute": "aria-checked",
|
|
648
|
+
"reflects": true
|
|
649
|
+
},
|
|
650
|
+
{
|
|
651
|
+
"kind": "field",
|
|
652
|
+
"name": "ariaDisabled",
|
|
653
|
+
"privacy": "private",
|
|
654
|
+
"type": {
|
|
655
|
+
"text": "string"
|
|
656
|
+
},
|
|
657
|
+
"description": "The aria-disabled attribute for the checkbox.",
|
|
658
|
+
"attribute": "aria-disabled",
|
|
659
|
+
"reflects": true
|
|
660
|
+
},
|
|
661
|
+
{
|
|
662
|
+
"kind": "field",
|
|
663
|
+
"name": "role",
|
|
664
|
+
"privacy": "private",
|
|
665
|
+
"type": {
|
|
666
|
+
"text": "string"
|
|
667
|
+
},
|
|
668
|
+
"description": "The ARIA role for the element. Must remain 'checkbox' for screen readers\nto correctly identify this as a checkbox control.",
|
|
669
|
+
"attribute": "role",
|
|
670
|
+
"reflects": true
|
|
671
|
+
}
|
|
672
|
+
],
|
|
673
|
+
"events": [
|
|
674
|
+
{
|
|
675
|
+
"name": "auroCheckbox-input",
|
|
676
|
+
"type": {
|
|
677
|
+
"text": "CustomEvent"
|
|
678
|
+
}
|
|
679
|
+
},
|
|
680
|
+
{
|
|
681
|
+
"name": "auroCheckbox-focusin",
|
|
682
|
+
"type": {
|
|
683
|
+
"text": "CustomEvent"
|
|
684
|
+
}
|
|
685
|
+
},
|
|
686
|
+
{
|
|
687
|
+
"name": "auroCheckbox-focusout",
|
|
688
|
+
"type": {
|
|
689
|
+
"text": "CustomEvent"
|
|
690
|
+
}
|
|
691
|
+
},
|
|
692
|
+
{
|
|
693
|
+
"description": "(Deprecated) Notifies when checked value is changed.",
|
|
694
|
+
"name": "change"
|
|
695
|
+
},
|
|
696
|
+
{
|
|
697
|
+
"description": "Notifies when when checked value is changed by user's interface.",
|
|
698
|
+
"name": "input"
|
|
699
|
+
}
|
|
700
|
+
],
|
|
701
|
+
"attributes": [
|
|
702
|
+
{
|
|
703
|
+
"name": "appearance",
|
|
704
|
+
"type": {
|
|
705
|
+
"text": "'default' | 'inverse'"
|
|
706
|
+
},
|
|
707
|
+
"description": "Defines whether the component will be on lighter or darker backgrounds.",
|
|
708
|
+
"default": "'default'",
|
|
709
|
+
"fieldName": "appearance"
|
|
710
|
+
},
|
|
711
|
+
{
|
|
712
|
+
"name": "checked",
|
|
713
|
+
"type": {
|
|
714
|
+
"text": "boolean"
|
|
715
|
+
},
|
|
716
|
+
"description": "If set to true, the checkbox will be filled with a checkmark.",
|
|
717
|
+
"fieldName": "checked"
|
|
718
|
+
},
|
|
719
|
+
{
|
|
720
|
+
"name": "disabled",
|
|
721
|
+
"type": {
|
|
722
|
+
"text": "boolean"
|
|
723
|
+
},
|
|
724
|
+
"description": "If set to true, the checkbox will not be clickable.",
|
|
725
|
+
"fieldName": "disabled"
|
|
726
|
+
},
|
|
727
|
+
{
|
|
728
|
+
"name": "error",
|
|
729
|
+
"type": {
|
|
730
|
+
"text": "boolean"
|
|
731
|
+
},
|
|
732
|
+
"description": "If set to true, the checkbox will be displayed with an error state.",
|
|
733
|
+
"fieldName": "error"
|
|
734
|
+
},
|
|
735
|
+
{
|
|
736
|
+
"name": "id",
|
|
737
|
+
"type": {
|
|
738
|
+
"text": "string"
|
|
739
|
+
},
|
|
740
|
+
"description": "The id global attribute defines an identifier (ID) which must be unique in the whole document.",
|
|
741
|
+
"fieldName": "id"
|
|
742
|
+
},
|
|
743
|
+
{
|
|
744
|
+
"name": "name",
|
|
745
|
+
"type": {
|
|
746
|
+
"text": "string"
|
|
747
|
+
},
|
|
748
|
+
"description": "Accepts any string and is used to identify related checkboxes when submitting form data.",
|
|
749
|
+
"fieldName": "name"
|
|
750
|
+
},
|
|
751
|
+
{
|
|
752
|
+
"name": "onDark",
|
|
753
|
+
"type": {
|
|
754
|
+
"text": "boolean"
|
|
755
|
+
},
|
|
756
|
+
"description": "DEPRECATED - use `appearance=\"inverse\"` instead.",
|
|
757
|
+
"fieldName": "onDark"
|
|
758
|
+
},
|
|
759
|
+
{
|
|
760
|
+
"name": "value",
|
|
761
|
+
"type": {
|
|
762
|
+
"text": "string"
|
|
763
|
+
},
|
|
764
|
+
"description": "Sets the element's input value. Must be unique within an auro-checkbox-group element.",
|
|
765
|
+
"fieldName": "value"
|
|
766
|
+
},
|
|
767
|
+
{
|
|
768
|
+
"name": "tabindex",
|
|
769
|
+
"type": {
|
|
770
|
+
"text": "number"
|
|
771
|
+
},
|
|
772
|
+
"description": "The tabindex attribute for the checkbox.",
|
|
773
|
+
"fieldName": "tabIndex"
|
|
774
|
+
},
|
|
775
|
+
{
|
|
776
|
+
"name": "aria-checked",
|
|
777
|
+
"type": {
|
|
778
|
+
"text": "string"
|
|
779
|
+
},
|
|
780
|
+
"description": "The aria-checked attribute for the checkbox.",
|
|
781
|
+
"fieldName": "ariaChecked"
|
|
782
|
+
},
|
|
783
|
+
{
|
|
784
|
+
"name": "aria-disabled",
|
|
785
|
+
"type": {
|
|
786
|
+
"text": "string"
|
|
787
|
+
},
|
|
788
|
+
"description": "The aria-disabled attribute for the checkbox.",
|
|
789
|
+
"fieldName": "ariaDisabled"
|
|
790
|
+
},
|
|
791
|
+
{
|
|
792
|
+
"name": "role",
|
|
793
|
+
"type": {
|
|
794
|
+
"text": "string"
|
|
795
|
+
},
|
|
796
|
+
"description": "The ARIA role for the element. Must remain 'checkbox' for screen readers\nto correctly identify this as a checkbox control.",
|
|
797
|
+
"fieldName": "role"
|
|
798
|
+
}
|
|
799
|
+
],
|
|
800
|
+
"superclass": {
|
|
801
|
+
"name": "LitElement",
|
|
802
|
+
"package": "lit"
|
|
803
|
+
},
|
|
804
|
+
"tagName": "auro-checkbox",
|
|
805
|
+
"customElement": true
|
|
806
|
+
}
|
|
807
|
+
],
|
|
808
|
+
"exports": [
|
|
809
|
+
{
|
|
810
|
+
"kind": "js",
|
|
811
|
+
"name": "AuroCheckbox",
|
|
812
|
+
"declaration": {
|
|
813
|
+
"name": "AuroCheckbox",
|
|
814
|
+
"module": "components/checkbox/src/auro-checkbox.js"
|
|
815
|
+
}
|
|
816
|
+
}
|
|
817
|
+
]
|
|
818
|
+
},
|
|
819
|
+
{
|
|
820
|
+
"kind": "javascript-module",
|
|
821
|
+
"path": "components/checkbox/src/index.js",
|
|
822
|
+
"declarations": [],
|
|
823
|
+
"exports": [
|
|
824
|
+
{
|
|
825
|
+
"kind": "js",
|
|
826
|
+
"name": "AuroCheckbox",
|
|
827
|
+
"declaration": {
|
|
828
|
+
"name": "AuroCheckbox",
|
|
829
|
+
"module": "components/checkbox/src/index.js"
|
|
830
|
+
}
|
|
831
|
+
},
|
|
832
|
+
{
|
|
833
|
+
"kind": "js",
|
|
834
|
+
"name": "AuroCheckboxGroup",
|
|
835
|
+
"declaration": {
|
|
836
|
+
"name": "AuroCheckboxGroup",
|
|
837
|
+
"module": "components/checkbox/src/index.js"
|
|
838
|
+
}
|
|
839
|
+
}
|
|
840
|
+
]
|
|
841
|
+
},
|
|
842
|
+
{
|
|
843
|
+
"kind": "javascript-module",
|
|
844
|
+
"path": "components/checkbox/src/registered.js",
|
|
845
|
+
"declarations": [],
|
|
846
|
+
"exports": []
|
|
847
|
+
},
|
|
848
|
+
{
|
|
849
|
+
"kind": "javascript-module",
|
|
850
|
+
"path": "components/bibtemplate/src/auro-bibtemplate.js",
|
|
851
|
+
"declarations": [
|
|
852
|
+
{
|
|
853
|
+
"kind": "class",
|
|
854
|
+
"description": "The `auro-bibtemplate` element provides users a template for creating modal dialog elements.",
|
|
855
|
+
"name": "AuroBibtemplate",
|
|
856
|
+
"slots": [
|
|
857
|
+
{
|
|
858
|
+
"description": "The default slot for the main content.",
|
|
859
|
+
"name": "default"
|
|
860
|
+
},
|
|
861
|
+
{
|
|
862
|
+
"description": "Slot for the header content.",
|
|
863
|
+
"name": "header"
|
|
864
|
+
},
|
|
865
|
+
{
|
|
866
|
+
"description": "Slot for the subheader content.",
|
|
867
|
+
"name": "subheader"
|
|
868
|
+
},
|
|
869
|
+
{
|
|
870
|
+
"description": "Slot for the footer content.",
|
|
871
|
+
"name": "footer"
|
|
872
|
+
},
|
|
873
|
+
{
|
|
874
|
+
"description": "Slot for the close button aria-label.",
|
|
875
|
+
"name": "ariaLabel.close"
|
|
876
|
+
}
|
|
877
|
+
],
|
|
878
|
+
"members": [
|
|
879
|
+
{
|
|
880
|
+
"kind": "method",
|
|
881
|
+
"name": "register",
|
|
882
|
+
"static": true,
|
|
883
|
+
"parameters": [
|
|
884
|
+
{
|
|
885
|
+
"name": "name",
|
|
886
|
+
"default": "\"auro-bibtemplate\"",
|
|
887
|
+
"description": "The name of element that you want to register to.",
|
|
888
|
+
"optional": true,
|
|
889
|
+
"type": {
|
|
890
|
+
"text": "string"
|
|
891
|
+
}
|
|
892
|
+
}
|
|
893
|
+
],
|
|
894
|
+
"description": "This will register this element with the browser."
|
|
895
|
+
},
|
|
896
|
+
{
|
|
897
|
+
"kind": "method",
|
|
898
|
+
"name": "preventBodyScroll",
|
|
899
|
+
"parameters": [
|
|
900
|
+
{
|
|
901
|
+
"name": "event",
|
|
902
|
+
"description": "The touchmove event.",
|
|
903
|
+
"type": {
|
|
904
|
+
"text": "Event"
|
|
905
|
+
}
|
|
906
|
+
}
|
|
907
|
+
],
|
|
908
|
+
"description": "Prevents scrolling of the body when touching empty areas of the component.",
|
|
909
|
+
"return": {
|
|
910
|
+
"type": {
|
|
911
|
+
"text": "void"
|
|
912
|
+
}
|
|
913
|
+
}
|
|
914
|
+
},
|
|
915
|
+
{
|
|
916
|
+
"kind": "method",
|
|
917
|
+
"name": "focusCloseButton",
|
|
918
|
+
"description": "Focuses the close button inside the bibtemplate's shadow DOM.\nUsed by parent components to set initial focus when the fullscreen dialog opens.",
|
|
919
|
+
"return": {
|
|
920
|
+
"type": {
|
|
921
|
+
"text": "void"
|
|
922
|
+
}
|
|
923
|
+
}
|
|
924
|
+
},
|
|
925
|
+
{
|
|
926
|
+
"kind": "method",
|
|
927
|
+
"name": "onCloseButtonClick"
|
|
928
|
+
},
|
|
929
|
+
{
|
|
930
|
+
"kind": "method",
|
|
931
|
+
"name": "exposeCssParts",
|
|
932
|
+
"description": "Exposes CSS parts for styling from parent components.",
|
|
933
|
+
"return": {
|
|
934
|
+
"type": {
|
|
935
|
+
"text": "void"
|
|
936
|
+
}
|
|
937
|
+
}
|
|
938
|
+
},
|
|
939
|
+
{
|
|
940
|
+
"kind": "field",
|
|
941
|
+
"name": "large",
|
|
865
942
|
"privacy": "public",
|
|
866
943
|
"type": {
|
|
867
|
-
"text": "
|
|
944
|
+
"text": "boolean"
|
|
868
945
|
},
|
|
869
|
-
"
|
|
870
|
-
"attribute": "
|
|
946
|
+
"default": "false",
|
|
947
|
+
"attribute": "large",
|
|
948
|
+
"reflects": true
|
|
871
949
|
},
|
|
872
950
|
{
|
|
873
951
|
"kind": "field",
|
|
874
|
-
"name": "
|
|
875
|
-
"privacy": "private"
|
|
876
|
-
"type": {
|
|
877
|
-
"text": "number"
|
|
878
|
-
},
|
|
879
|
-
"description": "The tabindex attribute for the checkbox.",
|
|
880
|
-
"attribute": "tabindex",
|
|
881
|
-
"reflects": true
|
|
952
|
+
"name": "iconTag",
|
|
953
|
+
"privacy": "private"
|
|
882
954
|
},
|
|
883
955
|
{
|
|
884
956
|
"kind": "field",
|
|
885
|
-
"name": "
|
|
886
|
-
"privacy": "private"
|
|
887
|
-
"type": {
|
|
888
|
-
"text": "string"
|
|
889
|
-
},
|
|
890
|
-
"description": "The aria-checked attribute for the checkbox.",
|
|
891
|
-
"attribute": "aria-checked",
|
|
892
|
-
"reflects": true
|
|
957
|
+
"name": "headerTag",
|
|
958
|
+
"privacy": "private"
|
|
893
959
|
},
|
|
894
960
|
{
|
|
895
961
|
"kind": "field",
|
|
896
|
-
"name": "
|
|
897
|
-
"privacy": "private"
|
|
898
|
-
"type": {
|
|
899
|
-
"text": "string"
|
|
900
|
-
},
|
|
901
|
-
"description": "The aria-disabled attribute for the checkbox.",
|
|
902
|
-
"attribute": "aria-disabled",
|
|
903
|
-
"reflects": true
|
|
962
|
+
"name": "buttonTag",
|
|
963
|
+
"privacy": "private"
|
|
904
964
|
},
|
|
905
965
|
{
|
|
906
966
|
"kind": "field",
|
|
907
|
-
"name": "
|
|
908
|
-
"privacy": "
|
|
967
|
+
"name": "isFullscreen",
|
|
968
|
+
"privacy": "public",
|
|
909
969
|
"type": {
|
|
910
|
-
"text": "
|
|
970
|
+
"text": "boolean"
|
|
911
971
|
},
|
|
912
|
-
"
|
|
913
|
-
"attribute": "role",
|
|
972
|
+
"attribute": "isFullscreen",
|
|
914
973
|
"reflects": true
|
|
915
974
|
}
|
|
916
975
|
],
|
|
917
976
|
"events": [
|
|
918
977
|
{
|
|
919
|
-
"name": "
|
|
920
|
-
"type": {
|
|
921
|
-
"text": "CustomEvent"
|
|
922
|
-
}
|
|
923
|
-
},
|
|
924
|
-
{
|
|
925
|
-
"name": "auroCheckbox-focusin",
|
|
978
|
+
"name": "close-click",
|
|
926
979
|
"type": {
|
|
927
|
-
"text": "
|
|
980
|
+
"text": "Event"
|
|
928
981
|
}
|
|
929
982
|
},
|
|
930
983
|
{
|
|
931
|
-
"name": "
|
|
984
|
+
"name": "auro-bibtemplate-connected",
|
|
932
985
|
"type": {
|
|
933
986
|
"text": "CustomEvent"
|
|
934
987
|
}
|
|
935
|
-
},
|
|
936
|
-
{
|
|
937
|
-
"description": "(Deprecated) Notifies when checked value is changed.",
|
|
938
|
-
"name": "change"
|
|
939
|
-
},
|
|
940
|
-
{
|
|
941
|
-
"description": "Notifies when when checked value is changed by user's interface.",
|
|
942
|
-
"name": "input"
|
|
943
988
|
}
|
|
944
989
|
],
|
|
945
990
|
"attributes": [
|
|
946
991
|
{
|
|
947
|
-
"name": "
|
|
948
|
-
"type": {
|
|
949
|
-
"text": "'default' | 'inverse'"
|
|
950
|
-
},
|
|
951
|
-
"description": "Defines whether the component will be on lighter or darker backgrounds.",
|
|
952
|
-
"default": "'default'",
|
|
953
|
-
"fieldName": "appearance"
|
|
954
|
-
},
|
|
955
|
-
{
|
|
956
|
-
"name": "checked",
|
|
957
|
-
"type": {
|
|
958
|
-
"text": "boolean"
|
|
959
|
-
},
|
|
960
|
-
"description": "If set to true, the checkbox will be filled with a checkmark.",
|
|
961
|
-
"fieldName": "checked"
|
|
962
|
-
},
|
|
963
|
-
{
|
|
964
|
-
"name": "disabled",
|
|
965
|
-
"type": {
|
|
966
|
-
"text": "boolean"
|
|
967
|
-
},
|
|
968
|
-
"description": "If set to true, the checkbox will not be clickable.",
|
|
969
|
-
"fieldName": "disabled"
|
|
970
|
-
},
|
|
971
|
-
{
|
|
972
|
-
"name": "error",
|
|
992
|
+
"name": "isFullscreen",
|
|
973
993
|
"type": {
|
|
974
994
|
"text": "boolean"
|
|
975
995
|
},
|
|
976
|
-
"
|
|
977
|
-
"fieldName": "error"
|
|
978
|
-
},
|
|
979
|
-
{
|
|
980
|
-
"name": "id",
|
|
981
|
-
"type": {
|
|
982
|
-
"text": "string"
|
|
983
|
-
},
|
|
984
|
-
"description": "The id global attribute defines an identifier (ID) which must be unique in the whole document.",
|
|
985
|
-
"fieldName": "id"
|
|
986
|
-
},
|
|
987
|
-
{
|
|
988
|
-
"name": "name",
|
|
989
|
-
"type": {
|
|
990
|
-
"text": "string"
|
|
991
|
-
},
|
|
992
|
-
"description": "Accepts any string and is used to identify related checkboxes when submitting form data.",
|
|
993
|
-
"fieldName": "name"
|
|
996
|
+
"fieldName": "isFullscreen"
|
|
994
997
|
},
|
|
995
998
|
{
|
|
996
|
-
"name": "
|
|
999
|
+
"name": "large",
|
|
997
1000
|
"type": {
|
|
998
1001
|
"text": "boolean"
|
|
999
1002
|
},
|
|
1000
|
-
"
|
|
1001
|
-
"fieldName": "
|
|
1002
|
-
},
|
|
1003
|
-
{
|
|
1004
|
-
"name": "value",
|
|
1005
|
-
"type": {
|
|
1006
|
-
"text": "string"
|
|
1007
|
-
},
|
|
1008
|
-
"description": "Sets the element's input value. Must be unique within an auro-checkbox-group element.",
|
|
1009
|
-
"fieldName": "value"
|
|
1010
|
-
},
|
|
1011
|
-
{
|
|
1012
|
-
"name": "tabindex",
|
|
1013
|
-
"type": {
|
|
1014
|
-
"text": "number"
|
|
1015
|
-
},
|
|
1016
|
-
"description": "The tabindex attribute for the checkbox.",
|
|
1017
|
-
"fieldName": "tabIndex"
|
|
1018
|
-
},
|
|
1019
|
-
{
|
|
1020
|
-
"name": "aria-checked",
|
|
1021
|
-
"type": {
|
|
1022
|
-
"text": "string"
|
|
1023
|
-
},
|
|
1024
|
-
"description": "The aria-checked attribute for the checkbox.",
|
|
1025
|
-
"fieldName": "ariaChecked"
|
|
1026
|
-
},
|
|
1027
|
-
{
|
|
1028
|
-
"name": "aria-disabled",
|
|
1029
|
-
"type": {
|
|
1030
|
-
"text": "string"
|
|
1031
|
-
},
|
|
1032
|
-
"description": "The aria-disabled attribute for the checkbox.",
|
|
1033
|
-
"fieldName": "ariaDisabled"
|
|
1034
|
-
},
|
|
1035
|
-
{
|
|
1036
|
-
"name": "role",
|
|
1037
|
-
"type": {
|
|
1038
|
-
"text": "string"
|
|
1039
|
-
},
|
|
1040
|
-
"description": "The ARIA role for the element. Must remain 'checkbox' for screen readers\nto correctly identify this as a checkbox control.",
|
|
1041
|
-
"fieldName": "role"
|
|
1003
|
+
"default": "false",
|
|
1004
|
+
"fieldName": "large"
|
|
1042
1005
|
}
|
|
1043
1006
|
],
|
|
1044
1007
|
"superclass": {
|
|
1045
1008
|
"name": "LitElement",
|
|
1046
1009
|
"package": "lit"
|
|
1047
1010
|
},
|
|
1048
|
-
"tagName": "auro-
|
|
1011
|
+
"tagName": "auro-bibtemplate",
|
|
1049
1012
|
"customElement": true
|
|
1050
1013
|
}
|
|
1051
1014
|
],
|
|
1052
1015
|
"exports": [
|
|
1053
1016
|
{
|
|
1054
1017
|
"kind": "js",
|
|
1055
|
-
"name": "
|
|
1018
|
+
"name": "AuroBibtemplate",
|
|
1056
1019
|
"declaration": {
|
|
1057
|
-
"name": "
|
|
1058
|
-
"module": "components/
|
|
1020
|
+
"name": "AuroBibtemplate",
|
|
1021
|
+
"module": "components/bibtemplate/src/auro-bibtemplate.js"
|
|
1059
1022
|
}
|
|
1060
1023
|
}
|
|
1061
1024
|
]
|
|
1062
1025
|
},
|
|
1063
1026
|
{
|
|
1064
1027
|
"kind": "javascript-module",
|
|
1065
|
-
"path": "components/
|
|
1028
|
+
"path": "components/bibtemplate/src/buttonVersion.js",
|
|
1066
1029
|
"declarations": [],
|
|
1067
1030
|
"exports": [
|
|
1068
1031
|
{
|
|
1069
1032
|
"kind": "js",
|
|
1070
|
-
"name": "
|
|
1033
|
+
"name": "default",
|
|
1071
1034
|
"declaration": {
|
|
1072
|
-
"name": "
|
|
1073
|
-
"module": "components/
|
|
1035
|
+
"name": "12.3.2",
|
|
1036
|
+
"module": "components/bibtemplate/src/buttonVersion.js"
|
|
1074
1037
|
}
|
|
1075
|
-
}
|
|
1038
|
+
}
|
|
1039
|
+
]
|
|
1040
|
+
},
|
|
1041
|
+
{
|
|
1042
|
+
"kind": "javascript-module",
|
|
1043
|
+
"path": "components/bibtemplate/src/headerVersion.js",
|
|
1044
|
+
"declarations": [],
|
|
1045
|
+
"exports": [
|
|
1076
1046
|
{
|
|
1077
1047
|
"kind": "js",
|
|
1078
|
-
"name": "
|
|
1048
|
+
"name": "default",
|
|
1079
1049
|
"declaration": {
|
|
1080
|
-
"name": "
|
|
1081
|
-
"module": "components/
|
|
1050
|
+
"name": "5.0.1",
|
|
1051
|
+
"module": "components/bibtemplate/src/headerVersion.js"
|
|
1082
1052
|
}
|
|
1083
1053
|
}
|
|
1084
1054
|
]
|
|
1085
1055
|
},
|
|
1086
1056
|
{
|
|
1087
1057
|
"kind": "javascript-module",
|
|
1088
|
-
"path": "components/
|
|
1058
|
+
"path": "components/bibtemplate/src/iconVersion.js",
|
|
1059
|
+
"declarations": [],
|
|
1060
|
+
"exports": [
|
|
1061
|
+
{
|
|
1062
|
+
"kind": "js",
|
|
1063
|
+
"name": "default",
|
|
1064
|
+
"declaration": {
|
|
1065
|
+
"name": "9.2.0",
|
|
1066
|
+
"module": "components/bibtemplate/src/iconVersion.js"
|
|
1067
|
+
}
|
|
1068
|
+
}
|
|
1069
|
+
]
|
|
1070
|
+
},
|
|
1071
|
+
{
|
|
1072
|
+
"kind": "javascript-module",
|
|
1073
|
+
"path": "components/bibtemplate/src/index.js",
|
|
1074
|
+
"declarations": [],
|
|
1075
|
+
"exports": [
|
|
1076
|
+
{
|
|
1077
|
+
"kind": "js",
|
|
1078
|
+
"name": "AuroBibtemplate",
|
|
1079
|
+
"declaration": {
|
|
1080
|
+
"name": "AuroBibtemplate",
|
|
1081
|
+
"module": "components/bibtemplate/src/index.js"
|
|
1082
|
+
}
|
|
1083
|
+
}
|
|
1084
|
+
]
|
|
1085
|
+
},
|
|
1086
|
+
{
|
|
1087
|
+
"kind": "javascript-module",
|
|
1088
|
+
"path": "components/bibtemplate/src/registered.js",
|
|
1089
1089
|
"declarations": [],
|
|
1090
1090
|
"exports": []
|
|
1091
1091
|
},
|
|
@@ -4806,6 +4806,17 @@
|
|
|
4806
4806
|
}
|
|
4807
4807
|
}
|
|
4808
4808
|
},
|
|
4809
|
+
{
|
|
4810
|
+
"kind": "method",
|
|
4811
|
+
"name": "getWeekdayNames",
|
|
4812
|
+
"description": "Generates the localized short names for each day of the week.\nThe list always starts with the day that corresponds to Sunday in the target locale.",
|
|
4813
|
+
"privacy": "private",
|
|
4814
|
+
"return": {
|
|
4815
|
+
"type": {
|
|
4816
|
+
"text": "Array"
|
|
4817
|
+
}
|
|
4818
|
+
}
|
|
4819
|
+
},
|
|
4809
4820
|
{
|
|
4810
4821
|
"kind": "method",
|
|
4811
4822
|
"name": "localeChanged"
|
|
@@ -4836,7 +4847,7 @@
|
|
|
4836
4847
|
"type": {
|
|
4837
4848
|
"text": "string"
|
|
4838
4849
|
},
|
|
4839
|
-
"description": "BCP 47 locale tag for calendar localization.",
|
|
4850
|
+
"description": "BCP 47 locale tag (such as `en-US`) for calendar localization.\nas wc-range-datepicker expects a `locale` prop, we use `localeCode` to avoid conflicts.",
|
|
4840
4851
|
"attribute": "localeCode"
|
|
4841
4852
|
}
|
|
4842
4853
|
],
|
|
@@ -4853,7 +4864,7 @@
|
|
|
4853
4864
|
"type": {
|
|
4854
4865
|
"text": "string"
|
|
4855
4866
|
},
|
|
4856
|
-
"description": "BCP 47 locale tag for calendar localization.",
|
|
4867
|
+
"description": "BCP 47 locale tag (such as `en-US`) for calendar localization.\nas wc-range-datepicker expects a `locale` prop, we use `localeCode` to avoid conflicts.",
|
|
4857
4868
|
"fieldName": "localeCode"
|
|
4858
4869
|
}
|
|
4859
4870
|
],
|
|
@@ -5229,6 +5240,7 @@
|
|
|
5229
5240
|
"type": {
|
|
5230
5241
|
"text": "boolean"
|
|
5231
5242
|
},
|
|
5243
|
+
"description": "If true, the month will be displayed before the year in the calendar header.\nPassed to AuroCalendarMonth via utilitesCalendarRender.",
|
|
5232
5244
|
"attribute": "monthFirst"
|
|
5233
5245
|
},
|
|
5234
5246
|
{
|
|
@@ -5238,7 +5250,7 @@
|
|
|
5238
5250
|
"type": {
|
|
5239
5251
|
"text": "string"
|
|
5240
5252
|
},
|
|
5241
|
-
"description": "BCP 47 locale tag for calendar localization.",
|
|
5253
|
+
"description": "BCP 47 locale tag (such as `en-US`) for calendar localization.\nas wc-range-datepicker expects a `locale` prop, we use `localeCode` to avoid conflicts and pass the locale down to calendar-month elements.",
|
|
5242
5254
|
"attribute": "localeCode"
|
|
5243
5255
|
}
|
|
5244
5256
|
],
|
|
@@ -5359,6 +5371,7 @@
|
|
|
5359
5371
|
"type": {
|
|
5360
5372
|
"text": "boolean"
|
|
5361
5373
|
},
|
|
5374
|
+
"description": "If true, the month will be displayed before the year in the calendar header.\nPassed to AuroCalendarMonth via utilitesCalendarRender.",
|
|
5362
5375
|
"fieldName": "monthFirst"
|
|
5363
5376
|
},
|
|
5364
5377
|
{
|
|
@@ -5384,7 +5397,7 @@
|
|
|
5384
5397
|
"type": {
|
|
5385
5398
|
"text": "string"
|
|
5386
5399
|
},
|
|
5387
|
-
"description": "BCP 47 locale tag for calendar localization.",
|
|
5400
|
+
"description": "BCP 47 locale tag (such as `en-US`) for calendar localization.\nas wc-range-datepicker expects a `locale` prop, we use `localeCode` to avoid conflicts and pass the locale down to calendar-month elements.",
|
|
5388
5401
|
"fieldName": "localeCode"
|
|
5389
5402
|
}
|
|
5390
5403
|
],
|
|
@@ -5577,7 +5590,13 @@
|
|
|
5577
5590
|
{
|
|
5578
5591
|
"kind": "field",
|
|
5579
5592
|
"name": "commonDisplayValueWrapperClasses",
|
|
5593
|
+
"description": "Common display value wrapper classes.",
|
|
5580
5594
|
"privacy": "private",
|
|
5595
|
+
"return": {
|
|
5596
|
+
"type": {
|
|
5597
|
+
"text": "Object"
|
|
5598
|
+
}
|
|
5599
|
+
},
|
|
5581
5600
|
"readonly": true
|
|
5582
5601
|
},
|
|
5583
5602
|
{
|
|
@@ -6139,6 +6158,7 @@
|
|
|
6139
6158
|
"parameters": [
|
|
6140
6159
|
{
|
|
6141
6160
|
"name": "event",
|
|
6161
|
+
"description": "The click event object.",
|
|
6142
6162
|
"type": {
|
|
6143
6163
|
"text": "MouseEvent"
|
|
6144
6164
|
}
|
|
@@ -6714,15 +6734,6 @@
|
|
|
6714
6734
|
"description": "Names of all 12 months to render in the calendar.\nWhen omitted, month names will be automatically populated from the active `locale` (falling back to `en-US`).",
|
|
6715
6735
|
"attribute": "monthNames"
|
|
6716
6736
|
},
|
|
6717
|
-
{
|
|
6718
|
-
"kind": "field",
|
|
6719
|
-
"name": "monthFirst",
|
|
6720
|
-
"privacy": "private",
|
|
6721
|
-
"type": {
|
|
6722
|
-
"text": "boolean"
|
|
6723
|
-
},
|
|
6724
|
-
"attribute": "monthFirst"
|
|
6725
|
-
},
|
|
6726
6737
|
{
|
|
6727
6738
|
"kind": "field",
|
|
6728
6739
|
"name": "placeholder",
|
|
@@ -7062,13 +7073,6 @@
|
|
|
7062
7073
|
"description": "Names of all 12 months to render in the calendar.\nWhen omitted, month names will be automatically populated from the active `locale` (falling back to `en-US`).",
|
|
7063
7074
|
"fieldName": "monthNames"
|
|
7064
7075
|
},
|
|
7065
|
-
{
|
|
7066
|
-
"name": "monthFirst",
|
|
7067
|
-
"type": {
|
|
7068
|
-
"text": "boolean"
|
|
7069
|
-
},
|
|
7070
|
-
"fieldName": "monthFirst"
|
|
7071
|
-
},
|
|
7072
7076
|
{
|
|
7073
7077
|
"name": "noFlip",
|
|
7074
7078
|
"type": {
|