@aurodesignsystem-dev/auro-formkit 0.0.0-pr685.1 → 0.0.0-pr687.0

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 (30) hide show
  1. package/components/combobox/demo/api.min.js +30 -14
  2. package/components/combobox/demo/index.min.js +30 -14
  3. package/components/combobox/dist/index.js +30 -14
  4. package/components/combobox/dist/registered.js +30 -14
  5. package/components/counter/demo/api.md +19 -21
  6. package/components/counter/demo/api.min.js +97 -597
  7. package/components/counter/demo/index.md +34 -99
  8. package/components/counter/demo/index.min.js +97 -597
  9. package/components/counter/dist/auro-counter-group.d.ts +1 -92
  10. package/components/counter/dist/index.js +97 -597
  11. package/components/counter/dist/registered.js +97 -597
  12. package/components/datepicker/demo/api.md +9 -1
  13. package/components/datepicker/demo/api.min.js +675 -320
  14. package/components/datepicker/demo/index.md +46 -5
  15. package/components/datepicker/demo/index.min.js +675 -320
  16. package/components/datepicker/dist/auro-datepicker.d.ts +49 -10
  17. package/components/datepicker/dist/buttonVersion.d.ts +1 -1
  18. package/components/datepicker/dist/index.js +510 -155
  19. package/components/datepicker/dist/popoverVersion.d.ts +1 -1
  20. package/components/datepicker/dist/registered.js +510 -155
  21. package/components/input/demo/api.md +1 -0
  22. package/components/input/demo/api.min.js +30 -14
  23. package/components/input/demo/index.min.js +30 -14
  24. package/components/input/dist/auro-input.d.ts +174 -0
  25. package/components/input/dist/index.js +30 -14
  26. package/components/input/dist/registered.js +30 -14
  27. package/package.json +1 -1
  28. package/components/counter/dist/helptextVersion.d.ts +0 -2
  29. /package/components/{counter/dist/styles/shapeSize-css.d.ts → datepicker/dist/styles/snowflake/color-css.d.ts} +0 -0
  30. /package/components/datepicker/dist/styles/{emphasized → snowflake}/style-css.d.ts +0 -0
