@aurodesignsystem-dev/auro-formkit 0.0.0-pr1474.5 → 0.0.0-pr1474.6

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.
Files changed (53) hide show
  1. package/components/checkbox/demo/customize.min.js +1 -1
  2. package/components/checkbox/demo/getting-started.min.js +1 -1
  3. package/components/checkbox/demo/index.min.js +1 -1
  4. package/components/checkbox/dist/index.js +1 -1
  5. package/components/checkbox/dist/registered.js +1 -1
  6. package/components/combobox/demo/customize.min.js +3 -3
  7. package/components/combobox/demo/getting-started.min.js +3 -3
  8. package/components/combobox/demo/index.min.js +3 -3
  9. package/components/combobox/dist/index.js +3 -3
  10. package/components/combobox/dist/registered.js +3 -3
  11. package/components/counter/demo/customize.min.js +2 -2
  12. package/components/counter/demo/index.min.js +2 -2
  13. package/components/counter/dist/index.js +2 -2
  14. package/components/counter/dist/registered.js +2 -2
  15. package/components/datepicker/demo/customize.min.js +3 -3
  16. package/components/datepicker/demo/index.min.js +3 -3
  17. package/components/datepicker/dist/index.js +3 -3
  18. package/components/datepicker/dist/registered.js +3 -3
  19. package/components/dropdown/demo/customize.min.js +1 -1
  20. package/components/dropdown/demo/getting-started.min.js +1 -1
  21. package/components/dropdown/demo/index.min.js +1 -1
  22. package/components/dropdown/dist/index.js +1 -1
  23. package/components/dropdown/dist/registered.js +1 -1
  24. package/components/form/demo/customize.md +13 -4
  25. package/components/form/demo/customize.min.js +158 -41
  26. package/components/form/demo/getting-started.min.js +158 -41
  27. package/components/form/demo/index.min.js +158 -41
  28. package/components/form/demo/registerDemoDeps.min.js +144 -37
  29. package/components/form/dist/auro-form.d.ts +11 -3
  30. package/components/form/dist/index.js +14 -4
  31. package/components/form/dist/registered.js +14 -4
  32. package/components/input/demo/customize.min.js +1 -1
  33. package/components/input/demo/getting-started.min.js +1 -1
  34. package/components/input/demo/index.min.js +1 -1
  35. package/components/input/dist/index.js +1 -1
  36. package/components/input/dist/registered.js +1 -1
  37. package/components/radio/demo/customize.min.js +1 -1
  38. package/components/radio/demo/getting-started.min.js +1 -1
  39. package/components/radio/demo/index.min.js +1 -1
  40. package/components/radio/dist/index.js +1 -1
  41. package/components/radio/dist/registered.js +1 -1
  42. package/components/select/demo/api.md +1 -0
  43. package/components/select/demo/customize.md +71 -0
  44. package/components/select/demo/customize.min.js +133 -26
  45. package/components/select/demo/getting-started.min.js +133 -26
  46. package/components/select/demo/index.min.js +133 -26
  47. package/components/select/demo/keyboard-behavior.md +18 -0
  48. package/components/select/dist/auro-select.d.ts +38 -2
  49. package/components/select/dist/index.js +133 -26
  50. package/components/select/dist/registered.js +133 -26
  51. package/components/select/dist/selectUtils.d.ts +12 -0
  52. package/custom-elements.json +442 -350
  53. package/package.json +1 -1
