@sellmate/design-system 1.0.59 → 1.0.61
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/dist/cjs/component.button-cqV-iCG5.js +90 -0
- package/dist/cjs/{component.textinput-BWW8c3OY.js → component.textinput-C4SsDjA1.js} +2 -2
- package/dist/cjs/design-system.cjs.js +1 -1
- package/dist/cjs/loader.cjs.js +1 -1
- package/dist/cjs/sd-action-modal.cjs.entry.js +1 -1
- package/dist/cjs/sd-badge.cjs.entry.js +1 -1
- package/dist/cjs/sd-barcode-input.cjs.entry.js +7 -7
- package/dist/cjs/{sd-button-v2.config-B4___nhv.js → sd-button-v2.config-CnqCQQMi.js} +26 -26
- package/dist/cjs/sd-button-v2_2.cjs.entry.js +5 -5
- package/dist/cjs/sd-button_4.cjs.entry.js +16 -14
- package/dist/cjs/sd-card.cjs.entry.js +1 -1
- package/dist/cjs/sd-confirm-modal.cjs.entry.js +2 -2
- package/dist/cjs/sd-date-picker-calendar.cjs.entry.js +166 -0
- package/dist/cjs/sd-date-picker-trigger.cjs.entry.js +51 -0
- package/dist/cjs/sd-date-picker.cjs.entry.js +84 -13
- package/dist/cjs/sd-date-picker.config-DWC_aiD2.js +175 -0
- package/dist/cjs/sd-date-range-picker-calendar.cjs.entry.js +280 -0
- package/dist/cjs/sd-date-range-picker.cjs.entry.js +85 -166
- package/dist/cjs/sd-dropdown-button.cjs.entry.js +12 -18
- package/dist/cjs/sd-form.cjs.entry.js +1 -1
- package/dist/cjs/sd-ghost-button.cjs.entry.js +19 -4
- package/dist/cjs/sd-guide.cjs.entry.js +3 -3
- package/dist/cjs/sd-input_2.cjs.entry.js +11 -11
- package/dist/cjs/sd-loading-spinner_3.cjs.entry.js +4 -4
- package/dist/cjs/sd-number-input.cjs.entry.js +3 -3
- package/dist/cjs/sd-popover.cjs.entry.js +2 -2
- package/dist/cjs/sd-portal.cjs.entry.js +1 -1
- package/dist/cjs/sd-progress.cjs.entry.js +2 -2
- package/dist/cjs/sd-radio-button-group.cjs.entry.js +1 -1
- package/dist/cjs/sd-radio-group.cjs.entry.js +2 -2
- package/dist/cjs/sd-radio.cjs.entry.js +111 -9
- package/dist/cjs/sd-select-dropdown_2.cjs.entry.js +3 -3
- package/dist/cjs/sd-select-group.cjs.entry.js +1 -1
- package/dist/cjs/sd-select-multiple-group.cjs.entry.js +1 -1
- package/dist/cjs/sd-select-multiple.cjs.entry.js +1 -1
- package/dist/cjs/sd-select-option-group.cjs.entry.js +3 -3
- package/dist/cjs/sd-select-v2-list-item_2.cjs.entry.js +6 -6
- package/dist/cjs/sd-select-v2-listbox_2.cjs.entry.js +5 -6
- package/dist/cjs/sd-select-v2.cjs.entry.js +3 -3
- package/dist/cjs/{sd-select-v2.config-BJXi4hMP.js → sd-select-v2.config-7xBJQhvx.js} +5 -6
- package/dist/cjs/sd-table.cjs.entry.js +4 -4
- package/dist/cjs/sd-tabs.cjs.entry.js +2 -2
- package/dist/cjs/sd-tag.cjs.entry.js +2 -2
- package/dist/cjs/sd-text-link.cjs.entry.js +3 -3
- package/dist/cjs/sd-textarea.cjs.entry.js +12 -12
- package/dist/cjs/sd-toast-container.cjs.entry.js +1 -1
- package/dist/cjs/sd-toast.cjs.entry.js +2 -2
- package/dist/cjs/sd-toggle-button.cjs.entry.js +1 -1
- package/dist/cjs/sd-toggle.cjs.entry.js +1 -1
- package/dist/collection/collection-manifest.json +4 -1
- package/dist/collection/components/sd-action-modal/sd-action-modal.js +1 -1
- package/dist/collection/components/sd-badge/sd-badge.js +1 -1
- package/dist/collection/components/sd-barcode-input/sd-barcode-input.config.js +6 -6
- package/dist/collection/components/sd-barcode-input/sd-barcode-input.js +1 -1
- package/dist/collection/components/sd-button/sd-button.css +1 -1
- package/dist/collection/components/sd-button/sd-button.js +5 -5
- package/dist/collection/components/sd-button-v2/sd-button-v2.config.js +27 -27
- package/dist/collection/components/sd-button-v2/sd-button-v2.css +7 -5
- package/dist/collection/components/sd-button-v2/sd-button-v2.js +2 -2
- package/dist/collection/components/sd-card/sd-card.js +1 -1
- package/dist/collection/components/sd-confirm-modal/sd-confirm-modal.js +2 -2
- package/dist/collection/components/sd-date-picker/sd-date-picker-calendar/sd-date-picker-calendar.css +117 -0
- package/dist/collection/components/sd-date-picker/sd-date-picker-calendar/sd-date-picker-calendar.js +246 -0
- package/dist/collection/components/sd-date-picker/sd-date-picker-trigger/sd-date-picker-trigger.css +38 -0
- package/dist/collection/components/sd-date-picker/sd-date-picker-trigger/sd-date-picker-trigger.js +159 -0
- package/dist/collection/components/sd-date-picker/sd-date-picker.config.js +69 -0
- package/dist/collection/components/sd-date-picker/sd-date-picker.css +8 -13
- package/dist/collection/components/sd-date-picker/sd-date-picker.js +392 -22
- package/dist/collection/components/sd-date-range-picker/sd-date-range-picker-calendar/sd-date-range-picker-calendar.css +184 -0
- package/dist/collection/components/sd-date-range-picker/sd-date-range-picker-calendar/sd-date-range-picker-calendar.js +361 -0
- package/dist/collection/components/sd-date-range-picker/sd-date-range-picker.config.js +9 -0
- package/dist/collection/components/sd-date-range-picker/sd-date-range-picker.css +5 -88
- package/dist/collection/components/sd-date-range-picker/sd-date-range-picker.js +408 -172
- package/dist/collection/components/sd-dropdown-button/sd-dropdown-button.config.js +7 -12
- package/dist/collection/components/sd-dropdown-button/sd-dropdown-button.css +2 -6
- package/dist/collection/components/sd-dropdown-button/sd-dropdown-button.js +4 -5
- package/dist/collection/components/sd-field/sd-field.css +8 -8
- package/dist/collection/components/sd-field/sd-field.js +5 -3
- package/dist/collection/components/sd-floating-portal/sd-floating-portal.js +1 -1
- package/dist/collection/components/sd-form/sd-form.js +1 -1
- package/dist/collection/components/sd-ghost-button/sd-ghost-button.config.js +8 -0
- package/dist/collection/components/sd-ghost-button/sd-ghost-button.js +5 -5
- package/dist/collection/components/sd-guide/sd-guide.css +1 -1
- package/dist/collection/components/sd-guide/sd-guide.js +2 -2
- package/dist/collection/components/sd-input/sd-input.config.js +6 -6
- package/dist/collection/components/sd-input/sd-input.css +0 -112
- package/dist/collection/components/sd-input/sd-input.js +2 -2
- package/dist/collection/components/sd-loading-spinner/sd-loading-spinner.js +1 -1
- package/dist/collection/components/sd-number-input/sd-number-input.js +3 -3
- package/dist/collection/components/sd-pagination/sd-pagination.js +2 -2
- package/dist/collection/components/sd-popover/sd-popover.js +2 -2
- package/dist/collection/components/sd-portal/sd-portal.js +1 -1
- package/dist/collection/components/sd-progress/sd-progress.js +2 -2
- package/dist/collection/components/sd-radio/sd-radio.config.js +30 -0
- package/dist/collection/components/sd-radio/sd-radio.css +43 -38
- package/dist/collection/components/sd-radio/sd-radio.js +60 -28
- package/dist/collection/components/sd-radio-button-group/sd-radio-button-group.js +1 -1
- package/dist/collection/components/sd-radio-group/sd-radio-group.css +43 -38
- package/dist/collection/components/sd-radio-group/sd-radio-group.js +1 -1
- package/dist/collection/components/sd-select/sd-select-dropdown/sd-select-dropdown.js +2 -2
- package/dist/collection/components/sd-select/sd-select-option/sd-select-option.js +1 -1
- package/dist/collection/components/sd-select/sd-select-search-input/sd-select-search-input.js +3 -3
- package/dist/collection/components/sd-select/sd-select.js +1 -1
- package/dist/collection/components/sd-select-group/sd-select-group.js +1 -1
- package/dist/collection/components/sd-select-multiple/sd-select-multiple.js +1 -1
- package/dist/collection/components/sd-select-multiple-group/sd-select-multiple-group.js +1 -1
- package/dist/collection/components/sd-select-multiple-group/sd-select-option-group/sd-select-option-group.js +3 -3
- package/dist/collection/components/sd-select-v2/sd-select-v2-list-item/sd-select-v2-list-item.js +2 -2
- package/dist/collection/components/sd-select-v2/sd-select-v2-list-item-search/sd-select-v2-list-item-search.js +3 -3
- package/dist/collection/components/sd-select-v2/sd-select-v2-listbox/sd-select-v2-listbox.css +1 -1
- package/dist/collection/components/sd-select-v2/sd-select-v2-listbox/sd-select-v2-listbox.js +1 -2
- package/dist/collection/components/sd-select-v2/sd-select-v2-trigger/sd-select-v2-trigger.js +2 -2
- package/dist/collection/components/sd-select-v2/sd-select-v2.config.js +1 -2
- package/dist/collection/components/sd-select-v2/sd-select-v2.js +3 -3
- package/dist/collection/components/sd-table/sd-table.js +4 -4
- package/dist/collection/components/sd-tabs/sd-tabs.js +2 -2
- package/dist/collection/components/sd-tag/sd-tag.js +2 -2
- package/dist/collection/components/sd-text-link/sd-text-link.js +3 -3
- package/dist/collection/components/sd-textarea/sd-textarea.config.js +11 -11
- package/dist/collection/components/sd-textarea/sd-textarea.js +1 -1
- package/dist/collection/components/sd-toast/sd-toast.js +2 -2
- package/dist/collection/components/sd-toast-container/sd-toast-container.js +1 -1
- package/dist/collection/components/sd-toggle/sd-toggle.js +1 -1
- package/dist/collection/components/sd-toggle-button/sd-toggle-button.js +1 -1
- package/dist/collection/components/sd-tooltip/sd-tooltip.js +2 -2
- package/dist/components/{p-B9t9pwo_.js → p-5OtzmjLh.js} +1 -1
- package/dist/components/{p-iZSyoiHU.js → p-98NWgkAU.js} +1 -1
- package/dist/components/{p-tR70yRjm.js → p-AdSqif48.js} +1 -1
- package/dist/components/p-B1XBwjCW.js +1 -0
- package/dist/components/p-BFaIxm6b.js +1 -0
- package/dist/components/p-BHQirDZt.js +1 -0
- package/dist/components/{p-bBjbkCP1.js → p-BP-QKaKz.js} +1 -1
- package/dist/components/p-BSZadK9N.js +1 -0
- package/dist/components/{p-DxzIjbQJ.js → p-BUAwjF_Z.js} +1 -1
- package/dist/components/{p-TF5CQvFs.js → p-BVBMsoZP.js} +1 -1
- package/dist/components/p-BWgJ9XTj.js +1 -0
- package/dist/components/{p-DuqfYDrU.js → p-BbtO5CEW.js} +1 -1
- package/dist/components/p-BsJy4pgR.js +1 -0
- package/dist/components/{p-C9GMwYKA.js → p-BtH5wWA5.js} +1 -1
- package/dist/components/p-C-kw2p2a.js +1 -0
- package/dist/components/p-C-qSDgVU.js +1 -0
- package/dist/components/p-C4i826lM.js +1 -0
- package/dist/components/{p-BIpitpaB.js → p-CE1Hmoij.js} +1 -1
- package/dist/components/p-CEa1HSpw.js +1 -0
- package/dist/components/p-CJwbBrt5.js +1 -0
- package/dist/components/p-CYRGa0VL.js +1 -0
- package/dist/components/{p-DmkL7H5j.js → p-Ci3yfjxH.js} +1 -1
- package/dist/components/p-ClgihpRm.js +1 -0
- package/dist/components/{p-5aLT6ILZ.js → p-D-Y0-FQk.js} +1 -1
- package/dist/components/p-D0wZv01W.js +1 -0
- package/dist/components/{p-BZwAZpfW.js → p-D93Cb_Vw.js} +1 -1
- package/dist/components/{p-IRd25v7v.js → p-DCv5afjJ.js} +1 -1
- package/dist/components/p-DPipeCRI.js +1 -0
- package/dist/components/{p-DB_gU4hh.js → p-DdBIc8AE.js} +1 -1
- package/dist/components/{p-mnDAufNv.js → p-DlujHEXS.js} +1 -1
- package/dist/components/{p-CKl79fdN.js → p-gTPCqs3t.js} +1 -1
- package/dist/components/sd-action-modal.js +1 -1
- package/dist/components/sd-badge.js +1 -1
- package/dist/components/sd-barcode-input.js +1 -1
- package/dist/components/sd-button-v2.js +1 -1
- package/dist/components/sd-button.js +1 -1
- package/dist/components/sd-calendar.js +1 -1
- package/dist/components/sd-card.js +1 -1
- package/dist/components/sd-confirm-modal.js +1 -1
- package/dist/components/sd-date-picker-calendar.d.ts +11 -0
- package/dist/components/sd-date-picker-calendar.js +1 -0
- package/dist/components/sd-date-picker-trigger.d.ts +11 -0
- package/dist/components/sd-date-picker-trigger.js +1 -0
- package/dist/components/sd-date-picker.js +1 -1
- package/dist/components/sd-date-range-picker-calendar.d.ts +11 -0
- package/dist/components/sd-date-range-picker-calendar.js +1 -0
- package/dist/components/sd-date-range-picker.js +1 -1
- package/dist/components/sd-dropdown-button.js +1 -1
- package/dist/components/sd-field.js +1 -1
- package/dist/components/sd-file-picker.js +1 -1
- package/dist/components/sd-floating-portal.js +1 -1
- package/dist/components/sd-form.js +1 -1
- package/dist/components/sd-ghost-button.js +1 -1
- package/dist/components/sd-guide.js +1 -1
- package/dist/components/sd-input.js +1 -1
- package/dist/components/sd-loading-spinner.js +1 -1
- package/dist/components/sd-modal-container.js +1 -1
- package/dist/components/sd-number-input.js +1 -1
- package/dist/components/sd-pagination.js +1 -1
- package/dist/components/sd-popover.js +1 -1
- package/dist/components/sd-portal.js +1 -1
- package/dist/components/sd-progress.js +1 -1
- package/dist/components/sd-radio-button-group.js +1 -1
- package/dist/components/sd-radio-group.js +1 -1
- package/dist/components/sd-radio.js +1 -1
- package/dist/components/sd-select-dropdown.js +1 -1
- package/dist/components/sd-select-group.js +1 -1
- package/dist/components/sd-select-multiple-group.js +1 -1
- package/dist/components/sd-select-multiple.js +1 -1
- package/dist/components/sd-select-option-group.js +1 -1
- package/dist/components/sd-select-option.js +1 -1
- package/dist/components/sd-select-search-input.js +1 -1
- package/dist/components/sd-select-v2-list-item-search.js +1 -1
- package/dist/components/sd-select-v2-list-item.js +1 -1
- package/dist/components/sd-select-v2-listbox.js +1 -1
- package/dist/components/sd-select-v2-trigger.js +1 -1
- package/dist/components/sd-select-v2.js +1 -1
- package/dist/components/sd-select.js +1 -1
- package/dist/components/sd-table.js +1 -1
- package/dist/components/sd-tabs.js +1 -1
- package/dist/components/sd-tag.js +1 -1
- package/dist/components/sd-text-link.js +1 -1
- package/dist/components/sd-textarea.js +1 -1
- package/dist/components/sd-toast-container.js +1 -1
- package/dist/components/sd-toast.js +1 -1
- package/dist/components/sd-toggle-button.js +1 -1
- package/dist/components/sd-toggle.js +1 -1
- package/dist/components/sd-tooltip.js +1 -1
- package/dist/design-system/design-system.css +1 -1
- package/dist/design-system/design-system.esm.js +1 -1
- package/dist/design-system/{p-6aaacaef.entry.js → p-00207f08.entry.js} +1 -1
- package/dist/design-system/{p-cf7d46cf.entry.js → p-067b0b3c.entry.js} +1 -1
- package/dist/design-system/p-0e6f5a99.entry.js +1 -0
- package/dist/design-system/p-13fed1bd.entry.js +1 -0
- package/dist/design-system/{p-5db2b37b.entry.js → p-14b67a6e.entry.js} +1 -1
- package/dist/design-system/{p-0c026571.entry.js → p-22a4972a.entry.js} +1 -1
- package/dist/design-system/{p-dea33b4d.entry.js → p-27df33c1.entry.js} +1 -1
- package/dist/design-system/p-28058050.entry.js +1 -0
- package/dist/design-system/p-2bd887ca.entry.js +1 -0
- package/dist/design-system/{p-4e13256e.entry.js → p-30055371.entry.js} +1 -1
- package/dist/design-system/{p-15c051cb.entry.js → p-3ac6a626.entry.js} +1 -1
- package/dist/design-system/{p-10dd9343.entry.js → p-3d10be45.entry.js} +1 -1
- package/dist/design-system/p-3f04d68a.entry.js +1 -0
- package/dist/design-system/{p-266ff86b.entry.js → p-4272b9e6.entry.js} +1 -1
- package/dist/design-system/p-5d2e8779.entry.js +1 -0
- package/dist/design-system/{p-eb11f6cc.entry.js → p-614c9883.entry.js} +1 -1
- package/dist/design-system/{p-3f657bf8.entry.js → p-62992b73.entry.js} +1 -1
- package/dist/design-system/p-6610c16b.entry.js +1 -0
- package/dist/design-system/p-72b564ed.entry.js +1 -0
- package/dist/design-system/{p-00e236e1.entry.js → p-739ac181.entry.js} +1 -1
- package/dist/design-system/{p-8f947287.entry.js → p-7dce4241.entry.js} +1 -1
- package/dist/design-system/{p-99b6157f.entry.js → p-7e4c0a36.entry.js} +1 -1
- package/dist/design-system/p-8b5b2866.entry.js +1 -0
- package/dist/design-system/p-90f51f65.entry.js +1 -0
- package/dist/design-system/{p-09369f2c.entry.js → p-9ae589c4.entry.js} +1 -1
- package/dist/design-system/p-B1XBwjCW.js +1 -0
- package/dist/design-system/p-BsrEibf7.js +1 -0
- package/dist/design-system/p-C3eQSZx-.js +1 -0
- package/dist/design-system/p-C4i826lM.js +1 -0
- package/dist/design-system/p-CJwbBrt5.js +1 -0
- package/dist/design-system/{p-47f068ca.entry.js → p-a03ad24f.entry.js} +1 -1
- package/dist/design-system/p-a6bc8512.entry.js +1 -0
- package/dist/design-system/p-afeb740a.entry.js +1 -0
- package/dist/design-system/p-b3e0e6f4.entry.js +1 -0
- package/dist/design-system/p-ba90dc5f.entry.js +1 -0
- package/dist/design-system/p-bad88292.entry.js +1 -0
- package/dist/design-system/p-c59191d3.entry.js +1 -0
- package/dist/design-system/p-cbb5575d.entry.js +1 -0
- package/dist/design-system/{p-3686b44e.entry.js → p-ce6a0b0f.entry.js} +1 -1
- package/dist/design-system/{p-3fff78c7.entry.js → p-d07448fe.entry.js} +1 -1
- package/dist/design-system/{p-a7e4994e.entry.js → p-d1a94401.entry.js} +1 -1
- package/dist/design-system/p-d75e0dc0.entry.js +1 -0
- package/dist/design-system/{p-fd11ac4d.entry.js → p-e9c28bdc.entry.js} +1 -1
- package/dist/design-system/{p-d8a3e32d.entry.js → p-e9ed9c00.entry.js} +1 -1
- package/dist/design-system/{p-391cf704.entry.js → p-f8567970.entry.js} +1 -1
- package/dist/design-system/p-fa22f13c.entry.js +1 -0
- package/dist/design-system/{p-cee768a2.entry.js → p-fa8b64c2.entry.js} +1 -1
- package/dist/esm/component.button-B1XBwjCW.js +88 -0
- package/dist/esm/{component.textinput-DSNs8RRn.js → component.textinput-CJwbBrt5.js} +2 -2
- package/dist/esm/design-system.js +1 -1
- package/dist/esm/loader.js +1 -1
- package/dist/esm/sd-action-modal.entry.js +1 -1
- package/dist/esm/sd-badge.entry.js +1 -1
- package/dist/esm/sd-barcode-input.entry.js +7 -7
- package/dist/esm/{sd-button-v2.config-C7s1j4_P.js → sd-button-v2.config-CV4xelxV.js} +26 -26
- package/dist/esm/sd-button-v2_2.entry.js +5 -5
- package/dist/esm/sd-button_4.entry.js +16 -14
- package/dist/esm/sd-card.entry.js +1 -1
- package/dist/esm/sd-confirm-modal.entry.js +2 -2
- package/dist/esm/sd-date-picker-calendar.entry.js +164 -0
- package/dist/esm/sd-date-picker-trigger.entry.js +49 -0
- package/dist/esm/sd-date-picker.config-C4i826lM.js +169 -0
- package/dist/esm/sd-date-picker.entry.js +84 -13
- package/dist/esm/sd-date-range-picker-calendar.entry.js +278 -0
- package/dist/esm/sd-date-range-picker.entry.js +86 -167
- package/dist/esm/sd-dropdown-button.entry.js +12 -18
- package/dist/esm/sd-form.entry.js +1 -1
- package/dist/esm/sd-ghost-button.entry.js +19 -4
- package/dist/esm/sd-guide.entry.js +3 -3
- package/dist/esm/sd-input_2.entry.js +11 -11
- package/dist/esm/sd-loading-spinner_3.entry.js +4 -4
- package/dist/esm/sd-number-input.entry.js +3 -3
- package/dist/esm/sd-popover.entry.js +2 -2
- package/dist/esm/sd-portal.entry.js +1 -1
- package/dist/esm/sd-progress.entry.js +2 -2
- package/dist/esm/sd-radio-button-group.entry.js +1 -1
- package/dist/esm/sd-radio-group.entry.js +2 -2
- package/dist/esm/sd-radio.entry.js +111 -9
- package/dist/esm/sd-select-dropdown_2.entry.js +3 -3
- package/dist/esm/sd-select-group.entry.js +1 -1
- package/dist/esm/sd-select-multiple-group.entry.js +1 -1
- package/dist/esm/sd-select-multiple.entry.js +1 -1
- package/dist/esm/sd-select-option-group.entry.js +3 -3
- package/dist/esm/sd-select-v2-list-item_2.entry.js +6 -6
- package/dist/esm/sd-select-v2-listbox_2.entry.js +5 -6
- package/dist/esm/{sd-select-v2.config-o9Ugc4Ua.js → sd-select-v2.config-C3eQSZx-.js} +5 -6
- package/dist/esm/sd-select-v2.entry.js +3 -3
- package/dist/esm/sd-table.entry.js +4 -4
- package/dist/esm/sd-tabs.entry.js +2 -2
- package/dist/esm/sd-tag.entry.js +2 -2
- package/dist/esm/sd-text-link.entry.js +3 -3
- package/dist/esm/sd-textarea.entry.js +12 -12
- package/dist/esm/sd-toast-container.entry.js +1 -1
- package/dist/esm/sd-toast.entry.js +2 -2
- package/dist/esm/sd-toggle-button.entry.js +1 -1
- package/dist/esm/sd-toggle.entry.js +1 -1
- package/dist/types/components/sd-date-picker/sd-date-picker-calendar/sd-date-picker-calendar.d.ts +26 -0
- package/dist/types/components/sd-date-picker/sd-date-picker-trigger/sd-date-picker-trigger.d.ts +11 -0
- package/dist/types/components/sd-date-picker/sd-date-picker.config.d.ts +71 -0
- package/dist/types/components/sd-date-picker/sd-date-picker.d.ts +32 -6
- package/dist/types/components/sd-date-range-picker/sd-date-range-picker-calendar/sd-date-range-picker-calendar.d.ts +38 -0
- package/dist/types/components/sd-date-range-picker/sd-date-range-picker.config.d.ts +9 -0
- package/dist/types/components/sd-date-range-picker/sd-date-range-picker.d.ts +38 -33
- package/dist/types/components/sd-dropdown-button/sd-dropdown-button.config.d.ts +0 -1
- package/dist/types/components/sd-ghost-button/sd-ghost-button.config.d.ts +2 -1
- package/dist/types/components/sd-radio/sd-radio.config.d.ts +29 -0
- package/dist/types/components/sd-radio/sd-radio.d.ts +4 -2
- package/dist/types/components/sd-select-v2/sd-select-v2.config.d.ts +0 -1
- package/dist/types/components.d.ts +388 -15
- package/hydrate/index.js +1239 -439
- package/hydrate/index.mjs +1239 -439
- package/package.json +1 -1
- package/dist/cjs/component.button-DUsddONR.js +0 -109
- package/dist/components/p-B3CfLqLu.js +0 -1
- package/dist/components/p-BXuZFSsU.js +0 -1
- package/dist/components/p-BcM38Hvd.js +0 -1
- package/dist/components/p-C2uZkOBj.js +0 -1
- package/dist/components/p-C8kA64_1.js +0 -1
- package/dist/components/p-CDR-4auv.js +0 -1
- package/dist/components/p-CSCkf9FA.js +0 -1
- package/dist/components/p-DCJWAesd.js +0 -1
- package/dist/components/p-DSNs8RRn.js +0 -1
- package/dist/components/p-DhoIsdd7.js +0 -1
- package/dist/components/p-DkMewZNL.js +0 -1
- package/dist/components/p-Ebd0AYb5.js +0 -1
- package/dist/design-system/p-184649a9.entry.js +0 -1
- package/dist/design-system/p-1cf60275.entry.js +0 -1
- package/dist/design-system/p-2a25b3dc.entry.js +0 -1
- package/dist/design-system/p-374fdc7a.entry.js +0 -1
- package/dist/design-system/p-3b824d36.entry.js +0 -1
- package/dist/design-system/p-3fdfb2ed.entry.js +0 -1
- package/dist/design-system/p-43512d46.entry.js +0 -1
- package/dist/design-system/p-4e9413c0.entry.js +0 -1
- package/dist/design-system/p-5213773b.entry.js +0 -1
- package/dist/design-system/p-5ba8caa2.entry.js +0 -1
- package/dist/design-system/p-74079256.entry.js +0 -1
- package/dist/design-system/p-8187020e.entry.js +0 -1
- package/dist/design-system/p-99bcc635.entry.js +0 -1
- package/dist/design-system/p-BcM38Hvd.js +0 -1
- package/dist/design-system/p-DSNs8RRn.js +0 -1
- package/dist/design-system/p-c2a0f10d.entry.js +0 -1
- package/dist/design-system/p-c7c0aa6c.entry.js +0 -1
- package/dist/design-system/p-ePjRdqmD.js +0 -1
- package/dist/design-system/p-efe684e6.entry.js +0 -1
- package/dist/design-system/p-o9Ugc4Ua.js +0 -1
- package/dist/esm/component.button-BcM38Hvd.js +0 -107
|
@@ -56,11 +56,11 @@ var listItemTokens = {
|
|
|
56
56
|
listItem: listItem
|
|
57
57
|
};
|
|
58
58
|
|
|
59
|
-
const
|
|
60
|
-
|
|
59
|
+
const listBox = {
|
|
60
|
+
radius: "4"};
|
|
61
61
|
var listBoxTokens = {
|
|
62
|
-
|
|
63
|
-
|
|
62
|
+
listBox: listBox
|
|
63
|
+
};
|
|
64
64
|
|
|
65
65
|
// ── Select Trigger Tokens ──
|
|
66
66
|
const SELECT_LAYOUT = {
|
|
@@ -117,8 +117,7 @@ const LIST_ITEM_COLORS = {
|
|
|
117
117
|
}};
|
|
118
118
|
// ── ListBox Tokens ──
|
|
119
119
|
const LIST_BOX_LAYOUT = {
|
|
120
|
-
radius: listBoxTokens.radius,
|
|
121
|
-
paddingBottom: listBoxTokens.paddingBottom,
|
|
120
|
+
radius: listBoxTokens.listBox.radius,
|
|
122
121
|
};
|
|
123
122
|
// ── Constants ──
|
|
124
123
|
const SEARCH_THRESHOLD = 11;
|
|
@@ -770,16 +770,16 @@ const SdTable = class {
|
|
|
770
770
|
return (index.h("td", { key: `virtual-${position}-spacer-${rowIdx}`, class: "sd-table__virtual-spacer", style: this.getSpacerCellStyle(spacerWidth), "aria-hidden": "true" }, index.h("div", { class: "sd-table__skeleton-cell" })));
|
|
771
771
|
}
|
|
772
772
|
render() {
|
|
773
|
-
return (index.h(index.Fragment, { key: '
|
|
773
|
+
return (index.h(index.Fragment, { key: 'cc7236bc2511f0b7c6bd31610e005c558e4dda81' }, index.h("div", { key: 'c78feb1d4ba89c8340660405598c8892d660078d', class: "sd-table__wrapper", style: {
|
|
774
774
|
'--table-width': this.width,
|
|
775
775
|
'--table-height': this.height,
|
|
776
|
-
} }, index.h("div", { key: '
|
|
776
|
+
} }, index.h("div", { key: 'e127e5e51cfa1b930a79d031ff4fbffac3cf8b69', class: "sd-table__container", style: {
|
|
777
777
|
'--table-container-height': `calc(${this.height} - ${this.pagination && this.innerRows.length > 0 ? 48 : 0}px)`,
|
|
778
|
-
} }, index.h("div", { key: '
|
|
778
|
+
} }, index.h("div", { key: 'ea47affe622b7f7c98b9c044db73f275a9c7b8ba', class: {
|
|
779
779
|
'sd-table__middle': true,
|
|
780
780
|
'sd-table__middle--scrollable': this.paginatedRows.length > 0,
|
|
781
781
|
'sd-table__middle--loading': this.isLoading,
|
|
782
|
-
} }, this.isLoading && (index.h("div", { key: '
|
|
782
|
+
} }, this.isLoading && (index.h("div", { key: '52c9d3a0b83bf786980cb6561b39234d3f1697ad', class: "sd-table__middle--loading__spinner" }, index.h("sd-loading-spinner", { key: '60d8f10a4f35e509969190ab23713057f9fb1efb' }))), index.h("table", { key: 'fd25840b4aeddd456d97c7397541da58c8d0aed9', part: "table", class: this.sdTableClasses }, this.renderHead(), this.renderBody())), !this.paginatedRows.length && (index.h("div", { key: '5d1ed19126eb328a78ff50e701392b0d18208030', class: "sd-table__bottom" }, index.h("div", { key: 'e3cc512088e0bf7f6ec9699c1ce948910d621e45', class: "sd-table__no-data" }, index.h("slot", { key: 'a5285e5d607a66a6e9f7993c6a82dc9bd6d53a08', name: "no-data" }, this.noDataLabel))))), this.pagination && this.innerRows.length > 0 && (index.h("div", { key: '1a57bf7960624ebfd80005cd320d0d29ed7b6123', class: "sd-table__pagination" }, index.h("sd-pagination", { key: 'dbc457c10036556928c3503ef84b8bfc29849342', currentPage: !this.useInternalPagination ? this.pagination.page : this.currentPage, lastPage: !this.useInternalPagination ? this.pagination.lastPage : this.lastPageNumber, onSdPageChange: (e) => this.changePage(e.detail) }), this.useRowsPerPageSelect && (index.h("sd-select", { key: '6a0bdf472ed0dfca4c57725635c50bf1a375f11c', value: this.pagination.rowsPerPage, options: this.rowsPerPageOption, width: "128px", onSdUpdate: (e) => this.changeRowsPerPage(e.detail.value) })))))));
|
|
783
783
|
}
|
|
784
784
|
static get watchers() { return {
|
|
785
785
|
"columns": [{
|
|
@@ -45,10 +45,10 @@ const SdTabs = class {
|
|
|
45
45
|
}
|
|
46
46
|
getBadgeName(tab) {
|
|
47
47
|
const color = this.isTabSelected(tab) ? 'blue' : 'grey';
|
|
48
|
-
return `
|
|
48
|
+
return `square_xs_${color}`;
|
|
49
49
|
}
|
|
50
50
|
render() {
|
|
51
|
-
return (index.h("div", { key: '
|
|
51
|
+
return (index.h("div", { key: '4fee168f0120b757d480e2dfa66fdbec3d9fd45d', class: this.getContainerClasses() }, this.tabs.map((tab, index$1) => {
|
|
52
52
|
const badgeName = this.getBadgeName(tab);
|
|
53
53
|
return (index.h("div", { key: `tab-${index$1}`, class: this.getTabClasses(tab), "aria-label": tab.label || 'tab', onClick: () => this.handleTabClick(tab.value) }, index.h("span", { "data-label": tab.label, class: "sd-tabs__label" }, tab.label), tab.badge && index.h("sd-tag", { name: badgeName, label: tab.badge.toString() })));
|
|
54
54
|
})));
|
|
@@ -171,7 +171,7 @@ const SdTag = class {
|
|
|
171
171
|
render() {
|
|
172
172
|
const config = this.resolvedConfig;
|
|
173
173
|
const iconNode = this.renderIcon(config.icon, config.iconSize);
|
|
174
|
-
return (index.h("span", { key: '
|
|
174
|
+
return (index.h("span", { key: 'acfc91bdd46c2f0fc53b066d6c6b9de94068c492', class: "sd-tag", style: {
|
|
175
175
|
'--sd-tag-background': config.background,
|
|
176
176
|
'--sd-tag-content': config.content,
|
|
177
177
|
'--sd-tag-height': config.height,
|
|
@@ -181,7 +181,7 @@ const SdTag = class {
|
|
|
181
181
|
'--sd-tag-font-weight': config.fontWeight,
|
|
182
182
|
'--sd-tag-line-height': config.lineHeight,
|
|
183
183
|
'--sd-tag-radius': config.radius,
|
|
184
|
-
}, "aria-label": this.label || 'tag' }, this.icon && this.isLeft && iconNode, index.h("span", { key: '
|
|
184
|
+
}, "aria-label": this.label || 'tag' }, this.icon && this.isLeft && iconNode, index.h("span", { key: '8d7f7f40c4eb55687f2c7ebe66fba04c3846c0e2', class: "sd-tag__label" }, this.label), this.icon && !this.isLeft && iconNode));
|
|
185
185
|
}
|
|
186
186
|
};
|
|
187
187
|
SdTag.style = sdTagCss();
|
|
@@ -75,16 +75,16 @@ const SdTextLink = class {
|
|
|
75
75
|
'--sd-text-link-text-decoration': typo.textDecoration,
|
|
76
76
|
// '--sd-text-link-color': contentColor,
|
|
77
77
|
};
|
|
78
|
-
return (index.h("span", { key: '
|
|
78
|
+
return (index.h("span", { key: 'b20b183974df13a11812d3f3c16abd2456dd0eb5', class: {
|
|
79
79
|
'sd-text-link': true,
|
|
80
80
|
'sd-text-link--disabled': this.disabled,
|
|
81
|
-
}, style: cssVars, onClick: this.handleClick }, this.icon && (index.h("sd-icon", { key: '
|
|
81
|
+
}, style: cssVars, onClick: this.handleClick }, this.icon && (index.h("sd-icon", { key: '581390418ffdd23767838b6f4777fa36cac3ec89', name: this.icon, size: TEXT_LINK_LAYOUT.iconSize, color: iconColor, class: "sd-text-link__icon" })), index.h("span", { key: 'a733650304df4c66bb1a0f54cc0554538263830d', class: labelClassName }, this.label), this.useArrow && (index.h("span", { key: '1437e31870f22bcb13146cc8f2652f3b8d7fa57a', class: "sd-text-link__arrow", style: {
|
|
82
82
|
width: `${TEXT_LINK_LAYOUT.arrowFrame}px`,
|
|
83
83
|
height: `${TEXT_LINK_LAYOUT.arrowFrame}px`,
|
|
84
84
|
display: 'inline-flex',
|
|
85
85
|
alignItems: 'center',
|
|
86
86
|
justifyContent: 'center',
|
|
87
|
-
} }, index.h("sd-icon", { key: '
|
|
87
|
+
} }, index.h("sd-icon", { key: '17a886109c8e5f72daf5f1f8baa4e185161c934d', name: "chevronRight", size: TEXT_LINK_LAYOUT.arrowIconSize, color: arrowColor })))));
|
|
88
88
|
}
|
|
89
89
|
};
|
|
90
90
|
SdTextLink.style = sdTextLinkCss();
|
|
@@ -2,20 +2,20 @@
|
|
|
2
2
|
|
|
3
3
|
var index = require('./index-BQt-JC6r.js');
|
|
4
4
|
var index$1 = require('./index-BUvXpPc3.js');
|
|
5
|
-
var component_textinput = require('./component.textinput-
|
|
5
|
+
var component_textinput = require('./component.textinput-C4SsDjA1.js');
|
|
6
6
|
|
|
7
7
|
const TEXTAREA_TOKENS = {
|
|
8
|
-
paddingX: component_textinput.inputTokens.
|
|
9
|
-
paddingY: component_textinput.inputTokens.
|
|
10
|
-
radius: component_textinput.inputTokens.
|
|
11
|
-
fontSize: component_textinput.inputTokens.
|
|
12
|
-
lineHeight: component_textinput.inputTokens.
|
|
13
|
-
fontWeight: component_textinput.inputTokens.
|
|
8
|
+
paddingX: component_textinput.inputTokens.textinput.sm.paddingX,
|
|
9
|
+
paddingY: component_textinput.inputTokens.textinput.sm.paddingY,
|
|
10
|
+
radius: component_textinput.inputTokens.textinput.sm.radius,
|
|
11
|
+
fontSize: component_textinput.inputTokens.textinput.sm.typography.fontSize,
|
|
12
|
+
lineHeight: component_textinput.inputTokens.textinput.sm.typography.lineHeight,
|
|
13
|
+
fontWeight: component_textinput.inputTokens.textinput.sm.typography.fontWeight};
|
|
14
14
|
const TEXTAREA_COLORS = {
|
|
15
|
-
text: component_textinput.inputTokens.
|
|
16
|
-
bg: component_textinput.inputTokens.
|
|
17
|
-
border: component_textinput.inputTokens.
|
|
18
|
-
resizer: component_textinput.inputTokens.
|
|
15
|
+
text: component_textinput.inputTokens.textinput.text,
|
|
16
|
+
bg: component_textinput.inputTokens.textinput.bg,
|
|
17
|
+
border: component_textinput.inputTokens.textinput.border,
|
|
18
|
+
resizer: component_textinput.inputTokens.textinput.resizer,
|
|
19
19
|
};
|
|
20
20
|
|
|
21
21
|
const sdTextareaCss = () => `sd-textarea{display:inline-flex}sd-textarea .sd-textarea__content{width:100%;display:flex}sd-textarea .sd-textarea__content .sd-textarea__native{width:100%;min-height:100px;border:none;outline:none;background:transparent;padding:var(--sd-textarea-padding-y) var(--sd-textarea-padding-x);font-family:inherit;font-size:var(--sd-textarea-font-size);line-height:var(--sd-textarea-line-height);font-weight:var(--sd-textarea-font-weight);color:var(--sd-textarea-text-color);resize:vertical}sd-textarea .sd-textarea__content .sd-textarea__native::placeholder{color:var(--sd-textarea-placeholder-color)}sd-textarea .sd-textarea__content .sd-textarea__native:disabled{cursor:not-allowed;color:var(--sd-textarea-disabled-color)}`;
|
|
@@ -128,7 +128,7 @@ const SdTextarea = class {
|
|
|
128
128
|
'--sd-system-size-field-sm-height': 'auto',
|
|
129
129
|
'--sd-system-radius-field-sm': `${TEXTAREA_TOKENS.radius}px`,
|
|
130
130
|
};
|
|
131
|
-
return (index.h("sd-field", { key: '
|
|
131
|
+
return (index.h("sd-field", { key: 'ea611c76e2550f996cfe8848aa880d070325f133', name: this.name, label: this.label, addonLabel: this.addonLabel, hint: this.hint, errorMessage: this.errorMessage, width: this.width, rules: this.rules, error: this.error, disabled: this.disabled, focused: this.focused, hovered: this.hovered, status: this.status, icon: this.icon, labelTooltip: this.labelTooltip, labelTooltipProps: this.labelTooltipProps, ref: el => (this.formField = el), onMouseEnter: () => (this.hovered = true), onMouseLeave: () => (this.hovered = false), style: cssVars }, index.h("div", { key: '90dbe39c0dd4eb8e6dfbf15afb8d04925d1c767b', class: "sd-textarea__content" }, index.h("textarea", { key: '9026a4837b4b7bba8bc8237ad3c1f516b9dda267', name: this.name, ref: el => (this.nativeEl = el), class: `sd-textarea__native ${this.textareaClass}`, value: this.internalValue || '', placeholder: this.placeholder, disabled: this.disabled, readOnly: this.readonly, autofocus: this.autoFocus, maxLength: this.maxLength, rows: this.rows, spellcheck: this.spellcheck, onInput: this.handleInput, onFocus: event => this.handleFocus('focus', event), onBlur: event => this.handleFocus('blur', event), style: this.textareaStyle }))));
|
|
132
132
|
}
|
|
133
133
|
static get watchers() { return {
|
|
134
134
|
"value": [{
|
|
@@ -234,7 +234,7 @@ const SdToastContainer = class {
|
|
|
234
234
|
const activeToasts = toasts.filter(t => t.state !== 'exiting').reverse();
|
|
235
235
|
const indexMap = new Map();
|
|
236
236
|
activeToasts.forEach((t, i) => indexMap.set(t.id, i));
|
|
237
|
-
return (index.h("div", { key: '
|
|
237
|
+
return (index.h("div", { key: '18ef06077ee49165d6237dbd4fff06e8c1997bcb', class: "sd-toast-container", style: this.getContainerStyles(), onMouseEnter: () => {
|
|
238
238
|
this.expanded = true;
|
|
239
239
|
this.pauseTimers();
|
|
240
240
|
}, onMouseLeave: () => {
|
|
@@ -57,10 +57,10 @@ const SdToast = class {
|
|
|
57
57
|
render() {
|
|
58
58
|
const typeConfig = TOAST_TYPE_CONFIG[this.type] ?? TOAST_TYPE_CONFIG.default;
|
|
59
59
|
const iconSize = Number(TOAST_LAYOUT.iconSize);
|
|
60
|
-
return (index.h("div", { key: '
|
|
60
|
+
return (index.h("div", { key: '2a054f05ab63f450e7b0dc1d3816dc9cfca149d0', style: {
|
|
61
61
|
'--sd-toast-bg': typeConfig.bg,
|
|
62
62
|
'--sd-toast-text': typeConfig.content,
|
|
63
|
-
} }, index.h("div", { key: '
|
|
63
|
+
} }, index.h("div", { key: 'e9ebafe293282a8df041b343e83ccbcca0f15919', class: "sd-toast", role: "status", "aria-live": "polite", "aria-atomic": "true" }, this.icon && (index.h("div", { key: 'ebd56ba5d1aea16453a8e90be0ab1d7be8ccd579', class: "sd-toast__icon" }, index.h("sd-icon", { key: 'd01746c69004c6697209f76a88baba467bf290db', name: this.icon, size: iconSize, color: typeConfig.content }))), index.h("div", { key: '962d70832f11496be43a60415aa435a9094c3fef', class: "sd-toast__content" }, index.h("span", { key: 'fd868607134f556980c67f22c2e55d9819fbfb99', class: "sd-toast__message" }, this.message)), this.link && (index.h("a", { key: '72feff87a7e2f0a7726ed293e14203ae1c82d80f', href: this.link, class: "sd-toast__link", target: "_blank", rel: "noopener noreferrer" }, this.linkLabel || this.link)), this.useClose && (index.h("sd-ghost-button", { key: 'f98218ceb7d1a339065219a35bef7db4125ea30b', class: "sd-toast__close", icon: "close", intent: this.type === 'caution' ? 'default' : 'inverse', ariaLabel: "close", size: "xs", onClick: () => this.close.emit() })))));
|
|
64
64
|
}
|
|
65
65
|
};
|
|
66
66
|
SdToast.style = sdToastCss();
|
|
@@ -41,7 +41,7 @@ const SdToggleButton = class {
|
|
|
41
41
|
this.change.emit(newValue);
|
|
42
42
|
};
|
|
43
43
|
render() {
|
|
44
|
-
return (index.h("label", { key: '
|
|
44
|
+
return (index.h("label", { key: '0e933c52b633eec101beec8aa6ec888dc6bc3448', class: this.buttonClasses, "aria-label": this.label || 'toggle button' }, this.label, index.h("input", { key: '833e7c26895e310cb6322b7231345f76f0a409dc', style: { display: 'none' }, type: "checkbox", onInput: this.handleChange })));
|
|
45
45
|
}
|
|
46
46
|
};
|
|
47
47
|
SdToggleButton.style = sdToggleButtonCss();
|
|
@@ -37,7 +37,7 @@ const SdToggle = class {
|
|
|
37
37
|
this.change.emit(newValue);
|
|
38
38
|
};
|
|
39
39
|
render() {
|
|
40
|
-
return (index.h("label", { key: '
|
|
40
|
+
return (index.h("label", { key: 'ca08050cdbbb4e5e7e615f72411be5bff93955d8', "aria-label": this.label || 'toggle', class: this.toggleClasses }, index.h("input", { key: 'abdae5d4dc59fc121ded9cc0800f68d3996d4e50', type: "checkbox", checked: this.value, disabled: this.disabled, onInput: this.handleChange }), this.label && index.h("span", { key: '37d23f59f877100c53deace3c6c70b441df5748c', class: "sd-toggle__label" }, this.label), index.h("div", { key: '545f76c3c1e63198f6dc80bdf6bf44f6840082b2', class: "sd-toggle__track" }, index.h("div", { key: '4142b2e46b93cf1d5f86cb1b5a4490c0e6a03a05', class: "sd-toggle__thumb" }))));
|
|
41
41
|
}
|
|
42
42
|
};
|
|
43
43
|
SdToggle.style = sdToggleCss();
|
|
@@ -4,6 +4,7 @@
|
|
|
4
4
|
"components/sd-calendar/sd-calendar.js",
|
|
5
5
|
"components/sd-checkbox/sd-checkbox.js",
|
|
6
6
|
"components/sd-date-box/sd-date-box.js",
|
|
7
|
+
"components/sd-date-range-picker/sd-date-range-picker.js",
|
|
7
8
|
"components/sd-form/sd-form.js",
|
|
8
9
|
"components/sd-radio/sd-radio.js",
|
|
9
10
|
"components/sd-radio-button-group/sd-radio-button-group.js",
|
|
@@ -19,7 +20,9 @@
|
|
|
19
20
|
"components/sd-card/sd-card.js",
|
|
20
21
|
"components/sd-confirm-modal/sd-confirm-modal.js",
|
|
21
22
|
"components/sd-date-picker/sd-date-picker.js",
|
|
22
|
-
"components/sd-date-
|
|
23
|
+
"components/sd-date-picker/sd-date-picker-calendar/sd-date-picker-calendar.js",
|
|
24
|
+
"components/sd-date-picker/sd-date-picker-trigger/sd-date-picker-trigger.js",
|
|
25
|
+
"components/sd-date-range-picker/sd-date-range-picker-calendar/sd-date-range-picker-calendar.js",
|
|
23
26
|
"components/sd-portal/sd-portal.js",
|
|
24
27
|
"components/sd-dropdown-button/sd-dropdown-button.js",
|
|
25
28
|
"components/sd-field/sd-field.js",
|
|
@@ -29,7 +29,7 @@ export class SdActionModal {
|
|
|
29
29
|
'--sd-action-modal-title-font-size': `${ACTION_MODAL_TITLE.fontSize}px`,
|
|
30
30
|
'--sd-action-modal-title-line-height': `${ACTION_MODAL_TITLE.lineHeight}px`,
|
|
31
31
|
};
|
|
32
|
-
return (h("div", { key: '
|
|
32
|
+
return (h("div", { key: 'a49f78c558f14d89b18569388c9f63899b2d8584', class: "sd-action-modal", style: cssVars }, h("header", { key: 'b03ed5b4eed300a78711eae2b7491e46340c4f61', class: "sd-action-modal__header" }, h("h2", { key: '05a21b4f9fb2be6149c46de6f3a2f1ea6e33e95d', class: "sd-action-modal__title" }, this.modalTitle), h("div", { key: '641524d22a46c5da6c8ed1265a4f6bf311be4603', class: "sd-action-modal__header-sub" }, h("slot", { key: 'b45fc41c0d895beadcd67314d56fb36f361f24b6', name: "header-sub-title" })), h("sd-ghost-button", { key: 'aaeb806bab195f18cfa9c7af87c47ca8e63a6716', class: "sd-action-modal__close", icon: "close", ariaLabel: "close", onClick: () => this.close.emit() })), h("div", { key: '248af7a4bb179a9077a54534cb7c590eacde29fb', class: "sd-action-modal__body" }, h("slot", { key: 'af91ab4ad191c29ed3e72e05e6265d48781ed2e9', name: "body" })), h("footer", { key: '938ccf2283d70a152c598c03e62af8ff17192f74', class: "sd-action-modal__footer" }, h("div", { key: '28e18ee211a61cec38259459d9deb3a80e99d4ff', class: "sd-action-modal__footer-sub" }, h("slot", { key: 'e3f2cafeb9978cb46f94c09692a924544cf1630a', name: "bottom-sub-content" })), h("sd-button-v2", { key: '765bc516e06d757c728f5d68b371c07061be61e0', ...DEFAULT_BUTTON_PROPS, ...this.buttonProps, onSdClick: () => this.ok.emit() }))));
|
|
33
33
|
}
|
|
34
34
|
static get is() { return "sd-action-modal"; }
|
|
35
35
|
static get originalStyleUrls() {
|
|
@@ -5,7 +5,7 @@ export class SdBadge {
|
|
|
5
5
|
label = '';
|
|
6
6
|
render() {
|
|
7
7
|
const resolvedColor = BADGE_COLOR_MAP[this.color] ?? BADGE_COLOR_MAP.blue;
|
|
8
|
-
return (h("div", { key: '
|
|
8
|
+
return (h("div", { key: 'ba4351faddf17a489fd4419e265d11279734a475', class: "sd-badge", style: { '--sd-badge-color': resolvedColor } }, h("div", { key: '84fbfecbd5ae7fd68941817891b91b68aee1d9e2', class: "sd-badge__dot" }), h("div", { key: 'ef53189b37a82d8daa3cce3b6cd9052d8352c8e7', class: "sd-badge__label" }, this.label)));
|
|
9
9
|
}
|
|
10
10
|
static get is() { return "sd-badge"; }
|
|
11
11
|
static get originalStyleUrls() {
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import inputTokens from "../../tokens/generated/component.textinput.json";
|
|
2
|
-
const sm = inputTokens.
|
|
3
|
-
const md = inputTokens.
|
|
2
|
+
const sm = inputTokens.textinput.sm;
|
|
3
|
+
const md = inputTokens.textinput.md;
|
|
4
4
|
export const BARCODE_INPUT_SIZE_MAP = {
|
|
5
5
|
sm: {
|
|
6
6
|
height: sm.height,
|
|
@@ -22,8 +22,8 @@ export const BARCODE_INPUT_SIZE_MAP = {
|
|
|
22
22
|
},
|
|
23
23
|
};
|
|
24
24
|
export const BARCODE_INPUT_COLORS = {
|
|
25
|
-
border: inputTokens.
|
|
26
|
-
bg: inputTokens.
|
|
27
|
-
text: inputTokens.
|
|
28
|
-
icon: inputTokens.
|
|
25
|
+
border: inputTokens.textinput.border,
|
|
26
|
+
bg: inputTokens.textinput.bg,
|
|
27
|
+
text: inputTokens.textinput.text,
|
|
28
|
+
icon: inputTokens.textinput.icon,
|
|
29
29
|
};
|
|
@@ -100,7 +100,7 @@ export class SdBarcodeInput {
|
|
|
100
100
|
'--sd-system-radius-field-sm': `${sizeTokens.radius}px`,
|
|
101
101
|
'--sd-system-color-field-bg-default': BARCODE_INPUT_COLORS.bg.barcode,
|
|
102
102
|
};
|
|
103
|
-
return (h("sd-field", { key: '
|
|
103
|
+
return (h("sd-field", { key: 'b9f59f804f48888086fb49e46e4bcbacaff57205', name: this.name, label: this.label, addonLabel: this.addonLabel, hint: this.hint, errorMessage: this.errorMessage, width: this.width, rules: this.rules, error: this.error, disabled: this.disabled, focused: this.focused, hovered: this.hovered, status: this.status, icon: this.icon, labelTooltip: this.labelTooltip, labelTooltipProps: this.labelTooltipProps, ref: el => (this.formField = el), onMouseEnter: () => (this.hovered = true), onMouseLeave: () => (this.hovered = false), style: cssVars }, h("label", { key: 'eebe928e88c814817d172688af675b753db96d0b', class: "sd-barcode-input__content" }, h("slot", { key: '5046c4bf4010d4ccbbb91d42e1c83f28674c19e5', name: "prefix" }), h("input", { key: '0887d9587d834624e6a756299d00383a3ffd44b5', name: this.name, ref: el => (this.nativeEl = el), class: `sd-barcode-input__native ${this.inputClass}`, type: "text", value: this.internalValue || '', placeholder: this.placeholder, disabled: this.disabled, readonly: this.readonly, autofocus: this.autoFocus, onInput: this.handleInput, onFocus: event => this.handleFocus('focus', event), onBlur: event => this.handleFocus('blur', event), style: this.inputStyle }), h("slot", { key: 'c5140b914ea57234ed6babf26265cc7556f48e15', name: "suffix" }), this.clearable && this.internalValue && (h("sd-ghost-button", { key: '45862d80442c826152bf5a8ac01e598a1222de42', icon: "close", ariaLabel: "close", size: "xxs", disabled: this.disabled, class: "sd-barcode-input__clear-icon", onClick: async () => {
|
|
104
104
|
if (this.disabled)
|
|
105
105
|
return;
|
|
106
106
|
this.internalValue = '';
|
|
@@ -16,7 +16,7 @@ sd-button {
|
|
|
16
16
|
--sd-button-icon-only-size: var(--sd-button-height);
|
|
17
17
|
text-decoration: none;
|
|
18
18
|
cursor: pointer;
|
|
19
|
-
border-radius: var(--sd-button-radius-
|
|
19
|
+
border-radius: var(--sd-button-radius-sm, 4px);
|
|
20
20
|
transition: all 0.2s ease-in-out;
|
|
21
21
|
position: relative;
|
|
22
22
|
overflow: hidden;
|
|
@@ -2,10 +2,10 @@ import { h } from "@stencil/core";
|
|
|
2
2
|
import buttonTokens from "../../tokens/generated/component.button.json";
|
|
3
3
|
import { resolveColor } from "../../utils/color";
|
|
4
4
|
const ICON_SIZES = {
|
|
5
|
-
xs: Number(buttonTokens.xs.icon),
|
|
6
|
-
sm: Number(buttonTokens.sm.icon),
|
|
7
|
-
md: Number(buttonTokens.md.icon),
|
|
8
|
-
lg: Number(buttonTokens.lg.icon),
|
|
5
|
+
xs: Number(buttonTokens.button.xs.icon),
|
|
6
|
+
sm: Number(buttonTokens.button.sm.icon),
|
|
7
|
+
md: Number(buttonTokens.button.md.icon),
|
|
8
|
+
lg: Number(buttonTokens.button.lg.icon),
|
|
9
9
|
};
|
|
10
10
|
export class SdButton {
|
|
11
11
|
el;
|
|
@@ -51,7 +51,7 @@ export class SdButton {
|
|
|
51
51
|
const buttonClasses = this.getButtonClasses();
|
|
52
52
|
// 유틸로 색상 키 -> HEX 매핑 (없으면 원본 그대로)
|
|
53
53
|
const resolvedColor = resolveColor(this.color);
|
|
54
|
-
return (h("button", { key: '
|
|
54
|
+
return (h("button", { key: 'b18b0e46ec5a26e35fd0c782c975c1e3f94c7bea', class: `${buttonClasses} ${this.sdClass}`, type: this.type, disabled: this.disabled, style: { '--button-color': resolvedColor }, onClick: this.handleClick }, h("div", { key: '3364b81ca9323e88b56ccde7783417416ecec4a0', class: "sd-button__content" }, this.icon && (h("sd-icon", { key: 'dbe12d21483f50cab4e7284fc340e5b02ec6578d', class: "sd-button__icon sd-button__icon--left", name: this.icon, size: this.iconSize ?? ICON_SIZES[this.size], color: this.iconColor ?? (this.variant === 'primary' ? '#fff' : resolvedColor) })), this.label && h("div", { key: '793b3ef70ff8fbe7a043baf3b00097ab0c3bb59b', class: "sd-button__label" }, this.label), this.iconRight && (h("sd-icon", { key: '9b35739d4c18c38f9487c806d4becc312146bed4', class: "sd-button__icon sd-button__icon--right", name: this.iconRight, size: ICON_SIZES[this.size], color: this.variant === 'primary' ? '#fff' : resolvedColor })))));
|
|
55
55
|
}
|
|
56
56
|
static get is() { return "sd-button"; }
|
|
57
57
|
static get originalStyleUrls() {
|
|
@@ -1,12 +1,12 @@
|
|
|
1
1
|
import buttonTokens from "../../tokens/generated/component.button.json";
|
|
2
2
|
export const BUTTON_FOCUS_RING_COLOR = '#0075FF';
|
|
3
3
|
const PRESET_DEFAULT_COLORS = {
|
|
4
|
-
primary: buttonTokens.brand.strong.bg.default,
|
|
5
|
-
secondary: buttonTokens.brand.subtle.bg.default,
|
|
6
|
-
primary_outline: buttonTokens.brand.outline.bg.default,
|
|
7
|
-
neutral_outline: buttonTokens.neutral.outline.bg.default,
|
|
8
|
-
danger: buttonTokens.danger.strong.bg.default,
|
|
9
|
-
danger_outline: buttonTokens.danger.outline.bg.default,
|
|
4
|
+
primary: buttonTokens.button.brand.strong.bg.default,
|
|
5
|
+
secondary: buttonTokens.button.brand.subtle.bg.default,
|
|
6
|
+
primary_outline: buttonTokens.button.brand.outline.bg.default,
|
|
7
|
+
neutral_outline: buttonTokens.button.neutral.outline.bg.default,
|
|
8
|
+
danger: buttonTokens.button.danger.strong.bg.default,
|
|
9
|
+
danger_outline: buttonTokens.button.danger.outline.bg.default,
|
|
10
10
|
};
|
|
11
11
|
export const BUTTON_CONFIG = {
|
|
12
12
|
primary_xs: {
|
|
@@ -131,37 +131,37 @@ export const BUTTON_CONFIG = {
|
|
|
131
131
|
},
|
|
132
132
|
};
|
|
133
133
|
export const BUTTON_ICON_SIZES = {
|
|
134
|
-
xs: Number(buttonTokens.xs.icon),
|
|
135
|
-
sm: Number(buttonTokens.sm.icon),
|
|
136
|
-
md: Number(buttonTokens.md.icon),
|
|
137
|
-
lg: Number(buttonTokens.lg.icon),
|
|
134
|
+
xs: Number(buttonTokens.button.xs.icon),
|
|
135
|
+
sm: Number(buttonTokens.button.sm.icon),
|
|
136
|
+
md: Number(buttonTokens.button.md.icon),
|
|
137
|
+
lg: Number(buttonTokens.button.lg.icon),
|
|
138
138
|
};
|
|
139
139
|
export const PRESET_HOVER_BACKGROUNDS = {
|
|
140
|
-
primary: buttonTokens.brand.strong.bg.hover,
|
|
141
|
-
secondary: buttonTokens.brand.subtle.bg.hover,
|
|
142
|
-
primary_outline: buttonTokens.brand.outline.bg.hover,
|
|
143
|
-
neutral_outline: buttonTokens.neutral.outline.bg.hover,
|
|
144
|
-
danger: buttonTokens.danger.strong.bg.hover,
|
|
145
|
-
danger_outline: buttonTokens.danger.outline.bg.hover,
|
|
140
|
+
primary: buttonTokens.button.brand.strong.bg.hover,
|
|
141
|
+
secondary: buttonTokens.button.brand.subtle.bg.hover,
|
|
142
|
+
primary_outline: buttonTokens.button.brand.outline.bg.hover,
|
|
143
|
+
neutral_outline: buttonTokens.button.neutral.outline.bg.hover,
|
|
144
|
+
danger: buttonTokens.button.danger.strong.bg.hover,
|
|
145
|
+
danger_outline: buttonTokens.button.danger.outline.bg.hover,
|
|
146
146
|
};
|
|
147
147
|
export const PRESET_CONTENT_COLORS = {
|
|
148
|
-
primary: buttonTokens.brand.strong.content,
|
|
149
|
-
secondary: buttonTokens.brand.subtle.content,
|
|
150
|
-
primary_outline: buttonTokens.brand.outline.content,
|
|
151
|
-
neutral_outline: buttonTokens.neutral.outline.content,
|
|
152
|
-
danger: buttonTokens.danger.strong.content,
|
|
153
|
-
danger_outline: buttonTokens.danger.outline.content,
|
|
148
|
+
primary: buttonTokens.button.brand.strong.content,
|
|
149
|
+
secondary: buttonTokens.button.brand.subtle.content,
|
|
150
|
+
primary_outline: buttonTokens.button.brand.outline.content,
|
|
151
|
+
neutral_outline: buttonTokens.button.neutral.outline.content,
|
|
152
|
+
danger: buttonTokens.button.danger.strong.content,
|
|
153
|
+
danger_outline: buttonTokens.button.danger.outline.content,
|
|
154
154
|
};
|
|
155
155
|
export const PRESET_BORDER_COLORS = {
|
|
156
156
|
primary: 'transparent',
|
|
157
157
|
secondary: 'transparent',
|
|
158
|
-
primary_outline: buttonTokens.brand.outline.border,
|
|
159
|
-
neutral_outline: buttonTokens.neutral.outline.border,
|
|
158
|
+
primary_outline: buttonTokens.button.brand.outline.border,
|
|
159
|
+
neutral_outline: buttonTokens.button.neutral.outline.border,
|
|
160
160
|
danger: 'transparent',
|
|
161
|
-
danger_outline: buttonTokens.danger.outline.border,
|
|
161
|
+
danger_outline: buttonTokens.button.danger.outline.border,
|
|
162
162
|
};
|
|
163
|
-
export const DISABLED_TEXT = buttonTokens.text.disabled;
|
|
164
|
-
export const DISABLED_ICON = buttonTokens.icon.disabled;
|
|
163
|
+
export const DISABLED_TEXT = buttonTokens.button.text.disabled;
|
|
164
|
+
export const DISABLED_ICON = buttonTokens.button.icon.disabled;
|
|
165
165
|
const SIZE_SUFFIX_PATTERN = /_(xs|sm|md|lg)$/;
|
|
166
166
|
export const isButtonV2Name = (value) => value in BUTTON_CONFIG;
|
|
167
167
|
export const getPresetName = (value) => value.replace(SIZE_SUFFIX_PATTERN, '');
|
|
@@ -27,7 +27,7 @@ sd-button-v2 {
|
|
|
27
27
|
min-width: var(--sd-button-v2-min-width, auto);
|
|
28
28
|
padding: 0 var(--sd-button-v2-padding-x);
|
|
29
29
|
border: var(--sd-button-border-width-default, 1px) solid var(--sd-button-v2-border);
|
|
30
|
-
border-radius: var(--sd-button-radius-
|
|
30
|
+
border-radius: var(--sd-button-radius-sm, 4px);
|
|
31
31
|
background: var(--sd-button-v2-bg);
|
|
32
32
|
color: var(--sd-button-v2-current-content);
|
|
33
33
|
cursor: pointer;
|
|
@@ -57,7 +57,7 @@ sd-button-v2 {
|
|
|
57
57
|
--sd-button-v2-font-size: var(--sd-button-xs-typography-font-size, 12px);
|
|
58
58
|
--sd-button-v2-font-weight: var(--sd-button-xs-typography-font-weight, 500);
|
|
59
59
|
--sd-button-v2-text-decoration: var(--sd-button-xs-typography-text-decoration, none);
|
|
60
|
-
--sd-button-v2-label-min-width: var(--sd-button-label-xs-min-width,
|
|
60
|
+
--sd-button-v2-label-min-width: var(--sd-button-label-xs-min-width, 36px);
|
|
61
61
|
--sd-button-v2-icon-only-size: var(--sd-button-icon-only-xs-width, var(--sd-button-v2-height));
|
|
62
62
|
}
|
|
63
63
|
.sd-button-v2--sm {
|
|
@@ -68,7 +68,7 @@ sd-button-v2 {
|
|
|
68
68
|
--sd-button-v2-font-size: var(--sd-button-sm-typography-font-size, 12px);
|
|
69
69
|
--sd-button-v2-font-weight: var(--sd-button-sm-typography-font-weight, 500);
|
|
70
70
|
--sd-button-v2-text-decoration: var(--sd-button-sm-typography-text-decoration, none);
|
|
71
|
-
--sd-button-v2-label-min-width: var(--sd-button-label-sm-min-width,
|
|
71
|
+
--sd-button-v2-label-min-width: var(--sd-button-label-sm-min-width, 70px);
|
|
72
72
|
--sd-button-v2-icon-only-size: var(--sd-button-icon-only-sm-width, var(--sd-button-v2-height));
|
|
73
73
|
}
|
|
74
74
|
.sd-button-v2--md {
|
|
@@ -79,8 +79,9 @@ sd-button-v2 {
|
|
|
79
79
|
--sd-button-v2-font-size: var(--sd-button-md-typography-font-size, 16px);
|
|
80
80
|
--sd-button-v2-font-weight: var(--sd-button-md-typography-font-weight, 500);
|
|
81
81
|
--sd-button-v2-text-decoration: var(--sd-button-md-typography-text-decoration, none);
|
|
82
|
-
--sd-button-v2-label-min-width: var(--sd-button-label-md-min-width,
|
|
82
|
+
--sd-button-v2-label-min-width: var(--sd-button-label-md-min-width, 100px);
|
|
83
83
|
--sd-button-v2-icon-only-size: var(--sd-button-icon-only-md-width, var(--sd-button-v2-height));
|
|
84
|
+
border-radius: var(--sd-button-radius-md, 6px);
|
|
84
85
|
}
|
|
85
86
|
.sd-button-v2--lg {
|
|
86
87
|
--sd-button-v2-height: var(--sd-button-lg-height, 62px);
|
|
@@ -90,8 +91,9 @@ sd-button-v2 {
|
|
|
90
91
|
--sd-button-v2-font-size: var(--sd-button-lg-typography-font-size, 18px);
|
|
91
92
|
--sd-button-v2-font-weight: var(--sd-button-lg-typography-font-weight, 500);
|
|
92
93
|
--sd-button-v2-text-decoration: var(--sd-button-lg-typography-text-decoration, none);
|
|
93
|
-
--sd-button-v2-label-min-width: var(--sd-button-label-lg-min-width,
|
|
94
|
+
--sd-button-v2-label-min-width: var(--sd-button-label-lg-min-width, 120px);
|
|
94
95
|
--sd-button-v2-icon-only-size: var(--sd-button-icon-only-lg-width, var(--sd-button-v2-height));
|
|
96
|
+
border-radius: var(--sd-button-radius-md, 6px);
|
|
95
97
|
}
|
|
96
98
|
.sd-button-v2--has-label {
|
|
97
99
|
--sd-button-v2-min-width: var(--sd-button-v2-label-min-width, auto);
|
|
@@ -61,13 +61,13 @@ export class SdButtonV2 {
|
|
|
61
61
|
const hasLabel = Boolean(this.label);
|
|
62
62
|
const iconOnly = !this.label && Boolean(this.icon);
|
|
63
63
|
const accessibleName = iconOnly && this.ariaLabel.trim() ? this.ariaLabel : undefined;
|
|
64
|
-
return (h("button", { key: '
|
|
64
|
+
return (h("button", { key: 'b61c65948aacc951a46fb4d6cce8e4df715c5ae5', class: this.getButtonClasses(preset, config.size, hasLabel, iconOnly), type: this.type, disabled: this.disabled, "aria-label": accessibleName, style: {
|
|
65
65
|
'--sd-button-v2-bg': config.variant === 'primary' ? config.color : '#FFFFFF',
|
|
66
66
|
'--sd-button-v2-bg-hover': PRESET_HOVER_BACKGROUNDS[preset],
|
|
67
67
|
'--sd-button-v2-border': PRESET_BORDER_COLORS[preset],
|
|
68
68
|
'--sd-button-v2-content': PRESET_CONTENT_COLORS[preset],
|
|
69
69
|
'--sd-button-v2-accent': BUTTON_FOCUS_RING_COLOR,
|
|
70
|
-
}, onClick: this.handleClick }, h("span", { key: '
|
|
70
|
+
}, onClick: this.handleClick }, h("span", { key: 'bdfe42f07909dee43ddd596eccc73eb0de7b59fd', class: "sd-button-v2__content" }, this.icon && (h("sd-icon", { key: 'ec6b33b19f26f9732d969dd351f578706de37016', class: "sd-button-v2__icon", name: this.icon, size: BUTTON_ICON_SIZES[config.size], color: "var(--sd-button-v2-current-icon)" })), this.label && h("span", { key: '1eebf5dacec105472215f2a1e33052c13366b40b', class: "sd-button-v2__label" }, this.label))));
|
|
71
71
|
}
|
|
72
72
|
static get is() { return "sd-button-v2"; }
|
|
73
73
|
static get originalStyleUrls() {
|
|
@@ -3,7 +3,7 @@ export class SdCard {
|
|
|
3
3
|
bordered = false;
|
|
4
4
|
sdClass = '';
|
|
5
5
|
render() {
|
|
6
|
-
return (h(Fragment, { key: '
|
|
6
|
+
return (h(Fragment, { key: '1097b68c59997cb041057ff7b77330275c52f7c7' }, h("div", { key: 'a6eb3be04f9bcad7f712c0f28ff9750ebfd5697a', class: `sd-card ${this.bordered ? 'sd-card--bordered' : ''} ${this.sdClass}` }, h("slot", { key: 'c2b5ae153d520f4078bb6e7ab4cd41f83eb32ad3' }))));
|
|
7
7
|
}
|
|
8
8
|
static get is() { return "sd-card"; }
|
|
9
9
|
static get originalStyleUrls() {
|
|
@@ -67,9 +67,9 @@ export class SdConfirmModal {
|
|
|
67
67
|
render() {
|
|
68
68
|
const iconName = CONFIRM_MODAL_ICON_MAP[this.type];
|
|
69
69
|
const iconColor = CONFIRM_MODAL_ICON_COLOR[this.type];
|
|
70
|
-
return (h("div", { key: '
|
|
70
|
+
return (h("div", { key: '5a81aa943cbaf554e665b5030c1c46e6aedc0a38', class: "sd-confirm-modal" }, h("sd-ghost-button", { key: 'd4d48c22ce5cd3895adb6e48688907f7c9d4202a', class: "sd-confirm-modal__close-button", icon: "close", ariaLabel: "close", onClick: () => this.close.emit() }), iconName && (h("sd-icon", { key: 'da157d4699b67cb75d25ee8d5da6694e13b874e4', class: "sd-confirm-modal__icon", name: iconName, size: TITLE_ICON_SIZE, color: iconColor })), h("h2", { key: '4362cd4581cec25b4fd9b88206cc21f5ffa68ca9', class: `sd-confirm-modal__title ${this.titleClass}` }, this.modalTitle), h("div", { key: '2169cdc63bc9affb0149e50f0fb94d08ec371bf5', class: "sd-confirm-modal__body" }, (this.topMessage ?? []).length > 0 && (h("div", { key: '3f51315daed6bf8bce81137d8621c26b1960dac3', class: "sd-confirm-modal__message" }, (this.topMessage ?? []).map(msg => (h("p", { class: "sd-confirm-modal__message-text", innerHTML: msg }))))), this.showContentBox && (h("div", { key: '5826cd4b28b8b4c38f28bea030a43f32a2a4203e', class: "sd-confirm-modal__content-box" }, this.tagContents ? (h("div", { class: "sd-confirm-modal__custom-content", ref: el => {
|
|
71
71
|
this.customContentRef = el;
|
|
72
|
-
} })) : (h("slot", { onSlotchange: () => this.syncHasSlottedContent() }, this.tagLabel && h("sd-tag", { name: this.tagPreset, label: this.tagLabel }), this.slotLabel && (h("span", { class: "sd-confirm-modal__slot-label" }, this.slotLabel)))))), (this.bottomMessage ?? []).length > 0 && (h("div", { key: '
|
|
72
|
+
} })) : (h("slot", { onSlotchange: () => this.syncHasSlottedContent() }, this.tagLabel && h("sd-tag", { name: this.tagPreset, label: this.tagLabel }), this.slotLabel && (h("span", { class: "sd-confirm-modal__slot-label" }, this.slotLabel)))))), (this.bottomMessage ?? []).length > 0 && (h("div", { key: 'a28bacaafc973b8b5d8be998c49d4b203f7ecc19', class: "sd-confirm-modal__message" }, (this.bottomMessage ?? []).map(msg => (h("p", { class: "sd-confirm-modal__message-text", innerHTML: msg })))))), h("div", { key: '791db1eb69ba9ef56fa0298d7539cde55b08e2ac', class: "sd-confirm-modal__button" }, this.subButtonLabel && (h("sd-button-v2", { key: '08407e3d972c6828f58020be94aa81a93f5e0e8c', name: SUB_BUTTON_PRESET, label: this.subButtonLabel, onSdClick: () => this.cancel.emit() })), h("sd-button-v2", { key: '6ef6528e54d2fe81ad96a546512a8a49b17f67d5', name: this.resolvedMainButton, label: this.mainButtonLabel, onSdClick: () => this.ok.emit() }))));
|
|
73
73
|
}
|
|
74
74
|
static get is() { return "sd-confirm-modal"; }
|
|
75
75
|
static get originalStyleUrls() {
|