@unsource/ui 2.7.9 → 2.7.11
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 +1 -1
- package/dist/runtime/components/UnChips.d.vue.ts +3 -4
- package/dist/runtime/components/UnChips.vue +17 -30
- package/dist/runtime/components/UnChips.vue.d.ts +3 -4
- package/dist/runtime/components/UnToggle.d.vue.ts +12 -3
- package/dist/runtime/components/UnToggle.vue +38 -11
- package/dist/runtime/components/UnToggle.vue.d.ts +12 -3
- package/dist/runtime/composables/global.d.ts +18 -0
- package/dist/runtime/composables/global.js +18 -0
- package/dist/runtime/uno.config.js +10 -10
- package/package.json +1 -1
- package/dist/runtime/components/UnToggleButton.d.vue.ts +0 -11
- package/dist/runtime/components/UnToggleButton.vue +0 -22
- package/dist/runtime/components/UnToggleButton.vue.d.ts +0 -11
package/dist/module.json
CHANGED
|
@@ -1,3 +1,4 @@
|
|
|
1
|
+
export type CardCustomClass = Partial<Record<'prepend' | 'append' | 'label' | 'image' | 'avatar' | 'nameDesc', string>>;
|
|
1
2
|
type __VLS_Props = {
|
|
2
3
|
label?: string;
|
|
3
4
|
icon?: string;
|
|
@@ -5,10 +6,8 @@ type __VLS_Props = {
|
|
|
5
6
|
prepend?: string;
|
|
6
7
|
variant?: string;
|
|
7
8
|
mini?: boolean;
|
|
9
|
+
customClass?: CardCustomClass;
|
|
8
10
|
};
|
|
9
|
-
declare const __VLS_export: import("vue").DefineComponent<__VLS_Props, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, any, string, import("vue").PublicProps, any, {
|
|
10
|
-
mini: boolean;
|
|
11
|
-
variant: string;
|
|
12
|
-
}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
|
|
11
|
+
declare const __VLS_export: import("vue").DefineComponent<__VLS_Props, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, any, string, import("vue").PublicProps, any, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
|
|
13
12
|
declare const _default: typeof __VLS_export;
|
|
14
13
|
export default _default;
|
|
@@ -3,53 +3,40 @@
|
|
|
3
3
|
class="flex items-center px-2 py-1 gap-1 rounded-full cursor-pointer shrink-0"
|
|
4
4
|
:class="classVariant"
|
|
5
5
|
>
|
|
6
|
-
<
|
|
7
|
-
|
|
8
|
-
:
|
|
6
|
+
<UnNuxtIcon
|
|
7
|
+
v-if="prepend"
|
|
8
|
+
:name="prepend"
|
|
9
|
+
class="text-base"
|
|
10
|
+
:class="[prependClass, mini ? 'w-4 h-4' : 'w-8 h-8', customClass.prepend]"
|
|
11
|
+
@click="$emit('prependClick')"
|
|
12
|
+
/>
|
|
13
|
+
<p
|
|
14
|
+
:class="customClass.label"
|
|
15
|
+
class="text-xs"
|
|
9
16
|
>
|
|
10
|
-
<UnNuxtIcon
|
|
11
|
-
v-if="prepend"
|
|
12
|
-
:name="prepend"
|
|
13
|
-
class="text-base"
|
|
14
|
-
:class="prependClass"
|
|
15
|
-
@click="$emit('prependClick')"
|
|
16
|
-
/>
|
|
17
|
-
</div>
|
|
18
|
-
<p class="text-xs">
|
|
19
17
|
{{ label }}
|
|
20
18
|
</p>
|
|
21
19
|
<UnNuxtIcon
|
|
22
20
|
v-if="icon"
|
|
23
21
|
:name="icon"
|
|
24
22
|
class="text-base"
|
|
23
|
+
:class="customClass.append"
|
|
25
24
|
@click="$emit('iconClick')"
|
|
26
25
|
/>
|
|
27
26
|
</div>
|
|
28
27
|
</template>
|
|
29
28
|
|
|
30
29
|
<script setup>
|
|
31
|
-
import { computed } from "#imports";
|
|
32
|
-
const
|
|
30
|
+
import { computed, variants } from "#imports";
|
|
31
|
+
const { variant = "danger", mini = false, customClass = {} } = defineProps({
|
|
33
32
|
label: { type: String, required: false },
|
|
34
33
|
icon: { type: String, required: false },
|
|
35
34
|
prependClass: { type: String, required: false },
|
|
36
35
|
prepend: { type: String, required: false },
|
|
37
|
-
variant: { type: String, required: false
|
|
38
|
-
mini: { type: Boolean, required: false
|
|
36
|
+
variant: { type: String, required: false },
|
|
37
|
+
mini: { type: Boolean, required: false },
|
|
38
|
+
customClass: { type: Object, required: false }
|
|
39
39
|
});
|
|
40
40
|
defineEmits(["prependClick", "iconClick"]);
|
|
41
|
-
const
|
|
42
|
-
"success": "bg-success/10 text-success",
|
|
43
|
-
"success-fill": "bg-success text-white",
|
|
44
|
-
"danger": "bg-danger/10 text-danger",
|
|
45
|
-
"danger-fill": "bg-danger text-white",
|
|
46
|
-
"warning": "bg-warning/10 text-warning",
|
|
47
|
-
"warning-fill": "bg-warning text-white",
|
|
48
|
-
"primary": "bg-primary-500/10 text-primary-500",
|
|
49
|
-
"primary-fill": "bg-primary-500 text-white",
|
|
50
|
-
"primary-border": "bg-primary-500/10 text-primary-500 border-(1 solid primary-500)",
|
|
51
|
-
"secondary": "bg-gray-600/10 text-gray-600",
|
|
52
|
-
"secondary-fill": "bg-gray-600 text-white"
|
|
53
|
-
};
|
|
54
|
-
const classVariant = computed(() => variants?.[props.variant]);
|
|
41
|
+
const classVariant = computed(() => variants?.[variant]);
|
|
55
42
|
</script>
|
|
@@ -1,3 +1,4 @@
|
|
|
1
|
+
export type CardCustomClass = Partial<Record<'prepend' | 'append' | 'label' | 'image' | 'avatar' | 'nameDesc', string>>;
|
|
1
2
|
type __VLS_Props = {
|
|
2
3
|
label?: string;
|
|
3
4
|
icon?: string;
|
|
@@ -5,10 +6,8 @@ type __VLS_Props = {
|
|
|
5
6
|
prepend?: string;
|
|
6
7
|
variant?: string;
|
|
7
8
|
mini?: boolean;
|
|
9
|
+
customClass?: CardCustomClass;
|
|
8
10
|
};
|
|
9
|
-
declare const __VLS_export: import("vue").DefineComponent<__VLS_Props, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, any, string, import("vue").PublicProps, any, {
|
|
10
|
-
mini: boolean;
|
|
11
|
-
variant: string;
|
|
12
|
-
}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
|
|
11
|
+
declare const __VLS_export: import("vue").DefineComponent<__VLS_Props, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, any, string, import("vue").PublicProps, any, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
|
|
13
12
|
declare const _default: typeof __VLS_export;
|
|
14
13
|
export default _default;
|
|
@@ -1,11 +1,20 @@
|
|
|
1
|
+
export type CardCustomClass = Partial<Record<'label' | 'button' | 'buttonWrapper' | 'buttonLabel', string>>;
|
|
1
2
|
type __VLS_Props = {
|
|
2
|
-
label
|
|
3
|
-
disabled
|
|
3
|
+
label?: string;
|
|
4
|
+
disabled?: boolean;
|
|
5
|
+
customClass?: CardCustomClass;
|
|
6
|
+
trueLabel?: string;
|
|
7
|
+
falseLabel?: string;
|
|
8
|
+
size?: 'sm' | 'md' | 'lg' | 'xl';
|
|
4
9
|
};
|
|
5
10
|
type __VLS_ModelProps = {
|
|
6
11
|
modelValue?: any;
|
|
7
12
|
};
|
|
8
13
|
type __VLS_PublicProps = __VLS_Props & __VLS_ModelProps;
|
|
9
|
-
declare const __VLS_export: import("vue").DefineComponent<__VLS_PublicProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
14
|
+
declare const __VLS_export: import("vue").DefineComponent<__VLS_PublicProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
15
|
+
"update:modelValue": (value: any) => any;
|
|
16
|
+
}, string, import("vue").PublicProps, Readonly<__VLS_PublicProps> & Readonly<{
|
|
17
|
+
"onUpdate:modelValue"?: ((value: any) => any) | undefined;
|
|
18
|
+
}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
|
|
10
19
|
declare const _default: typeof __VLS_export;
|
|
11
20
|
export default _default;
|
|
@@ -1,26 +1,53 @@
|
|
|
1
1
|
<template>
|
|
2
2
|
<div
|
|
3
|
-
class="h-12 w-full flex flex-row gap-1 items-center cursor-pointer text-black-1 select-none"
|
|
4
|
-
@click="
|
|
3
|
+
class="group h-12 w-full flex flex-row gap-1 items-center cursor-pointer text-black-1 select-none"
|
|
4
|
+
@click="changeValue"
|
|
5
5
|
>
|
|
6
|
-
<div
|
|
6
|
+
<div
|
|
7
|
+
v-if="label"
|
|
8
|
+
:class="customClass?.label"
|
|
9
|
+
class="flex-grow truncate text-sm"
|
|
10
|
+
>
|
|
7
11
|
{{ label }}
|
|
8
12
|
</div>
|
|
9
|
-
<
|
|
10
|
-
|
|
11
|
-
:
|
|
12
|
-
|
|
13
|
+
<div
|
|
14
|
+
class="aspect-2/1 relative flex items-center rounded-full transition-bg duration-300 group/wrapper"
|
|
15
|
+
:class="[sizeClass[size], { 'opacity-50 disabled': disabled }, value ? 'true bg-primary' : 'false bg-border', customClass?.buttonWrapper]"
|
|
16
|
+
>
|
|
17
|
+
<div
|
|
18
|
+
class="group/button flex justify-center items-center absolute bg-white top-1/2 -translate-y-1/2 h-[calc(100%-4px)] aspect-square rounded-full shadow-toggle transform transition-all duration-200"
|
|
19
|
+
:class="[value ? 'end-[calc(100%-2px)] -translate-x-full' : 'end-0.5', customClass?.button]"
|
|
20
|
+
>
|
|
21
|
+
<small
|
|
22
|
+
v-if="value ? trueLabel : falseLabel"
|
|
23
|
+
:class="customClass?.buttonLabel"
|
|
24
|
+
class="px-1 text-inherit"
|
|
25
|
+
>
|
|
26
|
+
{{ value ? trueLabel : falseLabel }}
|
|
27
|
+
</small>
|
|
28
|
+
</div>
|
|
29
|
+
</div>
|
|
13
30
|
</div>
|
|
14
31
|
</template>
|
|
15
32
|
|
|
16
33
|
<script setup>
|
|
17
|
-
const
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
34
|
+
const { size = "xl", disabled } = defineProps({
|
|
35
|
+
label: { type: String, required: false },
|
|
36
|
+
disabled: { type: Boolean, required: false },
|
|
37
|
+
customClass: { type: Object, required: false },
|
|
38
|
+
trueLabel: { type: String, required: false },
|
|
39
|
+
falseLabel: { type: String, required: false },
|
|
40
|
+
size: { type: String, required: false }
|
|
21
41
|
});
|
|
22
42
|
const value = defineModel();
|
|
23
43
|
const changeValue = () => {
|
|
44
|
+
if (disabled) return;
|
|
24
45
|
value.value = !value.value;
|
|
25
46
|
};
|
|
47
|
+
const sizeClass = {
|
|
48
|
+
sm: "w-8 children:(text-xs)",
|
|
49
|
+
md: "w-10 children:(text-sm)",
|
|
50
|
+
lg: "w-14 children:(text-md)",
|
|
51
|
+
xl: "w-18 children:(text-lg)"
|
|
52
|
+
};
|
|
26
53
|
</script>
|
|
@@ -1,11 +1,20 @@
|
|
|
1
|
+
export type CardCustomClass = Partial<Record<'label' | 'button' | 'buttonWrapper' | 'buttonLabel', string>>;
|
|
1
2
|
type __VLS_Props = {
|
|
2
|
-
label
|
|
3
|
-
disabled
|
|
3
|
+
label?: string;
|
|
4
|
+
disabled?: boolean;
|
|
5
|
+
customClass?: CardCustomClass;
|
|
6
|
+
trueLabel?: string;
|
|
7
|
+
falseLabel?: string;
|
|
8
|
+
size?: 'sm' | 'md' | 'lg' | 'xl';
|
|
4
9
|
};
|
|
5
10
|
type __VLS_ModelProps = {
|
|
6
11
|
modelValue?: any;
|
|
7
12
|
};
|
|
8
13
|
type __VLS_PublicProps = __VLS_Props & __VLS_ModelProps;
|
|
9
|
-
declare const __VLS_export: import("vue").DefineComponent<__VLS_PublicProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
14
|
+
declare const __VLS_export: import("vue").DefineComponent<__VLS_PublicProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
15
|
+
"update:modelValue": (value: any) => any;
|
|
16
|
+
}, string, import("vue").PublicProps, Readonly<__VLS_PublicProps> & Readonly<{
|
|
17
|
+
"onUpdate:modelValue"?: ((value: any) => any) | undefined;
|
|
18
|
+
}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
|
|
10
19
|
declare const _default: typeof __VLS_export;
|
|
11
20
|
export default _default;
|
|
@@ -92,3 +92,21 @@ export declare const setOptions: (f: Form, ctx?: {}) => Promise<Form | {
|
|
|
92
92
|
inputId: string;
|
|
93
93
|
}>;
|
|
94
94
|
export declare const merge: (v: string | Record<string, unknown>, s: string | Record<string, unknown>) => string | Record<string, unknown> | undefined;
|
|
95
|
+
export declare const variants: {
|
|
96
|
+
success: string;
|
|
97
|
+
'success-fill': string;
|
|
98
|
+
'success-flat': string;
|
|
99
|
+
danger: string;
|
|
100
|
+
'danger-fill': string;
|
|
101
|
+
'danger-flat': string;
|
|
102
|
+
warning: string;
|
|
103
|
+
'warning-fill': string;
|
|
104
|
+
'warning-flat': string;
|
|
105
|
+
primary: string;
|
|
106
|
+
'primary-fill': string;
|
|
107
|
+
'primary-border': string;
|
|
108
|
+
'primary-flat': string;
|
|
109
|
+
secondary: string;
|
|
110
|
+
'secondary-fill': string;
|
|
111
|
+
'secondary-flat': string;
|
|
112
|
+
};
|
|
@@ -379,3 +379,21 @@ export const merge = (v, s) => {
|
|
|
379
379
|
return _mergeWith(s, v, merge);
|
|
380
380
|
}
|
|
381
381
|
};
|
|
382
|
+
export const variants = {
|
|
383
|
+
"success": "bg-success/10 text-success",
|
|
384
|
+
"success-fill": "bg-success text-white",
|
|
385
|
+
"success-flat": "bg-white text-success",
|
|
386
|
+
"danger": "bg-danger/10 text-danger",
|
|
387
|
+
"danger-fill": "bg-danger text-white",
|
|
388
|
+
"danger-flat": "bg-white bg-danger",
|
|
389
|
+
"warning": "bg-warning/10 text-warning",
|
|
390
|
+
"warning-fill": "bg-warning text-white",
|
|
391
|
+
"warning-flat": "bg-white text-warning",
|
|
392
|
+
"primary": "bg-primary-500/10 text-primary-500",
|
|
393
|
+
"primary-fill": "bg-primary-500 text-white",
|
|
394
|
+
"primary-border": "bg-primary-500/10 text-primary-500 border-(1 solid primary-500)",
|
|
395
|
+
"primary-flat": "bg-white text-primary-500",
|
|
396
|
+
"secondary": "bg-gray-600/10 text-secondary-500",
|
|
397
|
+
"secondary-fill": "bg-secondary-500 text-white",
|
|
398
|
+
"secondary-flat": "bg-white text-secondary-500"
|
|
399
|
+
};
|
|
@@ -9,18 +9,18 @@ import { presetScrollbar } from "unocss-preset-scrollbar";
|
|
|
9
9
|
export default defineConfig({
|
|
10
10
|
theme: {
|
|
11
11
|
colors: {
|
|
12
|
-
border: "#cccdd5",
|
|
13
|
-
danger: "#e60c21",
|
|
14
|
-
warning: "#ffc600",
|
|
15
|
-
success: "#35d123",
|
|
16
|
-
secondary:
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
primary: "#1270da",
|
|
20
|
-
text: {
|
|
12
|
+
"border": "#cccdd5",
|
|
13
|
+
"danger": "#e60c21",
|
|
14
|
+
"warning": "#ffc600",
|
|
15
|
+
"success": "#35d123",
|
|
16
|
+
"secondary": "#5e5e5e",
|
|
17
|
+
"secondary-500": "#fdf037",
|
|
18
|
+
"primary": "#1270da",
|
|
19
|
+
"primary-500": "#1270da",
|
|
20
|
+
"text": {
|
|
21
21
|
head: "#4D4444"
|
|
22
22
|
},
|
|
23
|
-
gray: {
|
|
23
|
+
"gray": {
|
|
24
24
|
200: "#949494",
|
|
25
25
|
500: "#696969",
|
|
26
26
|
600: "#1e1e1e"
|
package/package.json
CHANGED
|
@@ -1,11 +0,0 @@
|
|
|
1
|
-
declare const _default: typeof __VLS_export;
|
|
2
|
-
export default _default;
|
|
3
|
-
declare const __VLS_export: import("vue").DefineComponent<{}, {
|
|
4
|
-
$props: Partial<typeof __VLS_props>;
|
|
5
|
-
value: number | boolean;
|
|
6
|
-
disabled: boolean;
|
|
7
|
-
}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
|
|
8
|
-
declare const __VLS_props: {
|
|
9
|
-
readonly value: number | boolean;
|
|
10
|
-
readonly disabled: boolean;
|
|
11
|
-
};
|
|
@@ -1,22 +0,0 @@
|
|
|
1
|
-
<template>
|
|
2
|
-
<div
|
|
3
|
-
class="w-9 h-5 relative flex items-center rounded-full transition-bg duration-200"
|
|
4
|
-
:class="[value && !disabled ? 'bg-primary-500' : 'bg-border']">
|
|
5
|
-
<div
|
|
6
|
-
class="absolute bg-white h-4 w-4 rounded-1/2 shadow-toggle transform transition-all duration-200"
|
|
7
|
-
:class="[ value ? 'left-full -translate-x-18px ' : 'left-0 translate-x-0.5',]"/>
|
|
8
|
-
</div>
|
|
9
|
-
</template>
|
|
10
|
-
|
|
11
|
-
<script setup>
|
|
12
|
-
defineProps({
|
|
13
|
-
value: {
|
|
14
|
-
type: [Boolean, Number],
|
|
15
|
-
default: false
|
|
16
|
-
},
|
|
17
|
-
disabled: {
|
|
18
|
-
type: Boolean,
|
|
19
|
-
default: false
|
|
20
|
-
}
|
|
21
|
-
});
|
|
22
|
-
</script>
|
|
@@ -1,11 +0,0 @@
|
|
|
1
|
-
declare const _default: typeof __VLS_export;
|
|
2
|
-
export default _default;
|
|
3
|
-
declare const __VLS_export: import("vue").DefineComponent<{}, {
|
|
4
|
-
$props: Partial<typeof __VLS_props>;
|
|
5
|
-
value: number | boolean;
|
|
6
|
-
disabled: boolean;
|
|
7
|
-
}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
|
|
8
|
-
declare const __VLS_props: {
|
|
9
|
-
readonly value: number | boolean;
|
|
10
|
-
readonly disabled: boolean;
|
|
11
|
-
};
|