@aurodesignsystem/auro-formkit 3.0.0 → 3.0.1

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 (55) hide show
  1. package/CHANGELOG.md +7 -0
  2. package/components/bibtemplate/dist/auro-bibtemplate.d.ts +1 -0
  3. package/components/bibtemplate/dist/index.js +2 -0
  4. package/components/bibtemplate/dist/registered.js +2 -0
  5. package/components/checkbox/README.md +1 -1
  6. package/components/checkbox/demo/readme.md +1 -1
  7. package/components/combobox/README.md +1 -1
  8. package/components/combobox/demo/api.md +4 -4
  9. package/components/combobox/demo/api.min.js +28 -13
  10. package/components/combobox/demo/index.min.js +28 -13
  11. package/components/combobox/demo/readme.md +1 -1
  12. package/components/combobox/dist/auro-combobox.d.ts +11 -5
  13. package/components/combobox/dist/index.js +28 -13
  14. package/components/combobox/dist/registered.js +28 -13
  15. package/components/counter/README.md +1 -1
  16. package/components/counter/demo/api.md +1 -1
  17. package/components/counter/demo/api.min.js +7 -1
  18. package/components/counter/demo/index.min.js +7 -1
  19. package/components/counter/demo/readme.md +1 -1
  20. package/components/counter/dist/auro-counter-group.d.ts +4 -1
  21. package/components/counter/dist/index.js +7 -1
  22. package/components/counter/dist/registered.js +7 -1
  23. package/components/datepicker/README.md +1 -1
  24. package/components/datepicker/demo/api.md +2 -2
  25. package/components/datepicker/demo/api.min.js +27 -10
  26. package/components/datepicker/demo/index.min.js +27 -10
  27. package/components/datepicker/demo/readme.md +1 -1
  28. package/components/datepicker/dist/auro-calendar-cell.d.ts +1 -0
  29. package/components/datepicker/dist/auro-calendar-month.d.ts +1 -0
  30. package/components/datepicker/dist/auro-calendar.d.ts +3 -2
  31. package/components/datepicker/dist/auro-datepicker.d.ts +3 -0
  32. package/components/datepicker/dist/index.js +27 -10
  33. package/components/datepicker/dist/registered.js +27 -10
  34. package/components/dropdown/README.md +1 -1
  35. package/components/dropdown/demo/readme.md +1 -1
  36. package/components/form/README.md +1 -1
  37. package/components/form/demo/readme.md +1 -1
  38. package/components/input/README.md +1 -1
  39. package/components/input/demo/api.min.js +10 -5
  40. package/components/input/demo/index.min.js +10 -5
  41. package/components/input/demo/readme.md +1 -1
  42. package/components/input/dist/base-input.d.ts +5 -0
  43. package/components/input/dist/index.js +10 -5
  44. package/components/input/dist/registered.js +10 -5
  45. package/components/menu/README.md +1 -1
  46. package/components/menu/demo/readme.md +1 -1
  47. package/components/radio/README.md +1 -1
  48. package/components/radio/demo/readme.md +1 -1
  49. package/components/select/README.md +1 -1
  50. package/components/select/demo/api.min.js +2 -0
  51. package/components/select/demo/index.min.js +2 -0
  52. package/components/select/demo/readme.md +1 -1
  53. package/components/select/dist/index.js +2 -0
  54. package/components/select/dist/registered.js +2 -0
  55. package/package.json +1 -1
