@sellmate/design-system 1.20.1 → 1.22.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/cjs/design-system.cjs.js +2 -2
- package/dist/cjs/{index-DXm0PH2A.js → index-C-F-JEv_.js} +1 -1
- package/dist/cjs/loader.cjs.js +2 -2
- package/dist/cjs/sd-action-modal.cjs.entry.js +8 -2
- package/dist/cjs/sd-badge.cjs.entry.js +3 -2
- package/dist/cjs/sd-barcode-input.cjs.entry.js +35 -2
- package/dist/cjs/sd-button_2.cjs.entry.js +16 -7
- package/dist/cjs/sd-calendar_2.cjs.entry.js +17 -6
- package/dist/cjs/sd-callout.cjs.entry.js +4 -2
- package/dist/cjs/sd-card.cjs.entry.js +4 -2
- package/dist/cjs/sd-checkbox.cjs.entry.js +21 -12
- package/dist/cjs/sd-chip-input.cjs.entry.js +76 -18
- package/dist/cjs/sd-chip.cjs.entry.js +19 -2
- package/dist/cjs/sd-circle-progress.cjs.entry.js +6 -2
- package/dist/cjs/sd-confirm-modal_2.cjs.entry.js +27 -4
- package/dist/cjs/sd-date-box.cjs.entry.js +13 -3
- package/dist/cjs/sd-date-picker_7.cjs.entry.js +209 -13
- package/dist/cjs/sd-date-range-picker-calendar.cjs.entry.js +7 -2
- package/dist/cjs/sd-divider.cjs.entry.js +1 -1
- package/dist/cjs/sd-dropdown-button.cjs.entry.js +11 -1
- package/dist/cjs/sd-field_3.cjs.entry.js +70 -12
- package/dist/cjs/sd-form.cjs.entry.js +10 -2
- package/dist/cjs/sd-ghost-button_3.cjs.entry.js +54 -15
- package/dist/cjs/sd-guide.cjs.entry.js +9 -3
- package/dist/cjs/sd-key-value-table.cjs.entry.js +3 -1
- package/dist/cjs/sd-linear-progress.cjs.entry.js +7 -4
- package/dist/cjs/sd-loading-container.cjs.entry.js +5 -3
- package/dist/cjs/sd-modal-container.cjs.entry.js +7 -1
- package/dist/cjs/sd-pagination_4.cjs.entry.js +121 -13
- package/dist/cjs/sd-popover.cjs.entry.js +21 -5
- package/dist/cjs/sd-popup.cjs.entry.js +7 -3
- package/dist/cjs/sd-radio-button.cjs.entry.js +8 -2
- package/dist/cjs/sd-radio.cjs.entry.js +7 -2
- package/dist/cjs/sd-select-list-item_2.cjs.entry.js +18 -7
- package/dist/cjs/sd-select_3.cjs.entry.js +56 -9
- package/dist/cjs/sd-switch.cjs.entry.js +6 -2
- package/dist/cjs/sd-table.cjs.entry.js +42 -7
- package/dist/cjs/sd-tabs.cjs.entry.js +8 -2
- package/dist/cjs/sd-td.cjs.entry.js +11 -2
- package/dist/cjs/sd-text-link.cjs.entry.js +13 -4
- package/dist/cjs/sd-toast-container.cjs.entry.js +11 -2
- package/dist/cjs/sd-toast.cjs.entry.js +12 -3
- package/dist/cjs/sd-toggle.cjs.entry.js +6 -2
- package/dist/cjs/{tooltipArrow-D3P3JC08.js → tooltipArrow-26hYtSrD.js} +1 -1
- package/dist/collection/components/assets/CaretDown.js +1 -1
- package/dist/collection/components/assets/CaretLeft.js +1 -1
- package/dist/collection/components/assets/CaretRight.js +1 -1
- package/dist/collection/components/assets/CaretUp.js +1 -1
- package/dist/collection/components/sd-action-modal/sd-action-modal.js +13 -7
- package/dist/collection/components/sd-badge/sd-badge.js +3 -2
- package/dist/collection/components/sd-barcode-input/sd-barcode-input.js +67 -34
- package/dist/collection/components/sd-button/sd-button.js +18 -10
- package/dist/collection/components/sd-calendar/sd-calendar.js +15 -9
- package/dist/collection/components/sd-callout/sd-callout.js +5 -3
- package/dist/collection/components/sd-card/sd-card.js +5 -3
- package/dist/collection/components/sd-checkbox/sd-checkbox.config.js +5 -3
- package/dist/collection/components/sd-checkbox/sd-checkbox.css +16 -0
- package/dist/collection/components/sd-checkbox/sd-checkbox.js +5 -3
- package/dist/collection/components/sd-chip/sd-chip.js +35 -18
- package/dist/collection/components/sd-chip-input/sd-chip-input.css +6 -0
- package/dist/collection/components/sd-chip-input/sd-chip-input.js +107 -49
- package/dist/collection/components/sd-circle-progress/sd-circle-progress.js +9 -5
- package/dist/collection/components/sd-confirm-modal/sd-confirm-modal.js +32 -17
- package/dist/collection/components/sd-date-box/sd-date-box.js +22 -12
- package/dist/collection/components/sd-date-picker/sd-date-picker-trigger/sd-date-picker-trigger.js +12 -7
- package/dist/collection/components/sd-date-picker/sd-date-picker.js +48 -25
- package/dist/collection/components/sd-date-range-picker/sd-date-range-picker-calendar/sd-date-range-picker-calendar.js +11 -6
- package/dist/collection/components/sd-date-range-picker/sd-date-range-picker.js +50 -26
- package/dist/collection/components/sd-dropdown-button/sd-dropdown-button.js +20 -10
- package/dist/collection/components/sd-field/sd-field.js +51 -28
- package/dist/collection/components/sd-file-picker/sd-file-picker.js +60 -30
- package/dist/collection/components/sd-floating-portal/sd-floating-portal.js +32 -11
- package/dist/collection/components/sd-form/sd-form.js +17 -9
- package/dist/collection/components/sd-ghost-button/sd-ghost-button.js +28 -13
- package/dist/collection/components/sd-guide/sd-guide.js +14 -8
- package/dist/collection/components/sd-icon/sd-icon.js +2 -1
- package/dist/collection/components/sd-input/sd-input.js +82 -42
- package/dist/collection/components/sd-key-value-table/sd-key-value-table.js +4 -2
- package/dist/collection/components/sd-linear-progress/sd-linear-progress.js +10 -7
- package/dist/collection/components/sd-loading-container/sd-loading-container.js +6 -4
- package/dist/collection/components/sd-loading-modal/sd-loading-modal.js +17 -9
- package/dist/collection/components/sd-modal-container/sd-modal-container.js +12 -6
- package/dist/collection/components/sd-number-input/sd-number-input.js +82 -43
- package/dist/collection/components/sd-pagination/sd-pagination.js +11 -7
- package/dist/collection/components/sd-popover/sd-popover.js +35 -19
- package/dist/collection/components/sd-popup/sd-popup.js +11 -7
- package/dist/collection/components/sd-portal/sd-portal.js +35 -14
- package/dist/collection/components/sd-radio/sd-radio.js +11 -6
- package/dist/collection/components/sd-radio-button/sd-radio-button.js +13 -7
- package/dist/collection/components/sd-radio-group/sd-radio-group.js +13 -7
- package/dist/collection/components/sd-select/sd-select-list-item/sd-select-list-item.js +16 -9
- package/dist/collection/components/sd-select/sd-select-list-item-search/sd-select-list-item-search.js +12 -8
- package/dist/collection/components/sd-select/sd-select-listbox/sd-select-listbox.js +22 -12
- package/dist/collection/components/sd-select/sd-select-trigger/sd-select-trigger.js +18 -10
- package/dist/collection/components/sd-select/sd-select.js +62 -33
- package/dist/collection/components/sd-switch/sd-switch.js +9 -5
- package/dist/collection/components/sd-table/sd-table.js +76 -41
- package/dist/collection/components/sd-table/sd-table.stories.helpers.js +97 -0
- package/dist/collection/components/sd-table/sd-tbody/sd-tbody.js +4 -3
- package/dist/collection/components/sd-table/sd-td/sd-td.js +19 -10
- package/dist/collection/components/sd-table/sd-thead/sd-thead.css +21 -0
- package/dist/collection/components/sd-table/sd-thead/sd-thead.js +113 -20
- package/dist/collection/components/sd-table/sd-tr/sd-tr.js +22 -11
- package/dist/collection/components/sd-tabs/sd-tabs.js +13 -7
- package/dist/collection/components/sd-tag/sd-tag.js +10 -7
- package/dist/collection/components/sd-text-link/sd-text-link.js +21 -12
- package/dist/collection/components/sd-textarea/sd-textarea.js +69 -35
- package/dist/collection/components/sd-toast/sd-toast.js +20 -11
- package/dist/collection/components/sd-toast-container/sd-toast-container.js +19 -10
- package/dist/collection/components/sd-toggle/sd-toggle.js +9 -5
- package/dist/collection/components/sd-tooltip/sd-tooltip.js +30 -16
- package/dist/components/index.js +1 -1
- package/dist/components/{p-CUR9smP5.js → p-58DLP3IW.js} +1 -1
- package/dist/components/{p-CQozoo2-.js → p-B-Igud6n.js} +1 -1
- package/dist/components/{p-BZfVV3gu.js → p-B0myARGe.js} +1 -1
- package/dist/components/{p-CTPImLDQ.js → p-B12iH3Zk.js} +1 -1
- package/dist/components/{p-CoqA9KgU.js → p-B2bF2KlS.js} +1 -1
- package/dist/components/{p-MJG6EZeP.js → p-BFlmHQm9.js} +1 -1
- package/dist/{design-system/p-L_He_WSA.js → components/p-BRmilX-4.js} +1 -1
- package/dist/components/{p-Dl89_4C3.js → p-BXRgi3NZ.js} +1 -1
- package/dist/components/{p-BjcGzaFR.js → p-Bm3NWPaP.js} +1 -1
- package/dist/components/p-BpQwjSB8.js +1 -0
- package/dist/components/{p-CRwvv7YM.js → p-BpjmheLG.js} +1 -1
- package/dist/components/{p-5imde6N9.js → p-Bric-SEs.js} +1 -1
- package/dist/components/{p-CB2A3pJ5.js → p-BwTsP0Ak.js} +1 -1
- package/dist/components/{p-9Z-q6kKD.js → p-C1QezE7u.js} +1 -1
- package/dist/components/p-CCCwPJ5p.js +1 -0
- package/dist/components/p-CCO1WtEj.js +1 -0
- package/dist/components/p-CEKu7cxA.js +1 -0
- package/dist/components/{p-CrT06Uwc.js → p-CHxVi6l1.js} +1 -1
- package/dist/components/{p-DNnI3Nru.js → p-Cdzn78dP.js} +1 -1
- package/dist/components/p-Cj_1bYZF.js +1 -0
- package/dist/components/{p-ZvI5A-_t.js → p-Cjf8PHEl.js} +1 -1
- package/dist/components/{p-CJ69QmR3.js → p-Co2ThnbG.js} +1 -1
- package/dist/components/{p-gOIeNT-Z.js → p-CwSlRPMm.js} +1 -1
- package/dist/components/p-D7StBSjK.js +1 -0
- package/dist/components/{p-Bz93hWXV.js → p-DFbj6d3L.js} +1 -1
- package/dist/components/{p-B5bya7Gp.js → p-DlXBFtBO.js} +1 -1
- package/dist/components/{p-Rwc_ltPn.js → p-Du_qPqW-.js} +1 -1
- package/dist/components/{p-DIlNesBH.js → p-DzAvlr8W.js} +1 -1
- package/dist/components/{p-D99vy8Ip.js → p-FrqOl9KZ.js} +1 -1
- package/dist/components/{p-uSEbiD29.js → p-JMuxVcTW.js} +1 -1
- package/dist/components/{p-DertIGhs.js → p-OjchKJGr.js} +1 -1
- package/dist/components/p-S2-XqY2R.js +1 -0
- package/dist/components/{p-DDAA-zcg.js → p-YCGkwgiM.js} +1 -1
- package/dist/components/{p-DZTxHJlP.js → p-ZvP2Ce6J.js} +1 -1
- package/dist/components/p-kRH2GOb0.js +1 -0
- package/dist/components/{p-FTvXz0-a.js → p-mcMbSkii.js} +1 -1
- package/dist/components/{p-BiBLp9_a.js → p-vPS2GNz3.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.js +1 -1
- package/dist/components/sd-calendar.js +1 -1
- package/dist/components/sd-callout.js +1 -1
- package/dist/components/sd-card.js +1 -1
- package/dist/components/sd-checkbox.js +1 -1
- package/dist/components/sd-chip-input.js +1 -1
- package/dist/components/sd-chip.js +1 -1
- package/dist/components/sd-circle-progress.js +1 -1
- package/dist/components/sd-confirm-modal.js +1 -1
- package/dist/components/sd-date-box.js +1 -1
- package/dist/components/sd-date-picker-trigger.js +1 -1
- package/dist/components/sd-date-picker.js +1 -1
- package/dist/components/sd-date-range-picker-calendar.js +1 -1
- package/dist/components/sd-date-range-picker.js +1 -1
- package/dist/components/sd-divider.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-icon.js +1 -1
- package/dist/components/sd-input.js +1 -1
- package/dist/components/sd-key-value-table.js +1 -1
- package/dist/components/sd-linear-progress.js +1 -1
- package/dist/components/sd-loading-container.js +1 -1
- package/dist/components/sd-loading-modal.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-popup.js +1 -1
- package/dist/components/sd-portal.js +1 -1
- package/dist/components/sd-radio-button.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-list-item-search.js +1 -1
- package/dist/components/sd-select-list-item.js +1 -1
- package/dist/components/sd-select-listbox.js +1 -1
- package/dist/components/sd-select-trigger.js +1 -1
- package/dist/components/sd-select.js +1 -1
- package/dist/components/sd-switch.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-tbody.js +1 -1
- package/dist/components/sd-td.js +1 -1
- package/dist/components/sd-text-link.js +1 -1
- package/dist/components/sd-textarea.js +1 -1
- package/dist/components/sd-thead.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.js +1 -1
- package/dist/components/sd-tooltip.js +1 -1
- package/dist/components/sd-tr.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-14447dd5.entry.js +1 -0
- package/dist/design-system/{p-e9d1dbb5.entry.js → p-274dbc65.entry.js} +1 -1
- package/dist/design-system/{p-b291baab.entry.js → p-2ba0b35a.entry.js} +1 -1
- package/dist/design-system/{p-52f551a1.entry.js → p-2ca4902b.entry.js} +1 -1
- package/dist/design-system/p-2df32f8c.entry.js +1 -0
- package/dist/design-system/{p-cb80327c.entry.js → p-35da166a.entry.js} +1 -1
- package/dist/design-system/p-35e1e2fa.entry.js +1 -0
- package/dist/design-system/p-4bbc894b.entry.js +1 -0
- package/dist/design-system/{p-6ce68bf2.entry.js → p-4bc0ce52.entry.js} +1 -1
- package/dist/design-system/p-4c1559c8.entry.js +1 -0
- package/dist/design-system/{p-da4e2674.entry.js → p-4eeca0cb.entry.js} +1 -1
- package/dist/design-system/{p-646a7830.entry.js → p-4f69fde0.entry.js} +1 -1
- package/dist/design-system/{p-ccf1a3fc.entry.js → p-50b5cf37.entry.js} +1 -1
- package/dist/design-system/p-52e88677.entry.js +1 -0
- package/dist/design-system/{p-4acfc5f9.entry.js → p-552acf98.entry.js} +1 -1
- package/dist/design-system/{p-23006577.entry.js → p-563a8242.entry.js} +1 -1
- package/dist/design-system/{p-e3990243.entry.js → p-68687503.entry.js} +1 -1
- package/dist/design-system/{p-1f3c1cca.entry.js → p-6d8a4a23.entry.js} +1 -1
- package/dist/design-system/{p-d5032f31.entry.js → p-7c507d39.entry.js} +1 -1
- package/dist/design-system/{p-717eba5f.entry.js → p-88926a42.entry.js} +1 -1
- package/dist/design-system/{p-35d390f1.entry.js → p-90436be8.entry.js} +1 -1
- package/dist/design-system/{p-9289eb14.entry.js → p-99f33027.entry.js} +1 -1
- package/dist/design-system/{p-c47198fc.entry.js → p-9a010c12.entry.js} +1 -1
- package/dist/design-system/{p-54853a2b.entry.js → p-9dc0c2f9.entry.js} +1 -1
- package/dist/{components/p-Bg9XySrz.js → design-system/p-C7HJ-NfO.js} +2 -1
- package/dist/{components/p-0VCXAYrh.js → design-system/p-DUyBmuH_.js} +1 -1
- package/dist/design-system/{p-d5c3bac9.entry.js → p-a71a8b31.entry.js} +1 -1
- package/dist/design-system/{p-a4331364.entry.js → p-a80cc067.entry.js} +1 -1
- package/dist/design-system/{p-ae344950.entry.js → p-abcc9367.entry.js} +1 -1
- package/dist/design-system/p-ac81b46e.entry.js +1 -0
- package/dist/design-system/{p-08343698.entry.js → p-b881bbb6.entry.js} +1 -1
- package/dist/design-system/{p-2151e081.entry.js → p-bfba449b.entry.js} +1 -1
- package/dist/design-system/p-c684cd96.entry.js +1 -0
- package/dist/design-system/{p-b63b8df9.entry.js → p-c93c623f.entry.js} +1 -1
- package/dist/design-system/{p-98e0b332.entry.js → p-ccc85130.entry.js} +1 -1
- package/dist/design-system/{p-aa1c6202.entry.js → p-ce5df7ef.entry.js} +1 -1
- package/dist/design-system/{p-adfddf3b.entry.js → p-ce83eca1.entry.js} +1 -1
- package/dist/design-system/{p-7ed8c8f1.entry.js → p-d5b535ad.entry.js} +1 -1
- package/dist/design-system/{p-df7c721d.entry.js → p-e310f188.entry.js} +1 -1
- package/dist/design-system/p-e7d4b78e.entry.js +1 -0
- package/dist/design-system/{p-bdb7492c.entry.js → p-fc65bbe2.entry.js} +1 -1
- package/dist/design-system/{p-a5a586da.entry.js → p-ff726fad.entry.js} +1 -1
- package/dist/esm/design-system.js +3 -3
- package/dist/esm/{index-CAxodB5I.js → index-C7HJ-NfO.js} +1 -1
- package/dist/esm/loader.js +3 -3
- package/dist/esm/sd-action-modal.entry.js +8 -2
- package/dist/esm/sd-badge.entry.js +3 -2
- package/dist/esm/sd-barcode-input.entry.js +35 -2
- package/dist/esm/sd-button_2.entry.js +16 -7
- package/dist/esm/sd-calendar_2.entry.js +17 -6
- package/dist/esm/sd-callout.entry.js +4 -2
- package/dist/esm/sd-card.entry.js +4 -2
- package/dist/esm/sd-checkbox.entry.js +21 -12
- package/dist/esm/sd-chip-input.entry.js +76 -18
- package/dist/esm/sd-chip.entry.js +19 -2
- package/dist/esm/sd-circle-progress.entry.js +6 -2
- package/dist/esm/sd-confirm-modal_2.entry.js +27 -4
- package/dist/esm/sd-date-box.entry.js +13 -3
- package/dist/esm/sd-date-picker_7.entry.js +209 -13
- package/dist/esm/sd-date-range-picker-calendar.entry.js +7 -2
- package/dist/esm/sd-divider.entry.js +1 -1
- package/dist/esm/sd-dropdown-button.entry.js +11 -1
- package/dist/esm/sd-field_3.entry.js +70 -12
- package/dist/esm/sd-form.entry.js +10 -2
- package/dist/esm/sd-ghost-button_3.entry.js +54 -15
- package/dist/esm/sd-guide.entry.js +9 -3
- package/dist/esm/sd-key-value-table.entry.js +3 -1
- package/dist/esm/sd-linear-progress.entry.js +7 -4
- package/dist/esm/sd-loading-container.entry.js +5 -3
- package/dist/esm/sd-modal-container.entry.js +7 -1
- package/dist/esm/sd-pagination_4.entry.js +121 -13
- package/dist/esm/sd-popover.entry.js +21 -5
- package/dist/esm/sd-popup.entry.js +7 -3
- package/dist/esm/sd-radio-button.entry.js +8 -2
- package/dist/esm/sd-radio.entry.js +7 -2
- package/dist/esm/sd-select-list-item_2.entry.js +18 -7
- package/dist/esm/sd-select_3.entry.js +56 -9
- package/dist/esm/sd-switch.entry.js +6 -2
- package/dist/esm/sd-table.entry.js +42 -7
- package/dist/esm/sd-tabs.entry.js +8 -2
- package/dist/esm/sd-td.entry.js +11 -2
- package/dist/esm/sd-text-link.entry.js +13 -4
- package/dist/esm/sd-toast-container.entry.js +11 -2
- package/dist/esm/sd-toast.entry.js +12 -3
- package/dist/esm/sd-toggle.entry.js +6 -2
- package/dist/esm/{tooltipArrow-DLr6VvUK.js → tooltipArrow-Bgf3crs7.js} +1 -1
- package/dist/types/components/sd-action-modal/sd-action-modal.d.ts +6 -0
- package/dist/types/components/sd-badge/sd-badge.d.ts +1 -0
- package/dist/types/components/sd-barcode-input/sd-barcode-input.d.ts +33 -0
- package/dist/types/components/sd-button/sd-button.d.ts +8 -0
- package/dist/types/components/sd-calendar/sd-calendar.d.ts +6 -0
- package/dist/types/components/sd-callout/sd-callout.d.ts +2 -0
- package/dist/types/components/sd-card/sd-card.d.ts +2 -0
- package/dist/types/components/sd-checkbox/sd-checkbox.config.d.ts +2 -0
- package/dist/types/components/sd-chip/sd-chip.d.ts +17 -0
- package/dist/types/components/sd-chip-input/sd-chip-input.d.ts +33 -0
- package/dist/types/components/sd-circle-progress/sd-circle-progress.d.ts +4 -0
- package/dist/types/components/sd-confirm-modal/sd-confirm-modal.d.ts +15 -0
- package/dist/types/components/sd-date-box/sd-date-box.d.ts +10 -0
- package/dist/types/components/sd-date-picker/sd-date-picker-trigger/sd-date-picker-trigger.d.ts +5 -0
- package/dist/types/components/sd-date-picker/sd-date-picker.d.ts +23 -0
- package/dist/types/components/sd-date-range-picker/sd-date-range-picker-calendar/sd-date-range-picker-calendar.d.ts +5 -0
- package/dist/types/components/sd-date-range-picker/sd-date-range-picker.d.ts +24 -0
- package/dist/types/components/sd-dropdown-button/sd-dropdown-button.d.ts +10 -0
- package/dist/types/components/sd-field/sd-field.d.ts +23 -0
- package/dist/types/components/sd-file-picker/sd-file-picker.d.ts +30 -0
- package/dist/types/components/sd-floating-portal/sd-floating-portal.d.ts +12 -0
- package/dist/types/components/sd-form/sd-form.d.ts +8 -0
- package/dist/types/components/sd-ghost-button/sd-ghost-button.d.ts +7 -0
- package/dist/types/components/sd-guide/sd-guide.d.ts +6 -0
- package/dist/types/components/sd-icon/sd-icon.d.ts +1 -0
- package/dist/types/components/sd-input/sd-input.d.ts +40 -0
- package/dist/types/components/sd-key-value-table/sd-key-value-table.d.ts +2 -0
- package/dist/types/components/sd-linear-progress/sd-linear-progress.d.ts +4 -0
- package/dist/types/components/sd-loading-container/sd-loading-container.d.ts +2 -0
- package/dist/types/components/sd-loading-modal/sd-loading-modal.d.ts +8 -0
- package/dist/types/components/sd-modal-container/sd-modal-container.d.ts +6 -0
- package/dist/types/components/sd-number-input/sd-number-input.d.ts +39 -0
- package/dist/types/components/sd-pagination/sd-pagination.d.ts +4 -0
- package/dist/types/components/sd-popover/sd-popover.d.ts +16 -0
- package/dist/types/components/sd-popup/sd-popup.d.ts +5 -0
- package/dist/types/components/sd-portal/sd-portal.d.ts +13 -0
- package/dist/types/components/sd-radio/sd-radio.d.ts +5 -0
- package/dist/types/components/sd-radio-button/sd-radio-button.d.ts +6 -0
- package/dist/types/components/sd-radio-group/sd-radio-group.d.ts +6 -0
- package/dist/types/components/sd-select/sd-select-list-item/sd-select-list-item.d.ts +7 -0
- package/dist/types/components/sd-select/sd-select-list-item-search/sd-select-list-item-search.d.ts +4 -0
- package/dist/types/components/sd-select/sd-select-listbox/sd-select-listbox.d.ts +10 -0
- package/dist/types/components/sd-select/sd-select-trigger/sd-select-trigger.d.ts +8 -0
- package/dist/types/components/sd-select/sd-select.d.ts +29 -0
- package/dist/types/components/sd-switch/sd-switch.d.ts +4 -0
- package/dist/types/components/sd-table/constants.d.ts +1 -0
- package/dist/types/components/sd-table/sd-table.d.ts +35 -0
- package/dist/types/components/sd-table/sd-table.stories.helpers.d.ts +10 -0
- package/dist/types/components/sd-table/sd-tbody/sd-tbody.d.ts +1 -0
- package/dist/types/components/sd-table/sd-td/sd-td.d.ts +9 -0
- package/dist/types/components/sd-table/sd-thead/sd-thead.d.ts +21 -0
- package/dist/types/components/sd-table/sd-tr/sd-tr.d.ts +11 -0
- package/dist/types/components/sd-tabs/sd-tabs.d.ts +6 -0
- package/dist/types/components/sd-tag/sd-tag.d.ts +4 -0
- package/dist/types/components/sd-text-link/sd-text-link.d.ts +9 -0
- package/dist/types/components/sd-textarea/sd-textarea.d.ts +34 -0
- package/dist/types/components/sd-toast/sd-toast.d.ts +9 -0
- package/dist/types/components/sd-toast-container/sd-toast-container.d.ts +9 -0
- package/dist/types/components/sd-toggle/sd-toggle.d.ts +4 -0
- package/dist/types/components/sd-tooltip/sd-tooltip.d.ts +14 -0
- package/dist/types/components.d.ts +1827 -7
- package/hydrate/index.js +949 -146
- package/hydrate/index.mjs +949 -146
- package/package.json +1 -1
- package/dist/components/p-B7PHGGFH.js +0 -1
- package/dist/components/p-CLlAhEDc.js +0 -1
- package/dist/components/p-CXeOxSQ-.js +0 -1
- package/dist/components/p-CZfsknba.js +0 -1
- package/dist/components/p-CvSqieCH.js +0 -1
- package/dist/components/p-P2jWtk8J.js +0 -1
- package/dist/components/p-xkRWGISE.js +0 -1
- package/dist/design-system/p-17dcf0e4.entry.js +0 -1
- package/dist/design-system/p-316b8a08.entry.js +0 -1
- package/dist/design-system/p-5039241c.entry.js +0 -1
- package/dist/design-system/p-5eaa12af.entry.js +0 -1
- package/dist/design-system/p-9c38ee79.entry.js +0 -1
- package/dist/design-system/p-CAxodB5I.js +0 -2
- package/dist/design-system/p-c995e6c3.entry.js +0 -1
- package/dist/design-system/p-eef6d4a3.entry.js +0 -1
- package/dist/design-system/p-faf7b64c.entry.js +0 -1
- package/dist/design-system/p-fd7abbfa.entry.js +0 -1
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
'use strict';
|
|
2
2
|
|
|
3
|
-
var index = require('./index-
|
|
3
|
+
var index = require('./index-C-F-JEv_.js');
|
|
4
4
|
var index$1 = require('./index-BUvXpPc3.js');
|
|
5
5
|
var sdDatePicker_config = require('./sd-date-picker.config-CtXmufyj.js');
|
|
6
6
|
var component_textinput = require('./component.textinput-Bb-nU5xI.js');
|
|
@@ -17,43 +17,66 @@ const SdDatePicker = class {
|
|
|
17
17
|
}
|
|
18
18
|
static CLOSE_ANIMATION_DURATION = 150;
|
|
19
19
|
get el() { return index.getElement(this); }
|
|
20
|
+
/** 선택된 날짜 (YYYY-MM-DD) */
|
|
20
21
|
value = null;
|
|
22
|
+
/** 입력 필드 크기 */
|
|
21
23
|
size = 'sm';
|
|
24
|
+
/** 날짜 미선택 시 표시할 placeholder */
|
|
22
25
|
placeholder = 'YYYY-MM-DD';
|
|
26
|
+
/** 선택 가능한 날짜 범위 [시작일, 종료일] */
|
|
23
27
|
selectable;
|
|
28
|
+
/** 비활성 상태 여부 */
|
|
24
29
|
disabled = false;
|
|
30
|
+
/** 필드 너비 (숫자면 px, 문자열이면 그대로 적용) */
|
|
25
31
|
width = '';
|
|
26
32
|
// sd-field 공통 props
|
|
33
|
+
/** 레이블 텍스트 */
|
|
27
34
|
label = '';
|
|
35
|
+
/** 레이블 너비 */
|
|
28
36
|
labelWidth = '';
|
|
37
|
+
/** 필드 우측 어드온 레이블 */
|
|
29
38
|
addonLabel = '';
|
|
39
|
+
/** 어드온 정렬 방향 */
|
|
30
40
|
addonAlign = 'start';
|
|
41
|
+
/** 필드 하단 힌트 텍스트 */
|
|
31
42
|
hint = '';
|
|
43
|
+
/** 에러 메시지 */
|
|
32
44
|
errorMessage = '';
|
|
45
|
+
/** 유효성 검사 규칙 목록 */
|
|
33
46
|
rules = [];
|
|
47
|
+
/** 에러 상태 여부 */
|
|
34
48
|
error = false;
|
|
49
|
+
/** 레이블 영역 아이콘 */
|
|
35
50
|
icon = undefined;
|
|
51
|
+
/** 레이블 툴팁 텍스트 */
|
|
36
52
|
labelTooltip = '';
|
|
53
|
+
/** 레이블 툴팁 상세 옵션 */
|
|
37
54
|
labelTooltipProps = null;
|
|
38
55
|
isOpen = false;
|
|
39
56
|
isAnimatingOut = false;
|
|
40
57
|
focused = false;
|
|
41
58
|
hovered = false;
|
|
59
|
+
/** 날짜 선택 시 선택된 날짜(YYYY-MM-DD)를 전달합니다. */
|
|
42
60
|
update;
|
|
61
|
+
/** 달력 월/년 이동 시 현재 보여지는 연·월을 전달합니다. */
|
|
43
62
|
viewChange;
|
|
44
63
|
triggerRef;
|
|
45
64
|
formField;
|
|
46
65
|
closeAnimationTimer;
|
|
66
|
+
/** 폼 연동용 name 속성 */
|
|
47
67
|
name = index$1.nanoid();
|
|
48
68
|
watchIsOpen(newValue) {
|
|
49
69
|
this.focused = newValue;
|
|
50
70
|
}
|
|
71
|
+
/** 유효성 검사를 실행합니다. */
|
|
51
72
|
async sdValidate() {
|
|
52
73
|
return this.formField?.sdValidate();
|
|
53
74
|
}
|
|
75
|
+
/** 값과 유효성 상태를 초기화합니다. */
|
|
54
76
|
async sdReset() {
|
|
55
77
|
return this.formField?.sdReset();
|
|
56
78
|
}
|
|
79
|
+
/** 유효성 상태만 초기화합니다. */
|
|
57
80
|
async sdResetValidate() {
|
|
58
81
|
return this.formField?.sdResetValidation();
|
|
59
82
|
}
|
|
@@ -106,9 +129,9 @@ const SdDatePicker = class {
|
|
|
106
129
|
'--sd-system-color-field-border-focus': sdDatePicker_config.DATEPICKER_COLORS.border.focus,
|
|
107
130
|
'--sd-system-color-field-bg-default': sdDatePicker_config.DATEPICKER_COLORS.bg.default,
|
|
108
131
|
};
|
|
109
|
-
return (index.h("sd-field", { key: '
|
|
132
|
+
return (index.h("sd-field", { key: '2fc699a41a6646404e5cbd29688f14c61b466c56', name: this.name, label: this.label, labelWidth: this.labelWidth, addonLabel: this.addonLabel, addonAlign: this.addonAlign, hint: this.hint, errorMessage: this.errorMessage, width: this.width, rules: this.rules, error: this.error, disabled: this.disabled, focused: this.focused, hovered: this.hovered, size: this.size, 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: '33c690078e2511657bfe3747d81cc1333b021353', class: "sd-date-picker", ref: el => {
|
|
110
133
|
this.triggerRef = el;
|
|
111
|
-
} }, index.h("sd-date-picker-trigger", { key: '
|
|
134
|
+
} }, index.h("sd-date-picker-trigger", { key: 'b5248eecbf1c4e8eca4e5b23206b7bebe7034280', displayText: this.value ?? '', placeholder: this.placeholder, disabled: this.disabled, size: this.size, onSdTriggerClick: this.handleTriggerClick })), (this.isOpen || this.isAnimatingOut) && (index.h("sd-portal", { key: 'f89b8688a43b9c702d75b8c5587b30626c7fd2db', open: this.isOpen, parentRef: this.triggerRef, onSdClose: () => this.closeDropdown() }, index.h("sd-calendar", { key: '4b293972c1b860f6d85be57fb72689c94699aeae', elevated: true, value: this.value, selectable: this.selectable, onSdUpdate: this.handleSelect, onSdViewChange: this.handleViewChange })))));
|
|
112
135
|
}
|
|
113
136
|
static get watchers() { return {
|
|
114
137
|
"isOpen": [{
|
|
@@ -128,44 +151,68 @@ const SdDateRangePicker = class {
|
|
|
128
151
|
}
|
|
129
152
|
static CLOSE_ANIMATION_DURATION = 150;
|
|
130
153
|
get el() { return index.getElement(this); }
|
|
154
|
+
/** 선택된 날짜 범위 [시작일, 종료일] (YYYY-MM-DD) */
|
|
131
155
|
value = null;
|
|
156
|
+
/** 입력 필드 크기 */
|
|
132
157
|
size = 'sm';
|
|
158
|
+
/** 미선택 시 표시할 placeholder */
|
|
133
159
|
placeholder = 'YYYY-MM-DD ~ YYYY-MM-DD';
|
|
160
|
+
/** 선택 가능한 날짜 범위 [시작일, 종료일] */
|
|
134
161
|
selectable;
|
|
162
|
+
/** 최대 선택 가능한 날짜 범위 (일 단위) */
|
|
135
163
|
maxRange;
|
|
164
|
+
/** 비활성 상태 여부 */
|
|
136
165
|
disabled = false;
|
|
166
|
+
/** 필드 너비 (숫자면 px, 문자열이면 그대로 적용) */
|
|
137
167
|
width = '';
|
|
138
168
|
// sd-field 공통 props
|
|
169
|
+
/** 레이블 텍스트 */
|
|
139
170
|
label = '';
|
|
171
|
+
/** 레이블 너비 */
|
|
140
172
|
labelWidth = '';
|
|
173
|
+
/** 필드 우측 어드온 레이블 */
|
|
141
174
|
addonLabel = '';
|
|
175
|
+
/** 어드온 정렬 방향 */
|
|
142
176
|
addonAlign = 'start';
|
|
177
|
+
/** 필드 하단 힌트 텍스트 */
|
|
143
178
|
hint = '';
|
|
179
|
+
/** 에러 메시지 */
|
|
144
180
|
errorMessage = '';
|
|
181
|
+
/** 유효성 검사 규칙 목록 */
|
|
145
182
|
rules = [];
|
|
183
|
+
/** 에러 상태 여부 */
|
|
146
184
|
error = false;
|
|
185
|
+
/** 레이블 영역 아이콘 */
|
|
147
186
|
icon = undefined;
|
|
187
|
+
/** 레이블 툴팁 텍스트 */
|
|
148
188
|
labelTooltip = '';
|
|
189
|
+
/** 레이블 툴팁 상세 옵션 */
|
|
149
190
|
labelTooltipProps = null;
|
|
150
191
|
isOpen = false;
|
|
151
192
|
isAnimatingOut = false;
|
|
152
193
|
focused = false;
|
|
153
194
|
hovered = false;
|
|
195
|
+
/** 날짜 범위 선택 완료 시 [시작일, 종료일]을 전달합니다. */
|
|
154
196
|
update;
|
|
197
|
+
/** 달력 월/년 이동 시 현재 보여지는 연·월을 전달합니다. */
|
|
155
198
|
viewChange;
|
|
156
199
|
triggerRef;
|
|
157
200
|
formField;
|
|
158
201
|
closeAnimationTimer;
|
|
202
|
+
/** 폼 연동용 name 속성 */
|
|
159
203
|
name = index$1.nanoid();
|
|
160
204
|
watchIsOpen(newValue) {
|
|
161
205
|
this.focused = newValue;
|
|
162
206
|
}
|
|
207
|
+
/** 유효성 검사를 실행합니다. */
|
|
163
208
|
async sdValidate() {
|
|
164
209
|
return this.formField?.sdValidate();
|
|
165
210
|
}
|
|
211
|
+
/** 값과 유효성 상태를 초기화합니다. */
|
|
166
212
|
async sdReset() {
|
|
167
213
|
return this.formField?.sdReset();
|
|
168
214
|
}
|
|
215
|
+
/** 유효성 상태만 초기화합니다. */
|
|
169
216
|
async sdResetValidate() {
|
|
170
217
|
return this.formField?.sdResetValidation();
|
|
171
218
|
}
|
|
@@ -222,9 +269,9 @@ const SdDateRangePicker = class {
|
|
|
222
269
|
'--sd-system-color-field-border-focus': sdDatePicker_config.DATEPICKER_COLORS.border.focus,
|
|
223
270
|
'--sd-system-color-field-bg-default': sdDatePicker_config.DATEPICKER_COLORS.bg.default,
|
|
224
271
|
};
|
|
225
|
-
return (index.h("sd-field", { key: '
|
|
272
|
+
return (index.h("sd-field", { key: '00e25ab4608b5340b8be9e1dd19050968e34b758', name: this.name, label: this.label, labelWidth: this.labelWidth, addonLabel: this.addonLabel, addonAlign: this.addonAlign, hint: this.hint, errorMessage: this.errorMessage, width: this.width, rules: this.rules, error: this.error, disabled: this.disabled, focused: this.focused, hovered: this.hovered, size: this.size, 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: '98179e2ec90e55f83e5deff6e36fc821fc103456', class: "sd-date-range-picker", ref: el => {
|
|
226
273
|
this.triggerRef = el;
|
|
227
|
-
} }, index.h("sd-date-picker-trigger", { key: '
|
|
274
|
+
} }, index.h("sd-date-picker-trigger", { key: 'fe123228a851da602f0a5a8929fc20782742a24b', displayText: this.displayText, placeholder: this.placeholder, disabled: this.disabled, size: this.size, onSdTriggerClick: this.handleTriggerClick })), (this.isOpen || this.isAnimatingOut) && (index.h("sd-portal", { key: 'ee7eb14cc09fd067a8eeb9f19bd93178378d81b2', open: this.isOpen, parentRef: this.triggerRef, onSdClose: () => this.closeDropdown() }, index.h("sd-date-range-picker-calendar", { key: '8dc57a29f1ecd6811fb4538a96eea823dfebe080', value: this.value, selectable: this.selectable, maxRange: this.maxRange, onSdSelect: this.handleSelect, onSdViewChange: this.handleViewChange })))));
|
|
228
275
|
}
|
|
229
276
|
static get watchers() { return {
|
|
230
277
|
"isOpen": [{
|
|
@@ -286,38 +333,65 @@ const SdFilePicker = class {
|
|
|
286
333
|
this.reject = index.createEvent(this, "sdReject", 7);
|
|
287
334
|
}
|
|
288
335
|
get el() { return index.getElement(this); }
|
|
336
|
+
/** 선택된 파일 값 */
|
|
289
337
|
value = null;
|
|
338
|
+
/** 파일 미선택 시 표시할 placeholder */
|
|
290
339
|
placeholder = 'Click to upload';
|
|
340
|
+
/** 비활성 상태 여부 */
|
|
291
341
|
disabled = false;
|
|
342
|
+
/** sd-field 없이 인라인으로 표시하는 모드 여부 */
|
|
292
343
|
inline = false;
|
|
344
|
+
/** 다중 파일 선택 여부 */
|
|
293
345
|
multiple = false;
|
|
346
|
+
/** 허용할 파일 타입 (input accept 속성과 동일) */
|
|
294
347
|
accept;
|
|
348
|
+
/** 파일 한 개의 최대 크기 (bytes) */
|
|
295
349
|
maxFileSize;
|
|
350
|
+
/** 전체 파일의 최대 용량 합계 (bytes) */
|
|
296
351
|
maxTotalSize;
|
|
352
|
+
/** 최대 파일 개수 */
|
|
297
353
|
maxFiles;
|
|
298
354
|
// sd-field 패스스루 props
|
|
355
|
+
/** 폼 연동용 name 속성 */
|
|
299
356
|
name = index$1.nanoid();
|
|
357
|
+
/** 레이블 텍스트 */
|
|
300
358
|
label = '';
|
|
359
|
+
/** 레이블 너비 */
|
|
301
360
|
labelWidth = '';
|
|
361
|
+
/** 필드 우측 어드온 레이블 */
|
|
302
362
|
addonLabel = '';
|
|
363
|
+
/** 어드온 정렬 방향 */
|
|
303
364
|
addonAlign = 'start';
|
|
365
|
+
/** 필드 하단 힌트 텍스트 */
|
|
304
366
|
hint = '';
|
|
367
|
+
/** 에러 메시지 */
|
|
305
368
|
errorMessage = '';
|
|
369
|
+
/** 필드 너비 (숫자면 px, 문자열이면 그대로 적용) */
|
|
306
370
|
width = '';
|
|
371
|
+
/** 유효성 검사 규칙 목록 */
|
|
307
372
|
rules;
|
|
373
|
+
/** 에러 상태 여부 */
|
|
308
374
|
error = false;
|
|
375
|
+
/** 필드 상태 (없으면 rules 결과로 자동 결정) */
|
|
309
376
|
status;
|
|
377
|
+
/** 레이블 영역 아이콘 */
|
|
310
378
|
icon = undefined;
|
|
379
|
+
/** 레이블 툴팁 텍스트 */
|
|
311
380
|
labelTooltip = '';
|
|
381
|
+
/** 레이블 툴팁 상세 옵션 */
|
|
312
382
|
labelTooltipProps = null;
|
|
383
|
+
/** 포커스 상태 여부 */
|
|
313
384
|
focused = false;
|
|
385
|
+
/** 호버 상태 여부 */
|
|
314
386
|
hovered = false;
|
|
315
387
|
internalValue = null;
|
|
316
388
|
showTooltip = false;
|
|
317
389
|
fileInputRef;
|
|
318
390
|
fileNamesRef;
|
|
319
391
|
formField;
|
|
392
|
+
/** 파일 선택 또는 삭제 시 현재 파일 값을 전달합니다. */
|
|
320
393
|
update;
|
|
394
|
+
/** 파일이 크기·개수 제한을 초과하여 거부됐을 때 발생합니다. */
|
|
321
395
|
reject;
|
|
322
396
|
valueChanged(newValue) {
|
|
323
397
|
this.internalValue = newValue;
|
|
@@ -328,9 +402,11 @@ const SdFilePicker = class {
|
|
|
328
402
|
componentDidUpdate() {
|
|
329
403
|
this.checkOverflow();
|
|
330
404
|
}
|
|
405
|
+
/** 유효성 검사를 실행합니다. */
|
|
331
406
|
async sdValidate() {
|
|
332
407
|
return this.formField?.sdValidate() ?? Promise.resolve(true);
|
|
333
408
|
}
|
|
409
|
+
/** 파일 값과 유효성 상태를 초기화합니다. */
|
|
334
410
|
async sdReset() {
|
|
335
411
|
const clearedValue = this.multiple ? [] : null;
|
|
336
412
|
this.value = clearedValue;
|
|
@@ -340,6 +416,7 @@ const SdFilePicker = class {
|
|
|
340
416
|
}
|
|
341
417
|
await this.formField?.sdResetValidation();
|
|
342
418
|
}
|
|
419
|
+
/** 유효성 상태만 초기화합니다. */
|
|
343
420
|
async sdResetValidate() {
|
|
344
421
|
await this.formField?.sdResetValidation();
|
|
345
422
|
}
|
|
@@ -542,46 +619,81 @@ const SdInput = class {
|
|
|
542
619
|
this.blur = index.createEvent(this, "sdBlur", 7);
|
|
543
620
|
}
|
|
544
621
|
get host() { return index.getElement(this); }
|
|
622
|
+
/** 입력 값 */
|
|
545
623
|
value = null;
|
|
624
|
+
/** 입력 타입 */
|
|
546
625
|
type = 'text';
|
|
626
|
+
/** 입력 크기 */
|
|
547
627
|
size = 'sm';
|
|
628
|
+
/** 필드 우측 어드온 레이블 */
|
|
548
629
|
addonLabel = '';
|
|
630
|
+
/** 어드온 정렬 방향 */
|
|
549
631
|
addonAlign = 'start';
|
|
632
|
+
/** 플레이스홀더 텍스트 */
|
|
550
633
|
placeholder = '입력해 주세요.';
|
|
634
|
+
/** 비활성 상태 여부 */
|
|
551
635
|
disabled = false;
|
|
636
|
+
/** 값이 있을 때 지우기 버튼 표시 여부 */
|
|
552
637
|
clearable = false;
|
|
638
|
+
/** 필드 너비 (숫자면 px, 문자열이면 그대로 적용) */
|
|
553
639
|
width = '';
|
|
640
|
+
/** 유효성 검사 규칙 목록 */
|
|
554
641
|
rules = [];
|
|
642
|
+
/** 마운트 시 자동 포커스 여부 */
|
|
555
643
|
autoFocus = false;
|
|
644
|
+
/** autocomplete 속성 값 */
|
|
556
645
|
autocomplete = '';
|
|
646
|
+
/** 최대 입력 글자 수 */
|
|
557
647
|
maxlength;
|
|
648
|
+
/** 최소 입력 글자 수 */
|
|
558
649
|
minlength;
|
|
650
|
+
/** 모바일 키보드 타입 */
|
|
559
651
|
inputmode;
|
|
652
|
+
/** 모바일 Enter 키 힌트 */
|
|
560
653
|
enterkeyhint;
|
|
654
|
+
/** 맞춤법 검사 여부 */
|
|
561
655
|
spellcheck = false;
|
|
656
|
+
/** 필드 상태 (없으면 rules 결과로 자동 결정) */
|
|
562
657
|
status;
|
|
658
|
+
/** 필드 하단 힌트 텍스트 */
|
|
563
659
|
hint = '';
|
|
660
|
+
/** 에러 메시지 */
|
|
564
661
|
errorMessage = '';
|
|
662
|
+
/** 네이티브 input에 추가할 클래스 */
|
|
565
663
|
inputClass = '';
|
|
664
|
+
/** 읽기 전용 여부 */
|
|
566
665
|
readonly = false;
|
|
666
|
+
/** 에러 상태 여부 */
|
|
567
667
|
error = false;
|
|
668
|
+
/** 포커스 상태 여부 */
|
|
568
669
|
focused = false;
|
|
670
|
+
/** 호버 상태 여부 */
|
|
569
671
|
hovered = false;
|
|
570
672
|
// props - label
|
|
673
|
+
/** 레이블 텍스트 */
|
|
571
674
|
label = '';
|
|
675
|
+
/** 레이블 너비 */
|
|
572
676
|
labelWidth = '';
|
|
677
|
+
/** 레이블 영역 아이콘 */
|
|
573
678
|
icon = undefined;
|
|
679
|
+
/** 레이블 툴팁 텍스트 */
|
|
574
680
|
labelTooltip = '';
|
|
681
|
+
/** 레이블 툴팁 상세 옵션 */
|
|
575
682
|
labelTooltipProps = null;
|
|
576
683
|
// props - custom styles
|
|
684
|
+
/** 네이티브 input에 적용할 인라인 스타일 */
|
|
577
685
|
inputStyle = {};
|
|
578
686
|
internalValue = null;
|
|
579
687
|
passwordVisible = false;
|
|
580
688
|
nativeEl = undefined;
|
|
581
689
|
formField;
|
|
690
|
+
/** 폼 연동용 name 속성 */
|
|
582
691
|
name = index$1.nanoid();
|
|
692
|
+
/** 값이 변경될 때 발생합니다. */
|
|
583
693
|
input;
|
|
694
|
+
/** 포커스될 때 발생합니다. */
|
|
584
695
|
focus;
|
|
696
|
+
/** 포커스를 잃을 때 발생합니다. */
|
|
585
697
|
blur;
|
|
586
698
|
valueChanged(newValue) {
|
|
587
699
|
this.internalValue = newValue;
|
|
@@ -592,18 +704,23 @@ const SdInput = class {
|
|
|
592
704
|
this.input?.emit(this.value);
|
|
593
705
|
}
|
|
594
706
|
}
|
|
707
|
+
/** 네이티브 input 엘리먼트를 반환합니다. */
|
|
595
708
|
async sdGetNativeElement() {
|
|
596
709
|
return this.nativeEl || null;
|
|
597
710
|
}
|
|
711
|
+
/** 유효성 검사를 실행합니다. */
|
|
598
712
|
async sdValidate() {
|
|
599
713
|
this.formField?.sdValidate();
|
|
600
714
|
}
|
|
715
|
+
/** 값과 유효성 상태를 초기화합니다. */
|
|
601
716
|
async sdReset() {
|
|
602
717
|
this.formField?.sdReset();
|
|
603
718
|
}
|
|
719
|
+
/** 유효성 상태만 초기화합니다. */
|
|
604
720
|
async sdResetValidate() {
|
|
605
721
|
this.formField?.sdResetValidation();
|
|
606
722
|
}
|
|
723
|
+
/** 입력 필드에 포커스를 이동합니다. */
|
|
607
724
|
async sdFocus() {
|
|
608
725
|
this.formField?.sdFocus();
|
|
609
726
|
}
|
|
@@ -651,12 +768,12 @@ const SdInput = class {
|
|
|
651
768
|
'--sd-system-size-field-sm-height': `${sizeTokens.height}px`,
|
|
652
769
|
'--sd-system-radius-field-sm': `${sizeTokens.radius}px`,
|
|
653
770
|
};
|
|
654
|
-
return (index.h("sd-field", { key: '
|
|
771
|
+
return (index.h("sd-field", { key: '7444ee5ebb482fe9c4f837114456cab90de6b3aa', name: this.name, label: this.label, labelWidth: this.labelWidth, addonLabel: this.addonLabel, addonAlign: this.addonAlign, hint: this.hint, errorMessage: this.errorMessage, width: this.width, rules: this.rules, error: this.error, disabled: this.disabled, readonly: this.readonly, focused: this.focused, hovered: this.hovered, status: this.status, size: this.size, 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("label", { key: '0dbb6bc35522fb2d0c6d6d147756954ed96d2467', class: "sd-input__content" }, index.h("slot", { key: 'd5e8488bc3e29bd671bb337051d7b768c3c37c4b', name: "prefix" }), index.h("input", { key: '9dff73dbc5af19b0e2f19e95a26ad32211761484', name: this.name, ref: el => (this.nativeEl = el), class: `sd-input__native ${this.inputClass}`, type: this.type === 'password' && this.passwordVisible ? 'text' : (this.type ?? 'text'), value: this.internalValue || '', placeholder: this.placeholder ?? '입력해 주세요.', disabled: this.disabled, readonly: this.readonly, autofocus: this.autoFocus, autocomplete: this.autocomplete || undefined, maxlength: this.maxlength, minlength: this.minlength, inputmode: this.inputmode, enterkeyhint: this.enterkeyhint, spellcheck: this.spellcheck, onInput: this.handleInput, onFocus: event => this.handleFocus('focus', event), onBlur: event => this.handleFocus('blur', event), style: this.inputStyle }), index.h("slot", { key: 'f1020b3ab68d5db6f83a2d6ba84722faa76c354e', name: "suffix" }), this.clearable && this.internalValue && !this.disabled && !this.readonly && (index.h("sd-ghost-button", { key: '547a309bb4434e558cf8b33fe8bcd51533d36cd5', icon: "close", ariaLabel: "clear", size: "xxs", disabled: this.disabled, class: "sd-input__clear-icon", onClick: async () => {
|
|
655
772
|
if (this.disabled || this.readonly)
|
|
656
773
|
return;
|
|
657
774
|
this.internalValue = '';
|
|
658
775
|
await this.formField?.sdValidate();
|
|
659
|
-
} })), this.type === 'password' && (index.h("sd-ghost-button", { key: '
|
|
776
|
+
} })), this.type === 'password' && (index.h("sd-ghost-button", { key: '39c77e164b08d4a0169f76c1b8dc519e0f39d993', icon: this.passwordVisible ? 'visibilityOn' : 'visibilityOff', ariaLabel: "visibility", size: "xxs", disabled: this.disabled || this.readonly, class: "sd-input__password-icon", onClick: () => {
|
|
660
777
|
if (this.disabled || this.readonly)
|
|
661
778
|
return;
|
|
662
779
|
this.passwordVisible = !this.passwordVisible;
|
|
@@ -770,43 +887,77 @@ const SdNumberInput = class {
|
|
|
770
887
|
this.blur = index.createEvent(this, "sdBlur", 7);
|
|
771
888
|
}
|
|
772
889
|
get el() { return index.getElement(this); }
|
|
890
|
+
/** 입력 크기 */
|
|
773
891
|
size = 'sm';
|
|
892
|
+
/** 최솟값 */
|
|
774
893
|
min = Number.NEGATIVE_INFINITY;
|
|
894
|
+
/** 최댓값 */
|
|
775
895
|
max = Number.POSITIVE_INFINITY;
|
|
896
|
+
/** 스텝 단위 */
|
|
776
897
|
step = 1;
|
|
898
|
+
/** 증감 버튼 표시 여부 */
|
|
777
899
|
useButton = false;
|
|
900
|
+
/** 소수점 입력 허용 여부 */
|
|
778
901
|
useDecimal = false;
|
|
902
|
+
/** 입력 값 */
|
|
779
903
|
value = null;
|
|
904
|
+
/** 레이블 텍스트 */
|
|
780
905
|
label;
|
|
906
|
+
/** 레이블 너비 */
|
|
781
907
|
labelWidth = '';
|
|
908
|
+
/** 레이블 영역 아이콘 */
|
|
782
909
|
icon = undefined;
|
|
910
|
+
/** 레이블 툴팁 텍스트 */
|
|
783
911
|
labelTooltip = '';
|
|
912
|
+
/** 레이블 툴팁 상세 옵션 */
|
|
784
913
|
labelTooltipProps = null;
|
|
914
|
+
/** 필드 우측 어드온 레이블 */
|
|
785
915
|
addonLabel = '';
|
|
916
|
+
/** 어드온 정렬 방향 */
|
|
786
917
|
addonAlign = 'start';
|
|
918
|
+
/** 플레이스홀더 텍스트 */
|
|
787
919
|
placeholder = '입력해 주세요.';
|
|
920
|
+
/** 비활성 상태 여부 */
|
|
788
921
|
disabled = false;
|
|
922
|
+
/** 필드 너비 (숫자면 px, 문자열이면 그대로 적용) */
|
|
789
923
|
width;
|
|
924
|
+
/** 유효성 검사 규칙 목록 */
|
|
790
925
|
rules = [];
|
|
926
|
+
/** 마운트 시 자동 포커스 여부 */
|
|
791
927
|
autoFocus = false;
|
|
928
|
+
/** 필드 상태 (없으면 rules 결과로 자동 결정) */
|
|
792
929
|
status;
|
|
930
|
+
/** 필드 하단 힌트 텍스트 */
|
|
793
931
|
hint = '';
|
|
932
|
+
/** 에러 메시지 */
|
|
794
933
|
errorMessage = '';
|
|
934
|
+
/** 입력 앞에 표시할 접두 텍스트 */
|
|
795
935
|
inputPrefix = '';
|
|
936
|
+
/** 입력 뒤에 표시할 접미 텍스트 */
|
|
796
937
|
inputSuffix = '';
|
|
938
|
+
/** 네이티브 input에 추가할 클래스 */
|
|
797
939
|
inputClass = '';
|
|
940
|
+
/** 읽기 전용 여부 */
|
|
798
941
|
readonly = false;
|
|
942
|
+
/** 네이티브 input에 적용할 인라인 스타일 */
|
|
799
943
|
inputStyle = {};
|
|
944
|
+
/** 에러 상태 여부 */
|
|
800
945
|
error = false;
|
|
946
|
+
/** 포커스 상태 여부 */
|
|
801
947
|
focused = false;
|
|
948
|
+
/** 호버 상태 여부 */
|
|
802
949
|
hovered = false;
|
|
803
950
|
internalValue = null;
|
|
804
951
|
displayValue = '';
|
|
805
952
|
nativeEl = undefined;
|
|
806
953
|
formField;
|
|
954
|
+
/** 폼 연동용 name 속성 */
|
|
807
955
|
name = index$1.nanoid();
|
|
956
|
+
/** 값이 변경될 때 발생합니다. */
|
|
808
957
|
update;
|
|
958
|
+
/** 포커스될 때 발생합니다. */
|
|
809
959
|
focus;
|
|
960
|
+
/** 포커스를 잃을 때 발생합니다. */
|
|
810
961
|
blur;
|
|
811
962
|
toNumber(val) {
|
|
812
963
|
if (val === null || val === undefined || val === '')
|
|
@@ -884,18 +1035,23 @@ const SdNumberInput = class {
|
|
|
884
1035
|
this.update?.emit(newValue);
|
|
885
1036
|
}
|
|
886
1037
|
}
|
|
1038
|
+
/** 유효성 검사를 실행합니다. */
|
|
887
1039
|
async sdValidate() {
|
|
888
1040
|
this.formField?.sdValidate();
|
|
889
1041
|
}
|
|
1042
|
+
/** 값과 유효성 상태를 초기화합니다. */
|
|
890
1043
|
async sdReset() {
|
|
891
1044
|
this.formField?.sdReset();
|
|
892
1045
|
}
|
|
1046
|
+
/** 유효성 상태만 초기화합니다. */
|
|
893
1047
|
async sdResetValidate() {
|
|
894
1048
|
this.formField?.sdResetValidation();
|
|
895
1049
|
}
|
|
1050
|
+
/** 입력 필드에 포커스를 이동합니다. */
|
|
896
1051
|
async sdFocus() {
|
|
897
1052
|
this.formField?.sdFocus();
|
|
898
1053
|
}
|
|
1054
|
+
/** 네이티브 input 엘리먼트를 반환합니다. */
|
|
899
1055
|
async sdGetNativeElement() {
|
|
900
1056
|
return this.nativeEl || null;
|
|
901
1057
|
}
|
|
@@ -1042,15 +1198,15 @@ const SdNumberInput = class {
|
|
|
1042
1198
|
'--sd-textinput-input-hint-typography-line-height': `${NUMBER_INPUT_HINT.typography.lineHeight}px`,
|
|
1043
1199
|
'--sd-textinput-input-contents-gap': `${NUMBER_INPUT_CONTENTS_GAP}px`,
|
|
1044
1200
|
};
|
|
1045
|
-
return (index.h("sd-field", { key: '
|
|
1201
|
+
return (index.h("sd-field", { key: 'f07710abbe74849369a3d0d6444750f71ed75e7b', name: this.name, label: this.label, labelWidth: this.labelWidth, addonLabel: this.addonLabel, addonAlign: this.addonAlign, hint: this.hint, errorMessage: this.errorMessage, width: this.width, rules: this.rules, error: this.error, disabled: this.disabled, readonly: this.readonly, focused: this.focused, hovered: this.hovered, status: this.status, size: this.size, 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: 'ad70ff68bb24fe02c25a57dd3de0b5ef38ceef8a', class: {
|
|
1046
1202
|
'sd-number-input__content': true,
|
|
1047
1203
|
'sd-number-input__content--no-stepper': !this.useButton,
|
|
1048
|
-
} }, this.useButton && (index.h("button", { key: '
|
|
1204
|
+
} }, this.useButton && (index.h("button", { key: '90305a8863c6b6ba3d3afce695c5f61204424c46', type: "button", class: "sd-number-input__stepper sd-number-input__stepper--decrement", disabled: this.isDecrementDisabled(), onClick: this.handleDecrement, tabindex: -1 }, index.h("sd-icon", { key: 'e6440e5b63d4860d05f0573690a4064f7e6729ac', name: "minus", size: iconSize, color: this.isDecrementDisabled()
|
|
1049
1205
|
? NUMBER_INPUT_STEPPER.icon.disabled
|
|
1050
|
-
: NUMBER_INPUT_STEPPER.icon.default }))), this.inputPrefix && index.h("span", { key: '
|
|
1206
|
+
: NUMBER_INPUT_STEPPER.icon.default }))), this.inputPrefix && index.h("span", { key: 'ae2e8d052471925a5c794dcf1041a7ddbfe66652', class: "sd-number-input__prefix" }, this.inputPrefix), index.h("input", { key: 'a19917bfbe10b6d121e61e374a134207c9eb7fd7', name: this.name, ref: el => (this.nativeEl = el), class: `sd-number-input__native ${this.inputClass}`, type: "text", inputMode: "numeric", value: this.displayValue, placeholder: this.placeholder ?? '입력해 주세요.', disabled: this.disabled, readonly: this.readonly, autofocus: this.autoFocus, onInput: this.handleInput, onKeyDown: this.handleKeyDown, onFocus: this.handleFocus, onBlur: this.handleBlur, style: {
|
|
1051
1207
|
textAlign: this.useButton ? 'center' : 'right',
|
|
1052
1208
|
...this.inputStyle,
|
|
1053
|
-
} }), this.inputSuffix && index.h("span", { key: '
|
|
1209
|
+
} }), this.inputSuffix && index.h("span", { key: '352e2a645c8db62c8d887b1a1f490ade187d05f0', class: "sd-number-input__suffix" }, this.inputSuffix), this.useButton && (index.h("button", { key: '5c4f1153f6488cb95502bfa7f2bcad073bccb593', type: "button", class: "sd-number-input__stepper sd-number-input__stepper--increment", disabled: this.isIncrementDisabled(), onClick: this.handleIncrement, tabindex: -1 }, index.h("sd-icon", { key: 'c9e0924126fb39492e8a696fa2628f367b8e2058', name: "add", size: iconSize, color: this.isIncrementDisabled()
|
|
1054
1210
|
? NUMBER_INPUT_STEPPER.icon.disabled
|
|
1055
1211
|
: NUMBER_INPUT_STEPPER.icon.default }))))));
|
|
1056
1212
|
}
|
|
@@ -1072,11 +1228,17 @@ const SdRadioGroup = class {
|
|
|
1072
1228
|
index.registerInstance(this, hostRef);
|
|
1073
1229
|
this.change = index.createEvent(this, "sdUpdate", 7);
|
|
1074
1230
|
}
|
|
1231
|
+
/** 현재 선택된 값 */
|
|
1075
1232
|
value;
|
|
1233
|
+
/** 라디오 옵션 목록 */
|
|
1076
1234
|
options = [];
|
|
1235
|
+
/** 옵션 배치 방향 */
|
|
1077
1236
|
direction = 'vertical';
|
|
1237
|
+
/** 비활성 상태 여부 */
|
|
1078
1238
|
disabled = false;
|
|
1239
|
+
/** input name 속성 */
|
|
1079
1240
|
groupName;
|
|
1241
|
+
/** 선택 값이 변경될 때 발생합니다. */
|
|
1080
1242
|
change;
|
|
1081
1243
|
valueChanged(newValue) {
|
|
1082
1244
|
this.value = newValue;
|
|
@@ -1094,7 +1256,7 @@ const SdRadioGroup = class {
|
|
|
1094
1256
|
return classes.join(' ');
|
|
1095
1257
|
}
|
|
1096
1258
|
render() {
|
|
1097
|
-
return (index.h("div", { key: '
|
|
1259
|
+
return (index.h("div", { key: '3a1694daddf5794a1598838c44bc965de2976770', class: this.getGroupClasses(), role: "radiogroup" }, this.options.map(option => {
|
|
1098
1260
|
return (index.h("sd-radio", { key: `radio-${option.value}`, val: String(option.value), value: String(this.value), label: option.label, disabled: this.disabled || !!option.disabled, onSdUpdate: ({ detail }) => this.handleRadioChange(detail) }));
|
|
1099
1261
|
})));
|
|
1100
1262
|
}
|
|
@@ -1130,38 +1292,67 @@ const SdTextarea = class {
|
|
|
1130
1292
|
this.blur = index.createEvent(this, "sdBlur", 7);
|
|
1131
1293
|
}
|
|
1132
1294
|
get host() { return index.getElement(this); }
|
|
1295
|
+
/** 입력 값 */
|
|
1133
1296
|
value = null;
|
|
1297
|
+
/** 플레이스홀더 텍스트 */
|
|
1134
1298
|
placeholder = '입력해 주세요.';
|
|
1299
|
+
/** 비활성 상태 여부 */
|
|
1135
1300
|
disabled = false;
|
|
1301
|
+
/** 읽기 전용 여부 */
|
|
1136
1302
|
readonly = false;
|
|
1303
|
+
/** 마운트 시 자동 포커스 여부 */
|
|
1137
1304
|
autoFocus = false;
|
|
1305
|
+
/** 네이티브 textarea에 추가할 클래스 */
|
|
1138
1306
|
textareaClass = '';
|
|
1307
|
+
/** 네이티브 textarea에 적용할 인라인 스타일 */
|
|
1139
1308
|
textareaStyle = {};
|
|
1309
|
+
/** 최대 입력 글자 수 */
|
|
1140
1310
|
maxLength;
|
|
1311
|
+
/** textarea 기본 행 수 */
|
|
1141
1312
|
rows;
|
|
1313
|
+
/** 맞춤법 검사 여부 */
|
|
1142
1314
|
spellcheck = false;
|
|
1315
|
+
/** 필드 너비 (숫자면 px, 문자열이면 그대로 적용) */
|
|
1143
1316
|
width = '';
|
|
1144
1317
|
// props - sd-field
|
|
1318
|
+
/** 레이블 텍스트 */
|
|
1145
1319
|
label = '';
|
|
1320
|
+
/** 레이블 너비 */
|
|
1146
1321
|
labelWidth = '';
|
|
1322
|
+
/** 필드 우측 어드온 레이블 */
|
|
1147
1323
|
addonLabel = '';
|
|
1324
|
+
/** 어드온 정렬 방향 */
|
|
1148
1325
|
addonAlign = 'start';
|
|
1326
|
+
/** 필드 하단 힌트 텍스트 */
|
|
1149
1327
|
hint = '';
|
|
1328
|
+
/** 에러 메시지 */
|
|
1150
1329
|
errorMessage = '';
|
|
1330
|
+
/** 레이블 영역 아이콘 */
|
|
1151
1331
|
icon = undefined;
|
|
1332
|
+
/** 레이블 툴팁 텍스트 */
|
|
1152
1333
|
labelTooltip = '';
|
|
1334
|
+
/** 레이블 툴팁 상세 옵션 */
|
|
1153
1335
|
labelTooltipProps = null;
|
|
1336
|
+
/** 유효성 검사 규칙 목록 */
|
|
1154
1337
|
rules = [];
|
|
1338
|
+
/** 에러 상태 여부 */
|
|
1155
1339
|
error = false;
|
|
1340
|
+
/** 필드 상태 (없으면 rules 결과로 자동 결정) */
|
|
1156
1341
|
status;
|
|
1342
|
+
/** 포커스 상태 여부 */
|
|
1157
1343
|
focused = false;
|
|
1344
|
+
/** 호버 상태 여부 */
|
|
1158
1345
|
hovered = false;
|
|
1159
1346
|
internalValue = null;
|
|
1160
1347
|
nativeEl = undefined;
|
|
1161
1348
|
formField;
|
|
1349
|
+
/** 폼 연동용 name 속성 */
|
|
1162
1350
|
name = index$1.nanoid();
|
|
1351
|
+
/** 값이 변경될 때 발생합니다. */
|
|
1163
1352
|
input;
|
|
1353
|
+
/** 포커스될 때 발생합니다. */
|
|
1164
1354
|
focus;
|
|
1355
|
+
/** 포커스를 잃을 때 발생합니다. */
|
|
1165
1356
|
blur;
|
|
1166
1357
|
valueChanged(newValue) {
|
|
1167
1358
|
this.internalValue = newValue;
|
|
@@ -1172,18 +1363,23 @@ const SdTextarea = class {
|
|
|
1172
1363
|
this.input?.emit(this.value);
|
|
1173
1364
|
}
|
|
1174
1365
|
}
|
|
1366
|
+
/** 네이티브 textarea 엘리먼트를 반환합니다. */
|
|
1175
1367
|
async sdGetNativeElement() {
|
|
1176
1368
|
return this.nativeEl || null;
|
|
1177
1369
|
}
|
|
1370
|
+
/** 유효성 검사를 실행합니다. */
|
|
1178
1371
|
async sdValidate() {
|
|
1179
1372
|
this.formField?.sdValidate();
|
|
1180
1373
|
}
|
|
1374
|
+
/** 값과 유효성 상태를 초기화합니다. */
|
|
1181
1375
|
async sdReset() {
|
|
1182
1376
|
this.formField?.sdReset();
|
|
1183
1377
|
}
|
|
1378
|
+
/** 유효성 상태만 초기화합니다. */
|
|
1184
1379
|
async sdResetValidate() {
|
|
1185
1380
|
this.formField?.sdResetValidation();
|
|
1186
1381
|
}
|
|
1382
|
+
/** 입력 필드에 포커스를 이동합니다. */
|
|
1187
1383
|
async sdFocus() {
|
|
1188
1384
|
this.formField?.sdFocus();
|
|
1189
1385
|
}
|
|
@@ -1232,7 +1428,7 @@ const SdTextarea = class {
|
|
|
1232
1428
|
'--sd-system-size-field-sm-height': 'auto',
|
|
1233
1429
|
'--sd-system-radius-field-sm': `${TEXTAREA_TOKENS.radius}px`,
|
|
1234
1430
|
};
|
|
1235
|
-
return (index.h("sd-field", { key: '
|
|
1431
|
+
return (index.h("sd-field", { key: 'f8fd8949824938bb79f101de2e5eca7980224b09', name: this.name, label: this.label, labelWidth: this.labelWidth, addonLabel: this.addonLabel, addonAlign: this.addonAlign, hint: this.hint, errorMessage: this.errorMessage, width: this.width, rules: this.rules, error: this.error, disabled: this.disabled, readonly: this.readonly, 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: '382441be15dd047888cf876006f1966256a503b7', class: "sd-textarea__content" }, index.h("textarea", { key: '5f5985ccdcc401f4aff2f47fe40003abeb76e8b3', 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 }))));
|
|
1236
1432
|
}
|
|
1237
1433
|
static get watchers() { return {
|
|
1238
1434
|
"value": [{
|