unika-components 1.0.431 → 1.0.433
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/src/components/UniFormInput/UniFormInput.vue.d.ts +2 -0
- package/dist/src/components/UniFormMultiple/UniFormMultiple.vue.d.ts +15 -7
- package/dist/src/components/UniFormSelect/UniFormSelect.vue.d.ts +9 -7
- package/dist/src/components/UniFormSingle/UniFormSingle.vue.d.ts +15 -7
- package/dist/src/components/UniFormSubmit/UniFormSubmit.vue.d.ts +1 -0
- package/dist/src/constants/formMultipleProps.d.ts +61 -0
- package/dist/src/constants/formSelectProps.d.ts +46 -0
- package/dist/src/constants/formSingleProps.d.ts +46 -0
- package/dist/src/defaultProps.d.ts +1 -588
- package/dist/src/index.d.ts +1 -5
- package/dist/unika-components.css +3707 -3800
- package/dist/unika-components.esm.js +529 -37194
- package/dist/unika-components.umd.js +428 -37097
- package/package.json +1 -1
|
@@ -1,4 +1,5 @@
|
|
|
1
1
|
import { ElementData, GlobalData } from '../../defaultProps';
|
|
2
|
+
import '../../assets/css/uniforminput.css';
|
|
2
3
|
declare const _default: import("vue").DefineComponent<{
|
|
3
4
|
global: {
|
|
4
5
|
type: () => GlobalData;
|
|
@@ -33,6 +34,7 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
33
34
|
borderStyle: string;
|
|
34
35
|
borderColor: string;
|
|
35
36
|
fontFamily: string;
|
|
37
|
+
animation: string;
|
|
36
38
|
}>;
|
|
37
39
|
inputStyles: import("vue").ComputedRef<{
|
|
38
40
|
fontSize: string;
|
|
@@ -1,5 +1,6 @@
|
|
|
1
1
|
import { ElementData, GlobalData } from '../../defaultProps';
|
|
2
2
|
import { PropType } from 'vue';
|
|
3
|
+
import '../../assets/css/uniformmultiple.css';
|
|
3
4
|
declare const _default: import("vue").DefineComponent<{
|
|
4
5
|
global: {
|
|
5
6
|
type: PropType<GlobalData>;
|
|
@@ -9,9 +10,9 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
9
10
|
type: PropType<ElementData>;
|
|
10
11
|
required: true;
|
|
11
12
|
};
|
|
12
|
-
|
|
13
|
-
type:
|
|
14
|
-
default:
|
|
13
|
+
isPlatform: {
|
|
14
|
+
type: BooleanConstructor;
|
|
15
|
+
default: boolean;
|
|
15
16
|
};
|
|
16
17
|
}, {
|
|
17
18
|
selectedValues: import("vue").Ref<string[]>;
|
|
@@ -34,6 +35,7 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
34
35
|
borderColor: string | undefined;
|
|
35
36
|
borderStyle: string | undefined;
|
|
36
37
|
borderWidth: string;
|
|
38
|
+
animation: string;
|
|
37
39
|
}>;
|
|
38
40
|
circleStyles: import("vue").ComputedRef<{
|
|
39
41
|
borderColor: string;
|
|
@@ -42,6 +44,12 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
42
44
|
}>;
|
|
43
45
|
isSelected: (value: string) => boolean;
|
|
44
46
|
toggleSelect: (value: string) => void;
|
|
47
|
+
itemStyles: import("vue").ComputedRef<{
|
|
48
|
+
fontSize: string;
|
|
49
|
+
fontFamily: string | undefined;
|
|
50
|
+
color: string | undefined;
|
|
51
|
+
opacity: number;
|
|
52
|
+
}>;
|
|
45
53
|
}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
|
|
46
54
|
global: {
|
|
47
55
|
type: PropType<GlobalData>;
|
|
@@ -51,11 +59,11 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
51
59
|
type: PropType<ElementData>;
|
|
52
60
|
required: true;
|
|
53
61
|
};
|
|
54
|
-
|
|
55
|
-
type:
|
|
56
|
-
default:
|
|
62
|
+
isPlatform: {
|
|
63
|
+
type: BooleanConstructor;
|
|
64
|
+
default: boolean;
|
|
57
65
|
};
|
|
58
66
|
}>>, {
|
|
59
|
-
|
|
67
|
+
isPlatform: boolean;
|
|
60
68
|
}, {}>;
|
|
61
69
|
export default _default;
|
|
@@ -1,5 +1,6 @@
|
|
|
1
1
|
import { PropType } from 'vue';
|
|
2
2
|
import { ElementData, GlobalData } from '../../defaultProps';
|
|
3
|
+
import '../../assets/css/uniformselect.css';
|
|
3
4
|
declare const _default: import("vue").DefineComponent<{
|
|
4
5
|
global: {
|
|
5
6
|
type: PropType<GlobalData>;
|
|
@@ -9,9 +10,9 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
9
10
|
type: PropType<ElementData>;
|
|
10
11
|
required: true;
|
|
11
12
|
};
|
|
12
|
-
|
|
13
|
-
type:
|
|
14
|
-
default:
|
|
13
|
+
isPlatform: {
|
|
14
|
+
type: BooleanConstructor;
|
|
15
|
+
default: boolean;
|
|
15
16
|
};
|
|
16
17
|
}, {
|
|
17
18
|
containerStyle: import("vue").ComputedRef<{
|
|
@@ -32,6 +33,7 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
32
33
|
borderColor: string | undefined;
|
|
33
34
|
borderStyle: string | undefined;
|
|
34
35
|
borderWidth: string;
|
|
36
|
+
animation: string;
|
|
35
37
|
position: string;
|
|
36
38
|
}>;
|
|
37
39
|
dropdownStyle: import("vue").ComputedRef<{
|
|
@@ -68,11 +70,11 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
68
70
|
type: PropType<ElementData>;
|
|
69
71
|
required: true;
|
|
70
72
|
};
|
|
71
|
-
|
|
72
|
-
type:
|
|
73
|
-
default:
|
|
73
|
+
isPlatform: {
|
|
74
|
+
type: BooleanConstructor;
|
|
75
|
+
default: boolean;
|
|
74
76
|
};
|
|
75
77
|
}>>, {
|
|
76
|
-
|
|
78
|
+
isPlatform: boolean;
|
|
77
79
|
}, {}>;
|
|
78
80
|
export default _default;
|
|
@@ -1,5 +1,6 @@
|
|
|
1
1
|
import { ElementData, GlobalData } from '../../defaultProps';
|
|
2
2
|
import { PropType } from 'vue';
|
|
3
|
+
import '../../assets/css/uniformsingle.css';
|
|
3
4
|
declare const _default: import("vue").DefineComponent<{
|
|
4
5
|
global: {
|
|
5
6
|
type: PropType<GlobalData>;
|
|
@@ -9,9 +10,9 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
9
10
|
type: PropType<ElementData>;
|
|
10
11
|
required: true;
|
|
11
12
|
};
|
|
12
|
-
|
|
13
|
-
type:
|
|
14
|
-
default:
|
|
13
|
+
isPlatform: {
|
|
14
|
+
type: BooleanConstructor;
|
|
15
|
+
default: boolean;
|
|
15
16
|
};
|
|
16
17
|
}, {
|
|
17
18
|
selectedValue: import("vue").Ref<string>;
|
|
@@ -34,12 +35,19 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
34
35
|
borderColor: string | undefined;
|
|
35
36
|
borderStyle: string | undefined;
|
|
36
37
|
borderWidth: string;
|
|
38
|
+
animation: string;
|
|
37
39
|
}>;
|
|
38
40
|
circleStyles: import("vue").ComputedRef<{
|
|
39
41
|
borderColor: string;
|
|
40
42
|
borderWidth: string;
|
|
41
43
|
borderStyle: string;
|
|
42
44
|
}>;
|
|
45
|
+
itemStyles: import("vue").ComputedRef<{
|
|
46
|
+
fontSize: string;
|
|
47
|
+
fontFamily: string | undefined;
|
|
48
|
+
color: string | undefined;
|
|
49
|
+
opacity: number;
|
|
50
|
+
}>;
|
|
43
51
|
selectItem: (value: string) => void;
|
|
44
52
|
}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
|
|
45
53
|
global: {
|
|
@@ -50,11 +58,11 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
50
58
|
type: PropType<ElementData>;
|
|
51
59
|
required: true;
|
|
52
60
|
};
|
|
53
|
-
|
|
54
|
-
type:
|
|
55
|
-
default:
|
|
61
|
+
isPlatform: {
|
|
62
|
+
type: BooleanConstructor;
|
|
63
|
+
default: boolean;
|
|
56
64
|
};
|
|
57
65
|
}>>, {
|
|
58
|
-
|
|
66
|
+
isPlatform: boolean;
|
|
59
67
|
}, {}>;
|
|
60
68
|
export default _default;
|
|
@@ -0,0 +1,61 @@
|
|
|
1
|
+
export declare const formMultipleDefaultProps: {
|
|
2
|
+
id: string;
|
|
3
|
+
pid: string;
|
|
4
|
+
title: string;
|
|
5
|
+
type: string;
|
|
6
|
+
layerName: string;
|
|
7
|
+
sign: boolean;
|
|
8
|
+
signSort: number;
|
|
9
|
+
css: {
|
|
10
|
+
fontFamily: string;
|
|
11
|
+
fontSize: number;
|
|
12
|
+
color: string;
|
|
13
|
+
width: number;
|
|
14
|
+
height: string;
|
|
15
|
+
left: number;
|
|
16
|
+
top: number;
|
|
17
|
+
backgroundColor: string;
|
|
18
|
+
borderRadius: number;
|
|
19
|
+
borderColor: string;
|
|
20
|
+
borderWidth: number;
|
|
21
|
+
borderStyle: string;
|
|
22
|
+
transform: number;
|
|
23
|
+
opacity: number;
|
|
24
|
+
animation: string;
|
|
25
|
+
};
|
|
26
|
+
properties: {
|
|
27
|
+
visible: boolean;
|
|
28
|
+
isLock: boolean;
|
|
29
|
+
required: boolean;
|
|
30
|
+
musicName: string;
|
|
31
|
+
musicLink: string;
|
|
32
|
+
musicHash: string;
|
|
33
|
+
shadowSize: number;
|
|
34
|
+
shadowColor: string;
|
|
35
|
+
shadowX: number;
|
|
36
|
+
shadowY: number;
|
|
37
|
+
shadowBlur: number;
|
|
38
|
+
shadowPoint: number;
|
|
39
|
+
aniOrigin: string;
|
|
40
|
+
animations: {
|
|
41
|
+
animate: string;
|
|
42
|
+
count: number;
|
|
43
|
+
timing: string;
|
|
44
|
+
loop: boolean;
|
|
45
|
+
delay: number;
|
|
46
|
+
duration: number;
|
|
47
|
+
name: string;
|
|
48
|
+
order: string;
|
|
49
|
+
type: string;
|
|
50
|
+
aniType: string;
|
|
51
|
+
allDelay: string;
|
|
52
|
+
id: number;
|
|
53
|
+
}[];
|
|
54
|
+
textAni: never[];
|
|
55
|
+
};
|
|
56
|
+
items: {
|
|
57
|
+
label: string;
|
|
58
|
+
value: string;
|
|
59
|
+
}[];
|
|
60
|
+
};
|
|
61
|
+
export default formMultipleDefaultProps;
|
|
@@ -0,0 +1,46 @@
|
|
|
1
|
+
export declare const formSelectDefaultProps: {
|
|
2
|
+
id: string;
|
|
3
|
+
pid: string;
|
|
4
|
+
title: string;
|
|
5
|
+
type: string;
|
|
6
|
+
layerName: string;
|
|
7
|
+
sign: boolean;
|
|
8
|
+
signSort: number;
|
|
9
|
+
css: {
|
|
10
|
+
fontFamily: string;
|
|
11
|
+
fontSize: number;
|
|
12
|
+
color: string;
|
|
13
|
+
width: number;
|
|
14
|
+
height: number;
|
|
15
|
+
left: number;
|
|
16
|
+
top: number;
|
|
17
|
+
backgroundColor: string;
|
|
18
|
+
borderRadius: number;
|
|
19
|
+
borderColor: string;
|
|
20
|
+
borderWidth: number;
|
|
21
|
+
borderStyle: string;
|
|
22
|
+
transform: number;
|
|
23
|
+
opacity: number;
|
|
24
|
+
};
|
|
25
|
+
properties: {
|
|
26
|
+
visible: boolean;
|
|
27
|
+
isLock: boolean;
|
|
28
|
+
required: boolean;
|
|
29
|
+
musicName: string;
|
|
30
|
+
musicLink: string;
|
|
31
|
+
musicHash: string;
|
|
32
|
+
shadowSize: number;
|
|
33
|
+
shadowColor: string;
|
|
34
|
+
shadowX: number;
|
|
35
|
+
shadowY: number;
|
|
36
|
+
shadowBlur: number;
|
|
37
|
+
shadowPoint: number;
|
|
38
|
+
aniOrigin: string;
|
|
39
|
+
animations: never[];
|
|
40
|
+
};
|
|
41
|
+
items: {
|
|
42
|
+
label: string;
|
|
43
|
+
value: string;
|
|
44
|
+
}[];
|
|
45
|
+
};
|
|
46
|
+
export default formSelectDefaultProps;
|
|
@@ -0,0 +1,46 @@
|
|
|
1
|
+
export declare const formSingleDefaultProps: {
|
|
2
|
+
id: string;
|
|
3
|
+
pid: string;
|
|
4
|
+
title: string;
|
|
5
|
+
type: string;
|
|
6
|
+
layerName: string;
|
|
7
|
+
sign: boolean;
|
|
8
|
+
signSort: number;
|
|
9
|
+
css: {
|
|
10
|
+
fontFamily: string;
|
|
11
|
+
fontSize: number;
|
|
12
|
+
color: string;
|
|
13
|
+
width: number;
|
|
14
|
+
height: string;
|
|
15
|
+
left: number;
|
|
16
|
+
top: number;
|
|
17
|
+
backgroundColor: string;
|
|
18
|
+
borderRadius: number;
|
|
19
|
+
borderColor: string;
|
|
20
|
+
borderWidth: number;
|
|
21
|
+
borderStyle: string;
|
|
22
|
+
transform: number;
|
|
23
|
+
opacity: number;
|
|
24
|
+
};
|
|
25
|
+
properties: {
|
|
26
|
+
visible: boolean;
|
|
27
|
+
isLock: boolean;
|
|
28
|
+
required: boolean;
|
|
29
|
+
musicName: string;
|
|
30
|
+
musicLink: string;
|
|
31
|
+
musicHash: string;
|
|
32
|
+
shadowSize: number;
|
|
33
|
+
shadowColor: string;
|
|
34
|
+
shadowX: number;
|
|
35
|
+
shadowY: number;
|
|
36
|
+
shadowBlur: number;
|
|
37
|
+
shadowPoint: number;
|
|
38
|
+
aniOrigin: string;
|
|
39
|
+
animations: never[];
|
|
40
|
+
};
|
|
41
|
+
items: {
|
|
42
|
+
label: string;
|
|
43
|
+
value: string;
|
|
44
|
+
}[];
|
|
45
|
+
};
|
|
46
|
+
export default formSingleDefaultProps;
|