@@ -5929,6 +5929,8 @@ class AuroBibtemplate extends r {
5929
5929
  constructor() {
5930
5930
  super();
5931
5931
 
5932
+ this.large = false;
5933
+
5932
5934
  AuroLibraryRuntimeUtils$1.prototype.handleComponentTagRename(this, 'auro-bibtemplate');
5933
5935
 
5934
5936
  const versioning = new AuroDependencyVersioning();
@@ -6112,14 +6114,18 @@ class AuroCounterGroup extends r {
6112
6114
  constructor() {
6113
6115
  super();
6114
6116
 
6115
- this.isDropdown = false;
6116
6117
  this.max = undefined;
6117
6118
  this.min = undefined;
6118
6119
  this.onDark = false;
6119
6120
  this.total = undefined;
6120
6121
  this.validity = undefined;
6121
6122
  this.value = undefined;
6123
+
6124
+ this.isDropdown = false;
6122
6125
  this.fullscreenBreakpoint = 'sm';
6126
+ this.largeFullscreenHeadline = false;
6127
+ this.autoPlacement = false;
6128
+ this.noFlip = false;
6123
6129
 
6124
6130
  /**
6125
6131
  * @private
@@ -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.2.1/auro-counter/+esm"></script>
113
+ <script type="module" src="https://cdn.jsdelivr.net/npm/@aurodesignsystem/auro-formkit@3.0.0/auro-counter/+esm"></script>
114
114
  ```
115
115
  <!-- AURO-GENERATED-CONTENT:END -->
116
116
 
@@ -125,14 +125,17 @@ export class AuroCounterGroup extends LitElement {
125
125
  * AuroCounterGroup.register("custom-counter-group") // registers <custom-counter-group/>
126
126
  */
127
127
  static register(name?: string): void;
128
- isDropdown: boolean;
129
128
  max: any;
130
129
  min: any;
131
130
  onDark: boolean;
132
131
  total: number;
133
132
  validity: any;
134
133
  value: {};
134
+ isDropdown: boolean;
135
135
  fullscreenBreakpoint: string;
136
+ largeFullscreenHeadline: boolean;
137
+ autoPlacement: boolean;
138
+ noFlip: boolean;
136
139
  /**
137
140
  * @private
138
141
  */
@@ -5882,6 +5882,8 @@ class AuroBibtemplate extends LitElement {
5882
5882
  constructor() {
5883
5883
  super();
5884
5884
 
5885
+ this.large = false;
5886
+
5885
5887
  AuroLibraryRuntimeUtils$1.prototype.handleComponentTagRename(this, 'auro-bibtemplate');
5886
5888
 
5887
5889
  const versioning = new AuroDependencyVersioning();
@@ -6065,14 +6067,18 @@ class AuroCounterGroup extends LitElement {
6065
6067
  constructor() {
6066
6068
  super();
6067
6069
 
6068
- this.isDropdown = false;
6069
6070
  this.max = undefined;
6070
6071
  this.min = undefined;
6071
6072
  this.onDark = false;
6072
6073
  this.total = undefined;
6073
6074
  this.validity = undefined;
6074
6075
  this.value = undefined;
6076
+
6077
+ this.isDropdown = false;
6075
6078
  this.fullscreenBreakpoint = 'sm';
6079
+ this.largeFullscreenHeadline = false;
6080
+ this.autoPlacement = false;
6081
+ this.noFlip = false;
6076
6082
 
6077
6083
  /**
6078
6084
  * @private
@@ -5882,6 +5882,8 @@ class AuroBibtemplate extends LitElement {
5882
5882
  constructor() {
5883
5883
  super();
5884
5884
 
5885
+ this.large = false;
5886
+
5885
5887
  AuroLibraryRuntimeUtils$1.prototype.handleComponentTagRename(this, 'auro-bibtemplate');
5886
5888
 
5887
5889
  const versioning = new AuroDependencyVersioning();
@@ -6065,14 +6067,18 @@ class AuroCounterGroup extends LitElement {
6065
6067
  constructor() {
6066
6068
  super();
6067
6069
 
6068
- this.isDropdown = false;
6069
6070
  this.max = undefined;
6070
6071
  this.min = undefined;
6071
6072
  this.onDark = false;
6072
6073
  this.total = undefined;
6073
6074
  this.validity = undefined;
6074
6075
  this.value = undefined;
6076
+
6077
+ this.isDropdown = false;
6075
6078
  this.fullscreenBreakpoint = 'sm';
6079
+ this.largeFullscreenHeadline = false;
6080
+ this.autoPlacement = false;
6081
+ this.noFlip = false;
6076
6082
 
6077
6083
  /**
6078
6084
  * @private
@@ -104,7 +104,7 @@ The use of any Auro custom element has a dependency on the [Auro Design Tokens](
104
104
  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.
105
105
 
106
106
  ```html
107
- <script type="module" src="https://cdn.jsdelivr.net/npm/@aurodesignsystem/auro-formkit@2.2.1/auro-datepicker/+esm"></script>
107
+ <script type="module" src="https://cdn.jsdelivr.net/npm/@aurodesignsystem/auro-formkit@3.0.0/auro-datepicker/+esm"></script>
108
108
  ```
109
109
  <!-- AURO-GENERATED-CONTENT:END -->
110
110
 
@@ -15,7 +15,7 @@
15
15
  | [disabled](#disabled) | `disabled` | | `boolean` | false | If set, disables the datepicker. |
16
16
  | [error](#error) | `error` | | `string` | | When defined, sets persistent validity to `customError` and sets the validation message to the attribute value. |
17
17
  | [format](#format) | `format` | | `string` | "mm/dd/yyyy" | Specifies the date format. The default is `mm/dd/yyyy`. |
18
- | [largeFullscreenHeadline](#largeFullscreenHeadline) | `largeFullscreenHeadline` | | `boolean` | | If declared, make bib.fullscreen.headline in HeadingDisplay.<br />Otherwise, Heading 600. |
18
+ | [largeFullscreenHeadline](#largeFullscreenHeadline) | `largeFullscreenHeadline` | | `boolean` | false | If declared, make bib.fullscreen.headline in HeadingDisplay.<br />Otherwise, Heading 600. |
19
19
  | [maxDate](#maxDate) | `maxDate` | | `string` | | Maximum date. All dates after will be disabled. |
20
20
  | [minDate](#minDate) | `minDate` | | `string` | | Minimum date. All dates before will be disabled. |
21
21
  | [monthNames](#monthNames) | `monthNames` | | `array` | ["January","February","March","April","May","June","July","August","September","October","November","December"] | Names of all 12 months to render in the calendar, used for localization of date string in mobile layout. |
@@ -31,7 +31,7 @@
31
31
  | [setCustomValidityRangeOverflow](#setCustomValidityRangeOverflow) | `setCustomValidityRangeOverflow` | | `string` | | Custom help text message to display when validity = `rangeOverflow`. |
32
32
  | [setCustomValidityRangeUnderflow](#setCustomValidityRangeUnderflow) | `setCustomValidityRangeUnderflow` | | `string` | | Custom help text message to display when validity = `rangeUnderflow`. |
33
33
  | [setCustomValidityValueMissing](#setCustomValidityValueMissing) | `setCustomValidityValueMissing` | | `string` | | Custom help text message to display when validity = `valueMissing`. |
34
- | [stacked](#stacked) | `stacked` | | `boolean` | | Set true to make datepicker stacked style. |
34
+ | [stacked](#stacked) | `stacked` | | `boolean` | false | Set true to make datepicker stacked style. |
35
35
  | [validity](#validity) | `validity` | | `string` | "undefined" | Specifies the `validityState` this element is in. |
36
36
  | [value](#value) | `value` | | `string` | "undefined" | Value selected for the datepicker. |
37
37
  | [valueEnd](#valueEnd) | `valueEnd` | | `string` | "undefined" | Value selected for the second datepicker when using date range. |
@@ -9723,7 +9723,10 @@ class AuroCalendarCell extends r$2 {
9723
9723
  month: { type: String },
9724
9724
  min: { type: Number },
9725
9725
  max: { type: Number },
9726
- disabled: { type: Boolean },
9726
+ disabled: {
9727
+ type: Boolean,
9728
+ reflect: true
9729
+ },
9727
9730
  disabledDays: { type: Array },
9728
9731
  hoveredDate: { type: String },
9729
9732
  isCurrentDate: { type: Boolean },
@@ -10064,7 +10067,8 @@ class AuroCalendarMonth extends RangeDatepickerCalendar {
10064
10067
  * @private
10065
10068
  */
10066
10069
  monthFirst: {
10067
- type: Boolean
10070
+ type: Boolean,
10071
+ reflect: true
10068
10072
  }
10069
10073
  };
10070
10074
  }
@@ -11262,6 +11266,8 @@ class AuroBibtemplate extends r$2 {
11262
11266
  constructor() {
11263
11267
  super();
11264
11268
 
11269
+ this.large = false;
11270
+
11265
11271
  AuroLibraryRuntimeUtils$1$2.prototype.handleComponentTagRename(this, 'auro-bibtemplate');
11266
11272
 
11267
11273
  const versioning = new AuroDependencyVersioning$2();
@@ -11861,6 +11867,10 @@ class AuroCalendar extends RangeDatepicker {
11861
11867
  this.showPrevMonthBtn = true;
11862
11868
  this.showNextMonthBtn = true;
11863
11869
 
11870
+ this.visible = false;
11871
+ this.largeFullscreenHeadline = false;
11872
+ this.isFullscreen = false;
11873
+
11864
11874
  /**
11865
11875
  * @private
11866
11876
  */
@@ -11876,8 +11886,6 @@ class AuroCalendar extends RangeDatepicker {
11876
11886
  */
11877
11887
  this.numCalendars = undefined;
11878
11888
 
11879
- this.visible = false;
11880
-
11881
11889
  /**
11882
11890
  * @private
11883
11891
  */
@@ -20296,7 +20304,8 @@ class BaseInput extends r$2 {
20296
20304
  * If set, disables the input.
20297
20305
  */
20298
20306
  disabled: {
20299
- type: Boolean
20307
+ type: Boolean,
20308
+ reflect: true
20300
20309
  },
20301
20310
 
20302
20311
  /**
@@ -20326,7 +20335,8 @@ class BaseInput extends r$2 {
20326
20335
  * If set, will render an icon inside the input to the left of the value. Support is limited to auro-input instances with credit card format.
20327
20336
  */
20328
20337
  icon: {
20329
- type: Boolean
20338
+ type: Boolean,
20339
+ reflect: true
20330
20340
  },
20331
20341
 
20332
20342
  /**
@@ -20382,7 +20392,8 @@ class BaseInput extends r$2 {
20382
20392
  * If set, disables auto-validation on blur.
20383
20393
  */
20384
20394
  noValidate: {
20385
- type: Boolean
20395
+ type: Boolean,
20396
+ reflect: true
20386
20397
  },
20387
20398
 
20388
20399
  /**
@@ -20412,14 +20423,16 @@ class BaseInput extends r$2 {
20412
20423
  * Makes the input read-only, but can be set programmatically.
20413
20424
  */
20414
20425
  readonly: {
20415
- type: Boolean
20426
+ type: Boolean,
20427
+ reflect: true
20416
20428
  },
20417
20429
 
20418
20430
  /**
20419
20431
  * Populates the `required` attribute on the input. Used for client-side validation.
20420
20432
  */
20421
20433
  required: {
20422
- type: Boolean
20434
+ type: Boolean,
20435
+ reflect: true
20423
20436
  },
20424
20437
 
20425
20438
  /**
@@ -22399,6 +22412,7 @@ class AuroDatePicker extends r$2 {
22399
22412
  this.required = false;
22400
22413
  this.onDark = false;
22401
22414
  this.range = false;
22415
+ this.stacked = false;
22402
22416
  this.noValidate = false;
22403
22417
  this.validity = undefined;
22404
22418
  this.value = undefined;
@@ -22430,6 +22444,8 @@ class AuroDatePicker extends r$2 {
22430
22444
  this.noFlip = false;
22431
22445
  this.autoPlacement = false;
22432
22446
 
22447
+ this.largeFullscreenHeadline = false;
22448
+
22433
22449
  /**
22434
22450
  * @private
22435
22451
  */
@@ -22595,7 +22611,8 @@ class AuroDatePicker extends r$2 {
22595
22611
  * If set, disables auto-validation on blur.
22596
22612
  */
22597
22613
  noValidate: {
22598
- type: Boolean
22614
+ type: Boolean,
22615
+ reflect: true
22599
22616
  },
22600
22617
 
22601
22618
  /**
@@ -9464,7 +9464,10 @@ class AuroCalendarCell extends r$2 {
9464
9464
  month: { type: String },
9465
9465
  min: { type: Number },
9466
9466
  max: { type: Number },
9467
- disabled: { type: Boolean },
9467
+ disabled: {
9468
+ type: Boolean,
9469
+ reflect: true
9470
+ },
9468
9471
  disabledDays: { type: Array },
9469
9472
  hoveredDate: { type: String },
9470
9473
  isCurrentDate: { type: Boolean },
@@ -9805,7 +9808,8 @@ class AuroCalendarMonth extends RangeDatepickerCalendar {
9805
9808
  * @private
9806
9809
  */
9807
9810
  monthFirst: {
9808
- type: Boolean
9811
+ type: Boolean,
9812
+ reflect: true
9809
9813
  }
9810
9814
  };
9811
9815
  }
@@ -11003,6 +11007,8 @@ class AuroBibtemplate extends r$2 {
11003
11007
  constructor() {
11004
11008
  super();
11005
11009
 
11010
+ this.large = false;
11011
+
11006
11012
  AuroLibraryRuntimeUtils$1$2.prototype.handleComponentTagRename(this, 'auro-bibtemplate');
11007
11013
 
11008
11014
  const versioning = new AuroDependencyVersioning$2();
@@ -11602,6 +11608,10 @@ class AuroCalendar extends RangeDatepicker {
11602
11608
  this.showPrevMonthBtn = true;
11603
11609
  this.showNextMonthBtn = true;
11604
11610
 
11611
+ this.visible = false;
11612
+ this.largeFullscreenHeadline = false;
11613
+ this.isFullscreen = false;
11614
+
11605
11615
  /**
11606
11616
  * @private
11607
11617
  */
@@ -11617,8 +11627,6 @@ class AuroCalendar extends RangeDatepicker {
11617
11627
  */
11618
11628
  this.numCalendars = undefined;
11619
11629
 
11620
- this.visible = false;
11621
-
11622
11630
  /**
11623
11631
  * @private
11624
11632
  */
@@ -20037,7 +20045,8 @@ class BaseInput extends r$2 {
20037
20045
  * If set, disables the input.
20038
20046
  */
20039
20047
  disabled: {
20040
- type: Boolean
20048
+ type: Boolean,
20049
+ reflect: true
20041
20050
  },
20042
20051
 
20043
20052
  /**
@@ -20067,7 +20076,8 @@ class BaseInput extends r$2 {
20067
20076
  * If set, will render an icon inside the input to the left of the value. Support is limited to auro-input instances with credit card format.
20068
20077
  */
20069
20078
  icon: {
20070
- type: Boolean
20079
+ type: Boolean,
20080
+ reflect: true
20071
20081
  },
20072
20082
 
20073
20083
  /**
@@ -20123,7 +20133,8 @@ class BaseInput extends r$2 {
20123
20133
  * If set, disables auto-validation on blur.
20124
20134
  */
20125
20135
  noValidate: {
20126
- type: Boolean
20136
+ type: Boolean,
20137
+ reflect: true
20127
20138
  },
20128
20139
 
20129
20140
  /**
@@ -20153,14 +20164,16 @@ class BaseInput extends r$2 {
20153
20164
  * Makes the input read-only, but can be set programmatically.
20154
20165
  */
20155
20166
  readonly: {
20156
- type: Boolean
20167
+ type: Boolean,
20168
+ reflect: true
20157
20169
  },
20158
20170
 
20159
20171
  /**
20160
20172
  * Populates the `required` attribute on the input. Used for client-side validation.
20161
20173
  */
20162
20174
  required: {
20163
- type: Boolean
20175
+ type: Boolean,
20176
+ reflect: true
20164
20177
  },
20165
20178
 
20166
20179
  /**
@@ -22140,6 +22153,7 @@ class AuroDatePicker extends r$2 {
22140
22153
  this.required = false;
22141
22154
  this.onDark = false;
22142
22155
  this.range = false;
22156
+ this.stacked = false;
22143
22157
  this.noValidate = false;
22144
22158
  this.validity = undefined;
22145
22159
  this.value = undefined;
@@ -22171,6 +22185,8 @@ class AuroDatePicker extends r$2 {
22171
22185
  this.noFlip = false;
22172
22186
  this.autoPlacement = false;
22173
22187
 
22188
+ this.largeFullscreenHeadline = false;
22189
+
22174
22190
  /**
22175
22191
  * @private
22176
22192
  */
@@ -22336,7 +22352,8 @@ class AuroDatePicker extends r$2 {
22336
22352
  * If set, disables auto-validation on blur.
22337
22353
  */
22338
22354
  noValidate: {
22339
- type: Boolean
22355
+ type: Boolean,
22356
+ reflect: true
22340
22357
  },
22341
22358
 
22342
22359
  /**
@@ -104,7 +104,7 @@ The use of any Auro custom element has a dependency on the [Auro Design Tokens](
104
104
  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.
105
105
 
106
106
  ```html
107
- <script type="module" src="https://cdn.jsdelivr.net/npm/@aurodesignsystem/auro-formkit@2.2.1/auro-datepicker/+esm"></script>
107
+ <script type="module" src="https://cdn.jsdelivr.net/npm/@aurodesignsystem/auro-formkit@3.0.0/auro-datepicker/+esm"></script>
108
108
  ```
109
109
  <!-- AURO-GENERATED-CONTENT:END -->
110
110
 
@@ -26,6 +26,7 @@ export class AuroCalendarCell extends LitElement {
26
26
  };
27
27
  disabled: {
28
28
  type: BooleanConstructor;
29
+ reflect: boolean;
29
30
  };
30
31
  disabledDays: {
31
32
  type: ArrayConstructor;
@@ -6,6 +6,7 @@ export class AuroCalendarMonth extends RangeDatepickerCalendar {
6
6
  */
7
7
  monthFirst: {
8
8
  type: BooleanConstructor;
9
+ reflect: boolean;
9
10
  };
10
11
  };
11
12
  /**
@@ -86,6 +86,9 @@ export class AuroCalendar extends RangeDatepicker {
86
86
  centralDate: any;
87
87
  showPrevMonthBtn: boolean;
88
88
  showNextMonthBtn: boolean;
89
+ visible: boolean;
90
+ largeFullscreenHeadline: boolean;
91
+ isFullscreen: boolean;
89
92
  /**
90
93
  * @private
91
94
  */
@@ -98,7 +101,6 @@ export class AuroCalendar extends RangeDatepicker {
98
101
  * @private
99
102
  */
100
103
  private numCalendars;
101
- visible: boolean;
102
104
  /**
103
105
  * @private
104
106
  */
@@ -118,7 +120,6 @@ export class AuroCalendar extends RangeDatepicker {
118
120
  * @returns {Object} Returns the auro-calendar-months HTML.
119
121
  */
120
122
  private renderAllCalendars;
121
- isFullscreen: any;
122
123
  firstRenderedMonth: any;
123
124
  /**
124
125
  * Request the calendar be scrolled to a given date.
@@ -125,6 +125,7 @@ export class AuroDatePicker extends LitElement {
125
125
  */
126
126
  noValidate: {
127
127
  type: BooleanConstructor;
128
+ reflect: boolean;
128
129
  };
129
130
  /**
130
131
  * Gap between the trigger element and bib.
@@ -248,6 +249,7 @@ export class AuroDatePicker extends LitElement {
248
249
  required: boolean;
249
250
  onDark: boolean;
250
251
  range: boolean;
252
+ stacked: boolean;
251
253
  noValidate: boolean;
252
254
  validity: any;
253
255
  value: any;
@@ -262,6 +264,7 @@ export class AuroDatePicker extends LitElement {
262
264
  offset: number;
263
265
  noFlip: boolean;
264
266
  autoPlacement: boolean;
267
+ largeFullscreenHeadline: boolean;
265
268
  /**
266
269
  * @private
267
270
  */
@@ -9419,7 +9419,10 @@ class AuroCalendarCell extends LitElement {
9419
9419
  month: { type: String },
9420
9420
  min: { type: Number },
9421
9421
  max: { type: Number },
9422
- disabled: { type: Boolean },
9422
+ disabled: {
9423
+ type: Boolean,
9424
+ reflect: true
9425
+ },
9423
9426
  disabledDays: { type: Array },
9424
9427
  hoveredDate: { type: String },
9425
9428
  isCurrentDate: { type: Boolean },
@@ -9760,7 +9763,8 @@ class AuroCalendarMonth extends RangeDatepickerCalendar {
9760
9763
  * @private
9761
9764
  */
9762
9765
  monthFirst: {
9763
- type: Boolean
9766
+ type: Boolean,
9767
+ reflect: true
9764
9768
  }
9765
9769
  };
9766
9770
  }
@@ -10952,6 +10956,8 @@ class AuroBibtemplate extends LitElement {
10952
10956
  constructor() {
10953
10957
  super();
10954
10958
 
10959
+ this.large = false;
10960
+
10955
10961
  AuroLibraryRuntimeUtils$1$2.prototype.handleComponentTagRename(this, 'auro-bibtemplate');
10956
10962
 
10957
10963
  const versioning = new AuroDependencyVersioning$2();
@@ -11551,6 +11557,10 @@ class AuroCalendar extends RangeDatepicker {
11551
11557
  this.showPrevMonthBtn = true;
11552
11558
  this.showNextMonthBtn = true;
11553
11559
 
11560
+ this.visible = false;
11561
+ this.largeFullscreenHeadline = false;
11562
+ this.isFullscreen = false;
11563
+
11554
11564
  /**
11555
11565
  * @private
11556
11566
  */
@@ -11566,8 +11576,6 @@ class AuroCalendar extends RangeDatepicker {
11566
11576
  */
11567
11577
  this.numCalendars = undefined;
11568
11578
 
11569
- this.visible = false;
11570
-
11571
11579
  /**
11572
11580
  * @private
11573
11581
  */
@@ -19973,7 +19981,8 @@ class BaseInput extends LitElement {
19973
19981
  * If set, disables the input.
19974
19982
  */
19975
19983
  disabled: {
19976
- type: Boolean
19984
+ type: Boolean,
19985
+ reflect: true
19977
19986
  },
19978
19987
 
19979
19988
  /**
@@ -20003,7 +20012,8 @@ class BaseInput extends LitElement {
20003
20012
  * If set, will render an icon inside the input to the left of the value. Support is limited to auro-input instances with credit card format.
20004
20013
  */
20005
20014
  icon: {
20006
- type: Boolean
20015
+ type: Boolean,
20016
+ reflect: true
20007
20017
  },
20008
20018
 
20009
20019
  /**
@@ -20059,7 +20069,8 @@ class BaseInput extends LitElement {
20059
20069
  * If set, disables auto-validation on blur.
20060
20070
  */
20061
20071
  noValidate: {
20062
- type: Boolean
20072
+ type: Boolean,
20073
+ reflect: true
20063
20074
  },
20064
20075
 
20065
20076
  /**
@@ -20089,14 +20100,16 @@ class BaseInput extends LitElement {
20089
20100
  * Makes the input read-only, but can be set programmatically.
20090
20101
  */
20091
20102
  readonly: {
20092
- type: Boolean
20103
+ type: Boolean,
20104
+ reflect: true
20093
20105
  },
20094
20106
 
20095
20107
  /**
20096
20108
  * Populates the `required` attribute on the input. Used for client-side validation.
20097
20109
  */
20098
20110
  required: {
20099
- type: Boolean
20111
+ type: Boolean,
20112
+ reflect: true
20100
20113
  },
20101
20114
 
20102
20115
  /**
@@ -22076,6 +22089,7 @@ class AuroDatePicker extends LitElement {
22076
22089
  this.required = false;
22077
22090
  this.onDark = false;
22078
22091
  this.range = false;
22092
+ this.stacked = false;
22079
22093
  this.noValidate = false;
22080
22094
  this.validity = undefined;
22081
22095
  this.value = undefined;
@@ -22107,6 +22121,8 @@ class AuroDatePicker extends LitElement {
22107
22121
  this.noFlip = false;
22108
22122
  this.autoPlacement = false;
22109
22123
 
22124
+ this.largeFullscreenHeadline = false;
22125
+
22110
22126
  /**
22111
22127
  * @private
22112
22128
  */
@@ -22272,7 +22288,8 @@ class AuroDatePicker extends LitElement {
22272
22288
  * If set, disables auto-validation on blur.
22273
22289
  */
22274
22290
  noValidate: {
22275
- type: Boolean
22291
+ type: Boolean,
22292
+ reflect: true
22276
22293
  },
22277
22294
 
22278
22295
  /**