@witchcraft/ui 0.4.0-beta.5 → 0.4.0-beta.6

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/module.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "witchcraftUi",
3
3
  "configKey": "witchcraftUi",
4
- "version": "0.4.0-beta.5",
4
+ "version": "0.4.0-beta.6",
5
5
  "builder": {
6
6
  "@nuxt/module-builder": "1.0.2",
7
7
  "unbuild": "3.6.1"
@@ -84,6 +84,7 @@
84
84
  <script setup>
85
85
  import { CheckboxIndicator, CheckboxRoot } from "reka-ui";
86
86
  import { useAttrs } from "vue";
87
+ import ILucideCheck from "~icons/lucide/check";
87
88
  import { useFallbackId } from "../../composables/useFallbackId.js";
88
89
  import { usePreHydrationValue } from "../../composables/usePreHydrationValue.js";
89
90
  import { twMerge } from "../../utils/twMerge.js";
@@ -189,6 +189,7 @@ import { computed, onMounted, reactive, ref, useAttrs, watch } from "vue";
189
189
  import { safeConvertToHsva } from "./utils/safeConvertToHsva.js";
190
190
  import { safeConvertToRgba } from "./utils/safeConvertToRgba.js";
191
191
  import { toLowPrecisionRgbaString } from "./utils/toLowPrecisionRgbaString.js";
192
+ import ILucideCopy from "~icons/lucide/copy";
192
193
  import { useFallbackId } from "../../composables/useFallbackId.js";
193
194
  import { useInjectedI18n } from "../../composables/useInjectedI18n.js";
194
195
  import { copy } from "../../helpers/copy.js";
@@ -309,6 +309,8 @@ import {
309
309
  useFilter
310
310
  } from "reka-ui";
311
311
  import { computed, nextTick, ref, useAttrs, useSlots, useTemplateRef, watch } from "vue";
312
+ import ILucideChevronDown from "~icons/lucide/chevron-down";
313
+ import ILucideLoaderCircle from "~icons/lucide/loader-circle";
312
314
  import { useDelayedLoadingIndicator } from "../../composables/useDelayedLoadingIndicator.js";
313
315
  import { useDisplayForReka } from "../../composables/useDisplayForReka.js";
314
316
  import { useFallbackId } from "../../composables/useFallbackId.js";
@@ -3,6 +3,11 @@ import { getLocalTimeZone } from "@internationalized/date";
3
3
  import { DateRangePickerArrow, DateRangePickerCalendar, DateRangePickerCell, DateRangePickerCellTrigger, DateRangePickerContent, DateRangePickerField, DateRangePickerGrid, DateRangePickerGridBody, DateRangePickerGridHead, DateRangePickerGridRow, DateRangePickerHeadCell, DateRangePickerHeader, DateRangePickerHeading, DateRangePickerInput, DateRangePickerNext, DateRangePickerPrev, DateRangePickerRoot, DateRangePickerTrigger } from "reka-ui";
4
4
  import { onBeforeUnmount, ref, toRaw, useAttrs, watch } from "vue";
5
5
  import { convertDateWithFallback, getNow, toEmittableDate } from "./helpers.js";
6
+ import ILucideCalendarRange from "~icons/lucide/calendar-range";
7
+ import ILucideChevronLeft from "~icons/lucide/chevron-left";
8
+ import ILucideChevronRight from "~icons/lucide/chevron-right";
9
+ import ILucideChevronsLeft from "~icons/lucide/chevrons-left";
10
+ import ILucideChevronsRight from "~icons/lucide/chevrons-right";
6
11
  import { useInjectedLocale } from "../../composables/useInjectedLocale.js";
7
12
  import { twMerge } from "../../utils/twMerge.js";
8
13
  import WIcon from "../WIcon/WIcon.vue";
@@ -3,6 +3,11 @@ import { getLocalTimeZone } from "@internationalized/date";
3
3
  import { DatePickerArrow, DatePickerCalendar, DatePickerCell, DatePickerCellTrigger, DatePickerContent, DatePickerField, DatePickerGrid, DatePickerGridBody, DatePickerGridHead, DatePickerGridRow, DatePickerHeadCell, DatePickerHeader, DatePickerHeading, DatePickerInput, DatePickerNext, DatePickerPrev, DatePickerRoot, DatePickerTrigger } from "reka-ui";
4
4
  import { onBeforeUnmount, ref, toRaw, useAttrs, watch } from "vue";
5
5
  import { convertDateWithFallback, getNow, toEmittableDate } from "./helpers.js";
6
+ import ILucideCalendarDays from "~icons/lucide/calendar-days";
7
+ import ILucideChevronLeft from "~icons/lucide/chevron-left";
8
+ import ILucideChevronRight from "~icons/lucide/chevron-right";
9
+ import ILucideChevronsLeft from "~icons/lucide/chevrons-left";
10
+ import ILucideChevronsRight from "~icons/lucide/chevrons-right";
6
11
  import { useInjectedLocale } from "../../composables/useInjectedLocale.js";
7
12
  import { twMerge } from "../../utils/twMerge.js";
8
13
  import WIcon from "../WIcon/WIcon.vue";
@@ -34,6 +34,7 @@
34
34
 
35
35
  <script setup>
36
36
  import { useSlots } from "vue";
37
+ import ILucideCopy from "~icons/lucide/copy";
37
38
  import WButton from "../WButton/WButton.vue";
38
39
  import WIcon from "../WIcon/WIcon.vue";
39
40
  const $slots = useSlots();
@@ -226,6 +226,9 @@
226
226
 
227
227
  <script setup>
228
228
  import { computed, onBeforeUnmount, ref, shallowReactive, watch } from "vue";
229
+ import ILucideFile from "~icons/lucide/file";
230
+ import ILucideUpload from "~icons/lucide/upload";
231
+ import ILucideX from "~icons/lucide/x";
229
232
  import { useFallbackId } from "../../composables/useFallbackId.js";
230
233
  import { useInjectedI18n } from "../../composables/useInjectedI18n.js";
231
234
  import { twMerge } from "../../utils/twMerge.js";
@@ -86,6 +86,7 @@
86
86
  <script setup>
87
87
  import { removeIfIn } from "@alanscodelog/utils/removeIfIn";
88
88
  import { computed, nextTick, ref, useAttrs } from "vue";
89
+ import ILucideX from "~icons/lucide/x";
89
90
  import { copy } from "../../helpers/copy.js";
90
91
  import { twMerge } from "../../utils/twMerge.js";
91
92
  import WButton from "../WButton/WButton.vue";
@@ -177,6 +177,8 @@
177
177
 
178
178
  <script setup>
179
179
  import { computed, onMounted, ref, useAttrs } from "vue";
180
+ import ILucideCopy from "~icons/lucide/copy";
181
+ import ILucideX from "~icons/lucide/x";
180
182
  import { useSlotVars } from "../../composables/useSlotVars.js";
181
183
  import { copy } from "../../helpers/copy.js";
182
184
  import { NotificationHandler } from "../../helpers/NotificationHandler.js";
@@ -92,6 +92,7 @@
92
92
 
93
93
  <script setup>
94
94
  import { TooltipArrow, TooltipContent, TooltipPortal, TooltipProvider, TooltipRoot, TooltipTrigger } from "reka-ui";
95
+ import ILucideInfo from "~icons/lucide/info";
95
96
  import { usePopupConstrainToStyle } from "../../composables/usePopupConstrainToStyle.js";
96
97
  import { twMerge } from "../../utils/twMerge.js";
97
98
  import WIcon from "../WIcon/WIcon.vue";
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@witchcraft/ui",
3
- "version": "0.4.0-beta.5",
3
+ "version": "0.4.0-beta.6",
4
4
  "description": "Vue component library.",
5
5
  "type": "module",
6
6
  "main": "./dist/runtime/main.lib.js",
@@ -84,6 +84,8 @@ import { CheckboxIndicator, CheckboxRoot } from "reka-ui"
84
84
  import type { HTMLAttributes, InputHTMLAttributes } from "vue"
85
85
  import { useAttrs } from "vue"
86
86
 
87
+ import ILucideCheck from "~icons/lucide/check"
88
+
87
89
  import { useFallbackId } from "../../composables/useFallbackId.js"
88
90
  import { usePreHydrationValue } from "../../composables/usePreHydrationValue.js"
89
91
  import type { BaseInteractiveProps, TailwindClassProp } from "../../types/index.js"
@@ -191,6 +191,8 @@ import { safeConvertToHsva } from "./utils/safeConvertToHsva.js"
191
191
  import { safeConvertToRgba } from "./utils/safeConvertToRgba.js"
192
192
  import { toLowPrecisionRgbaString } from "./utils/toLowPrecisionRgbaString.js"
193
193
 
194
+ import ILucideCopy from "~icons/lucide/copy"
195
+
194
196
  import { useFallbackId } from "../../composables/useFallbackId.js"
195
197
  import { useInjectedI18n } from "../../composables/useInjectedI18n.js"
196
198
  import { copy } from "../../helpers/copy.js"
@@ -307,6 +307,9 @@ import {
307
307
  import type { EmitsToProps, HTMLAttributes, InputHTMLAttributes } from "vue"
308
308
  import { computed, nextTick, ref, useAttrs, useSlots, useTemplateRef, watch } from "vue"
309
309
 
310
+ import ILucideChevronDown from "~icons/lucide/chevron-down"
311
+ import ILucideLoaderCircle from "~icons/lucide/loader-circle"
312
+
310
313
  import { useDelayedLoadingIndicator } from "../../composables/useDelayedLoadingIndicator.js"
311
314
  import { type SuggestionsDisplayProps, useDisplayForReka } from "../../composables/useDisplayForReka.js"
312
315
  import { useFallbackId } from "../../composables/useFallbackId.js"
@@ -7,6 +7,12 @@ import { onBeforeUnmount, ref, toRaw, useAttrs, watch } from "vue"
7
7
 
8
8
  import { convertDateWithFallback, getNow, toEmittableDate } from "./helpers.js"
9
9
 
10
+ import ILucideCalendarRange from "~icons/lucide/calendar-range"
11
+ import ILucideChevronLeft from "~icons/lucide/chevron-left"
12
+ import ILucideChevronRight from "~icons/lucide/chevron-right"
13
+ import ILucideChevronsLeft from "~icons/lucide/chevrons-left"
14
+ import ILucideChevronsRight from "~icons/lucide/chevrons-right"
15
+
10
16
  import { useInjectedLocale } from "../../composables/useInjectedLocale.js"
11
17
  import type { RangeDate } from "../../types/index.js"
12
18
  import { twMerge } from "../../utils/twMerge.js"
@@ -5,6 +5,12 @@ import { onBeforeUnmount, ref, toRaw, useAttrs, watch } from "vue"
5
5
 
6
6
  import { convertDateWithFallback, getNow, toEmittableDate } from "./helpers.js"
7
7
 
8
+ import ILucideCalendarDays from "~icons/lucide/calendar-days"
9
+ import ILucideChevronLeft from "~icons/lucide/chevron-left"
10
+ import ILucideChevronRight from "~icons/lucide/chevron-right"
11
+ import ILucideChevronsLeft from "~icons/lucide/chevrons-left"
12
+ import ILucideChevronsRight from "~icons/lucide/chevrons-right"
13
+
8
14
  import { useInjectedLocale } from "../../composables/useInjectedLocale.js"
9
15
  import type { SingleDate } from "../../types/index.js"
10
16
  import { twMerge } from "../../utils/twMerge.js"
@@ -35,6 +35,8 @@
35
35
  <script setup lang="ts">
36
36
  import { useSlots } from "vue"
37
37
 
38
+ import ILucideCopy from "~icons/lucide/copy"
39
+
38
40
  import WButton from "../WButton/WButton.vue"
39
41
  import WIcon from "../WIcon/WIcon.vue"
40
42
 
@@ -231,6 +231,10 @@
231
231
  import type { HTMLAttributes, InputHTMLAttributes } from "vue"
232
232
  import { computed, onBeforeUnmount, ref, shallowReactive, watch } from "vue"
233
233
 
234
+ import ILucideFile from "~icons/lucide/file"
235
+ import ILucideUpload from "~icons/lucide/upload"
236
+ import ILucideX from "~icons/lucide/x"
237
+
234
238
  import { useFallbackId } from "../../composables/useFallbackId.js"
235
239
  import { useInjectedI18n } from "../../composables/useInjectedI18n.js"
236
240
  import type { FileInputError, TailwindClassProp } from "../../types/index.js"
@@ -83,6 +83,8 @@
83
83
  import { removeIfIn } from "@alanscodelog/utils/removeIfIn"
84
84
  import { computed, type HTMLAttributes, nextTick, ref, useAttrs } from "vue"
85
85
 
86
+ import ILucideX from "~icons/lucide/x"
87
+
86
88
  import { copy } from "../../helpers/copy.js"
87
89
  import type { BaseInteractiveProps, TailwindClassProp } from "../../types/index.js"
88
90
  import { twMerge } from "../../utils/twMerge.js"
@@ -176,6 +176,9 @@
176
176
  <script setup lang="ts">
177
177
  import { computed, type HTMLAttributes, onMounted, ref, useAttrs } from "vue"
178
178
 
179
+ import ILucideCopy from "~icons/lucide/copy"
180
+ import ILucideX from "~icons/lucide/x"
181
+
179
182
  import { useSlotVars } from "../../composables/useSlotVars.js"
180
183
  import { copy } from "../../helpers/copy.js"
181
184
  import { type NotificationEntry, NotificationHandler } from "../../helpers/NotificationHandler.js"
@@ -469,4 +469,3 @@ defineExpose({
469
469
  })
470
470
  </script>
471
471
 
472
-
@@ -92,6 +92,8 @@
92
92
  <script setup lang="ts">
93
93
  import { TooltipArrow, TooltipContent, TooltipPortal, TooltipProvider, TooltipRoot, TooltipTrigger } from "reka-ui"
94
94
 
95
+ import ILucideInfo from "~icons/lucide/info"
96
+
95
97
  import { usePopupConstrainToStyle } from "../../composables/usePopupConstrainToStyle.js"
96
98
  import type { PopupConstrainToProps } from "../../types/index.js"
97
99
  import { twMerge } from "../../utils/twMerge.js"