@aurodesignsystem-dev/auro-formkit 0.0.0-pr1489.4 → 0.0.0-pr1489.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 (64) hide show
  1. package/components/checkbox/demo/customize.min.js +249 -125
  2. package/components/checkbox/demo/getting-started.min.js +249 -125
  3. package/components/checkbox/demo/index.min.js +249 -125
  4. package/components/checkbox/demo/styles.min.css +1 -1
  5. package/components/checkbox/dist/index.js +249 -125
  6. package/components/checkbox/dist/registered.js +249 -125
  7. package/components/combobox/demo/customize.min.js +502 -254
  8. package/components/combobox/demo/getting-started.min.js +502 -254
  9. package/components/combobox/demo/index.min.js +502 -254
  10. package/components/combobox/demo/styles.min.css +1 -1
  11. package/components/combobox/dist/index.js +502 -254
  12. package/components/combobox/dist/registered.js +502 -254
  13. package/components/counter/demo/customize.min.js +250 -126
  14. package/components/counter/demo/index.min.js +250 -126
  15. package/components/counter/demo/styles.min.css +1 -1
  16. package/components/counter/dist/index.js +249 -125
  17. package/components/counter/dist/registered.js +249 -125
  18. package/components/datepicker/demo/accessibility.md +9 -6
  19. package/components/datepicker/demo/api.md +1 -1
  20. package/components/datepicker/demo/customize.min.js +1544 -527
  21. package/components/datepicker/demo/index.md +6 -4
  22. package/components/datepicker/demo/index.min.js +1560 -532
  23. package/components/datepicker/demo/keyboard-behavior.md +15 -15
  24. package/components/datepicker/demo/styles.min.css +1 -1
  25. package/components/datepicker/demo/voiceover.md +5 -3
  26. package/components/datepicker/demo/why-datepicker.md +2 -2
  27. package/components/datepicker/dist/index.js +1536 -519
  28. package/components/datepicker/dist/registered.js +1536 -519
  29. package/components/datepicker/dist/src/auro-calendar-cell.d.ts +50 -15
  30. package/components/datepicker/dist/src/auro-calendar-month.d.ts +9 -0
  31. package/components/datepicker/dist/src/auro-calendar.d.ts +161 -8
  32. package/components/datepicker/dist/src/auro-datepicker.d.ts +5 -7
  33. package/components/dropdown/demo/customize.min.js +1 -1
  34. package/components/dropdown/demo/getting-started.min.js +1 -1
  35. package/components/dropdown/demo/index.min.js +1 -1
  36. package/components/dropdown/demo/styles.min.css +1 -1
  37. package/components/dropdown/dist/index.js +1 -1
  38. package/components/dropdown/dist/registered.js +1 -1
  39. package/components/form/demo/customize.min.js +3263 -1378
  40. package/components/form/demo/getting-started.min.js +3263 -1378
  41. package/components/form/demo/index.min.js +3263 -1378
  42. package/components/form/demo/registerDemoDeps.min.js +3263 -1378
  43. package/components/form/demo/styles.min.css +1 -1
  44. package/components/input/demo/customize.min.js +249 -125
  45. package/components/input/demo/getting-started.min.js +249 -125
  46. package/components/input/demo/index.min.js +249 -125
  47. package/components/input/demo/styles.min.css +1 -1
  48. package/components/input/dist/index.js +249 -125
  49. package/components/input/dist/registered.js +249 -125
  50. package/components/menu/demo/styles.min.css +1 -1
  51. package/components/radio/demo/customize.min.js +249 -125
  52. package/components/radio/demo/getting-started.min.js +249 -125
  53. package/components/radio/demo/index.min.js +249 -125
  54. package/components/radio/demo/styles.min.css +1 -1
  55. package/components/radio/dist/index.js +249 -125
  56. package/components/radio/dist/registered.js +249 -125
  57. package/components/select/demo/customize.min.js +250 -126
  58. package/components/select/demo/getting-started.min.js +250 -126
  59. package/components/select/demo/index.min.js +250 -126
  60. package/components/select/demo/styles.min.css +1 -1
  61. package/components/select/dist/index.js +250 -126
  62. package/components/select/dist/registered.js +250 -126
  63. package/custom-elements.json +964 -637
  64. package/package.json +8 -8
@@ -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",
@@ -706,405 +969,142 @@
706
969
  },
707
970
  "description": "Defines whether the component will be on lighter or darker backgrounds.",
708
971
  "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
- }
972
+ "fieldName": "appearance"
938
973
  },
939
974
  {
940
- "kind": "field",
941
- "name": "large",
942
- "privacy": "public",
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
  },
@@ -4198,13 +4198,6 @@
4198
4198
  "text": "Number"
4199
4199
  }
4200
4200
  },
4201
- {
4202
- "name": "hoveredDate",
4203
- "description": "Hovered date.",
4204
- "type": {
4205
- "text": "Number"
4206
- }
4207
- },
4208
4201
  {
4209
4202
  "name": "day",
4210
4203
  "description": "An object containing the dateFrom and day of month values.",
@@ -4213,7 +4206,7 @@
4213
4206
  }
4214
4207
  }
4215
4208
  ],
4216
- "description": "Handles selected and hovered states of the calendar cell when the date changes.",
4209
+ "description": "Handles selected state of the calendar cell when the selection changes.\nAlso clears any imperative range preview classes so classMap is the\nsole source of truth after a selection update.",
4217
4210
  "privacy": "private",
