@aurodesignsystem/auro-formkit 3.1.0-beta.1 → 3.1.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 (49) hide show
  1. package/CHANGELOG.md +9 -3
  2. package/components/checkbox/demo/api.min.js +468 -25
  3. package/components/checkbox/demo/index.min.js +468 -25
  4. package/components/checkbox/dist/index.js +468 -25
  5. package/components/checkbox/dist/registered.js +468 -25
  6. package/components/combobox/demo/api.md +1 -1
  7. package/components/combobox/demo/api.min.js +1265 -235
  8. package/components/combobox/demo/index.min.js +1265 -235
  9. package/components/combobox/dist/auro-combobox.d.ts +32 -5
  10. package/components/combobox/dist/index.js +1130 -100
  11. package/components/combobox/dist/registered.js +1130 -100
  12. package/components/counter/demo/api.md +1 -1
  13. package/components/counter/demo/api.min.js +575 -71
  14. package/components/counter/demo/index.min.js +575 -71
  15. package/components/counter/dist/auro-counter-group.d.ts +2 -5
  16. package/components/counter/dist/index.js +575 -71
  17. package/components/counter/dist/registered.js +575 -71
  18. package/components/datepicker/demo/api.md +0 -1
  19. package/components/datepicker/demo/api.min.js +1077 -106
  20. package/components/datepicker/demo/index.min.js +1077 -106
  21. package/components/datepicker/dist/auro-datepicker.d.ts +0 -13
  22. package/components/datepicker/dist/index.js +1077 -106
  23. package/components/datepicker/dist/registered.js +1077 -106
  24. package/components/dropdown/demo/api.md +9 -6
  25. package/components/dropdown/demo/api.min.js +107 -43
  26. package/components/dropdown/demo/index.md +0 -83
  27. package/components/dropdown/demo/index.min.js +107 -43
  28. package/components/dropdown/dist/auro-dropdown.d.ts +30 -12
  29. package/components/dropdown/dist/index.js +107 -43
  30. package/components/dropdown/dist/registered.js +107 -43
  31. package/components/input/demo/api.md +4 -1
  32. package/components/input/demo/api.min.js +503 -25
  33. package/components/input/demo/index.min.js +503 -25
  34. package/components/input/dist/base-input.d.ts +24 -0
  35. package/components/input/dist/index.js +503 -25
  36. package/components/input/dist/registered.js +503 -25
  37. package/components/radio/demo/api.min.js +468 -25
  38. package/components/radio/demo/index.min.js +468 -25
  39. package/components/radio/dist/index.js +468 -25
  40. package/components/radio/dist/registered.js +468 -25
  41. package/components/select/demo/api.md +1 -1
  42. package/components/select/demo/api.min.js +575 -71
  43. package/components/select/demo/index.md +1 -46
  44. package/components/select/demo/index.min.js +575 -71
  45. package/components/select/dist/auro-select.d.ts +2 -5
  46. package/components/select/dist/index.js +575 -71
  47. package/components/select/dist/registered.js +575 -71
  48. package/package.json +2 -2
  49. package/components/form/demo/autocomplete.html +0 -15
@@ -379,7 +379,7 @@ Applying the `noCheckmark` attribute will prevent the checkmark icon from being
379
379
 
380
380
  ## Example with custom bib height
381
381
 
382
- This example shows how to set a custom height for the bib from `<auro-dropdown>`.
382
+ This example shows how to set a custom height for the bib from `<auro-dropdown>`.
383
383
 
384
384
  Custom height dimensions are set by using the `dropdownSize` CSS Part and then applying a `max-height` rule and value.
385
385
 
@@ -434,51 +434,6 @@ Custom height dimensions are set by using the `dropdownSize` CSS Part and then a
434
434
  <!-- AURO-GENERATED-CONTENT:END -->
435
435
  </auro-accordion>
436
436
 
437
- ## Example with fullscreen dropdown breakpoint override
438
-
439
- This example overrides the default dropdown behavior to force a non-fullscreen view on any screen size. `disabled`
440
- ensures that the dropdown will never be fullscreen.
441
- Please use `xl` if you want the opposite behavior, where a dropdown is always fullscreen.
442
-
443
- <div class="exampleWrapper">
444
- <!-- AURO-GENERATED-CONTENT:START (FILE:src=./../apiExamples/forcedFullscreenDisabled.html) -->
445
- <!-- The below content is automatically added from ./../apiExamples/forcedFullscreenDisabled.html -->
446
- <auro-select fullscreenBreakpoint="disabled">
447
- <span slot="bib.fullscreen.headline">Bib Headline</span>
448
- <span slot="label">Select Example</span>
449
- <auro-menu>
450
- <auro-menuoption value="stops">Stops</auro-menuoption>
451
- <auro-menuoption value="price">Price</auro-menuoption>
452
- <auro-menuoption value="duration">Duration</auro-menuoption>
453
- <auro-menuoption value="departure">Departure</auro-menuoption>
454
- <auro-menuoption value="arrival">Arrival</auro-menuoption>
455
- <auro-menuoption value="prefer alaska">Prefer Alaska</auro-menuoption>
456
- </auro-menu>
457
- </auro-select>
458
- <!-- AURO-GENERATED-CONTENT:END -->
459
- </div>
460
- <auro-accordion alignRight>
461
- <span slot="trigger">See code</span>
462
- <!-- AURO-GENERATED-CONTENT:START (CODE:src=./../apiExamples/forcedFullscreenDisabled.html) -->
463
- <!-- The below code snippet is automatically added from ./../apiExamples/forcedFullscreenDisabled.html -->
464
-
465
- ```html
466
- <auro-select fullscreenBreakpoint="disabled">
467
- <span slot="bib.fullscreen.headline">Bib Headline</span>
468
- <span slot="label">Select Example</span>
469
- <auro-menu>
470
- <auro-menuoption value="stops">Stops</auro-menuoption>
471
- <auro-menuoption value="price">Price</auro-menuoption>
472
- <auro-menuoption value="duration">Duration</auro-menuoption>
473
- <auro-menuoption value="departure">Departure</auro-menuoption>
474
- <auro-menuoption value="arrival">Arrival</auro-menuoption>
475
- <auro-menuoption value="prefer alaska">Prefer Alaska</auro-menuoption>
476
- </auro-menu>
477
- </auro-select>
478
- ```
479
- <!-- AURO-GENERATED-CONTENT:END -->
480
- </auro-accordion>
481
-
482
437
  ## Error State
483
438
 
484
439
  Use the `error` boolean attribute to toggle the error UI.