@witchcraft/ui 0.3.26 → 0.4.0-beta.10
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/README.md +54 -61
- package/dist/module.json +1 -1
- package/dist/module.mjs +1 -1
- package/dist/runtime/assets/animations.css +1 -1
- package/dist/runtime/assets/locales/en.json +2 -0
- package/dist/runtime/build/WitchcraftUiResolver.js +2 -2
- package/dist/runtime/components/TestControls/TestControls.vue +3 -3
- package/dist/runtime/components/WButton/WButton.d.vue.ts +34 -0
- package/dist/runtime/components/{LibButton/LibButton.vue → WButton/WButton.vue} +26 -38
- package/dist/runtime/components/WButton/WButton.vue.d.ts +34 -0
- package/dist/runtime/components/WCheckbox/WCheckbox.d.vue.ts +33 -0
- package/dist/runtime/components/WCheckbox/WCheckbox.vue +110 -0
- package/dist/runtime/components/WCheckbox/WCheckbox.vue.d.ts +33 -0
- package/dist/runtime/components/WColorInput/WColorInput.d.vue.ts +45 -0
- package/dist/runtime/components/WColorInput/WColorInput.vue +85 -0
- package/dist/runtime/components/WColorInput/WColorInput.vue.d.ts +45 -0
- package/dist/runtime/components/WColorInput/WColorSwatchButton.d.vue.ts +28 -0
- package/dist/runtime/components/WColorInput/WColorSwatchButton.vue +86 -0
- package/dist/runtime/components/WColorInput/WColorSwatchButton.vue.d.ts +28 -0
- package/dist/runtime/components/{LibColorPicker/LibColorPicker.d.vue.ts → WColorPicker/WColorPicker.d.vue.ts} +7 -6
- package/dist/runtime/components/{LibColorPicker/LibColorPicker.vue → WColorPicker/WColorPicker.vue} +41 -29
- package/dist/runtime/components/{LibColorPicker/LibColorPicker.vue.d.ts → WColorPicker/WColorPicker.vue.d.ts} +7 -6
- package/dist/runtime/components/WCombobox/WCombobox.d.vue.ts +111 -0
- package/dist/runtime/components/WCombobox/WCombobox.vue +405 -0
- package/dist/runtime/components/WCombobox/WCombobox.vue.d.ts +111 -0
- package/dist/runtime/components/WCombobox/storyPlays.d.ts +18 -0
- package/dist/runtime/components/WCombobox/storyPlays.js +68 -0
- package/dist/runtime/components/{LibDarkModeSwitcher/LibDarkModeSwitcher.d.vue.ts → WDarkModeSwitcher/WDarkModeSwitcher.d.vue.ts} +8 -13
- package/dist/runtime/components/{LibDarkModeSwitcher/LibDarkModeSwitcher.vue → WDarkModeSwitcher/WDarkModeSwitcher.vue} +11 -14
- package/dist/runtime/components/{LibDarkModeSwitcher/LibDarkModeSwitcher.vue.d.ts → WDarkModeSwitcher/WDarkModeSwitcher.vue.d.ts} +8 -13
- package/dist/runtime/components/WDatePicker/WDatePicker.d.vue.ts +40 -0
- package/dist/runtime/components/{LibDatePicker/LibDatePicker.vue → WDatePicker/WDatePicker.vue} +3 -7
- package/dist/runtime/components/WDatePicker/WDatePicker.vue.d.ts +40 -0
- package/dist/runtime/components/{LibDatePicker/LibRangeDatePicker.vue → WDatePicker/WRangeDatePicker.vue} +21 -21
- package/dist/runtime/components/{LibDatePicker/LibSingleDatePicker.vue → WDatePicker/WSingleDatePicker.vue} +21 -21
- package/dist/runtime/components/{LibDatePicker/LibTimeZonePicker.d.vue.ts → WDatePicker/WTimeZonePicker.d.vue.ts} +1 -11
- package/dist/runtime/components/{LibDatePicker/LibTimeZonePicker.vue → WDatePicker/WTimeZonePicker.vue} +5 -12
- package/dist/runtime/components/{LibDatePicker/LibTimeZonePicker.vue.d.ts → WDatePicker/WTimeZonePicker.vue.d.ts} +1 -11
- package/dist/runtime/components/{LibDebug/LibDebug.vue → WDebug/WDebug.vue} +10 -12
- package/dist/runtime/components/{LibDevOnly/LibDevOnly.d.vue.ts → WDevOnly/WDevOnly.d.vue.ts} +0 -3
- package/dist/runtime/components/{LibDevOnly/LibDevOnly.vue.d.ts → WDevOnly/WDevOnly.vue.d.ts} +0 -3
- package/dist/runtime/components/WFileInput/WFileInput.d.vue.ts +58 -0
- package/dist/runtime/components/{LibFileInput/LibFileInput.vue → WFileInput/WFileInput.vue} +74 -57
- package/dist/runtime/components/WFileInput/WFileInput.vue.d.ts +58 -0
- package/dist/runtime/components/{Icon/Icon.vue.d.ts → WIcon/WIcon.d.vue.ts} +2 -6
- package/dist/runtime/components/{Icon/Icon.vue → WIcon/WIcon.vue} +1 -1
- package/dist/runtime/components/{Icon/Icon.d.vue.ts → WIcon/WIcon.vue.d.ts} +2 -6
- package/dist/runtime/components/{LibMultiValues/LibMultiValues.d.vue.ts → WMultiValues/WMultiValues.d.vue.ts} +8 -14
- package/dist/runtime/components/WMultiValues/WMultiValues.vue +150 -0
- package/dist/runtime/components/{LibMultiValues/LibMultiValues.vue.d.ts → WMultiValues/WMultiValues.vue.d.ts} +8 -14
- package/dist/runtime/components/WNotifications/WNotification.d.vue.ts +37 -0
- package/dist/runtime/components/{LibNotifications/LibNotification.vue → WNotifications/WNotification.vue} +34 -47
- package/dist/runtime/components/WNotifications/WNotification.vue.d.ts +37 -0
- package/dist/runtime/components/WNotifications/WNotifications.d.vue.ts +11 -0
- package/dist/runtime/components/{LibNotifications/LibNotifications.vue → WNotifications/WNotifications.vue} +35 -17
- package/dist/runtime/components/WNotifications/WNotifications.vue.d.ts +11 -0
- package/dist/runtime/components/WNumberInput/WNumberInput.d.vue.ts +27 -0
- package/dist/runtime/components/WNumberInput/WNumberInput.vue +96 -0
- package/dist/runtime/components/WNumberInput/WNumberInput.vue.d.ts +27 -0
- package/dist/runtime/components/WPagination/WPagination.d.vue.ts +59 -0
- package/dist/runtime/components/WPagination/WPagination.vue +182 -0
- package/dist/runtime/components/WPagination/WPagination.vue.d.ts +59 -0
- package/dist/runtime/components/WPalette/WPalette.d.vue.ts +11 -0
- package/dist/runtime/components/{LibPalette/LibPalette.vue → WPalette/WPalette.vue} +3 -8
- package/dist/runtime/components/WPalette/WPalette.vue.d.ts +11 -0
- package/dist/runtime/components/WPopover/WPopover.d.vue.ts +45 -0
- package/dist/runtime/components/WPopover/WPopover.vue +144 -0
- package/dist/runtime/components/WPopover/WPopover.vue.d.ts +45 -0
- package/dist/runtime/components/WPopup/WPopup.d.vue.ts +51 -0
- package/dist/runtime/components/WPopup/WPopup.vue +106 -0
- package/dist/runtime/components/WPopup/WPopup.vue.d.ts +51 -0
- package/dist/runtime/components/{LibProgressBar/LibProgressBar.d.vue.ts → WProgressBar/WProgressBar.d.vue.ts} +14 -18
- package/dist/runtime/components/WProgressBar/WProgressBar.vue +150 -0
- package/dist/runtime/components/{LibProgressBar/LibProgressBar.vue.d.ts → WProgressBar/WProgressBar.vue.d.ts} +14 -18
- package/dist/runtime/components/{LibRecorder/LibRecorder.d.vue.ts → WRecorder/WRecorder.d.vue.ts} +14 -29
- package/dist/runtime/components/{LibRecorder/LibRecorder.vue → WRecorder/WRecorder.vue} +37 -36
- package/dist/runtime/components/{LibRecorder/LibRecorder.vue.d.ts → WRecorder/WRecorder.vue.d.ts} +14 -29
- package/dist/runtime/components/{LibRoot/LibRoot.d.vue.ts → WRoot/WRoot.d.vue.ts} +6 -5
- package/dist/runtime/components/{LibRoot/LibRoot.vue → WRoot/WRoot.vue} +17 -15
- package/dist/runtime/components/{LibRoot/LibRoot.vue.d.ts → WRoot/WRoot.vue.d.ts} +6 -5
- package/dist/runtime/components/{LibSimpleInput/LibSimpleInput.d.vue.ts → WSimpleInput/WSimpleInput.d.vue.ts} +10 -16
- package/dist/runtime/components/{LibSimpleInput/LibSimpleInput.vue → WSimpleInput/WSimpleInput.vue} +14 -24
- package/dist/runtime/components/{LibSimpleInput/LibSimpleInput.vue.d.ts → WSimpleInput/WSimpleInput.vue.d.ts} +10 -16
- package/dist/runtime/components/WTable/WTable.d.vue.ts +102 -0
- package/dist/runtime/components/{LibTable/LibTable.vue → WTable/WTable.vue} +13 -14
- package/dist/runtime/components/WTable/WTable.vue.d.ts +102 -0
- package/dist/runtime/components/WTooltip/WTooltip.d.vue.ts +40 -0
- package/dist/runtime/components/WTooltip/WTooltip.vue +112 -0
- package/dist/runtime/components/WTooltip/WTooltip.vue.d.ts +40 -0
- package/dist/runtime/components/index.d.ts +20 -20
- package/dist/runtime/components/index.js +20 -20
- package/dist/runtime/composables/index.d.ts +4 -4
- package/dist/runtime/composables/index.js +4 -4
- package/dist/runtime/composables/useDelayedLoadingIndicator.d.ts +9 -0
- package/dist/runtime/composables/useDelayedLoadingIndicator.js +18 -0
- package/dist/runtime/composables/useDisplayForReka.d.ts +25 -0
- package/dist/runtime/composables/useDisplayForReka.js +16 -0
- package/dist/runtime/composables/useFallbackId.d.ts +3 -0
- package/dist/runtime/composables/useFallbackId.js +5 -0
- package/dist/runtime/composables/useInjectedDarkMode.d.ts +1 -1
- package/dist/runtime/composables/usePopupConstrainToStyle.d.ts +8 -0
- package/dist/runtime/composables/usePopupConstrainToStyle.js +8 -0
- package/dist/runtime/composables/useSetupDarkMode.d.ts +2 -3
- package/dist/runtime/composables/useSetupDarkMode.js +90 -4
- package/dist/runtime/helpers/NotificationHandler.d.ts +2 -2
- package/dist/runtime/injectionKeys.d.ts +1 -5
- package/dist/runtime/injectionKeys.js +0 -2
- package/dist/runtime/types/index.d.ts +85 -27
- package/dist/runtime/types/index.js +1 -0
- package/package.json +1 -1
- package/src/module.ts +1 -1
- package/src/runtime/assets/animations.css +3 -3
- package/src/runtime/assets/locales/en.json +2 -0
- package/src/runtime/build/WitchcraftUiResolver.ts +2 -2
- package/src/runtime/components/TestControls/TestControls.vue +3 -3
- package/src/runtime/components/WButton/WButton.stories.ts +112 -0
- package/src/runtime/components/{LibButton/LibButton.vue → WButton/WButton.vue} +34 -50
- package/src/runtime/components/{LibCheckbox/LibCheckbox.stories.ts → WCheckbox/WCheckbox.stories.ts} +5 -5
- package/src/runtime/components/WCheckbox/WCheckbox.vue +125 -0
- package/src/runtime/components/{LibColorInput/LibColorInput.stories.ts → WColorInput/WColorInput.stories.ts} +8 -8
- package/src/runtime/components/WColorInput/WColorInput.vue +112 -0
- package/src/runtime/components/WColorInput/WColorSwatchButton.vue +102 -0
- package/src/runtime/components/{LibColorPicker/LibColorPicker.stories.ts → WColorPicker/WColorPicker.stories.ts} +12 -12
- package/src/runtime/components/{LibColorPicker/LibColorPicker.vue → WColorPicker/WColorPicker.vue} +44 -31
- package/src/runtime/components/WCombobox/WCombobox.stories.ts +209 -0
- package/src/runtime/components/WCombobox/WCombobox.vue +450 -0
- package/src/runtime/components/WCombobox/storyPlays.ts +92 -0
- package/src/runtime/components/{LibDarkModeSwitcher/LibDarkModeSwitcher.stories.ts → WDarkModeSwitcher/WDarkModeSwitcher.stories.ts} +6 -6
- package/src/runtime/components/{LibDarkModeSwitcher/LibDarkModeSwitcher.vue → WDarkModeSwitcher/WDarkModeSwitcher.vue} +19 -30
- package/src/runtime/components/{LibDatePicker/LibDatePicker.stories.ts → WDatePicker/WDatePicker.stories.ts} +42 -34
- package/src/runtime/components/{LibDatePicker/LibDatePicker.vue → WDatePicker/WDatePicker.vue} +3 -7
- package/src/runtime/components/{LibDatePicker/LibRangeDatePicker.vue → WDatePicker/WRangeDatePicker.vue} +21 -21
- package/src/runtime/components/{LibDatePicker/LibSingleDatePicker.vue → WDatePicker/WSingleDatePicker.vue} +21 -21
- package/src/runtime/components/{LibDatePicker/LibTimeZonePicker.vue → WDatePicker/WTimeZonePicker.vue} +5 -12
- package/src/runtime/components/{LibDebug/LibDebug.stories.ts → WDebug/WDebug.stories.ts} +5 -5
- package/src/runtime/components/{LibDebug/LibDebug.vue → WDebug/WDebug.vue} +9 -10
- package/src/runtime/components/{LibDevOnly/LibDevOnly.vue → WDevOnly/WDevOnly.vue} +0 -4
- package/src/runtime/components/{LibFileInput/LibFileInput.stories.ts → WFileInput/WFileInput.stories.ts} +7 -7
- package/src/runtime/components/{LibFileInput/LibFileInput.vue → WFileInput/WFileInput.vue} +98 -97
- package/src/runtime/components/{Icon/Icon.vue → WIcon/WIcon.vue} +5 -8
- package/src/runtime/components/{LibMultiValues/LibMultiValues.stories.ts → WMultiValues/WMultiValues.stories.ts} +9 -9
- package/src/runtime/components/WMultiValues/WMultiValues.vue +163 -0
- package/src/runtime/components/{LibNotifications/LibNotification.stories.ts → WNotifications/WNotification.stories.ts} +9 -9
- package/src/runtime/components/{LibNotifications/LibNotification.vue → WNotifications/WNotification.vue} +45 -65
- package/src/runtime/components/WNotifications/WNotifications.stories.ts +139 -0
- package/src/runtime/components/{LibNotifications/LibNotifications.vue → WNotifications/WNotifications.vue} +51 -29
- package/src/runtime/components/WNumberInput/WNumberInput.vue +109 -0
- package/src/runtime/components/WPagination/WPagination.stories.ts +51 -0
- package/src/runtime/components/WPagination/WPagination.vue +207 -0
- package/src/runtime/components/{LibPalette/LibPalette.stories.ts → WPalette/WPalette.stories.ts} +6 -6
- package/src/runtime/components/{LibPalette/LibPalette.vue → WPalette/WPalette.vue} +3 -8
- package/src/runtime/components/WPopover/WPopover.stories.ts +218 -0
- package/src/runtime/components/WPopover/WPopover.vue +168 -0
- package/src/runtime/components/WPopup/WPopup.stories.ts +104 -0
- package/src/runtime/components/WPopup/WPopup.vue +125 -0
- package/src/runtime/components/WProgressBar/WProgressBar.stories.ts +119 -0
- package/src/runtime/components/WProgressBar/WProgressBar.vue +185 -0
- package/src/runtime/components/{LibRecorder/LibRecorder.stories.ts → WRecorder/WRecorder.stories.ts} +9 -6
- package/src/runtime/components/{LibRecorder/LibRecorder.vue → WRecorder/WRecorder.vue} +69 -68
- package/src/runtime/components/{LibRoot/LibRoot.vue → WRoot/WRoot.vue} +18 -15
- package/src/runtime/components/{LibSimpleInput/LibSimpleInput.stories.ts → WSimpleInput/WSimpleInput.stories.ts} +11 -12
- package/src/runtime/components/{LibSimpleInput/LibSimpleInput.vue → WSimpleInput/WSimpleInput.vue} +28 -44
- package/src/runtime/components/{LibTable/LibTable.stories.ts → WTable/WTable.stories.ts} +60 -52
- package/src/runtime/components/{LibTable/LibTable.vue → WTable/WTable.vue} +85 -88
- package/src/runtime/components/WTooltip/WTooltip.stories.ts +82 -0
- package/src/runtime/components/WTooltip/WTooltip.vue +128 -0
- package/src/runtime/components/index.ts +20 -20
- package/src/runtime/composables/index.ts +4 -4
- package/src/runtime/composables/useDelayedLoadingIndicator.ts +30 -0
- package/src/runtime/composables/useDisplayForReka.ts +37 -0
- package/src/runtime/composables/useFallbackId.ts +6 -0
- package/src/runtime/composables/useInjectedDarkMode.ts +1 -2
- package/src/runtime/composables/usePopupConstrainToStyle.ts +29 -0
- package/src/runtime/composables/useSetupDarkMode.ts +122 -4
- package/src/runtime/helpers/NotificationHandler.ts +2 -2
- package/src/runtime/injectionKeys.ts +1 -7
- package/src/runtime/types/index.ts +105 -32
- package/types/components.d.ts +14 -15
- package/dist/runtime/components/Aria/Aria.d.vue.ts +0 -6
- package/dist/runtime/components/Aria/Aria.vue +0 -16
- package/dist/runtime/components/Aria/Aria.vue.d.ts +0 -6
- package/dist/runtime/components/LibButton/LibButton.d.vue.ts +0 -37
- package/dist/runtime/components/LibButton/LibButton.vue.d.ts +0 -37
- package/dist/runtime/components/LibCheckbox/LibCheckbox.d.vue.ts +0 -41
- package/dist/runtime/components/LibCheckbox/LibCheckbox.vue +0 -103
- package/dist/runtime/components/LibCheckbox/LibCheckbox.vue.d.ts +0 -41
- package/dist/runtime/components/LibColorInput/LibColorInput.d.vue.ts +0 -64
- package/dist/runtime/components/LibColorInput/LibColorInput.vue +0 -162
- package/dist/runtime/components/LibColorInput/LibColorInput.vue.d.ts +0 -64
- package/dist/runtime/components/LibDatePicker/LibDatePicker.d.vue.ts +0 -191
- package/dist/runtime/components/LibDatePicker/LibDatePicker.vue.d.ts +0 -191
- package/dist/runtime/components/LibFileInput/LibFileInput.d.vue.ts +0 -46
- package/dist/runtime/components/LibFileInput/LibFileInput.vue.d.ts +0 -46
- package/dist/runtime/components/LibInputDeprecated/LibInputDeprecated.d.vue.ts +0 -256
- package/dist/runtime/components/LibInputDeprecated/LibInputDeprecated.vue +0 -387
- package/dist/runtime/components/LibInputDeprecated/LibInputDeprecated.vue.d.ts +0 -256
- package/dist/runtime/components/LibLabel/LibLabel.d.vue.ts +0 -27
- package/dist/runtime/components/LibLabel/LibLabel.vue +0 -45
- package/dist/runtime/components/LibLabel/LibLabel.vue.d.ts +0 -27
- package/dist/runtime/components/LibMultiValues/LibMultiValues.vue +0 -109
- package/dist/runtime/components/LibNotifications/LibNotification.d.vue.ts +0 -45
- package/dist/runtime/components/LibNotifications/LibNotification.vue.d.ts +0 -45
- package/dist/runtime/components/LibNotifications/LibNotifications.d.vue.ts +0 -15
- package/dist/runtime/components/LibNotifications/LibNotifications.vue.d.ts +0 -15
- package/dist/runtime/components/LibPagination/LibPagination.d.vue.ts +0 -105
- package/dist/runtime/components/LibPagination/LibPagination.vue +0 -229
- package/dist/runtime/components/LibPagination/LibPagination.vue.d.ts +0 -105
- package/dist/runtime/components/LibPalette/LibPalette.d.vue.ts +0 -15
- package/dist/runtime/components/LibPalette/LibPalette.vue.d.ts +0 -15
- package/dist/runtime/components/LibPopup/LibPopup.d.vue.ts +0 -52
- package/dist/runtime/components/LibPopup/LibPopup.vue +0 -365
- package/dist/runtime/components/LibPopup/LibPopup.vue.d.ts +0 -52
- package/dist/runtime/components/LibProgressBar/LibProgressBar.vue +0 -169
- package/dist/runtime/components/LibSuggestions/LibSuggestions.d.vue.ts +0 -99
- package/dist/runtime/components/LibSuggestions/LibSuggestions.vue +0 -178
- package/dist/runtime/components/LibSuggestions/LibSuggestions.vue.d.ts +0 -99
- package/dist/runtime/components/LibTable/LibTable.d.vue.ts +0 -125
- package/dist/runtime/components/LibTable/LibTable.vue.d.ts +0 -125
- package/dist/runtime/components/Template/NAME.d.vue.ts +0 -18
- package/dist/runtime/components/Template/NAME.vue +0 -27
- package/dist/runtime/components/Template/NAME.vue.d.ts +0 -18
- package/dist/runtime/components/Template/TemplateStory.d.ts +0 -7
- package/dist/runtime/components/Template/TemplateStory.js +0 -22
- package/dist/runtime/components/shared/props.d.ts +0 -171
- package/dist/runtime/components/shared/props.js +0 -2
- package/dist/runtime/composables/useAriaLabel.d.ts +0 -6
- package/dist/runtime/composables/useAriaLabel.js +0 -15
- package/dist/runtime/composables/useDarkMode.d.ts +0 -77
- package/dist/runtime/composables/useDarkMode.js +0 -89
- package/dist/runtime/composables/useDivideAttrs.d.ts +0 -27
- package/dist/runtime/composables/useDivideAttrs.js +0 -27
- package/dist/runtime/composables/useSuggestions.d.ts +0 -40
- package/dist/runtime/composables/useSuggestions.js +0 -263
- package/src/runtime/components/Aria/Aria.vue +0 -26
- package/src/runtime/components/LibButton/LibButton.stories.ts +0 -106
- package/src/runtime/components/LibCheckbox/LibCheckbox.vue +0 -131
- package/src/runtime/components/LibColorInput/LibColorInput.vue +0 -203
- package/src/runtime/components/LibInputDeprecated/LibInputDeprecated.stories.ts +0 -405
- package/src/runtime/components/LibInputDeprecated/LibInputDeprecated.vue +0 -419
- package/src/runtime/components/LibLabel/LibLabel.stories.ts +0 -33
- package/src/runtime/components/LibLabel/LibLabel.vue +0 -65
- package/src/runtime/components/LibMultiValues/LibMultiValues.vue +0 -123
- package/src/runtime/components/LibNotifications/LibNotifications.stories.ts +0 -131
- package/src/runtime/components/LibPagination/LibPagination.stories.ts +0 -49
- package/src/runtime/components/LibPagination/LibPagination.vue +0 -274
- package/src/runtime/components/LibPopup/LibPopup.stories.ts +0 -153
- package/src/runtime/components/LibPopup/LibPopup.vue +0 -396
- package/src/runtime/components/LibProgressBar/LibProgressBar.stories.ts +0 -90
- package/src/runtime/components/LibProgressBar/LibProgressBar.vue +0 -197
- package/src/runtime/components/LibSuggestions/LibSuggestions.stories.ts +0 -134
- package/src/runtime/components/LibSuggestions/LibSuggestions.vue +0 -212
- package/src/runtime/components/Template/NAME.vue +0 -49
- package/src/runtime/components/Template/TemplateStory.ts +0 -37
- package/src/runtime/components/shared/props.ts +0 -199
- package/src/runtime/composables/useAriaLabel.ts +0 -23
- package/src/runtime/composables/useDarkMode.ts +0 -199
- package/src/runtime/composables/useDivideAttrs.ts +0 -53
- package/src/runtime/composables/useSuggestions.ts +0 -339
- /package/dist/runtime/components/{LibColorPicker → WColorPicker}/utils/safeConvertToHsva.d.ts +0 -0
- /package/dist/runtime/components/{LibColorPicker → WColorPicker}/utils/safeConvertToHsva.js +0 -0
- /package/dist/runtime/components/{LibColorPicker → WColorPicker}/utils/safeConvertToRgba.d.ts +0 -0
- /package/dist/runtime/components/{LibColorPicker → WColorPicker}/utils/safeConvertToRgba.js +0 -0
- /package/dist/runtime/components/{LibColorPicker → WColorPicker}/utils/toLowPrecisionRgbaString.d.ts +0 -0
- /package/dist/runtime/components/{LibColorPicker → WColorPicker}/utils/toLowPrecisionRgbaString.js +0 -0
- /package/dist/runtime/components/{LibColorPicker → WColorPicker}/utils/truncate.d.ts +0 -0
- /package/dist/runtime/components/{LibColorPicker → WColorPicker}/utils/truncate.js +0 -0
- /package/dist/runtime/components/{LibDatePicker/LibRangeDatePicker.d.vue.ts → WDatePicker/WRangeDatePicker.d.vue.ts} +0 -0
- /package/dist/runtime/components/{LibDatePicker/LibRangeDatePicker.vue.d.ts → WDatePicker/WRangeDatePicker.vue.d.ts} +0 -0
- /package/dist/runtime/components/{LibDatePicker/LibSingleDatePicker.d.vue.ts → WDatePicker/WSingleDatePicker.d.vue.ts} +0 -0
- /package/dist/runtime/components/{LibDatePicker/LibSingleDatePicker.vue.d.ts → WDatePicker/WSingleDatePicker.vue.d.ts} +0 -0
- /package/dist/runtime/components/{LibDatePicker → WDatePicker}/helpers.d.ts +0 -0
- /package/dist/runtime/components/{LibDatePicker → WDatePicker}/helpers.js +0 -0
- /package/dist/runtime/components/{LibDebug/LibDebug.d.vue.ts → WDebug/WDebug.d.vue.ts} +0 -0
- /package/dist/runtime/components/{LibDebug/LibDebug.vue.d.ts → WDebug/WDebug.vue.d.ts} +0 -0
- /package/dist/runtime/components/{LibDevOnly/LibDevOnly.vue → WDevOnly/WDevOnly.vue} +0 -0
- /package/dist/runtime/components/{LibNotifications/LibNotificationTestMessageComponent.d.vue.ts → WNotifications/WNotificationTestMessageComponent.d.vue.ts} +0 -0
- /package/dist/runtime/components/{LibNotifications/LibNotificationTestMessageComponent.vue → WNotifications/WNotificationTestMessageComponent.vue} +0 -0
- /package/dist/runtime/components/{LibNotifications/LibNotificationTestMessageComponent.vue.d.ts → WNotifications/WNotificationTestMessageComponent.vue.d.ts} +0 -0
- /package/dist/runtime/components/{LibNotifications → WNotifications}/calculateNotificationProgress.d.ts +0 -0
- /package/dist/runtime/components/{LibNotifications → WNotifications}/calculateNotificationProgress.js +0 -0
- /package/src/runtime/components/{LibColorPicker → WColorPicker}/utils/safeConvertToHsva.ts +0 -0
- /package/src/runtime/components/{LibColorPicker → WColorPicker}/utils/safeConvertToRgba.ts +0 -0
- /package/src/runtime/components/{LibColorPicker → WColorPicker}/utils/toLowPrecisionRgbaString.ts +0 -0
- /package/src/runtime/components/{LibColorPicker → WColorPicker}/utils/truncate.ts +0 -0
- /package/src/runtime/components/{LibDatePicker → WDatePicker}/helpers.ts +0 -0
- /package/src/runtime/components/{LibNotifications/LibNotificationTestMessageComponent.vue → WNotifications/WNotificationTestMessageComponent.vue} +0 -0
- /package/src/runtime/components/{LibNotifications → WNotifications}/calculateNotificationProgress.ts +0 -0
|
@@ -1,41 +0,0 @@
|
|
|
1
|
-
import { type HTMLAttributes, type InputHTMLAttributes } from "vue";
|
|
2
|
-
import { type BaseInteractiveProps, type LabelProps, type LinkableByIdProps, type TailwindClassProp, type WrapperProps } from "../shared/props.js";
|
|
3
|
-
type WrapperTypes = Partial<WrapperProps<"label", HTMLAttributes, {
|
|
4
|
-
/** Tailwind classes. */
|
|
5
|
-
class?: string;
|
|
6
|
-
}>>;
|
|
7
|
-
type RealProps = LinkableByIdProps & LabelProps & BaseInteractiveProps & {
|
|
8
|
-
unstyle?: boolean;
|
|
9
|
-
};
|
|
10
|
-
interface Props extends
|
|
11
|
-
/** @vue-ignore */
|
|
12
|
-
Partial<Omit<InputHTMLAttributes, "class" | "readonly" | "disabled" | "onSumbit" | "autocomplete"> & TailwindClassProp>, WrapperTypes, RealProps {
|
|
13
|
-
}
|
|
14
|
-
declare const _default: typeof __VLS_export;
|
|
15
|
-
export default _default;
|
|
16
|
-
declare const __VLS_export: __VLS_WithSlots<import("vue").DefineComponent<Props & {
|
|
17
|
-
modelValue?: boolean;
|
|
18
|
-
}, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
19
|
-
"update:modelValue": (value: boolean) => any;
|
|
20
|
-
} & {
|
|
21
|
-
submit: (val: boolean) => any;
|
|
22
|
-
}, string, import("vue").PublicProps, Readonly<Props & {
|
|
23
|
-
modelValue?: boolean;
|
|
24
|
-
}> & Readonly<{
|
|
25
|
-
onSubmit?: ((val: boolean) => any) | undefined;
|
|
26
|
-
"onUpdate:modelValue"?: ((value: boolean) => any) | undefined;
|
|
27
|
-
}>, {
|
|
28
|
-
disabled: boolean;
|
|
29
|
-
readonly: boolean;
|
|
30
|
-
border: boolean;
|
|
31
|
-
unstyle: boolean;
|
|
32
|
-
}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>, {
|
|
33
|
-
left?: (props: {}) => any;
|
|
34
|
-
} & {
|
|
35
|
-
default?: (props: {}) => any;
|
|
36
|
-
}>;
|
|
37
|
-
type __VLS_WithSlots<T, S> = T & {
|
|
38
|
-
new (): {
|
|
39
|
-
$slots: S;
|
|
40
|
-
};
|
|
41
|
-
};
|
|
@@ -1,103 +0,0 @@
|
|
|
1
|
-
<template>
|
|
2
|
-
<div
|
|
3
|
-
:class="twMerge(
|
|
4
|
-
`
|
|
5
|
-
checkbox--wrapper
|
|
6
|
-
flex
|
|
7
|
-
items-center
|
|
8
|
-
gap-1
|
|
9
|
-
`,
|
|
10
|
-
$.wrapperAttrs?.class
|
|
11
|
-
)"
|
|
12
|
-
v-bind="{ ...$.wrapperAttrs, class: void 0 }"
|
|
13
|
-
ref="el"
|
|
14
|
-
>
|
|
15
|
-
<slot name="left"/>
|
|
16
|
-
<label
|
|
17
|
-
:class="twMerge(
|
|
18
|
-
`
|
|
19
|
-
checkbox--label
|
|
20
|
-
flex
|
|
21
|
-
items-center
|
|
22
|
-
gap-1
|
|
23
|
-
`,
|
|
24
|
-
$.labelAttrs?.class
|
|
25
|
-
)"
|
|
26
|
-
v-bind="{ ...$.labelAttrs, class: void 0 }"
|
|
27
|
-
:for="id ?? fallbackId"
|
|
28
|
-
>
|
|
29
|
-
<input
|
|
30
|
-
:id="id ?? fallbackId"
|
|
31
|
-
:class="!$attrs.unstyle && twMerge(
|
|
32
|
-
`
|
|
33
|
-
checkbox
|
|
34
|
-
focus-outline-no-offset
|
|
35
|
-
m-0
|
|
36
|
-
p-[0.4em]
|
|
37
|
-
bg-bg
|
|
38
|
-
dark:bg-fg
|
|
39
|
-
appearance-none
|
|
40
|
-
border
|
|
41
|
-
border-neutral-500
|
|
42
|
-
focus:border-accent-600
|
|
43
|
-
rounded-sm
|
|
44
|
-
aspect-square
|
|
45
|
-
relative
|
|
46
|
-
checked:after:content
|
|
47
|
-
checked:after:absolute
|
|
48
|
-
checked:after:w-full
|
|
49
|
-
checked:after:h-full
|
|
50
|
-
checked:after:border-2
|
|
51
|
-
checked:after:border-bg
|
|
52
|
-
dark:checked:after:border-fg
|
|
53
|
-
checked:after:rounded-sm
|
|
54
|
-
checked:after:top-0
|
|
55
|
-
checked:after:left-0
|
|
56
|
-
checked:after:bg-accent-700
|
|
57
|
-
disabled:border-neutral-500
|
|
58
|
-
disabled:checked:after:bg-neutral-700
|
|
59
|
-
`,
|
|
60
|
-
!disabled && `cursor-pointer`,
|
|
61
|
-
$.attrs.class
|
|
62
|
-
)"
|
|
63
|
-
type="checkbox"
|
|
64
|
-
:disabled="disabled"
|
|
65
|
-
ref="inputEl"
|
|
66
|
-
v-model="$value"
|
|
67
|
-
v-bind="{ ...$.attrs, class: void 0 }"
|
|
68
|
-
>
|
|
69
|
-
<slot/> {{ label }}
|
|
70
|
-
</label>
|
|
71
|
-
</div>
|
|
72
|
-
</template>
|
|
73
|
-
|
|
74
|
-
<script setup>
|
|
75
|
-
import { ref } from "vue";
|
|
76
|
-
import { useDivideAttrs } from "../../composables/useDivideAttrs.js";
|
|
77
|
-
import { usePreHydrationValue } from "../../composables/usePreHydrationValue.js";
|
|
78
|
-
import { twMerge } from "../../utils/twMerge.js";
|
|
79
|
-
import { getFallbackId } from "../shared/props.js";
|
|
80
|
-
defineOptions({
|
|
81
|
-
name: "LibCheckbox",
|
|
82
|
-
inheritAttrs: false
|
|
83
|
-
});
|
|
84
|
-
const $ = useDivideAttrs(["label", "wrapper"]);
|
|
85
|
-
const fallbackId = getFallbackId();
|
|
86
|
-
const props = defineProps({
|
|
87
|
-
id: { type: String, required: false },
|
|
88
|
-
label: { type: String, required: false },
|
|
89
|
-
disabled: { type: Boolean, required: false, default: false },
|
|
90
|
-
readonly: { type: Boolean, required: false, default: false },
|
|
91
|
-
border: { type: Boolean, required: false, default: true },
|
|
92
|
-
unstyle: { type: Boolean, required: false, default: false }
|
|
93
|
-
});
|
|
94
|
-
defineEmits(["submit"]);
|
|
95
|
-
const el = ref(null);
|
|
96
|
-
const inputEl = ref(null);
|
|
97
|
-
const $value = defineModel("modelValue", { type: Boolean, ...{ default: false } });
|
|
98
|
-
usePreHydrationValue(props.id ?? fallbackId, $value);
|
|
99
|
-
</script>
|
|
100
|
-
|
|
101
|
-
<script>
|
|
102
|
-
|
|
103
|
-
</script>
|
|
@@ -1,41 +0,0 @@
|
|
|
1
|
-
import { type HTMLAttributes, type InputHTMLAttributes } from "vue";
|
|
2
|
-
import { type BaseInteractiveProps, type LabelProps, type LinkableByIdProps, type TailwindClassProp, type WrapperProps } from "../shared/props.js";
|
|
3
|
-
type WrapperTypes = Partial<WrapperProps<"label", HTMLAttributes, {
|
|
4
|
-
/** Tailwind classes. */
|
|
5
|
-
class?: string;
|
|
6
|
-
}>>;
|
|
7
|
-
type RealProps = LinkableByIdProps & LabelProps & BaseInteractiveProps & {
|
|
8
|
-
unstyle?: boolean;
|
|
9
|
-
};
|
|
10
|
-
interface Props extends
|
|
11
|
-
/** @vue-ignore */
|
|
12
|
-
Partial<Omit<InputHTMLAttributes, "class" | "readonly" | "disabled" | "onSumbit" | "autocomplete"> & TailwindClassProp>, WrapperTypes, RealProps {
|
|
13
|
-
}
|
|
14
|
-
declare const _default: typeof __VLS_export;
|
|
15
|
-
export default _default;
|
|
16
|
-
declare const __VLS_export: __VLS_WithSlots<import("vue").DefineComponent<Props & {
|
|
17
|
-
modelValue?: boolean;
|
|
18
|
-
}, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
19
|
-
"update:modelValue": (value: boolean) => any;
|
|
20
|
-
} & {
|
|
21
|
-
submit: (val: boolean) => any;
|
|
22
|
-
}, string, import("vue").PublicProps, Readonly<Props & {
|
|
23
|
-
modelValue?: boolean;
|
|
24
|
-
}> & Readonly<{
|
|
25
|
-
onSubmit?: ((val: boolean) => any) | undefined;
|
|
26
|
-
"onUpdate:modelValue"?: ((value: boolean) => any) | undefined;
|
|
27
|
-
}>, {
|
|
28
|
-
disabled: boolean;
|
|
29
|
-
readonly: boolean;
|
|
30
|
-
border: boolean;
|
|
31
|
-
unstyle: boolean;
|
|
32
|
-
}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>, {
|
|
33
|
-
left?: (props: {}) => any;
|
|
34
|
-
} & {
|
|
35
|
-
default?: (props: {}) => any;
|
|
36
|
-
}>;
|
|
37
|
-
type __VLS_WithSlots<T, S> = T & {
|
|
38
|
-
new (): {
|
|
39
|
-
$slots: S;
|
|
40
|
-
};
|
|
41
|
-
};
|
|
@@ -1,64 +0,0 @@
|
|
|
1
|
-
import { type ButtonHTMLAttributes } from "vue";
|
|
2
|
-
import type { HsvaColor, RgbaColor } from "../../types/index.js";
|
|
3
|
-
import { type LabelProps, type LinkableByIdProps, type TailwindClassProp } from "../shared/props.js";
|
|
4
|
-
type RealProps = LabelProps & LinkableByIdProps & {
|
|
5
|
-
allowAlpha?: boolean;
|
|
6
|
-
border?: boolean;
|
|
7
|
-
/** See ColorPicker.copyTransform */
|
|
8
|
-
copyTransform?: (val: HsvaColor, stringVal: string) => any;
|
|
9
|
-
/** See ColorPicker.allowAlpha */
|
|
10
|
-
stringPrecision?: number;
|
|
11
|
-
/** See ColorPicker.customRepresentation */
|
|
12
|
-
customRepresentation?: {
|
|
13
|
-
fromHsvaToString: (hsva: HsvaColor, includeAlpha: boolean) => string;
|
|
14
|
-
};
|
|
15
|
-
};
|
|
16
|
-
interface Props extends
|
|
17
|
-
/** @vue-ignore */
|
|
18
|
-
Partial<Omit<ButtonHTMLAttributes, "class"> & TailwindClassProp & {
|
|
19
|
-
"aria-label": string;
|
|
20
|
-
}>, RealProps {
|
|
21
|
-
}
|
|
22
|
-
declare const _default: typeof __VLS_export;
|
|
23
|
-
export default _default;
|
|
24
|
-
declare const __VLS_export: __VLS_WithSlots<import("vue").DefineComponent<Props & {
|
|
25
|
-
modelValue?: RgbaColor;
|
|
26
|
-
tempValue?: RgbaColor | undefined;
|
|
27
|
-
}, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
28
|
-
"update:modelValue": (value: RgbaColor) => any;
|
|
29
|
-
"update:tempValue": (value: RgbaColor | undefined) => any;
|
|
30
|
-
} & {
|
|
31
|
-
cancel: () => any;
|
|
32
|
-
save: () => any;
|
|
33
|
-
}, string, import("vue").PublicProps, Readonly<Props & {
|
|
34
|
-
modelValue?: RgbaColor;
|
|
35
|
-
tempValue?: RgbaColor | undefined;
|
|
36
|
-
}> & Readonly<{
|
|
37
|
-
"onUpdate:modelValue"?: ((value: RgbaColor) => any) | undefined;
|
|
38
|
-
onCancel?: (() => any) | undefined;
|
|
39
|
-
onSave?: (() => any) | undefined;
|
|
40
|
-
"onUpdate:tempValue"?: ((value: RgbaColor | undefined) => any) | undefined;
|
|
41
|
-
}>, {
|
|
42
|
-
border: boolean;
|
|
43
|
-
allowAlpha: boolean;
|
|
44
|
-
stringPrecision: number;
|
|
45
|
-
customRepresentation: {
|
|
46
|
-
fromHsvaToString: (hsva: HsvaColor, includeAlpha: boolean) => string;
|
|
47
|
-
};
|
|
48
|
-
copyTransform: (val: HsvaColor, stringVal: string) => any;
|
|
49
|
-
}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>, {
|
|
50
|
-
default?: (props: {
|
|
51
|
-
stringColor: string;
|
|
52
|
-
classes: "\n\tcolor-input--swatch\n\tafter:content-vertical-holder\n\tmin-w-4\n\tflex-1\n\trelative\n\tbefore:content-['']\n\tbefore:absolute\n\tbefore:inset-0\n\tbefore:bg-transparency-squares\n\tbefore:z-[-1]\n";
|
|
53
|
-
}) => any;
|
|
54
|
-
} & {
|
|
55
|
-
temp?: (props: {
|
|
56
|
-
tempStringColor: string;
|
|
57
|
-
classes: "\n\tcolor-input--swatch\n\tafter:content-vertical-holder\n\tmin-w-4\n\tflex-1\n\trelative\n\tbefore:content-['']\n\tbefore:absolute\n\tbefore:inset-0\n\tbefore:bg-transparency-squares\n\tbefore:z-[-1]\n";
|
|
58
|
-
}) => any;
|
|
59
|
-
}>;
|
|
60
|
-
type __VLS_WithSlots<T, S> = T & {
|
|
61
|
-
new (): {
|
|
62
|
-
$slots: S;
|
|
63
|
-
};
|
|
64
|
-
};
|
|
@@ -1,162 +0,0 @@
|
|
|
1
|
-
<template>
|
|
2
|
-
<lib-popup
|
|
3
|
-
class="color-input--popup"
|
|
4
|
-
v-model="showPopup"
|
|
5
|
-
@close="$tempValue = void 0;
|
|
6
|
-
emit('cancel')"
|
|
7
|
-
>
|
|
8
|
-
<template #button="{ extractEl }">
|
|
9
|
-
<!-- <div -->
|
|
10
|
-
<!-- class=" -->
|
|
11
|
-
<!-- flex -->
|
|
12
|
-
<!-- w-full -->
|
|
13
|
-
<!-- border -->
|
|
14
|
-
<!-- " -->
|
|
15
|
-
<!-- v-extract-root-el="extractEl" -->
|
|
16
|
-
<!-- > -->
|
|
17
|
-
|
|
18
|
-
<!-- -->
|
|
19
|
-
<lib-button
|
|
20
|
-
:id="id ?? fallbackId"
|
|
21
|
-
:class="twMerge(
|
|
22
|
-
`
|
|
23
|
-
p-0
|
|
24
|
-
color-input--button
|
|
25
|
-
flex flex-nowrap
|
|
26
|
-
min-w-4
|
|
27
|
-
overflow-hidden
|
|
28
|
-
[&_.button--label]:items-stretch
|
|
29
|
-
[&_.button--label]:gap-0
|
|
30
|
-
after:hidden
|
|
31
|
-
`,
|
|
32
|
-
$attrs.class
|
|
33
|
-
)"
|
|
34
|
-
:aria-label="t('color-input.aria-and-title-prefix') + stringColor"
|
|
35
|
-
:title="t('color-input.aria-and-title-prefix') + stringColor"
|
|
36
|
-
v-bind="{ ...$attrs, class: void 0 }"
|
|
37
|
-
v-extract-root-el="extractEl"
|
|
38
|
-
@click="togglePopup"
|
|
39
|
-
>
|
|
40
|
-
<template #label>
|
|
41
|
-
<div
|
|
42
|
-
class="
|
|
43
|
-
color-input--swatch-wrapper
|
|
44
|
-
flex
|
|
45
|
-
w-full
|
|
46
|
-
"
|
|
47
|
-
>
|
|
48
|
-
<slot v-bind="{ stringColor, classes: swatchClasses }">
|
|
49
|
-
<div
|
|
50
|
-
:class="swatchClasses"
|
|
51
|
-
:style="`background:${stringColor}`"
|
|
52
|
-
/>
|
|
53
|
-
</slot>
|
|
54
|
-
<slot
|
|
55
|
-
v-if="$tempValue"
|
|
56
|
-
v-bind="{ tempStringColor, classes: swatchClasses }"
|
|
57
|
-
name="temp"
|
|
58
|
-
>
|
|
59
|
-
<div
|
|
60
|
-
:class="swatchClasses"
|
|
61
|
-
:style="`background:${tempStringColor}`"
|
|
62
|
-
/>
|
|
63
|
-
</slot>
|
|
64
|
-
</div>
|
|
65
|
-
</template>
|
|
66
|
-
</lib-button>
|
|
67
|
-
</template>
|
|
68
|
-
<template #popup="{ extractEl }">
|
|
69
|
-
<div
|
|
70
|
-
class="color-input--popup-wrapper p-5"
|
|
71
|
-
v-extract-root-el="extractEl"
|
|
72
|
-
>
|
|
73
|
-
<lib-color-picker
|
|
74
|
-
v-if="showPopup"
|
|
75
|
-
:id="id ?? fallbackId"
|
|
76
|
-
:allow-alpha="allowAlpha"
|
|
77
|
-
:custom-representation="customRepresentation"
|
|
78
|
-
:string-precision="stringPrecision"
|
|
79
|
-
v-model="internalTempValue"
|
|
80
|
-
v-model:temp-value="$tempValue"
|
|
81
|
-
@save="save"
|
|
82
|
-
@cancel="cancel"
|
|
83
|
-
/>
|
|
84
|
-
</div>
|
|
85
|
-
</template>
|
|
86
|
-
</lib-popup>
|
|
87
|
-
</template>
|
|
88
|
-
|
|
89
|
-
<script setup>
|
|
90
|
-
import Color from "colorjs.io";
|
|
91
|
-
import { computed, ref, useAttrs } from "vue";
|
|
92
|
-
import { useInjectedI18n } from "../../composables/useInjectedI18n.js";
|
|
93
|
-
import { vExtractRootEl } from "../../directives/vExtractRootEl.js";
|
|
94
|
-
import { twMerge } from "../../utils/twMerge.js";
|
|
95
|
-
import LibButton from "../LibButton/LibButton.vue";
|
|
96
|
-
import LibColorPicker from "../LibColorPicker/LibColorPicker.vue";
|
|
97
|
-
import LibPopup from "../LibPopup/LibPopup.vue";
|
|
98
|
-
import { getFallbackId } from "../shared/props.js";
|
|
99
|
-
defineOptions({
|
|
100
|
-
name: "LibColorInput"
|
|
101
|
-
});
|
|
102
|
-
const swatchClasses = `
|
|
103
|
-
color-input--swatch
|
|
104
|
-
after:content-vertical-holder
|
|
105
|
-
min-w-4
|
|
106
|
-
flex-1
|
|
107
|
-
relative
|
|
108
|
-
before:content-['']
|
|
109
|
-
before:absolute
|
|
110
|
-
before:inset-0
|
|
111
|
-
before:bg-transparency-squares
|
|
112
|
-
before:z-[-1]
|
|
113
|
-
`;
|
|
114
|
-
const fallbackId = getFallbackId();
|
|
115
|
-
const t = useInjectedI18n();
|
|
116
|
-
defineProps({
|
|
117
|
-
label: { type: String, required: false },
|
|
118
|
-
id: { type: String, required: false },
|
|
119
|
-
allowAlpha: { type: Boolean, required: false, default: true },
|
|
120
|
-
border: { type: Boolean, required: false, default: true },
|
|
121
|
-
copyTransform: { type: Function, required: false, default: (_val, stringVal) => stringVal },
|
|
122
|
-
stringPrecision: { type: Number, required: false, default: 3 },
|
|
123
|
-
customRepresentation: { type: Object, required: false, default: void 0 }
|
|
124
|
-
});
|
|
125
|
-
const emit = defineEmits(["save", "cancel"]);
|
|
126
|
-
function save() {
|
|
127
|
-
$value.value = internalTempValue.value;
|
|
128
|
-
showPopup.value = false;
|
|
129
|
-
$tempValue.value = void 0;
|
|
130
|
-
emit("save");
|
|
131
|
-
}
|
|
132
|
-
function cancel() {
|
|
133
|
-
showPopup.value = false;
|
|
134
|
-
$tempValue.value = void 0;
|
|
135
|
-
emit("cancel");
|
|
136
|
-
}
|
|
137
|
-
const $attrs = useAttrs();
|
|
138
|
-
const $value = defineModel({ type: Object, ...{ required: false, default: () => ({ r: 0, g: 0, b: 0 }) } });
|
|
139
|
-
const $tempValue = defineModel("tempValue", { type: null, ...{ required: false, default: () => void 0 } });
|
|
140
|
-
const stringColor = computed(() => new Color("srgb", [
|
|
141
|
-
$value.value.r / 255,
|
|
142
|
-
$value.value.g / 255,
|
|
143
|
-
$value.value.b / 255
|
|
144
|
-
], $value.value.a ?? 1).toString());
|
|
145
|
-
const tempStringColor = computed(() => $tempValue.value ? new Color("srgb", [
|
|
146
|
-
$tempValue.value.r / 255,
|
|
147
|
-
$tempValue.value.g / 255,
|
|
148
|
-
$tempValue.value.b / 255
|
|
149
|
-
], $tempValue.value.a ?? 1).toString() : "");
|
|
150
|
-
const internalTempValue = ref({ ...$value.value });
|
|
151
|
-
const showPopup = ref(false);
|
|
152
|
-
const togglePopup = () => {
|
|
153
|
-
if (showPopup.value) {
|
|
154
|
-
$value.value = internalTempValue.value;
|
|
155
|
-
}
|
|
156
|
-
showPopup.value = !showPopup.value;
|
|
157
|
-
};
|
|
158
|
-
</script>
|
|
159
|
-
|
|
160
|
-
<script>
|
|
161
|
-
|
|
162
|
-
</script>
|
|
@@ -1,64 +0,0 @@
|
|
|
1
|
-
import { type ButtonHTMLAttributes } from "vue";
|
|
2
|
-
import type { HsvaColor, RgbaColor } from "../../types/index.js";
|
|
3
|
-
import { type LabelProps, type LinkableByIdProps, type TailwindClassProp } from "../shared/props.js";
|
|
4
|
-
type RealProps = LabelProps & LinkableByIdProps & {
|
|
5
|
-
allowAlpha?: boolean;
|
|
6
|
-
border?: boolean;
|
|
7
|
-
/** See ColorPicker.copyTransform */
|
|
8
|
-
copyTransform?: (val: HsvaColor, stringVal: string) => any;
|
|
9
|
-
/** See ColorPicker.allowAlpha */
|
|
10
|
-
stringPrecision?: number;
|
|
11
|
-
/** See ColorPicker.customRepresentation */
|
|
12
|
-
customRepresentation?: {
|
|
13
|
-
fromHsvaToString: (hsva: HsvaColor, includeAlpha: boolean) => string;
|
|
14
|
-
};
|
|
15
|
-
};
|
|
16
|
-
interface Props extends
|
|
17
|
-
/** @vue-ignore */
|
|
18
|
-
Partial<Omit<ButtonHTMLAttributes, "class"> & TailwindClassProp & {
|
|
19
|
-
"aria-label": string;
|
|
20
|
-
}>, RealProps {
|
|
21
|
-
}
|
|
22
|
-
declare const _default: typeof __VLS_export;
|
|
23
|
-
export default _default;
|
|
24
|
-
declare const __VLS_export: __VLS_WithSlots<import("vue").DefineComponent<Props & {
|
|
25
|
-
modelValue?: RgbaColor;
|
|
26
|
-
tempValue?: RgbaColor | undefined;
|
|
27
|
-
}, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
28
|
-
"update:modelValue": (value: RgbaColor) => any;
|
|
29
|
-
"update:tempValue": (value: RgbaColor | undefined) => any;
|
|
30
|
-
} & {
|
|
31
|
-
cancel: () => any;
|
|
32
|
-
save: () => any;
|
|
33
|
-
}, string, import("vue").PublicProps, Readonly<Props & {
|
|
34
|
-
modelValue?: RgbaColor;
|
|
35
|
-
tempValue?: RgbaColor | undefined;
|
|
36
|
-
}> & Readonly<{
|
|
37
|
-
"onUpdate:modelValue"?: ((value: RgbaColor) => any) | undefined;
|
|
38
|
-
onCancel?: (() => any) | undefined;
|
|
39
|
-
onSave?: (() => any) | undefined;
|
|
40
|
-
"onUpdate:tempValue"?: ((value: RgbaColor | undefined) => any) | undefined;
|
|
41
|
-
}>, {
|
|
42
|
-
border: boolean;
|
|
43
|
-
allowAlpha: boolean;
|
|
44
|
-
stringPrecision: number;
|
|
45
|
-
customRepresentation: {
|
|
46
|
-
fromHsvaToString: (hsva: HsvaColor, includeAlpha: boolean) => string;
|
|
47
|
-
};
|
|
48
|
-
copyTransform: (val: HsvaColor, stringVal: string) => any;
|
|
49
|
-
}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>, {
|
|
50
|
-
default?: (props: {
|
|
51
|
-
stringColor: string;
|
|
52
|
-
classes: "\n\tcolor-input--swatch\n\tafter:content-vertical-holder\n\tmin-w-4\n\tflex-1\n\trelative\n\tbefore:content-['']\n\tbefore:absolute\n\tbefore:inset-0\n\tbefore:bg-transparency-squares\n\tbefore:z-[-1]\n";
|
|
53
|
-
}) => any;
|
|
54
|
-
} & {
|
|
55
|
-
temp?: (props: {
|
|
56
|
-
tempStringColor: string;
|
|
57
|
-
classes: "\n\tcolor-input--swatch\n\tafter:content-vertical-holder\n\tmin-w-4\n\tflex-1\n\trelative\n\tbefore:content-['']\n\tbefore:absolute\n\tbefore:inset-0\n\tbefore:bg-transparency-squares\n\tbefore:z-[-1]\n";
|
|
58
|
-
}) => any;
|
|
59
|
-
}>;
|
|
60
|
-
type __VLS_WithSlots<T, S> = T & {
|
|
61
|
-
new (): {
|
|
62
|
-
$slots: S;
|
|
63
|
-
};
|
|
64
|
-
};
|
|
@@ -1,191 +0,0 @@
|
|
|
1
|
-
import type { RangeDate, SingleDate } from "../../types/index.js";
|
|
2
|
-
type __VLS_Props = {
|
|
3
|
-
showTime?: boolean;
|
|
4
|
-
id?: string;
|
|
5
|
-
/** The fallback suggested date when the modelValue is undefined (it will not update modelValue, it only serves as a suggestions and is used internally in the temporary value). If ignoring the time element, you should probably use the {@link createNoonTodayUtc} function (`createNonTodayUtc().toDate(())`) in the helpers, otherwise `new Date()` (the default) will do. */
|
|
6
|
-
fallbackDate?: Date;
|
|
7
|
-
/** The local user's timezone, defaults to @internationalized/date's getLocalTimeZone(). */
|
|
8
|
-
timeZone?: string;
|
|
9
|
-
};
|
|
10
|
-
type __VLS_ModelProps = {
|
|
11
|
-
/**
|
|
12
|
-
* modelValue can be undefined or an object with start/end undefined, but it must be passed, otherwise we can't tell the difference between a single date and a range date.
|
|
13
|
-
*
|
|
14
|
-
* In the case of an undefined date, the current date at NOON UTC will be used to avoid the date changing.
|
|
15
|
-
*
|
|
16
|
-
* The @internationalized/date library's fromDate function is used internally to convert the date given (should be UTC) to the local time zone. It's converted back via it's toDate function.
|
|
17
|
-
*/
|
|
18
|
-
modelValue: SingleDate | RangeDate;
|
|
19
|
-
};
|
|
20
|
-
type __VLS_PublicProps = __VLS_Props & __VLS_ModelProps;
|
|
21
|
-
declare var __VLS_9: {
|
|
22
|
-
tempValue: {
|
|
23
|
-
start?: {
|
|
24
|
-
readonly calendar: {
|
|
25
|
-
identifier: import("@internationalized/date").CalendarIdentifier;
|
|
26
|
-
fromJulianDay: (jd: number) => import("@internationalized/date").CalendarDate;
|
|
27
|
-
toJulianDay: (date: import("@internationalized/date").AnyCalendarDate) => number;
|
|
28
|
-
getDaysInMonth: (date: import("@internationalized/date").AnyCalendarDate) => number;
|
|
29
|
-
getMonthsInYear: (date: import("@internationalized/date").AnyCalendarDate) => number;
|
|
30
|
-
getYearsInEra: (date: import("@internationalized/date").AnyCalendarDate) => number;
|
|
31
|
-
getEras: () => string[];
|
|
32
|
-
getMinimumMonthInYear?: ((date: import("@internationalized/date").AnyCalendarDate) => number) | undefined;
|
|
33
|
-
getMinimumDayInMonth?: ((date: import("@internationalized/date").AnyCalendarDate) => number) | undefined;
|
|
34
|
-
getMaximumMonthsInYear: () => number;
|
|
35
|
-
getMaximumDaysInMonth: () => number;
|
|
36
|
-
getFormattableMonth?: ((date: import("@internationalized/date").AnyCalendarDate) => import("@internationalized/date").CalendarDate) | undefined;
|
|
37
|
-
isEqual?: ((calendar: import("@internationalized/date").Calendar) => boolean) | undefined;
|
|
38
|
-
balanceDate?: ((date: import("@internationalized/date").AnyCalendarDate) => void) | undefined;
|
|
39
|
-
balanceYearMonth?: ((date: import("@internationalized/date").AnyCalendarDate, previousDate: import("@internationalized/date").AnyCalendarDate) => void) | undefined;
|
|
40
|
-
constrainDate?: ((date: import("@internationalized/date").AnyCalendarDate) => void) | undefined;
|
|
41
|
-
isInverseEra?: ((date: import("@internationalized/date").AnyCalendarDate) => boolean) | undefined;
|
|
42
|
-
};
|
|
43
|
-
readonly era: string;
|
|
44
|
-
readonly year: number;
|
|
45
|
-
readonly month: number;
|
|
46
|
-
readonly day: number;
|
|
47
|
-
copy: () => import("@internationalized/date").CalendarDate;
|
|
48
|
-
add: (duration: import("@internationalized/date").DateDuration) => import("@internationalized/date").CalendarDate;
|
|
49
|
-
subtract: (duration: import("@internationalized/date").DateDuration) => import("@internationalized/date").CalendarDate;
|
|
50
|
-
set: (fields: import("@internationalized/date").DateFields) => import("@internationalized/date").CalendarDate;
|
|
51
|
-
cycle: (field: import("@internationalized/date").DateField, amount: number, options?: import("@internationalized/date").CycleOptions) => import("@internationalized/date").CalendarDate;
|
|
52
|
-
toDate: (timeZone: string) => Date;
|
|
53
|
-
toString: () => string;
|
|
54
|
-
compare: (b: import("@internationalized/date").AnyCalendarDate) => number;
|
|
55
|
-
} | {
|
|
56
|
-
readonly calendar: {
|
|
57
|
-
identifier: import("@internationalized/date").CalendarIdentifier;
|
|
58
|
-
fromJulianDay: (jd: number) => import("@internationalized/date").CalendarDate;
|
|
59
|
-
toJulianDay: (date: import("@internationalized/date").AnyCalendarDate) => number;
|
|
60
|
-
getDaysInMonth: (date: import("@internationalized/date").AnyCalendarDate) => number;
|
|
61
|
-
getMonthsInYear: (date: import("@internationalized/date").AnyCalendarDate) => number;
|
|
62
|
-
getYearsInEra: (date: import("@internationalized/date").AnyCalendarDate) => number;
|
|
63
|
-
getEras: () => string[];
|
|
64
|
-
getMinimumMonthInYear?: ((date: import("@internationalized/date").AnyCalendarDate) => number) | undefined;
|
|
65
|
-
getMinimumDayInMonth?: ((date: import("@internationalized/date").AnyCalendarDate) => number) | undefined;
|
|
66
|
-
getMaximumMonthsInYear: () => number;
|
|
67
|
-
getMaximumDaysInMonth: () => number;
|
|
68
|
-
getFormattableMonth?: ((date: import("@internationalized/date").AnyCalendarDate) => import("@internationalized/date").CalendarDate) | undefined;
|
|
69
|
-
isEqual?: ((calendar: import("@internationalized/date").Calendar) => boolean) | undefined;
|
|
70
|
-
balanceDate?: ((date: import("@internationalized/date").AnyCalendarDate) => void) | undefined;
|
|
71
|
-
balanceYearMonth?: ((date: import("@internationalized/date").AnyCalendarDate, previousDate: import("@internationalized/date").AnyCalendarDate) => void) | undefined;
|
|
72
|
-
constrainDate?: ((date: import("@internationalized/date").AnyCalendarDate) => void) | undefined;
|
|
73
|
-
isInverseEra?: ((date: import("@internationalized/date").AnyCalendarDate) => boolean) | undefined;
|
|
74
|
-
};
|
|
75
|
-
readonly era: string;
|
|
76
|
-
readonly year: number;
|
|
77
|
-
readonly month: number;
|
|
78
|
-
readonly day: number;
|
|
79
|
-
readonly hour: number;
|
|
80
|
-
readonly minute: number;
|
|
81
|
-
readonly second: number;
|
|
82
|
-
readonly millisecond: number;
|
|
83
|
-
readonly timeZone: string;
|
|
84
|
-
readonly offset: number;
|
|
85
|
-
copy: () => import("@internationalized/date").ZonedDateTime;
|
|
86
|
-
add: (duration: import("@internationalized/date").DateTimeDuration) => import("@internationalized/date").ZonedDateTime;
|
|
87
|
-
subtract: (duration: import("@internationalized/date").DateTimeDuration) => import("@internationalized/date").ZonedDateTime;
|
|
88
|
-
set: (fields: import("@internationalized/date").DateFields & import("@internationalized/date").TimeFields, disambiguation?: import("@internationalized/date").Disambiguation) => import("@internationalized/date").ZonedDateTime;
|
|
89
|
-
cycle: (field: import("@internationalized/date").DateField | import("@internationalized/date").TimeField, amount: number, options?: import("@internationalized/date").CycleTimeOptions) => import("@internationalized/date").ZonedDateTime;
|
|
90
|
-
toDate: () => Date;
|
|
91
|
-
toString: () => string;
|
|
92
|
-
toAbsoluteString: () => string;
|
|
93
|
-
compare: (b: import("@internationalized/date").CalendarDate | import("@internationalized/date").CalendarDateTime | import("@internationalized/date").ZonedDateTime) => number;
|
|
94
|
-
} | undefined;
|
|
95
|
-
end?: {
|
|
96
|
-
readonly calendar: {
|
|
97
|
-
identifier: import("@internationalized/date").CalendarIdentifier;
|
|
98
|
-
fromJulianDay: (jd: number) => import("@internationalized/date").CalendarDate;
|
|
99
|
-
toJulianDay: (date: import("@internationalized/date").AnyCalendarDate) => number;
|
|
100
|
-
getDaysInMonth: (date: import("@internationalized/date").AnyCalendarDate) => number;
|
|
101
|
-
getMonthsInYear: (date: import("@internationalized/date").AnyCalendarDate) => number;
|
|
102
|
-
getYearsInEra: (date: import("@internationalized/date").AnyCalendarDate) => number;
|
|
103
|
-
getEras: () => string[];
|
|
104
|
-
getMinimumMonthInYear?: ((date: import("@internationalized/date").AnyCalendarDate) => number) | undefined;
|
|
105
|
-
getMinimumDayInMonth?: ((date: import("@internationalized/date").AnyCalendarDate) => number) | undefined;
|
|
106
|
-
getMaximumMonthsInYear: () => number;
|
|
107
|
-
getMaximumDaysInMonth: () => number;
|
|
108
|
-
getFormattableMonth?: ((date: import("@internationalized/date").AnyCalendarDate) => import("@internationalized/date").CalendarDate) | undefined;
|
|
109
|
-
isEqual?: ((calendar: import("@internationalized/date").Calendar) => boolean) | undefined;
|
|
110
|
-
balanceDate?: ((date: import("@internationalized/date").AnyCalendarDate) => void) | undefined;
|
|
111
|
-
balanceYearMonth?: ((date: import("@internationalized/date").AnyCalendarDate, previousDate: import("@internationalized/date").AnyCalendarDate) => void) | undefined;
|
|
112
|
-
constrainDate?: ((date: import("@internationalized/date").AnyCalendarDate) => void) | undefined;
|
|
113
|
-
isInverseEra?: ((date: import("@internationalized/date").AnyCalendarDate) => boolean) | undefined;
|
|
114
|
-
};
|
|
115
|
-
readonly era: string;
|
|
116
|
-
readonly year: number;
|
|
117
|
-
readonly month: number;
|
|
118
|
-
readonly day: number;
|
|
119
|
-
copy: () => import("@internationalized/date").CalendarDate;
|
|
120
|
-
add: (duration: import("@internationalized/date").DateDuration) => import("@internationalized/date").CalendarDate;
|
|
121
|
-
subtract: (duration: import("@internationalized/date").DateDuration) => import("@internationalized/date").CalendarDate;
|
|
122
|
-
set: (fields: import("@internationalized/date").DateFields) => import("@internationalized/date").CalendarDate;
|
|
123
|
-
cycle: (field: import("@internationalized/date").DateField, amount: number, options?: import("@internationalized/date").CycleOptions) => import("@internationalized/date").CalendarDate;
|
|
124
|
-
toDate: (timeZone: string) => Date;
|
|
125
|
-
toString: () => string;
|
|
126
|
-
compare: (b: import("@internationalized/date").AnyCalendarDate) => number;
|
|
127
|
-
} | {
|
|
128
|
-
readonly calendar: {
|
|
129
|
-
identifier: import("@internationalized/date").CalendarIdentifier;
|
|
130
|
-
fromJulianDay: (jd: number) => import("@internationalized/date").CalendarDate;
|
|
131
|
-
toJulianDay: (date: import("@internationalized/date").AnyCalendarDate) => number;
|
|
132
|
-
getDaysInMonth: (date: import("@internationalized/date").AnyCalendarDate) => number;
|
|
133
|
-
getMonthsInYear: (date: import("@internationalized/date").AnyCalendarDate) => number;
|
|
134
|
-
getYearsInEra: (date: import("@internationalized/date").AnyCalendarDate) => number;
|
|
135
|
-
getEras: () => string[];
|
|
136
|
-
getMinimumMonthInYear?: ((date: import("@internationalized/date").AnyCalendarDate) => number) | undefined;
|
|
137
|
-
getMinimumDayInMonth?: ((date: import("@internationalized/date").AnyCalendarDate) => number) | undefined;
|
|
138
|
-
getMaximumMonthsInYear: () => number;
|
|
139
|
-
getMaximumDaysInMonth: () => number;
|
|
140
|
-
getFormattableMonth?: ((date: import("@internationalized/date").AnyCalendarDate) => import("@internationalized/date").CalendarDate) | undefined;
|
|
141
|
-
isEqual?: ((calendar: import("@internationalized/date").Calendar) => boolean) | undefined;
|
|
142
|
-
balanceDate?: ((date: import("@internationalized/date").AnyCalendarDate) => void) | undefined;
|
|
143
|
-
balanceYearMonth?: ((date: import("@internationalized/date").AnyCalendarDate, previousDate: import("@internationalized/date").AnyCalendarDate) => void) | undefined;
|
|
144
|
-
constrainDate?: ((date: import("@internationalized/date").AnyCalendarDate) => void) | undefined;
|
|
145
|
-
isInverseEra?: ((date: import("@internationalized/date").AnyCalendarDate) => boolean) | undefined;
|
|
146
|
-
};
|
|
147
|
-
readonly era: string;
|
|
148
|
-
readonly year: number;
|
|
149
|
-
readonly month: number;
|
|
150
|
-
readonly day: number;
|
|
151
|
-
readonly hour: number;
|
|
152
|
-
readonly minute: number;
|
|
153
|
-
readonly second: number;
|
|
154
|
-
readonly millisecond: number;
|
|
155
|
-
readonly timeZone: string;
|
|
156
|
-
readonly offset: number;
|
|
157
|
-
copy: () => import("@internationalized/date").ZonedDateTime;
|
|
158
|
-
add: (duration: import("@internationalized/date").DateTimeDuration) => import("@internationalized/date").ZonedDateTime;
|
|
159
|
-
subtract: (duration: import("@internationalized/date").DateTimeDuration) => import("@internationalized/date").ZonedDateTime;
|
|
160
|
-
set: (fields: import("@internationalized/date").DateFields & import("@internationalized/date").TimeFields, disambiguation?: import("@internationalized/date").Disambiguation) => import("@internationalized/date").ZonedDateTime;
|
|
161
|
-
cycle: (field: import("@internationalized/date").DateField | import("@internationalized/date").TimeField, amount: number, options?: import("@internationalized/date").CycleTimeOptions) => import("@internationalized/date").ZonedDateTime;
|
|
162
|
-
toDate: () => Date;
|
|
163
|
-
toString: () => string;
|
|
164
|
-
toAbsoluteString: () => string;
|
|
165
|
-
compare: (b: import("@internationalized/date").CalendarDate | import("@internationalized/date").CalendarDateTime | import("@internationalized/date").ZonedDateTime) => number;
|
|
166
|
-
} | undefined;
|
|
167
|
-
};
|
|
168
|
-
} | {
|
|
169
|
-
tempValue: any;
|
|
170
|
-
};
|
|
171
|
-
type __VLS_Slots = {} & {
|
|
172
|
-
default?: (props: typeof __VLS_9) => any;
|
|
173
|
-
};
|
|
174
|
-
declare const __VLS_base: import("vue").DefineComponent<__VLS_PublicProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
175
|
-
"update:modelValue": (value: SingleDate | RangeDate) => any;
|
|
176
|
-
}, string, import("vue").PublicProps, Readonly<__VLS_PublicProps> & Readonly<{
|
|
177
|
-
"onUpdate:modelValue"?: ((value: SingleDate | RangeDate) => any) | undefined;
|
|
178
|
-
}>, {
|
|
179
|
-
id: string;
|
|
180
|
-
fallbackDate: Date;
|
|
181
|
-
timeZone: string;
|
|
182
|
-
showTime: boolean;
|
|
183
|
-
}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
|
|
184
|
-
declare const __VLS_export: __VLS_WithSlots<typeof __VLS_base, __VLS_Slots>;
|
|
185
|
-
declare const _default: typeof __VLS_export;
|
|
186
|
-
export default _default;
|
|
187
|
-
type __VLS_WithSlots<T, S> = T & {
|
|
188
|
-
new (): {
|
|
189
|
-
$slots: S;
|
|
190
|
-
};
|
|
191
|
-
};
|