@aurodesignsystem-dev/auro-formkit 0.0.0-pr800.0 → 0.0.0-pr801.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.
- package/components/bibtemplate/dist/buttonVersion.d.ts +1 -1
- package/components/bibtemplate/dist/index.js +71 -21
- package/components/bibtemplate/dist/registered.js +71 -21
- package/components/checkbox/demo/api.md +2 -1
- package/components/checkbox/demo/api.min.js +7 -0
- package/components/checkbox/demo/index.min.js +7 -0
- package/components/checkbox/dist/index.js +7 -0
- package/components/checkbox/dist/registered.js +7 -0
- package/components/combobox/demo/api.min.js +219 -52
- package/components/combobox/demo/index.min.js +219 -52
- package/components/combobox/dist/index.js +219 -52
- package/components/combobox/dist/registered.js +219 -52
- package/components/counter/demo/api.md +1 -1
- package/components/counter/demo/api.min.js +168 -62
- package/components/counter/demo/index.min.js +168 -62
- package/components/counter/dist/auro-counter-group.d.ts +10 -10
- package/components/counter/dist/index.js +168 -62
- package/components/counter/dist/registered.js +168 -62
- package/components/datepicker/demo/api.md +1 -1
- package/components/datepicker/demo/api.min.js +367 -104
- package/components/datepicker/demo/index.min.js +367 -104
- package/components/datepicker/dist/auro-datepicker.d.ts +10 -10
- package/components/datepicker/dist/index.js +367 -104
- package/components/datepicker/dist/registered.js +367 -104
- package/components/dropdown/demo/api.md +7 -8
- package/components/dropdown/demo/api.min.js +7 -1
- package/components/dropdown/demo/index.min.js +7 -1
- package/components/dropdown/dist/index.js +7 -1
- package/components/dropdown/dist/registered.js +7 -1
- package/components/input/demo/api.min.js +140 -29
- package/components/input/demo/index.min.js +140 -29
- package/components/input/dist/auro-input.d.ts +24 -0
- package/components/input/dist/index.js +140 -29
- package/components/input/dist/registered.js +140 -29
- package/components/radio/demo/api.md +32 -1
- package/components/radio/demo/api.min.js +2 -2
- package/components/radio/demo/index.min.js +2 -2
- package/components/radio/dist/index.js +2 -2
- package/components/radio/dist/registered.js +2 -2
- package/components/select/demo/api.md +48 -71
- package/components/select/demo/api.min.js +127 -50
- package/components/select/demo/index.md +1057 -137
- package/components/select/demo/index.min.js +127 -50
- package/components/select/dist/auro-select.d.ts +22 -14
- package/components/select/dist/index.js +127 -50
- package/components/select/dist/registered.js +127 -50
- package/package.json +1 -1
|
@@ -11,10 +11,6 @@
|
|
|
11
11
|
* @event auroSelect-valueSet - Notifies that the component has a new value set.
|
|
12
12
|
* @event input - Notifies every time the value prop of the element is changed. The updated `value` and `optionSelected` will be delivered in `detail` object.
|
|
13
13
|
* @event auroFormElement-validated - Notifies that the `validity` and `errorMessage` values have changed.
|
|
14
|
-
*
|
|
15
|
-
* @csspart dropdownTrigger - Apply CSS to the trigger content container.
|
|
16
|
-
* @csspart dropdownChevron - Apply CSS to the collapsed/expanded state icon container.
|
|
17
|
-
* @csspart dropdownSize - Apply size styles to the dropdown bib. (height, width, maxHeight, maxWidth only)
|
|
18
14
|
* @csspart helpText - Apply CSS to the help text.
|
|
19
15
|
*/
|
|
20
16
|
export class AuroSelect extends AuroElement {
|
|
@@ -322,6 +318,18 @@ export class AuroSelect extends AuroElement {
|
|
|
322
318
|
* @returns {void}
|
|
323
319
|
*/
|
|
324
320
|
private get commonLabelClasses();
|
|
321
|
+
/**
|
|
322
|
+
* Returns the font class for the label based on state.
|
|
323
|
+
* @returns {string} - Returns the font class for the label.
|
|
324
|
+
* @private
|
|
325
|
+
*/
|
|
326
|
+
private get labelFontClass();
|
|
327
|
+
/**
|
|
328
|
+
* Whether or not the component has a value.
|
|
329
|
+
* @returns {boolean} - Returns true if the component has a value or placeholder.
|
|
330
|
+
* @private
|
|
331
|
+
*/
|
|
332
|
+
private get hasValue();
|
|
325
333
|
/**
|
|
326
334
|
* Returns classmap configuration for wrapper elements in each layout.
|
|
327
335
|
* @private
|
|
@@ -379,6 +387,16 @@ export class AuroSelect extends AuroElement {
|
|
|
379
387
|
* @returns {void}
|
|
380
388
|
*/
|
|
381
389
|
private handleMenuLoadingChange;
|
|
390
|
+
/**
|
|
391
|
+
* Hides the dropdown bib if its open.
|
|
392
|
+
* @returns {void}
|
|
393
|
+
*/
|
|
394
|
+
hideBib(): void;
|
|
395
|
+
/**
|
|
396
|
+
* Shows the dropdown bib if there are options to show.
|
|
397
|
+
* @returns {void}
|
|
398
|
+
*/
|
|
399
|
+
showBib(): void;
|
|
382
400
|
/**
|
|
383
401
|
* Function to support @focusin event.
|
|
384
402
|
* @private
|
|
@@ -418,16 +436,6 @@ export class AuroSelect extends AuroElement {
|
|
|
418
436
|
* @returns {void}
|
|
419
437
|
*/
|
|
420
438
|
reset(): void;
|
|
421
|
-
/**
|
|
422
|
-
* Hide dropdownbib if it's open.
|
|
423
|
-
* @returns {void}
|
|
424
|
-
*/
|
|
425
|
-
hideBib(): void;
|
|
426
|
-
/**
|
|
427
|
-
* Shows the dropdown bib if there are options to show.
|
|
428
|
-
* @returns {void}
|
|
429
|
-
*/
|
|
430
|
-
showBib(): void;
|
|
431
439
|
/**
|
|
432
440
|
* Validates value.
|
|
433
441
|
* @param {boolean} [force=false] - Whether to force validation.
|