ablok-components 0.0.48 → 0.1.2
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/ablok-components.es.js +6255 -3388
- package/dist/ablok-components.umd.js +42 -18
- package/dist/components/atoms/base-button/base-button.vue.d.ts +92 -0
- package/dist/components/{text → atoms}/base-headline/base-headline.vue.d.ts +4 -10
- package/dist/components/atoms/base-input/base-input.vue.d.ts +116 -0
- package/dist/components/{text → atoms}/base-paragraph/base-paragraph.vue.d.ts +3 -8
- package/dist/components/{form → atoms}/check-group/check-group.vue.d.ts +9 -48
- package/dist/components/atoms/file-input/file-input.vue.d.ts +169 -0
- package/dist/components/{form → atoms}/input-textarea/input-textarea.vue.d.ts +6 -60
- package/dist/components/atoms/loading-spinner/loading-spinner.vue.d.ts +16 -0
- package/dist/components/{form → atoms}/radio-group/radio-group.vue.d.ts +6 -45
- package/dist/components/atoms/svg-icon/svg-icon.vue.d.ts +43 -0
- package/dist/components/{form → molecules}/camera-input/camera-input.vue.d.ts +14 -49
- package/dist/components/molecules/file-upload/file-upload.vue.d.ts +244 -0
- package/dist/components/molecules/input-color/input-color.vue.d.ts +116 -0
- package/dist/components/molecules/input-dropdown/input-dropdown.vue.d.ts +185 -0
- package/dist/components/templates/base-form/base-form.vue.d.ts +52 -0
- package/dist/env.d.ts +1 -1
- package/dist/index.d.ts +15 -13
- package/dist/style.css +1 -1
- package/package.json +6 -4
- package/dist/components/form/base-button/base-button.vue.d.ts +0 -2
- package/dist/components/form/file-input/file-input.vue.d.ts +0 -2
- package/dist/components/form/file-upload/file-upload.vue.d.ts +0 -3
- package/dist/components/form/form-input/form-input.vue.d.ts +0 -179
- package/dist/components/form/input-dropdown/input-dropdown.vue.d.ts +0 -2
- package/dist/components/icon/loading-spinner/loading-spinner.vue.d.ts +0 -23
- package/dist/components/icon/svg-icon/svg-icon.vue.d.ts +0 -62
|
@@ -0,0 +1,52 @@
|
|
|
1
|
+
declare const _sfc_main: import('./vue/dist/vue.esm-bundler.js').DefineComponent<{
|
|
2
|
+
id: {
|
|
3
|
+
type: StringConstructor;
|
|
4
|
+
required: false;
|
|
5
|
+
};
|
|
6
|
+
name: {
|
|
7
|
+
type: StringConstructor;
|
|
8
|
+
required: false;
|
|
9
|
+
};
|
|
10
|
+
variant: {
|
|
11
|
+
type: StringConstructor;
|
|
12
|
+
required: false;
|
|
13
|
+
};
|
|
14
|
+
disabled: {
|
|
15
|
+
type: BooleanConstructor;
|
|
16
|
+
required: false;
|
|
17
|
+
};
|
|
18
|
+
pending: {
|
|
19
|
+
type: BooleanConstructor;
|
|
20
|
+
required: false;
|
|
21
|
+
};
|
|
22
|
+
}, {
|
|
23
|
+
props: any;
|
|
24
|
+
input: (event: Event) => void;
|
|
25
|
+
reset: (event: Event) => void;
|
|
26
|
+
submit: (event: Event) => void;
|
|
27
|
+
}, unknown, {}, {}, import('./vue/dist/vue.esm-bundler.js').ComponentOptionsMixin, import('./vue/dist/vue.esm-bundler.js').ComponentOptionsMixin, Record<string, any>, string, import('./vue/dist/vue.esm-bundler.js').VNodeProps & import('./vue/dist/vue.esm-bundler.js').AllowedComponentProps & import('./vue/dist/vue.esm-bundler.js').ComponentCustomProps, Readonly<import('./vue/dist/vue.esm-bundler.js').ExtractPropTypes<{
|
|
28
|
+
id: {
|
|
29
|
+
type: StringConstructor;
|
|
30
|
+
required: false;
|
|
31
|
+
};
|
|
32
|
+
name: {
|
|
33
|
+
type: StringConstructor;
|
|
34
|
+
required: false;
|
|
35
|
+
};
|
|
36
|
+
variant: {
|
|
37
|
+
type: StringConstructor;
|
|
38
|
+
required: false;
|
|
39
|
+
};
|
|
40
|
+
disabled: {
|
|
41
|
+
type: BooleanConstructor;
|
|
42
|
+
required: false;
|
|
43
|
+
};
|
|
44
|
+
pending: {
|
|
45
|
+
type: BooleanConstructor;
|
|
46
|
+
required: false;
|
|
47
|
+
};
|
|
48
|
+
}>>, {
|
|
49
|
+
disabled: boolean;
|
|
50
|
+
pending: boolean;
|
|
51
|
+
}>;
|
|
52
|
+
export default _sfc_main;
|
package/dist/env.d.ts
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
/// <reference types="vite/client" />
|
|
2
2
|
|
|
3
3
|
declare module '*.vue' {
|
|
4
|
-
import type { DefineComponent } from 'vue'
|
|
4
|
+
import type { DefineComponent } from './vue/dist/vue.esm-bundler.js'
|
|
5
5
|
// eslint-disable-next-line @typescript-eslint/no-explicit-any, @typescript-eslint/ban-types
|
|
6
6
|
const component: DefineComponent<{}, {}, any>
|
|
7
7
|
export default component
|
package/dist/index.d.ts
CHANGED
|
@@ -1,13 +1,15 @@
|
|
|
1
|
-
export { default as SvgIcon } from "./components/
|
|
2
|
-
export { default as LoadingSpinner } from "./components/
|
|
3
|
-
export { default as BaseHeadline } from "./components/
|
|
4
|
-
export { default as BaseParagraph } from "./components/
|
|
5
|
-
export { default as BaseButton } from "./components/
|
|
6
|
-
export { default as
|
|
7
|
-
export { default as InputTextarea } from "./components/
|
|
8
|
-
export { default as CheckGroup } from "./components/
|
|
9
|
-
export { default as RadioGroup } from "./components/
|
|
10
|
-
export { default as
|
|
11
|
-
export { default as
|
|
12
|
-
export { default as
|
|
13
|
-
export { default as CameraInput } from "./components/
|
|
1
|
+
export { default as SvgIcon } from "./components/atoms/svg-icon/svg-icon.vue";
|
|
2
|
+
export { default as LoadingSpinner } from "./components/atoms/loading-spinner/loading-spinner.vue";
|
|
3
|
+
export { default as BaseHeadline } from "./components/atoms/base-headline/base-headline.vue";
|
|
4
|
+
export { default as BaseParagraph } from "./components/atoms/base-paragraph/base-paragraph.vue";
|
|
5
|
+
export { default as BaseButton } from "./components/atoms/base-button/base-button.vue";
|
|
6
|
+
export { default as BaseInput } from "./components/atoms/base-input/base-input.vue";
|
|
7
|
+
export { default as InputTextarea } from "./components/atoms/input-textarea/input-textarea.vue";
|
|
8
|
+
export { default as CheckGroup } from "./components/atoms/check-group/check-group.vue";
|
|
9
|
+
export { default as RadioGroup } from "./components/atoms/radio-group/radio-group.vue";
|
|
10
|
+
export { default as FileInput } from "./components/atoms/file-input/file-input.vue";
|
|
11
|
+
export { default as InputColor } from "./components/molecules/input-color/input-color.vue";
|
|
12
|
+
export { default as InputDropdown } from "./components/molecules/input-dropdown/input-dropdown.vue";
|
|
13
|
+
export { default as CameraInput } from "./components/molecules/camera-input/camera-input.vue";
|
|
14
|
+
export { default as FileUpload } from "./components/molecules/file-upload/file-upload.vue";
|
|
15
|
+
export { default as BaseForm } from "./components/templates/base-form/base-form.vue";
|
package/dist/style.css
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
.svg-icon{display:inline-block}.svg-icon svg{display:block;stroke-width:0;stroke:currentColor;fill:currentColor;width:1.5em;height:1.5em}.svg-icon--xxl svg{width:12rem;height:12rem}.svg-icon--xl svg{width:8rem;height:8rem}.svg-icon--large svg{width:4rem;height:4rem}.loading-spinner{min-width:2rem}:root,*:before,*:after{--button-color: #fff}.
|
|
1
|
+
.svg-icon{display:inline-block}.svg-icon svg{display:block;stroke-width:0;stroke:currentColor;fill:currentColor;width:1.5em;height:1.5em}.svg-icon--xxl svg{width:12rem;height:12rem}.svg-icon--xl svg{width:8rem;height:8rem}.svg-icon--large svg{width:4rem;height:4rem}.loading-spinner{min-width:2rem}:root,*:before,*:after{--button-color: #fff}.btn{display:inline-flex;justify-content:center;align-items:center;transition:all .2s ease;text-decoration:none}.btn:disabled{cursor:not-allowed}.input{display:flex;flex-direction:column}.input>*{order:2}.input__label{order:0}.input__input-group,.input>input,.input>select,.input>textarea{flex-wrap:nowrap;order:1}.input__error{display:none}.input__color-swatch{flex:0 0 3rem;display:block;border-top-right-radius:var(--border-radius);border-bottom-right-radius:var(--border-radius);overflow:hidden;border:thin solid var(--border-color);border-left:none}.input input[type=checkbox],.input input[type=radio]{flex:none}.input input[type=color]{display:block;height:100%;padding:0;border-width:0}.input input[type=color]::-webkit-color-swatch-wrapper{padding:0}.input input[type=color]::-webkit-color-swatch{border:none}.check-group>.form-check{order:1}.check-group label{order:0}.check-group--row{display:inline-flex;flex-flow:row wrap;gap:.5rem}.check-group--row label{flex:1 0 100%}.radio-group>.form-check{order:1}.radio-group label{order:0}.radio-group--row{display:inline-flex;flex-flow:row wrap;gap:.5rem}.radio-group--row label{flex:1 0 100%}.base-input{display:flex;flex-direction:column}.base-input>*{order:2}.base-input__label{order:0}.base-input__input-group,.base-input>input,.base-input>select,.base-input>textarea{flex-wrap:nowrap;order:1}.base-input__color-swatch{flex:0 0 3rem;display:block;border-top-right-radius:var(--border-radius);border-bottom-right-radius:var(--border-radius);overflow:hidden;border:thin solid var(--border-color);border-left:none}.base-input input[type=checkbox],.base-input input[type=radio]{flex:none}.base-input input[type=color]{display:block;height:100%;padding:0;border-width:0}.base-input input[type=color]::-webkit-color-swatch-wrapper{padding:0}.base-input input[type=color]::-webkit-color-swatch{border:none}.form-switch{flex-direction:row;padding-left:0;gap:1rem}.form-switch .form-check-input{width:2.5rem;height:1.3125rem;margin-left:0}.camera-input{position:relative}.camera-input__preview{position:relative;height:100%}.camera-input__preview canvas{position:absolute;left:0;top:0;width:100%;height:100%}.camera-input__preview img,.camera-input__preview video{display:block;width:100%;height:100%;object-fit:cover}.camera-input__controls{position:absolute;bottom:0;width:100%;background:rgba(255,255,255,.5)}.camera-input.mirror-cam img,.camera-input.mirror-cam video{transform:scaleX(-1)}.camera-input__switch-cam{position:absolute;z-index:1;right:0;top:0}.camera-input__switch-cam .v-btn{display:block;background-color:#ffffff3d;border-radius:.3125rem}.camera-input__switch-cam .svg-icon{display:block;font-size:1.6667rem}.camera-input__bg-notification{position:absolute;z-index:0;left:0;top:0;width:100%;height:100%;display:flex;justify-content:center;align-items:center}.camera-input__bg-notification+video{position:relative;z-index:1}.camera-input .camera-input__guide{position:absolute;left:0;top:0;z-index:1;display:block;width:100%;height:100%;pointer-events:none;object-fit:contain}.camera-input__countdown-overlay{position:absolute;left:0;top:0;z-index:2;width:100%;height:100%;display:flex;justify-content:center;align-items:center;backdrop-filter:blur(4px);overflow:hidden}.camera-input__countdown-overlay .countdown{position:relative;font-size:6rem;color:#fffc;font-weight:700}.camera-input__countdown-overlay .countdown:before,.camera-input__countdown-overlay .countdown:after{position:absolute;left:0;top:0;z-index:1;content:attr(data-countdown);transform-origin:center;animation-name:pulse;animation-duration:1s;animation-iteration-count:infinite;animation-timing-function:ease-out}.camera-input__countdown-overlay .countdown:after{animation-duration:.1 .25s;animation-delay:.25s}.camera-input button{appearance:none;background:none;border:none}@keyframes blur{0%{backdrop-filter:blur(4px)}to{backdrop-filter:blur(0)}}@keyframes pulse{0%{transform:scale(1);opacity:.5}to{transform:scale(5);opacity:0}}.file-upload{display:inline-block}.file-upload__thumbnail{position:relative}.file-upload__thumbnail .btn{position:absolute;right:0;top:0}:root,*:before,*:after{--border-color: #ced4da;--border-radius: .25rem}.base-button{display:flex;justify-content:center;align-items:center;box-sizing:border-box;transition:all .2s ease;text-decoration:none;width:100%;margin:0;padding:1.036em 1.625em;appearance:none;outline:none;border:none;border-radius:.4375em;font-size:.875em;line-height:1.125em;text-transform:uppercase;font-weight:700}@media screen and (min-width: 600px){.base-button{width:auto}}.base-button .icon{width:16px;height:16px;margin-top:-1px}.base-button.s-collapsed>.caption{display:none}.base-button.s-pending{background-repeat:no-repeat;background-position:center center}.base-button.s-pending .caption{margin-left:25px;visibility:hidden}@media screen and (min-width: 600px){.base-button.s-pending{background-position:1.625em center}.base-button.s-pending .caption{visibility:visible}}.base-button:read-only{cursor:not-allowed}.base-button:disabled{cursor:not-allowed}
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "ablok-components",
|
|
3
3
|
"private": false,
|
|
4
|
-
"version": "0.
|
|
4
|
+
"version": "0.1.2",
|
|
5
5
|
"scripts": {
|
|
6
6
|
"dev": "vite",
|
|
7
7
|
"build": "vue-tsc --noEmit && vite build",
|
|
@@ -22,15 +22,17 @@
|
|
|
22
22
|
"vue": "^3.2.25"
|
|
23
23
|
},
|
|
24
24
|
"devDependencies": {
|
|
25
|
+
"@frctl/fractal": "^1.5.15",
|
|
25
26
|
"@types/lodash": "^4.14.189",
|
|
26
27
|
"@types/node": "^18.7.1",
|
|
27
|
-
"@vitejs/plugin-vue": "^
|
|
28
|
+
"@vitejs/plugin-vue": "^4.0.0",
|
|
28
29
|
"@vueuse/core": "^9.1.0",
|
|
30
|
+
"fractal-theme-hydrogen": "^1.0.4",
|
|
29
31
|
"path": "^0.12.7",
|
|
30
32
|
"sass": "^1.52.3",
|
|
31
33
|
"typescript": "^4.5.4",
|
|
32
|
-
"vite": "^
|
|
33
|
-
"vite-plugin-dts": "^1.
|
|
34
|
+
"vite": "^4.1.1",
|
|
35
|
+
"vite-plugin-dts": "^1.7.2",
|
|
34
36
|
"vue-tsc": "^0.40.1"
|
|
35
37
|
},
|
|
36
38
|
"files": [
|
|
@@ -1,2 +0,0 @@
|
|
|
1
|
-
declare const _sfc_main: import("vue").DefineComponent<unknown, object, {}, import("vue").ComputedOptions, import("vue").MethodOptions, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<unknown>, {}>;
|
|
2
|
-
export default _sfc_main;
|
|
@@ -1,2 +0,0 @@
|
|
|
1
|
-
declare const _sfc_main: import("vue").DefineComponent<unknown, object, {}, import("vue").ComputedOptions, import("vue").MethodOptions, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<unknown>, {}>;
|
|
2
|
-
export default _sfc_main;
|
|
@@ -1,3 +0,0 @@
|
|
|
1
|
-
export declare function fileToDataUrl(file: File): Promise<any>;
|
|
2
|
-
declare const _sfc_main: import("vue").DefineComponent<unknown, object, {}, import("vue").ComputedOptions, import("vue").MethodOptions, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<unknown>, {}>;
|
|
3
|
-
export default _sfc_main;
|
|
@@ -1,179 +0,0 @@
|
|
|
1
|
-
declare const _sfc_main: import("vue").DefineComponent<{
|
|
2
|
-
modelValue: {
|
|
3
|
-
type: (StringConstructor | BooleanConstructor | NumberConstructor)[];
|
|
4
|
-
default: string;
|
|
5
|
-
};
|
|
6
|
-
type: {
|
|
7
|
-
type: StringConstructor;
|
|
8
|
-
default: string;
|
|
9
|
-
};
|
|
10
|
-
name: {
|
|
11
|
-
type: StringConstructor;
|
|
12
|
-
default: () => string;
|
|
13
|
-
};
|
|
14
|
-
id: {
|
|
15
|
-
type: StringConstructor;
|
|
16
|
-
default: () => string;
|
|
17
|
-
};
|
|
18
|
-
label: {
|
|
19
|
-
type: StringConstructor;
|
|
20
|
-
default: string;
|
|
21
|
-
};
|
|
22
|
-
placeholder: {
|
|
23
|
-
type: StringConstructor;
|
|
24
|
-
default: string;
|
|
25
|
-
};
|
|
26
|
-
variant: {
|
|
27
|
-
type: StringConstructor;
|
|
28
|
-
default: string;
|
|
29
|
-
};
|
|
30
|
-
disabled: {
|
|
31
|
-
type: BooleanConstructor;
|
|
32
|
-
default: boolean;
|
|
33
|
-
};
|
|
34
|
-
readOnly: {
|
|
35
|
-
type: BooleanConstructor;
|
|
36
|
-
default: boolean;
|
|
37
|
-
};
|
|
38
|
-
required: {
|
|
39
|
-
type: BooleanConstructor;
|
|
40
|
-
default: boolean;
|
|
41
|
-
};
|
|
42
|
-
maxlength: {
|
|
43
|
-
type: NumberConstructor;
|
|
44
|
-
};
|
|
45
|
-
pattern: {
|
|
46
|
-
type: StringConstructor;
|
|
47
|
-
default: null;
|
|
48
|
-
};
|
|
49
|
-
checked: {
|
|
50
|
-
type: BooleanConstructor;
|
|
51
|
-
default: boolean;
|
|
52
|
-
};
|
|
53
|
-
}, {
|
|
54
|
-
props: Readonly<import("@vue/shared").LooseRequired<Readonly<import("vue").ExtractPropTypes<{
|
|
55
|
-
modelValue: {
|
|
56
|
-
type: (StringConstructor | BooleanConstructor | NumberConstructor)[];
|
|
57
|
-
default: string;
|
|
58
|
-
};
|
|
59
|
-
type: {
|
|
60
|
-
type: StringConstructor;
|
|
61
|
-
default: string;
|
|
62
|
-
};
|
|
63
|
-
name: {
|
|
64
|
-
type: StringConstructor;
|
|
65
|
-
default: () => string;
|
|
66
|
-
};
|
|
67
|
-
id: {
|
|
68
|
-
type: StringConstructor;
|
|
69
|
-
default: () => string;
|
|
70
|
-
};
|
|
71
|
-
label: {
|
|
72
|
-
type: StringConstructor;
|
|
73
|
-
default: string;
|
|
74
|
-
};
|
|
75
|
-
placeholder: {
|
|
76
|
-
type: StringConstructor;
|
|
77
|
-
default: string;
|
|
78
|
-
};
|
|
79
|
-
variant: {
|
|
80
|
-
type: StringConstructor;
|
|
81
|
-
default: string;
|
|
82
|
-
};
|
|
83
|
-
disabled: {
|
|
84
|
-
type: BooleanConstructor;
|
|
85
|
-
default: boolean;
|
|
86
|
-
};
|
|
87
|
-
readOnly: {
|
|
88
|
-
type: BooleanConstructor;
|
|
89
|
-
default: boolean;
|
|
90
|
-
};
|
|
91
|
-
required: {
|
|
92
|
-
type: BooleanConstructor;
|
|
93
|
-
default: boolean;
|
|
94
|
-
};
|
|
95
|
-
maxlength: {
|
|
96
|
-
type: NumberConstructor;
|
|
97
|
-
};
|
|
98
|
-
pattern: {
|
|
99
|
-
type: StringConstructor;
|
|
100
|
-
default: null;
|
|
101
|
-
};
|
|
102
|
-
checked: {
|
|
103
|
-
type: BooleanConstructor;
|
|
104
|
-
default: boolean;
|
|
105
|
-
};
|
|
106
|
-
}>> & {
|
|
107
|
-
"onUpdate:modelValue"?: ((...args: any[]) => any) | undefined;
|
|
108
|
-
}>>;
|
|
109
|
-
emit: (event: "update:modelValue", ...args: any[]) => void;
|
|
110
|
-
model: import("vue").WritableComputedRef<unknown>;
|
|
111
|
-
}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, "update:modelValue"[], "update:modelValue", import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
|
|
112
|
-
modelValue: {
|
|
113
|
-
type: (StringConstructor | BooleanConstructor | NumberConstructor)[];
|
|
114
|
-
default: string;
|
|
115
|
-
};
|
|
116
|
-
type: {
|
|
117
|
-
type: StringConstructor;
|
|
118
|
-
default: string;
|
|
119
|
-
};
|
|
120
|
-
name: {
|
|
121
|
-
type: StringConstructor;
|
|
122
|
-
default: () => string;
|
|
123
|
-
};
|
|
124
|
-
id: {
|
|
125
|
-
type: StringConstructor;
|
|
126
|
-
default: () => string;
|
|
127
|
-
};
|
|
128
|
-
label: {
|
|
129
|
-
type: StringConstructor;
|
|
130
|
-
default: string;
|
|
131
|
-
};
|
|
132
|
-
placeholder: {
|
|
133
|
-
type: StringConstructor;
|
|
134
|
-
default: string;
|
|
135
|
-
};
|
|
136
|
-
variant: {
|
|
137
|
-
type: StringConstructor;
|
|
138
|
-
default: string;
|
|
139
|
-
};
|
|
140
|
-
disabled: {
|
|
141
|
-
type: BooleanConstructor;
|
|
142
|
-
default: boolean;
|
|
143
|
-
};
|
|
144
|
-
readOnly: {
|
|
145
|
-
type: BooleanConstructor;
|
|
146
|
-
default: boolean;
|
|
147
|
-
};
|
|
148
|
-
required: {
|
|
149
|
-
type: BooleanConstructor;
|
|
150
|
-
default: boolean;
|
|
151
|
-
};
|
|
152
|
-
maxlength: {
|
|
153
|
-
type: NumberConstructor;
|
|
154
|
-
};
|
|
155
|
-
pattern: {
|
|
156
|
-
type: StringConstructor;
|
|
157
|
-
default: null;
|
|
158
|
-
};
|
|
159
|
-
checked: {
|
|
160
|
-
type: BooleanConstructor;
|
|
161
|
-
default: boolean;
|
|
162
|
-
};
|
|
163
|
-
}>> & {
|
|
164
|
-
"onUpdate:modelValue"?: ((...args: any[]) => any) | undefined;
|
|
165
|
-
}, {
|
|
166
|
-
type: string;
|
|
167
|
-
variant: string;
|
|
168
|
-
disabled: boolean;
|
|
169
|
-
required: boolean;
|
|
170
|
-
name: string;
|
|
171
|
-
modelValue: string | number | boolean;
|
|
172
|
-
id: string;
|
|
173
|
-
label: string;
|
|
174
|
-
readOnly: boolean;
|
|
175
|
-
placeholder: string;
|
|
176
|
-
pattern: string;
|
|
177
|
-
checked: boolean;
|
|
178
|
-
}>;
|
|
179
|
-
export default _sfc_main;
|
|
@@ -1,2 +0,0 @@
|
|
|
1
|
-
declare const _sfc_main: import("vue").DefineComponent<unknown, object, {}, import("vue").ComputedOptions, import("vue").MethodOptions, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<unknown>, {}>;
|
|
2
|
-
export default _sfc_main;
|
|
@@ -1,23 +0,0 @@
|
|
|
1
|
-
declare const _sfc_main: import("vue").DefineComponent<{
|
|
2
|
-
color: {
|
|
3
|
-
type: StringConstructor;
|
|
4
|
-
default: string;
|
|
5
|
-
};
|
|
6
|
-
}, {
|
|
7
|
-
props: Readonly<import("@vue/shared").LooseRequired<Readonly<import("vue").ExtractPropTypes<{
|
|
8
|
-
color: {
|
|
9
|
-
type: StringConstructor;
|
|
10
|
-
default: string;
|
|
11
|
-
};
|
|
12
|
-
}>> & {
|
|
13
|
-
[x: string & `on${string}`]: ((...args: any[]) => any) | ((...args: unknown[]) => any) | undefined;
|
|
14
|
-
}>>;
|
|
15
|
-
}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, Record<string, any>, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
|
|
16
|
-
color: {
|
|
17
|
-
type: StringConstructor;
|
|
18
|
-
default: string;
|
|
19
|
-
};
|
|
20
|
-
}>>, {
|
|
21
|
-
color: string;
|
|
22
|
-
}>;
|
|
23
|
-
export default _sfc_main;
|
|
@@ -1,62 +0,0 @@
|
|
|
1
|
-
declare const _sfc_main: import("vue").DefineComponent<{
|
|
2
|
-
basePath: {
|
|
3
|
-
type: StringConstructor;
|
|
4
|
-
default: string;
|
|
5
|
-
};
|
|
6
|
-
prefix: {
|
|
7
|
-
type: StringConstructor;
|
|
8
|
-
default: string;
|
|
9
|
-
};
|
|
10
|
-
symbol: {
|
|
11
|
-
type: StringConstructor;
|
|
12
|
-
default: string;
|
|
13
|
-
};
|
|
14
|
-
size: {
|
|
15
|
-
type: StringConstructor;
|
|
16
|
-
default: string;
|
|
17
|
-
};
|
|
18
|
-
}, {
|
|
19
|
-
props: Readonly<import("@vue/shared").LooseRequired<Readonly<import("vue").ExtractPropTypes<{
|
|
20
|
-
basePath: {
|
|
21
|
-
type: StringConstructor;
|
|
22
|
-
default: string;
|
|
23
|
-
};
|
|
24
|
-
prefix: {
|
|
25
|
-
type: StringConstructor;
|
|
26
|
-
default: string;
|
|
27
|
-
};
|
|
28
|
-
symbol: {
|
|
29
|
-
type: StringConstructor;
|
|
30
|
-
default: string;
|
|
31
|
-
};
|
|
32
|
-
size: {
|
|
33
|
-
type: StringConstructor;
|
|
34
|
-
default: string;
|
|
35
|
-
};
|
|
36
|
-
}>> & {
|
|
37
|
-
[x: string & `on${string}`]: ((...args: any[]) => any) | ((...args: unknown[]) => any) | undefined;
|
|
38
|
-
}>>;
|
|
39
|
-
}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, Record<string, any>, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
|
|
40
|
-
basePath: {
|
|
41
|
-
type: StringConstructor;
|
|
42
|
-
default: string;
|
|
43
|
-
};
|
|
44
|
-
prefix: {
|
|
45
|
-
type: StringConstructor;
|
|
46
|
-
default: string;
|
|
47
|
-
};
|
|
48
|
-
symbol: {
|
|
49
|
-
type: StringConstructor;
|
|
50
|
-
default: string;
|
|
51
|
-
};
|
|
52
|
-
size: {
|
|
53
|
-
type: StringConstructor;
|
|
54
|
-
default: string;
|
|
55
|
-
};
|
|
56
|
-
}>>, {
|
|
57
|
-
symbol: string;
|
|
58
|
-
size: string;
|
|
59
|
-
basePath: string;
|
|
60
|
-
prefix: string;
|
|
61
|
-
}>;
|
|
62
|
-
export default _sfc_main;
|