ui-thing 0.0.20 → 0.0.22
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/CHANGELOG.md +24 -0
- package/dist/index.js +25 -3
- package/dist/index.js.map +1 -1
- package/package.json +4 -4
- package/src/comps.ts +4 -4
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,29 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## v0.0.22
|
|
4
|
+
|
|
5
|
+
[compare changes](https://github.com/BayBreezy/ui-thing-cli/compare/v0.0.21...v0.0.22)
|
|
6
|
+
|
|
7
|
+
### 🏡 Chore
|
|
8
|
+
|
|
9
|
+
- Add colvis styles to datatable.net ([82995b3](https://github.com/BayBreezy/ui-thing-cli/commit/82995b3))
|
|
10
|
+
|
|
11
|
+
### ❤️ Contributors
|
|
12
|
+
|
|
13
|
+
- Behon Baker <behon.baker@yahoo.com>
|
|
14
|
+
|
|
15
|
+
## v0.0.21
|
|
16
|
+
|
|
17
|
+
[compare changes](https://github.com/BayBreezy/ui-thing-cli/compare/v0.0.20...v0.0.21)
|
|
18
|
+
|
|
19
|
+
### 🏡 Chore
|
|
20
|
+
|
|
21
|
+
- Update deps & components ([ce7977d](https://github.com/BayBreezy/ui-thing-cli/commit/ce7977d))
|
|
22
|
+
|
|
23
|
+
### ❤️ Contributors
|
|
24
|
+
|
|
25
|
+
- Behon Baker <behon.baker@yahoo.com>
|
|
26
|
+
|
|
3
27
|
## v0.0.20
|
|
4
28
|
|
|
5
29
|
[compare changes](https://github.com/BayBreezy/ui-thing-cli/compare/v0.0.19...v0.0.20)
|
package/dist/index.js
CHANGED
|
@@ -1878,6 +1878,7 @@ export const buttonStyles = tv({\r
|
|
|
1878
1878
|
</template>\r
|
|
1879
1879
|
\r
|
|
1880
1880
|
<script lang="ts" setup>\r
|
|
1881
|
+
import { Primitive } from "radix-vue";\r
|
|
1881
1882
|
import type { PrimitiveProps } from "radix-vue";\r
|
|
1882
1883
|
\r
|
|
1883
1884
|
const props = withDefaults(\r
|
|
@@ -2823,7 +2824,7 @@ export default defineNuxtPlugin((nuxtApp) => {\r
|
|
|
2823
2824
|
\r
|
|
2824
2825
|
/* Export button styles */\r
|
|
2825
2826
|
.dataTables_wrapper .dt-buttons {\r
|
|
2826
|
-
@apply inline-flex items-center gap-2;\r
|
|
2827
|
+
@apply inline-flex flex-wrap items-center gap-2;\r
|
|
2827
2828
|
button {\r
|
|
2828
2829
|
@apply inline-flex h-9 items-center gap-2 whitespace-nowrap rounded-md border bg-background px-3 text-sm text-muted-foreground hover:bg-muted focus:outline-none focus-visible:ring-2 focus-visible:ring-ring focus-visible:ring-offset-2 focus-visible:ring-offset-background;\r
|
|
2829
2830
|
}\r
|
|
@@ -3304,6 +3305,26 @@ export default defineNuxtPlugin((nuxtApp) => {\r
|
|
|
3304
3305
|
div.dtsb-searchBuilder div.dtsb-group div.dtsb-criteria input.dtsb-value {\r
|
|
3305
3306
|
@apply rounded-md border border-input bg-background text-sm transition focus:border-primary focus:outline-none focus:ring-2 focus:ring-ring focus:ring-offset-2 focus:ring-offset-background focus-visible:border-input;\r
|
|
3306
3307
|
}\r
|
|
3308
|
+
\r
|
|
3309
|
+
/* Col vis styles */\r
|
|
3310
|
+
.dt-button-background {\r
|
|
3311
|
+
@apply fixed inset-0 z-50 flex flex-col items-center justify-center bg-background/50 backdrop-blur-sm;\r
|
|
3312
|
+
}\r
|
|
3313
|
+
.dt-button-down-arrow {\r
|
|
3314
|
+
@apply text-[10px];\r
|
|
3315
|
+
}\r
|
|
3316
|
+
.dt-button-collection {\r
|
|
3317
|
+
@apply relative;\r
|
|
3318
|
+
[role="menu"] {\r
|
|
3319
|
+
@apply absolute -left-40 top-7 flex w-[300px] flex-wrap gap-x-3 gap-y-2 rounded-md border bg-background p-2 shadow lg:w-[500px];\r
|
|
3320
|
+
button {\r
|
|
3321
|
+
@apply h-7 px-2 text-xs;\r
|
|
3322
|
+
}\r
|
|
3323
|
+
.dt-button.buttons-columnVisibility.dt-button-active {\r
|
|
3324
|
+
@apply bg-primary text-primary-foreground;\r
|
|
3325
|
+
}\r
|
|
3326
|
+
}\r
|
|
3327
|
+
}\r
|
|
3307
3328
|
</style>\r
|
|
3308
3329
|
`}],utils:[],composables:[]},{name:"Datepicker",value:"datepicker",deps:[],devDeps:["@samk-dev/nuxt-vcalendar"],nuxtModules:["@samk-dev/nuxt-vcalendar"],instructions:["You can customize the datepicker by adding options to your nuxt.config.js file"],files:[{fileName:"Datepicker.vue",dirPath:"components/UI",fileContent:`<template>
|
|
3309
3330
|
<ClientOnly>
|
|
@@ -5317,7 +5338,8 @@ export function useFormField() {\r
|
|
|
5317
5338
|
</template>\r
|
|
5318
5339
|
\r
|
|
5319
5340
|
<script lang="ts" setup>\r
|
|
5320
|
-
import {
|
|
5341
|
+
import { Primitive } from "radix-vue";\r
|
|
5342
|
+
import type { PrimitiveProps } from "radix-vue";\r
|
|
5321
5343
|
\r
|
|
5322
5344
|
const props = withDefaults(\r
|
|
5323
5345
|
defineProps<\r
|
|
@@ -8124,7 +8146,7 @@ export { toast, useToast };
|
|
|
8124
8146
|
const forwarded = useForwardPropsEmits(reactiveOmit(props, "class"), emits);\r
|
|
8125
8147
|
\r
|
|
8126
8148
|
const styles = tv({\r
|
|
8127
|
-
base: "group pointer-events-auto relative flex w-full items-center justify-between gap-4 overflow-hidden rounded-md border p-4 pr-9 shadow-sm transition-all data-[swipe=cancel]:translate-x-0 data-[swipe=end]:translate-x-[var(--radix-toast-swipe-end-x)] data-[swipe=move]:translate-x-[var(--radix-toast-swipe-move-x)] data-[swipe=move]:transition-none data-[state=open]:animate-in data-[state=closed]:animate-out data-[swipe=end]:animate-out data-[state=closed]:fade-out-80 data-[state=closed]:slide-out-to-right-full data-[state=open]:slide-in-from-top-full data-[state=open]:sm:slide-in-from-bottom-full",\r
|
|
8149
|
+
base: "group pointer-events-auto relative flex w-full items-center justify-between gap-4 overflow-hidden rounded-md border p-4 pr-9 shadow-sm transition-all data-[swipe=cancel]:translate-x-0 data-[swipe=end]:translate-x-[var(--radix-toast-swipe-end-x)] data-[swipe=move]:translate-x-[var(--radix-toast-swipe-move-x)] data-[swipe=move]:transition-none data-[state=open]:duration-300 data-[state=open]:animate-in data-[state=closed]:animate-out data-[swipe=end]:animate-out data-[state=closed]:fade-out-80 data-[state=open]:fade-in-0 data-[state=closed]:slide-out-to-right-full data-[state=open]:slide-in-from-top-full data-[state=open]:sm:slide-in-from-bottom-full",\r
|
|
8128
8150
|
variants: {\r
|
|
8129
8151
|
variant: {\r
|
|
8130
8152
|
default: "border bg-background text-foreground",\r
|