@aurodesignsystem/auro-formkit 2.0.0-beta.43 → 2.0.0-beta.45
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.
- package/CHANGELOG.md +46 -0
- package/components/checkbox/README.md +1 -1
- package/components/combobox/README.md +6 -6
- package/components/combobox/demo/api.md +46 -43
- package/components/combobox/demo/api.min.js +9 -8
- package/components/combobox/demo/index.md +16 -16
- package/components/combobox/demo/index.min.js +9 -8
- package/components/combobox/dist/auro-combobox.d.ts +3 -2
- package/components/combobox/dist/index.js +9 -8
- package/components/combobox/dist/registered.js +9 -8
- package/components/counter/README.md +1 -1
- package/components/counter/demo/api.js +2 -1
- package/components/counter/demo/api.md +88 -14
- package/components/counter/demo/api.min.js +1145 -266
- package/components/counter/demo/index.md +6 -0
- package/components/counter/demo/index.min.js +1118 -266
- package/components/counter/dist/auro-counter-group.d.ts +31 -0
- package/components/counter/dist/bibtemplateVersion.d.ts +2 -0
- package/components/counter/dist/index.js +1118 -266
- package/components/counter/dist/registered.js +1118 -266
- package/components/datepicker/README.md +4 -4
- package/components/datepicker/demo/api.min.js +5 -5
- package/components/datepicker/demo/index.min.js +5 -5
- package/components/datepicker/dist/index.js +5 -5
- package/components/datepicker/dist/registered.js +5 -5
- package/components/dropdown/README.md +1 -1
- package/components/dropdown/demo/api.md +23 -23
- package/components/dropdown/demo/api.min.js +4 -4
- package/components/dropdown/demo/index.min.js +4 -4
- package/components/dropdown/dist/auro-dropdown.d.ts +1 -1
- package/components/dropdown/dist/auro-dropdownBib.d.ts +1 -1
- package/components/dropdown/dist/index.js +4 -4
- package/components/dropdown/dist/registered.js +4 -4
- package/components/form/README.md +1 -1
- package/components/input/README.md +1 -1
- package/components/menu/README.md +1 -1
- package/components/radio/README.md +1 -1
- package/components/select/README.md +3 -3
- package/components/select/demo/api.min.js +4 -4
- package/components/select/demo/index.min.js +4 -4
- package/components/select/dist/index.js +4 -4
- package/components/select/dist/registered.js +4 -4
- package/package.json +1 -37
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,51 @@
|
|
|
1
1
|
# Semantic Release Automated Changelog
|
|
2
2
|
|
|
3
|
+
# [2.0.0-beta.45](https://github.com/AlaskaAirlines/auro-formkit/compare/v2.0.0-beta.44...v2.0.0-beta.45) (2025-02-24)
|
|
4
|
+
|
|
5
|
+
|
|
6
|
+
### Bug Fixes
|
|
7
|
+
|
|
8
|
+
* rename some fullscreen related props and slot names ([fb3d4e6](https://github.com/AlaskaAirlines/auro-formkit/commit/fb3d4e62e39dc48ea0c17c51257127fc09aa8462))
|
|
9
|
+
|
|
10
|
+
|
|
11
|
+
### Features
|
|
12
|
+
|
|
13
|
+
* make counter-group dropdown fullscreen on mobile screen ([7b23520](https://github.com/AlaskaAirlines/auro-formkit/commit/7b23520c27a2d506d839e4f7d5d1c10af3f2e27e))
|
|
14
|
+
|
|
15
|
+
|
|
16
|
+
### BREAKING CHANGES
|
|
17
|
+
|
|
18
|
+
* properties for the fullscreen feature are renamed
|
|
19
|
+
- `mobileFullscreenBreakpoint` is now `fullscreenBreakpoint`
|
|
20
|
+
- `bib.mobile.headline` is now `bib.fullscreen.headline`
|
|
21
|
+
|
|
22
|
+
# [2.0.0-beta.44](https://github.com/AlaskaAirlines/auro-formkit/compare/v2.0.0-beta.43...v2.0.0-beta.44) (2025-02-24)
|
|
23
|
+
|
|
24
|
+
|
|
25
|
+
### Performance Improvements
|
|
26
|
+
|
|
27
|
+
* complete refactor of build system and components ([fd40ece](https://github.com/AlaskaAirlines/auro-formkit/commit/fd40ece429e0c0438ad5b1b9e4f7ab186d10d450)), closes [#228](https://github.com/AlaskaAirlines/auro-formkit/issues/228)
|
|
28
|
+
|
|
29
|
+
|
|
30
|
+
### BREAKING CHANGES
|
|
31
|
+
|
|
32
|
+
* Major architectural changes to package structure and component system
|
|
33
|
+
|
|
34
|
+
- Move to monorepo workspace configuration with Turborepo
|
|
35
|
+
- Add new components:
|
|
36
|
+
- auro-counter for numeric input controls
|
|
37
|
+
- auro-helptext for form field assistance
|
|
38
|
+
- auro-bibtemplate for bib/dropdown templates
|
|
39
|
+
- auro-form for form handling and validation
|
|
40
|
+
- auro-counter-group for grouped counter inputs
|
|
41
|
+
- Update existing components:
|
|
42
|
+
- auro-dropdown with improved positioning and mobile support
|
|
43
|
+
- auro-select with enhanced menu API
|
|
44
|
+
- auro-combobox with fullscreen mobile view
|
|
45
|
+
- auro-datepicker with range selection support
|
|
46
|
+
- Consolidate all components under auro-formkit namespace
|
|
47
|
+
- New build pipeline and documentation structure
|
|
48
|
+
|
|
3
49
|
# [2.0.0-beta.43](https://github.com/AlaskaAirlines/auro-formkit/compare/v2.0.0-beta.42...v2.0.0-beta.43) (2025-02-24)
|
|
4
50
|
|
|
5
51
|
|
|
@@ -96,7 +96,7 @@ In cases where the project is not able to process JS assets, there are pre-proce
|
|
|
96
96
|
<!-- The below content is automatically added from ../../docs/templates/componentBundleUseModBrowsers.md -->
|
|
97
97
|
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/@aurodesignsystem/design-tokens@4.13.0/dist/tokens/CSSCustomProperties.css" />
|
|
98
98
|
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/@aurodesignsystem/webcorestylesheets@5.1.2/dist/bundled/essentials.css" />
|
|
99
|
-
<script src="https://cdn.jsdelivr.net/npm/@aurodesignsystem/auro-formkit/auro-checkbox@2.0.0-beta.
|
|
99
|
+
<script src="https://cdn.jsdelivr.net/npm/@aurodesignsystem/auro-formkit/auro-checkbox@2.0.0-beta.44/dist/auro-checkbox__bundled.js" type="module"></script>
|
|
100
100
|
<!-- AURO-GENERATED-CONTENT:END -->
|
|
101
101
|
|
|
102
102
|
## auro-checkbox use cases
|
|
@@ -72,7 +72,7 @@ import "@aurodesignsystem/auro-formkit/auro-combobox";
|
|
|
72
72
|
|
|
73
73
|
```html
|
|
74
74
|
<auro-combobox>
|
|
75
|
-
<span slot="bib.
|
|
75
|
+
<span slot="bib.fullscreen.headline">Bib Header</span>
|
|
76
76
|
<span slot="label">Name</span>
|
|
77
77
|
<auro-menu>
|
|
78
78
|
<auro-menuoption value="Apples" id="option-0">Apples</auro-menuoption>
|
|
@@ -101,10 +101,10 @@ In cases where the project is not able to process JS assets, there are pre-proce
|
|
|
101
101
|
<!-- The below content is automatically added from ../../docs/templates/componentBundleUseModBrowsers.md -->
|
|
102
102
|
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/@aurodesignsystem/design-tokens@4.13.0/dist/tokens/CSSCustomProperties.css" />
|
|
103
103
|
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/@aurodesignsystem/webcorestylesheets@6.0.0/dist/bundled/essentials.css" />
|
|
104
|
-
<script src="https://cdn.jsdelivr.net/npm/@aurodesignsystem/auro-formkit/auro-dropdown@2.0.0-beta.
|
|
105
|
-
<script src="https://cdn.jsdelivr.net/npm/@aurodesignsystem/auro-formkit/auro-input@2.0.0-beta.
|
|
106
|
-
<script src="https://cdn.jsdelivr.net/npm/@aurodesignsystem/auro-formkit/auro-menu@2.0.0-beta.
|
|
107
|
-
<script src="https://cdn.jsdelivr.net/npm/@aurodesignsystem/auro-formkit/auro-combobox@2.0.0-beta.
|
|
104
|
+
<script src="https://cdn.jsdelivr.net/npm/@aurodesignsystem/auro-formkit/auro-dropdown@2.0.0-beta.44/dist/auro-dropdown__bundled.js" type="module"></script>
|
|
105
|
+
<script src="https://cdn.jsdelivr.net/npm/@aurodesignsystem/auro-formkit/auro-input@2.0.0-beta.44/dist/auro-input__bundled.js" type="module"></script>
|
|
106
|
+
<script src="https://cdn.jsdelivr.net/npm/@aurodesignsystem/auro-formkit/auro-menu@2.0.0-beta.44/dist/auro-menu__bundled.js" type="module"></script>
|
|
107
|
+
<script src="https://cdn.jsdelivr.net/npm/@aurodesignsystem/auro-formkit/auro-combobox@2.0.0-beta.44/dist/auro-combobox__bundled.js" type="module"></script>
|
|
108
108
|
<!-- AURO-GENERATED-CONTENT:END -->
|
|
109
109
|
|
|
110
110
|
## auro-combobox use cases
|
|
@@ -131,7 +131,7 @@ The `<auro-combobox>` element should be used in situations where users may:
|
|
|
131
131
|
|
|
132
132
|
```html
|
|
133
133
|
<auro-combobox>
|
|
134
|
-
<span slot="bib.
|
|
134
|
+
<span slot="bib.fullscreen.headline">Bib Header</span>
|
|
135
135
|
<span slot="label">Name</span>
|
|
136
136
|
<auro-menu>
|
|
137
137
|
<auro-menuoption value="Apples" id="option-0">Apples</auro-menuoption>
|
|
@@ -11,8 +11,8 @@
|
|
|
11
11
|
| [checkmark](#checkmark) | `checkmark` | `boolean` | | When attribute is present auro-menu will apply checkmarks to selected options. |
|
|
12
12
|
| [disabled](#disabled) | `disabled` | `boolean` | | If set, disables the combobox. |
|
|
13
13
|
| [error](#error) | `error` | `string` | | When defined, sets persistent validity to `customError` and sets the validation message to the attribute value. |
|
|
14
|
+
| [fullscreenBreakpoint](#fullscreenBreakpoint) | `fullscreenBreakpoint` | `string` | "sm" | Defines the screen size breakpoint (`lg`, `md`, `sm`, or `xs`) at which the dropdown switches to fullscreen mode on mobile.<br />When expanded, the dropdown will automatically display in fullscreen mode if the screen size is equal to or smaller than the selected breakpoint. |
|
|
14
15
|
| [largeMobileHeadline](#largeMobileHeadline) | `largeMobileHeadline` | `boolean` | | If declared, make mobileHeadline in HeadingDisplay.<br />Otherwise, Heading 600 |
|
|
15
|
-
| [mobileFullscreenBreakpoint](#mobileFullscreenBreakpoint) | `mobileFullscreenBreakpoint` | `string` | "sm" | Defines the screen size breakpoint (`lg`, `md`, `sm`, or `xs`) at which the dropdown switches to fullscreen mode on mobile.<br />When expanded, the dropdown will automatically display in fullscreen mode if the screen size is equal to or smaller than the selected breakpoint. |
|
|
16
16
|
| [noFilter](#noFilter) | `noFilter` | `boolean` | false | If set, combobox will not filter menuoptions based in input. |
|
|
17
17
|
| [noValidate](#noValidate) | `noValidate` | `boolean` | | If set, disables auto-validation on blur. |
|
|
18
18
|
| [optionSelected](#optionSelected) | `optionSelected` | `object` | "undefined" | Specifies the current selected option. |
|
|
@@ -42,11 +42,12 @@
|
|
|
42
42
|
|
|
43
43
|
## Slots
|
|
44
44
|
|
|
45
|
-
| Name
|
|
46
|
-
|
|
47
|
-
|
|
|
48
|
-
|
|
|
49
|
-
| [
|
|
45
|
+
| Name | Description |
|
|
46
|
+
|---------------------------|--------------------------------------------------|
|
|
47
|
+
| | Default slot for the menu content. |
|
|
48
|
+
| `bib.fullscreen.headline` | Defines the headline to display above menu-options |
|
|
49
|
+
| [helpText](#helpText) | Defines the content of the helpText. |
|
|
50
|
+
| [label](#label) | Defines the content of the label. |
|
|
50
51
|
<!-- AURO-GENERATED-CONTENT:END -->
|
|
51
52
|
|
|
52
53
|
## API Examples
|
|
@@ -57,7 +58,7 @@
|
|
|
57
58
|
<!-- AURO-GENERATED-CONTENT:START (FILE:src=./../apiExamples/basic.html) -->
|
|
58
59
|
<!-- The below content is automatically added from ./../apiExamples/basic.html -->
|
|
59
60
|
<auro-combobox>
|
|
60
|
-
<span slot="bib.
|
|
61
|
+
<span slot="bib.fullscreen.headline">Bib Header</span>
|
|
61
62
|
<span slot="label">Name</span>
|
|
62
63
|
<auro-menu>
|
|
63
64
|
<auro-menuoption value="Apples" id="option-0">Apples</auro-menuoption>
|
|
@@ -77,7 +78,7 @@
|
|
|
77
78
|
|
|
78
79
|
```html
|
|
79
80
|
<auro-combobox>
|
|
80
|
-
<span slot="bib.
|
|
81
|
+
<span slot="bib.fullscreen.headline">Bib Header</span>
|
|
81
82
|
<span slot="label">Name</span>
|
|
82
83
|
<auro-menu>
|
|
83
84
|
<auro-menuoption value="Apples" id="option-0">Apples</auro-menuoption>
|
|
@@ -104,7 +105,7 @@ The menu in this example was populated from data from a country/city API. To kee
|
|
|
104
105
|
<!-- HTML example file -->
|
|
105
106
|
<!-- ----------------- -->
|
|
106
107
|
<auro-combobox id="dynamicMenuExample" noFilter>
|
|
107
|
-
<span slot="bib.
|
|
108
|
+
<span slot="bib.fullscreen.headline">Dynamic Combobox Header</span>
|
|
108
109
|
<span slot="label">Name</span>
|
|
109
110
|
<!--
|
|
110
111
|
The auro-combobox element requires an empty auro-menu element
|
|
@@ -123,7 +124,7 @@ The menu in this example was populated from data from a country/city API. To kee
|
|
|
123
124
|
<!-- HTML example file -->
|
|
124
125
|
<!-- ----------------- -->
|
|
125
126
|
<auro-combobox id="dynamicMenuExample" noFilter>
|
|
126
|
-
<span slot="bib.
|
|
127
|
+
<span slot="bib.fullscreen.headline">Dynamic Combobox Header</span>
|
|
127
128
|
<span slot="label">Name</span>
|
|
128
129
|
<!--
|
|
129
130
|
The auro-combobox element requires an empty auro-menu element
|
|
@@ -208,7 +209,7 @@ If set, disables the combobox.
|
|
|
208
209
|
<!-- AURO-GENERATED-CONTENT:START (FILE:src=./../apiExamples/disabled.html) -->
|
|
209
210
|
<!-- The below content is automatically added from ./../apiExamples/disabled.html -->
|
|
210
211
|
<auro-combobox disabled>
|
|
211
|
-
<span slot="bib.
|
|
212
|
+
<span slot="bib.fullscreen.headline">Bib Header</span>
|
|
212
213
|
<span slot="label">Name</span>
|
|
213
214
|
<auro-menu>
|
|
214
215
|
<auro-menuoption value="Apples" id="option-0">Apples</auro-menuoption>
|
|
@@ -229,7 +230,7 @@ If set, disables the combobox.
|
|
|
229
230
|
|
|
230
231
|
```html
|
|
231
232
|
<auro-combobox disabled>
|
|
232
|
-
<span slot="bib.
|
|
233
|
+
<span slot="bib.fullscreen.headline">Bib Header</span>
|
|
233
234
|
<span slot="label">Name</span>
|
|
234
235
|
<auro-menu>
|
|
235
236
|
<auro-menuoption value="Apples" id="option-0">Apples</auro-menuoption>
|
|
@@ -253,7 +254,7 @@ If set, combobox will not do suggestion filtering of the menuoptions. This optio
|
|
|
253
254
|
<!-- AURO-GENERATED-CONTENT:START (FILE:src=./../apiExamples/noFilter.html) -->
|
|
254
255
|
<!-- The below content is automatically added from ./../apiExamples/noFilter.html -->
|
|
255
256
|
<auro-combobox noFilter>
|
|
256
|
-
<span slot="bib.
|
|
257
|
+
<span slot="bib.fullscreen.headline">noFilter Combobox Header</span>
|
|
257
258
|
<span slot="label">Name</span>
|
|
258
259
|
<auro-menu>
|
|
259
260
|
<auro-menuoption value="Apples" id="option-0">Apples</auro-menuoption>
|
|
@@ -273,7 +274,7 @@ If set, combobox will not do suggestion filtering of the menuoptions. This optio
|
|
|
273
274
|
|
|
274
275
|
```html
|
|
275
276
|
<auro-combobox noFilter>
|
|
276
|
-
<span slot="bib.
|
|
277
|
+
<span slot="bib.fullscreen.headline">noFilter Combobox Header</span>
|
|
277
278
|
<span slot="label">Name</span>
|
|
278
279
|
<auro-menu>
|
|
279
280
|
<auro-menuoption value="Apples" id="option-0">Apples</auro-menuoption>
|
|
@@ -296,7 +297,7 @@ Sets a persistent error state (e.g. an error state returned from the server).
|
|
|
296
297
|
<!-- AURO-GENERATED-CONTENT:START (FILE:src=./../apiExamples/error.html) -->
|
|
297
298
|
<!-- The below content is automatically added from ./../apiExamples/error.html -->
|
|
298
299
|
<auro-combobox error="Custom error message">
|
|
299
|
-
<span slot="bib.
|
|
300
|
+
<span slot="bib.fullscreen.headline">Bib Header</span>
|
|
300
301
|
<span slot="label">Name</span>
|
|
301
302
|
<auro-menu>
|
|
302
303
|
<auro-menuoption value="Apples" id="option-0">Apples</auro-menuoption>
|
|
@@ -317,7 +318,7 @@ Sets a persistent error state (e.g. an error state returned from the server).
|
|
|
317
318
|
|
|
318
319
|
```html
|
|
319
320
|
<auro-combobox error="Custom error message">
|
|
320
|
-
<span slot="bib.
|
|
321
|
+
<span slot="bib.fullscreen.headline">Bib Header</span>
|
|
321
322
|
<span slot="label">Name</span>
|
|
322
323
|
<auro-menu>
|
|
323
324
|
<auro-menuoption value="Apples" id="option-0">Apples</auro-menuoption>
|
|
@@ -341,7 +342,7 @@ Intended for use with the `required` attribute. If set, disables auto-validation
|
|
|
341
342
|
<!-- AURO-GENERATED-CONTENT:START (FILE:src=./../apiExamples/noValidate.html) -->
|
|
342
343
|
<!-- The below content is automatically added from ./../apiExamples/noValidate.html -->
|
|
343
344
|
<auro-combobox required noValidate>
|
|
344
|
-
<span slot="bib.
|
|
345
|
+
<span slot="bib.fullscreen.headline">noValidate Combobox Header</span>
|
|
345
346
|
<span slot="label">Name</span>
|
|
346
347
|
<auro-menu>
|
|
347
348
|
<auro-menuoption value="Apples" id="option-0">Apples</auro-menuoption>
|
|
@@ -362,7 +363,7 @@ Intended for use with the `required` attribute. If set, disables auto-validation
|
|
|
362
363
|
|
|
363
364
|
```html
|
|
364
365
|
<auro-combobox required noValidate>
|
|
365
|
-
<span slot="bib.
|
|
366
|
+
<span slot="bib.fullscreen.headline">noValidate Combobox Header</span>
|
|
366
367
|
<span slot="label">Name</span>
|
|
367
368
|
<auro-menu>
|
|
368
369
|
<auro-menuoption value="Apples" id="option-0">Apples</auro-menuoption>
|
|
@@ -386,7 +387,7 @@ Populates the `required` attribute on the input. Used for client-side validation
|
|
|
386
387
|
<!-- AURO-GENERATED-CONTENT:START (FILE:src=./../apiExamples/required.html) -->
|
|
387
388
|
<!-- The below content is automatically added from ./../apiExamples/required.html -->
|
|
388
389
|
<auro-combobox required>
|
|
389
|
-
<span slot="bib.
|
|
390
|
+
<span slot="bib.fullscreen.headline">Bib Header</span>
|
|
390
391
|
<span slot="label">Name</span>
|
|
391
392
|
<auro-menu>
|
|
392
393
|
<auro-menuoption value="Apples" id="option-0">Apples</auro-menuoption>
|
|
@@ -407,7 +408,7 @@ Populates the `required` attribute on the input. Used for client-side validation
|
|
|
407
408
|
|
|
408
409
|
```html
|
|
409
410
|
<auro-combobox required>
|
|
410
|
-
<span slot="bib.
|
|
411
|
+
<span slot="bib.fullscreen.headline">Bib Header</span>
|
|
411
412
|
<span slot="label">Name</span>
|
|
412
413
|
<auro-menu>
|
|
413
414
|
<auro-menuoption value="Apples" id="option-0">Apples</auro-menuoption>
|
|
@@ -431,7 +432,7 @@ Use the `value` attribute to programmatically set the value of the combobox.
|
|
|
431
432
|
<!-- AURO-GENERATED-CONTENT:START (FILE:src=./../apiExamples/programmaticValue.html) -->
|
|
432
433
|
<!-- The below content is automatically added from ./../apiExamples/programmaticValue.html -->
|
|
433
434
|
<auro-combobox>
|
|
434
|
-
<span slot="bib.
|
|
435
|
+
<span slot="bib.fullscreen.headline">Bib Header</span>
|
|
435
436
|
<span slot="label">Name</span>
|
|
436
437
|
<auro-menu>
|
|
437
438
|
<auro-menuoption value="Apples" id="option-0">Apples</auro-menuoption>
|
|
@@ -452,7 +453,7 @@ Use the `value` attribute to programmatically set the value of the combobox.
|
|
|
452
453
|
|
|
453
454
|
```html
|
|
454
455
|
<auro-combobox>
|
|
455
|
-
<span slot="bib.
|
|
456
|
+
<span slot="bib.fullscreen.headline">Bib Header</span>
|
|
456
457
|
<span slot="label">Name</span>
|
|
457
458
|
<auro-menu>
|
|
458
459
|
<auro-menuoption value="Apples" id="option-0">Apples</auro-menuoption>
|
|
@@ -487,7 +488,7 @@ Note: using a value that does not match a menu option will reset the combobox va
|
|
|
487
488
|
<auro-button id="valueUndefinedExampleBtn">Reset</auro-button>
|
|
488
489
|
<br/><br/>
|
|
489
490
|
<auro-combobox id="valueExample">
|
|
490
|
-
<span slot="bib.
|
|
491
|
+
<span slot="bib.fullscreen.headline">Bib Header</span>
|
|
491
492
|
<span slot="label">Name</span>
|
|
492
493
|
<auro-menu>
|
|
493
494
|
<auro-menuoption value="Apples" id="option-0">Apples</auro-menuoption>
|
|
@@ -512,7 +513,7 @@ Note: using a value that does not match a menu option will reset the combobox va
|
|
|
512
513
|
<auro-button id="valueUndefinedExampleBtn">Reset</auro-button>
|
|
513
514
|
<br/><br/>
|
|
514
515
|
<auro-combobox id="valueExample">
|
|
515
|
-
<span slot="bib.
|
|
516
|
+
<span slot="bib.fullscreen.headline">Bib Header</span>
|
|
516
517
|
<span slot="label">Name</span>
|
|
517
518
|
<auro-menu>
|
|
518
519
|
<auro-menuoption value="Apples" id="option-0">Apples</auro-menuoption>
|
|
@@ -557,7 +558,7 @@ When defined, the `auro-input` in the combobox trigger will use the defined `typ
|
|
|
557
558
|
<!-- AURO-GENERATED-CONTENT:START (FILE:src=./../apiExamples/typeMonthDayYear.html) -->
|
|
558
559
|
<!-- The below content is automatically added from ./../apiExamples/typeMonthDayYear.html -->
|
|
559
560
|
<auro-combobox type="month-day-year" triggerIcon>
|
|
560
|
-
<span slot="bib.
|
|
561
|
+
<span slot="bib.fullscreen.headline">Date Combobox Header</span>
|
|
561
562
|
<span slot="label">Date</span>
|
|
562
563
|
<auro-menu>
|
|
563
564
|
<auro-menuoption value="01/02/2020" id="option-date-0">
|
|
@@ -577,7 +578,7 @@ When defined, the `auro-input` in the combobox trigger will use the defined `typ
|
|
|
577
578
|
|
|
578
579
|
```html
|
|
579
580
|
<auro-combobox type="month-day-year" triggerIcon>
|
|
580
|
-
<span slot="bib.
|
|
581
|
+
<span slot="bib.fullscreen.headline">Date Combobox Header</span>
|
|
581
582
|
<span slot="label">Date</span>
|
|
582
583
|
<auro-menu>
|
|
583
584
|
<auro-menuoption value="01/02/2020" id="option-date-0">
|
|
@@ -604,7 +605,7 @@ The focus method will apply focus state to the combobox input field.
|
|
|
604
605
|
<auro-button id="focusExampleBtn">Apply focus to combobox</auro-button>
|
|
605
606
|
<br /><br />
|
|
606
607
|
<auro-combobox id="focusExample">
|
|
607
|
-
<span slot="bib.
|
|
608
|
+
<span slot="bib.fullscreen.headline">Bib Header</span>
|
|
608
609
|
<span slot="label">Name</span>
|
|
609
610
|
<auro-menu>
|
|
610
611
|
<auro-menuoption value="Apples" id="option-0">Apples</auro-menuoption>
|
|
@@ -640,7 +641,7 @@ export function focusExample() {
|
|
|
640
641
|
<auro-button id="focusExampleBtn">Apply focus to combobox</auro-button>
|
|
641
642
|
<br /><br />
|
|
642
643
|
<auro-combobox id="focusExample">
|
|
643
|
-
<span slot="bib.
|
|
644
|
+
<span slot="bib.fullscreen.headline">Bib Header</span>
|
|
644
645
|
<span slot="label">Name</span>
|
|
645
646
|
<auro-menu>
|
|
646
647
|
<auro-menuoption value="Apples" id="option-0">Apples</auro-menuoption>
|
|
@@ -665,7 +666,7 @@ Use the `reset()` method to reset the `<auro-combobox>`'s `value` and `validity`
|
|
|
665
666
|
<auro-button id="resetStateBtn">Reset</auro-button>
|
|
666
667
|
<br /><br />
|
|
667
668
|
<auro-combobox id="resetStateExample" required>
|
|
668
|
-
<span slot="bib.
|
|
669
|
+
<span slot="bib.fullscreen.headline">Bib Header</span>
|
|
669
670
|
<span slot="label">Name</span>
|
|
670
671
|
<auro-menu>
|
|
671
672
|
<auro-menuoption value="Apples" id="option-0">Apples</auro-menuoption>
|
|
@@ -687,7 +688,7 @@ Use the `reset()` method to reset the `<auro-combobox>`'s `value` and `validity`
|
|
|
687
688
|
<auro-button id="resetStateBtn">Reset</auro-button>
|
|
688
689
|
<br /><br />
|
|
689
690
|
<auro-combobox id="resetStateExample" required>
|
|
690
|
-
<span slot="bib.
|
|
691
|
+
<span slot="bib.fullscreen.headline">Bib Header</span>
|
|
691
692
|
<span slot="label">Name</span>
|
|
692
693
|
<auro-menu>
|
|
693
694
|
<auro-menuoption value="Apples" id="option-0">Apples</auro-menuoption>
|
|
@@ -725,7 +726,7 @@ Sets the help text displayed below the trigger. The `helpText` slot can be used
|
|
|
725
726
|
<!-- AURO-GENERATED-CONTENT:START (FILE:src=./../apiExamples/helpText.html) -->
|
|
726
727
|
<!-- The below content is automatically added from ./../apiExamples/helpText.html -->
|
|
727
728
|
<auro-combobox>
|
|
728
|
-
<span slot="bib.
|
|
729
|
+
<span slot="bib.fullscreen.headline">Bib Header</span>
|
|
729
730
|
<span slot="label">Name</span>
|
|
730
731
|
<span slot="helpText">Custom help text</span>
|
|
731
732
|
<auro-menu>
|
|
@@ -747,7 +748,7 @@ Sets the help text displayed below the trigger. The `helpText` slot can be used
|
|
|
747
748
|
|
|
748
749
|
```html
|
|
749
750
|
<auro-combobox>
|
|
750
|
-
<span slot="bib.
|
|
751
|
+
<span slot="bib.fullscreen.headline">Bib Header</span>
|
|
751
752
|
<span slot="label">Name</span>
|
|
752
753
|
<span slot="helpText">Custom help text</span>
|
|
753
754
|
<auro-menu>
|
|
@@ -771,7 +772,7 @@ While content is loading, the menu can either remain empty or display a loading
|
|
|
771
772
|
<!-- AURO-GENERATED-CONTENT:START (FILE:src=./../apiExamples/loading.html) -->
|
|
772
773
|
<!-- The below content is automatically added from ./../apiExamples/loading.html -->
|
|
773
774
|
<auro-combobox id="loadingExample">
|
|
774
|
-
<span slot="bib.
|
|
775
|
+
<span slot="bib.fullscreen.headline">Loading Combobox Header</span>
|
|
775
776
|
<span slot="label">Please select a preference</span>
|
|
776
777
|
<auro-menu id="loadingExampleComboboxMenu">
|
|
777
778
|
<auro-loader slot="loadingIcon" orbit xs></auro-loader><span slot="loadingText">Loading...</span>
|
|
@@ -829,7 +830,7 @@ export function auroMenuLoadingExample() {
|
|
|
829
830
|
|
|
830
831
|
```html
|
|
831
832
|
<auro-combobox id="loadingExample">
|
|
832
|
-
<span slot="bib.
|
|
833
|
+
<span slot="bib.fullscreen.headline">Loading Combobox Header</span>
|
|
833
834
|
<span slot="label">Please select a preference</span>
|
|
834
835
|
<auro-menu id="loadingExampleComboboxMenu">
|
|
835
836
|
<auro-loader slot="loadingIcon" orbit xs></auro-loader><span slot="loadingText">Loading...</span>
|
|
@@ -841,17 +842,19 @@ export function auroMenuLoadingExample() {
|
|
|
841
842
|
|
|
842
843
|
### Dropdown with fullscreen bib
|
|
843
844
|
|
|
844
|
-
You can make the dropdown open in fullscreen at a specific breakpoint by setting `
|
|
845
|
+
You can make the dropdown open in fullscreen at a specific breakpoint by setting `fullscreenBreakpoint`.
|
|
845
846
|
|
|
846
|
-
The default value of `
|
|
847
|
+
The default value of `fullscreenBreakpoint` is `sm`.
|
|
847
848
|
|
|
848
|
-
|
|
849
|
+
Breakpoint token can be found [here](https://auro.alaskaair.com/getting-started/developers/design-tokens)
|
|
850
|
+
|
|
851
|
+
To support fullcreen bib, setting `bib.fullscreen.headline` is **STRONGLY RECOMMENDED**.
|
|
849
852
|
|
|
850
853
|
<div class="exampleWrapper">
|
|
851
854
|
<!-- AURO-GENERATED-CONTENT:START (FILE:src=./../apiExamples/fullscreenBreakpoint.html) -->
|
|
852
855
|
<!-- The below content is automatically added from ./../apiExamples/fullscreenBreakpoint.html -->
|
|
853
|
-
<auro-combobox
|
|
854
|
-
<span slot="bib.
|
|
856
|
+
<auro-combobox fullscreenBreakpoint="lg">
|
|
857
|
+
<span slot="bib.fullscreen.headline">Bib Header</span>
|
|
855
858
|
<span slot="label">Name</span>
|
|
856
859
|
<auro-menu>
|
|
857
860
|
<auro-menuoption value="Apples" id="option-0">Apples</auro-menuoption>
|
|
@@ -870,8 +873,8 @@ To support fullcreen bib, setting `mobile.bib.healine` is **STRONGLY RECOMMENDED
|
|
|
870
873
|
<!-- The below code snippet is automatically added from ./../apiExamples/fullscreenBreakpoint.html -->
|
|
871
874
|
|
|
872
875
|
```html
|
|
873
|
-
<auro-combobox
|
|
874
|
-
<span slot="bib.
|
|
876
|
+
<auro-combobox fullscreenBreakpoint="lg">
|
|
877
|
+
<span slot="bib.fullscreen.headline">Bib Header</span>
|
|
875
878
|
<span slot="label">Name</span>
|
|
876
879
|
<auro-menu>
|
|
877
880
|
<auro-menuoption value="Apples" id="option-0">Apples</auro-menuoption>
|
|
@@ -899,7 +902,7 @@ The component can be in a dialog.
|
|
|
899
902
|
<span slot="header">Combobox in Dialog</span>
|
|
900
903
|
<div slot="content">
|
|
901
904
|
<auro-combobox id="focusExample">
|
|
902
|
-
<span slot="bib.
|
|
905
|
+
<span slot="bib.fullscreen.headline">Bib Header</span>
|
|
903
906
|
<span slot="label">Name</span>
|
|
904
907
|
<auro-menu>
|
|
905
908
|
<auro-menuoption value="Apples" id="option-0">Apples</auro-menuoption>
|
|
@@ -927,7 +930,7 @@ The component can be in a dialog.
|
|
|
927
930
|
<span slot="header">Combobox in Dialog</span>
|
|
928
931
|
<div slot="content">
|
|
929
932
|
<auro-combobox id="focusExample">
|
|
930
|
-
<span slot="bib.
|
|
933
|
+
<span slot="bib.fullscreen.headline">Bib Header</span>
|
|
931
934
|
<span slot="label">Name</span>
|
|
932
935
|
<auro-menu>
|
|
933
936
|
<auro-menuoption value="Apples" id="option-0">Apples</auro-menuoption>
|
|
@@ -3084,7 +3084,7 @@ const DESIGN_TOKEN_BREAKPOINT_OPTIONS = [
|
|
|
3084
3084
|
];
|
|
3085
3085
|
|
|
3086
3086
|
/**
|
|
3087
|
-
* @prop { String }
|
|
3087
|
+
* @prop { String } fullscreenBreakpoint - Defines the screen size breakpoint (`lg`, `md`, `sm`, or `xs`) at which the dropdown switches to fullscreen mode on mobile. When expanded, the dropdown will automatically display in fullscreen mode if the screen size is equal to or smaller than the selected breakpoint.
|
|
3088
3088
|
* @csspart bibContainer - Apply css to the bib container.
|
|
3089
3089
|
*/
|
|
3090
3090
|
|
|
@@ -3458,7 +3458,7 @@ class AuroDropdown extends r$4$2 {
|
|
|
3458
3458
|
/**
|
|
3459
3459
|
* Defines the screen size breakpoint (`lg`, `md`, `sm`, or `xs`) at which the dropdown switches to fullscreen mode on mobile. When expanded, the dropdown will automatically display in fullscreen mode if the screen size is equal to or smaller than the selected breakpoint.
|
|
3460
3460
|
*/
|
|
3461
|
-
|
|
3461
|
+
fullscreenBreakpoint: {
|
|
3462
3462
|
type: String,
|
|
3463
3463
|
reflect: true
|
|
3464
3464
|
},
|
|
@@ -3547,8 +3547,8 @@ class AuroDropdown extends r$4$2 {
|
|
|
3547
3547
|
updated(changedProperties) {
|
|
3548
3548
|
this.floater.handleUpdate(changedProperties);
|
|
3549
3549
|
|
|
3550
|
-
if (changedProperties.has('
|
|
3551
|
-
this.bibContent.mobileFullscreenBreakpoint = this.
|
|
3550
|
+
if (changedProperties.has('fullscreenBreakpoint')) {
|
|
3551
|
+
this.bibContent.mobileFullscreenBreakpoint = this.fullscreenBreakpoint;
|
|
3552
3552
|
}
|
|
3553
3553
|
|
|
3554
3554
|
// when trigger's content is changed without any attribute or node change,
|
|
@@ -8985,6 +8985,7 @@ var styleCss$3 = i$g`.util_displayInline{display:inline}.util_displayInlineBlock
|
|
|
8985
8985
|
// See https://git.io/JJ6SJ for "How to document your components using JSDoc"
|
|
8986
8986
|
/**
|
|
8987
8987
|
* @slot - Default slot for the menu content.
|
|
8988
|
+
* @slot bib.fullscreen.headline - Defines the headline to display above menu-options
|
|
8988
8989
|
* @slot label - Defines the content of the label.
|
|
8989
8990
|
* @slot helpText - Defines the content of the helpText.
|
|
8990
8991
|
* @event auroCombobox-valueSet - Notifies that the component has a new value set.
|
|
@@ -9013,7 +9014,7 @@ class AuroCombobox extends r$b {
|
|
|
9013
9014
|
this.optionActive = null;
|
|
9014
9015
|
this.msgSelectionMissing = 'Please select an option.';
|
|
9015
9016
|
|
|
9016
|
-
this.
|
|
9017
|
+
this.fullscreenBreakpoint = 'sm';
|
|
9017
9018
|
|
|
9018
9019
|
this.validation = new AuroFormValidation$1();
|
|
9019
9020
|
|
|
@@ -9166,7 +9167,7 @@ class AuroCombobox extends r$b {
|
|
|
9166
9167
|
* When expanded, the dropdown will automatically display in fullscreen mode if the screen size is equal to or smaller than the selected breakpoint.
|
|
9167
9168
|
* @default sm
|
|
9168
9169
|
*/
|
|
9169
|
-
|
|
9170
|
+
fullscreenBreakpoint: {
|
|
9170
9171
|
type: String,
|
|
9171
9172
|
reflect: true
|
|
9172
9173
|
},
|
|
@@ -9347,7 +9348,7 @@ class AuroCombobox extends r$b {
|
|
|
9347
9348
|
this.hideBib = this.hideBib.bind(this);
|
|
9348
9349
|
this.bibtemplate.addEventListener('close-click', this.hideBib);
|
|
9349
9350
|
|
|
9350
|
-
const bibHeader = this.querySelector('[slot="bib.
|
|
9351
|
+
const bibHeader = this.querySelector('[slot="bib.fullscreen.headline"]');
|
|
9351
9352
|
if (bibHeader) {
|
|
9352
9353
|
bibHeader.setAttribute('slot', 'header');
|
|
9353
9354
|
this.bibtemplate.append(bibHeader);
|
|
@@ -9835,7 +9836,7 @@ class AuroCombobox extends r$b {
|
|
|
9835
9836
|
rounded
|
|
9836
9837
|
matchWidth
|
|
9837
9838
|
nocheckmark
|
|
9838
|
-
|
|
9839
|
+
.fullscreenBreakpoint="${this.fullscreenBreakpoint}"
|
|
9839
9840
|
?disabled="${this.disabled}"
|
|
9840
9841
|
?error="${this.validity !== undefined && this.validity !== 'valid'}"
|
|
9841
9842
|
disableEventShow>
|
|
@@ -26,7 +26,7 @@ The `<auro-combobox>` element should be used in situations where users may:
|
|
|
26
26
|
<!-- AURO-GENERATED-CONTENT:START (FILE:src=./../apiExamples/basic.html) -->
|
|
27
27
|
<!-- The below content is automatically added from ./../apiExamples/basic.html -->
|
|
28
28
|
<auro-combobox>
|
|
29
|
-
<span slot="bib.
|
|
29
|
+
<span slot="bib.fullscreen.headline">Bib Header</span>
|
|
30
30
|
<span slot="label">Name</span>
|
|
31
31
|
<auro-menu>
|
|
32
32
|
<auro-menuoption value="Apples" id="option-0">Apples</auro-menuoption>
|
|
@@ -46,7 +46,7 @@ The `<auro-combobox>` element should be used in situations where users may:
|
|
|
46
46
|
|
|
47
47
|
```html
|
|
48
48
|
<auro-combobox>
|
|
49
|
-
<span slot="bib.
|
|
49
|
+
<span slot="bib.fullscreen.headline">Bib Header</span>
|
|
50
50
|
<span slot="label">Name</span>
|
|
51
51
|
<auro-menu>
|
|
52
52
|
<auro-menuoption value="Apples" id="option-0">Apples</auro-menuoption>
|
|
@@ -67,7 +67,7 @@ The `<auro-combobox>` element should be used in situations where users may:
|
|
|
67
67
|
<!-- AURO-GENERATED-CONTENT:START (FILE:src=./../apiExamples/airports.html) -->
|
|
68
68
|
<!-- The below content is automatically added from ./../apiExamples/airports.html -->
|
|
69
69
|
<auro-combobox>
|
|
70
|
-
<span slot="bib.
|
|
70
|
+
<span slot="bib.fullscreen.headline">Airports</span>
|
|
71
71
|
<span slot="label">Name</span>
|
|
72
72
|
<auro-menu>
|
|
73
73
|
<auro-menuoption value="fca" id="airport-fca" suggest="fca montana kalispell">glacier park international</auro-menuoption>
|
|
@@ -207,7 +207,7 @@ The `<auro-combobox>` element should be used in situations where users may:
|
|
|
207
207
|
|
|
208
208
|
```html
|
|
209
209
|
<auro-combobox>
|
|
210
|
-
<span slot="bib.
|
|
210
|
+
<span slot="bib.fullscreen.headline">Airports</span>
|
|
211
211
|
<span slot="label">Name</span>
|
|
212
212
|
<auro-menu>
|
|
213
213
|
<auro-menuoption value="fca" id="airport-fca" suggest="fca montana kalispell">glacier park international</auro-menuoption>
|
|
@@ -348,7 +348,7 @@ The `<auro-combobox>` element should be used in situations where users may:
|
|
|
348
348
|
<!-- AURO-GENERATED-CONTENT:START (FILE:src=./../apiExamples/withCheckmark.html) -->
|
|
349
349
|
<!-- The below content is automatically added from ./../apiExamples/withCheckmark.html -->
|
|
350
350
|
<auro-combobox checkmark>
|
|
351
|
-
<span slot="bib.
|
|
351
|
+
<span slot="bib.fullscreen.headline">Bib Header</span>
|
|
352
352
|
<span slot="label">Name</span>
|
|
353
353
|
<auro-menu>
|
|
354
354
|
<auro-menuoption value="Apples" id="option-0">Apples</auro-menuoption>
|
|
@@ -368,7 +368,7 @@ The `<auro-combobox>` element should be used in situations where users may:
|
|
|
368
368
|
|
|
369
369
|
```html
|
|
370
370
|
<auro-combobox checkmark>
|
|
371
|
-
<span slot="bib.
|
|
371
|
+
<span slot="bib.fullscreen.headline">Bib Header</span>
|
|
372
372
|
<span slot="label">Name</span>
|
|
373
373
|
<auro-menu>
|
|
374
374
|
<auro-menuoption value="Apples" id="option-0">Apples</auro-menuoption>
|
|
@@ -393,7 +393,7 @@ The `type` attribute may be used to apply the corresponding `type` attribute on
|
|
|
393
393
|
<!-- AURO-GENERATED-CONTENT:START (FILE:src=./../apiExamples/typeMonthDayYear.html) -->
|
|
394
394
|
<!-- The below content is automatically added from ./../apiExamples/typeMonthDayYear.html -->
|
|
395
395
|
<auro-combobox type="month-day-year" triggerIcon>
|
|
396
|
-
<span slot="bib.
|
|
396
|
+
<span slot="bib.fullscreen.headline">Date Combobox Header</span>
|
|
397
397
|
<span slot="label">Date</span>
|
|
398
398
|
<auro-menu>
|
|
399
399
|
<auro-menuoption value="01/02/2020" id="option-date-0">
|
|
@@ -413,7 +413,7 @@ The `type` attribute may be used to apply the corresponding `type` attribute on
|
|
|
413
413
|
|
|
414
414
|
```html
|
|
415
415
|
<auro-combobox type="month-day-year" triggerIcon>
|
|
416
|
-
<span slot="bib.
|
|
416
|
+
<span slot="bib.fullscreen.headline">Date Combobox Header</span>
|
|
417
417
|
<span slot="label">Date</span>
|
|
418
418
|
<auro-menu>
|
|
419
419
|
<auro-menuoption value="01/02/2020" id="option-date-0">
|
|
@@ -436,7 +436,7 @@ This example demonstrates a static menu option that will always appears regardle
|
|
|
436
436
|
<!-- AURO-GENERATED-CONTENT:START (FILE:src=./../apiExamples/persistent.html) -->
|
|
437
437
|
<!-- The below content is automatically added from ./../apiExamples/persistent.html -->
|
|
438
438
|
<auro-combobox id="persistent">
|
|
439
|
-
<span slot="bib.
|
|
439
|
+
<span slot="bib.fullscreen.headline">Address Combobox</span>
|
|
440
440
|
<span slot="label">Address</span>
|
|
441
441
|
<auro-menu id="customEvent">
|
|
442
442
|
<auro-menuoption value="555 Address Way Seattle, WA 99999">555 Address Way Seattle, WA 99999</auro-menuoption>
|
|
@@ -453,7 +453,7 @@ This example demonstrates a static menu option that will always appears regardle
|
|
|
453
453
|
|
|
454
454
|
```html
|
|
455
455
|
<auro-combobox id="persistent">
|
|
456
|
-
<span slot="bib.
|
|
456
|
+
<span slot="bib.fullscreen.headline">Address Combobox</span>
|
|
457
457
|
<span slot="label">Address</span>
|
|
458
458
|
<auro-menu id="customEvent">
|
|
459
459
|
<auro-menuoption value="555 Address Way Seattle, WA 99999">555 Address Way Seattle, WA 99999</auro-menuoption>
|
|
@@ -476,7 +476,7 @@ This example illustrates using a JavaScript function attached to an auro-button
|
|
|
476
476
|
<!-- The below content is automatically added from ./../apiExamples/swapValue.html -->
|
|
477
477
|
<div id="swapExample">
|
|
478
478
|
<auro-combobox id="swapExampleLeft">
|
|
479
|
-
<span slot="bib.
|
|
479
|
+
<span slot="bib.fullscreen.headline">Left Combobox Header</span>
|
|
480
480
|
<span slot="label">Name</span>
|
|
481
481
|
<auro-menu>
|
|
482
482
|
<auro-menuoption value="Apples" id="option-0">Apples</auro-menuoption>
|
|
@@ -496,7 +496,7 @@ This example illustrates using a JavaScript function attached to an auro-button
|
|
|
496
496
|
</auro-icon>
|
|
497
497
|
</auro-button>
|
|
498
498
|
<auro-combobox id="swapExampleRight">
|
|
499
|
-
<span slot="bib.
|
|
499
|
+
<span slot="bib.fullscreen.headline">Right Combobox Header</span>
|
|
500
500
|
<span slot="label">Name</span>
|
|
501
501
|
<auro-menu>
|
|
502
502
|
<auro-menuoption value="Apples" id="option-0">Apples</auro-menuoption>
|
|
@@ -535,7 +535,7 @@ This example illustrates using a JavaScript function attached to an auro-button
|
|
|
535
535
|
```html
|
|
536
536
|
<div id="swapExample">
|
|
537
537
|
<auro-combobox id="swapExampleLeft">
|
|
538
|
-
<span slot="bib.
|
|
538
|
+
<span slot="bib.fullscreen.headline">Left Combobox Header</span>
|
|
539
539
|
<span slot="label">Name</span>
|
|
540
540
|
<auro-menu>
|
|
541
541
|
<auro-menuoption value="Apples" id="option-0">Apples</auro-menuoption>
|
|
@@ -555,7 +555,7 @@ This example illustrates using a JavaScript function attached to an auro-button
|
|
|
555
555
|
</auro-icon>
|
|
556
556
|
</auro-button>
|
|
557
557
|
<auro-combobox id="swapExampleRight">
|
|
558
|
-
<span slot="bib.
|
|
558
|
+
<span slot="bib.fullscreen.headline">Right Combobox Header</span>
|
|
559
559
|
<span slot="label">Name</span>
|
|
560
560
|
<auro-menu>
|
|
561
561
|
<auro-menuoption value="Apples" id="option-0">Apples</auro-menuoption>
|
|
@@ -606,7 +606,7 @@ This will create a new custom element that you can use in your HTML that will fu
|
|
|
606
606
|
<!-- AURO-GENERATED-CONTENT:START (FILE:src=./../apiExamples/custom.html) -->
|
|
607
607
|
<!-- The below content is automatically added from ./../apiExamples/custom.html -->
|
|
608
608
|
<custom-combobox>
|
|
609
|
-
<span slot="bib.
|
|
609
|
+
<span slot="bib.fullscreen.headline">Bib Header</span>
|
|
610
610
|
<span slot="label">Name</span>
|
|
611
611
|
<auro-menu>
|
|
612
612
|
<auro-menuoption value="Apples" id="option-0">Apples</auro-menuoption>
|
|
@@ -626,7 +626,7 @@ This will create a new custom element that you can use in your HTML that will fu
|
|
|
626
626
|
|
|
627
627
|
```html
|
|
628
628
|
<custom-combobox>
|
|
629
|
-
<span slot="bib.
|
|
629
|
+
<span slot="bib.fullscreen.headline">Bib Header</span>
|
|
630
630
|
<span slot="label">Name</span>
|
|
631
631
|
<auro-menu>
|
|
632
632
|
<auro-menuoption value="Apples" id="option-0">Apples</auro-menuoption>
|