@aurodesignsystem/auro-formkit 2.1.0-beta.5 → 2.1.0-beta.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 (54) hide show
  1. package/CHANGELOG.md +11 -0
  2. package/components/bibtemplate/dist/index.js +2 -2
  3. package/components/bibtemplate/dist/registered.js +2 -2
  4. package/components/checkbox/README.md +1 -1
  5. package/components/checkbox/demo/readme.md +1 -1
  6. package/components/combobox/README.md +1 -1
  7. package/components/combobox/demo/api.md +122 -19
  8. package/components/combobox/demo/api.min.js +110 -16
  9. package/components/combobox/demo/index.min.js +110 -16
  10. package/components/combobox/demo/readme.md +1 -1
  11. package/components/combobox/dist/auro-combobox.d.ts +42 -0
  12. package/components/combobox/dist/index.js +110 -16
  13. package/components/combobox/dist/registered.js +110 -16
  14. package/components/counter/README.md +1 -1
  15. package/components/counter/demo/api.md +113 -10
  16. package/components/counter/demo/api.min.js +126 -37
  17. package/components/counter/demo/index.min.js +126 -37
  18. package/components/counter/demo/readme.md +1 -1
  19. package/components/counter/dist/auro-counter-group.d.ts +55 -17
  20. package/components/counter/dist/index.js +126 -37
  21. package/components/counter/dist/registered.js +126 -37
  22. package/components/datepicker/README.md +1 -1
  23. package/components/datepicker/demo/api.md +61 -0
  24. package/components/datepicker/demo/api.min.js +112 -17
  25. package/components/datepicker/demo/index.min.js +112 -17
  26. package/components/datepicker/demo/readme.md +1 -1
  27. package/components/datepicker/dist/auro-datepicker.d.ts +42 -0
  28. package/components/datepicker/dist/index.js +112 -17
  29. package/components/datepicker/dist/registered.js +112 -17
  30. package/components/dropdown/README.md +1 -1
  31. package/components/dropdown/demo/api.md +166 -19
  32. package/components/dropdown/demo/api.min.js +56 -14
  33. package/components/dropdown/demo/index.min.js +56 -14
  34. package/components/dropdown/demo/readme.md +1 -1
  35. package/components/dropdown/dist/auro-dropdown.d.ts +46 -6
  36. package/components/dropdown/dist/index.js +56 -14
  37. package/components/dropdown/dist/registered.js +56 -14
  38. package/components/form/README.md +1 -1
  39. package/components/form/demo/readme.md +1 -1
  40. package/components/input/README.md +1 -1
  41. package/components/input/demo/readme.md +1 -1
  42. package/components/menu/README.md +1 -1
  43. package/components/menu/demo/readme.md +1 -1
  44. package/components/radio/README.md +1 -1
  45. package/components/radio/demo/readme.md +1 -1
  46. package/components/select/README.md +1 -1
  47. package/components/select/demo/api.md +120 -17
  48. package/components/select/demo/api.min.js +110 -16
  49. package/components/select/demo/index.min.js +110 -16
  50. package/components/select/demo/readme.md +1 -1
  51. package/components/select/dist/auro-select.d.ts +42 -0
  52. package/components/select/dist/index.js +110 -16
  53. package/components/select/dist/registered.js +110 -16
  54. package/package.json +1 -1