@@ -10865,7 +10865,6 @@ class BaseInput extends AuroElement$2$1 {
10865
10865
  * @return {void}
10866
10866
  */
10867
10867
  focus() {
10868
- console.info("BaseInput.focus() called", this);
10869
10868
  this.inputElement.focus();
10870
10869
  }
10871
10870
 
@@ -11060,22 +11059,17 @@ class BaseInput extends AuroElement$2$1 {
11060
11059
  * @returns {void}
11061
11060
  */
11062
11061
  getPlaceholder() {
11063
- const isFocused = this.inputElement === this.getActiveElement();
11062
+ this.inputElement === this.getActiveElement();
11064
11063
 
11065
11064
  // console.warn('isFocused', isFocused);
11066
11065
  // console.warn(this.inputElement);
11067
11066
  // console.warn(this.getActiveElement());
11068
11067
 
11069
- if (!isFocused) {
11070
- if (this.placeholder) {
11071
- this.placeholderStr = this.placeholder;
11072
- // return this.placeholder;
11073
- } else if (this.type === 'date') {
11074
- this.placeholderStr = this.format ? this.format.toUpperCase() : 'MM/DD/YYYY';
11075
- // return this.format ? this.format.toUpperCase() : 'MM/DD/YYYY';
11076
- }
11077
- } else {
11078
- this.placeholderStr = '';
11068
+ // if (!isFocused) {
11069
+ if (this.placeholder) {
11070
+ this.placeholderStr = this.placeholder;
11071
+ } else if (this.type === 'date') {
11072
+ this.placeholderStr = this.format ? this.format.toUpperCase() : 'MM/DD/YYYY';
11079
11073
  }
11080
11074
 
11081
11075
  this.requestUpdate();
@@ -12917,6 +12911,20 @@ class AuroInput extends BaseInput {
12917
12911
  this.iconTag = versioning.generateTag('auro-formkit-input-icon', iconVersion$2, AuroIcon$2);
12918
12912
  }
12919
12913
 
12914
+ static get properties() {
12915
+ return {
12916
+ ...super.properties,
12917
+
12918
+ /**
12919
+ * @type {boolean}
12920
+ */
12921
+ hideInputVisually: {
12922
+ type: Boolean,
12923
+ reflect: true,
12924
+ }
12925
+ };
12926
+ }
12927
+
12920
12928
  static get styles() {
12921
12929
  return [
12922
12930
  i$5`${classicStyleCss}`,
@@ -12951,8 +12959,13 @@ class AuroInput extends BaseInput {
12951
12959
  * @returns {object} - Returns classmap.
12952
12960
  */
12953
12961
  get commonInputClasses() {
12962
+ console.log(`hideInputVisually: ${JSON.stringify(this.hideInputVisually)}`);
12954
12963
  return {
12955
- 'util_displayHiddenVisually': this.hasDisplayValueContent && !this.hasFocus && this.value && this.value.length > 0
12964
+ 'util_displayHiddenVisually': this.hideInputVisually !== undefined
12965
+ ? this.hideInputVisually
12966
+ // eslint-disable-next-line no-warning-comments
12967
+ // TODO: refactor this to use a less brittle/forced solution.
12968
+ : this.hasDisplayValueContent && !this.hasFocus && this.value && this.value.length > 0
12956
12969
  };
12957
12970
  }
12958
12971
 
@@ -12964,7 +12977,10 @@ class AuroInput extends BaseInput {
12964
12977
  get legacyInputClasses() {
12965
12978
  return {
12966
12979
  ...this.commonInputClasses,
12967
- 'util_displayHiddenVisually': !this.hasFocus && !this.value
12980
+ 'util_displayHiddenVisually':
12981
+ this.hideInputVisually !== undefined
12982
+ ? this.hideInputVisually
12983
+ : !this.hasFocus && !this.value
12968
12984
  };
12969
12985
  }
12970
12986
 
@@ -10723,7 +10723,6 @@ class BaseInput extends AuroElement$2$1 {
10723
10723
  * @return {void}
10724
10724
  */
10725
10725
  focus() {
10726
- console.info("BaseInput.focus() called", this);
10727
10726
  this.inputElement.focus();
10728
10727
  }
10729
10728
 
@@ -10918,22 +10917,17 @@ class BaseInput extends AuroElement$2$1 {
10918
10917
  * @returns {void}
10919
10918
  */
10920
10919
  getPlaceholder() {
10921
- const isFocused = this.inputElement === this.getActiveElement();
10920
+ this.inputElement === this.getActiveElement();
10922
10921
 
10923
10922
  // console.warn('isFocused', isFocused);
10924
10923
  // console.warn(this.inputElement);
10925
10924
  // console.warn(this.getActiveElement());
10926
10925
 
10927
- if (!isFocused) {
10928
- if (this.placeholder) {
10929
- this.placeholderStr = this.placeholder;
10930
- // return this.placeholder;
10931
- } else if (this.type === 'date') {
10932
- this.placeholderStr = this.format ? this.format.toUpperCase() : 'MM/DD/YYYY';
10933
- // return this.format ? this.format.toUpperCase() : 'MM/DD/YYYY';
10934
- }
10935
- } else {
10936
- this.placeholderStr = '';
10926
+ // if (!isFocused) {
10927
+ if (this.placeholder) {
10928
+ this.placeholderStr = this.placeholder;
10929
+ } else if (this.type === 'date') {
10930
+ this.placeholderStr = this.format ? this.format.toUpperCase() : 'MM/DD/YYYY';
10937
10931
  }
10938
10932
 
10939
10933
  this.requestUpdate();
@@ -12775,6 +12769,20 @@ class AuroInput extends BaseInput {
12775
12769
  this.iconTag = versioning.generateTag('auro-formkit-input-icon', iconVersion$2, AuroIcon$2);
12776
12770
  }
12777
12771
 
12772
+ static get properties() {
12773
+ return {
12774
+ ...super.properties,
12775
+
12776
+ /**
12777
+ * @type {boolean}
12778
+ */
12779
+ hideInputVisually: {
12780
+ type: Boolean,
12781
+ reflect: true,
12782
+ }
12783
+ };
12784
+ }
12785
+
12778
12786
  static get styles() {
12779
12787
  return [
12780
12788
  i$5`${classicStyleCss}`,
@@ -12809,8 +12817,13 @@ class AuroInput extends BaseInput {
12809
12817
  * @returns {object} - Returns classmap.
12810
12818
  */
12811
12819
  get commonInputClasses() {
12820
+ console.log(`hideInputVisually: ${JSON.stringify(this.hideInputVisually)}`);
12812
12821
  return {
12813
- 'util_displayHiddenVisually': this.hasDisplayValueContent && !this.hasFocus && this.value && this.value.length > 0
12822
+ 'util_displayHiddenVisually': this.hideInputVisually !== undefined
12823
+ ? this.hideInputVisually
12824
+ // eslint-disable-next-line no-warning-comments
12825
+ // TODO: refactor this to use a less brittle/forced solution.
12826
+ : this.hasDisplayValueContent && !this.hasFocus && this.value && this.value.length > 0
12814
12827
  };
12815
12828
  }
12816
12829
 
@@ -12822,7 +12835,10 @@ class AuroInput extends BaseInput {
12822
12835
  get legacyInputClasses() {
12823
12836
  return {
12824
12837
  ...this.commonInputClasses,
12825
- 'util_displayHiddenVisually': !this.hasFocus && !this.value
12838
+ 'util_displayHiddenVisually':
12839
+ this.hideInputVisually !== undefined
12840
+ ? this.hideInputVisually
12841
+ : !this.hasFocus && !this.value
12826
12842
  };
12827
12843
  }
12828
12844
 
@@ -10641,7 +10641,6 @@ class BaseInput extends AuroElement$2$1 {
10641
10641
  * @return {void}
10642
10642
  */
10643
10643
  focus() {
10644
- console.info("BaseInput.focus() called", this);
10645
10644
  this.inputElement.focus();
10646
10645
  }
10647
10646
 
@@ -10836,22 +10835,17 @@ class BaseInput extends AuroElement$2$1 {
10836
10835
  * @returns {void}
10837
10836
  */
10838
10837
  getPlaceholder() {
10839
- const isFocused = this.inputElement === this.getActiveElement();
10838
+ this.inputElement === this.getActiveElement();
10840
10839
 
10841
10840
  // console.warn('isFocused', isFocused);
10842
10841
  // console.warn(this.inputElement);
10843
10842
  // console.warn(this.getActiveElement());
10844
10843
 
10845
- if (!isFocused) {
10846
- if (this.placeholder) {
10847
- this.placeholderStr = this.placeholder;
10848
- // return this.placeholder;
10849
- } else if (this.type === 'date') {
10850
- this.placeholderStr = this.format ? this.format.toUpperCase() : 'MM/DD/YYYY';
10851
- // return this.format ? this.format.toUpperCase() : 'MM/DD/YYYY';
10852
- }
10853
- } else {
10854
- this.placeholderStr = '';
10844
+ // if (!isFocused) {
10845
+ if (this.placeholder) {
10846
+ this.placeholderStr = this.placeholder;
10847
+ } else if (this.type === 'date') {
10848
+ this.placeholderStr = this.format ? this.format.toUpperCase() : 'MM/DD/YYYY';
10855
10849
  }
10856
10850
 
10857
10851
  this.requestUpdate();
@@ -12693,6 +12687,20 @@ class AuroInput extends BaseInput {
12693
12687
  this.iconTag = versioning.generateTag('auro-formkit-input-icon', iconVersion$1, AuroIcon$1);
12694
12688
  }
12695
12689
 
12690
+ static get properties() {
12691
+ return {
12692
+ ...super.properties,
12693
+
12694
+ /**
12695
+ * @type {boolean}
12696
+ */
12697
+ hideInputVisually: {
12698
+ type: Boolean,
12699
+ reflect: true,
12700
+ }
12701
+ };
12702
+ }
12703
+
12696
12704
  static get styles() {
12697
12705
  return [
12698
12706
  css`${classicStyleCss}`,
@@ -12727,8 +12735,13 @@ class AuroInput extends BaseInput {
12727
12735
  * @returns {object} - Returns classmap.
12728
12736
  */
12729
12737
  get commonInputClasses() {
12738
+ console.log(`hideInputVisually: ${JSON.stringify(this.hideInputVisually)}`);
12730
12739
  return {
12731
- 'util_displayHiddenVisually': this.hasDisplayValueContent && !this.hasFocus && this.value && this.value.length > 0
12740
+ 'util_displayHiddenVisually': this.hideInputVisually !== undefined
12741
+ ? this.hideInputVisually
12742
+ // eslint-disable-next-line no-warning-comments
12743
+ // TODO: refactor this to use a less brittle/forced solution.
12744
+ : this.hasDisplayValueContent && !this.hasFocus && this.value && this.value.length > 0
12732
12745
  };
12733
12746
  }
12734
12747
 
@@ -12740,7 +12753,10 @@ class AuroInput extends BaseInput {
12740
12753
  get legacyInputClasses() {
12741
12754
  return {
12742
12755
  ...this.commonInputClasses,
12743
- 'util_displayHiddenVisually': !this.hasFocus && !this.value
12756
+ 'util_displayHiddenVisually':
12757
+ this.hideInputVisually !== undefined
12758
+ ? this.hideInputVisually
12759
+ : !this.hasFocus && !this.value
12744
12760
  };
12745
12761
  }
12746
12762
 
@@ -10641,7 +10641,6 @@ class BaseInput extends AuroElement$2$1 {
10641
10641
  * @return {void}
10642
10642
  */
10643
10643
  focus() {
10644
- console.info("BaseInput.focus() called", this);
10645
10644
  this.inputElement.focus();
10646
10645
  }
10647
10646
 
@@ -10836,22 +10835,17 @@ class BaseInput extends AuroElement$2$1 {
10836
10835
  * @returns {void}
10837
10836
  */
10838
10837
  getPlaceholder() {
10839
- const isFocused = this.inputElement === this.getActiveElement();
10838
+ this.inputElement === this.getActiveElement();
10840
10839
 
10841
10840
  // console.warn('isFocused', isFocused);
10842
10841
  // console.warn(this.inputElement);
10843
10842
  // console.warn(this.getActiveElement());
10844
10843
 
10845
- if (!isFocused) {
10846
- if (this.placeholder) {
10847
- this.placeholderStr = this.placeholder;
10848
- // return this.placeholder;
10849
- } else if (this.type === 'date') {
10850
- this.placeholderStr = this.format ? this.format.toUpperCase() : 'MM/DD/YYYY';
10851
- // return this.format ? this.format.toUpperCase() : 'MM/DD/YYYY';
10852
- }
10853
- } else {
10854
- this.placeholderStr = '';
10844
+ // if (!isFocused) {
10845
+ if (this.placeholder) {
10846
+ this.placeholderStr = this.placeholder;
10847
+ } else if (this.type === 'date') {
10848
+ this.placeholderStr = this.format ? this.format.toUpperCase() : 'MM/DD/YYYY';
10855
10849
  }
10856
10850
 
10857
10851
  this.requestUpdate();
@@ -12693,6 +12687,20 @@ class AuroInput extends BaseInput {
12693
12687
  this.iconTag = versioning.generateTag('auro-formkit-input-icon', iconVersion$1, AuroIcon$1);
12694
12688
  }
12695
12689
 
12690
+ static get properties() {
12691
+ return {
12692
+ ...super.properties,
12693
+
12694
+ /**
12695
+ * @type {boolean}
12696
+ */
12697
+ hideInputVisually: {
12698
+ type: Boolean,
12699
+ reflect: true,
12700
+ }
12701
+ };
12702
+ }
12703
+
12696
12704
  static get styles() {
12697
12705
  return [
12698
12706
  css`${classicStyleCss}`,
@@ -12727,8 +12735,13 @@ class AuroInput extends BaseInput {
12727
12735
  * @returns {object} - Returns classmap.
12728
12736
  */
12729
12737
  get commonInputClasses() {
12738
+ console.log(`hideInputVisually: ${JSON.stringify(this.hideInputVisually)}`);
12730
12739
  return {
12731
- 'util_displayHiddenVisually': this.hasDisplayValueContent && !this.hasFocus && this.value && this.value.length > 0
12740
+ 'util_displayHiddenVisually': this.hideInputVisually !== undefined
12741
+ ? this.hideInputVisually
12742
+ // eslint-disable-next-line no-warning-comments
12743
+ // TODO: refactor this to use a less brittle/forced solution.
12744
+ : this.hasDisplayValueContent && !this.hasFocus && this.value && this.value.length > 0
12732
12745
  };
12733
12746
  }
12734
12747
 
@@ -12740,7 +12753,10 @@ class AuroInput extends BaseInput {
12740
12753
  get legacyInputClasses() {
12741
12754
  return {
12742
12755
  ...this.commonInputClasses,
12743
- 'util_displayHiddenVisually': !this.hasFocus && !this.value
12756
+ 'util_displayHiddenVisually':
12757
+ this.hideInputVisually !== undefined
12758
+ ? this.hideInputVisually
12759
+ : !this.hasFocus && !this.value
12744
12760
  };
12745
12761
  }
12746
12762
 
@@ -39,23 +39,21 @@
39
39
 
40
40
  ## Properties
41
41
 
42
- | Property | Attribute | Type | Default | Description |
43
- |---------------------------|---------------------------|--------------------------|----------------|--------------------------------------------------|
44
- | [autoPlacement](#autoPlacement) | `autoPlacement` | `boolean` | "false" | If declared, bib's position will be automatically calculated where to appear. |
45
- | [fullscreenBreakpoint](#fullscreenBreakpoint) | `fullscreenBreakpoint` | `string` | "sm" | Defines the screen size breakpoint (`xs`, `sm`, `md`, `lg`, `xl`, `disabled`)<br />at which the dropdown switches to fullscreen mode on mobile. `disabled` indicates a dropdown should _never_ enter fullscreen.<br /><br />When expanded, the dropdown will automatically display in fullscreen mode<br />if the screen size is equal to or smaller than the selected breakpoint. |
46
- | [isDropdown](#isDropdown) | `isDropdown` | `boolean` | false | Indicates if the counter group is displayed as a dropdown. |
47
- | [largeFullscreenHeadline](#largeFullscreenHeadline) | `largeFullscreenHeadline` | `boolean` | false | If declared, make bib.fullscreen.headline in HeadingDisplay.<br />Otherwise, Heading 600. |
48
- | [layout](#layout) | | `'classic'\|'snowflake'` | | Determines the layout style of the counter group when it is a dropdown. Options are 'classic' or 'snowflake'. Default is 'classic'. |
49
- | [matchWidth](#matchWidth) | `matchWidth` | `boolean` | false | If declared, the dropdown will expand to the width of its parent container.<br />Otherwise, the dropdown width will be determined by its content. |
50
- | [max](#max) | `max` | `number` | "undefined" | The maximum value allowed for the whole group of counters. |
51
- | [min](#min) | `min` | `number` | "undefined" | The minimum value allowed for the whole group of counters. |
52
- | [noFlip](#noFlip) | `noFlip` | `boolean` | "false" | If declared, the bib will NOT flip to an alternate position<br />when there isn't enough space in the specified `placement`. |
53
- | [offset](#offset) | `offset` | `number` | "0" | Gap between the trigger element and bib. |
54
- | [onDark](#onDark) | `onDark` | `boolean` | false | If declared, counters and dropdown will be rendered with onDark styles. |
55
- | [placement](#placement) | `placement` | `string` | "bottom-start" | Position where the bib should appear relative to the trigger.<br />Accepted values:<br />"top" \| "right" \| "bottom" \| "left" \|<br />"bottom-start" \| "top-start" \| "top-end" \|<br />"right-start" \| "right-end" \| "bottom-end" \|<br />"left-start" \| "left-end" |
56
- | [total](#total) | `total` | `number` | "undefined" | The total value of the counters. |
57
- | [validity](#validity) | `validity` | `string` | "undefined" | Reflects the validity state. |
58
- | [value](#value) | `value` | `object` | "undefined" | The current individual values of the nested counters. |
42
+ | Property | Attribute | Type | Default | Description |
43
+ |---------------------------|---------------------------|-----------|----------------|--------------------------------------------------|
44
+ | [autoPlacement](#autoPlacement) | `autoPlacement` | `boolean` | "false" | If declared, bib's position will be automatically calculated where to appear. |
45
+ | [fullscreenBreakpoint](#fullscreenBreakpoint) | `fullscreenBreakpoint` | `string` | "sm" | Defines the screen size breakpoint (`xs`, `sm`, `md`, `lg`, `xl`, `disabled`)<br />at which the dropdown switches to fullscreen mode on mobile. `disabled` indicates a dropdown should _never_ enter fullscreen.<br /><br />When expanded, the dropdown will automatically display in fullscreen mode<br />if the screen size is equal to or smaller than the selected breakpoint. |
46
+ | [isDropdown](#isDropdown) | `isDropdown` | `boolean` | false | Indicates if the counter group is displayed as a dropdown. |
47
+ | [largeFullscreenHeadline](#largeFullscreenHeadline) | `largeFullscreenHeadline` | `boolean` | false | If declared, make bib.fullscreen.headline in HeadingDisplay.<br />Otherwise, Heading 600. |
48
+ | [max](#max) | `max` | `number` | "undefined" | The maximum value allowed for the whole group of counters. |
49
+ | [min](#min) | `min` | `number` | "undefined" | The minimum value allowed for the whole group of counters. |
50
+ | [noFlip](#noFlip) | `noFlip` | `boolean` | "false" | If declared, the bib will NOT flip to an alternate position<br />when there isn't enough space in the specified `placement`. |
51
+ | [offset](#offset) | `offset` | `number` | "0" | Gap between the trigger element and bib. |
52
+ | [onDark](#onDark) | `onDark` | `boolean` | false | If declared, counters and dropdown will be rendered with onDark styles. |
53
+ | [placement](#placement) | `placement` | `string` | "bottom-start" | Position where the bib should appear relative to the trigger.<br />Accepted values:<br />"top" \| "right" \| "bottom" \| "left" \|<br />"bottom-start" \| "top-start" \| "top-end" \|<br />"right-start" \| "right-end" \| "bottom-end" \|<br />"left-start" \| "left-end" |
54
+ | [total](#total) | `total` | `number` | "undefined" | The total value of the counters. |
55
+ | [validity](#validity) | `validity` | `string` | "undefined" | Reflects the validity state. |
56
+ | [value](#value) | `value` | `object` | "undefined" | The current individual values of the nested counters. |
59
57
 
60
58
  ## Methods
61
59
 
@@ -428,7 +426,7 @@ The bib position can be customized with `placement`, `offset`, `flip`, `autoPlac
428
426
  <div style="width: 350px">
429
427
  <auro-counter-group isDropdown offset="20" placement="bottom-end">
430
428
  <div slot="bib.fullscreen.headline">Passengers</div>
431
- <div slot="label">bottom-end bib with 20px offset</div>
429
+ <div slot="label">bottome-end bib with 20px offset</div>
432
430
  <auro-counter>
433
431
  Adults
434
432
  <span slot="description">18 years or older</span>
@@ -440,7 +438,7 @@ The bib position can be customized with `placement`, `offset`, `flip`, `autoPlac
440
438
  </auro-counter-group>
441
439
  <auro-counter-group isDropdown offset="20" placement="bottom-end" noFlip>
442
440
  <div slot="bib.fullscreen.headline">Passengers</div>
443
- <div slot="label">bottom-end bib with 20px offset and noFlip</div>
441
+ <div slot="label">bottome-end bib with 20px offset and noFlip</div>
444
442
  <auro-counter>
445
443
  Adults
446
444
  <span slot="description">18 years or older</span>
@@ -474,7 +472,7 @@ The bib position can be customized with `placement`, `offset`, `flip`, `autoPlac
474
472
  <div style="width: 350px">
475
473
  <auro-counter-group isDropdown offset="20" placement="bottom-end">
476
474
  <div slot="bib.fullscreen.headline">Passengers</div>
477
- <div slot="label">bottom-end bib with 20px offset</div>
475
+ <div slot="label">bottome-end bib with 20px offset</div>
478
476
  <auro-counter>
479
477
  Adults
480
478
  <span slot="description">18 years or older</span>
@@ -486,7 +484,7 @@ The bib position can be customized with `placement`, `offset`, `flip`, `autoPlac
486
484
  </auro-counter-group>
487
485
  <auro-counter-group isDropdown offset="20" placement="bottom-end" noFlip>
488
486
  <div slot="bib.fullscreen.headline">Passengers</div>
489
- <div slot="label">bottom-end bib with 20px offset and noFlip</div>
487
+ <div slot="label">bottome-end bib with 20px offset and noFlip</div>
490
488
  <auro-counter>
491
489
  Adults
492
490
  <span slot="description">18 years or older</span>