@@ -2,6 +2,269 @@
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
+ "kind": "field",
134
+ "name": "showFooter",
135
+ "privacy": "public",
136
+ "type": {
137
+ "text": "boolean"
138
+ },
139
+ "description": "If declared, the footer slot will be rendered even when not in fullscreen mode.",
140
+ "attribute": "showFooter",
141
+ "reflects": true
142
+ }
143
+ ],
144
+ "events": [
145
+ {
146
+ "name": "close-click",
147
+ "type": {
148
+ "text": "Event"
149
+ }
150
+ },
151
+ {
152
+ "name": "auro-bibtemplate-connected",
153
+ "type": {
154
+ "text": "CustomEvent"
155
+ }
156
+ }
157
+ ],
158
+ "attributes": [
159
+ {
160
+ "name": "isFullscreen",
161
+ "type": {
162
+ "text": "boolean"
163
+ },
164
+ "fieldName": "isFullscreen"
165
+ },
166
+ {
167
+ "name": "large",
168
+ "type": {
169
+ "text": "boolean"
170
+ },
171
+ "default": "false",
172
+ "fieldName": "large"
173
+ },
174
+ {
175
+ "name": "showFooter",
176
+ "type": {
177
+ "text": "boolean"
178
+ },
179
+ "description": "If declared, the footer slot will be rendered even when not in fullscreen mode.",
180
+ "fieldName": "showFooter"
181
+ }
182
+ ],
183
+ "superclass": {
184
+ "name": "LitElement",
185
+ "package": "lit"
186
+ },
187
+ "tagName": "auro-bibtemplate",
188
+ "customElement": true
189
+ }
190
+ ],
191
+ "exports": [
192
+ {
193
+ "kind": "js",
194
+ "name": "AuroBibtemplate",
195
+ "declaration": {
196
+ "name": "AuroBibtemplate",
197
+ "module": "components/bibtemplate/src/auro-bibtemplate.js"
198
+ }
199
+ }
200
+ ]
201
+ },
202
+ {
203
+ "kind": "javascript-module",
204
+ "path": "components/bibtemplate/src/buttonVersion.js",
205
+ "declarations": [],
206
+ "exports": [
207
+ {
208
+ "kind": "js",
209
+ "name": "default",
210
+ "declaration": {
211
+ "name": "12.3.2",
212
+ "module": "components/bibtemplate/src/buttonVersion.js"
213
+ }
214
+ }
215
+ ]
216
+ },
217
+ {
218
+ "kind": "javascript-module",
219
+ "path": "components/bibtemplate/src/headerVersion.js",
220
+ "declarations": [],
221
+ "exports": [
222
+ {
223
+ "kind": "js",
224
+ "name": "default",
225
+ "declaration": {
226
+ "name": "5.0.1",
227
+ "module": "components/bibtemplate/src/headerVersion.js"
228
+ }
229
+ }
230
+ ]
231
+ },
232
+ {
233
+ "kind": "javascript-module",
234
+ "path": "components/bibtemplate/src/iconVersion.js",
235
+ "declarations": [],
236
+ "exports": [
237
+ {
238
+ "kind": "js",
239
+ "name": "default",
240
+ "declaration": {
241
+ "name": "9.2.0",
242
+ "module": "components/bibtemplate/src/iconVersion.js"
243
+ }
244
+ }
245
+ ]
246
+ },
247
+ {
248
+ "kind": "javascript-module",
249
+ "path": "components/bibtemplate/src/index.js",
250
+ "declarations": [],
251
+ "exports": [
252
+ {
253
+ "kind": "js",
254
+ "name": "AuroBibtemplate",
255
+ "declaration": {
256
+ "name": "AuroBibtemplate",
257
+ "module": "components/bibtemplate/src/index.js"
258
+ }
259
+ }
260
+ ]
261
+ },
262
+ {
263
+ "kind": "javascript-module",
264
+ "path": "components/bibtemplate/src/registered.js",
265
+ "declarations": [],
266
+ "exports": []
267
+ },
5
268
  {
6
269
  "kind": "javascript-module",
7
270
  "path": "components/checkbox/src/auro-checkbox-group.js",
@@ -690,421 +953,158 @@
690
953
  }
691
954
  },
