@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
@@ -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
  /**
@@ -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.2.1/auro-dropdown/+esm"></script>
110
+ <script type="module" src="https://cdn.jsdelivr.net/npm/@aurodesignsystem/auro-formkit@3.0.0/auro-dropdown/+esm"></script>
111
111
  ```
112
112
  <!-- AURO-GENERATED-CONTENT:END -->
113
113
 
@@ -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.2.1/auro-dropdown/+esm"></script>
110
+ <script type="module" src="https://cdn.jsdelivr.net/npm/@aurodesignsystem/auro-formkit@3.0.0/auro-dropdown/+esm"></script>
111
111
  ```
112
112
  <!-- AURO-GENERATED-CONTENT:END -->
113
113
 
@@ -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.2.1/auro-form/+esm"></script>
112
+ <script type="module" src="https://cdn.jsdelivr.net/npm/@aurodesignsystem/auro-formkit@3.0.0/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.2.1/auro-form/+esm"></script>
112
+ <script type="module" src="https://cdn.jsdelivr.net/npm/@aurodesignsystem/auro-formkit@3.0.0/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.2.1/auro-input/+esm"></script>
102
+ <script type="module" src="https://cdn.jsdelivr.net/npm/@aurodesignsystem/auro-formkit@3.0.0/auro-input/+esm"></script>
103
103
  ```
104
104
  <!-- AURO-GENERATED-CONTENT:END -->
105
105
 
@@ -4642,7 +4642,8 @@ class BaseInput extends r {
4642
4642
  * If set, disables the input.
4643
4643
  */
4644
4644
  disabled: {
4645
- type: Boolean
4645
+ type: Boolean,
4646
+ reflect: true
4646
4647
  },
4647
4648
 
4648
4649
  /**
@@ -4672,7 +4673,8 @@ class BaseInput extends r {
4672
4673
  * 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.
4673
4674
  */
4674
4675
  icon: {
4675
- type: Boolean
4676
+ type: Boolean,
4677
+ reflect: true
4676
4678
  },
4677
4679
 
4678
4680
  /**
@@ -4728,7 +4730,8 @@ class BaseInput extends r {
4728
4730
  * If set, disables auto-validation on blur.
4729
4731
  */
4730
4732
  noValidate: {
4731
- type: Boolean
4733
+ type: Boolean,
4734
+ reflect: true
4732
4735
  },
4733
4736
 
4734
4737
  /**
@@ -4758,14 +4761,16 @@ class BaseInput extends r {
4758
4761
  * Makes the input read-only, but can be set programmatically.
4759
4762
  */
4760
4763
  readonly: {
4761
- type: Boolean
4764
+ type: Boolean,
4765
+ reflect: true
4762
4766
  },
4763
4767
 
4764
4768
  /**
4765
4769
  * Populates the `required` attribute on the input. Used for client-side validation.
4766
4770
  */
4767
4771
  required: {
4768
- type: Boolean
4772
+ type: Boolean,
4773
+ reflect: true
4769
4774
  },
4770
4775
 
4771
4776
  /**
@@ -4567,7 +4567,8 @@ class BaseInput extends r {
4567
4567
  * If set, disables the input.
4568
4568
  */
4569
4569
  disabled: {
4570
- type: Boolean
4570
+ type: Boolean,
4571
+ reflect: true
4571
4572
  },
4572
4573
 
4573
4574
  /**
@@ -4597,7 +4598,8 @@ class BaseInput extends r {
4597
4598
  * 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.
4598
4599
  */
4599
4600
  icon: {
4600
- type: Boolean
4601
+ type: Boolean,
4602
+ reflect: true
4601
4603
  },
4602
4604
 
4603
4605
  /**
@@ -4653,7 +4655,8 @@ class BaseInput extends r {
4653
4655
  * If set, disables auto-validation on blur.
4654
4656
  */
4655
4657
  noValidate: {
4656
- type: Boolean
4658
+ type: Boolean,
4659
+ reflect: true
4657
4660
  },
4658
4661
 
4659
4662
  /**
@@ -4683,14 +4686,16 @@ class BaseInput extends r {
4683
4686
  * Makes the input read-only, but can be set programmatically.
4684
4687
  */
4685
4688
  readonly: {
4686
- type: Boolean
4689
+ type: Boolean,
4690
+ reflect: true
4687
4691
  },
4688
4692
 
