@witchcraft/ui 0.1.2 → 0.2.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/README.md +3 -6
- package/dist/module.json +2 -2
- package/dist/module.mjs +15 -12
- package/dist/runtime/assets/utils.css +1 -1
- package/dist/runtime/build/generateTheme.js +1 -1
- package/dist/runtime/components/LibButton/LibButton.vue +10 -17
- package/dist/runtime/components/LibCheckbox/LibCheckbox.vue +8 -13
- package/dist/runtime/components/LibColorPicker/LibColorPicker.vue +5 -4
- package/dist/runtime/components/LibColorPicker/utils/safeConvertToHsva.js +1 -1
- package/dist/runtime/components/LibColorPicker/utils/safeConvertToRgba.js +1 -1
- package/dist/runtime/components/LibDarkModeSwitcher/LibDarkModeSwitcher.vue +5 -15
- package/dist/runtime/components/LibDatePicker/LibRangeDatePicker.vue +5 -0
- package/dist/runtime/components/LibDatePicker/LibSingleDatePicker.vue +5 -0
- package/dist/runtime/components/LibDebug/LibDebug.vue +1 -0
- package/dist/runtime/components/LibFileInput/LibFileInput.vue +3 -0
- package/dist/runtime/components/LibInputDeprecated/LibInputDeprecated.vue +14 -18
- package/dist/runtime/components/LibLabel/LibLabel.vue +9 -14
- package/dist/runtime/components/LibLabel/LibLabel.vue.d.ts +0 -1
- package/dist/runtime/components/LibMultiValues/LibMultiValues.vue +9 -10
- package/dist/runtime/components/LibNotifications/LibNotification.vue +2 -0
- package/dist/runtime/components/LibNotifications/LibNotifications.vue +1 -1
- package/dist/runtime/components/LibPalette/LibPalette.vue +9 -12
- package/dist/runtime/components/LibPopup/LibPopup.vue +2 -2
- package/dist/runtime/components/LibProgressBar/LibProgressBar.vue +10 -15
- package/dist/runtime/components/LibRecorder/LibRecorder.vue +12 -18
- package/dist/runtime/components/LibRoot/LibRoot.vue +3 -2
- package/dist/runtime/components/LibSimpleInput/LibSimpleInput.vue +12 -19
- package/dist/runtime/components/LibSuggestions/LibSuggestions.vue +10 -15
- package/dist/runtime/components/LibTable/LibTable.vue +2 -2
- package/dist/runtime/components/Template/NAME.vue +2 -2
- package/dist/runtime/components/shared/props.d.ts +0 -29
- package/dist/runtime/components/shared/props.js +0 -12
- package/dist/runtime/composables/useAccesibilityOutline.js +1 -1
- package/dist/runtime/composables/useDivideAttrs.js +1 -1
- package/dist/runtime/composables/useSuggestions.js +4 -4
- package/dist/runtime/directives/vDetectFlex.js +4 -4
- package/dist/runtime/directives/vExtractRootEl.d.ts +1 -1
- package/dist/runtime/directives/vResizableCols.d.ts +1 -1
- package/dist/runtime/directives/vResizableCols.js +4 -4
- package/dist/runtime/helpers/NotificationHandler.js +6 -6
- package/dist/runtime/helpers/base64ToImg.js +2 -2
- package/dist/runtime/nuxt/plugins/vue-plugin.js +1 -1
- package/dist/runtime/tailwind/themeConvertionOpts.d.ts +1 -1
- package/dist/runtime/theme.d.ts +1 -1
- package/dist/runtime/theme.js +1 -1
- package/dist/runtime/utils/notifyIfError.js +1 -1
- package/dist/runtime/vue/registerComponents.js +1 -1
- package/package.json +68 -89
- package/src/module.ts +19 -12
- package/src/runtime/assets/utils.css +5 -5
- package/src/runtime/build/generateTheme.ts +1 -1
- package/src/runtime/components/LibButton/LibButton.stories.ts +1 -1
- package/src/runtime/components/LibButton/LibButton.vue +4 -8
- package/src/runtime/components/LibCheckbox/LibCheckbox.vue +3 -7
- package/src/runtime/components/LibColorPicker/LibColorPicker.vue +6 -4
- package/src/runtime/components/LibColorPicker/utils/safeConvertToHsva.ts +1 -1
- package/src/runtime/components/LibColorPicker/utils/safeConvertToRgba.ts +1 -1
- package/src/runtime/components/LibDarkModeSwitcher/LibDarkModeSwitcher.vue +8 -15
- package/src/runtime/components/LibDatePicker/LibRangeDatePicker.vue +6 -0
- package/src/runtime/components/LibDatePicker/LibSingleDatePicker.vue +6 -0
- package/src/runtime/components/LibDebug/LibDebug.stories.ts +1 -1
- package/src/runtime/components/LibDebug/LibDebug.vue +2 -0
- package/src/runtime/components/LibFileInput/LibFileInput.vue +4 -0
- package/src/runtime/components/LibInputDeprecated/LibInputDeprecated.vue +7 -5
- package/src/runtime/components/LibLabel/LibLabel.vue +2 -3
- package/src/runtime/components/LibMultiValues/LibMultiValues.vue +5 -3
- package/src/runtime/components/LibNotifications/LibNotification.vue +3 -0
- package/src/runtime/components/LibNotifications/LibNotifications.vue +1 -1
- package/src/runtime/components/LibPalette/LibPalette.vue +3 -3
- package/src/runtime/components/LibPopup/LibPopup.vue +2 -2
- package/src/runtime/components/LibProgressBar/LibProgressBar.vue +2 -2
- package/src/runtime/components/LibRecorder/LibRecorder.vue +3 -3
- package/src/runtime/components/LibRoot/LibRoot.vue +3 -2
- package/src/runtime/components/LibSimpleInput/LibSimpleInput.vue +2 -2
- package/src/runtime/components/LibSuggestions/LibSuggestions.vue +2 -2
- package/src/runtime/components/LibTable/LibTable.vue +1 -1
- package/src/runtime/components/Template/NAME.vue +2 -2
- package/src/runtime/components/shared/props.ts +8 -12
- package/src/runtime/composables/useAccesibilityOutline.ts +1 -1
- package/src/runtime/composables/useDivideAttrs.ts +1 -1
- package/src/runtime/composables/useSuggestions.ts +4 -4
- package/src/runtime/directives/vDetectFlex.ts +4 -4
- package/src/runtime/directives/vExtractRootEl.ts +1 -1
- package/src/runtime/directives/vResizableCols.ts +5 -5
- package/src/runtime/helpers/NotificationHandler.ts +6 -6
- package/src/runtime/nuxt/plugins/vue-plugin.ts +1 -1
- package/src/runtime/tailwind/themeConvertionOpts.ts +1 -1
- package/src/runtime/theme.ts +2 -2
- package/src/runtime/utils/notifyIfError.ts +1 -1
- package/src/runtime/vue/registerComponents.ts +1 -1
|
@@ -1,10 +1,10 @@
|
|
|
1
1
|
import type { AnyFunction, MakeRequired } from "@alanscodelog/utils"
|
|
2
|
-
import { castType } from "@alanscodelog/utils/castType
|
|
3
|
-
import { crop } from "@alanscodelog/utils/crop
|
|
4
|
-
import { indent } from "@alanscodelog/utils/indent
|
|
5
|
-
import { isBlank } from "@alanscodelog/utils/isBlank
|
|
6
|
-
import { pretty } from "@alanscodelog/utils/pretty
|
|
7
|
-
import { setReadOnly } from "@alanscodelog/utils/setReadOnly
|
|
2
|
+
import { castType } from "@alanscodelog/utils/castType"
|
|
3
|
+
import { crop } from "@alanscodelog/utils/crop"
|
|
4
|
+
import { indent } from "@alanscodelog/utils/indent"
|
|
5
|
+
import { isBlank } from "@alanscodelog/utils/isBlank"
|
|
6
|
+
import { pretty } from "@alanscodelog/utils/pretty"
|
|
7
|
+
import { setReadOnly } from "@alanscodelog/utils/setReadOnly"
|
|
8
8
|
|
|
9
9
|
|
|
10
10
|
export class NotificationHandler<
|
package/src/runtime/theme.ts
CHANGED