692
955
  {
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",
942
- "privacy": "public",
956
+ "description": "(Deprecated) Notifies when checked value is changed.",
957
+ "name": "change"
958
+ },
959
+ {
960
+ "description": "Notifies when when checked value is changed by user's interface.",
961
+ "name": "input"
962
+ }
963
+ ],
964
+ "attributes": [
965
+ {
966
+ "name": "appearance",
967
+ "type": {
968
+ "text": "'default' | 'inverse'"
969
+ },
970
+ "description": "Defines whether the component will be on lighter or darker backgrounds.",
971
+ "default": "'default'",
972
+ "fieldName": "appearance"
973
+ },
974
+ {
975
+ "name": "checked",
943
976
  "type": {
944
977
  "text": "boolean"
945
978
  },
946
- "default": "false",
947
- "attribute": "large",
948
- "reflects": true
979
+ "description": "If set to true, the checkbox will be filled with a checkmark.",
980
+ "fieldName": "checked"
949
981
  },
950
982
  {
951
- "kind": "field",
952
- "name": "iconTag",
953
- "privacy": "private"
983
+ "name": "disabled",
984
+ "type": {
985
+ "text": "boolean"
986
+ },
987
+ "description": "If set to true, the checkbox will not be clickable.",
988
+ "fieldName": "disabled"
954
989
  },
955
990
  {
956
- "kind": "field",
957
- "name": "headerTag",
958
- "privacy": "private"
991
+ "name": "error",
992
+ "type": {
993
+ "text": "boolean"
994
+ },
995
+ "description": "If set to true, the checkbox will be displayed with an error state.",
996
+ "fieldName": "error"
959
997
  },
960
998
  {
961
- "kind": "field",
962
- "name": "buttonTag",
963
- "privacy": "private"
999
+ "name": "id",
1000
+ "type": {
1001
+ "text": "string"
1002
+ },
1003
+ "description": "The id global attribute defines an identifier (ID) which must be unique in the whole document.",
1004
+ "fieldName": "id"
964
1005
  },
965
1006
  {
966
- "kind": "field",
967
- "name": "isFullscreen",
968
- "privacy": "public",
1007
+ "name": "name",
969
1008
  "type": {
970
- "text": "boolean"
1009
+ "text": "string"
971
1010
  },
972
- "attribute": "isFullscreen",
973
- "reflects": true
1011
+ "description": "Accepts any string and is used to identify related checkboxes when submitting form data.",
1012
+ "fieldName": "name"
974
1013
  },
975
1014
  {
976
- "kind": "field",
977
- "name": "showFooter",
978
- "privacy": "public",
1015
+ "name": "onDark",
979
1016
  "type": {
980
1017
  "text": "boolean"
981
1018
  },
982
- "description": "If declared, the footer slot will be rendered even when not in fullscreen mode.",
983
- "attribute": "showFooter",
984
- "reflects": true
985
- }
986
- ],
987
- "events": [
1019
+ "description": "DEPRECATED - use `appearance=\"inverse\"` instead.",
1020
+ "fieldName": "onDark"
1021
+ },
988
1022
  {
989
- "name": "close-click",
1023
+ "name": "value",
990
1024
  "type": {
991
- "text": "Event"
992
- }
1025
+ "text": "string"
1026
+ },
1027
+ "description": "Sets the element's input value. Must be unique within an auro-checkbox-group element.",
1028
+ "fieldName": "value"
993
1029
  },
994
1030
  {
995
- "name": "auro-bibtemplate-connected",
1031
+ "name": "tabindex",
996
1032
  "type": {
997
- "text": "CustomEvent"
998
- }
999
- }
1000
- ],
1001
- "attributes": [
1033
+ "text": "number"
1034
+ },
1035
+ "description": "The tabindex attribute for the checkbox.",
1036
+ "fieldName": "tabIndex"
1037
+ },
1002
1038
  {
1003
- "name": "isFullscreen",
1039
+ "name": "aria-checked",
1004
1040
  "type": {
1005
- "text": "boolean"
1041
+ "text": "string"
1006
1042
  },
1007
- "fieldName": "isFullscreen"
1043
+ "description": "The aria-checked attribute for the checkbox.",
1044
+ "fieldName": "ariaChecked"
1008
1045
  },
1009
1046
  {
1010
- "name": "large",
1047
+ "name": "aria-disabled",
1011
1048
  "type": {
1012
- "text": "boolean"
1049
+ "text": "string"
1013
1050
  },
1014
- "default": "false",
1015
- "fieldName": "large"
1051
+ "description": "The aria-disabled attribute for the checkbox.",
1052
+ "fieldName": "ariaDisabled"
1016
1053
  },
1017
1054
  {
1018
- "name": "showFooter",
1055
+ "name": "role",
1019
1056
  "type": {
1020
- "text": "boolean"
1057
+ "text": "string"
1021
1058
  },
1022
- "description": "If declared, the footer slot will be rendered even when not in fullscreen mode.",
1023
- "fieldName": "showFooter"
1059
+ "description": "The ARIA role for the element. Must remain 'checkbox' for screen readers\nto correctly identify this as a checkbox control.",
1060
+ "fieldName": "role"
1024
1061
  }
