@reinosoft-ui/core 0.1.21 → 0.1.22
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/components/Autocomplete/Autocomplete.vue.d.ts +2 -2
- package/dist/components/Checkbox/Checkbox.vue.d.ts +1 -1
- package/dist/components/Icon/icons/index.d.ts +2 -0
- package/dist/components/Icon/icons/pencil.d.ts +2 -0
- package/dist/components/Icon/icons/smartPhone.d.ts +2 -0
- package/dist/components/Input/Input.vue.d.ts +1 -1
- package/dist/components/Select/Select.vue.d.ts +3 -3
- package/dist/components/Textarea/Textarea.vue.d.ts +1 -1
- package/dist/components/Toggle/Toggle.d.ts +7 -0
- package/dist/components/Toggle/Toggle.vue.d.ts +16 -0
- package/dist/components/Toggle/index.d.ts +3 -0
- package/dist/components/Upload/Upload.vue.d.ts +1 -1
- package/dist/index.d.ts +1 -0
- package/dist/reinosoft-ui.es.js +1097 -1037
- package/dist/reinosoft-ui.umd.js +1 -1
- package/dist/style.css +1 -1
- package/package.json +4 -1
|
@@ -4,10 +4,10 @@ declare const __VLS_export: <T>(__VLS_props: NonNullable<Awaited<typeof __VLS_se
|
|
|
4
4
|
modelValue: AutocompleteModel;
|
|
5
5
|
}) & {
|
|
6
6
|
onSelect?: ((option: import("./Autocomplete").Key) => any) | undefined;
|
|
7
|
-
onBlur?: ((event: FocusEvent) => any) | undefined;
|
|
8
7
|
onChange?: ((query: string) => any) | undefined;
|
|
9
|
-
onFocus?: ((event: FocusEvent) => any) | undefined;
|
|
10
8
|
"onUpdate:modelValue"?: ((value: import("./Autocomplete").Key) => any) | undefined;
|
|
9
|
+
onBlur?: ((event: FocusEvent) => any) | undefined;
|
|
10
|
+
onFocus?: ((event: FocusEvent) => any) | undefined;
|
|
11
11
|
}> & (typeof globalThis extends {
|
|
12
12
|
__VLS_PROPS_FALLBACK: infer P;
|
|
13
13
|
} ? P : {});
|
|
@@ -17,8 +17,8 @@ declare const __VLS_base: import("vue").DefineComponent<__VLS_PublicProps, {}, {
|
|
|
17
17
|
"onUpdate:modelValue"?: ((value: TriState) => any) | undefined;
|
|
18
18
|
}>, {
|
|
19
19
|
required: boolean;
|
|
20
|
-
invalid: boolean;
|
|
21
20
|
disabled: boolean;
|
|
21
|
+
invalid: boolean;
|
|
22
22
|
triState: boolean;
|
|
23
23
|
}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
|
|
24
24
|
declare const __VLS_export: __VLS_WithSlots<typeof __VLS_base, __VLS_Slots>;
|
|
@@ -43,6 +43,7 @@ export declare const icons: {
|
|
|
43
43
|
eyeOff: import("../types").IconDefinition;
|
|
44
44
|
cookie: import("../types").IconDefinition;
|
|
45
45
|
camera: import("../types").IconDefinition;
|
|
46
|
+
pencil: import("../types").IconDefinition;
|
|
46
47
|
fashion: import("../types").IconDefinition;
|
|
47
48
|
addUser: import("../types").IconDefinition;
|
|
48
49
|
loading: import("../types").IconDefinition;
|
|
@@ -65,6 +66,7 @@ export declare const icons: {
|
|
|
65
66
|
arrowLeft: import("../types").IconDefinition;
|
|
66
67
|
starSolid: import("../types").IconDefinition;
|
|
67
68
|
basketball: import("../types").IconDefinition;
|
|
69
|
+
smartPhone: import("../types").IconDefinition;
|
|
68
70
|
gastronomy: import("../types").IconDefinition;
|
|
69
71
|
closeSolid: import("../types").IconDefinition;
|
|
70
72
|
closeCircle: import("../types").IconDefinition;
|
|
@@ -19,9 +19,9 @@ declare const __VLS_base: import("vue").DefineComponent<__VLS_PublicProps, {}, {
|
|
|
19
19
|
blur: (event: FocusEvent) => any;
|
|
20
20
|
focus: (event: FocusEvent) => any;
|
|
21
21
|
}, string, import("vue").PublicProps, Readonly<__VLS_PublicProps> & Readonly<{
|
|
22
|
+
"onUpdate:modelValue"?: ((value: string | number) => any) | undefined;
|
|
22
23
|
onBlur?: ((event: FocusEvent) => any) | undefined;
|
|
23
24
|
onFocus?: ((event: FocusEvent) => any) | undefined;
|
|
24
|
-
"onUpdate:modelValue"?: ((value: string | number) => any) | undefined;
|
|
25
25
|
}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
|
|
26
26
|
declare const __VLS_export: __VLS_WithSlots<typeof __VLS_base, __VLS_Slots>;
|
|
27
27
|
declare const _default: typeof __VLS_export;
|
|
@@ -17,16 +17,16 @@ type __VLS_Slots = {} & {
|
|
|
17
17
|
declare const __VLS_base: import("vue").DefineComponent<__VLS_PublicProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
18
18
|
"update:modelValue": (value: string | number) => any;
|
|
19
19
|
} & {
|
|
20
|
-
blur: (event: FocusEvent) => any;
|
|
21
20
|
change: (value: string | number | Object | undefined) => any;
|
|
21
|
+
blur: (event: FocusEvent) => any;
|
|
22
22
|
click: (event: MouseEvent) => any;
|
|
23
23
|
focus: (event: FocusEvent) => any;
|
|
24
24
|
}, string, import("vue").PublicProps, Readonly<__VLS_PublicProps> & Readonly<{
|
|
25
|
-
onBlur?: ((event: FocusEvent) => any) | undefined;
|
|
26
25
|
onChange?: ((value: string | number | Object | undefined) => any) | undefined;
|
|
26
|
+
"onUpdate:modelValue"?: ((value: string | number) => any) | undefined;
|
|
27
|
+
onBlur?: ((event: FocusEvent) => any) | undefined;
|
|
27
28
|
onClick?: ((event: MouseEvent) => any) | undefined;
|
|
28
29
|
onFocus?: ((event: FocusEvent) => any) | undefined;
|
|
29
|
-
"onUpdate:modelValue"?: ((value: string | number) => any) | undefined;
|
|
30
30
|
}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
|
|
31
31
|
declare const __VLS_export: __VLS_WithSlots<typeof __VLS_base, __VLS_Slots>;
|
|
32
32
|
declare const _default: typeof __VLS_export;
|
|
@@ -19,9 +19,9 @@ declare const __VLS_base: import("vue").DefineComponent<__VLS_PublicProps, {}, {
|
|
|
19
19
|
blur: (event: FocusEvent) => any;
|
|
20
20
|
focus: (event: FocusEvent) => any;
|
|
21
21
|
}, string, import("vue").PublicProps, Readonly<__VLS_PublicProps> & Readonly<{
|
|
22
|
+
"onUpdate:modelValue"?: ((value: string | number) => any) | undefined;
|
|
22
23
|
onBlur?: ((event: FocusEvent) => any) | undefined;
|
|
23
24
|
onFocus?: ((event: FocusEvent) => any) | undefined;
|
|
24
|
-
"onUpdate:modelValue"?: ((value: string | number) => any) | undefined;
|
|
25
25
|
}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
|
|
26
26
|
declare const __VLS_export: __VLS_WithSlots<typeof __VLS_base, __VLS_Slots>;
|
|
27
27
|
declare const _default: typeof __VLS_export;
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
import type { Props } from './Toggle';
|
|
2
|
+
type __VLS_Props = Props;
|
|
3
|
+
type __VLS_ModelProps = {
|
|
4
|
+
modelValue?: boolean;
|
|
5
|
+
};
|
|
6
|
+
type __VLS_PublicProps = __VLS_Props & __VLS_ModelProps;
|
|
7
|
+
declare const __VLS_export: import("vue").DefineComponent<__VLS_PublicProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
8
|
+
"update:modelValue": (value: boolean | undefined) => any;
|
|
9
|
+
} & {
|
|
10
|
+
change: (value: boolean) => any;
|
|
11
|
+
}, string, import("vue").PublicProps, Readonly<__VLS_PublicProps> & Readonly<{
|
|
12
|
+
onChange?: ((value: boolean) => any) | undefined;
|
|
13
|
+
"onUpdate:modelValue"?: ((value: boolean | undefined) => any) | undefined;
|
|
14
|
+
}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
|
|
15
|
+
declare const _default: typeof __VLS_export;
|
|
16
|
+
export default _default;
|
|
@@ -30,13 +30,13 @@ declare const __VLS_base: import("vue").DefineComponent<__VLS_PublicProps, {}, {
|
|
|
30
30
|
remove: (file: UploadFile) => any;
|
|
31
31
|
}, string, import("vue").PublicProps, Readonly<__VLS_PublicProps> & Readonly<{
|
|
32
32
|
onSelect?: ((files: File[]) => any) | undefined;
|
|
33
|
+
"onUpdate:modelValue"?: ((value: UploadFile[]) => any) | undefined;
|
|
33
34
|
onUpload?: ((file: UploadFile, api: {
|
|
34
35
|
onProgress: (value: number) => void;
|
|
35
36
|
done: () => void;
|
|
36
37
|
fail: (error: string) => void;
|
|
37
38
|
signal: AbortSignal;
|
|
38
39
|
}) => any) | undefined;
|
|
39
|
-
"onUpdate:modelValue"?: ((value: UploadFile[]) => any) | undefined;
|
|
40
40
|
onRemove?: ((file: UploadFile) => any) | undefined;
|
|
41
41
|
}>, {
|
|
42
42
|
multiple: boolean;
|
package/dist/index.d.ts
CHANGED
|
@@ -2,6 +2,7 @@ import './style.css';
|
|
|
2
2
|
import './env.d.ts';
|
|
3
3
|
export { default as Image } from './components/Image';
|
|
4
4
|
export { default as Button } from './components/Button';
|
|
5
|
+
export { default as Toggle } from './components/Toggle';
|
|
5
6
|
export { default as Editor } from './components/Editor';
|
|
6
7
|
export { default as Upload } from './components/Upload';
|
|
7
8
|
export { default as Tooltip } from './components/Tooltip';
|