@duetds/components 4.31.0 → 4.33.2
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/hydrate/index.js +1895 -77
- package/lib/cjs/{dom-e89ebf90.js → dom-c850c8d7.js} +1 -1
- package/lib/cjs/duet-alert.cjs.entry.js +2 -2
- package/lib/cjs/duet-badge.cjs.entry.js +1 -1
- package/lib/cjs/duet-button_2.cjs.entry.js +4 -4
- package/lib/cjs/duet-caption_4.cjs.entry.js +17 -10
- package/lib/cjs/duet-card.cjs.entry.js +5 -5
- package/lib/cjs/duet-checkbox.cjs.entry.js +2 -2
- package/lib/cjs/duet-choice_2.cjs.entry.js +53 -24
- package/lib/cjs/duet-collapsible.cjs.entry.js +4 -449
- package/lib/cjs/duet-cookie-consent.cjs.entry.js +1 -1
- package/lib/cjs/duet-date-picker.cjs.entry.js +7 -7
- package/lib/cjs/duet-divider_2.cjs.entry.js +1 -1
- package/lib/cjs/duet-editable-table-button.cjs.entry.js +89 -0
- package/lib/cjs/duet-editable-table_4.cjs.entry.js +1445 -0
- package/lib/cjs/duet-empty-state.cjs.entry.js +1 -1
- package/lib/cjs/duet-fieldset.cjs.entry.js +1 -1
- package/lib/cjs/duet-footer.cjs.entry.js +2 -2
- package/lib/cjs/duet-grid_2.cjs.entry.js +69 -4
- package/lib/cjs/duet-header_2.cjs.entry.js +3 -3
- package/lib/cjs/duet-hero.cjs.entry.js +2 -2
- package/lib/cjs/duet-icon.cjs.entry.js +5 -13
- package/lib/cjs/duet-input_2.cjs.entry.js +6 -6
- package/lib/cjs/duet-layout.cjs.entry.js +1 -1
- package/lib/cjs/duet-list_2.cjs.entry.js +2 -2
- package/lib/cjs/duet-modal.cjs.entry.js +3 -3
- package/lib/cjs/duet-notification_2.cjs.entry.js +2 -2
- package/lib/cjs/duet-number-input.cjs.entry.js +2 -2
- package/lib/cjs/duet-progress.cjs.entry.js +75 -0
- package/lib/cjs/duet-radio_2.cjs.entry.js +2 -2
- package/lib/cjs/duet-range-slider.cjs.entry.js +2 -2
- package/lib/cjs/duet-select.cjs.entry.js +5 -5
- package/lib/cjs/duet-step_2.cjs.entry.js +1 -1
- package/lib/cjs/duet-tab_2.cjs.entry.js +3 -3
- package/lib/cjs/duet-textarea.cjs.entry.js +5 -5
- package/lib/cjs/duet-toggle.cjs.entry.js +1 -1
- package/lib/cjs/duet-tooltip.cjs.entry.js +2 -2
- package/lib/cjs/duet-tray.cjs.entry.js +3 -3
- package/lib/cjs/duet-upload-aria-status.cjs.entry.js +100 -0
- package/lib/cjs/duet-visually-hidden.cjs.entry.js +1 -1
- package/lib/cjs/duet.cjs.js +4 -4
- package/lib/cjs/{focus-utils-bd331feb.js → focus-utils-27c696bb.js} +1 -1
- package/lib/cjs/{index-113c2add.js → index-18b0f43a.js} +91 -77
- package/lib/cjs/{language-utils-48b8860b.js → language-utils-aa282901.js} +6 -2
- package/lib/cjs/loader.cjs.js +3 -3
- package/lib/cjs/{shadow-css-0c8c175b.js → shadow-css-e3edeed1.js} +9 -10
- package/lib/cjs/{token-utils-13e5d13e.js → token-utils-63a9c8dc.js} +1 -1
- package/lib/cjs/tokens-8596cece.js +459 -0
- package/lib/cjs/{tokens.module-53b3bd92.js → tokens.module-6b2df1c2.js} +2 -0
- package/lib/cjs/{watch-options-3877c082.js → watch-options-d88afac0.js} +29 -6
- package/lib/collection/collection-manifest.json +17 -3
- package/lib/collection/components/duet-alert/duet-alert.js +4 -4
- package/lib/collection/components/duet-button/duet-button.js +10 -10
- package/lib/collection/components/duet-card/duet-card.css +20 -0
- package/lib/collection/components/duet-card/duet-card.js +4 -1
- package/lib/collection/components/duet-checkbox/duet-checkbox.css +1 -1
- package/lib/collection/components/duet-choice/duet-choice.css +16 -3
- package/lib/collection/components/duet-choice/duet-choice.js +117 -33
- package/lib/collection/components/duet-choice-group/duet-choice-group.js +4 -4
- package/lib/collection/components/duet-date-picker/duet-date-picker.js +16 -16
- package/lib/collection/components/duet-editable-table/duet-editable-table-button.css +32 -0
- package/lib/collection/components/duet-editable-table/duet-editable-table-button.js +218 -0
- package/lib/collection/components/duet-editable-table/duet-editable-table-item.css +36 -0
- package/lib/collection/components/duet-editable-table/duet-editable-table-item.js +203 -0
- package/lib/collection/components/duet-editable-table/duet-editable-table-tabledata.js +13 -0
- package/lib/collection/components/duet-editable-table/duet-editable-table.css +16 -0
- package/lib/collection/components/duet-editable-table/duet-editable-table.js +348 -0
- package/lib/collection/components/duet-footer/duet-footer.js +10 -10
- package/lib/collection/components/duet-grid/duet-grid.js +74 -6
- package/lib/collection/components/duet-grid-item/duet-grid-item.js +4 -4
- package/lib/collection/components/duet-header/duet-header.js +16 -16
- package/lib/collection/components/duet-heading/duet-heading.css +3 -0
- package/lib/collection/components/duet-heading/duet-heading.js +7 -6
- package/lib/collection/components/duet-hero/duet-hero.js +8 -8
- package/lib/collection/components/duet-icon/icon-utils.js +5 -8
- package/lib/collection/components/duet-input/duet-input.css +15 -0
- package/lib/collection/components/duet-input/duet-input.js +4 -4
- package/lib/collection/components/duet-link/duet-link.js +8 -8
- package/lib/collection/components/duet-logo/duet-logo.js +4 -4
- package/lib/collection/components/duet-modal/duet-modal.js +8 -8
- package/lib/collection/components/duet-notification/duet-notification.js +8 -8
- package/lib/collection/components/duet-notification-drawer/duet-notification-drawer.js +8 -8
- package/lib/collection/components/duet-number-input/duet-number-input.js +20 -20
- package/lib/collection/components/duet-paragraph/duet-paragraph.css +6 -0
- package/lib/collection/components/duet-paragraph/duet-paragraph.js +34 -3
- package/lib/collection/components/duet-progress/duet-progress.css +103 -0
- package/lib/collection/components/duet-progress/duet-progress.js +240 -0
- package/lib/collection/components/duet-radio/duet-radio.js +6 -6
- package/lib/collection/components/duet-select/duet-select.css +15 -0
- package/lib/collection/components/duet-select/duet-select.js +3 -3
- package/lib/collection/components/duet-step/duet-step.js +8 -8
- package/lib/collection/components/duet-tab-group/duet-tab-group.css +2 -2
- package/lib/collection/components/duet-tab-group/duet-tab-group.js +10 -10
- package/lib/collection/components/duet-textarea/duet-textarea.css +19 -0
- package/lib/collection/components/duet-textarea/duet-textarea.js +5 -4
- package/lib/collection/components/duet-tooltip/duet-tooltip.js +14 -14
- package/lib/collection/components/duet-tray/duet-tray.js +12 -12
- package/lib/collection/components/duet-upload/duet-upload.css +64 -0
- package/lib/collection/components/duet-upload/duet-upload.js +1863 -0
- package/lib/collection/components/duet-upload/errorcodes.utils.js +32 -0
- package/lib/collection/components/duet-upload/mock.helpers.js +91 -0
- package/lib/collection/components/duet-upload/upload-editable-item-error.js +16 -0
- package/lib/collection/components/duet-upload/upload-editable-item-inprogres.js +8 -0
- package/lib/collection/components/duet-upload/upload-editable-item-success.js +30 -0
- package/lib/collection/components/duet-upload/upload-validators.js +93 -0
- package/lib/collection/components/duet-upload/upload.helpers.js +13 -0
- package/lib/collection/components/duet-upload/xhr.helpers.js +30 -0
- package/lib/collection/components/duet-upload-aria-status/duet-upload-aria-status.js +217 -0
- package/lib/collection/utils/js-utils.js +12 -0
- package/lib/collection/utils/language-utils.js +6 -3
- package/lib/collection/utils/watch-options.js +35 -6
- package/lib/custom-elements-bundle/index.d.ts +36 -0
- package/lib/custom-elements-bundle/index.js +2014 -322
- package/lib/duet/duet.esm.js +1 -1
- package/lib/duet/duet.js +1 -1
- package/lib/duet/{p-60ab57d4.entry.js → p-042ec8b1.entry.js} +1 -1
- package/lib/duet/{p-bcae23fc.system.entry.js → p-0435b54a.system.entry.js} +1 -1
- package/lib/duet/{p-dc85d2a4.entry.js → p-04b3e682.entry.js} +1 -1
- package/lib/duet/p-0ac2e60d.system.entry.js +4 -0
- package/lib/duet/p-0d22396e.system.js +16 -0
- package/lib/duet/p-1082d9f2.system.entry.js +4 -0
- package/lib/duet/p-12721178.js +4 -0
- package/lib/duet/{p-7d080785.system.entry.js → p-12fc4849.system.entry.js} +1 -1
- package/lib/duet/{p-c4737f88.entry.js → p-15fae689.entry.js} +1 -1
- package/lib/duet/p-1ad58142.entry.js +4 -0
- package/lib/duet/{p-c5f10483.system.entry.js → p-1c7d7cdd.system.entry.js} +1 -1
- package/lib/duet/p-1cf8dbc7.system.js +4 -0
- package/lib/duet/p-1dcbd837.system.entry.js +4 -0
- package/lib/duet/{p-fdecaf46.entry.js → p-1ecddc1d.entry.js} +1 -1
- package/lib/duet/p-2764f081.js +4 -0
- package/lib/duet/p-2b4bd1b2.system.entry.js +4 -0
- package/lib/duet/p-2d8e0faa.system.entry.js +4 -0
- package/lib/duet/{p-453955cc.system.entry.js → p-33538e90.system.entry.js} +1 -1
- package/lib/duet/{p-b1b8e510.entry.js → p-3364cfd2.entry.js} +1 -1
- package/lib/duet/p-350cea4e.system.entry.js +4 -0
- package/lib/duet/{p-bd9a7d8f.js → p-35a3794e.js} +0 -0
- package/lib/duet/p-39e9d638.entry.js +4 -0
- package/lib/duet/{p-1e7222c2.entry.js → p-3a7e519e.entry.js} +1 -1
- package/lib/duet/{p-9ce1baab.system.entry.js → p-3bcf2054.system.entry.js} +1 -1
- package/lib/duet/{p-322d1c38.js → p-3c1971d8.js} +1 -1
- package/lib/duet/{p-ef45cfe9.system.entry.js → p-3cad13af.system.entry.js} +1 -1
- package/lib/duet/p-408e8cdb.system.js +4 -0
- package/lib/duet/p-4a14da52.entry.js +4 -0
- package/lib/duet/{p-f96c4093.system.entry.js → p-4e17a6cb.system.entry.js} +1 -1
- package/lib/duet/{p-fbd83d67.entry.js → p-50b796eb.entry.js} +1 -1
- package/lib/duet/{p-22f56356.system.entry.js → p-5727cd82.system.entry.js} +1 -1
- package/lib/duet/{p-9c94be45.entry.js → p-582f3a2c.entry.js} +1 -1
- package/lib/duet/{p-e39471b6.entry.js → p-5b9621e2.entry.js} +1 -1
- package/lib/duet/{p-3e1ef509.system.entry.js → p-5f79eff8.system.entry.js} +1 -1
- package/lib/duet/{p-95626e7e.system.entry.js → p-60e721aa.system.entry.js} +1 -1
- package/lib/duet/{p-b03a46b6.entry.js → p-60ef3d05.entry.js} +1 -1
- package/lib/duet/{p-57ea2576.system.js → p-61fc3872.system.js} +1 -1
- package/lib/duet/{p-1cd7177f.entry.js → p-637df820.entry.js} +1 -1
- package/lib/duet/{p-07263910.system.entry.js → p-6402041d.system.entry.js} +1 -1
- package/lib/duet/p-64c0aa2a.entry.js +4 -0
- package/lib/duet/{p-28b67b94.entry.js → p-65451003.entry.js} +1 -1
- package/lib/duet/{p-1bfbc988.entry.js → p-659d6cb7.entry.js} +1 -1
- package/lib/duet/{p-91fa68a5.js → p-66fdebc5.js} +1 -1
- package/lib/duet/p-6708db8a.entry.js +4 -0
- package/lib/duet/{p-e08b8909.entry.js → p-68635a1c.entry.js} +1 -1
- package/lib/duet/p-6e363557.system.js +4 -0
- package/lib/duet/p-70fafc98.system.js +4 -0
- package/lib/duet/p-720a36f2.entry.js +4 -0
- package/lib/duet/{p-f53c8019.entry.js → p-72629304.entry.js} +1 -1
- package/lib/duet/p-75a104e3.entry.js +4 -0
- package/lib/duet/{p-02ad46a0.system.entry.js → p-75e5d4d1.system.entry.js} +1 -1
- package/lib/duet/{p-33cf6ed1.entry.js → p-7ab0bad8.entry.js} +1 -1
- package/lib/duet/{p-e834c8d5.system.entry.js → p-7ceaf4ef.system.entry.js} +1 -1
- package/lib/duet/{p-a1d12e94.system.entry.js → p-7f8cce41.system.entry.js} +1 -1
- package/lib/duet/{p-6d2da245.entry.js → p-7fed7f57.entry.js} +1 -1
- package/lib/duet/p-8143f3de.js +4 -0
- package/lib/duet/p-8c2f14d8.system.entry.js +4 -0
- package/lib/duet/{p-4670a654.entry.js → p-8c730326.entry.js} +1 -1
- package/lib/duet/{p-de093c16.entry.js → p-9125ed25.entry.js} +1 -1
- package/lib/duet/p-933c2774.system.entry.js +4 -0
- package/lib/duet/{p-b7e50cfa.entry.js → p-9584411c.entry.js} +1 -1
- package/lib/duet/p-987edcd0.js +15 -0
- package/lib/duet/p-9930e52e.entry.js +4 -0
- package/lib/duet/p-9a09ac2b.system.entry.js +4 -0
- package/lib/duet/{p-64109493.entry.js → p-a09ddd8f.entry.js} +1 -1
- package/lib/duet/{p-504dbf8f.system.entry.js → p-a2b2fa13.system.entry.js} +1 -1
- package/lib/duet/{p-2826f987.js → p-ad07f399.js} +1 -1
- package/lib/duet/{p-605bc214.system.entry.js → p-b1ad7a52.system.entry.js} +1 -1
- package/lib/duet/{p-f0b1850a.system.entry.js → p-b5dc29b8.system.entry.js} +1 -1
- package/lib/duet/p-ba6214be.entry.js +4 -0
- package/lib/duet/{p-92d38668.system.entry.js → p-be349a3d.system.entry.js} +1 -1
- package/lib/duet/{p-56e172f5.system.entry.js → p-c0f3f60f.system.entry.js} +1 -1
- package/lib/duet/{p-fd98468a.system.js → p-c18a599e.system.js} +0 -0
- package/lib/duet/p-c3c95a34.system.entry.js +4 -0
- package/lib/duet/{p-d4b4bfa6.entry.js → p-c506017d.entry.js} +1 -1
- package/lib/duet/p-c74cecf2.system.entry.js +4 -0
- package/lib/duet/p-c9a11360.entry.js +4 -0
- package/lib/duet/p-cd21755b.entry.js +4 -0
- package/lib/duet/p-cd597d62.system.entry.js +4 -0
- package/lib/duet/p-cff461b6.entry.js +4 -0
- package/lib/duet/{p-7b6db837.system.entry.js → p-d0fb19f7.system.entry.js} +1 -1
- package/lib/duet/{p-69a5dc6b.entry.js → p-d1dfa30e.entry.js} +1 -1
- package/lib/duet/{p-1cec5a70.system.entry.js → p-d4e706ac.system.entry.js} +1 -1
- package/lib/duet/{p-8cb47a70.system.entry.js → p-d5e2bb48.system.entry.js} +1 -1
- package/lib/duet/p-dd79932a.entry.js +4 -0
- package/lib/duet/p-dd9b8fcb.system.entry.js +4 -0
- package/lib/duet/p-ddb6344c.system.js +4 -0
- package/lib/duet/{p-47645ea8.system.entry.js → p-de43620d.system.entry.js} +1 -1
- package/lib/duet/p-e038da47.system.entry.js +4 -0
- package/lib/duet/p-eb55ccd2.system.js +4 -0
- package/lib/duet/p-ebc4e334.js +4 -0
- package/lib/duet/{p-5fc7e1f7.system.entry.js → p-f37ffb6f.system.entry.js} +1 -1
- package/lib/duet/p-f8744611.entry.js +4 -0
- package/lib/duet/p-fa99eaa4.system.js +4 -0
- package/lib/duet/{p-746655ba.entry.js → p-fd00b025.entry.js} +1 -1
- package/lib/esm/{dom-21034390.js → dom-58cd15f6.js} +1 -1
- package/lib/esm/duet-alert.entry.js +2 -2
- package/lib/esm/duet-badge.entry.js +1 -1
- package/lib/esm/duet-button_2.entry.js +4 -4
- package/lib/esm/duet-caption_4.entry.js +17 -10
- package/lib/esm/duet-card.entry.js +5 -5
- package/lib/esm/duet-checkbox.entry.js +2 -2
- package/lib/esm/duet-choice_2.entry.js +54 -25
- package/lib/esm/duet-collapsible.entry.js +3 -448
- package/lib/esm/duet-cookie-consent.entry.js +1 -1
- package/lib/esm/duet-date-picker.entry.js +7 -7
- package/lib/esm/duet-divider_2.entry.js +1 -1
- package/lib/esm/duet-editable-table-button.entry.js +85 -0
- package/lib/esm/duet-editable-table_4.entry.js +1438 -0
- package/lib/esm/duet-empty-state.entry.js +1 -1
- package/lib/esm/duet-fieldset.entry.js +1 -1
- package/lib/esm/duet-footer.entry.js +2 -2
- package/lib/esm/duet-grid_2.entry.js +69 -4
- package/lib/esm/duet-header_2.entry.js +3 -3
- package/lib/esm/duet-hero.entry.js +2 -2
- package/lib/esm/duet-icon.entry.js +5 -13
- package/lib/esm/duet-input_2.entry.js +6 -6
- package/lib/esm/duet-layout.entry.js +1 -1
- package/lib/esm/duet-list_2.entry.js +2 -2
- package/lib/esm/duet-modal.entry.js +3 -3
- package/lib/esm/duet-notification_2.entry.js +2 -2
- package/lib/esm/duet-number-input.entry.js +2 -2
- package/lib/esm/duet-progress.entry.js +71 -0
- package/lib/esm/duet-radio_2.entry.js +2 -2
- package/lib/esm/duet-range-slider.entry.js +2 -2
- package/lib/esm/duet-select.entry.js +5 -5
- package/lib/esm/duet-step_2.entry.js +1 -1
- package/lib/esm/duet-tab_2.entry.js +3 -3
- package/lib/esm/duet-textarea.entry.js +5 -5
- package/lib/esm/duet-toggle.entry.js +1 -1
- package/lib/esm/duet-tooltip.entry.js +2 -2
- package/lib/esm/duet-tray.entry.js +3 -3
- package/lib/esm/duet-upload-aria-status.entry.js +96 -0
- package/lib/esm/duet-visually-hidden.entry.js +1 -1
- package/lib/esm/duet.js +4 -4
- package/lib/esm/{focus-utils-1995e5a9.js → focus-utils-c1fa24c4.js} +1 -1
- package/lib/esm/{index-6e246691.js → index-05e43a37.js} +91 -78
- package/lib/esm/{language-utils-d5c38f65.js → language-utils-344d894c.js} +6 -3
- package/lib/esm/loader.js +3 -3
- package/lib/esm/{shadow-css-31e2d504.js → shadow-css-7c726abb.js} +9 -10
- package/lib/esm/{token-utils-5a35377f.js → token-utils-590d9413.js} +1 -1
- package/lib/esm/tokens-e110dc89.js +453 -0
- package/lib/esm/{tokens.module-edb66c04.js → tokens.module-49cbf963.js} +3 -1
- package/lib/esm/watch-options-dd55bce8.js +57 -0
- package/lib/esm-es5/{dom-21034390.js → dom-58cd15f6.js} +0 -0
- package/lib/esm-es5/duet-alert.entry.js +1 -1
- package/lib/esm-es5/duet-badge.entry.js +1 -1
- package/lib/esm-es5/duet-button_2.entry.js +1 -1
- package/lib/esm-es5/duet-caption_4.entry.js +2 -2
- package/lib/esm-es5/duet-card.entry.js +1 -1
- package/lib/esm-es5/duet-checkbox.entry.js +1 -1
- package/lib/esm-es5/duet-choice_2.entry.js +1 -1
- package/lib/esm-es5/duet-collapsible.entry.js +2 -2
- package/lib/esm-es5/duet-cookie-consent.entry.js +1 -1
- package/lib/esm-es5/duet-date-picker.entry.js +1 -1
- package/lib/esm-es5/duet-divider_2.entry.js +1 -1
- package/lib/esm-es5/duet-editable-table-button.entry.js +4 -0
- package/lib/esm-es5/duet-editable-table_4.entry.js +4 -0
- package/lib/esm-es5/duet-empty-state.entry.js +1 -1
- package/lib/esm-es5/duet-fieldset.entry.js +1 -1
- package/lib/esm-es5/duet-footer.entry.js +1 -1
- package/lib/esm-es5/duet-grid_2.entry.js +2 -2
- package/lib/esm-es5/duet-header_2.entry.js +1 -1
- package/lib/esm-es5/duet-hero.entry.js +1 -1
- package/lib/esm-es5/duet-icon.entry.js +2 -2
- package/lib/esm-es5/duet-input_2.entry.js +1 -1
- package/lib/esm-es5/duet-layout.entry.js +1 -1
- package/lib/esm-es5/duet-list_2.entry.js +1 -1
- package/lib/esm-es5/duet-modal.entry.js +1 -1
- package/lib/esm-es5/duet-notification_2.entry.js +1 -1
- package/lib/esm-es5/duet-number-input.entry.js +1 -1
- package/lib/esm-es5/duet-progress.entry.js +4 -0
- package/lib/esm-es5/duet-radio_2.entry.js +1 -1
- package/lib/esm-es5/duet-range-slider.entry.js +1 -1
- package/lib/esm-es5/duet-select.entry.js +1 -1
- package/lib/esm-es5/duet-step_2.entry.js +1 -1
- package/lib/esm-es5/duet-tab_2.entry.js +2 -2
- package/lib/esm-es5/duet-textarea.entry.js +1 -1
- package/lib/esm-es5/duet-toggle.entry.js +1 -1
- package/lib/esm-es5/duet-tooltip.entry.js +1 -1
- package/lib/esm-es5/duet-tray.entry.js +1 -1
- package/lib/esm-es5/duet-upload-aria-status.entry.js +4 -0
- package/lib/esm-es5/duet-visually-hidden.entry.js +1 -1
- package/lib/esm-es5/duet.js +1 -1
- package/lib/esm-es5/{focus-utils-1995e5a9.js → focus-utils-c1fa24c4.js} +1 -1
- package/lib/esm-es5/index-05e43a37.js +4 -0
- package/lib/esm-es5/{language-utils-d5c38f65.js → language-utils-344d894c.js} +1 -1
- package/lib/esm-es5/loader.js +1 -1
- package/lib/esm-es5/shadow-css-7c726abb.js +15 -0
- package/lib/esm-es5/{token-utils-5a35377f.js → token-utils-590d9413.js} +1 -1
- package/lib/esm-es5/tokens-e110dc89.js +4 -0
- package/lib/esm-es5/tokens.module-49cbf963.js +4 -0
- package/lib/esm-es5/watch-options-dd55bce8.js +4 -0
- package/lib/html.html-data.json +427 -10
- package/lib/types/components/duet-choice/duet-choice.d.ts +23 -4
- package/lib/types/components/duet-date-picker/duet-date-picker.d.ts +5 -5
- package/lib/types/components/duet-editable-table/duet-editable-table-button.d.ts +72 -0
- package/lib/types/components/duet-editable-table/duet-editable-table-item.d.ts +72 -0
- package/lib/types/components/duet-editable-table/duet-editable-table-tabledata.d.ts +7 -0
- package/lib/types/components/duet-editable-table/duet-editable-table.d.ts +84 -0
- package/lib/types/components/duet-grid/duet-grid.d.ts +17 -2
- package/lib/types/components/duet-heading/duet-heading.d.ts +2 -2
- package/lib/types/components/duet-paragraph/duet-paragraph.d.ts +9 -1
- package/lib/types/components/duet-progress/duet-progress.d.ts +64 -0
- package/lib/types/components/duet-upload/duet-upload.d.ts +404 -0
- package/lib/types/components/duet-upload/errorcodes.utils.d.ts +8 -0
- package/lib/types/components/duet-upload/mock.helpers.d.ts +2 -0
- package/lib/types/components/duet-upload/upload-editable-item-error.d.ts +7 -0
- package/lib/types/components/duet-upload/upload-editable-item-inprogres.d.ts +7 -0
- package/lib/types/components/duet-upload/upload-editable-item-success.d.ts +8 -0
- package/lib/types/components/duet-upload/upload-validators.d.ts +12 -0
- package/lib/types/components/duet-upload/upload.helpers.d.ts +1 -0
- package/lib/types/components/duet-upload/xhr.helpers.d.ts +18 -0
- package/lib/types/components/duet-upload-aria-status/duet-upload-aria-status.d.ts +49 -0
- package/lib/types/components.d.ts +791 -21
- package/lib/types/utils/js-utils.d.ts +1 -0
- package/lib/types/utils/language-utils.d.ts +5 -1
- package/lib/types/utils/watch-options.d.ts +2 -0
- package/package.json +6 -6
- package/lib/cjs/duet-table.cjs.entry.js +0 -132
- package/lib/duet/p-0058512b.js +0 -4
- package/lib/duet/p-0224db45.entry.js +0 -4
- package/lib/duet/p-15c15c6a.js +0 -15
- package/lib/duet/p-202bbd70.entry.js +0 -4
- package/lib/duet/p-33426ddc.entry.js +0 -4
- package/lib/duet/p-3d3f773d.system.entry.js +0 -4
- package/lib/duet/p-3f78a826.system.js +0 -4
- package/lib/duet/p-418b2ce7.system.js +0 -4
- package/lib/duet/p-43e39d98.system.js +0 -4
- package/lib/duet/p-44ffb960.entry.js +0 -4
- package/lib/duet/p-5230ee3c.system.entry.js +0 -4
- package/lib/duet/p-5aa0d34d.entry.js +0 -4
- package/lib/duet/p-6a230911.system.entry.js +0 -4
- package/lib/duet/p-6a356ab1.system.js +0 -4
- package/lib/duet/p-6a760b8a.entry.js +0 -4
- package/lib/duet/p-712e7dde.system.entry.js +0 -4
- package/lib/duet/p-82dc2e0b.entry.js +0 -4
- package/lib/duet/p-8c8e82aa.system.js +0 -4
- package/lib/duet/p-8c980350.system.entry.js +0 -4
- package/lib/duet/p-8f03c3eb.entry.js +0 -4
- package/lib/duet/p-96808a2e.system.entry.js +0 -4
- package/lib/duet/p-96c103b2.system.entry.js +0 -4
- package/lib/duet/p-9a89ec39.js +0 -4
- package/lib/duet/p-9ff25646.entry.js +0 -4
- package/lib/duet/p-b694cbf5.system.js +0 -4
- package/lib/duet/p-b82927b0.system.entry.js +0 -4
- package/lib/duet/p-ba205dca.entry.js +0 -4
- package/lib/duet/p-be19c57b.system.entry.js +0 -4
- package/lib/duet/p-c5beceed.js +0 -4
- package/lib/duet/p-d35fd913.system.entry.js +0 -4
- package/lib/duet/p-d7623eb8.system.entry.js +0 -4
- package/lib/duet/p-de842863.entry.js +0 -4
- package/lib/duet/p-e58ca7af.system.js +0 -16
- package/lib/esm/duet-table.entry.js +0 -128
- package/lib/esm/watch-options-de55ea78.js +0 -35
- package/lib/esm-es5/duet-table.entry.js +0 -4
- package/lib/esm-es5/index-6e246691.js +0 -4
- package/lib/esm-es5/shadow-css-31e2d504.js +0 -15
- package/lib/esm-es5/tokens.module-edb66c04.js +0 -4
- package/lib/esm-es5/watch-options-de55ea78.js +0 -4
package/lib/html.html-data.json
CHANGED
|
@@ -673,7 +673,7 @@
|
|
|
673
673
|
},
|
|
674
674
|
{
|
|
675
675
|
"name": "accessible-described-by",
|
|
676
|
-
"description": "Indicates the id of a component that describes the choice."
|
|
676
|
+
"description": "Indicates the id of a component that describes the choice.\nif this is set to an empty string it will prevent screenreaders from flowing to a collapsible content\nand can be used as an escape hatch if that behaviour is undesired."
|
|
677
677
|
},
|
|
678
678
|
{
|
|
679
679
|
"name": "accessible-label-info-button",
|
|
@@ -715,6 +715,14 @@
|
|
|
715
715
|
"name": "identifier",
|
|
716
716
|
"description": "Adds a unique identifier for the choice button."
|
|
717
717
|
},
|
|
718
|
+
{
|
|
719
|
+
"name": "info-label",
|
|
720
|
+
"description": "Hint text to display before the user types into the date picker input."
|
|
721
|
+
},
|
|
722
|
+
{
|
|
723
|
+
"name": "accessible-label-info-default",
|
|
724
|
+
"description": "Placeholder defaults"
|
|
725
|
+
},
|
|
718
726
|
{
|
|
719
727
|
"name": "label",
|
|
720
728
|
"description": "Label for the choice button."
|
|
@@ -1058,7 +1066,7 @@
|
|
|
1058
1066
|
},
|
|
1059
1067
|
{
|
|
1060
1068
|
"name": "caption",
|
|
1061
|
-
"description": "Caption (underneath label) that can be set as a way of adding extra information"
|
|
1069
|
+
"description": "Caption (underneath label) that can be set as a way of adding extra information."
|
|
1062
1070
|
},
|
|
1063
1071
|
{
|
|
1064
1072
|
"name": "direction",
|
|
@@ -1102,7 +1110,7 @@
|
|
|
1102
1110
|
},
|
|
1103
1111
|
{
|
|
1104
1112
|
"name": "language",
|
|
1105
|
-
"description": "The currently active language. This setting changes the month/year/day
|
|
1113
|
+
"description": "The currently active language. This setting changes the month/year/day.\nnames and button labels as well as all screen reader labels.",
|
|
1106
1114
|
"values": [
|
|
1107
1115
|
{
|
|
1108
1116
|
"name": "en"
|
|
@@ -1129,7 +1137,7 @@
|
|
|
1129
1137
|
},
|
|
1130
1138
|
{
|
|
1131
1139
|
"name": "max",
|
|
1132
|
-
"description": "Minimum date allowed to be picked. Must be in IS0-8601 format: YYYY-MM-DD
|
|
1140
|
+
"description": "Minimum date allowed to be picked. Must be in IS0-8601 format: YYYY-MM-DD.\nThis setting can be used alone or together with the min property."
|
|
1133
1141
|
},
|
|
1134
1142
|
{
|
|
1135
1143
|
"name": "min",
|
|
@@ -1145,7 +1153,7 @@
|
|
|
1145
1153
|
},
|
|
1146
1154
|
{
|
|
1147
1155
|
"name": "placeholder-default",
|
|
1148
|
-
"description": "Placeholder defaults"
|
|
1156
|
+
"description": "Placeholder defaults."
|
|
1149
1157
|
},
|
|
1150
1158
|
{
|
|
1151
1159
|
"name": "required",
|
|
@@ -1240,6 +1248,107 @@
|
|
|
1240
1248
|
}
|
|
1241
1249
|
]
|
|
1242
1250
|
},
|
|
1251
|
+
{
|
|
1252
|
+
"name": "duet-editable-table",
|
|
1253
|
+
"description": {
|
|
1254
|
+
"kind": "markdown",
|
|
1255
|
+
"value": "---\ntitle: Editable Table\nname: duet-editable-table\nstatus: ready\nplatforms: Web only\ninternationalization: Supported\naccessibility: Keyboard, Screen Reader\nreleased: 3.4.0\nssr: Supported\nintro: Editable Table is a functional component for enhancing tabular\n data with editable possibilities. It is based upon duet-table but is intended to take a \n Javascript Map of Records and map them into grouped sections \ndescription: It’s important to understand that this component only give you the tools to \n represent a map in a visual way, and connect various \"actions\" to each line item. \n What the line item is and which actions you choose to run are your decisions, \n any action given results an event that contains information about what action was \n clicked/pressed and which line item it originated from.\n The rest of any logic will have to be provided by you.\nexample_height: 400px\nexamples:\n - name: Editable table\n code: This first example creates the actual URL and DOCS, hence it needs to be\n here.\n - name: Editable table with custom groups and mappings\n file: fixtures/duet-editable-table_table_with_custom_groups_and_mappings.html\n - name: Editable table with hidden groups\n file: fixtures/duet-editable-table_table_with_hidden_groups.html\ntags:\n - docs-components\n\n---\n\n<!-- usage -->"
|
|
1256
|
+
},
|
|
1257
|
+
"attributes": [
|
|
1258
|
+
{
|
|
1259
|
+
"name": "accessible-role",
|
|
1260
|
+
"description": "Exposes the aria role for optimizing accessibility."
|
|
1261
|
+
},
|
|
1262
|
+
{
|
|
1263
|
+
"name": "actions",
|
|
1264
|
+
"description": "Array of actions that are mapped via the map variable to the various groups defined in group."
|
|
1265
|
+
},
|
|
1266
|
+
{
|
|
1267
|
+
"name": "groups",
|
|
1268
|
+
"description": "Array of group names that you want the editable table to display (can be used to hide or show groups depending on conditions)."
|
|
1269
|
+
},
|
|
1270
|
+
{
|
|
1271
|
+
"name": "hide-table-labels",
|
|
1272
|
+
"description": "Shows or hides the table labels."
|
|
1273
|
+
},
|
|
1274
|
+
{
|
|
1275
|
+
"name": "theme",
|
|
1276
|
+
"description": "Theme of the table.",
|
|
1277
|
+
"values": [
|
|
1278
|
+
{
|
|
1279
|
+
"name": "default"
|
|
1280
|
+
},
|
|
1281
|
+
{
|
|
1282
|
+
"name": "turva"
|
|
1283
|
+
}
|
|
1284
|
+
]
|
|
1285
|
+
}
|
|
1286
|
+
],
|
|
1287
|
+
"references": [
|
|
1288
|
+
{
|
|
1289
|
+
"name": "Source code",
|
|
1290
|
+
"url": "./https:/lt-devtool.visualstudio.com/_git/Duet%20Design%20System?path=/packages/components/src/components/duet-editable-table/duet-editable-table.tsx"
|
|
1291
|
+
}
|
|
1292
|
+
]
|
|
1293
|
+
},
|
|
1294
|
+
{
|
|
1295
|
+
"name": "duet-editable-table-button",
|
|
1296
|
+
"description": {
|
|
1297
|
+
"kind": "markdown",
|
|
1298
|
+
"value": "---\ntitle: Editable Table\nname: duet-editable-table\nstatus: ready\nplatforms: Web only\ninternationalization: Supported\naccessibility: Keyboard, Screen Reader\nreleased: 3.4.0\nssr: Supported\nintro: Editable Table is a functional component for enhancing tabular\n data with editable possibilities. It is based upon duet-table but is intended to take a \n Javascript Map of Records and map them into grouped sections \ndescription: It’s important to understand that this component only give you the tools to \n represent a map in a visual way, and connect various \"actions\" to each line item. \n What the line item is and which actions you choose to run are your decisions, \n any action given results an event that contains information about what action was \n clicked/pressed and which line item it originated from.\n The rest of any logic will have to be provided by you.\nexample_height: 400px\nexamples:\n - name: Editable table\n code: This first example creates the actual URL and DOCS, hence it needs to be\n here.\n - name: Editable table with custom groups and mappings\n file: fixtures/duet-editable-table_table_with_custom_groups_and_mappings.html\n - name: Editable table with hidden groups\n file: fixtures/duet-editable-table_table_with_hidden_groups.html\ntags:\n - docs-components\n\n---\n\n<!-- usage -->"
|
|
1299
|
+
},
|
|
1300
|
+
"attributes": [
|
|
1301
|
+
{
|
|
1302
|
+
"name": "theme",
|
|
1303
|
+
"description": "Theme of the empty state component.",
|
|
1304
|
+
"values": [
|
|
1305
|
+
{
|
|
1306
|
+
"name": "default"
|
|
1307
|
+
},
|
|
1308
|
+
{
|
|
1309
|
+
"name": "turva"
|
|
1310
|
+
}
|
|
1311
|
+
]
|
|
1312
|
+
}
|
|
1313
|
+
],
|
|
1314
|
+
"references": [
|
|
1315
|
+
{
|
|
1316
|
+
"name": "Source code",
|
|
1317
|
+
"url": "./https:/lt-devtool.visualstudio.com/_git/Duet%20Design%20System?path=/packages/components/src/components/duet-editable-table/duet-editable-table-button.tsx"
|
|
1318
|
+
}
|
|
1319
|
+
]
|
|
1320
|
+
},
|
|
1321
|
+
{
|
|
1322
|
+
"name": "duet-editable-table-item",
|
|
1323
|
+
"description": {
|
|
1324
|
+
"kind": "markdown",
|
|
1325
|
+
"value": "---\ntitle: Editable Table\nname: duet-editable-table\nstatus: ready\nplatforms: Web only\ninternationalization: Supported\naccessibility: Keyboard, Screen Reader\nreleased: 3.4.0\nssr: Supported\nintro: Editable Table is a functional component for enhancing tabular\n data with editable possibilities. It is based upon duet-table but is intended to take a \n Javascript Map of Records and map them into grouped sections \ndescription: It’s important to understand that this component only give you the tools to \n represent a map in a visual way, and connect various \"actions\" to each line item. \n What the line item is and which actions you choose to run are your decisions, \n any action given results an event that contains information about what action was \n clicked/pressed and which line item it originated from.\n The rest of any logic will have to be provided by you.\nexample_height: 400px\nexamples:\n - name: Editable table\n code: This first example creates the actual URL and DOCS, hence it needs to be\n here.\n - name: Editable table with custom groups and mappings\n file: fixtures/duet-editable-table_table_with_custom_groups_and_mappings.html\n - name: Editable table with hidden groups\n file: fixtures/duet-editable-table_table_with_hidden_groups.html\ntags:\n - docs-components\n\n---\n\n<!-- usage -->"
|
|
1326
|
+
},
|
|
1327
|
+
"attributes": [
|
|
1328
|
+
{
|
|
1329
|
+
"name": "key-name",
|
|
1330
|
+
"description": "Key used to identify item, when running actions"
|
|
1331
|
+
},
|
|
1332
|
+
{
|
|
1333
|
+
"name": "theme",
|
|
1334
|
+
"description": "Theme of the empty state component.",
|
|
1335
|
+
"values": [
|
|
1336
|
+
{
|
|
1337
|
+
"name": "default"
|
|
1338
|
+
},
|
|
1339
|
+
{
|
|
1340
|
+
"name": "turva"
|
|
1341
|
+
}
|
|
1342
|
+
]
|
|
1343
|
+
}
|
|
1344
|
+
],
|
|
1345
|
+
"references": [
|
|
1346
|
+
{
|
|
1347
|
+
"name": "Source code",
|
|
1348
|
+
"url": "./https:/lt-devtool.visualstudio.com/_git/Duet%20Design%20System?path=/packages/components/src/components/duet-editable-table/duet-editable-table-item.tsx"
|
|
1349
|
+
}
|
|
1350
|
+
]
|
|
1351
|
+
},
|
|
1243
1352
|
{
|
|
1244
1353
|
"name": "duet-empty-state",
|
|
1245
1354
|
"description": {
|
|
@@ -1428,12 +1537,12 @@
|
|
|
1428
1537
|
"name": "duet-grid",
|
|
1429
1538
|
"description": {
|
|
1430
1539
|
"kind": "markdown",
|
|
1431
|
-
"value": "---\ntitle: Grid\nname: duet-grid\nstatus: ready\nreleased: 2.7.0\nplatforms: Web only\naccessibility: N/A\nssr: Supported\ncategory: Structure\nintro: Grid component provides structure for other components using Flexbox\n based layout system. Grid allows nesting and defining the direction of the\n content.\ndescription: While the <a href=\"/components/grid-item/\">Grid Item</a> component\n makes it possible set additional parameters for Grid’s cells, this component\n can be used without <code><duet-grid-item/></code> as well. In that case\n the direct child elements of Grid will be considered as Grid cells.\nexample_height: 300px\nexamples:\n - name: grid\n code: This first example creates the actual URL and DOCS, hence it needs to be\n here.\n - name: Default grid behaviour\n file: fixtures/duet-grid_default_grid_behaviour.html\n - name: Grid using center distribution\n file: fixtures/duet-grid_grid_using_center_distribution.html\n - name: Grid using right distribution\n file: fixtures/duet-grid_grid_using_right_distribution.html\n - name: Grid using space-between distribution\n file: fixtures/duet-grid_grid_using_space-between_distribution.html\n - name: Grid using space-around distribution\n file: fixtures/duet-grid_grid_using_space-around_distribution.html\n - name: Grid using space-evenly distribution\n file: fixtures/duet-grid_grid_using_space-evenly_distribution.html\n - name: Grid using top alignment\n file: fixtures/duet-grid_grid_using_top_alignment.html\n - name: Grid using center alignment\n file: fixtures/duet-grid_grid_using_center_alignment.html\n - name: Grid using bottom alignment\n file: fixtures/duet-grid_grid_using_bottom_alignment.html\n - name: Grid using stretch alignment\n file: fixtures/duet-grid_grid_using_stretch_alignment.html\n - name: Grid using baseline alignment\n file: fixtures/duet-grid_grid_using_baseline_alignment.html\n - name: Grid where one item takes the remaining space\n file: fixtures/duet-grid_grid_where_one_item_takes_the_remaining_space.html\n - name: Grid where one item has fixed side\n file: fixtures/duet-grid_grid_where_one_item_has_fixed_side.html\n - name: Grid with same sized responsive items\n file: fixtures/duet-grid_grid_with_same_sized_responsive_items.html\n - name: Vertical grid\n file: fixtures/duet-grid_vertical_grid.html\n - name: Nested grids\n file: fixtures/duet-grid_nested_grids.html\n - name: Splitting form into columns with grid\n file: fixtures/duet-grid_splitting_form_into_columns_with_grid.html\n - name: Grids using different breakpoints\n file: fixtures/duet-grid_grids_using_different_breakpoints.html\ntags:\n - docs-components\n\n---\n\n<!-- usage -->"
|
|
1540
|
+
"value": "---\ntitle: Grid\nname: duet-grid\nstatus: ready\nreleased: 2.7.0\nplatforms: Web only\naccessibility: N/A\nssr: Supported\ncategory: Structure\nintro: Grid component provides structure for other components using Flexbox\n based layout system. Grid allows nesting and defining the direction of the\n content.\ndescription: While the <a href=\"/components/grid-item/\">Grid Item</a> component\n makes it possible set additional parameters for Grid’s cells, this component\n can be used without <code><duet-grid-item/></code> as well. In that case\n the direct child elements of Grid will be considered as Grid cells.\nexample_height: 300px\nexamples:\n - name: grid\n code: This first example creates the actual URL and DOCS, hence it needs to be\n here.\n - name: Default grid behaviour\n file: fixtures/duet-grid_default_grid_behaviour.html\n - name: Grid using center distribution\n file: fixtures/duet-grid_grid_using_center_distribution.html\n - name: Grid using right distribution\n file: fixtures/duet-grid_grid_using_right_distribution.html\n - name: Grid using space-between distribution\n file: fixtures/duet-grid_grid_using_space-between_distribution.html\n - name: Grid using space-around distribution\n file: fixtures/duet-grid_grid_using_space-around_distribution.html\n - name: Grid using space-evenly distribution\n file: fixtures/duet-grid_grid_using_space-evenly_distribution.html\n - name: Grid using top alignment\n file: fixtures/duet-grid_grid_using_top_alignment.html\n - name: Grid using center alignment\n file: fixtures/duet-grid_grid_using_center_alignment.html\n - name: Grid using bottom alignment\n file: fixtures/duet-grid_grid_using_bottom_alignment.html\n - name: Grid using stretch alignment\n file: fixtures/duet-grid_grid_using_stretch_alignment.html\n - name: Grid using baseline alignment\n file: fixtures/duet-grid_grid_using_baseline_alignment.html \n - name: Grids using form_distribute alignment\n file: fixtures/duet-grid_distribute_form_elements.html\n - name: Grid where one item takes the remaining space\n file: fixtures/duet-grid_grid_where_one_item_takes_the_remaining_space.html\n - name: Grid where one item has fixed side\n file: fixtures/duet-grid_grid_where_one_item_has_fixed_side.html\n - name: Grid with same sized responsive items\n file: fixtures/duet-grid_grid_with_same_sized_responsive_items.html\n - name: Vertical grid\n file: fixtures/duet-grid_vertical_grid.html\n - name: Nested grids\n file: fixtures/duet-grid_nested_grids.html\n - name: Splitting form into columns with grid\n file: fixtures/duet-grid_splitting_form_into_columns_with_grid.html\n - name: Grids using different breakpoints\n file: fixtures/duet-grid_grids_using_different_breakpoints.html\ntags:\n - docs-components\n\n---\n\n<!-- usage -->"
|
|
1432
1541
|
},
|
|
1433
1542
|
"attributes": [
|
|
1434
1543
|
{
|
|
1435
1544
|
"name": "alignment",
|
|
1436
|
-
"description": "Adjusts the vertical alignment of the grid items.",
|
|
1545
|
+
"description": "Adjusts the vertical alignment of the grid items, if set to \"form_distribute\"\nthe grid will try to calculate correct paddings for any duet-input fields inside duet-grid-items,\nso that they align even when displaying errors.",
|
|
1437
1546
|
"values": [
|
|
1438
1547
|
{
|
|
1439
1548
|
"name": "baseline"
|
|
@@ -1444,6 +1553,9 @@
|
|
|
1444
1553
|
{
|
|
1445
1554
|
"name": "center"
|
|
1446
1555
|
},
|
|
1556
|
+
{
|
|
1557
|
+
"name": "form_distribute"
|
|
1558
|
+
},
|
|
1447
1559
|
{
|
|
1448
1560
|
"name": "stretch"
|
|
1449
1561
|
},
|
|
@@ -1702,7 +1814,12 @@
|
|
|
1702
1814
|
"attributes": [
|
|
1703
1815
|
{
|
|
1704
1816
|
"name": "border",
|
|
1705
|
-
"description": "Enable or disable the border underneath the heading
|
|
1817
|
+
"description": "Enable or disable the border underneath the heading, solid will darken the border",
|
|
1818
|
+
"values": [
|
|
1819
|
+
{
|
|
1820
|
+
"name": "solid"
|
|
1821
|
+
}
|
|
1822
|
+
]
|
|
1706
1823
|
},
|
|
1707
1824
|
{
|
|
1708
1825
|
"name": "color",
|
|
@@ -3092,7 +3209,7 @@
|
|
|
3092
3209
|
"name": "duet-paragraph",
|
|
3093
3210
|
"description": {
|
|
3094
3211
|
"kind": "markdown",
|
|
3095
|
-
"value": "---\ntitle: Paragraph\nname: duet-paragraph\nstatus: ready\nreleased: 1.3.0\ninternationalization: Supported\nssr: Supported\naccessibility: Keyboard, Screen Reader\ncategory: Text\nintro: Paragraphs are blocks of text separated from adjacent blocks by blank lines.\nplatforms: Web only\ntags:\n - docs-components\nexamples:\n - name: paragraph\n code: This first example creates the actual URL and DOCS, hence it needs to be\n here.\n - name: Default paragraph\n file: fixtures/duet-paragraph_default_paragraph.html\n - name: Intro paragraph\n file: fixtures/duet-paragraph_intro_paragraph.html\n - name: Small paragraph\n file: fixtures/duet-paragraph_small_paragraph.html\n - name: Paragraph using color token\n file: fixtures/duet-paragraph_paragraph_using_color_token.html\n\n---\n\n<!-- usage -->"
|
|
3212
|
+
"value": "---\ntitle: Paragraph\nname: duet-paragraph\nstatus: ready\nreleased: 1.3.0\ninternationalization: Supported\nssr: Supported\naccessibility: Keyboard, Screen Reader\ncategory: Text\nintro: Paragraphs are blocks of text separated from adjacent blocks by blank lines.\nplatforms: Web only\ntags:\n - docs-components\nexamples:\n - name: paragraph\n code: This first example creates the actual URL and DOCS, hence it needs to be\n here.\n - name: Default paragraph\n file: fixtures/duet-paragraph_default_paragraph.html\n - name: Intro paragraph\n file: fixtures/duet-paragraph_intro_paragraph.html\n - name: Small paragraph\n file: fixtures/duet-paragraph_small_paragraph.html\n - name: Paragraph using color token\n file: fixtures/duet-paragraph_paragraph_using_color_token.html \n - name: Paragraph using weight attribute\n file: fixtures/duet-paragraph_weights.html\n\n---\n\n<!-- usage -->"
|
|
3096
3213
|
},
|
|
3097
3214
|
"attributes": [
|
|
3098
3215
|
{
|
|
@@ -3125,7 +3242,7 @@
|
|
|
3125
3242
|
},
|
|
3126
3243
|
{
|
|
3127
3244
|
"name": "theme",
|
|
3128
|
-
"description": "Theme of the
|
|
3245
|
+
"description": "Theme of the paragraph.",
|
|
3129
3246
|
"values": [
|
|
3130
3247
|
{
|
|
3131
3248
|
"name": "default"
|
|
@@ -3146,6 +3263,18 @@
|
|
|
3146
3263
|
"name": "intro"
|
|
3147
3264
|
}
|
|
3148
3265
|
]
|
|
3266
|
+
},
|
|
3267
|
+
{
|
|
3268
|
+
"name": "weight",
|
|
3269
|
+
"description": "Controls the Font-Weight of the paragraph.",
|
|
3270
|
+
"values": [
|
|
3271
|
+
{
|
|
3272
|
+
"name": "bold"
|
|
3273
|
+
},
|
|
3274
|
+
{
|
|
3275
|
+
"name": "semi-bold"
|
|
3276
|
+
}
|
|
3277
|
+
]
|
|
3149
3278
|
}
|
|
3150
3279
|
],
|
|
3151
3280
|
"references": [
|
|
@@ -3155,6 +3284,61 @@
|
|
|
3155
3284
|
}
|
|
3156
3285
|
]
|
|
3157
3286
|
},
|
|
3287
|
+
{
|
|
3288
|
+
"name": "duet-progress",
|
|
3289
|
+
"description": {
|
|
3290
|
+
"kind": "markdown",
|
|
3291
|
+
"value": "---\ntitle: Progress\nname: duet-progress\nstatus: prototype\nreleased: 4.30.0\nplatforms: Web only\ninternationalization: Supported\nssr: Supported\ncategory: Forms\naccessibility: Keyboard, Screen Reader\nintro: The progress component is used to indicate any process that is ongoing and time sensitive\ndescription: The progress component is a simple indicator that takes a value from 0 to 100, accessibility is improved via labels - expected screenreader behaviour is to stay silent when progress=0, to say \"x, in progress\" when progress is < 99 and \"x, completed\" when progress = 100\nexamples:\n - name: progress\n code: This first example creates the actual URL and DOCS, hence it needs to be\n here. \n - name: Progressbar Demonstrator\n file: fixtures/duet-progress_examples_of_progressbars_live.html\n - name: Progressbar Variations\n file: fixtures/duet-progress_examples_of_progressbars.html\n\ntags:\n - docs-components\n\n---\n\n<!-- usage -->"
|
|
3292
|
+
},
|
|
3293
|
+
"attributes": [
|
|
3294
|
+
{
|
|
3295
|
+
"name": "accessible-described-by",
|
|
3296
|
+
"description": "Indicates the id of a component that describes the upload component."
|
|
3297
|
+
},
|
|
3298
|
+
{
|
|
3299
|
+
"name": "accessible-label",
|
|
3300
|
+
"description": "Indicates the aria-label of the component -\nthis will get combined with an label+uploading when uploading,\nand label+upload complete when upload is complete"
|
|
3301
|
+
},
|
|
3302
|
+
{
|
|
3303
|
+
"name": "accessible-label-upload",
|
|
3304
|
+
"description": "Adds accessible label for upload in progress and upload complete states"
|
|
3305
|
+
},
|
|
3306
|
+
{
|
|
3307
|
+
"name": "accessible-label-upload-defaults",
|
|
3308
|
+
"description": "Defaults for accessibleLabel"
|
|
3309
|
+
},
|
|
3310
|
+
{
|
|
3311
|
+
"name": "caption",
|
|
3312
|
+
"description": "Caption (underneath label) that can be set as a way of adding extra information"
|
|
3313
|
+
},
|
|
3314
|
+
{
|
|
3315
|
+
"name": "height",
|
|
3316
|
+
"description": "Height of progressbar"
|
|
3317
|
+
},
|
|
3318
|
+
{
|
|
3319
|
+
"name": "progress",
|
|
3320
|
+
"description": "Progress of the bar, a value from 0-100"
|
|
3321
|
+
},
|
|
3322
|
+
{
|
|
3323
|
+
"name": "theme",
|
|
3324
|
+
"description": "Theme of the input.",
|
|
3325
|
+
"values": [
|
|
3326
|
+
{
|
|
3327
|
+
"name": "default"
|
|
3328
|
+
},
|
|
3329
|
+
{
|
|
3330
|
+
"name": "turva"
|
|
3331
|
+
}
|
|
3332
|
+
]
|
|
3333
|
+
}
|
|
3334
|
+
],
|
|
3335
|
+
"references": [
|
|
3336
|
+
{
|
|
3337
|
+
"name": "Source code",
|
|
3338
|
+
"url": "./https:/lt-devtool.visualstudio.com/_git/Duet%20Design%20System?path=/packages/components/src/components/duet-progress/duet-progress.tsx"
|
|
3339
|
+
}
|
|
3340
|
+
]
|
|
3341
|
+
},
|
|
3158
3342
|
{
|
|
3159
3343
|
"name": "duet-radio",
|
|
3160
3344
|
"description": {
|
|
@@ -4471,6 +4655,239 @@
|
|
|
4471
4655
|
}
|
|
4472
4656
|
]
|
|
4473
4657
|
},
|
|
4658
|
+
{
|
|
4659
|
+
"name": "duet-upload",
|
|
4660
|
+
"description": {
|
|
4661
|
+
"kind": "markdown",
|
|
4662
|
+
"value": "---\ntitle: Upload\nname: duet-upload\nstatus: ready\nreleased: 4.30.0\nplatforms: Web only\ninternationalization: Supported\nssr: Supported\ncategory: Forms\naccessibility: Keyboard, Screen Reader\nintro: The upload component is used to allow users to upload one / several files to an upload server.\ndescription: This component can either be used in a nearly autonomous way by using its default \"internal\" operation mode, or it can keep state for you upload code via its \"external\" operation mode, the internal mode requires a server that can receive uploads via POST requests and DELETE requests on the same URL. Internal mode assumes that you want to upload files immediately when a user has selected one or more files and that your server is able to receive a Delete request to remove any files uploads again.\nexamples:\n - name: upload\n code: This first example creates the actual URL and DOCS, hence it needs to be\n here.\n - name: Upload component using external upload\n file: fixtures/duet-upload-external.html \n - name: Upload component using external upload and custom categories\n file: fixtures/duet-upload-external_custom_categories.html\n - name: Upload component using external upload hidden categories\n file: fixtures/duet-upload-external_hidden_labels.html \n - name: Upload component using external upload prefilled\n file: fixtures/duet-upload-external_prefilled_items.html \n - name: Upload component using external upload prefilled with mock links\n file: fixtures/duet-upload-external_prefilled_items_with_links.html\ntags:\n - docs-components\n\n---\n\n<!-- usage -->"
|
|
4663
|
+
},
|
|
4664
|
+
"attributes": [
|
|
4665
|
+
{
|
|
4666
|
+
"name": "accessible-active-descendant",
|
|
4667
|
+
"description": "Indicates the id of a related component’s visually focused element."
|
|
4668
|
+
},
|
|
4669
|
+
{
|
|
4670
|
+
"name": "accessible-button-label",
|
|
4671
|
+
"description": "accessible aria-Label of button"
|
|
4672
|
+
},
|
|
4673
|
+
{
|
|
4674
|
+
"name": "accessible-controls",
|
|
4675
|
+
"description": "Use this prop to add an aria-controls attribute. Use the attribute to\nindicate the id of a component controlled by this component."
|
|
4676
|
+
},
|
|
4677
|
+
{
|
|
4678
|
+
"name": "accessible-described-by",
|
|
4679
|
+
"description": "Indicates the id of a component that describes the upload component."
|
|
4680
|
+
},
|
|
4681
|
+
{
|
|
4682
|
+
"name": "accessible-owns",
|
|
4683
|
+
"description": "Indicates the id of a component owned by the input."
|
|
4684
|
+
},
|
|
4685
|
+
{
|
|
4686
|
+
"name": "actions",
|
|
4687
|
+
"description": "Default actions added to the internally used duet-editable-table"
|
|
4688
|
+
},
|
|
4689
|
+
{
|
|
4690
|
+
"name": "allowed-extensions",
|
|
4691
|
+
"description": "A string of commaseperated file type values that are allowed"
|
|
4692
|
+
},
|
|
4693
|
+
{
|
|
4694
|
+
"name": "allowed-mimetypes",
|
|
4695
|
+
"description": "A string of commaseperated mime type values that are allowed"
|
|
4696
|
+
},
|
|
4697
|
+
{
|
|
4698
|
+
"name": "button-label",
|
|
4699
|
+
"description": "Label of button"
|
|
4700
|
+
},
|
|
4701
|
+
{
|
|
4702
|
+
"name": "button-label-default",
|
|
4703
|
+
"description": "Property to change button label defaults on the component."
|
|
4704
|
+
},
|
|
4705
|
+
{
|
|
4706
|
+
"name": "caption",
|
|
4707
|
+
"description": "Caption (underneath label) that can be set as a way of adding extra information"
|
|
4708
|
+
},
|
|
4709
|
+
{
|
|
4710
|
+
"name": "description",
|
|
4711
|
+
"description": "Description for the upload component."
|
|
4712
|
+
},
|
|
4713
|
+
{
|
|
4714
|
+
"name": "description-default",
|
|
4715
|
+
"description": "Property to change descriptionDefaults defaults on the component."
|
|
4716
|
+
},
|
|
4717
|
+
{
|
|
4718
|
+
"name": "disabled",
|
|
4719
|
+
"description": "Makes the input component disabled. This prevents users from being able to\ninteract with the upload component, and conveys its inactive state to assistive technologies."
|
|
4720
|
+
},
|
|
4721
|
+
{
|
|
4722
|
+
"name": "error",
|
|
4723
|
+
"description": "Display the input in error state along with an error message."
|
|
4724
|
+
},
|
|
4725
|
+
{
|
|
4726
|
+
"name": "external",
|
|
4727
|
+
"description": "If external is set to true, the upload component will not actually upload the files, but only keep states\nit will be up to you to handle the upload and return progress information to the upload-component"
|
|
4728
|
+
},
|
|
4729
|
+
{
|
|
4730
|
+
"name": "file-list-empty",
|
|
4731
|
+
"description": "Label for the filelist's empty state."
|
|
4732
|
+
},
|
|
4733
|
+
{
|
|
4734
|
+
"name": "list-empty-default",
|
|
4735
|
+
"description": "Defaults for the filelist's empty state."
|
|
4736
|
+
},
|
|
4737
|
+
{
|
|
4738
|
+
"name": "groups",
|
|
4739
|
+
"description": "Array of group names that you want the editable table to use to display files"
|
|
4740
|
+
},
|
|
4741
|
+
{
|
|
4742
|
+
"name": "hide-upload-button",
|
|
4743
|
+
"description": "If set the upload component will not display an upload button, you will have to create one yourself\nand call the exposed method startUpload"
|
|
4744
|
+
},
|
|
4745
|
+
{
|
|
4746
|
+
"name": "hide-table-labels",
|
|
4747
|
+
"description": "Visually hides the groups labels in the editable table list used to display the list of files"
|
|
4748
|
+
},
|
|
4749
|
+
{
|
|
4750
|
+
"name": "identifier",
|
|
4751
|
+
"description": "Adds a unique identifier for the upload component."
|
|
4752
|
+
},
|
|
4753
|
+
{
|
|
4754
|
+
"name": "label",
|
|
4755
|
+
"description": "Label for the input."
|
|
4756
|
+
},
|
|
4757
|
+
{
|
|
4758
|
+
"name": "label-default",
|
|
4759
|
+
"description": "Property to change labelDefaults defaults on the component.\nnormally you would handle these strings on an application level and override @label when needed"
|
|
4760
|
+
},
|
|
4761
|
+
{
|
|
4762
|
+
"name": "limit-selection",
|
|
4763
|
+
"description": "Use limitSelection to enforce the value in allowedExtension & allowedMimetypes when selecting files,\nby default this is off, setting this to true will limit the users choices to what has been explicitly set"
|
|
4764
|
+
},
|
|
4765
|
+
{
|
|
4766
|
+
"name": "margin",
|
|
4767
|
+
"description": "Controls the margin of the component.",
|
|
4768
|
+
"values": [
|
|
4769
|
+
{
|
|
4770
|
+
"name": "auto"
|
|
4771
|
+
},
|
|
4772
|
+
{
|
|
4773
|
+
"name": "none"
|
|
4774
|
+
}
|
|
4775
|
+
]
|
|
4776
|
+
},
|
|
4777
|
+
{
|
|
4778
|
+
"name": "max-bytes",
|
|
4779
|
+
"description": "Use maxBytes to specify the maximum size in Bytes of a file that can be uploaded."
|
|
4780
|
+
},
|
|
4781
|
+
{
|
|
4782
|
+
"name": "max-bytes-total",
|
|
4783
|
+
"description": "Use maxBytesTotal to specify the maximum size in Bytes of All files combined that can be uploaded."
|
|
4784
|
+
},
|
|
4785
|
+
{
|
|
4786
|
+
"name": "max-files",
|
|
4787
|
+
"description": "Use maxFiles to specify the maximum amount of files that can be uploaded"
|
|
4788
|
+
},
|
|
4789
|
+
{
|
|
4790
|
+
"name": "multiple",
|
|
4791
|
+
"description": "Use multiple to allow the user to select multiple files when uploading"
|
|
4792
|
+
},
|
|
4793
|
+
{
|
|
4794
|
+
"name": "name",
|
|
4795
|
+
"description": "Name of the upload component."
|
|
4796
|
+
},
|
|
4797
|
+
{
|
|
4798
|
+
"name": "required",
|
|
4799
|
+
"description": "Set whether the input is required or not. Please note that this is necessary for\naccessible inputs when the user is required to fill them. When using this property\nyou need to also set “novalidate” attribute to your form element to prevent\nbrowser from displaying its own validation errors."
|
|
4800
|
+
},
|
|
4801
|
+
{
|
|
4802
|
+
"name": "show-links",
|
|
4803
|
+
"description": "If enabled the editable-table will display links on successfully uploaded items,\nthis requires the server can respond with link URIs in the correct format\nand that the files are accessible to the user"
|
|
4804
|
+
},
|
|
4805
|
+
{
|
|
4806
|
+
"name": "status-label-default",
|
|
4807
|
+
"description": "Property to change the aria upload progress text read aloud by screenreaders"
|
|
4808
|
+
},
|
|
4809
|
+
{
|
|
4810
|
+
"name": "status-message-label",
|
|
4811
|
+
"description": "Strings used for the status aria-label"
|
|
4812
|
+
},
|
|
4813
|
+
{
|
|
4814
|
+
"name": "theme",
|
|
4815
|
+
"description": "Theme of the input.",
|
|
4816
|
+
"values": [
|
|
4817
|
+
{
|
|
4818
|
+
"name": "default"
|
|
4819
|
+
},
|
|
4820
|
+
{
|
|
4821
|
+
"name": "turva"
|
|
4822
|
+
}
|
|
4823
|
+
]
|
|
4824
|
+
},
|
|
4825
|
+
{
|
|
4826
|
+
"name": "uri",
|
|
4827
|
+
"description": "Endpoint URI that is capable of receiving the files"
|
|
4828
|
+
},
|
|
4829
|
+
{
|
|
4830
|
+
"name": "valid",
|
|
4831
|
+
"description": "Property to read if the internally used editable-table contains errors or not"
|
|
4832
|
+
},
|
|
4833
|
+
{
|
|
4834
|
+
"name": "value",
|
|
4835
|
+
"description": "Value of the input."
|
|
4836
|
+
}
|
|
4837
|
+
],
|
|
4838
|
+
"references": [
|
|
4839
|
+
{
|
|
4840
|
+
"name": "Source code",
|
|
4841
|
+
"url": "./https:/lt-devtool.visualstudio.com/_git/Duet%20Design%20System?path=/packages/components/src/components/duet-upload/duet-upload.tsx"
|
|
4842
|
+
}
|
|
4843
|
+
]
|
|
4844
|
+
},
|
|
4845
|
+
{
|
|
4846
|
+
"name": "duet-upload-aria-status",
|
|
4847
|
+
"description": {
|
|
4848
|
+
"kind": "markdown",
|
|
4849
|
+
"value": ""
|
|
4850
|
+
},
|
|
4851
|
+
"attributes": [
|
|
4852
|
+
{
|
|
4853
|
+
"name": "accessible-aria-live",
|
|
4854
|
+
"description": "Adds accessible label that is read aloud",
|
|
4855
|
+
"values": [
|
|
4856
|
+
{
|
|
4857
|
+
"name": "assertive"
|
|
4858
|
+
},
|
|
4859
|
+
{
|
|
4860
|
+
"name": "off"
|
|
4861
|
+
},
|
|
4862
|
+
{
|
|
4863
|
+
"name": "polite"
|
|
4864
|
+
}
|
|
4865
|
+
]
|
|
4866
|
+
},
|
|
4867
|
+
{
|
|
4868
|
+
"name": "inprogress",
|
|
4869
|
+
"description": "valid file amount"
|
|
4870
|
+
},
|
|
4871
|
+
{
|
|
4872
|
+
"name": "invalid",
|
|
4873
|
+
"description": "invalid file amount"
|
|
4874
|
+
},
|
|
4875
|
+
{
|
|
4876
|
+
"name": "total",
|
|
4877
|
+
"description": "total files"
|
|
4878
|
+
},
|
|
4879
|
+
{
|
|
4880
|
+
"name": "valid",
|
|
4881
|
+
"description": "valid file amount"
|
|
4882
|
+
}
|
|
4883
|
+
],
|
|
4884
|
+
"references": [
|
|
4885
|
+
{
|
|
4886
|
+
"name": "Source code",
|
|
4887
|
+
"url": "./https:/lt-devtool.visualstudio.com/_git/Duet%20Design%20System?path=/packages/components/src/components/duet-upload-aria-status/duet-upload-aria-status.tsx"
|
|
4888
|
+
}
|
|
4889
|
+
]
|
|
4890
|
+
},
|
|
4474
4891
|
{
|
|
4475
4892
|
"name": "duet-visually-hidden",
|
|
4476
4893
|
"description": {
|
|
@@ -13,6 +13,7 @@ export declare type DuetChoiceType = "radio" | "checkbox";
|
|
|
13
13
|
/**
|
|
14
14
|
* @slot unnamed default slot - The component’s primary content. All child nodes that do not have a slot attribute defined are inserted into this primary slot.
|
|
15
15
|
* @slot info - Info content. Anything inserted into this slot is displayed in a collapsible info box.
|
|
16
|
+
* @slot collapsible_header - header that is only added to collapsible element, this header should be used when the components collapsible area contains additional interactive elements (such as form items) and should be user for a short description of the content below it, it is mandatory for good accessibility to use this - and aria-decribe-by will point to it. If you use the collapsible area with simple text - describe-by will point to this area
|
|
16
17
|
* @slot additional - Additional content. Anything inserted into this slot is displayed as additional content under the label and caption
|
|
17
18
|
*/
|
|
18
19
|
export declare class DuetChoice implements ThemeableComponent, InputComponent {
|
|
@@ -20,13 +21,15 @@ export declare class DuetChoice implements ThemeableComponent, InputComponent {
|
|
|
20
21
|
* Own Properties.
|
|
21
22
|
*/
|
|
22
23
|
private hasInfo?;
|
|
24
|
+
private hasHeader;
|
|
23
25
|
private isKeyDown?;
|
|
24
26
|
private hasAdditional?;
|
|
25
27
|
private nativeInput;
|
|
26
|
-
private
|
|
28
|
+
private infoButtonEl?;
|
|
27
29
|
private choiceId;
|
|
28
|
-
private
|
|
29
|
-
private
|
|
30
|
+
private expandId;
|
|
31
|
+
private headerId;
|
|
32
|
+
private infoButtonId;
|
|
30
33
|
/**
|
|
31
34
|
* Reference to host HTML element.
|
|
32
35
|
*/
|
|
@@ -72,6 +75,8 @@ export declare class DuetChoice implements ThemeableComponent, InputComponent {
|
|
|
72
75
|
accessibleOwns: string;
|
|
73
76
|
/**
|
|
74
77
|
* Indicates the id of a component that describes the choice.
|
|
78
|
+
* if this is set to an empty string it will prevent screenreaders from flowing to a collapsible content
|
|
79
|
+
* and can be used as an escape hatch if that behaviour is undesired.
|
|
75
80
|
*/
|
|
76
81
|
accessibleDescribedBy: string;
|
|
77
82
|
/**
|
|
@@ -153,6 +158,20 @@ export declare class DuetChoice implements ThemeableComponent, InputComponent {
|
|
|
153
158
|
* browser from displaying its own validation errors.
|
|
154
159
|
*/
|
|
155
160
|
required: boolean;
|
|
161
|
+
/**
|
|
162
|
+
* Placeholder defaults
|
|
163
|
+
* @default { fi: "pp.kk.vvvv", en: "dd.mm.yyyy", sv: "dd.mm.åååå" }
|
|
164
|
+
*/
|
|
165
|
+
infoLabelDefaults: DuetLangObject | string;
|
|
166
|
+
/**
|
|
167
|
+
* Hint text to display before the user types into the date picker input.
|
|
168
|
+
* @default {
|
|
169
|
+
* fi: "Lisätietoja",
|
|
170
|
+
* en: "More information about",
|
|
171
|
+
* sv: "Mera information om",
|
|
172
|
+
* }
|
|
173
|
+
*/
|
|
174
|
+
infoLabel: string;
|
|
156
175
|
/**
|
|
157
176
|
* Emitted when the checked property has changed.
|
|
158
177
|
*/
|
|
@@ -174,7 +193,7 @@ export declare class DuetChoice implements ThemeableComponent, InputComponent {
|
|
|
174
193
|
*/
|
|
175
194
|
handleHostBlur(ev: any): void;
|
|
176
195
|
handleHostKeyDown(): void;
|
|
177
|
-
handleHostKeyUp(): void;
|
|
196
|
+
handleHostKeyUp(ev: any): void;
|
|
178
197
|
private onMouseEnter;
|
|
179
198
|
private onMouseLeave;
|
|
180
199
|
private onClick;
|
|
@@ -53,7 +53,7 @@ export declare class DuetDatePicker implements ThemeableComponent, InputComponen
|
|
|
53
53
|
*/
|
|
54
54
|
label: string;
|
|
55
55
|
/**
|
|
56
|
-
* Caption (underneath label) that can be set as a way of adding extra information
|
|
56
|
+
* Caption (underneath label) that can be set as a way of adding extra information.
|
|
57
57
|
*/
|
|
58
58
|
caption: string;
|
|
59
59
|
/**
|
|
@@ -61,14 +61,14 @@ export declare class DuetDatePicker implements ThemeableComponent, InputComponen
|
|
|
61
61
|
*/
|
|
62
62
|
margin: DuetMargin;
|
|
63
63
|
/**
|
|
64
|
-
* The currently active language. This setting changes the month/year/day
|
|
64
|
+
* The currently active language. This setting changes the month/year/day.
|
|
65
65
|
* names and button labels as well as all screen reader labels.
|
|
66
|
-
* @deprecated this is now handled via the html lang tag, and is no longer used - kept to avoid breaking changes and ease unit testing
|
|
66
|
+
* @deprecated this is now handled via the html lang tag, and is no longer used - kept to avoid breaking changes and ease unit testing.
|
|
67
67
|
* @default "fi"
|
|
68
68
|
*/
|
|
69
69
|
language: DuetLanguage;
|
|
70
70
|
/**
|
|
71
|
-
* Placeholder defaults
|
|
71
|
+
* Placeholder defaults.
|
|
72
72
|
* @default { fi: "pp.kk.vvvv", en: "dd.mm.yyyy", sv: "dd.mm.åååå" }
|
|
73
73
|
*/
|
|
74
74
|
placeholderDefaults: DuetLangObject | string;
|
|
@@ -148,7 +148,7 @@ export declare class DuetDatePicker implements ThemeableComponent, InputComponen
|
|
|
148
148
|
*/
|
|
149
149
|
min: string;
|
|
150
150
|
/**
|
|
151
|
-
* Minimum date allowed to be picked. Must be in IS0-8601 format: YYYY-MM-DD
|
|
151
|
+
* Minimum date allowed to be picked. Must be in IS0-8601 format: YYYY-MM-DD.
|
|
152
152
|
* This setting can be used alone or together with the min property.
|
|
153
153
|
*/
|
|
154
154
|
max: string;
|