1025
1062
  ],
1026
1063
  "superclass": {
1027
1064
  "name": "LitElement",
1028
1065
  "package": "lit"
1029
1066
  },
1030
- "tagName": "auro-bibtemplate",
1067
+ "tagName": "auro-checkbox",
1031
1068
  "customElement": true
1032
1069
  }
1033
1070
  ],
1034
1071
  "exports": [
1035
1072
  {
1036
1073
  "kind": "js",
1037
- "name": "AuroBibtemplate",
1038
- "declaration": {
1039
- "name": "AuroBibtemplate",
1040
- "module": "components/bibtemplate/src/auro-bibtemplate.js"
1041
- }
1042
- }
1043
- ]
1044
- },
1045
- {
1046
- "kind": "javascript-module",
1047
- "path": "components/bibtemplate/src/buttonVersion.js",
1048
- "declarations": [],
1049
- "exports": [
1050
- {
1051
- "kind": "js",
1052
- "name": "default",
1053
- "declaration": {
1054
- "name": "12.3.2",
1055
- "module": "components/bibtemplate/src/buttonVersion.js"
1056
- }
1057
- }
1058
- ]
1059
- },
1060
- {
1061
- "kind": "javascript-module",
1062
- "path": "components/bibtemplate/src/headerVersion.js",
1063
- "declarations": [],
1064
- "exports": [
1065
- {
1066
- "kind": "js",
1067
- "name": "default",
1074
+ "name": "AuroCheckbox",
1068
1075
  "declaration": {
1069
- "name": "5.0.1",
1070
- "module": "components/bibtemplate/src/headerVersion.js"
1076
+ "name": "AuroCheckbox",
1077
+ "module": "components/checkbox/src/auro-checkbox.js"
1071
1078
  }
1072
1079
  }
1073
1080
  ]
1074
1081
  },
1075
1082
  {
1076
1083
  "kind": "javascript-module",
1077
- "path": "components/bibtemplate/src/iconVersion.js",
1084
+ "path": "components/checkbox/src/index.js",
1078
1085
  "declarations": [],
1079
1086
  "exports": [
1080
1087
  {
1081
1088
  "kind": "js",
1082
- "name": "default",
1089
+ "name": "AuroCheckbox",
1083
1090
  "declaration": {
1084
- "name": "9.2.0",
1085
- "module": "components/bibtemplate/src/iconVersion.js"
1091
+ "name": "AuroCheckbox",
1092
+ "module": "components/checkbox/src/index.js"
1086
1093
  }
1087
- }
1088
- ]
1089
- },
1090
- {
1091
- "kind": "javascript-module",
1092
- "path": "components/bibtemplate/src/index.js",
1093
- "declarations": [],
1094
- "exports": [
1094
+ },
1095
1095
  {
1096
1096
  "kind": "js",
1097
- "name": "AuroBibtemplate",
1097
+ "name": "AuroCheckboxGroup",
1098
1098
  "declaration": {
1099
- "name": "AuroBibtemplate",
1100
- "module": "components/bibtemplate/src/index.js"
1099
+ "name": "AuroCheckboxGroup",
1100
+ "module": "components/checkbox/src/index.js"
1101
1101
  }
1102
1102
  }
1103
1103
  ]
1104
1104
  },
1105
1105
  {
1106
1106
  "kind": "javascript-module",
1107
- "path": "components/bibtemplate/src/registered.js",
1107
+ "path": "components/checkbox/src/registered.js",
1108
1108
  "declarations": [],
1109
1109
  "exports": []
1110
1110
  },
@@ -10648,7 +10648,7 @@
10648
10648
  }
10649
10649
  }
10650
10650
  ],
