@aurodesignsystem-dev/auro-formkit 0.0.0-pr754.2 → 0.0.0-pr755.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.
- package/components/bibtemplate/dist/index.js +1 -1
- package/components/bibtemplate/dist/registered.js +1 -1
- package/components/checkbox/demo/api.html +16 -10
- package/components/checkbox/demo/api.min.js +11 -11
- package/components/checkbox/demo/index.html +16 -10
- package/components/checkbox/demo/index.min.js +11 -11
- package/components/checkbox/demo/readme.html +16 -9
- package/components/checkbox/dist/index.js +11 -11
- package/components/checkbox/dist/registered.js +11 -11
- package/components/combobox/demo/api.html +16 -10
- package/components/combobox/demo/api.md +6 -12
- package/components/combobox/demo/api.min.js +95 -78
- package/components/combobox/demo/index.html +16 -10
- package/components/combobox/demo/index.min.js +95 -78
- package/components/combobox/demo/readme.html +16 -9
- package/components/combobox/dist/index.js +84 -42
- package/components/combobox/dist/registered.js +84 -42
- package/components/counter/demo/api.html +16 -10
- package/components/counter/demo/api.md +7 -140
- package/components/counter/demo/api.min.js +386 -556
- package/components/counter/demo/index.html +16 -10
- package/components/counter/demo/index.md +0 -82
- package/components/counter/demo/index.min.js +386 -556
- package/components/counter/demo/readme.html +16 -9
- package/components/counter/dist/auro-counter-group.d.ts +14 -71
- package/components/counter/dist/auro-counter.d.ts +0 -10
- package/components/counter/dist/index.js +386 -556
- package/components/counter/dist/registered.js +386 -556
- package/components/datepicker/demo/api.html +16 -10
- package/components/datepicker/demo/api.min.js +84 -42
- package/components/datepicker/demo/index.html +16 -10
- package/components/datepicker/demo/index.min.js +84 -42
- package/components/datepicker/demo/readme.html +16 -9
- package/components/datepicker/dist/index.js +84 -42
- package/components/datepicker/dist/registered.js +84 -42
- package/components/dropdown/demo/api.html +16 -10
- package/components/dropdown/demo/api.md +268 -76
- package/components/dropdown/demo/api.min.js +67 -25
- package/components/dropdown/demo/index.html +16 -10
- package/components/dropdown/demo/index.md +363 -45
- package/components/dropdown/demo/index.min.js +67 -25
- package/components/dropdown/demo/readme.html +16 -9
- package/components/dropdown/dist/auro-dropdown.d.ts +71 -21
- package/components/dropdown/dist/index.js +67 -25
- package/components/dropdown/dist/registered.js +67 -25
- package/components/form/demo/api.html +16 -9
- package/components/form/demo/autocomplete.html +19 -3
- package/components/form/demo/index.html +16 -9
- package/components/form/demo/readme.html +16 -9
- package/components/form/demo/working.html +19 -13
- package/components/helptext/dist/index.js +1 -1
- package/components/helptext/dist/registered.js +1 -1
- package/components/input/demo/api.html +16 -10
- package/components/input/demo/api.md +1 -1
- package/components/input/demo/api.min.js +10 -10
- package/components/input/demo/index.html +16 -10
- package/components/input/demo/index.min.js +10 -10
- package/components/input/demo/readme.html +16 -9
- package/components/input/dist/base-input.d.ts +1 -1
- package/components/input/dist/index.js +10 -10
- package/components/input/dist/registered.js +10 -10
- package/components/menu/demo/api.html +16 -32
- package/components/menu/demo/api.md +1 -1
- package/components/menu/demo/api.min.js +11 -36
- package/components/menu/demo/index.html +16 -10
- package/components/menu/demo/index.min.js +11 -36
- package/components/menu/demo/readme.html +16 -9
- package/components/menu/dist/auro-menu.d.ts +2 -13
- package/components/menu/dist/index.js +11 -36
- package/components/menu/dist/registered.js +11 -36
- package/components/radio/demo/api.html +16 -10
- package/components/radio/demo/api.min.js +9 -9
- package/components/radio/demo/index.html +16 -10
- package/components/radio/demo/index.min.js +9 -9
- package/components/radio/demo/readme.html +16 -9
- package/components/radio/dist/index.js +9 -9
- package/components/radio/dist/registered.js +9 -9
- package/components/select/demo/api.html +16 -10
- package/components/select/demo/api.md +9 -15
- package/components/select/demo/api.min.js +193 -124
- package/components/select/demo/index.html +16 -11
- package/components/select/demo/index.md +1 -1
- package/components/select/demo/index.min.js +193 -124
- package/components/select/demo/readme.html +16 -9
- package/components/select/dist/auro-select.d.ts +4 -20
- package/components/select/dist/index.js +182 -88
- package/components/select/dist/registered.js +182 -88
- package/package.json +3 -3
|
@@ -16,17 +16,24 @@
|
|
|
16
16
|
<head>
|
|
17
17
|
<meta charset="UTF-8" />
|
|
18
18
|
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
|
19
|
-
<title>Auro Web Component
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/@aurodesignsystem/design-tokens@latest/dist/auro-classic/CSSCustomProperties.css"
|
|
26
|
-
|
|
19
|
+
<title>Auro Web Component Demo | auro-select</title>
|
|
20
|
+
|
|
21
|
+
<!-- Prism.js Stylesheet -->
|
|
22
|
+
<link rel="stylesheet" type="text/css" href="https://cdn.jsdelivr.net/npm/prismjs@1.24.1/themes/prism.css"/>
|
|
23
|
+
|
|
24
|
+
<!-- Legacy reference is still needed to support auro-select's use of legacy token values at this time -->
|
|
25
|
+
<link rel="stylesheet" type="text/css" href="https://cdn.jsdelivr.net/npm/@aurodesignsystem/design-tokens@latest/dist/legacy/auro-classic/CSSCustomProperties.css"/>
|
|
26
|
+
|
|
27
|
+
<!-- Design Token Alaska Theme -->
|
|
28
|
+
<link rel="stylesheet" type="text/css" href="https://cdn.jsdelivr.net/npm/@aurodesignsystem/design-tokens@latest/dist/themes/alaska/CSSCustomProperties--alaska.min.css"/>
|
|
29
|
+
|
|
30
|
+
<!-- Webcore Stylesheet Alaska Theme -->
|
|
31
|
+
<link rel="stylesheet" type="text/css" href="https://cdn.jsdelivr.net/npm/@aurodesignsystem/webcorestylesheets@latest/dist/bundled/themes/alaska.global.min.css" />
|
|
32
|
+
|
|
33
|
+
<!-- Demo Specific Styles -->
|
|
27
34
|
<link rel="stylesheet" type="text/css" href="https://cdn.jsdelivr.net/npm/@aurodesignsystem/webcorestylesheets@latest/dist/demoWrapper.css" />
|
|
28
35
|
<link rel="stylesheet" type="text/css" href="https://cdn.jsdelivr.net/npm/@aurodesignsystem/webcorestylesheets@latest/dist/elementDemoStyles.css" />
|
|
29
|
-
|
|
36
|
+
</head>
|
|
30
37
|
<body class="auro-markdown">
|
|
31
38
|
<main></main>
|
|
32
39
|
|
|
@@ -6,6 +6,7 @@
|
|
|
6
6
|
* @slot label - Defines the content of the label.
|
|
7
7
|
* @slot {HTMLSlotElement} optionalLabel - Allows overriding the optional display text "(optional)", which appears next to the label.
|
|
8
8
|
* @slot helpText - Defines the content of the helpText.
|
|
9
|
+
* @slot placeholder - Defines the content of the placeholder to be shown when there is no value
|
|
9
10
|
* @slot valueText - Dropdown value text display.
|
|
10
11
|
* @slot displayValue - Allows custom HTML content to display the selected value when select is not focused.
|
|
11
12
|
* @event auroSelect-valueSet - Notifies that the component has a new value set.
|
|
@@ -153,13 +154,6 @@ export class AuroSelect extends AuroElement {
|
|
|
153
154
|
type: StringConstructor;
|
|
154
155
|
reflect: boolean;
|
|
155
156
|
};
|
|
156
|
-
/**
|
|
157
|
-
* Define custom placeholder text.
|
|
158
|
-
*/
|
|
159
|
-
placeholder: {
|
|
160
|
-
type: StringConstructor;
|
|
161
|
-
reflect: boolean;
|
|
162
|
-
};
|
|
163
157
|
/**
|
|
164
158
|
* Populates the `required` attribute on the element. Used for client-side validation.
|
|
165
159
|
*/
|
|
@@ -200,13 +194,10 @@ export class AuroSelect extends AuroElement {
|
|
|
200
194
|
reflect: boolean;
|
|
201
195
|
};
|
|
202
196
|
/**
|
|
203
|
-
* Value selected for the component.
|
|
197
|
+
* Value selected for the component. Default type is `String`, changing to `Array<String>` when `multiSelect` is true.
|
|
198
|
+
* @type {String|Array<String>}
|
|
204
199
|
*/
|
|
205
|
-
value:
|
|
206
|
-
type: StringConstructor;
|
|
207
|
-
reflect: boolean;
|
|
208
|
-
attribute: string;
|
|
209
|
-
};
|
|
200
|
+
value: string | Array<string>;
|
|
210
201
|
/**
|
|
211
202
|
* Sets multi-select mode, allowing multiple options to be selected at once.
|
|
212
203
|
*/
|
|
@@ -305,13 +296,6 @@ export class AuroSelect extends AuroElement {
|
|
|
305
296
|
fullscreenBreakpoint: string;
|
|
306
297
|
onDark: boolean;
|
|
307
298
|
isPopoverVisible: any;
|
|
308
|
-
/**
|
|
309
|
-
* Formatted value based on `multiSelect` state.
|
|
310
|
-
* Default type is `String`, changing to `Array<String>` when `multiSelect` is true.
|
|
311
|
-
* @private
|
|
312
|
-
* @returns {String|Array<String>}
|
|
313
|
-
*/
|
|
314
|
-
private get formattedValue();
|
|
315
299
|
/**
|
|
316
300
|
* Returns classmap configuration for html5 input labels in all layouts.
|
|
317
301
|
* @private
|