@salesql/sql_components_vue3 0.3.1 → 2.0.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/dist/constants/events.d.ts +16 -0
- package/dist/index.cjs +1 -1
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.ts +39 -8
- package/dist/index.es.js +1119 -144
- package/dist/index.es.js.map +1 -1
- package/dist/sql_components_vue3.css +1 -1
- package/dist/ui/DsAlert/DsAlert.types.d.ts +13 -0
- package/dist/ui/DsAlert/DsAlert.vue.d.ts +75 -0
- package/dist/ui/DsAlert/index.d.ts +2 -0
- package/dist/ui/DsAvatar/DsAvatar.types.d.ts +8 -0
- package/dist/ui/DsAvatar/DsAvatar.vue.d.ts +62 -0
- package/dist/ui/DsAvatar/index.d.ts +2 -0
- package/dist/ui/DsBadge/DsBadge.types.d.ts +9 -0
- package/dist/ui/DsBadge/DsBadge.vue.d.ts +26 -0
- package/dist/ui/DsBadge/index.d.ts +2 -0
- package/dist/ui/DsButton/DsButton.types.d.ts +24 -0
- package/dist/ui/DsButton/DsButton.vue.d.ts +97 -0
- package/dist/ui/DsButton/index.d.ts +2 -0
- package/dist/ui/DsCheckbox/DsCheckbox.types.d.ts +7 -0
- package/dist/ui/DsCheckbox/DsCheckbox.vue.d.ts +49 -0
- package/dist/ui/DsCheckbox/index.d.ts +2 -0
- package/dist/ui/DsContactValue/DsContactValue.types.d.ts +16 -0
- package/dist/ui/DsContactValue/DsContactValue.vue.d.ts +112 -0
- package/dist/ui/DsContactValue/index.d.ts +2 -0
- package/dist/ui/DsDataCard/DsDataCard.types.d.ts +9 -0
- package/dist/ui/DsDataCard/DsDataCard.vue.d.ts +173 -0
- package/dist/ui/DsDataCard/index.d.ts +2 -0
- package/dist/ui/DsInput/DsInput.types.d.ts +15 -0
- package/dist/ui/DsInput/DsInput.vue.d.ts +112 -0
- package/dist/ui/DsInput/index.d.ts +2 -0
- package/dist/ui/DsModal/DsModal.types.d.ts +8 -0
- package/dist/ui/DsModal/DsModal.vue.d.ts +69 -0
- package/dist/ui/DsModal/index.d.ts +2 -0
- package/dist/ui/DsNotification/DsNotification.types.d.ts +15 -0
- package/dist/ui/DsNotification/DsNotification.vue.d.ts +92 -0
- package/dist/ui/DsNotification/index.d.ts +2 -0
- package/dist/ui/DsSpinner/DsSpinner.types.d.ts +6 -0
- package/dist/ui/{SqlSpinner/SqlSpinner.vue.d.ts → DsSpinner/DsSpinner.vue.d.ts} +15 -15
- package/dist/ui/DsSpinner/index.d.ts +2 -0
- package/dist/ui/DsTable/DsTable.types.d.ts +16 -0
- package/dist/ui/{BasicTable/BasicTable.vue.d.ts → DsTable/DsTable.vue.d.ts} +24 -6
- package/dist/ui/DsTable/index.d.ts +2 -0
- package/dist/ui/DsTag/DsTag.types.d.ts +9 -0
- package/dist/ui/DsTag/DsTag.vue.d.ts +45 -0
- package/dist/ui/DsTag/index.d.ts +2 -0
- package/dist/ui/DsTextarea/DsTextarea.types.d.ts +8 -0
- package/dist/ui/DsTextarea/DsTextarea.vue.d.ts +70 -0
- package/dist/ui/DsTextarea/index.d.ts +2 -0
- package/dist/ui/DsVerificationIcon/DsVerificationIcon.types.d.ts +6 -0
- package/dist/ui/DsVerificationIcon/DsVerificationIcon.vue.d.ts +52 -0
- package/dist/ui/DsVerificationIcon/index.d.ts +2 -0
- package/package.json +6 -6
- package/dist/ui/BasicTable/BasicTable.types.d.ts +0 -16
- package/dist/ui/BasicTable/index.d.ts +0 -2
- package/dist/ui/SqlButton/SqlButton.types.d.ts +0 -31
- package/dist/ui/SqlButton/SqlButton.vue.d.ts +0 -75
- package/dist/ui/SqlButton/index.d.ts +0 -2
- package/dist/ui/SqlSpinner/SqlSpinner.types.d.ts +0 -11
- package/dist/ui/SqlSpinner/index.d.ts +0 -2
|
@@ -1,75 +0,0 @@
|
|
|
1
|
-
import { type PropType } from 'vue';
|
|
2
|
-
import { type SqlButtonNativeType, type SqlButtonSize, type SqlButtonType } from './SqlButton.types';
|
|
3
|
-
declare var __VLS_5: {};
|
|
4
|
-
type __VLS_Slots = {} & {
|
|
5
|
-
default?: (props: typeof __VLS_5) => any;
|
|
6
|
-
};
|
|
7
|
-
declare const __VLS_component: import("vue").DefineComponent<import("vue").ExtractPropTypes<{
|
|
8
|
-
type: {
|
|
9
|
-
type: PropType<SqlButtonType>;
|
|
10
|
-
default: "default";
|
|
11
|
-
};
|
|
12
|
-
size: {
|
|
13
|
-
type: PropType<SqlButtonSize>;
|
|
14
|
-
default: "large";
|
|
15
|
-
};
|
|
16
|
-
nativeType: {
|
|
17
|
-
type: PropType<SqlButtonNativeType>;
|
|
18
|
-
default: "button";
|
|
19
|
-
};
|
|
20
|
-
selected: {
|
|
21
|
-
type: PropType<boolean | null>;
|
|
22
|
-
default: null;
|
|
23
|
-
};
|
|
24
|
-
loading: BooleanConstructor;
|
|
25
|
-
disabled: BooleanConstructor;
|
|
26
|
-
plain: BooleanConstructor;
|
|
27
|
-
autofocus: BooleanConstructor;
|
|
28
|
-
round: BooleanConstructor;
|
|
29
|
-
circle: BooleanConstructor;
|
|
30
|
-
}>, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {} & {
|
|
31
|
-
click: (event: MouseEvent) => any;
|
|
32
|
-
}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
|
|
33
|
-
type: {
|
|
34
|
-
type: PropType<SqlButtonType>;
|
|
35
|
-
default: "default";
|
|
36
|
-
};
|
|
37
|
-
size: {
|
|
38
|
-
type: PropType<SqlButtonSize>;
|
|
39
|
-
default: "large";
|
|
40
|
-
};
|
|
41
|
-
nativeType: {
|
|
42
|
-
type: PropType<SqlButtonNativeType>;
|
|
43
|
-
default: "button";
|
|
44
|
-
};
|
|
45
|
-
selected: {
|
|
46
|
-
type: PropType<boolean | null>;
|
|
47
|
-
default: null;
|
|
48
|
-
};
|
|
49
|
-
loading: BooleanConstructor;
|
|
50
|
-
disabled: BooleanConstructor;
|
|
51
|
-
plain: BooleanConstructor;
|
|
52
|
-
autofocus: BooleanConstructor;
|
|
53
|
-
round: BooleanConstructor;
|
|
54
|
-
circle: BooleanConstructor;
|
|
55
|
-
}>> & Readonly<{
|
|
56
|
-
onClick?: ((event: MouseEvent) => any) | undefined;
|
|
57
|
-
}>, {
|
|
58
|
-
type: SqlButtonType;
|
|
59
|
-
size: SqlButtonSize;
|
|
60
|
-
circle: boolean;
|
|
61
|
-
nativeType: SqlButtonNativeType;
|
|
62
|
-
selected: boolean | null;
|
|
63
|
-
loading: boolean;
|
|
64
|
-
disabled: boolean;
|
|
65
|
-
plain: boolean;
|
|
66
|
-
autofocus: boolean;
|
|
67
|
-
round: boolean;
|
|
68
|
-
}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
|
|
69
|
-
declare const _default: __VLS_WithSlots<typeof __VLS_component, __VLS_Slots>;
|
|
70
|
-
export default _default;
|
|
71
|
-
type __VLS_WithSlots<T, S> = T & {
|
|
72
|
-
new (): {
|
|
73
|
-
$slots: S;
|
|
74
|
-
};
|
|
75
|
-
};
|
|
@@ -1,11 +0,0 @@
|
|
|
1
|
-
export declare const SQL_SPINNER_THEME_MODES: {
|
|
2
|
-
readonly LIGHT: "light";
|
|
3
|
-
readonly DARK: "dark";
|
|
4
|
-
};
|
|
5
|
-
export type SqlSpinnerThemeMode = (typeof SQL_SPINNER_THEME_MODES)[keyof typeof SQL_SPINNER_THEME_MODES];
|
|
6
|
-
export declare const SQL_SPINNER_SIZES: {
|
|
7
|
-
readonly SMALL: "small";
|
|
8
|
-
readonly MEDIUM: "medium";
|
|
9
|
-
readonly LARGE: "large";
|
|
10
|
-
};
|
|
11
|
-
export type SqlSpinnerSize = (typeof SQL_SPINNER_SIZES)[keyof typeof SQL_SPINNER_SIZES];
|