4689
4693
  /**
4690
4694
  * Populates the `required` attribute on the input. Used for client-side validation.
4691
4695
  */
4692
4696
  required: {
4693
- type: Boolean
4697
+ type: Boolean,
4698
+ reflect: true
4694
4699
  },
4695
4700
 
4696
4701
  /**
@@ -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.2.1/auro-input/+esm"></script>
102
+ <script type="module" src="https://cdn.jsdelivr.net/npm/@aurodesignsystem/auro-formkit@3.0.0/auro-input/+esm"></script>
103
103
  ```
104
104
  <!-- AURO-GENERATED-CONTENT:END -->
105
105
 
@@ -48,6 +48,7 @@ export default class BaseInput extends LitElement {
48
48
  */
49
49
  disabled: {
50
50
  type: BooleanConstructor;
51
+ reflect: boolean;
51
52
  };
52
53
  /**
53
54
  * When defined, sets persistent validity to `customError` and sets `setCustomValidity` = attribute value.
@@ -74,6 +75,7 @@ export default class BaseInput extends LitElement {
74
75
  */
75
76
  icon: {
76
77
  type: BooleanConstructor;
78
+ reflect: boolean;
77
79
  };
78
80
  /**
79
81
  * Sets the unique ID of the element.
@@ -122,6 +124,7 @@ export default class BaseInput extends LitElement {
122
124
  */
123
125
  noValidate: {
124
126
  type: BooleanConstructor;
127
+ reflect: boolean;
125
128
  };
126
129
  /**
127
130
  * Sets onDark styles on input.
@@ -148,12 +151,14 @@ export default class BaseInput extends LitElement {
148
151
  */
149
152
  readonly: {
150
153
  type: BooleanConstructor;
154
+ reflect: boolean;
151
155
  };
152
156
  /**
153
157
  * Populates the `required` attribute on the input. Used for client-side validation.
154
158
  */
155
159
  required: {
156
160
  type: BooleanConstructor;
161
+ reflect: boolean;
157
162
  };
158
163
  /**
159
164
  * @ignore
@@ -4491,7 +4491,8 @@ class BaseInput extends LitElement {
4491
4491
  * If set, disables the input.
4492
4492
  */
4493
4493
  disabled: {
4494
- type: Boolean
4494
+ type: Boolean,
4495
+ reflect: true
4495
4496
  },
4496
4497
 
4497
4498
  /**
@@ -4521,7 +4522,8 @@ class BaseInput extends LitElement {
4521
4522
  * 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.
4522
4523
  */
4523
4524
  icon: {
4524
- type: Boolean
4525
+ type: Boolean,
4526
+ reflect: true
4525
4527
  },
4526
4528
 
4527
4529
  /**
@@ -4577,7 +4579,8 @@ class BaseInput extends LitElement {
4577
4579
  * If set, disables auto-validation on blur.
4578
4580
  */
4579
4581
  noValidate: {
4580
- type: Boolean
4582
+ type: Boolean,
4583
+ reflect: true
4581
4584
  },
4582
4585
 
4583
4586
  /**
@@ -4607,14 +4610,16 @@ class BaseInput extends LitElement {
4607
4610
  * Makes the input read-only, but can be set programmatically.
4608
4611
  */
4609
4612
  readonly: {
4610
- type: Boolean
4613
+ type: Boolean,
4614
+ reflect: true
4611
4615
  },
4612
4616
 
4613
4617
  /**
4614
4618
  * Populates the `required` attribute on the input. Used for client-side validation.
4615
4619
  */
4616
4620
  required: {
4617
- type: Boolean
4621
+ type: Boolean,
4622
+ reflect: true
4618
4623
  },
4619
4624
 
4620
4625
  /**
@@ -4491,7 +4491,8 @@ class BaseInput extends LitElement {
4491
4491
  * If set, disables the input.
4492
4492
  */
4493
4493
  disabled: {
4494
- type: Boolean
4494
+ type: Boolean,
4495
+ reflect: true
4495
4496
  },
4496
4497
 
4497
4498
  /**
@@ -4521,7 +4522,8 @@ class BaseInput extends LitElement {
4521
4522
  * 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.
4522
4523
  */
4523
4524
  icon: {
4524
- type: Boolean
4525
+ type: Boolean,
4526
+ reflect: true
4525
4527
  },
4526
4528
 