10651
- "description": "Collapse empty representations to a single canonical `null`.\n\n`_addElementToState` captures `null` for a field that mounts without a\n`value` attribute (`element.value || element.getAttribute('value')` is\nfalsy → resolves to `null`), but `sharedInputListener` later stores the\nraw `event.target.value` — which is `''` for a user-cleared text input.\nWithout this normalization, backspacing back to empty would taint the\nform forever (`'' !== null`) and Reset would stay enabled with nothing\nto actually reset.\n\nOnly `''` and `undefined` collapse to `null`. Genuine values — including\n`0`, `false`, and non-empty strings pass through unchanged so number\nand boolean fields still compare correctly.",
10651
+ "description": "Collapse empty representations to a single canonical `null`.\n\n`_addElementToState` captures `null` for a field that mounts without a\n`value` attribute (`element.value || element.getAttribute('value')` is\nfalsy → resolves to `null`), but `sharedInputListener` later stores the\nraw `event.target.value` — which is `''` for a user-cleared text input.\nWithout this normalization, backspacing back to empty would taint the\nform forever (`'' !== null`) and Reset would stay enabled with nothing\nto actually reset.\n\n`''`, `undefined`, and `[]` all collapse to `null`. The empty-array case\ncovers checkbox-group, radio-group, and multiselect, where `[]` means\n\"no selection\" — semantically the same as `null`/`''`. Genuine values\n— including `0`, `false`, non-empty strings, and non-empty arrays —\npass through unchanged so number, boolean, and populated multi-value\nfields still compare correctly.",
10652
10652
  "return": {
10653
10653
  "type": {
10654
10654
  "text": "*"
@@ -18719,6 +18719,32 @@
18719
18719
  ],
18720
18720
  "description": "Updates the active option in the menu."
18721
18721
  },
18722
+ {
18723
+ "kind": "method",
18724
+ "name": "_getOptionDisplayText",
18725
+ "parameters": [
18726
+ {
18727
+ "name": "option",
18728
+ "description": "The menu option element.",
18729
+ "type": {
18730
+ "text": "HTMLElement"
18731
+ }
18732
+ }
18733
+ ],
18734
+ "description": "Returns the lowercase, trimmed text content of a menu option.",
18735
+ "privacy": "private",
18736
+ "return": {
18737
+ "type": {
18738
+ "text": "string"
18739
+ }
18740
+ }
18741
+ },
18742
+ {
18743
+ "kind": "method",
18744
+ "name": "_clearTypeaheadBuffer",
18745
+ "description": "Empties the type-ahead buffer and cancels any pending reset timeout.\nCalled when focus leaves the component, when Escape closes the bib, and on disconnect\nso a stale buffer never bridges into a fresh interaction.",
18746
+ "privacy": "private"
18747
+ },
18722
18748
  {
18723
18749
  "kind": "method",
18724
18750
  "name": "updateActiveOptionBasedOnKey",
@@ -18731,7 +18757,7 @@
18731
18757
  }
18732
18758
  }
18733
18759
  ],
18734
- "description": "Updates the active option in the menu based on keyboard input.",
18760
+ "description": "Updates the active option in the menu based on keyboard input.\n\nImplements the WAI-ARIA APG Listbox type-ahead pattern: accumulates printable\nkeystrokes into a buffer that resets after `typeaheadTimeoutMs` of inactivity.\nA multi-character buffer matches the first option whose displayed text starts\nwith the buffer; repeating a single character cycles through options that start\nwith that character.",
18735
18761
  "privacy": "private",
18736
18762
  "return": {
18737
18763
  "type": {
@@ -19127,6 +19153,24 @@
19127
19153
  },
19128
19154
  "default": "false"
19129
19155
  },
19156
+ {
19157
+ "kind": "field",
19158
+ "name": "typeaheadBuffer",
19159
+ "type": {
19160
+ "text": "string"
19161
+ },
19162
+ "privacy": "private",
19163
+ "default": "''"
19164
+ },
19165
+ {
19166
+ "kind": "field",
19167
+ "name": "_typeaheadTimeout",
19168
+ "type": {
19169
+ "text": "null"
19170
+ },
19171
+ "privacy": "private",
19172
+ "default": "null"
19173
+ },
19130
19174
  {
19131
19175
  "kind": "field",
19132
19176
  "name": "appearance",
@@ -19411,6 +19455,18 @@
19411
19455
  },
19412
19456
  "description": "Indicates whether the input is in a dirty state (has been interacted with)."
19413
19457
  },