4218
4211
  "return": {
4219
4212
  "type": {
@@ -4235,7 +4228,18 @@
4235
4228
  {
4236
4229
  "kind": "method",
4237
4230
  "name": "handleHover",
4238
- "description": "Handles user hover events and dispatches a custom event.\nAlways dispatches for range pickers so the preview updates correctly.",
4231
+ "description": "Handles user hover events and dispatches a custom event.\nDoes NOT set any reactive properties the range preview is handled\nimperatively by the calendar component to avoid O(N) re-renders.",
4232
+ "privacy": "private",
4233
+ "return": {
4234
+ "type": {
4235
+ "text": "void"
4236
+ }
4237
+ }
4238
+ },
4239
+ {
4240
+ "kind": "method",
4241
+ "name": "handleFocus",
4242
+ "description": "Handles focus events on the cell button.\nDispatches a lightweight event for the calendar to handle SR\nannouncements and range preview updates without triggering\nany Lit lifecycle updates.",
4239
4243
  "privacy": "private",
4240
4244
  "return": {
4241
4245
  "type": {
@@ -4570,10 +4574,77 @@
4570
4574
  }
4571
4575
  }
4572
4576
  },
4577
+ {
4578
+ "kind": "method",
4579
+ "name": "updateHostAria",
4580
+ "description": "Updates ARIA attributes on the host element so that\nariaActiveDescendantElement can expose cell info to the SR.",
4581
+ "privacy": "private",
4582
+ "return": {
4583
+ "type": {
4584
+ "text": "void"
4585
+ }
4586
+ }
4587
+ },
4573
4588
  {
4574
4589
  "kind": "method",
4575
4590
  "name": "focusButton",
4576
- "description": "Programmatically focuses the cell's interactive button element.",
4591
+ "description": "Programmatically focuses the cell's interactive button element.\nUses focusVisible: true so the :focus-visible ring appears even when\nthe bib was opened via mouse click (which sets mouse input modality).",
4592
+ "return": {
4593
+ "type": {
4594
+ "text": "void"
4595
+ }
4596
+ }
4597
+ },
4598
+ {
4599
+ "kind": "method",
4600
+ "name": "setActive",
4601
+ "description": "Imperatively marks this cell as active without triggering a Lit re-render.\nNote: buttons stay tabindex=\"-1\" because the grid uses aria-activedescendant.",
4602
+ "return": {
4603
+ "type": {
4604
+ "text": "void"
4605
+ }
4606
+ }
4607
+ },
4608
+ {
4609
+ "kind": "method",
4610
+ "name": "clearActive",
4611
+ "description": "Imperatively marks this cell as inactive without triggering a Lit re-render.",
4612
+ "return": {
4613
+ "type": {
4614
+ "text": "void"
4615
+ }
4616
+ }
4617
+ },
4618
+ {
4619
+ "kind": "method",
4620
+ "name": "updateRangePreviewClasses",
4621
+ "parameters": [
4622
+ {
4623
+ "name": "hoveredDate",
4624
+ "description": "Unix timestamp of the currently hovered/focused date.",
4625
+ "type": {
4626
+ "text": "Number"
4627
+ }
4628
+ },
4629
+ {
4630
+ "name": "dateFrom",
4631
+ "description": "Unix timestamp of the selected departure date.",
4632
+ "type": {
4633
+ "text": "Number"
4634
+ }
4635
+ }
4636
+ ],
4637
+ "description": "Updates range preview classes imperatively (no Lit re-render).\nCalled by the calendar component when the hovered date changes\nduring range selection (dateFrom set, dateTo not yet set).",
4638
+ "return": {
4639
+ "type": {
4640
+ "text": "void"
4641
+ }
4642
+ }
4643
+ },
4644
+ {
4645
+ "kind": "method",
4646
+ "name": "clearRangePreviewClasses",
4647
+ "description": "Clears all imperative range preview classes from the cell button.\nCalled when a selection occurs so classMap becomes the sole source of truth.",
4577
4648
  "return": {
4578
4649
  "type": {
4579
4650
  "text": "void"
@@ -4604,16 +4675,6 @@
4604
4675
  "default": "false",
4605
4676
  "attribute": "selected"
4606
4677
  },
4607
- {
4608
- "kind": "field",
4609
- "name": "hovered",
4610
- "privacy": "public",
4611
- "type": {
4612
- "text": "boolean"
4613
- },
4614
- "default": "false",
4615
- "attribute": "hovered"
4616
- },
4617
4678
  {
4618
4679
  "kind": "field",
4619
4680
  "name": "dateTo",
@@ -4677,23 +4738,13 @@
4677
4738
  },
4678
4739
  {
4679
4740
  "kind": "field",
4680
- "name": "disabledDays",
4681
- "privacy": "public",
4682
- "type": {
4683
- "text": "array"
4684
- },
4685
- "default": "[]",
4686
- "attribute": "disabledDays"
4687
- },
4688
- {
4689
- "kind": "field",
4690
- "name": "hoveredDate",
4741
+ "name": "disabledDays",
4691
4742
  "privacy": "public",
4692
4743
  "type": {
4693
- "text": "null"
4744
+ "text": "array"
4694
4745
  },
4695
- "default": "null",
4696
- "attribute": "hoveredDate"
4746
+ "default": "[]",
4747
+ "attribute": "disabledDays"
4697
4748
  },
4698
4749
  {
4699
4750
  "kind": "field",
@@ -4736,13 +4787,10 @@
4736
4787
  {
4737
4788
  "kind": "field",
4738
4789
  "name": "active",
4739
- "privacy": "public",
4740
4790
  "type": {
4741
4791
  "text": "boolean"
4742
4792
  },
4743
- "default": "false",
4744
- "attribute": "active",
4745
- "reflects": true
4793
+ "default": "false"
4746
4794
  },
4747
4795
  {
4748
4796
  "kind": "field",
@@ -4776,6 +4824,12 @@
4776
4824
  "type": {
4777
4825
  "text": "CustomEvent"
4778
4826
  }
4827
+ },
4828
+ {
4829
+ "name": "calendar-cell-focused",
4830
+ "type": {
4831
+ "text": "CustomEvent"
4832
+ }
4779
4833
  }
4780
4834
  ],
4781
4835
  "attributes": [
@@ -4795,14 +4849,6 @@
4795
4849
  "default": "false",
4796
4850
  "fieldName": "selected"
4797
4851
  },
4798
- {
4799
- "name": "hovered",
4800
- "type": {
4801
- "text": "boolean"
4802
- },
4803
- "default": "false",
4804
- "fieldName": "hovered"
4805
- },
4806
4852
  {
4807
4853
  "name": "dateTo",
4808
4854
  "type": {
@@ -4859,14 +4905,6 @@
4859
4905
  "default": "[]",
4860
4906
  "fieldName": "disabledDays"
4861
4907
  },
4862
- {
4863
- "name": "hoveredDate",
4864
- "type": {
4865
- "text": "null"
4866
- },
4867
- "default": "null",
4868
- "fieldName": "hoveredDate"
4869
- },
4870
4908
  {
4871
4909
  "name": "isCurrentDate",
4872
4910
  "type": {
@@ -4898,14 +4936,6 @@
4898
4936
  "default": "false",
4899
4937
  "fieldName": "renderForDateSlot"
4900
4938
  },
4901
- {
4902
- "name": "active",
4903
- "type": {
4904
- "text": "boolean"
4905
- },
4906
- "default": "false",
4907
- "fieldName": "active"
4908
- },
4909
4939
  {
4910
4940
  "name": "hasPopoverContent",
4911
4941
  "type": {
@@ -4921,6 +4951,10 @@
4921
4951
  },
4922
4952
  "tagName": "auro-formkit-calendar-cell",
4923
4953
  "customElement": true
4954
+ },
4955
+ {
4956
+ "kind": "variable",
4957
+ "name": "blackout"
4924
4958
  }
4925
4959
  ],
4926
4960
  "exports": [
@@ -5030,6 +5064,26 @@
5030
5064
  }
5031
5065
  }
5032
5066
  },
5067
+ {
5068
+ "kind": "method",
5069
+ "name": "handleDateHovered",
5070
+ "parameters": [
5071
+ {
5072
+ "name": "event",
5073
+ "description": "The date-is-hovered event from a cell.",
5074
+ "type": {
5075
+ "text": "CustomEvent"
5076
+ }
5077
+ }
5078
+ ],
5079
+ "description": "Overrides the base class handler to prevent setting `this.hoveredDate`\nas a reactive property. Instead, just dispatches the event upward so\nthe calendar can handle range preview imperatively.",
5080
+ "privacy": "private",
5081
+ "return": {
5082
+ "type": {
5083
+ "text": "void"
5084
+ }
5085
+ }
5086
+ },
5033
5087
  {
5034
5088
  "kind": "method",
5035
5089
  "name": "handleGridKeyDown",
@@ -5080,6 +5134,12 @@
5080
5134
  }
5081
5135
  ],
5082
5136
  "events": [
5137
+ {
5138
+ "name": "hovered-date-changed",
5139
+ "type": {
5140
+ "text": "CustomEvent"
5141
+ }
5142
+ },
5083
5143
  {
5084
5144
  "name": "calendar-month-boundary",
5085
5145
  "type": {
@@ -5141,6 +5201,16 @@
5141
5201
  {
5142
5202
  "kind": "method",
5143
5203
  "name": "handlePrevMonth",
5204
+ "parameters": [
5205
+ {
5206
+ "name": "options",
5207
+ "description": "Optional settings.",
5208
+ "optional": true,
5209
+ "type": {
5210
+ "text": "@param {boolean} [options.skipActiveUpdate=false] - When true, skip the active cell\n * recomputation. Used by arrow key handlers that manage the active cell themselves.\n * "
5211
+ }
5212
+ }
5213
+ ],
5144
5214
  "description": "Updates the month and year when the user navigates to the previous calendar month.",
5145
5215
  "privacy": "private",
5146
5216
  "return": {
@@ -5152,6 +5222,16 @@
5152
5222
  {
5153
5223
  "kind": "method",
5154
5224
  "name": "handleNextMonth",
5225
+ "parameters": [
5226
+ {
5227
+ "name": "options",
5228
+ "description": "Optional settings.",
5229
+ "optional": true,
5230
+ "type": {
5231
+ "text": "@param {boolean} [options.skipActiveUpdate=false] - When true, skip the active cell\n * recomputation. Used by arrow key handlers that manage the active cell themselves.\n * "
5232
+ }
5233
+ }
5234
+ ],
5155
5235
  "description": "Updates the month and year when the user navigates to the next calendar month.",
5156
5236
  "privacy": "private",
5157
5237
  "return": {
@@ -5174,7 +5254,7 @@
5174
5254
  {
5175
5255
  "kind": "method",
5176
5256
  "name": "updateActiveCellForVisibleMonth",
5177
- "description": "Recomputes and sets the active cell for the newly visible month after\nmonth navigation. Without this, activeCellDate can point at a date in\nthe old month, leaving no tabindex=\"0\" cell in the grid.",
5257
+ "description": "Updates the active cell after month navigation (prev/next buttons).\nAlways moves the active cell to the first enabled date in the newly\nvisible months so that tabbing back to the grid lands on an enabled cell.",
5178
5258
  "privacy": "private",
5179
5259
  "return": {
5180
5260
  "type": {
@@ -5256,7 +5336,7 @@
5256
5336
  }
5257
5337
  }
5258
5338
  ],
5259
- "description": "Sets the active cell across all months. Only one cell has tabindex=\"0\" at a time.",
5339
+ "description": "Sets the active cell across all months. Only one cell has tabindex=\"0\" at a time.\nUses imperative DOM manipulation — no Lit re-render triggered.\nAlso updates ariaActiveDescendantElement on the grid wrapper so\nscreen readers announce the active cell without moving DOM focus.",
5260
5340
  "return": {
5261
5341
  "type": {
5262
5342
  "text": "void"
@@ -5266,7 +5346,29 @@
5266
5346
  {
5267
5347
  "kind": "method",
5268
5348
  "name": "focusActiveCell",
5269
- "description": "Focuses the currently active cell. If activeCellDate is set but no cell\nhas the active attribute yet, sets it first. Waits for the cell's render\nto complete so the focused button is the final DOM element.",
5349
+ "description": "Focuses the calendar grid wrapper and sets the active cell.\nDOM focus stays on the grid wrapper; the aria-live region\ntells the screen reader which cell is \"active\".",
5350
+ "return": {
5351
+ "type": {
5352
+ "text": "void"
5353
+ }
5354
+ }
5355
+ },
5356
+ {
5357
+ "kind": "method",
5358
+ "name": "handleGridFocusIn",
5359
+ "description": "Shows the activeCell ring when the grid gains focus.",
5360
+ "privacy": "private",
5361
+ "return": {
5362
+ "type": {
5363
+ "text": "void"
5364
+ }
5365
+ }
5366
+ },
5367
+ {
5368
+ "kind": "method",
5369
+ "name": "handleGridFocusOut",
5370
+ "description": "Hides the activeCell ring when the grid loses focus.",
5371
+ "privacy": "private",
5270
5372
  "return": {
5271
5373
  "type": {
5272
5374
  "text": "void"
@@ -5287,7 +5389,7 @@
5287
5389
  }
5288
5390
  }
5289
5391
  ],
5290
- "description": "Computes the initial active date from data properties alone — no DOM required.\nPriority:\n 1. Selected date (dateFrom) if within range\n 2. Today's date if not disabled (in-range and not blackout)\n 3. First future non-disabled date (scans day-by-day from today up to 1 year)\n 4. First previous non-disabled date (scans day-by-day from today up to 1 year)\n 5. First enabled date in finite [min, max] range\n 5b. First enabled date scanning forward from finite min (unbounded max)\n 5c. First enabled date scanning backward from finite max (unbounded min)\n 6. First in-range date (even if blackout) so focus can land somewhere\n 7. undefined — no valid target",
5392
+ "description": "Computes the initial active date from data properties alone — no DOM required.\nPriority:\n 1. Selected date (dateFrom) if within range\n 2. Today's date if not disabled (in-range and not blackout)\n 3. First future non-disabled date (scans day-by-day from today up to 1 year)\n 4. First previous non-disabled date (scans day-by-day from today up to 1 year)\n 5. First enabled date in finite [min, max] range\n 5b. First enabled date scanning forward from finite min (unbounded max)\n 5c. First enabled date scanning backward from finite max (unbounded min)\n 6. First in-range date (even if blackout) so focus can land somewhere\n 7. Undefined — no valid target.",
5291
5393
  "privacy": "private",
5292
5394
  "return": {
5293
5395
  "type": {
@@ -5295,6 +5397,46 @@
5295
5397
  }
5296
5398
  }
5297
5399
  },
5400
+ {
5401
+ "kind": "method",
5402
+ "name": "isDateInRange",
5403
+ "parameters": [
5404
+ {
5405
+ "name": "targetTs",
5406
+ "description": "Unix timestamp in seconds.",
5407
+ "type": {
5408
+ "text": "Number"
5409
+ }
5410
+ }
5411
+ ],
5412
+ "description": "Checks if a target date (unix seconds) is within the configured [min, max] range.\nReturns false if the date falls outside the range, preventing navigation\nto months where all dates are disabled.",
5413
+ "privacy": "private",
5414
+ "return": {
5415
+ "type": {
5416
+ "text": "Boolean"
5417
+ }
5418
+ }
5419
+ },
5420
+ {
5421
+ "kind": "method",
5422
+ "name": "handleGridKeyDown",
5423
+ "parameters": [
5424
+ {
5425
+ "name": "event",
5426
+ "description": "The keyboard event.",
5427
+ "type": {
5428
+ "text": "KeyboardEvent"
5429
+ }
5430
+ }
5431
+ ],
5432
+ "description": "Handles arrow key navigation on the calendar grid wrapper.\nFocus stays on the grid wrapper; only ariaActiveDescendantElement\nand the visual active-cell indicator change.",
5433
+ "privacy": "private",
5434
+ "return": {
5435
+ "type": {
5436
+ "text": "void"
5437
+ }
5438
+ }
5439
+ },
5298
5440
  {
5299
5441
  "kind": "method",
5300
5442
  "name": "handleMonthBoundary",
@@ -5331,14 +5473,176 @@
5331
5473
  "privacy": "private",
5332
5474
  "return": {
5333
5475
  "type": {
5334
- "text": "void"
5476
+ "text": "void"
5477
+ }
5478
+ }
5479
+ },
5480
+ {
5481
+ "kind": "method",
5482
+ "name": "handleCellFocused",
5483
+ "parameters": [
5484
+ {
5485
+ "name": "event",
5486
+ "description": "The calendar-cell-focused event.",
5487
+ "type": {
5488
+ "text": "CustomEvent"
5489
+ }
5490
+ }
5491
+ ],
5492
+ "description": "Handles focus events from calendar cells.\nUpdates the live region with an SR announcement and triggers\nthe imperative range preview if applicable.",
5493
+ "privacy": "private",
5494
+ "return": {
5495
+ "type": {
5496
+ "text": "void"
5497
+ }
5498
+ }
5499
+ },
5500
+ {
5501
+ "kind": "method",
5502
+ "name": "buildFocusAnnouncement",
5503
+ "parameters": [
5504
+ {
5505
+ "name": "date",
5506
+ "description": "Unix timestamp (seconds) of the focused cell.",
5507
+ "type": {
5508
+ "text": "Number"
5509
+ }
5510
+ }
5511
+ ],
5512
+ "description": "Builds a full SR announcement string for a focused cell date.\nIncludes the localized date, range position, popover content,\nand blackout status.",
5513
+ "privacy": "private",
5514
+ "return": {
5515
+ "type": {
5516
+ "text": "String"
5517
+ }
5518
+ }
5519
+ },
5520
+ {
5521
+ "kind": "method",
5522
+ "name": "getRangePositionLabel",
5523
+ "parameters": [
5524
+ {
5525
+ "name": "date",
5526
+ "description": "Unix timestamp (seconds).",
5527
+ "type": {
5528
+ "text": "Number"
5529
+ }
5530
+ }
5531
+ ],
5532
+ "description": "Determines the range position label for a given date.",
5533
+ "privacy": "private",
5534
+ "return": {
5535
+ "type": {
5536
+ "text": "String|null"
5537
+ }
5538
+ }
5539
+ },
5540
+ {
5541
+ "kind": "method",
5542
+ "name": "isDateBlackout",
5543
+ "parameters": [
5544
+ {
5545
+ "name": "dateTs",
5546
+ "description": "Unix timestamp (seconds).",
5547
+ "type": {
5548
+ "text": "Number"
5549
+ }
5550
+ }
5551
+ ],
5552
+ "description": "Checks whether a given date is a blackout date.",
5553
+ "privacy": "private",
5554
+ "return": {
5555
+ "type": {
5556
+ "text": "Boolean"
5557
+ }
5558
+ }
5559
+ },
5560
+ {
5561
+ "kind": "method",
5562
+ "name": "updateRangePreview",
5563
+ "parameters": [
5564
+ {
5565
+ "name": "hoveredDate",
5566
+ "description": "Unix timestamp of the hovered/focused date.",
5567
+ "type": {
5568
+ "text": "Number"
5569
+ }
5570
+ }
5571
+ ],
5572
+ "description": "Updates the range preview classes imperatively across all cells.\nOnly active when in range mode with dateFrom set and dateTo not yet set.",
5573
+ "privacy": "private",
5574
+ "return": {
5575
+ "type": {
5576
+ "text": "void"
5577
+ }
5578
+ }
5579
+ },
5580
+ {
5581
+ "kind": "method",
5582
+ "name": "clearRangePreview",
5583
+ "description": "Clears range preview classes from all cells.",
5584
+ "privacy": "private",
5585
+ "return": {
5586
+ "type": {
5587
+ "text": "void"
5588
+ }
5589
+ }
5590
+ },
5591
+ {
5592
+ "kind": "method",
5593
+ "name": "hoveredDateChanged",
5594
+ "parameters": [
5595
+ {
5596
+ "name": "event",
5597
+ "description": "The hovered-date-changed event from a month.",
5598
+ "type": {
5599
+ "text": "CustomEvent"
5600
+ }
5601
+ }
5602
+ ],
5603
+ "description": "Overrides the base class handler to prevent setting `this.hoveredDate`\nas a reactive property. Instead, handles the range preview imperatively.",
5604
+ "privacy": "private",
5605
+ "return": {
5606
+ "type": {
5607
+ "text": "void"
5608
+ }
5609
+ }
5610
+ },
5611
+ {
5612
+ "kind": "method",
5613
+ "name": "scrollToActiveCell",
5614
+ "description": "Scrolls the calendar to ensure the month containing the active cell is visible.",
5615
+ "privacy": "private",
5616
+ "return": {
5617
+ "type": {
5618
+ "text": "void"
5619
+ }
5620
+ }
5621
+ },
5622
+ {
5623
+ "kind": "method",
5624
+ "name": "getOrCreateLiveRegion",
5625
+ "description": "Returns (and lazily creates) an aria-live region inside the dropdown's\n<dialog> element. This placement is critical for two reasons:\n\n1. Inside the dialog's accessible scope — dialog.showModal() makes\n everything outside the top-layer dialog inert, and desktop modal\n mode uses _setPageInert() on document.body siblings. A live region\n on document.body would be invisible to screen readers in both cases.\n\n2. Not nested in shadow DOM — Chrome inconsistently observes aria-live\n mutations inside shadow DOM across machines and versions. The dialog\n element is only one shadow root deep (the dropdown bib's shadow DOM),\n which Chrome handles reliably. The calendar's own shadow DOM (nested\n inside the bib via slotting) is two+ levels deep and unreliable.",
5626
+ "privacy": "private",
5627
+ "return": {
5628
+ "type": {
5629
+ "text": "HTMLElement"
5335
5630
  }
5336
5631
  }
5337
5632
  },
5338
5633
  {
5339
5634
  "kind": "method",
5340
- "name": "scrollToActiveCell",
5341
- "description": "Scrolls the calendar to ensure the month containing the active cell is visible.",
5635
+ "name": "announceSelection",
5636
+ "parameters": [
5637
+ {
5638
+ "name": "dateStr",
5639
+ "description": "The localized date string to announce.",
5640
+ "type": {
5641
+ "text": "String"
5642
+ }
5643
+ }
5644
+ ],
5645
+ "description": "Announces a date selection or focus change via the live region.\nUses requestAnimationFrame to ensure the clear and set happen in\nseparate rendering frames — Chrome may coalesce synchronous or\nmicrotask-deferred mutations into a single accessibility tree update.",
5342
5646
  "privacy": "private",
5343
5647
  "return": {
5344
5648
  "type": {
@@ -5348,7 +5652,7 @@
5348
5652
  },
5349
5653
  {
5350
5654
  "kind": "method",
5351
- "name": "announceSelection",
5655
+ "name": "announceFocusDebounced",
5352
5656
  "parameters": [
5353
5657
  {
5354
5658
  "name": "dateStr",
@@ -5358,7 +5662,7 @@
5358
5662
  }
5359
5663
  }
5360
5664
  ],
5361
- "description": "Announces a date selection via the live region.",
5665
+ "description": "Debounced version of announceSelection for focus navigation.\nUses the assertive live region with a 150ms debounce so only the\nfinal cell after rapid arrow-key traversal is announced. We\noriginally tried aria-live=\"polite\" here, but VoiceOver treats\npolite as \"wait until idle\" — which never happens during active\nkeyboard navigation — so the announcements were silently dropped.",
5362
5666
  "privacy": "private",
5363
5667
  "return": {
5364
5668
  "type": {
@@ -5499,6 +5803,16 @@
5499
5803
  "privacy": "private",
5500
5804
  "default": "null"
5501
5805
  },
5806
+ {
5807
+ "kind": "field",
5808
+ "name": "_gridHasFocus",
5809
+ "type": {
5810
+ "text": "boolean"
5811
+ },
5812
+ "description": "Whether the #calendarGrid wrapper currently has focus.\nUsed to determine whether the visualFocus ring should be shown.",
5813
+ "privacy": "private",
5814
+ "default": "false"
5815
+ },
5502
5816
  {
5503
5817
  "kind": "field",
5504
5818
  "name": "firstMonthRenderable",
@@ -5555,6 +5869,12 @@
5555
5869
  "default": "undefined",
5556
5870
  "attribute": "dropdown"
5557
5871
  },
5872
+ {
5873
+ "kind": "field",
5874
+ "name": "_calendarInstanceId",
5875
+ "description": "Unique instance ID for the live region element.",
5876
+ "privacy": "private"
5877
+ },
5558
5878
  {
5559
5879
  "kind": "field",
5560
5880
  "name": "calendarEndMonth",
@@ -5966,7 +6286,13 @@
5966
6286
  {
5967
6287
  "kind": "field",
5968
6288
  "name": "commonDisplayValueWrapperClasses",
6289
+ "description": "Common display value wrapper classes.",
5969
6290
  "privacy": "private",
6291
+ "return": {
6292
+ "type": {
6293
+ "text": "Object"
6294
+ }
6295
+ },
5970
6296
  "readonly": true
5971
6297
  },
5972
6298
  {
@@ -6468,6 +6794,7 @@
6468
6794
  "parameters": [
6469
6795
  {
6470
6796
  "name": "event",
6797
+ "description": "The mouse event from the clear button click.",
6471
6798
  "type": {
6472
6799
  "text": "MouseEvent"
6473
6800
  }
@@ -9904,270 +10231,76 @@
9904
10231
  "module": "components/dropdown/src/auro-dropdownBib.js"
9905
10232
  }
9906
10233
  }
9907
- ]
9908
- },
9909
- {
9910
- "kind": "javascript-module",
9911
- "path": "components/dropdown/src/dropdownBibKeyboardStrategy.js",
9912
- "declarations": [
9913
- {
9914
- "kind": "function",
9915
- "name": "createDropdownBibKeyboardStrategy",
9916
- "parameters": [
9917
- {
9918
- "name": "bib",
9919
- "description": "The dropdown bib element.",
9920
- "type": {
9921
- "text": "HTMLElement"
9922
- }
9923
- }
9924
- ],
9925
- "description": "Creates a keyboard strategy for dialog-specific key handling.\nAll other keydown behavior is left to the browser's native bubbling path.",
9926
- "return": {
9927
- "type": {
9928
- "text": "Object"
9929
- }
9930
- }
9931
- }
9932
- ],
9933
- "exports": [
9934
- {
9935
- "kind": "js",
9936
- "name": "createDropdownBibKeyboardStrategy",
9937
- "declaration": {
9938
- "name": "createDropdownBibKeyboardStrategy",
9939
- "module": "components/dropdown/src/dropdownBibKeyboardStrategy.js"
9940
- }
9941
- }
9942
- ]
9943
- },
9944
- {
9945
- "kind": "javascript-module",
9946
- "path": "components/dropdown/src/iconVersion.js",
9947
- "declarations": [],
9948
- "exports": [
9949
- {
9950
- "kind": "js",
9951
- "name": "default",
9952
- "declaration": {
9953
- "name": "9.2.0",
9954
- "module": "components/dropdown/src/iconVersion.js"
9955
- }
9956
- }
9957
- ]
9958
- },
9959
- {
9960
- "kind": "javascript-module",
9961
- "path": "components/dropdown/src/index.js",
9962
- "declarations": [],
9963
- "exports": [
9964
- {
9965
- "kind": "js",
9966
- "name": "AuroDropdown",
9967
- "declaration": {
9968
- "name": "AuroDropdown",
9969
- "module": "components/dropdown/src/index.js"
9970
- }
9971
- }
9972
- ]
9973
- },
9974
- {
9975
- "kind": "javascript-module",
9976
- "path": "components/dropdown/src/registered.js",
9977
- "declarations": [],
9978
- "exports": []
9979
- },
9980
- {
9981
- "kind": "javascript-module",
9982
- "path": "components/helptext/src/auro-helptext.js",
9983
- "declarations": [
9984
- {
9985
- "kind": "class",
9986
- "description": "Displays help text or error messages within form elements - Internal Use Only.",
9987
- "name": "AuroHelpText",
9988
- "members": [
9989
- {
9990
- "kind": "method",
9991
- "name": "register",
9992
- "static": true,
9993
- "parameters": [
9994
- {
9995
- "name": "name",
9996
- "default": "\"auro-helptext\"",
9997
- "description": "The name of element that you want to register to.",
9998
- "optional": true,
9999
- "type": {
10000
- "text": "string"
10001
- }
10002
- }
10003
- ],
10004
- "description": "This will register this element with the browser."
10005
- },
10006
- {
10007
- "kind": "method",
10008
- "name": "handleSlotChange",
10009
- "parameters": [
10010
- {
10011
- "name": "event"
10012
- }
10013
- ]
10014
- },
10015
- {
10016
- "kind": "method",
10017
- "name": "checkSlotsForContent",
10018
- "parameters": [
10019
- {
10020
- "name": "nodes",
10021
- "description": "The list of nodes to check for content.",
10022
- "type": {
10023
- "text": "NodeList|Array"
10024
- }
10025
- }
10026
- ],
10027
- "description": "Checks if any of the provided nodes or their nested slot nodes contain non-empty text content.",
10028
- "return": {
10029
- "type": {
10030
- "text": "boolean"
10031
- }
10032
- },
10033
- "privacy": "private"
10034
- },
10035
- {
10036
- "kind": "field",
10037
- "name": "error",
10038
- "privacy": "public",
10039
- "type": {
10040
- "text": "boolean"
10041
- },
10042
- "description": "If declared, make font color red.",
10043
- "default": "false",
10044
- "attribute": "error",
10045
- "reflects": true
10046
- },
10047
- {
10048
- "kind": "field",
10049
- "name": "appearance",
10050
- "privacy": "public",
10051
- "type": {
10052
- "text": "string"
10053
- },
10054
- "description": "Defines whether the component will be on lighter or darker backgrounds.",
10055
- "default": "\"default\"",
10056
- "attribute": "appearance",
10057
- "reflects": true
10058
- },
10059
- {
10060
- "kind": "field",
10061
- "name": "onDark",
10062
- "privacy": "public",
10063
- "type": {
10064
- "text": "boolean"
10065
- },
10066
- "description": "DEPRECATED - use `appearance` instead.",
10067
- "default": "false",
10068
- "attribute": "onDark",
10069
- "reflects": true
10070
- },
10071
- {
10072
- "kind": "field",
10073
- "name": "hasTextContent",
10074
- "privacy": "private",
10075
- "type": {
10076
- "text": "boolean"
10077
- },
10078
- "default": "false",
10079
- "attribute": "hasTextContent"
10080
- },
10081
- {
10082
- "kind": "field",
10083
- "name": "slotNodes",
10084
- "privacy": "private",
10085
- "type": {
10086
- "text": "boolean"
10087
- },
10088
- "attribute": "slotNodes"
10089
- }
10090
- ],
10091
- "attributes": [
10092
- {
10093
- "name": "appearance",
10094
- "type": {
10095
- "text": "string"
10096
- },
10097
- "description": "Defines whether the component will be on lighter or darker backgrounds.",
10098
- "default": "\"default\"",
10099
- "fieldName": "appearance"
10100
- },
10101
- {
10102
- "name": "slotNodes",
10103
- "type": {
10104
- "text": "boolean"
10105
- },
10106
- "fieldName": "slotNodes"
10107
- },
10108
- {
10109
- "name": "hasTextContent",
10110
- "type": {
10111
- "text": "boolean"
10112
- },
10113
- "default": "false",
10114
- "fieldName": "hasTextContent"
10115
- },
10116
- {
10117
- "name": "error",
10118
- "type": {
10119
- "text": "boolean"
10120
- },
10121
- "description": "If declared, make font color red.",
10122
- "default": "false",
10123
- "fieldName": "error"
10124
- },
10234
+ ]
10235
+ },
10236
+ {
10237
+ "kind": "javascript-module",
10238
+ "path": "components/dropdown/src/dropdownBibKeyboardStrategy.js",
10239
+ "declarations": [
10240
+ {
10241
+ "kind": "function",
10242
+ "name": "createDropdownBibKeyboardStrategy",
10243
+ "parameters": [
10125
10244
  {
10126
- "name": "onDark",
10245
+ "name": "bib",
10246
+ "description": "The dropdown bib element.",
10127
10247
  "type": {
10128
- "text": "boolean"
10129
- },
10130
- "description": "DEPRECATED - use `appearance` instead.",
10131
- "default": "false",
10132
- "fieldName": "onDark"
10248
+ "text": "HTMLElement"
10249
+ }
10133
10250
  }
10134
10251
  ],
10135
- "superclass": {
10136
- "name": "LitElement",
10137
- "package": "lit"
10138
- },
10139
- "customElement": true
10252
+ "description": "Creates a keyboard strategy for dialog-specific key handling.\nAll other keydown behavior is left to the browser's native bubbling path.",
10253
+ "return": {
10254
+ "type": {
10255
+ "text": "Object"
10256
+ }
10257
+ }
10140
10258
  }
10141
10259
  ],
10142
10260
  "exports": [
10143
10261
  {
10144
10262
  "kind": "js",
10145
- "name": "AuroHelpText",
10263
+ "name": "createDropdownBibKeyboardStrategy",
10146
10264
  "declaration": {
10147
- "name": "AuroHelpText",
10148
- "module": "components/helptext/src/auro-helptext.js"
10265
+ "name": "createDropdownBibKeyboardStrategy",
10266
+ "module": "components/dropdown/src/dropdownBibKeyboardStrategy.js"
10149
10267
  }
10150
10268
  }
10151
10269
  ]
10152
10270
  },
10153
10271
  {
10154
10272
  "kind": "javascript-module",
10155
- "path": "components/helptext/src/index.js",
10273
+ "path": "components/dropdown/src/iconVersion.js",
10156
10274
  "declarations": [],
10157
10275
  "exports": [
10158
10276
  {
10159
10277
  "kind": "js",
10160
- "name": "AuroHelpText",
10278
+ "name": "default",
10161
10279
  "declaration": {
10162
- "name": "AuroHelpText",
10163
- "module": "components/helptext/src/index.js"
10280
+ "name": "9.2.0",
10281
+ "module": "components/dropdown/src/iconVersion.js"
10164
10282
  }
10165
10283
  }
10166
10284
  ]
10167
10285
  },
10168
10286
  {
10169
10287
  "kind": "javascript-module",
10170
- "path": "components/helptext/src/registered.js",
10288
+ "path": "components/dropdown/src/index.js",
10289
+ "declarations": [],
10290
+ "exports": [
10291
+ {
10292
+ "kind": "js",
10293
+ "name": "AuroDropdown",
10294
+ "declaration": {
10295
+ "name": "AuroDropdown",
10296
+ "module": "components/dropdown/src/index.js"
10297
+ }
10298
+ }
10299
+ ]
10300
+ },
10301
+ {
10302
+ "kind": "javascript-module",
10303
+ "path": "components/dropdown/src/registered.js",
10171
10304
  "declarations": [],
10172
10305
  "exports": []
10173
10306
  },
@@ -10689,6 +10822,200 @@
10689
10822
  "declarations": [],
10690
10823
  "exports": []
10691
10824
  },
10825
+ {
10826
+ "kind": "javascript-module",
10827
+ "path": "components/helptext/src/auro-helptext.js",
10828
+ "declarations": [
10829
+ {
10830
+ "kind": "class",
10831
+ "description": "Displays help text or error messages within form elements - Internal Use Only.",
10832
+ "name": "AuroHelpText",
10833
+ "members": [
10834
+ {
10835
+ "kind": "method",
10836
+ "name": "register",
10837
+ "static": true,
10838
+ "parameters": [
10839
+ {
10840
+ "name": "name",
10841
+ "default": "\"auro-helptext\"",
10842
+ "description": "The name of element that you want to register to.",
10843
+ "optional": true,
10844
+ "type": {
10845
+ "text": "string"
10846
+ }
10847
+ }
10848
+ ],
10849
+ "description": "This will register this element with the browser."
10850
+ },
10851
+ {
10852
+ "kind": "method",
10853
+ "name": "handleSlotChange",
10854
+ "parameters": [
10855
+ {
10856
+ "name": "event"
10857
+ }
10858
+ ]
10859
+ },
10860
+ {
10861
+ "kind": "method",
10862
+ "name": "checkSlotsForContent",
10863
+ "parameters": [
10864
+ {
10865
+ "name": "nodes",
10866
+ "description": "The list of nodes to check for content.",
10867
+ "type": {
10868
+ "text": "NodeList|Array"
10869
+ }
10870
+ }
10871
+ ],
10872
+ "description": "Checks if any of the provided nodes or their nested slot nodes contain non-empty text content.",
10873
+ "return": {
10874
+ "type": {
10875
+ "text": "boolean"
10876
+ }
10877
+ },
10878
+ "privacy": "private"
10879
+ },
10880
+ {
10881
+ "kind": "field",
10882
+ "name": "error",
10883
+ "privacy": "public",
10884
+ "type": {
10885
+ "text": "boolean"
10886
+ },
10887
+ "description": "If declared, make font color red.",
10888
+ "default": "false",
10889
+ "attribute": "error",
10890
+ "reflects": true
10891
+ },
10892
+ {
10893
+ "kind": "field",
10894
+ "name": "appearance",
10895
+ "privacy": "public",
10896
+ "type": {
10897
+ "text": "string"
10898
+ },
10899
+ "description": "Defines whether the component will be on lighter or darker backgrounds.",
10900
+ "default": "\"default\"",
10901
+ "attribute": "appearance",
10902
+ "reflects": true
10903
+ },
10904
+ {
10905
+ "kind": "field",
10906
+ "name": "onDark",
10907
+ "privacy": "public",
10908
+ "type": {
10909
+ "text": "boolean"
10910
+ },
10911
+ "description": "DEPRECATED - use `appearance` instead.",
10912
+ "default": "false",
10913
+ "attribute": "onDark",
10914
+ "reflects": true
10915
+ },
10916
+ {
10917
+ "kind": "field",
10918
+ "name": "hasTextContent",
10919
+ "privacy": "private",
10920
+ "type": {
10921
+ "text": "boolean"
10922
+ },
10923
+ "default": "false",
10924
+ "attribute": "hasTextContent"
10925
+ },
10926
+ {
10927
+ "kind": "field",
10928
+ "name": "slotNodes",
10929
+ "privacy": "private",
10930
+ "type": {
10931
+ "text": "boolean"
10932
+ },
10933
+ "attribute": "slotNodes"
10934
+ }
10935
+ ],
10936
+ "attributes": [
10937
+ {
10938
+ "name": "appearance",
10939
+ "type": {
10940
+ "text": "string"
10941
+ },
10942
+ "description": "Defines whether the component will be on lighter or darker backgrounds.",
10943
+ "default": "\"default\"",
10944
+ "fieldName": "appearance"
10945
+ },
10946
+ {
10947
+ "name": "slotNodes",
10948
+ "type": {
10949
+ "text": "boolean"
10950
+ },
10951
+ "fieldName": "slotNodes"
10952
+ },
10953
+ {
10954
+ "name": "hasTextContent",
10955
+ "type": {
10956
+ "text": "boolean"
10957
+ },
10958
+ "default": "false",
10959
+ "fieldName": "hasTextContent"
10960
+ },
10961
+ {
10962
+ "name": "error",
10963
+ "type": {
10964
+ "text": "boolean"
10965
+ },
10966
+ "description": "If declared, make font color red.",
10967
+ "default": "false",
10968
+ "fieldName": "error"
10969
+ },
10970
+ {
10971
+ "name": "onDark",
10972
+ "type": {
10973
+ "text": "boolean"
10974
+ },
10975
+ "description": "DEPRECATED - use `appearance` instead.",
10976
+ "default": "false",
10977
+ "fieldName": "onDark"
10978
+ }
10979
+ ],
10980
+ "superclass": {
10981
+ "name": "LitElement",
10982
+ "package": "lit"
10983
+ },
10984
+ "customElement": true
10985
+ }
10986
+ ],
10987
+ "exports": [
10988
+ {
10989
+ "kind": "js",
10990
+ "name": "AuroHelpText",
10991
+ "declaration": {
10992
+ "name": "AuroHelpText",
10993
+ "module": "components/helptext/src/auro-helptext.js"
10994
+ }
10995
+ }
10996
+ ]
10997
+ },
10998
+ {
10999
+ "kind": "javascript-module",
11000
+ "path": "components/helptext/src/index.js",
11001
+ "declarations": [],
11002
+ "exports": [
11003
+ {
11004
+ "kind": "js",
11005
+ "name": "AuroHelpText",
11006
+ "declaration": {
11007
+ "name": "AuroHelpText",
11008
+ "module": "components/helptext/src/index.js"
11009
+ }
11010
+ }
11011
+ ]
11012
+ },
11013
+ {
11014
+ "kind": "javascript-module",
11015
+ "path": "components/helptext/src/registered.js",
11016
+ "declarations": [],
11017
+ "exports": []
11018
+ },
10692
11019
  {
10693
11020
  "kind": "javascript-module",
10694
11021
  "path": "components/input/src/auro-input.js",