@@ -2966,12 +2966,17 @@ class AuroDropdown extends r {
2966
2966
  this.disabled = false;
2967
2967
  this.error = false;
2968
2968
  this.inset = false;
2969
- this.placement = 'bottom-start';
2970
2969
  this.rounded = false;
2971
2970
  this.tabIndex = 0;
2972
2971
  this.noToggle = false;
2973
2972
  this.labeled = true;
2974
2973
 
2974
+ // floaterConfig
2975
+ this.placement = 'bottom-start';
2976
+ this.offset = 0;
2977
+ this.noFlip = false;
2978
+ this.autoPlacement = false;
2979
+
2975
2980
  /**
2976
2981
  * @private
2977
2982
  */
@@ -2992,16 +2997,6 @@ class AuroDropdown extends r {
2992
2997
  */
2993
2998
  this.floater = new AuroFloatingUI();
2994
2999
 
2995
- /**
2996
- * @private
2997
- */
2998
- this.floaterConfig = {
2999
- placement: 'bottom-start',
3000
- flip: true,
3001
- autoPlacement: false,
3002
- offset: 0,
3003
- };
3004
-
3005
3000
  /**
3006
3001
  * Generate unique names for dependency components.
3007
3002
  */
@@ -3023,6 +3018,18 @@ class AuroDropdown extends r {
3023
3018
  this.helpTextTag = versioning.generateTag('auro-formkit-dropdown-helptext', helpTextVersion, AuroHelpText);
3024
3019
  }
3025
3020
 
3021
+ /**
3022
+ * @ignore
3023
+ */
3024
+ get floaterConfig() {
3025
+ return {
3026
+ placement: this.placement,
3027
+ flip: !this.noFlip,
3028
+ autoPlacement: this.autoPlacement,
3029
+ offset: this.offset,
3030
+ };
3031
+ }
3032
+
3026
3033
  /**
3027
3034
  * Public method to hide the dropdown.
3028
3035
  * @returns {void}
@@ -3043,6 +3050,15 @@ class AuroDropdown extends r {
3043
3050
  static get properties() {
3044
3051
  return {
3045
3052
 
3053
+ /**
3054
+ * If declared, bib's position will be automatically calculated where to appear.
3055
+ * @default false
3056
+ */
3057
+ autoPlacement: {
3058
+ type: Boolean,
3059
+ reflect: true
3060
+ },
3061
+
3046
3062
  /**
3047
3063
  * If declared, applies a border around the trigger slot.
3048
3064
  */
@@ -3127,7 +3143,7 @@ class AuroDropdown extends r {
3127
3143
  */
3128
3144
  isBibFullscreen: {
3129
3145
  type: Boolean,
3130
- reflect: true,
3146
+ reflect: true
3131
3147
  },
3132
3148
 
3133
3149
  /**
@@ -3170,6 +3186,16 @@ class AuroDropdown extends r {
3170
3186
  reflect: true
3171
3187
  },
3172
3188
 
3189
+ /**
3190
+ * If declared, the bib will NOT flip to an alternate position
3191
+ * when there isn't enough space in the specified `placement`.
3192
+ * @default false
3193
+ */
3194
+ noFlip: {
3195
+ type: Boolean,
3196
+ reflect: true
3197
+ },
3198
+
3173
3199
  /**
3174
3200
  * If declared, the dropdown will not hide when moving focus outside the element.
3175
3201
  */
@@ -3186,16 +3212,32 @@ class AuroDropdown extends r {
3186
3212
  reflect: true
3187
3213
  },
3188
3214
 
3215
+ /**
3216
+ * Gap between the trigger element and bib.
3217
+ * @default 0
3218
+ */
3219
+ offset: {
3220
+ type: Number,
3221
+ reflect: true
3222
+ },
3223
+
3189
3224
  onSlotChange: {
3190
3225
  type: Function,
3191
3226
  reflect: false
3192
3227
  },
3193
3228
 
3194
3229
  /**
3195
- * @private
3230
+ * Position where the bib should appear relative to the trigger.
3231
+ * Accepted values:
3232
+ * "top" | "right" | "bottom" | "left" |
3233
+ * "bottom-start" | "top-start" | "top-end" |
3234
+ * "right-start" | "right-end" | "bottom-end" |
3235
+ * "left-start" | "left-end"
3236
+ * @default bottom-start
3196
3237
  */
3197
3238
  placement: {
3198
- type: String
3239
+ type: String,
3240
+ reflect: true
3199
3241
  },
3200
3242
 
3201
3243
  /**
@@ -107,7 +107,7 @@ The use of any Auro custom element has a dependency on the [Auro Design Tokens](
107
107
  In cases where the project is not able to process JS assets, there are pre-processed assets available for use. Legacy browsers such as IE11 are no longer supported.
108
108
 
109
109
  ```html
110
- <script type="module "src="https://cdn.jsdelivr.net/npm/@aurodesignsystem/auro-formkit@2.1.0-beta.4/auro-dropdown/+esm"></script>
110
+ <script type="module "src="https://cdn.jsdelivr.net/npm/@aurodesignsystem/auro-formkit@2.1.0-beta.5/auro-dropdown/+esm"></script>
111
111
  ```
112
112
  <!-- AURO-GENERATED-CONTENT:END -->
113
113
 
@@ -12,6 +12,14 @@
12
12
  */
13
13
  export class AuroDropdown extends LitElement {
14
14
  static get properties(): {
15
+ /**
16
+ * If declared, bib's position will be automatically calculated where to appear.
17
+ * @default false
18
+ */
19
+ autoPlacement: {
20
+ type: BooleanConstructor;
21
+ reflect: boolean;
22
+ };
15
23
  /**
16
24
  * If declared, applies a border around the trigger slot.
17
25
  */
@@ -123,6 +131,15 @@ export class AuroDropdown extends LitElement {
123
131
  type: BooleanConstructor;
124
132
  reflect: boolean;
125
133
  };
134
+ /**
135
+ * If declared, the bib will NOT flip to an alternate position
136
+ * when there isn't enough space in the specified `placement`.
137
+ * @default false
138
+ */
139
+ noFlip: {
140
+ type: BooleanConstructor;
141
+ reflect: boolean;
142
+ };
126
143
  /**
127
144
  * If declared, the dropdown will not hide when moving focus outside the element.
128
145
  */
@@ -137,15 +154,30 @@ export class AuroDropdown extends LitElement {
137
154
  type: BooleanConstructor;
138
155
  reflect: boolean;
139
156
  };
157
+ /**
158
+ * Gap between the trigger element and bib.
159
+ * @default 0
160
+ */
161
+ offset: {
162
+ type: NumberConstructor;
163
+ reflect: boolean;
164
+ };
140
165
  onSlotChange: {
141
166
  type: FunctionConstructor;
142
167
  reflect: boolean;
143
168
  };
144
169
  /**
145
- * @private
170
+ * Position where the bib should appear relative to the trigger.
171
+ * Accepted values:
172
+ * "top" | "right" | "bottom" | "left" |
173
+ * "bottom-start" | "top-start" | "top-end" |
174
+ * "right-start" | "right-end" | "bottom-end" |
175
+ * "left-start" | "left-end"
176
+ * @default bottom-start
146
177
  */
147
178
  placement: {
148
179
  type: StringConstructor;
180
+ reflect: boolean;
149
181
  };
150
182
  /**
151
183
  * If declared, will apply border-radius to trigger and default slots.
@@ -193,10 +225,13 @@ export class AuroDropdown extends LitElement {
193
225
  disabled: boolean;
194
226
  error: boolean;
195
227
  inset: boolean;
196
- placement: string;
197
228
  rounded: boolean;
198
229
  noToggle: boolean;
199
230
  labeled: boolean;
231
+ placement: string;
232
+ offset: number;
233
+ noFlip: boolean;
234
+ autoPlacement: boolean;
200
235
  /**
201
236
  * @private
202
237
  */
@@ -213,10 +248,6 @@ export class AuroDropdown extends LitElement {
213
248
  * @private
214
249
  */
215
250
  private floater;
216
- /**
217
- * @private
218
- */
219
- private floaterConfig;
220
251
  /**
221
252
  * @private
222
253
  */
@@ -229,6 +260,15 @@ export class AuroDropdown extends LitElement {
229
260
  * @private
230
261
  */
231
262
  private helpTextTag;
263
+ /**
264
+ * @ignore
265
+ */
266
+ get floaterConfig(): {
267
+ placement: string;
268
+ flip: boolean;
269
+ autoPlacement: boolean;
270
+ offset: number;
271
+ };
232
272
  /**
233
273
  * Public method to hide the dropdown.
234
274
  * @returns {void}
@@ -2919,12 +2919,17 @@ class AuroDropdown extends LitElement {
2919
2919
  this.disabled = false;
2920
2920
  this.error = false;
2921
2921
  this.inset = false;
2922
- this.placement = 'bottom-start';
2923
2922
  this.rounded = false;
2924
2923
  this.tabIndex = 0;
2925
2924
  this.noToggle = false;
2926
2925
  this.labeled = true;
2927
2926
 
2927
+ // floaterConfig
2928
+ this.placement = 'bottom-start';
2929
+ this.offset = 0;
2930
+ this.noFlip = false;
2931
+ this.autoPlacement = false;
2932
+
2928
2933
  /**
2929
2934
  * @private
2930
2935
  */
@@ -2945,16 +2950,6 @@ class AuroDropdown extends LitElement {
2945
2950
  */
2946
2951
  this.floater = new AuroFloatingUI();
2947
2952
 
2948
- /**
2949
- * @private
2950
- */
2951
- this.floaterConfig = {
2952
- placement: 'bottom-start',
2953
- flip: true,
2954
- autoPlacement: false,
2955
- offset: 0,
2956
- };
2957
-
2958
2953
  /**
2959
2954
  * Generate unique names for dependency components.
2960
2955
  */
@@ -2976,6 +2971,18 @@ class AuroDropdown extends LitElement {
2976
2971
  this.helpTextTag = versioning.generateTag('auro-formkit-dropdown-helptext', helpTextVersion, AuroHelpText);
2977
2972
  }
2978
2973
 
2974
+ /**
2975
+ * @ignore
2976
+ */
2977
+ get floaterConfig() {
2978
+ return {
2979
+ placement: this.placement,
2980
+ flip: !this.noFlip,
2981
+ autoPlacement: this.autoPlacement,
2982
+ offset: this.offset,
2983
+ };
2984
+ }
2985
+
2979
2986
  /**
2980
2987
  * Public method to hide the dropdown.
2981
2988
  * @returns {void}
@@ -2996,6 +3003,15 @@ class AuroDropdown extends LitElement {
2996
3003
  static get properties() {
2997
3004
  return {
2998
3005
 
3006
+ /**
3007
+ * If declared, bib's position will be automatically calculated where to appear.
3008
+ * @default false
3009
+ */
3010
+ autoPlacement: {
3011
+ type: Boolean,
3012
+ reflect: true
3013
+ },
3014
+
2999
3015
  /**
3000
3016
  * If declared, applies a border around the trigger slot.
3001
3017
  */
@@ -3080,7 +3096,7 @@ class AuroDropdown extends LitElement {
3080
3096
  */
3081
3097
  isBibFullscreen: {
3082
3098
  type: Boolean,
3083
- reflect: true,
3099
+ reflect: true
3084
3100
  },
3085
3101
 
3086
3102
  /**
@@ -3123,6 +3139,16 @@ class AuroDropdown extends LitElement {
3123
3139
  reflect: true
3124
3140
  },
3125
3141
 
3142
+ /**
3143
+ * If declared, the bib will NOT flip to an alternate position
3144
+ * when there isn't enough space in the specified `placement`.
3145
+ * @default false
3146
+ */
3147
+ noFlip: {
3148
+ type: Boolean,
3149
+ reflect: true
3150
+ },
3151
+
3126
3152
  /**
3127
3153
  * If declared, the dropdown will not hide when moving focus outside the element.
3128
3154
  */
@@ -3139,16 +3165,32 @@ class AuroDropdown extends LitElement {
3139
3165
  reflect: true
3140
3166
  },
3141
3167
 
3168
+ /**
3169
+ * Gap between the trigger element and bib.
3170
+ * @default 0
3171
+ */
3172
+ offset: {
3173
+ type: Number,
3174
+ reflect: true
3175
+ },
3176
+
3142
3177
  onSlotChange: {
3143
3178
  type: Function,
3144
3179
  reflect: false
3145
3180
  },
3146
3181
 
3147
3182
  /**
3148
- * @private
3183
+ * Position where the bib should appear relative to the trigger.
3184
+ * Accepted values:
3185
+ * "top" | "right" | "bottom" | "left" |
3186
+ * "bottom-start" | "top-start" | "top-end" |
3187
+ * "right-start" | "right-end" | "bottom-end" |
3188
+ * "left-start" | "left-end"
3189
+ * @default bottom-start
3149
3190
  */
3150
3191
  placement: {
3151
- type: String
3192
+ type: String,
3193
+ reflect: true
3152
3194
  },
3153
3195
 
3154
3196
  /**
@@ -2919,12 +2919,17 @@ class AuroDropdown extends LitElement {
2919
2919
  this.disabled = false;
2920
2920
  this.error = false;
2921
2921
  this.inset = false;
2922
- this.placement = 'bottom-start';
2923
2922
  this.rounded = false;
2924
2923
  this.tabIndex = 0;
2925
2924
  this.noToggle = false;
2926
2925
  this.labeled = true;
2927
2926
 
2927
+ // floaterConfig
2928
+ this.placement = 'bottom-start';
2929
+ this.offset = 0;
2930
+ this.noFlip = false;
2931
+ this.autoPlacement = false;
2932
+
2928
2933
  /**
2929
2934
  * @private
2930
2935
  */
@@ -2945,16 +2950,6 @@ class AuroDropdown extends LitElement {
2945
2950
  */
2946
2951
  this.floater = new AuroFloatingUI();
2947
2952
 
2948
- /**
2949
- * @private
2950
- */
2951
- this.floaterConfig = {
2952
- placement: 'bottom-start',
2953
- flip: true,
2954
- autoPlacement: false,
2955
- offset: 0,
2956
- };
2957
-
2958
2953
  /**
2959
2954
  * Generate unique names for dependency components.
2960
2955
  */
@@ -2976,6 +2971,18 @@ class AuroDropdown extends LitElement {
2976
2971
  this.helpTextTag = versioning.generateTag('auro-formkit-dropdown-helptext', helpTextVersion, AuroHelpText);
2977
2972
  }
2978
2973
 
2974
+ /**
2975
+ * @ignore
2976
+ */
2977
+ get floaterConfig() {
2978
+ return {
2979
+ placement: this.placement,
2980
+ flip: !this.noFlip,
2981
+ autoPlacement: this.autoPlacement,
2982
+ offset: this.offset,
2983
+ };
2984
+ }
2985
+
2979
2986
  /**
2980
2987
  * Public method to hide the dropdown.
2981
2988
  * @returns {void}
@@ -2996,6 +3003,15 @@ class AuroDropdown extends LitElement {
2996
3003
  static get properties() {
2997
3004
  return {
2998
3005
 
3006
+ /**
3007
+ * If declared, bib's position will be automatically calculated where to appear.
3008
+ * @default false
3009
+ */
3010
+ autoPlacement: {
3011
+ type: Boolean,
3012
+ reflect: true
3013
+ },
3014
+
2999
3015
  /**
3000
3016
  * If declared, applies a border around the trigger slot.
3001
3017
  */
@@ -3080,7 +3096,7 @@ class AuroDropdown extends LitElement {
3080
3096
  */
3081
3097
  isBibFullscreen: {
3082
3098
  type: Boolean,
3083
- reflect: true,
3099
+ reflect: true
3084
3100
  },
3085
3101
 
3086
3102
  /**
@@ -3123,6 +3139,16 @@ class AuroDropdown extends LitElement {
3123
3139
  reflect: true
3124
3140
  },
3125
3141
 
3142
+ /**
3143
+ * If declared, the bib will NOT flip to an alternate position
3144
+ * when there isn't enough space in the specified `placement`.
3145
+ * @default false
3146
+ */
3147
+ noFlip: {
3148
+ type: Boolean,
3149
+ reflect: true
3150
+ },
3151
+
3126
3152
  /**
3127
3153
  * If declared, the dropdown will not hide when moving focus outside the element.
3128
3154
  */
@@ -3139,16 +3165,32 @@ class AuroDropdown extends LitElement {
3139
3165
  reflect: true
3140
3166
  },
3141
3167
 
3168
+ /**
3169
+ * Gap between the trigger element and bib.
3170
+ * @default 0
3171
+ */
3172
+ offset: {
3173
+ type: Number,
3174
+ reflect: true
3175
+ },
3176
+
3142
3177
  onSlotChange: {
3143
3178
  type: Function,
3144
3179
  reflect: false
3145
3180
  },
3146
3181
 
3147
3182
  /**
3148
- * @private
3183
+ * Position where the bib should appear relative to the trigger.
3184
+ * Accepted values:
3185
+ * "top" | "right" | "bottom" | "left" |
3186
+ * "bottom-start" | "top-start" | "top-end" |
3187
+ * "right-start" | "right-end" | "bottom-end" |
3188
+ * "left-start" | "left-end"
3189
+ * @default bottom-start
3149
3190
  */
3150
3191
  placement: {
3151
- type: String
3192
+ type: String,
3193
+ reflect: true
3152
3194
  },
3153
3195
 
3154
3196
  /**
@@ -109,7 +109,7 @@ The use of any Auro custom element has a dependency on the [Auro Design Tokens](
109
109
  In cases where the project is not able to process JS assets, there are pre-processed assets available for use. Legacy browsers such as IE11 are no longer supported.
110
110
 
111
111
  ```html
112
- <script type="module "src="https://cdn.jsdelivr.net/npm/@aurodesignsystem/auro-formkit@2.1.0-beta.4/auro-form/+esm"></script>
112
+ <script type="module "src="https://cdn.jsdelivr.net/npm/@aurodesignsystem/auro-formkit@2.1.0-beta.5/auro-form/+esm"></script>
113
113
  ```
114
114
  <!-- AURO-GENERATED-CONTENT:END -->
115
115
 
@@ -109,7 +109,7 @@ The use of any Auro custom element has a dependency on the [Auro Design Tokens](
109
109
  In cases where the project is not able to process JS assets, there are pre-processed assets available for use. Legacy browsers such as IE11 are no longer supported.
110
110
 
111
111
  ```html
112
- <script type="module "src="https://cdn.jsdelivr.net/npm/@aurodesignsystem/auro-formkit@2.1.0-beta.4/auro-form/+esm"></script>
112
+ <script type="module "src="https://cdn.jsdelivr.net/npm/@aurodesignsystem/auro-formkit@2.1.0-beta.5/auro-form/+esm"></script>
113
113
  ```
114
114
  <!-- AURO-GENERATED-CONTENT:END -->
115
115
 
@@ -99,7 +99,7 @@ The use of any Auro custom element has a dependency on the [Auro Design Tokens](
99
99
  In cases where the project is not able to process JS assets, there are pre-processed assets available for use. Legacy browsers such as IE11 are no longer supported.
100
100
 
101
101
  ```html
102
- <script type="module "src="https://cdn.jsdelivr.net/npm/@aurodesignsystem/auro-formkit@2.1.0-beta.4/auro-input/+esm"></script>
102
+ <script type="module "src="https://cdn.jsdelivr.net/npm/@aurodesignsystem/auro-formkit@2.1.0-beta.5/auro-input/+esm"></script>
103
103
  ```
104
104
  <!-- AURO-GENERATED-CONTENT:END -->
105
105
 
@@ -99,7 +99,7 @@ The use of any Auro custom element has a dependency on the [Auro Design Tokens](
99
99
  In cases where the project is not able to process JS assets, there are pre-processed assets available for use. Legacy browsers such as IE11 are no longer supported.
100
100
 
101
101
  ```html
102
- <script type="module "src="https://cdn.jsdelivr.net/npm/@aurodesignsystem/auro-formkit@2.1.0-beta.4/auro-input/+esm"></script>
102
+ <script type="module "src="https://cdn.jsdelivr.net/npm/@aurodesignsystem/auro-formkit@2.1.0-beta.5/auro-input/+esm"></script>
103
103
  ```
104
104
  <!-- AURO-GENERATED-CONTENT:END -->
105
105
 
@@ -110,7 +110,7 @@ The use of any Auro custom element has a dependency on the [Auro Design Tokens](
110
110
  In cases where the project is not able to process JS assets, there are pre-processed assets available for use. Legacy browsers such as IE11 are no longer supported.
111
111
 
112
112
  ```html
113
- <script type="module "src="https://cdn.jsdelivr.net/npm/@aurodesignsystem/auro-formkit@2.1.0-beta.4/auro-menu/+esm"></script>
113
+ <script type="module "src="https://cdn.jsdelivr.net/npm/@aurodesignsystem/auro-formkit@2.1.0-beta.5/auro-menu/+esm"></script>
114
114
  ```
115
115
  <!-- AURO-GENERATED-CONTENT:END -->
116
116
 
@@ -110,7 +110,7 @@ The use of any Auro custom element has a dependency on the [Auro Design Tokens](
110
110
  In cases where the project is not able to process JS assets, there are pre-processed assets available for use. Legacy browsers such as IE11 are no longer supported.
111
111
 
112
112
  ```html
113
- <script type="module "src="https://cdn.jsdelivr.net/npm/@aurodesignsystem/auro-formkit@2.1.0-beta.4/auro-menu/+esm"></script>
113
+ <script type="module "src="https://cdn.jsdelivr.net/npm/@aurodesignsystem/auro-formkit@2.1.0-beta.5/auro-menu/+esm"></script>
114
114
  ```
115
115
  <!-- AURO-GENERATED-CONTENT:END -->
116
116
 
@@ -100,7 +100,7 @@ The use of any Auro custom element has a dependency on the [Auro Design Tokens](
100
100
  In cases where the project is not able to process JS assets, there are pre-processed assets available for use. Legacy browsers such as IE11 are no longer supported.
101
101
 
102
102
  ```html
103
- <script type="module "src="https://cdn.jsdelivr.net/npm/@aurodesignsystem/auro-formkit@2.1.0-beta.4/auro-radio/+esm"></script>
103
+ <script type="module "src="https://cdn.jsdelivr.net/npm/@aurodesignsystem/auro-formkit@2.1.0-beta.5/auro-radio/+esm"></script>
104
104
  ```
105
105
  <!-- AURO-GENERATED-CONTENT:END -->
106
106
 
@@ -100,7 +100,7 @@ The use of any Auro custom element has a dependency on the [Auro Design Tokens](
100
100
  In cases where the project is not able to process JS assets, there are pre-processed assets available for use. Legacy browsers such as IE11 are no longer supported.
101
101
 
102
102
  ```html
103
- <script type="module "src="https://cdn.jsdelivr.net/npm/@aurodesignsystem/auro-formkit@2.1.0-beta.4/auro-radio/+esm"></script>
103
+ <script type="module "src="https://cdn.jsdelivr.net/npm/@aurodesignsystem/auro-formkit@2.1.0-beta.5/auro-radio/+esm"></script>
104
104
  ```
105
105
  <!-- AURO-GENERATED-CONTENT:END -->
106
106
 
@@ -111,7 +111,7 @@ The use of any Auro custom element has a dependency on the [Auro Design Tokens](
111
111
  In cases where the project is not able to process JS assets, there are pre-processed assets available for use. Legacy browsers such as IE11 are no longer supported.
112
112
 
113
113
  ```html
114
- <script type="module "src="https://cdn.jsdelivr.net/npm/@aurodesignsystem/auro-formkit@2.1.0-beta.4/auro-select/+esm"></script>
114
+ <script type="module "src="https://cdn.jsdelivr.net/npm/@aurodesignsystem/auro-formkit@2.1.0-beta.5/auro-select/+esm"></script>
115
115
  ```
116
116
  <!-- AURO-GENERATED-CONTENT:END -->
117
117