19458
+ {
19459
+ "kind": "field",
19460
+ "name": "typeaheadTimeoutMs",
19461
+ "privacy": "public",
19462
+ "type": {
19463
+ "text": "number"
19464
+ },
19465
+ "description": "Milliseconds of keyboard inactivity before the type-ahead buffer resets.\nIncrease for users who type slowly.",
19466
+ "default": "500",
19467
+ "attribute": "typeaheadTimeoutMs",
19468
+ "reflects": true
19469
+ },
19414
19470
  {
19415
19471
  "kind": "field",
19416
19472
  "name": "validity",
@@ -19763,6 +19819,15 @@
19763
19819
  "module": "components/layoutElement/src/auroElement.js"
19764
19820
  }
19765
19821
  },
19822
+ {
19823
+ "name": "typeaheadTimeoutMs",
19824
+ "type": {
19825
+ "text": "number"
19826
+ },
19827
+ "description": "Milliseconds of keyboard inactivity before the type-ahead buffer resets.\nIncrease for users who type slowly.",
19828
+ "default": "500",
19829
+ "fieldName": "typeaheadTimeoutMs"
19830
+ },
19766
19831
  {
19767
19832
  "name": "validity",
19768
19833
  "type": {
@@ -19841,7 +19906,7 @@
19841
19906
  "type": {
19842
19907
  "text": "object"
19843
19908
  },
19844
- "default": "{ ArrowDown(component, evt, ctx) { evt.preventDefault(); if (ctx.isExpanded) { if (evt.altKey || evt.ctrlKey || evt.metaKey) { // navigate to last enabled option selectKeyboardStrategy.End(component, evt, ctx); } else { navigateArrow(component, 'down', { ctx }); } } else { component.dropdown.show(); } }, ArrowUp(component, evt, ctx) { evt.preventDefault(); if (ctx.isExpanded) { if (evt.altKey || evt.ctrlKey || evt.metaKey) { // navigate to first enabled option selectKeyboardStrategy.Home(component, evt, ctx); } else { navigateArrow(component, 'up', { ctx }); } } else { component.dropdown.show(); } }, Escape(component, evt, ctx) { if (!ctx.isExpanded) { return; } // Prevent the Escape key from bubbling up and closing any parent dialogs / drawers / popups evt.stopPropagation(); component.dropdown.hide(); }, End(component, evt, ctx) { if (!ctx.isExpanded) { return; } evt.preventDefault(); evt.stopPropagation(); // `pop()` is safe here: getEnabledOptions returns a fresh filtered array. const lastOption = getEnabledOptions(component.menu).pop(); if (lastOption) { component.menu.updateActiveOption(lastOption); } }, Enter(component, evt, ctx) { evt.preventDefault(); evt.stopPropagation(); if (!ctx.isExpanded) { component.dropdown.show(); return; } component.menu.makeSelection(); }, Home(component, evt, ctx) { if (!ctx.isExpanded) { return; } evt.preventDefault(); evt.stopPropagation(); const [firstOption] = getEnabledOptions(component.menu); if (firstOption) { component.menu.updateActiveOption(firstOption); } }, Tab(component, evt, ctx) { if (!ctx.isExpanded) { return; } // Tab selects the focused option and closes the popup per the // WAI-ARIA APG select-only combobox / listbox pattern. if (component.optionActive) { component.menu.makeSelection(); } component.dropdown.hide(); }, default(component, evt, ctx) { component.updateActiveOptionBasedOnKey(evt.key); if (evt.key === ' ') { evt.preventDefault(); evt.stopPropagation(); if (ctx.isExpanded) { component.dropdown.hide(); return; } component.dropdown.show(); } }, }"
19909
+ "default": "{ ArrowDown(component, evt, ctx) { evt.preventDefault(); if (ctx.isExpanded) { if (evt.altKey || evt.ctrlKey || evt.metaKey) { // navigate to last enabled option selectKeyboardStrategy.End(component, evt, ctx); } else { navigateArrow(component, 'down', { ctx }); } } else { component.dropdown.show(); } }, ArrowUp(component, evt, ctx) { evt.preventDefault(); if (ctx.isExpanded) { if (evt.altKey || evt.ctrlKey || evt.metaKey) { // navigate to first enabled option selectKeyboardStrategy.Home(component, evt, ctx); } else { navigateArrow(component, 'up', { ctx }); } } else { component.dropdown.show(); } }, Escape(component, evt, ctx) { // Always clear the type-ahead buffer — Escape is a universal cancel. // Safe to call when the buffer is empty. // eslint-disable-next-line no-underscore-dangle if (typeof component._clearTypeaheadBuffer === 'function') { // eslint-disable-next-line no-underscore-dangle component._clearTypeaheadBuffer(); } if (!ctx.isExpanded) { return; } // Prevent the Escape key from bubbling up and closing any parent dialogs / drawers / popups evt.stopPropagation(); component.dropdown.hide(); }, End(component, evt, ctx) { if (!ctx.isExpanded) { return; } evt.preventDefault(); evt.stopPropagation(); // `pop()` is safe here: getEnabledOptions returns a fresh filtered array. const lastOption = getEnabledOptions(component.menu).pop(); if (lastOption) { component.menu.updateActiveOption(lastOption); } }, Enter(component, evt, ctx) { evt.preventDefault(); evt.stopPropagation(); if (!ctx.isExpanded) { component.dropdown.show(); return; } component.menu.makeSelection(); }, Home(component, evt, ctx) { if (!ctx.isExpanded) { return; } evt.preventDefault(); evt.stopPropagation(); const [firstOption] = getEnabledOptions(component.menu); if (firstOption) { component.menu.updateActiveOption(firstOption); } }, Tab(component, evt, ctx) { if (!ctx.isExpanded) { return; } // Tab selects the focused option and closes the popup per the // WAI-ARIA APG select-only combobox / listbox pattern. if (component.optionActive) { component.menu.makeSelection(); } component.dropdown.hide(); }, default(component, evt, ctx) { // Space resolves to either typeahead-buffer extension or bib toggle // depending on whether a type-ahead buffer is active. Mirrors native // <select> and the WAI-ARIA APG Listbox guidance: mid-typeahead space // is a search character (e.g. \"San Francisco\"); otherwise it toggles. if (evt.key === ' ') { evt.preventDefault(); evt.stopPropagation(); if (component.typeaheadBuffer && component.typeaheadBuffer.length > 0) { component.updateActiveOptionBasedOnKey(evt.key); return; } if (ctx.isExpanded) { component.dropdown.hide(); } else { component.dropdown.show(); } return; } component.updateActiveOptionBasedOnKey(evt.key); }, }"
19845
19910
  }
19846
19911
  ],
