@getblock/core 0.0.76
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/README.md +16 -0
- package/dist/components/badges/Badges.vue.d.ts +23 -0
- package/dist/components/breadcrumbs/Breadcrumbs.vue.d.ts +61 -0
- package/dist/components/button/Button.types.d.ts +3 -0
- package/dist/components/button/Button.vue.d.ts +63 -0
- package/dist/components/checkbox/Checkbox.vue.d.ts +117 -0
- package/dist/components/checkbox/types.d.ts +5 -0
- package/dist/components/chips/Chips.vue.d.ts +48 -0
- package/dist/components/dropdown/Dropdown.vue.d.ts +217 -0
- package/dist/components/dropdownWithCheckbox/Dropdown.vue.d.ts +431 -0
- package/dist/components/droplist/Droplist.vue.d.ts +208 -0
- package/dist/components/icon/Icon.types.d.ts +2 -0
- package/dist/components/icon/Icon.vue.d.ts +41 -0
- package/dist/components/index.d.ts +21 -0
- package/dist/components/input/Input.vue.d.ts +195 -0
- package/dist/components/input/types.d.ts +10 -0
- package/dist/components/lineTab/LineTab.vue.d.ts +33 -0
- package/dist/components/listItem/ListItem.vue.d.ts +23 -0
- package/dist/components/loading/CustomLoader.vue.d.ts +24 -0
- package/dist/components/notification/Notification.vue.d.ts +190 -0
- package/dist/components/radioButton/RadioButton.vue.d.ts +88 -0
- package/dist/components/range/Range.vue.d.ts +61 -0
- package/dist/components/tabBar/TabBar.vue.d.ts +92 -0
- package/dist/components/tag/Tag.vue.d.ts +75 -0
- package/dist/components/textArea/TextArea.vue.d.ts +119 -0
- package/dist/components/toggle/Toggle.vue.d.ts +30 -0
- package/dist/components/tooltip/Tooltip.vue.d.ts +42 -0
- package/dist/getblockui-core.es.ts +1873 -0
- package/dist/getblockui-core.umd.ts +1 -0
- package/dist/index.d.ts +1 -0
- package/dist/style.css +1 -0
- package/dist/vite-env.d.ts +9 -0
- package/dist/vite.svg +1 -0
- package/package.json +73 -0
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
export { default as GetBlockUIButton } from './button/Button.vue';
|
|
2
|
+
export { default as GetBlockUIInput } from './input/Input.vue';
|
|
3
|
+
export { default as GetBlockUIIcon } from './icon/Icon.vue';
|
|
4
|
+
export { default as GetBlockUIChips } from './chips/Chips.vue';
|
|
5
|
+
export { default as GetBlockUIListItem } from './listItem/ListItem.vue';
|
|
6
|
+
export { default as GetBlockUIDropdown } from './dropdown/Dropdown.vue';
|
|
7
|
+
export { default as GetBlockUILineTab } from './lineTab/LineTab.vue';
|
|
8
|
+
export { default as GetBlockUIBadge } from './badges/Badges.vue';
|
|
9
|
+
export { default as GetBlockUIDroplist } from './droplist/Droplist.vue';
|
|
10
|
+
export { default as GetBlockUITag } from './tag/Tag.vue';
|
|
11
|
+
export { default as GetBlockUIBreadcrumbs } from './breadcrumbs/Breadcrumbs.vue';
|
|
12
|
+
export { default as GetBlockUITooltip } from './tooltip/Tooltip.vue';
|
|
13
|
+
export { default as GetBlockUITextArea } from './textArea/TextArea.vue';
|
|
14
|
+
export { default as GetBlockUIToggle } from './toggle/Toggle.vue';
|
|
15
|
+
export { default as GetBlockUIRadioButton } from './radioButton/RadioButton.vue';
|
|
16
|
+
export { default as GetBlockUITabBar } from './tabBar/TabBar.vue';
|
|
17
|
+
export { default as GetBlockUiCheckbox } from './checkbox/Checkbox.vue';
|
|
18
|
+
export { default as GetBlockUINotification } from './notification/Notification.vue';
|
|
19
|
+
export { default as GetBlockUILoader } from './loading/CustomLoader.vue';
|
|
20
|
+
export { default as GetBlockUiDropdownWithCheckbox } from './dropdownWithCheckbox/Dropdown.vue';
|
|
21
|
+
export { default as GetBlockUIRange } from './range/Range.vue';
|
|
@@ -0,0 +1,195 @@
|
|
|
1
|
+
/// <reference types="vite/client" />
|
|
2
|
+
import { PropType } from 'vue';
|
|
3
|
+
import { ColorTypeProps, IconStatus, InputTypeProps, SizeTypeProps, StatusIconProps } from './types';
|
|
4
|
+
declare const _sfc_main: import("vue").DefineComponent<{
|
|
5
|
+
disabled: {
|
|
6
|
+
type: BooleanConstructor;
|
|
7
|
+
default: boolean;
|
|
8
|
+
};
|
|
9
|
+
error: {
|
|
10
|
+
type: BooleanConstructor;
|
|
11
|
+
default: boolean;
|
|
12
|
+
};
|
|
13
|
+
placeholder: {
|
|
14
|
+
type: StringConstructor;
|
|
15
|
+
default: string;
|
|
16
|
+
};
|
|
17
|
+
inputName: {
|
|
18
|
+
type: StringConstructor;
|
|
19
|
+
required: true;
|
|
20
|
+
};
|
|
21
|
+
inputValue: {
|
|
22
|
+
type: StringConstructor;
|
|
23
|
+
required: true;
|
|
24
|
+
};
|
|
25
|
+
inputType: {
|
|
26
|
+
type: PropType<InputTypeProps>;
|
|
27
|
+
default: string;
|
|
28
|
+
validator: (value: InputTypeProps) => boolean;
|
|
29
|
+
};
|
|
30
|
+
colorType: {
|
|
31
|
+
type: PropType<ColorTypeProps>;
|
|
32
|
+
default: string;
|
|
33
|
+
validator: (value: ColorTypeProps) => boolean;
|
|
34
|
+
};
|
|
35
|
+
sizeType: {
|
|
36
|
+
type: PropType<SizeTypeProps>;
|
|
37
|
+
default: string;
|
|
38
|
+
validator: (value: SizeTypeProps) => boolean;
|
|
39
|
+
};
|
|
40
|
+
iconName: {
|
|
41
|
+
type: StringConstructor;
|
|
42
|
+
default: string;
|
|
43
|
+
};
|
|
44
|
+
statusIcon: {
|
|
45
|
+
type: PropType<StatusIconProps>;
|
|
46
|
+
default: string;
|
|
47
|
+
validator: (value: StatusIconProps) => boolean;
|
|
48
|
+
};
|
|
49
|
+
customEventRightButton: {
|
|
50
|
+
type: BooleanConstructor;
|
|
51
|
+
default: boolean;
|
|
52
|
+
};
|
|
53
|
+
rightIconName: {
|
|
54
|
+
type: StringConstructor;
|
|
55
|
+
default: string;
|
|
56
|
+
};
|
|
57
|
+
tabIndex: {
|
|
58
|
+
type: NumberConstructor;
|
|
59
|
+
default: number;
|
|
60
|
+
};
|
|
61
|
+
}, {
|
|
62
|
+
emits: (event: "resetError" | "update:inputValue" | "focusOut" | "onClickRightButton", ...args: any[]) => void;
|
|
63
|
+
props: any;
|
|
64
|
+
iconStatus: import("vue").ComputedRef<IconStatus>;
|
|
65
|
+
inputRef: import("vue").Ref<HTMLInputElement | null>;
|
|
66
|
+
isFocused: import("vue").Ref<boolean>;
|
|
67
|
+
inputType: import("vue").Ref<InputTypeProps>;
|
|
68
|
+
value: import("vue").WritableComputedRef<string>;
|
|
69
|
+
iconRight: import("vue").ComputedRef<string>;
|
|
70
|
+
classObject: import("vue").ComputedRef<object>;
|
|
71
|
+
hintClassObject: import("vue").ComputedRef<object>;
|
|
72
|
+
labelClassObject: import("vue").ComputedRef<object>;
|
|
73
|
+
clearInput: () => void;
|
|
74
|
+
changeTypeInput: () => void;
|
|
75
|
+
eventRightButton: () => void;
|
|
76
|
+
onFocus: () => void;
|
|
77
|
+
onFocusOut: () => void;
|
|
78
|
+
slots: Readonly<{
|
|
79
|
+
[name: string]: import("vue").Slot | undefined;
|
|
80
|
+
}>;
|
|
81
|
+
Icon: import("vue").DefineComponent<{
|
|
82
|
+
iconName: {
|
|
83
|
+
type: StringConstructor;
|
|
84
|
+
required: true;
|
|
85
|
+
};
|
|
86
|
+
colorType: {
|
|
87
|
+
type: PropType<import("../icon/Icon.types").IconColorTypeProps>;
|
|
88
|
+
default: string;
|
|
89
|
+
validator: (value: import("../icon/Icon.types").IconColorTypeProps) => boolean;
|
|
90
|
+
};
|
|
91
|
+
sizeType: {
|
|
92
|
+
type: PropType<import("../icon/Icon.types").IconSizeTypeProps>;
|
|
93
|
+
default: string;
|
|
94
|
+
validator: (value: import("../icon/Icon.types").IconSizeTypeProps) => boolean;
|
|
95
|
+
};
|
|
96
|
+
}, {
|
|
97
|
+
props: any;
|
|
98
|
+
imgSize: import("vue").ComputedRef<number>;
|
|
99
|
+
classObject: import("vue").ComputedRef<object>;
|
|
100
|
+
}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
|
|
101
|
+
iconName: {
|
|
102
|
+
type: StringConstructor;
|
|
103
|
+
required: true;
|
|
104
|
+
};
|
|
105
|
+
colorType: {
|
|
106
|
+
type: PropType<import("../icon/Icon.types").IconColorTypeProps>;
|
|
107
|
+
default: string;
|
|
108
|
+
validator: (value: import("../icon/Icon.types").IconColorTypeProps) => boolean;
|
|
109
|
+
};
|
|
110
|
+
sizeType: {
|
|
111
|
+
type: PropType<import("../icon/Icon.types").IconSizeTypeProps>;
|
|
112
|
+
default: string;
|
|
113
|
+
validator: (value: import("../icon/Icon.types").IconSizeTypeProps) => boolean;
|
|
114
|
+
};
|
|
115
|
+
}>>, {
|
|
116
|
+
colorType: import("../icon/Icon.types").IconColorTypeProps;
|
|
117
|
+
sizeType: import("../icon/Icon.types").IconSizeTypeProps;
|
|
118
|
+
}>;
|
|
119
|
+
readonly input: CSSModuleClasses;
|
|
120
|
+
}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, ("resetError" | "update:inputValue" | "focusOut" | "onClickRightButton")[], "resetError" | "update:inputValue" | "focusOut" | "onClickRightButton", import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
|
|
121
|
+
disabled: {
|
|
122
|
+
type: BooleanConstructor;
|
|
123
|
+
default: boolean;
|
|
124
|
+
};
|
|
125
|
+
error: {
|
|
126
|
+
type: BooleanConstructor;
|
|
127
|
+
default: boolean;
|
|
128
|
+
};
|
|
129
|
+
placeholder: {
|
|
130
|
+
type: StringConstructor;
|
|
131
|
+
default: string;
|
|
132
|
+
};
|
|
133
|
+
inputName: {
|
|
134
|
+
type: StringConstructor;
|
|
135
|
+
required: true;
|
|
136
|
+
};
|
|
137
|
+
inputValue: {
|
|
138
|
+
type: StringConstructor;
|
|
139
|
+
required: true;
|
|
140
|
+
};
|
|
141
|
+
inputType: {
|
|
142
|
+
type: PropType<InputTypeProps>;
|
|
143
|
+
default: string;
|
|
144
|
+
validator: (value: InputTypeProps) => boolean;
|
|
145
|
+
};
|
|
146
|
+
colorType: {
|
|
147
|
+
type: PropType<ColorTypeProps>;
|
|
148
|
+
default: string;
|
|
149
|
+
validator: (value: ColorTypeProps) => boolean;
|
|
150
|
+
};
|
|
151
|
+
sizeType: {
|
|
152
|
+
type: PropType<SizeTypeProps>;
|
|
153
|
+
default: string;
|
|
154
|
+
validator: (value: SizeTypeProps) => boolean;
|
|
155
|
+
};
|
|
156
|
+
iconName: {
|
|
157
|
+
type: StringConstructor;
|
|
158
|
+
default: string;
|
|
159
|
+
};
|
|
160
|
+
statusIcon: {
|
|
161
|
+
type: PropType<StatusIconProps>;
|
|
162
|
+
default: string;
|
|
163
|
+
validator: (value: StatusIconProps) => boolean;
|
|
164
|
+
};
|
|
165
|
+
customEventRightButton: {
|
|
166
|
+
type: BooleanConstructor;
|
|
167
|
+
default: boolean;
|
|
168
|
+
};
|
|
169
|
+
rightIconName: {
|
|
170
|
+
type: StringConstructor;
|
|
171
|
+
default: string;
|
|
172
|
+
};
|
|
173
|
+
tabIndex: {
|
|
174
|
+
type: NumberConstructor;
|
|
175
|
+
default: number;
|
|
176
|
+
};
|
|
177
|
+
}>> & {
|
|
178
|
+
onResetError?: ((...args: any[]) => any) | undefined;
|
|
179
|
+
"onUpdate:inputValue"?: ((...args: any[]) => any) | undefined;
|
|
180
|
+
onFocusOut?: ((...args: any[]) => any) | undefined;
|
|
181
|
+
onOnClickRightButton?: ((...args: any[]) => any) | undefined;
|
|
182
|
+
}, {
|
|
183
|
+
error: boolean;
|
|
184
|
+
colorType: ColorTypeProps;
|
|
185
|
+
iconName: string;
|
|
186
|
+
sizeType: SizeTypeProps;
|
|
187
|
+
disabled: boolean;
|
|
188
|
+
placeholder: string;
|
|
189
|
+
tabIndex: number;
|
|
190
|
+
inputType: InputTypeProps;
|
|
191
|
+
statusIcon: StatusIconProps;
|
|
192
|
+
customEventRightButton: boolean;
|
|
193
|
+
rightIconName: string;
|
|
194
|
+
}>;
|
|
195
|
+
export default _sfc_main;
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
export type InputTypeProps = 'text' | 'email' | 'number' | 'password';
|
|
2
|
+
export type ColorTypeProps = 'fill' | 'outline';
|
|
3
|
+
export type SizeTypeProps = 'large' | 'medium';
|
|
4
|
+
export type StatusIconProps = 'success' | 'error' | 'none';
|
|
5
|
+
export type IconRight = 'x' | 'eye' | string;
|
|
6
|
+
export interface IconStatus {
|
|
7
|
+
display: boolean;
|
|
8
|
+
colorType: 'success' | 'alert' | 'none';
|
|
9
|
+
icon: string;
|
|
10
|
+
}
|
|
@@ -0,0 +1,33 @@
|
|
|
1
|
+
import { PropType } from 'vue';
|
|
2
|
+
type SizeTypeProps = 'medium' | 'large';
|
|
3
|
+
declare const _sfc_main: import("vue").DefineComponent<{
|
|
4
|
+
selected: {
|
|
5
|
+
type: BooleanConstructor;
|
|
6
|
+
default: boolean;
|
|
7
|
+
};
|
|
8
|
+
sizeType: {
|
|
9
|
+
type: PropType<SizeTypeProps>;
|
|
10
|
+
default: string;
|
|
11
|
+
};
|
|
12
|
+
}, {
|
|
13
|
+
emit: (event: "changeSelected", ...args: any[]) => void;
|
|
14
|
+
props: any;
|
|
15
|
+
classObject: import("vue").ComputedRef<object>;
|
|
16
|
+
lineClassObject: import("vue").ComputedRef<object>;
|
|
17
|
+
changeSelected: () => void;
|
|
18
|
+
}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, "changeSelected"[], "changeSelected", import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
|
|
19
|
+
selected: {
|
|
20
|
+
type: BooleanConstructor;
|
|
21
|
+
default: boolean;
|
|
22
|
+
};
|
|
23
|
+
sizeType: {
|
|
24
|
+
type: PropType<SizeTypeProps>;
|
|
25
|
+
default: string;
|
|
26
|
+
};
|
|
27
|
+
}>> & {
|
|
28
|
+
onChangeSelected?: ((...args: any[]) => any) | undefined;
|
|
29
|
+
}, {
|
|
30
|
+
sizeType: SizeTypeProps;
|
|
31
|
+
selected: boolean;
|
|
32
|
+
}>;
|
|
33
|
+
export default _sfc_main;
|
|
@@ -0,0 +1,23 @@
|
|
|
1
|
+
/// <reference types="vite/client" />
|
|
2
|
+
declare const _sfc_main: import("vue").DefineComponent<{
|
|
3
|
+
selected: {
|
|
4
|
+
type: BooleanConstructor;
|
|
5
|
+
default: boolean;
|
|
6
|
+
};
|
|
7
|
+
}, {
|
|
8
|
+
emit: (event: "changeSelected", ...args: any[]) => void;
|
|
9
|
+
props: any;
|
|
10
|
+
classObject: import("vue").ComputedRef<object>;
|
|
11
|
+
changeSelected: () => void;
|
|
12
|
+
readonly listItem: CSSModuleClasses;
|
|
13
|
+
}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, "changeSelected"[], "changeSelected", import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
|
|
14
|
+
selected: {
|
|
15
|
+
type: BooleanConstructor;
|
|
16
|
+
default: boolean;
|
|
17
|
+
};
|
|
18
|
+
}>> & {
|
|
19
|
+
onChangeSelected?: ((...args: any[]) => any) | undefined;
|
|
20
|
+
}, {
|
|
21
|
+
selected: boolean;
|
|
22
|
+
}>;
|
|
23
|
+
export default _sfc_main;
|
|
@@ -0,0 +1,24 @@
|
|
|
1
|
+
/// <reference types="vite/client" />
|
|
2
|
+
import { PropType } from 'vue';
|
|
3
|
+
type ColorType = 'accent' | 'tint' | 'outline';
|
|
4
|
+
declare const _sfc_main: import("vue").DefineComponent<{
|
|
5
|
+
colorType: {
|
|
6
|
+
type: PropType<ColorType>;
|
|
7
|
+
default: string;
|
|
8
|
+
validator: (value: ColorType) => boolean;
|
|
9
|
+
};
|
|
10
|
+
}, {
|
|
11
|
+
props: any;
|
|
12
|
+
classObject: import("vue").ComputedRef<object>;
|
|
13
|
+
classObjectHelper: import("vue").ComputedRef<object>;
|
|
14
|
+
readonly customLoader: CSSModuleClasses;
|
|
15
|
+
}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
|
|
16
|
+
colorType: {
|
|
17
|
+
type: PropType<ColorType>;
|
|
18
|
+
default: string;
|
|
19
|
+
validator: (value: ColorType) => boolean;
|
|
20
|
+
};
|
|
21
|
+
}>>, {
|
|
22
|
+
colorType: ColorType;
|
|
23
|
+
}>;
|
|
24
|
+
export default _sfc_main;
|
|
@@ -0,0 +1,190 @@
|
|
|
1
|
+
/// <reference types="vite/client" />
|
|
2
|
+
import { PropType } from 'vue';
|
|
3
|
+
type MainTypeProps = 'low' | 'high' | 'attention' | 'error';
|
|
4
|
+
type ButtonMainType = 'base' | 'destructive';
|
|
5
|
+
type ButtonColorType = 'tint' | 'accent';
|
|
6
|
+
type IconColor = 'tint-blue' | 'color-bg' | 'attention' | 'alert';
|
|
7
|
+
type ColorTypeProps = 'main' | 'secondary' | 'tertiary' | 'disable' | 'action' | 'tint-blue' | 'attention' | 'alert' | 'success' | 'color-bg' | 'light-bg' | 'default' | 'accent-hover' | 'tint-hover' | 'attention-hover' | 'error-hover';
|
|
8
|
+
declare const _sfc_main: import("vue").DefineComponent<{
|
|
9
|
+
mainType: {
|
|
10
|
+
type: PropType<MainTypeProps>;
|
|
11
|
+
default: string;
|
|
12
|
+
validator: (value: MainTypeProps) => boolean;
|
|
13
|
+
};
|
|
14
|
+
infoIcon: {
|
|
15
|
+
type: BooleanConstructor;
|
|
16
|
+
default: boolean;
|
|
17
|
+
};
|
|
18
|
+
infoIconName: {
|
|
19
|
+
type: StringConstructor;
|
|
20
|
+
default: string;
|
|
21
|
+
};
|
|
22
|
+
closeIcon: {
|
|
23
|
+
type: BooleanConstructor;
|
|
24
|
+
default: boolean;
|
|
25
|
+
};
|
|
26
|
+
isWithCloseIcon: {
|
|
27
|
+
type: BooleanConstructor;
|
|
28
|
+
default: boolean;
|
|
29
|
+
};
|
|
30
|
+
}, {
|
|
31
|
+
emit: (event: "deleteNotification", ...args: any[]) => void;
|
|
32
|
+
colorButton: {
|
|
33
|
+
low: string;
|
|
34
|
+
high: string;
|
|
35
|
+
attention: string;
|
|
36
|
+
error: string;
|
|
37
|
+
};
|
|
38
|
+
colorIcon: {
|
|
39
|
+
low: string;
|
|
40
|
+
high: string;
|
|
41
|
+
attention: string;
|
|
42
|
+
error: string;
|
|
43
|
+
};
|
|
44
|
+
colorIconHover: {
|
|
45
|
+
low: string;
|
|
46
|
+
high: string;
|
|
47
|
+
attention: string;
|
|
48
|
+
error: string;
|
|
49
|
+
};
|
|
50
|
+
props: any;
|
|
51
|
+
iconHovered: import("vue").Ref<boolean>;
|
|
52
|
+
deleteNotification: () => void;
|
|
53
|
+
classObject: import("vue").ComputedRef<object>;
|
|
54
|
+
iconColor: import("vue").ComputedRef<IconColor>;
|
|
55
|
+
closeIconColor: import("vue").ComputedRef<ColorTypeProps>;
|
|
56
|
+
buttonColor: import("vue").ComputedRef<ButtonColorType>;
|
|
57
|
+
buttonType: import("vue").ComputedRef<ButtonMainType>;
|
|
58
|
+
slots: Readonly<{
|
|
59
|
+
[name: string]: import("vue").Slot | undefined;
|
|
60
|
+
}>;
|
|
61
|
+
readonly notification: CSSModuleClasses;
|
|
62
|
+
Icon: import("vue").DefineComponent<{
|
|
63
|
+
iconName: {
|
|
64
|
+
type: StringConstructor;
|
|
65
|
+
required: true;
|
|
66
|
+
};
|
|
67
|
+
colorType: {
|
|
68
|
+
type: PropType<import("../icon/Icon.types").IconColorTypeProps>;
|
|
69
|
+
default: string;
|
|
70
|
+
validator: (value: import("../icon/Icon.types").IconColorTypeProps) => boolean;
|
|
71
|
+
};
|
|
72
|
+
sizeType: {
|
|
73
|
+
type: PropType<import("../icon/Icon.types").IconSizeTypeProps>;
|
|
74
|
+
default: string;
|
|
75
|
+
validator: (value: import("../icon/Icon.types").IconSizeTypeProps) => boolean;
|
|
76
|
+
};
|
|
77
|
+
}, {
|
|
78
|
+
props: any;
|
|
79
|
+
imgSize: import("vue").ComputedRef<number>;
|
|
80
|
+
classObject: import("vue").ComputedRef<object>;
|
|
81
|
+
}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
|
|
82
|
+
iconName: {
|
|
83
|
+
type: StringConstructor;
|
|
84
|
+
required: true;
|
|
85
|
+
};
|
|
86
|
+
colorType: {
|
|
87
|
+
type: PropType<import("../icon/Icon.types").IconColorTypeProps>;
|
|
88
|
+
default: string;
|
|
89
|
+
validator: (value: import("../icon/Icon.types").IconColorTypeProps) => boolean;
|
|
90
|
+
};
|
|
91
|
+
sizeType: {
|
|
92
|
+
type: PropType<import("../icon/Icon.types").IconSizeTypeProps>;
|
|
93
|
+
default: string;
|
|
94
|
+
validator: (value: import("../icon/Icon.types").IconSizeTypeProps) => boolean;
|
|
95
|
+
};
|
|
96
|
+
}>>, {
|
|
97
|
+
colorType: import("../icon/Icon.types").IconColorTypeProps;
|
|
98
|
+
sizeType: import("../icon/Icon.types").IconSizeTypeProps;
|
|
99
|
+
}>;
|
|
100
|
+
Button: import("vue").DefineComponent<{
|
|
101
|
+
disabled: {
|
|
102
|
+
type: BooleanConstructor;
|
|
103
|
+
default: boolean;
|
|
104
|
+
};
|
|
105
|
+
mainType: {
|
|
106
|
+
type: PropType<import("../button/Button.types").ButtonMainTypeProps>;
|
|
107
|
+
default: string;
|
|
108
|
+
validator: (value: import("../button/Button.types").ButtonMainTypeProps) => boolean;
|
|
109
|
+
};
|
|
110
|
+
colorType: {
|
|
111
|
+
type: PropType<import("../button/Button.types").ButtonColorTypeProps>;
|
|
112
|
+
default: string;
|
|
113
|
+
validator: (value: import("../button/Button.types").ButtonColorTypeProps) => boolean;
|
|
114
|
+
};
|
|
115
|
+
sizeType: {
|
|
116
|
+
type: PropType<import("../button/Button.types").ButtonSizeTypeProps>;
|
|
117
|
+
default: string;
|
|
118
|
+
validator: (value: import("../button/Button.types").ButtonSizeTypeProps) => boolean;
|
|
119
|
+
};
|
|
120
|
+
iconButton: {
|
|
121
|
+
type: BooleanConstructor;
|
|
122
|
+
default: boolean;
|
|
123
|
+
};
|
|
124
|
+
}, {
|
|
125
|
+
props: any;
|
|
126
|
+
classObject: import("vue").ComputedRef<object>;
|
|
127
|
+
readonly button: CSSModuleClasses;
|
|
128
|
+
}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
|
|
129
|
+
disabled: {
|
|
130
|
+
type: BooleanConstructor;
|
|
131
|
+
default: boolean;
|
|
132
|
+
};
|
|
133
|
+
mainType: {
|
|
134
|
+
type: PropType<import("../button/Button.types").ButtonMainTypeProps>;
|
|
135
|
+
default: string;
|
|
136
|
+
validator: (value: import("../button/Button.types").ButtonMainTypeProps) => boolean;
|
|
137
|
+
};
|
|
138
|
+
colorType: {
|
|
139
|
+
type: PropType<import("../button/Button.types").ButtonColorTypeProps>;
|
|
140
|
+
default: string;
|
|
141
|
+
validator: (value: import("../button/Button.types").ButtonColorTypeProps) => boolean;
|
|
142
|
+
};
|
|
143
|
+
sizeType: {
|
|
144
|
+
type: PropType<import("../button/Button.types").ButtonSizeTypeProps>;
|
|
145
|
+
default: string;
|
|
146
|
+
validator: (value: import("../button/Button.types").ButtonSizeTypeProps) => boolean;
|
|
147
|
+
};
|
|
148
|
+
iconButton: {
|
|
149
|
+
type: BooleanConstructor;
|
|
150
|
+
default: boolean;
|
|
151
|
+
};
|
|
152
|
+
}>>, {
|
|
153
|
+
colorType: import("../button/Button.types").ButtonColorTypeProps;
|
|
154
|
+
sizeType: import("../button/Button.types").ButtonSizeTypeProps;
|
|
155
|
+
disabled: boolean;
|
|
156
|
+
mainType: import("../button/Button.types").ButtonMainTypeProps;
|
|
157
|
+
iconButton: boolean;
|
|
158
|
+
}>;
|
|
159
|
+
}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, "deleteNotification"[], "deleteNotification", import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
|
|
160
|
+
mainType: {
|
|
161
|
+
type: PropType<MainTypeProps>;
|
|
162
|
+
default: string;
|
|
163
|
+
validator: (value: MainTypeProps) => boolean;
|
|
164
|
+
};
|
|
165
|
+
infoIcon: {
|
|
166
|
+
type: BooleanConstructor;
|
|
167
|
+
default: boolean;
|
|
168
|
+
};
|
|
169
|
+
infoIconName: {
|
|
170
|
+
type: StringConstructor;
|
|
171
|
+
default: string;
|
|
172
|
+
};
|
|
173
|
+
closeIcon: {
|
|
174
|
+
type: BooleanConstructor;
|
|
175
|
+
default: boolean;
|
|
176
|
+
};
|
|
177
|
+
isWithCloseIcon: {
|
|
178
|
+
type: BooleanConstructor;
|
|
179
|
+
default: boolean;
|
|
180
|
+
};
|
|
181
|
+
}>> & {
|
|
182
|
+
onDeleteNotification?: ((...args: any[]) => any) | undefined;
|
|
183
|
+
}, {
|
|
184
|
+
mainType: MainTypeProps;
|
|
185
|
+
infoIcon: boolean;
|
|
186
|
+
infoIconName: string;
|
|
187
|
+
closeIcon: boolean;
|
|
188
|
+
isWithCloseIcon: boolean;
|
|
189
|
+
}>;
|
|
190
|
+
export default _sfc_main;
|
|
@@ -0,0 +1,88 @@
|
|
|
1
|
+
declare const _sfc_main: import("vue").DefineComponent<{
|
|
2
|
+
disabled: {
|
|
3
|
+
type: BooleanConstructor;
|
|
4
|
+
default: boolean;
|
|
5
|
+
};
|
|
6
|
+
inputValue: {
|
|
7
|
+
type: StringConstructor;
|
|
8
|
+
default: string;
|
|
9
|
+
};
|
|
10
|
+
modelValue: {
|
|
11
|
+
type: StringConstructor;
|
|
12
|
+
default: string;
|
|
13
|
+
};
|
|
14
|
+
checkRadio: {
|
|
15
|
+
type: BooleanConstructor;
|
|
16
|
+
default: boolean;
|
|
17
|
+
};
|
|
18
|
+
}, {
|
|
19
|
+
emits: (event: "update:modelValue", ...args: any[]) => void;
|
|
20
|
+
props: any;
|
|
21
|
+
onChange: (event: Event) => void;
|
|
22
|
+
isChecked: import("vue").ComputedRef<boolean>;
|
|
23
|
+
iconColor: import("vue").ComputedRef<object>;
|
|
24
|
+
classObject: import("vue").ComputedRef<object>;
|
|
25
|
+
Icon: import("vue").DefineComponent<{
|
|
26
|
+
iconName: {
|
|
27
|
+
type: StringConstructor;
|
|
28
|
+
required: true;
|
|
29
|
+
};
|
|
30
|
+
colorType: {
|
|
31
|
+
type: import("vue").PropType<import("../icon/Icon.types").IconColorTypeProps>;
|
|
32
|
+
default: string;
|
|
33
|
+
validator: (value: import("../icon/Icon.types").IconColorTypeProps) => boolean;
|
|
34
|
+
};
|
|
35
|
+
sizeType: {
|
|
36
|
+
type: import("vue").PropType<import("../icon/Icon.types").IconSizeTypeProps>;
|
|
37
|
+
default: string;
|
|
38
|
+
validator: (value: import("../icon/Icon.types").IconSizeTypeProps) => boolean;
|
|
39
|
+
};
|
|
40
|
+
}, {
|
|
41
|
+
props: any;
|
|
42
|
+
imgSize: import("vue").ComputedRef<number>;
|
|
43
|
+
classObject: import("vue").ComputedRef<object>;
|
|
44
|
+
}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
|
|
45
|
+
iconName: {
|
|
46
|
+
type: StringConstructor;
|
|
47
|
+
required: true;
|
|
48
|
+
};
|
|
49
|
+
colorType: {
|
|
50
|
+
type: import("vue").PropType<import("../icon/Icon.types").IconColorTypeProps>;
|
|
51
|
+
default: string;
|
|
52
|
+
validator: (value: import("../icon/Icon.types").IconColorTypeProps) => boolean;
|
|
53
|
+
};
|
|
54
|
+
sizeType: {
|
|
55
|
+
type: import("vue").PropType<import("../icon/Icon.types").IconSizeTypeProps>;
|
|
56
|
+
default: string;
|
|
57
|
+
validator: (value: import("../icon/Icon.types").IconSizeTypeProps) => boolean;
|
|
58
|
+
};
|
|
59
|
+
}>>, {
|
|
60
|
+
colorType: import("../icon/Icon.types").IconColorTypeProps;
|
|
61
|
+
sizeType: import("../icon/Icon.types").IconSizeTypeProps;
|
|
62
|
+
}>;
|
|
63
|
+
}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, "update:modelValue"[], "update:modelValue", import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
|
|
64
|
+
disabled: {
|
|
65
|
+
type: BooleanConstructor;
|
|
66
|
+
default: boolean;
|
|
67
|
+
};
|
|
68
|
+
inputValue: {
|
|
69
|
+
type: StringConstructor;
|
|
70
|
+
default: string;
|
|
71
|
+
};
|
|
72
|
+
modelValue: {
|
|
73
|
+
type: StringConstructor;
|
|
74
|
+
default: string;
|
|
75
|
+
};
|
|
76
|
+
checkRadio: {
|
|
77
|
+
type: BooleanConstructor;
|
|
78
|
+
default: boolean;
|
|
79
|
+
};
|
|
80
|
+
}>> & {
|
|
81
|
+
"onUpdate:modelValue"?: ((...args: any[]) => any) | undefined;
|
|
82
|
+
}, {
|
|
83
|
+
disabled: boolean;
|
|
84
|
+
inputValue: string;
|
|
85
|
+
modelValue: string;
|
|
86
|
+
checkRadio: boolean;
|
|
87
|
+
}>;
|
|
88
|
+
export default _sfc_main;
|
|
@@ -0,0 +1,61 @@
|
|
|
1
|
+
declare const _sfc_main: import("vue").DefineComponent<{
|
|
2
|
+
marks: {
|
|
3
|
+
type: ArrayConstructor;
|
|
4
|
+
required: true;
|
|
5
|
+
};
|
|
6
|
+
values: {
|
|
7
|
+
type: ArrayConstructor;
|
|
8
|
+
required: true;
|
|
9
|
+
};
|
|
10
|
+
value: {
|
|
11
|
+
type: NumberConstructor;
|
|
12
|
+
required: true;
|
|
13
|
+
};
|
|
14
|
+
color: {
|
|
15
|
+
type: StringConstructor;
|
|
16
|
+
required: false;
|
|
17
|
+
default: string;
|
|
18
|
+
};
|
|
19
|
+
label: {
|
|
20
|
+
type: StringConstructor;
|
|
21
|
+
required: false;
|
|
22
|
+
default: string;
|
|
23
|
+
};
|
|
24
|
+
}, {
|
|
25
|
+
props: any;
|
|
26
|
+
emit: (emit: 'update:value', payload: number) => void;
|
|
27
|
+
sliderPosition: import("vue").Ref<number>;
|
|
28
|
+
isDarkTheme: import("vue").ComputedRef<boolean>;
|
|
29
|
+
bgColor: import("vue").ComputedRef<"#85858c" | "#3385FF" | "#1E1E1F" | "#2772F5">;
|
|
30
|
+
valueToDisplay: import("vue").ComputedRef<string | number>;
|
|
31
|
+
onChange: (event: Event) => void;
|
|
32
|
+
}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, "update:value"[], "update:value", import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
|
|
33
|
+
marks: {
|
|
34
|
+
type: ArrayConstructor;
|
|
35
|
+
required: true;
|
|
36
|
+
};
|
|
37
|
+
values: {
|
|
38
|
+
type: ArrayConstructor;
|
|
39
|
+
required: true;
|
|
40
|
+
};
|
|
41
|
+
value: {
|
|
42
|
+
type: NumberConstructor;
|
|
43
|
+
required: true;
|
|
44
|
+
};
|
|
45
|
+
color: {
|
|
46
|
+
type: StringConstructor;
|
|
47
|
+
required: false;
|
|
48
|
+
default: string;
|
|
49
|
+
};
|
|
50
|
+
label: {
|
|
51
|
+
type: StringConstructor;
|
|
52
|
+
required: false;
|
|
53
|
+
default: string;
|
|
54
|
+
};
|
|
55
|
+
}>> & {
|
|
56
|
+
"onUpdate:value"?: ((...args: any[]) => any) | undefined;
|
|
57
|
+
}, {
|
|
58
|
+
color: string;
|
|
59
|
+
label: string;
|
|
60
|
+
}>;
|
|
61
|
+
export default _sfc_main;
|