4527
4529
  /**
@@ -4577,7 +4579,8 @@ class BaseInput extends LitElement {
4577
4579
  * If set, disables auto-validation on blur.
4578
4580
  */
4579
4581
  noValidate: {
4580
- type: Boolean
4582
+ type: Boolean,
4583
+ reflect: true
4581
4584
  },
4582
4585
 
4583
4586
  /**
@@ -4607,14 +4610,16 @@ class BaseInput extends LitElement {
4607
4610
  * Makes the input read-only, but can be set programmatically.
4608
4611
  */
4609
4612
  readonly: {
4610
- type: Boolean
4613
+ type: Boolean,
4614
+ reflect: true
4611
4615
  },
4612
4616
 
4613
4617
  /**
4614
4618
  * Populates the `required` attribute on the input. Used for client-side validation.
4615
4619
  */
4616
4620
  required: {
4617
- type: Boolean
4621
+ type: Boolean,
4622
+ reflect: true
4618
4623
  },
4619
4624
 
4620
4625
  /**
@@ -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-menu/+esm"></script>
113
+ <script type="module" src="https://cdn.jsdelivr.net/npm/@aurodesignsystem/auro-formkit@3.0.0/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.2.1/auro-menu/+esm"></script>
113
+ <script type="module" src="https://cdn.jsdelivr.net/npm/@aurodesignsystem/auro-formkit@3.0.0/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.2.1/auro-radio/+esm"></script>
103
+ <script type="module" src="https://cdn.jsdelivr.net/npm/@aurodesignsystem/auro-formkit@3.0.0/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.2.1/auro-radio/+esm"></script>
103
+ <script type="module" src="https://cdn.jsdelivr.net/npm/@aurodesignsystem/auro-formkit@3.0.0/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.2.1/auro-select/+esm"></script>
114
+ <script type="module" src="https://cdn.jsdelivr.net/npm/@aurodesignsystem/auro-formkit@3.0.0/auro-select/+esm"></script>
115
115
  ```
116
116
  <!-- AURO-GENERATED-CONTENT:END -->
117
117
 
@@ -4853,6 +4853,8 @@ class AuroBibtemplate extends r {
4853
4853
  constructor() {
4854
4854
  super();
4855
4855
 
4856
+ this.large = false;
4857
+
4856
4858
  AuroLibraryRuntimeUtils$1.prototype.handleComponentTagRename(this, 'auro-bibtemplate');
4857
4859
 
4858
4860
  const versioning = new AuroDependencyVersioning();
@@ -4761,6 +4761,8 @@ class AuroBibtemplate extends r {
4761
4761
  constructor() {
4762
4762
  super();
4763
4763
 
4764
+ this.large = false;
4765
+
4764
4766
  AuroLibraryRuntimeUtils$1.prototype.handleComponentTagRename(this, 'auro-bibtemplate');
4765
4767
 
4766
4768
  const versioning = new AuroDependencyVersioning();
@@ -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.2.1/auro-select/+esm"></script>
114
+ <script type="module" src="https://cdn.jsdelivr.net/npm/@aurodesignsystem/auro-formkit@3.0.0/auro-select/+esm"></script>
115
115
  ```
116
116
  <!-- AURO-GENERATED-CONTENT:END -->
117
117
 
@@ -4714,6 +4714,8 @@ class AuroBibtemplate extends LitElement {
4714
4714
  constructor() {
4715
4715
  super();
4716
4716
 
4717
+ this.large = false;
4718
+
4717
4719
  AuroLibraryRuntimeUtils$1.prototype.handleComponentTagRename(this, 'auro-bibtemplate');
4718
4720
 
4719
4721
  const versioning = new AuroDependencyVersioning();
@@ -4714,6 +4714,8 @@ class AuroBibtemplate extends LitElement {
4714
4714
  constructor() {
4715
4715
  super();
4716
4716
 
4717
+ this.large = false;
4718
+
4717
4719
  AuroLibraryRuntimeUtils$1.prototype.handleComponentTagRename(this, 'auro-bibtemplate');
4718
4720
 
4719
4721
  const versioning = new AuroDependencyVersioning();
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@aurodesignsystem/auro-formkit",
3
- "version": "3.0.0",
3
+ "version": "3.0.1",
4
4
  "description": "A collection of web components used to build forms.",
5
5
  "homepage": "https://github.com/AlaskaAirlines/auro-formkit#readme",
6
6
  "bugs": {