@caipira/tamandua 0.0.100 → 0.0.102
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/Alert.js +6 -0
- package/dist/Alert.vue_vue_type_script_setup_true_lang-CAGHRWvs.js +67 -0
- package/dist/DialogProvider.js +6 -0
- package/dist/DialogProvider.vue_vue_type_script_setup_true_lang-DdpepOBn.js +24 -0
- package/dist/InputSelect.js +2 -2
- package/dist/{InputSelect.vue_vue_type_script_setup_true_lang-CkW6maZO.js → InputSelect.vue_vue_type_script_setup_true_lang-N2nSmX8r.js} +33 -33
- package/dist/Modal.js +2 -2
- package/dist/Modal.vue_vue_type_script_setup_true_lang-BULzzlLD.js +89 -0
- package/dist/components.js +92 -88
- package/dist/composables.js +11 -9
- package/dist/{plugin-CPpRqUnI.js → plugin-BbE8ivq1.js} +1 -1
- package/dist/{plugin-TMApjjiI.js → plugin-BeifNbnf.js} +1 -1
- package/dist/plugin-NlTwzbQb.js +10 -0
- package/dist/plugin-W9_PLHv4.js +10 -0
- package/dist/plugins-iuR3SgQL.js +121 -0
- package/dist/plugins.js +95 -90
- package/dist/tamandua.js +1 -1
- package/dist/types/components/Alert/Alert.story.d.ts +19 -0
- package/dist/types/components/Alert/Alert.vue.d.ts +57 -0
- package/dist/types/components/Alert/index.d.ts +5 -0
- package/dist/types/components/Alert/plugin.d.ts +4 -0
- package/dist/types/components/Alert/types.d.ts +12 -0
- package/dist/types/components/Button/Button.vue.d.ts +9 -9
- package/dist/types/components/DialogProvider/DialogProvider.vue.d.ts +2 -0
- package/dist/types/components/DialogProvider/index.d.ts +4 -0
- package/dist/types/components/DialogProvider/plugin.d.ts +4 -0
- package/dist/types/components/Drawer/Drawer.vue.d.ts +1 -1
- package/dist/types/components/Dropdown/Dropdown.vue.d.ts +1 -1
- package/dist/types/components/InputSelect/InputSelect.vue.d.ts +14 -12
- package/dist/types/components/InputSelect/types.d.ts +1 -0
- package/dist/types/components/InputText/InputText.vue.d.ts +9 -9
- package/dist/types/components/Modal/Modal.story.d.ts +21 -0
- package/dist/types/components/Modal/Modal.vue.d.ts +19 -9
- package/dist/types/components/Modal/types.d.ts +24 -0
- package/dist/types/components/Popconfirm/Popconfirm.vue.d.ts +1 -1
- package/dist/types/components/index.d.ts +4 -2
- package/dist/types/components/plugins.d.ts +8 -6
- package/dist/types/components/types.d.ts +2 -1
- package/dist/types/composables/index.d.ts +2 -1
- package/dist/types/composables/useDialog.d.ts +471 -0
- package/dist/useDialog-BOJPIAnz.js +42 -0
- package/package.json +1 -1
- package/volar.d.ts +46 -44
- package/dist/Modal.vue_vue_type_script_setup_true_lang-60BGY-iH.js +0 -81
- package/dist/plugins-CyxTeM7y.js +0 -116
|
@@ -55,6 +55,12 @@ declare const __VLS_component: import('vue').DefineComponent<{
|
|
|
55
55
|
type: import("vue").PropType<InputSelectOption[]>;
|
|
56
56
|
default: () => never[];
|
|
57
57
|
};
|
|
58
|
+
resource: {
|
|
59
|
+
type: import("vue").PropType<(filters?: APISearchFilters | undefined) => Promise<{
|
|
60
|
+
items: unknown[];
|
|
61
|
+
pagination: Pagination;
|
|
62
|
+
}>>;
|
|
63
|
+
};
|
|
58
64
|
initialValue: {
|
|
59
65
|
type: import("vue").PropType<any>;
|
|
60
66
|
};
|
|
@@ -62,12 +68,6 @@ declare const __VLS_component: import('vue').DefineComponent<{
|
|
|
62
68
|
type: import("vue").PropType<string>;
|
|
63
69
|
default: string;
|
|
64
70
|
};
|
|
65
|
-
resource: {
|
|
66
|
-
type: import("vue").PropType<(filters?: APISearchFilters | undefined) => Promise<{
|
|
67
|
-
items: unknown[];
|
|
68
|
-
pagination: Pagination;
|
|
69
|
-
}>>;
|
|
70
|
-
};
|
|
71
71
|
mapper: {
|
|
72
72
|
type: import("vue").PropType<(i: any) => InputSelectOption>;
|
|
73
73
|
default: (i: any) => InputSelectOption;
|
|
@@ -100,6 +100,7 @@ declare const __VLS_component: import('vue').DefineComponent<{
|
|
|
100
100
|
};
|
|
101
101
|
}, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
102
102
|
"update:model-value": (val: any) => void;
|
|
103
|
+
"initial-hydration": (val: any) => void;
|
|
103
104
|
}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
|
|
104
105
|
modelValue: import("vue").PropType<InputSelectValue>;
|
|
105
106
|
filter: {
|
|
@@ -121,6 +122,12 @@ declare const __VLS_component: import('vue').DefineComponent<{
|
|
|
121
122
|
type: import("vue").PropType<InputSelectOption[]>;
|
|
122
123
|
default: () => never[];
|
|
123
124
|
};
|
|
125
|
+
resource: {
|
|
126
|
+
type: import("vue").PropType<(filters?: APISearchFilters | undefined) => Promise<{
|
|
127
|
+
items: unknown[];
|
|
128
|
+
pagination: Pagination;
|
|
129
|
+
}>>;
|
|
130
|
+
};
|
|
124
131
|
initialValue: {
|
|
125
132
|
type: import("vue").PropType<any>;
|
|
126
133
|
};
|
|
@@ -128,12 +135,6 @@ declare const __VLS_component: import('vue').DefineComponent<{
|
|
|
128
135
|
type: import("vue").PropType<string>;
|
|
129
136
|
default: string;
|
|
130
137
|
};
|
|
131
|
-
resource: {
|
|
132
|
-
type: import("vue").PropType<(filters?: APISearchFilters | undefined) => Promise<{
|
|
133
|
-
items: unknown[];
|
|
134
|
-
pagination: Pagination;
|
|
135
|
-
}>>;
|
|
136
|
-
};
|
|
137
138
|
mapper: {
|
|
138
139
|
type: import("vue").PropType<(i: any) => InputSelectOption>;
|
|
139
140
|
default: (i: any) => InputSelectOption;
|
|
@@ -166,6 +167,7 @@ declare const __VLS_component: import('vue').DefineComponent<{
|
|
|
166
167
|
};
|
|
167
168
|
}>> & {
|
|
168
169
|
"onUpdate:model-value"?: ((val: any) => any) | undefined;
|
|
170
|
+
"onInitial-hydration"?: ((val: any) => any) | undefined;
|
|
169
171
|
}, {
|
|
170
172
|
filter: (input: string, option: InputSelectOption) => boolean;
|
|
171
173
|
size: FormControlSize;
|
|
@@ -2,14 +2,14 @@ import { FormControlSize } from '../../enums/ui.js';
|
|
|
2
2
|
|
|
3
3
|
declare const _default: import('vue').DefineComponent<{
|
|
4
4
|
modelValue: import("vue").PropType<any>;
|
|
5
|
-
size: {
|
|
6
|
-
type: import("vue").PropType<"sm" | "default">;
|
|
7
|
-
default: FormControlSize;
|
|
8
|
-
};
|
|
9
5
|
type: {
|
|
10
6
|
type: import("vue").PropType<string>;
|
|
11
7
|
default: string;
|
|
12
8
|
};
|
|
9
|
+
size: {
|
|
10
|
+
type: import("vue").PropType<"default" | "sm">;
|
|
11
|
+
default: FormControlSize;
|
|
12
|
+
};
|
|
13
13
|
disabled: {
|
|
14
14
|
type: import("vue").PropType<boolean>;
|
|
15
15
|
default: boolean;
|
|
@@ -34,14 +34,14 @@ declare const _default: import('vue').DefineComponent<{
|
|
|
34
34
|
"keyup.enter": (val: any) => void;
|
|
35
35
|
}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
|
|
36
36
|
modelValue: import("vue").PropType<any>;
|
|
37
|
-
size: {
|
|
38
|
-
type: import("vue").PropType<"sm" | "default">;
|
|
39
|
-
default: FormControlSize;
|
|
40
|
-
};
|
|
41
37
|
type: {
|
|
42
38
|
type: import("vue").PropType<string>;
|
|
43
39
|
default: string;
|
|
44
40
|
};
|
|
41
|
+
size: {
|
|
42
|
+
type: import("vue").PropType<"default" | "sm">;
|
|
43
|
+
default: FormControlSize;
|
|
44
|
+
};
|
|
45
45
|
disabled: {
|
|
46
46
|
type: import("vue").PropType<boolean>;
|
|
47
47
|
default: boolean;
|
|
@@ -65,8 +65,8 @@ declare const _default: import('vue').DefineComponent<{
|
|
|
65
65
|
}>> & {
|
|
66
66
|
"onKeyup.enter"?: ((val: any) => any) | undefined;
|
|
67
67
|
}, {
|
|
68
|
-
size: `${FormControlSize}`;
|
|
69
68
|
type: string;
|
|
69
|
+
size: `${FormControlSize}`;
|
|
70
70
|
disabled: boolean;
|
|
71
71
|
readonly: boolean;
|
|
72
72
|
placeholder: string;
|
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
declare const _default: {
|
|
2
|
+
title: string;
|
|
3
|
+
args: {};
|
|
4
|
+
};
|
|
5
|
+
export default _default;
|
|
6
|
+
export declare const Modal: (args: any) => {
|
|
7
|
+
setup(): {
|
|
8
|
+
args: any;
|
|
9
|
+
open: import('vue').Ref<boolean>;
|
|
10
|
+
title: import('vue').Ref<string>;
|
|
11
|
+
canClose: import('vue').Ref<boolean>;
|
|
12
|
+
modal: (options: import('./types.js').ModalProps & {
|
|
13
|
+
onClose?: () => void;
|
|
14
|
+
}) => void;
|
|
15
|
+
CustomModalBody: import('vue').Raw<import("vue").DefineComponent<{}, {
|
|
16
|
+
props: import("@vue/shared").LooseRequired<{} & {}>;
|
|
17
|
+
emit: (event: string, ...args: any[]) => void;
|
|
18
|
+
}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{}>>, {}, {}>>;
|
|
19
|
+
};
|
|
20
|
+
template: string;
|
|
21
|
+
};
|
|
@@ -1,13 +1,12 @@
|
|
|
1
1
|
import { ModalProps } from './types.js';
|
|
2
2
|
|
|
3
|
-
declare
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
footer?(_: {}): any;
|
|
7
|
-
};
|
|
8
|
-
declare const __VLS_component: import('vue').DefineComponent<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<ModalProps>, {
|
|
3
|
+
declare const _default: __VLS_WithTemplateSlots<import('vue').DefineComponent<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<ModalProps>, {
|
|
4
|
+
is: undefined;
|
|
5
|
+
props: () => {};
|
|
9
6
|
title: string;
|
|
7
|
+
canClose: boolean;
|
|
10
8
|
showHeader: boolean;
|
|
9
|
+
showFooter: boolean;
|
|
11
10
|
injectStyle: () => {
|
|
12
11
|
wrapper: string;
|
|
13
12
|
body: string;
|
|
@@ -18,8 +17,12 @@ declare const __VLS_component: import('vue').DefineComponent<__VLS_WithDefaults<
|
|
|
18
17
|
}>, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
19
18
|
closed: () => void;
|
|
20
19
|
}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<ModalProps>, {
|
|
20
|
+
is: undefined;
|
|
21
|
+
props: () => {};
|
|
21
22
|
title: string;
|
|
23
|
+
canClose: boolean;
|
|
22
24
|
showHeader: boolean;
|
|
25
|
+
showFooter: boolean;
|
|
23
26
|
injectStyle: () => {
|
|
24
27
|
wrapper: string;
|
|
25
28
|
body: string;
|
|
@@ -31,12 +34,19 @@ declare const __VLS_component: import('vue').DefineComponent<__VLS_WithDefaults<
|
|
|
31
34
|
onClosed?: (() => any) | undefined;
|
|
32
35
|
}, {
|
|
33
36
|
title: string;
|
|
37
|
+
props: Record<string, any>;
|
|
38
|
+
is: import("vue").Component;
|
|
39
|
+
canClose: boolean;
|
|
34
40
|
showHeader: boolean;
|
|
35
|
-
|
|
41
|
+
showFooter: boolean;
|
|
36
42
|
injectStyle: any;
|
|
37
43
|
hasBackdrop: boolean;
|
|
38
|
-
|
|
39
|
-
|
|
44
|
+
disableStyle: boolean;
|
|
45
|
+
}, {}>, {
|
|
46
|
+
header?(_: {}): any;
|
|
47
|
+
default?(_: {}): any;
|
|
48
|
+
footer?(_: {}): any;
|
|
49
|
+
}>;
|
|
40
50
|
export default _default;
|
|
41
51
|
type __VLS_NonUndefinedable<T> = T extends undefined ? never : T;
|
|
42
52
|
type __VLS_TypePropsToRuntimeProps<T> = {
|
|
@@ -1,6 +1,30 @@
|
|
|
1
|
+
import { Component } from 'vue';
|
|
2
|
+
|
|
1
3
|
export type ModalProps = {
|
|
4
|
+
/**
|
|
5
|
+
* Component to be rendered inside the modal body
|
|
6
|
+
*/
|
|
7
|
+
is?: Component;
|
|
8
|
+
/**
|
|
9
|
+
* Body component props
|
|
10
|
+
*/
|
|
11
|
+
props?: Record<string, any>;
|
|
12
|
+
/**
|
|
13
|
+
* Modal title
|
|
14
|
+
*/
|
|
2
15
|
title?: string;
|
|
16
|
+
/**
|
|
17
|
+
* Whether the modal can be closed by the user
|
|
18
|
+
*/
|
|
19
|
+
canClose?: boolean;
|
|
20
|
+
/**
|
|
21
|
+
* Whether to show the header section
|
|
22
|
+
*/
|
|
3
23
|
showHeader?: boolean;
|
|
24
|
+
/**
|
|
25
|
+
* Whether to show the footer section
|
|
26
|
+
*/
|
|
27
|
+
showFooter?: boolean;
|
|
4
28
|
injectStyle?: any;
|
|
5
29
|
hasBackdrop?: boolean;
|
|
6
30
|
disableStyle?: boolean;
|
|
@@ -17,8 +17,8 @@ declare const __VLS_component: import('vue').DefineComponent<__VLS_WithDefaults<
|
|
|
17
17
|
}>>> & {
|
|
18
18
|
onConfirm?: (() => any) | undefined;
|
|
19
19
|
}, {
|
|
20
|
-
placement: `${ElementPosition}`;
|
|
21
20
|
message: string;
|
|
21
|
+
placement: `${ElementPosition}`;
|
|
22
22
|
}, {}>;
|
|
23
23
|
declare const _default: __VLS_WithTemplateSlots<typeof __VLS_component, ReturnType<typeof __VLS_template>>;
|
|
24
24
|
export default _default;
|
|
@@ -22,8 +22,8 @@ import { InputPhone } from './InputPhone/index.js';
|
|
|
22
22
|
import { InputPassword } from './InputPassword/index.js';
|
|
23
23
|
import { InputMultiplier } from './InputMultiplier/index.js';
|
|
24
24
|
import { InputDate } from './InputDate/index.js';
|
|
25
|
-
import { InputColor } from './InputColor/index.js';
|
|
26
25
|
import { InputCryptoCurrency } from './InputCryptoCurrency/index.js';
|
|
26
|
+
import { InputColor } from './InputColor/index.js';
|
|
27
27
|
import { InputCheckbox } from './InputCheckbox/index.js';
|
|
28
28
|
import { InputAvatar } from './InputAvatar/index.js';
|
|
29
29
|
import { Icon } from './Icon/index.js';
|
|
@@ -37,10 +37,12 @@ import { Form } from './Form/index.js';
|
|
|
37
37
|
import { FileDrop } from './FileDrop/index.js';
|
|
38
38
|
import { Dropdown } from './Dropdown/index.js';
|
|
39
39
|
import { Drawer } from './Drawer/index.js';
|
|
40
|
+
import { DialogProvider } from './DialogProvider/index.js';
|
|
40
41
|
import { ChartTreemap } from './ChartTreemap/index.js';
|
|
41
42
|
import { ChartLine } from './ChartLine/index.js';
|
|
42
43
|
import { Button } from './Button/index.js';
|
|
43
44
|
import { Backdrop } from './Backdrop/index.js';
|
|
44
45
|
import { Avatar } from './Avatar/index.js';
|
|
46
|
+
import { Alert } from './Alert/index.js';
|
|
45
47
|
|
|
46
|
-
export { Avatar, Backdrop, Button, ChartLine, ChartTreemap, Drawer, Dropdown, FileDrop, Form, FormItem, GraphyEmpty, GraphyLabel, GraphyPrice, GraphySubtitle, GraphyTitle, Icon, InputAvatar, InputCheckbox,
|
|
48
|
+
export { Alert, Avatar, Backdrop, Button, ChartLine, ChartTreemap, DialogProvider, Drawer, Dropdown, FileDrop, Form, FormItem, GraphyEmpty, GraphyLabel, GraphyPrice, GraphySubtitle, GraphyTitle, Icon, InputAvatar, InputCheckbox, InputColor, InputCryptoCurrency, InputDate, InputMultiplier, InputPassword, InputPhone, InputPrice, InputRadio, InputSelect, InputSwitch, InputText, InputTextarea, Link, Modal, ModalForm, Pagination, Popconfirm, Popover, ProgressCircle, ProgressLine, SensitiveInfo, Skeleton, Tab, Table, Tag, Toast, };
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { ToastPlugin } from './Toast/index.js';
|
|
2
2
|
import { TagPlugin } from './Tag/index.js';
|
|
3
|
-
import { TablePlugin } from './Table/index.js';
|
|
4
3
|
import { TabPlugin } from './Tab/index.js';
|
|
4
|
+
import { TablePlugin } from './Table/index.js';
|
|
5
5
|
import { SkeletonPlugin } from './Skeleton/index.js';
|
|
6
6
|
import { SensitiveInfoPlugin } from './SensitiveInfo/index.js';
|
|
7
7
|
import { ProgressLinePlugin } from './ProgressLine/index.js';
|
|
@@ -9,11 +9,11 @@ import { ProgressCirclePlugin } from './ProgressCircle/index.js';
|
|
|
9
9
|
import { PopoverPlugin } from './Popover/index.js';
|
|
10
10
|
import { PopconfirmPlugin } from './Popconfirm/index.js';
|
|
11
11
|
import { PaginationPlugin } from './Pagination/index.js';
|
|
12
|
-
import { ModalFormPlugin } from './ModalForm/index.js';
|
|
13
12
|
import { ModalPlugin } from './Modal/index.js';
|
|
13
|
+
import { ModalFormPlugin } from './ModalForm/index.js';
|
|
14
14
|
import { LinkPlugin } from './Link/index.js';
|
|
15
|
-
import { InputTextareaPlugin } from './InputTextarea/index.js';
|
|
16
15
|
import { InputTextPlugin } from './InputText/index.js';
|
|
16
|
+
import { InputTextareaPlugin } from './InputTextarea/index.js';
|
|
17
17
|
import { InputSwitchPlugin } from './InputSwitch/index.js';
|
|
18
18
|
import { InputSelectPlugin } from './InputSelect/index.js';
|
|
19
19
|
import { InputRadioPlugin } from './InputRadio/index.js';
|
|
@@ -22,8 +22,8 @@ import { InputPhonePlugin } from './InputPhone/index.js';
|
|
|
22
22
|
import { InputPasswordPlugin } from './InputPassword/index.js';
|
|
23
23
|
import { InputMultiplierPlugin } from './InputMultiplier/index.js';
|
|
24
24
|
import { InputDatePlugin } from './InputDate/index.js';
|
|
25
|
-
import { InputColorPlugin } from './InputColor/index.js';
|
|
26
25
|
import { InputCryptoCurrencyPlugin } from './InputCryptoCurrency/index.js';
|
|
26
|
+
import { InputColorPlugin } from './InputColor/index.js';
|
|
27
27
|
import { InputCheckboxPlugin } from './InputCheckbox/index.js';
|
|
28
28
|
import { InputAvatarPlugin } from './InputAvatar/index.js';
|
|
29
29
|
import { IconPlugin } from './Icon/index.js';
|
|
@@ -32,15 +32,17 @@ import { GraphySubtitlePlugin } from './GraphySubtitle/index.js';
|
|
|
32
32
|
import { GraphyPricePlugin } from './GraphyPrice/index.js';
|
|
33
33
|
import { GraphyLabelPlugin } from './GraphyLabel/index.js';
|
|
34
34
|
import { GraphyEmptyPlugin } from './GraphyEmpty/index.js';
|
|
35
|
-
import { FormItemPlugin } from './FormItem/index.js';
|
|
36
35
|
import { FormPlugin } from './Form/index.js';
|
|
36
|
+
import { FormItemPlugin } from './FormItem/index.js';
|
|
37
37
|
import { FileDropPlugin } from './FileDrop/index.js';
|
|
38
38
|
import { DropdownPlugin } from './Dropdown/index.js';
|
|
39
39
|
import { DrawerPlugin } from './Drawer/index.js';
|
|
40
|
+
import { DialogProviderPlugin } from './DialogProvider/index.js';
|
|
40
41
|
import { ChartTreemapPlugin } from './ChartTreemap/index.js';
|
|
41
42
|
import { ChartLinePlugin } from './ChartLine/index.js';
|
|
42
43
|
import { ButtonPlugin } from './Button/index.js';
|
|
43
44
|
import { BackdropPlugin } from './Backdrop/index.js';
|
|
44
45
|
import { AvatarPlugin } from './Avatar/index.js';
|
|
46
|
+
import { AlertPlugin } from './Alert/index.js';
|
|
45
47
|
|
|
46
|
-
export { AvatarPlugin, BackdropPlugin, ButtonPlugin, ChartLinePlugin, ChartTreemapPlugin, DrawerPlugin, DropdownPlugin, FileDropPlugin,
|
|
48
|
+
export { AlertPlugin, AvatarPlugin, BackdropPlugin, ButtonPlugin, ChartLinePlugin, ChartTreemapPlugin, DialogProviderPlugin, DrawerPlugin, DropdownPlugin, FileDropPlugin, FormItemPlugin, FormPlugin, GraphyEmptyPlugin, GraphyLabelPlugin, GraphyPricePlugin, GraphySubtitlePlugin, GraphyTitlePlugin, IconPlugin, InputAvatarPlugin, InputCheckboxPlugin, InputColorPlugin, InputCryptoCurrencyPlugin, InputDatePlugin, InputMultiplierPlugin, InputPasswordPlugin, InputPhonePlugin, InputPricePlugin, InputRadioPlugin, InputSelectPlugin, InputSwitchPlugin, InputTextareaPlugin, InputTextPlugin, LinkPlugin, ModalFormPlugin, ModalPlugin, PaginationPlugin, PopconfirmPlugin, PopoverPlugin, ProgressCirclePlugin, ProgressLinePlugin, SensitiveInfoPlugin, SkeletonPlugin, TablePlugin, TabPlugin, TagPlugin, ToastPlugin, };
|
|
@@ -41,5 +41,6 @@ import { ChartLineProps } from './ChartLine/index.js';
|
|
|
41
41
|
import { ButtonProps, ButtonEvents } from './Button/index.js';
|
|
42
42
|
import { BackdropProps, BackdropEvents } from './Backdrop/index.js';
|
|
43
43
|
import { AvatarProps } from './Avatar/index.js';
|
|
44
|
+
import { AlertProps } from './Alert/index.js';
|
|
44
45
|
|
|
45
|
-
export type { AvatarProps, BackdropProps, BackdropEvents, ButtonProps, ButtonEvents, ChartLineProps, ChartTreemapProps, DrawerProps, DrawerEvents, DropdownProps, DropdownEvents, FileDropProps, FileDropEvents, FormProps, FormEvents, FormItemProps, GraphyEmptyProps, GraphyLabelProps, GraphyPriceProps, GraphySubtitleProps, GraphyTitleProps, IconProps, InputAvatarProps, InputAvatarEvents, InputCheckboxProps, InputCheckboxEvents, InputColorProps, InputColorEvents, InputDateProps, InputDateEvents, InputMultiplierEvents, InputPasswordModel, InputPasswordProps, InputPasswordEvents, InputPhoneProps, InputPhoneEvents, InputPriceModel, InputPriceProps, InputPriceEvents, InputRadioProps, InputRadioGroupProps, InputRadioGroupEvents, InputSelectValue, InputSelectProps, InputSelectOption, InputSelectEvents, InputSwitchProps, InputSwitchEvents, InputMultiplierProps, InputTextProps, InputTextEvents, InputTextareaProps, InputTextareaEvents, LinkProps, LinkEvents, ModalProps, ModalEvents, ModalFormProps, ModalFormEvents, PaginationProps, PopconfirmProps, PopconfirmEvents, PopoverProps, ProgressCircleProps, ProgressLineProps, SensitiveInfoProps, SkeletonProps, TabProps, TableProps, TableEvents, TagEvents, TagProps, ToastProps, ToastEvents, };
|
|
46
|
+
export type { AlertProps, AvatarProps, BackdropProps, BackdropEvents, ButtonProps, ButtonEvents, ChartLineProps, ChartTreemapProps, DrawerProps, DrawerEvents, DropdownProps, DropdownEvents, FileDropProps, FileDropEvents, FormProps, FormEvents, FormItemProps, GraphyEmptyProps, GraphyLabelProps, GraphyPriceProps, GraphySubtitleProps, GraphyTitleProps, IconProps, InputAvatarProps, InputAvatarEvents, InputCheckboxProps, InputCheckboxEvents, InputColorProps, InputColorEvents, InputDateProps, InputDateEvents, InputMultiplierEvents, InputPasswordModel, InputPasswordProps, InputPasswordEvents, InputPhoneProps, InputPhoneEvents, InputPriceModel, InputPriceProps, InputPriceEvents, InputRadioProps, InputRadioGroupProps, InputRadioGroupEvents, InputSelectValue, InputSelectProps, InputSelectOption, InputSelectEvents, InputSwitchProps, InputSwitchEvents, InputMultiplierProps, InputTextProps, InputTextEvents, InputTextareaProps, InputTextareaEvents, LinkProps, LinkEvents, ModalProps, ModalEvents, ModalFormProps, ModalFormEvents, PaginationProps, PopconfirmProps, PopconfirmEvents, PopoverProps, ProgressCircleProps, ProgressLineProps, SensitiveInfoProps, SkeletonProps, TabProps, TableProps, TableEvents, TagEvents, TagProps, ToastProps, ToastEvents, };
|
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
import { default as useRender } from './useRender.js';
|
|
2
2
|
import { default as useDomHelpers } from './useDomHelpers.js';
|
|
3
|
+
import { default as useDialog } from './useDialog.js';
|
|
3
4
|
import { default as useClipboard } from './useClipboard.js';
|
|
4
5
|
import { default as useBreakpoints } from './useBreakpoints.js';
|
|
5
6
|
|
|
6
|
-
export { useBreakpoints, useClipboard, useDomHelpers, useRender };
|
|
7
|
+
export { useBreakpoints, useClipboard, useDialog, useDomHelpers, useRender };
|