19847
19912
  "exports": [
@@ -19877,6 +19942,25 @@
19877
19942
  "text": "Array<HTMLElement>"
19878
19943
  }
19879
19944
  }
19945
+ },
19946
+ {
19947
+ "kind": "function",
19948
+ "name": "getActiveOptions",
19949
+ "parameters": [
19950
+ {
19951
+ "name": "menu",
19952
+ "description": "The auro-menu element.",
19953
+ "type": {
19954
+ "text": "HTMLElement | null | undefined"
19955
+ }
19956
+ }
19957
+ ],
19958
+ "description": "Returns the active (selectable + visible) options for type-ahead navigation.\n\nUses auro-menuoption's `isActive` getter, which excludes disabled, hidden,\nand static options (e.g. `static nomatch` placeholders) so the type-ahead\ncursor never lands on a non-actionable item. Same empty-safe handling as\n`getEnabledOptions`.",
19959
+ "return": {
19960
+ "type": {
19961
+ "text": "Array<HTMLElement>"
19962
+ }
19963
+ }
19880
19964
  }
19881
19965
  ],
19882
19966
  "exports": [
@@ -19887,6 +19971,14 @@
19887
19971
  "name": "getEnabledOptions",
19888
19972
  "module": "components/select/src/selectUtils.js"
19889
19973
  }
19974
+ },
19975
+ {
19976
+ "kind": "js",
19977
+ "name": "getActiveOptions",
19978
+ "declaration": {
19979
+ "name": "getActiveOptions",
19980
+ "module": "components/select/src/selectUtils.js"
19981
+ }
19890
19982
  }
19891
19983
  ]
19892
19984
  }