@codemonster-ru/vueforge 0.54.0 → 0.55.0
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 +53 -2
- package/dist/index.css +1 -1
- package/dist/index.d.ts +1 -0
- package/dist/index.ts.mjs +2473 -2340
- package/dist/index.ts.umd.js +3 -3
- package/dist/package/components/__tests__/inline-edit.test.d.ts +1 -0
- package/dist/package/components/inline-edit.vue.d.ts +47 -0
- package/dist/package/config/theme-core.d.ts +35 -0
- package/dist/package/themes/default/components/inline-edit.d.ts +35 -0
- package/dist/package/themes/default/index.d.ts +34 -0
- package/package.json +1 -1
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export {};
|
|
@@ -0,0 +1,47 @@
|
|
|
1
|
+
type Size = 'small' | 'normal' | 'large';
|
|
2
|
+
type Variant = 'filled' | 'outlined';
|
|
3
|
+
type InlineEditType = 'text' | 'number';
|
|
4
|
+
type InlineEditValue = string | number | null;
|
|
5
|
+
interface Props {
|
|
6
|
+
modelValue?: InlineEditValue;
|
|
7
|
+
type?: InlineEditType;
|
|
8
|
+
placeholder?: string;
|
|
9
|
+
disabled?: boolean;
|
|
10
|
+
readonly?: boolean;
|
|
11
|
+
size?: Size;
|
|
12
|
+
variant?: Variant;
|
|
13
|
+
editLabel?: string;
|
|
14
|
+
saveLabel?: string;
|
|
15
|
+
cancelLabel?: string;
|
|
16
|
+
}
|
|
17
|
+
declare const _default: import('vue').DefineComponent<Props, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
|
|
18
|
+
end: (...args: any[]) => void;
|
|
19
|
+
blur: (...args: any[]) => void;
|
|
20
|
+
cancel: (...args: any[]) => void;
|
|
21
|
+
focus: (...args: any[]) => void;
|
|
22
|
+
"update:modelValue": (...args: any[]) => void;
|
|
23
|
+
save: (...args: any[]) => void;
|
|
24
|
+
start: (...args: any[]) => void;
|
|
25
|
+
}, string, import('vue').PublicProps, Readonly<Props> & Readonly<{
|
|
26
|
+
onEnd?: ((...args: any[]) => any) | undefined;
|
|
27
|
+
onBlur?: ((...args: any[]) => any) | undefined;
|
|
28
|
+
onCancel?: ((...args: any[]) => any) | undefined;
|
|
29
|
+
onFocus?: ((...args: any[]) => any) | undefined;
|
|
30
|
+
"onUpdate:modelValue"?: ((...args: any[]) => any) | undefined;
|
|
31
|
+
onSave?: ((...args: any[]) => any) | undefined;
|
|
32
|
+
onStart?: ((...args: any[]) => any) | undefined;
|
|
33
|
+
}>, {
|
|
34
|
+
type: InlineEditType;
|
|
35
|
+
disabled: boolean;
|
|
36
|
+
size: Size;
|
|
37
|
+
variant: Variant;
|
|
38
|
+
modelValue: InlineEditValue;
|
|
39
|
+
placeholder: string;
|
|
40
|
+
readonly: boolean;
|
|
41
|
+
editLabel: string;
|
|
42
|
+
saveLabel: string;
|
|
43
|
+
cancelLabel: string;
|
|
44
|
+
}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {
|
|
45
|
+
inputRef: HTMLInputElement;
|
|
46
|
+
}, HTMLDivElement>;
|
|
47
|
+
export default _default;
|
|
@@ -77,6 +77,40 @@ export type InputTokens = {
|
|
|
77
77
|
fontSize?: string;
|
|
78
78
|
};
|
|
79
79
|
};
|
|
80
|
+
export type InlineEditTokens = {
|
|
81
|
+
gap?: string;
|
|
82
|
+
fontSize?: string;
|
|
83
|
+
padding?: string;
|
|
84
|
+
borderRadius?: string;
|
|
85
|
+
borderColor?: string;
|
|
86
|
+
backgroundColor?: string;
|
|
87
|
+
textColor?: string;
|
|
88
|
+
placeholderColor?: string;
|
|
89
|
+
focusBorderColor?: string;
|
|
90
|
+
focusRingShadow?: string;
|
|
91
|
+
hoverBorderColor?: string;
|
|
92
|
+
disabledOpacity?: string;
|
|
93
|
+
actionsGap?: string;
|
|
94
|
+
buttonPadding?: string;
|
|
95
|
+
buttonRadius?: string;
|
|
96
|
+
buttonBorderColor?: string;
|
|
97
|
+
buttonBackgroundColor?: string;
|
|
98
|
+
buttonTextColor?: string;
|
|
99
|
+
buttonHoverBackgroundColor?: string;
|
|
100
|
+
cancelButtonBackgroundColor?: string;
|
|
101
|
+
cancelButtonTextColor?: string;
|
|
102
|
+
cancelButtonBorderColor?: string;
|
|
103
|
+
small?: {
|
|
104
|
+
padding?: string;
|
|
105
|
+
fontSize?: string;
|
|
106
|
+
buttonPadding?: string;
|
|
107
|
+
};
|
|
108
|
+
large?: {
|
|
109
|
+
padding?: string;
|
|
110
|
+
fontSize?: string;
|
|
111
|
+
buttonPadding?: string;
|
|
112
|
+
};
|
|
113
|
+
};
|
|
80
114
|
export type SearchInputTokens = {
|
|
81
115
|
gap?: string;
|
|
82
116
|
fontSize?: string;
|
|
@@ -1573,6 +1607,7 @@ export type ThemeComponentTokens = {
|
|
|
1573
1607
|
tabs?: TabsTokens;
|
|
1574
1608
|
accordion?: AccordionTokens;
|
|
1575
1609
|
input?: InputTokens;
|
|
1610
|
+
inlineEdit?: InlineEditTokens;
|
|
1576
1611
|
searchInput?: SearchInputTokens;
|
|
1577
1612
|
passwordInput?: PasswordInputTokens;
|
|
1578
1613
|
otpInput?: OtpInputTokens;
|
|
@@ -0,0 +1,35 @@
|
|
|
1
|
+
declare const _default: {
|
|
2
|
+
gap: string;
|
|
3
|
+
fontSize: string;
|
|
4
|
+
padding: string;
|
|
5
|
+
borderRadius: string;
|
|
6
|
+
borderColor: string;
|
|
7
|
+
backgroundColor: string;
|
|
8
|
+
textColor: string;
|
|
9
|
+
placeholderColor: string;
|
|
10
|
+
focusBorderColor: string;
|
|
11
|
+
focusRingShadow: string;
|
|
12
|
+
hoverBorderColor: string;
|
|
13
|
+
disabledOpacity: string;
|
|
14
|
+
actionsGap: string;
|
|
15
|
+
buttonPadding: string;
|
|
16
|
+
buttonRadius: string;
|
|
17
|
+
buttonBorderColor: string;
|
|
18
|
+
buttonBackgroundColor: string;
|
|
19
|
+
buttonTextColor: string;
|
|
20
|
+
buttonHoverBackgroundColor: string;
|
|
21
|
+
cancelButtonBackgroundColor: string;
|
|
22
|
+
cancelButtonTextColor: string;
|
|
23
|
+
cancelButtonBorderColor: string;
|
|
24
|
+
small: {
|
|
25
|
+
padding: string;
|
|
26
|
+
fontSize: string;
|
|
27
|
+
buttonPadding: string;
|
|
28
|
+
};
|
|
29
|
+
large: {
|
|
30
|
+
padding: string;
|
|
31
|
+
fontSize: string;
|
|
32
|
+
buttonPadding: string;
|
|
33
|
+
};
|
|
34
|
+
};
|
|
35
|
+
export default _default;
|
|
@@ -234,6 +234,40 @@ declare const _default: {
|
|
|
234
234
|
fontSize: string;
|
|
235
235
|
};
|
|
236
236
|
};
|
|
237
|
+
inlineEdit: {
|
|
238
|
+
gap: string;
|
|
239
|
+
fontSize: string;
|
|
240
|
+
padding: string;
|
|
241
|
+
borderRadius: string;
|
|
242
|
+
borderColor: string;
|
|
243
|
+
backgroundColor: string;
|
|
244
|
+
textColor: string;
|
|
245
|
+
placeholderColor: string;
|
|
246
|
+
focusBorderColor: string;
|
|
247
|
+
focusRingShadow: string;
|
|
248
|
+
hoverBorderColor: string;
|
|
249
|
+
disabledOpacity: string;
|
|
250
|
+
actionsGap: string;
|
|
251
|
+
buttonPadding: string;
|
|
252
|
+
buttonRadius: string;
|
|
253
|
+
buttonBorderColor: string;
|
|
254
|
+
buttonBackgroundColor: string;
|
|
255
|
+
buttonTextColor: string;
|
|
256
|
+
buttonHoverBackgroundColor: string;
|
|
257
|
+
cancelButtonBackgroundColor: string;
|
|
258
|
+
cancelButtonTextColor: string;
|
|
259
|
+
cancelButtonBorderColor: string;
|
|
260
|
+
small: {
|
|
261
|
+
padding: string;
|
|
262
|
+
fontSize: string;
|
|
263
|
+
buttonPadding: string;
|
|
264
|
+
};
|
|
265
|
+
large: {
|
|
266
|
+
padding: string;
|
|
267
|
+
fontSize: string;
|
|
268
|
+
buttonPadding: string;
|
|
269
|
+
};
|
|
270
|
+
};
|
|
237
271
|
searchInput: {
|
|
238
272
|
gap: string;
|
|
239
273
|
fontSize: string;
|