@v1nt1248/3nclient-lib 0.2.83 → 0.2.85
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/index.d.ts +3 -2
- package/dist/components/ui3n-dialog/types.d.ts +15 -18
- package/dist/components/ui3n-dialog/ui3n-dialog.vue.d.ts +8 -11
- package/dist/index.d.ts +25 -8
- package/dist/plugins/dialogs/dialogs.d.ts +29 -6
- package/dist/plugins/dialogs/store-dialog.d.ts +18 -0
- package/dist/plugins/dialogs/types.d.ts +20 -9
- package/dist/plugins/dialogs/ui3n-dialog-provider.vue.d.ts +13 -0
- package/dist/plugins/index.d.ts +4 -4
- package/dist/style.css +1 -1
- package/dist/ui3n-components.d.ts +2 -0
- package/dist/ui3n-components.js +6749 -6744
- package/dist/ui3n-plugins.d.ts +24 -10
- package/dist/ui3n-plugins.js +2039 -3562
- package/package.json +8 -8
- package/src/components/index.ts +16 -4
- package/src/components/ui3n-dialog/types.ts +12 -18
- package/src/components/ui3n-dialog/ui3n-dialog.vue +161 -243
- package/dist/plugins/dialogs/store-dialogs.d.ts +0 -10
|
@@ -20,8 +20,9 @@ import { default as Ui3nNotification } from './ui3n-notification/ui3n-notificati
|
|
|
20
20
|
import { default as Ui3nTableSortIcon } from './ui3n-table/ui3n-table-sort-icon.vue';
|
|
21
21
|
import { default as Ui3nTable } from './ui3n-table/ui3n-table.vue';
|
|
22
22
|
import { Ui3nTableSortIconProps, Ui3nTableSort, Ui3nTableConfig, Ui3nTableHeadProps, Ui3nTableBodyProps, Ui3nTableGroupActionsSlot, Ui3nTableHeaderCellSlot, Ui3nTableBodyRowSlotScope, Ui3nTableBodyRowSlot, Ui3nTableBodyRowCellSlotScope, Ui3nTableBodyRowCellSlot, Ui3nTableSlots, Ui3nTableProps, Ui3nTableEmits, Ui3nTableExpose } from './ui3n-table/types';
|
|
23
|
+
import { default as Ui3nDialogProvider } from '../plugins/dialogs/ui3n-dialog-provider.vue';
|
|
23
24
|
import { default as Ui3nDialog } from './ui3n-dialog/ui3n-dialog.vue';
|
|
24
|
-
import { Ui3nDialogComponentProps, Ui3nDialogComponentEmits,
|
|
25
|
+
import { Ui3nDialogComponentProps, Ui3nDialogComponentEmits, Ui3nDialogComponentSlots, Ui3nDialogEvent } from './ui3n-dialog/types';
|
|
25
26
|
import { default as Ui3nMenu } from './ui3n-menu/ui3n-menu.vue';
|
|
26
27
|
import { Ui3nMenuProps, Ui3nMenuEmits, Ui3nMenuSlots } from './ui3n-menu/types';
|
|
27
28
|
import { default as Ui3nList } from './ui3n-list/ui3n-list.vue';
|
|
@@ -53,4 +54,4 @@ import { default as Ui3nAutocomplete } from './ui3n-autocomplete/ui3n-autocomple
|
|
|
53
54
|
import { Ui3nAutocompleteProps, Ui3nAutocompleteEmits, Ui3nAutocompleteSlots, Ui3nAutocompleteOptionBase } from './ui3n-autocomplete/types';
|
|
54
55
|
import { default as Ui3nSlider } from './ui3n-slider/ui3n-slider.vue';
|
|
55
56
|
import { UI3nSliderProps, UI3nSliderEmits } from './ui3n-slider/types';
|
|
56
|
-
export { Ui3nIcon, Ui3nIconProps, Ui3nIconEmits, Ui3nButton, Ui3nButtonProps, Ui3nButtonEmits, Ui3nChip, Ui3nChipProps, Ui3nChipEmits, Ui3nChipSlots, Ui3nDropFiles, Ui3nDropFilesProps, Ui3nDropFilesEmits, Ui3nDropFilesSlots, Ui3nEmoji, Ui3nEmojiProps, Ui3nEmojiEmits, Ui3nInput, Ui3nInputProps, Ui3nInputEmits, Ui3nInputFile, Ui3nInputFileProps, Ui3nInputFileEmits, Ui3nText, Ui3nTextProps, Ui3nTextEmits, Ui3nCheckbox, Ui3nCheckboxProps, Ui3nCheckboxEmits, Ui3nCheckboxSlots, Ui3nCheckboxValue, Ui3nNotification, Ui3nTableSortIcon, Ui3nTableSortIconProps, Ui3nTable, Ui3nTableSort, Ui3nTableConfig, Ui3nTableHeadProps, Ui3nTableBodyProps, Ui3nTableGroupActionsSlot, Ui3nTableHeaderCellSlot, Ui3nTableBodyRowSlotScope, Ui3nTableBodyRowSlot, Ui3nTableBodyRowCellSlotScope, Ui3nTableBodyRowCellSlot, Ui3nTableSlots, Ui3nTableProps, Ui3nTableEmits, Ui3nTableExpose, Ui3nDialog, Ui3nDialogComponentProps, Ui3nDialogComponentEmits,
|
|
57
|
+
export { Ui3nIcon, Ui3nIconProps, Ui3nIconEmits, Ui3nButton, Ui3nButtonProps, Ui3nButtonEmits, Ui3nChip, Ui3nChipProps, Ui3nChipEmits, Ui3nChipSlots, Ui3nDropFiles, Ui3nDropFilesProps, Ui3nDropFilesEmits, Ui3nDropFilesSlots, Ui3nEmoji, Ui3nEmojiProps, Ui3nEmojiEmits, Ui3nInput, Ui3nInputProps, Ui3nInputEmits, Ui3nInputFile, Ui3nInputFileProps, Ui3nInputFileEmits, Ui3nText, Ui3nTextProps, Ui3nTextEmits, Ui3nCheckbox, Ui3nCheckboxProps, Ui3nCheckboxEmits, Ui3nCheckboxSlots, Ui3nCheckboxValue, Ui3nNotification, Ui3nTableSortIcon, Ui3nTableSortIconProps, Ui3nTable, Ui3nTableSort, Ui3nTableConfig, Ui3nTableHeadProps, Ui3nTableBodyProps, Ui3nTableGroupActionsSlot, Ui3nTableHeaderCellSlot, Ui3nTableBodyRowSlotScope, Ui3nTableBodyRowSlot, Ui3nTableBodyRowCellSlotScope, Ui3nTableBodyRowCellSlot, Ui3nTableSlots, Ui3nTableProps, Ui3nTableEmits, Ui3nTableExpose, Ui3nDialogProvider, Ui3nDialog, Ui3nDialogComponentProps, Ui3nDialogComponentEmits, Ui3nDialogComponentSlots, Ui3nDialogEvent, Ui3nMenu, Ui3nMenuProps, Ui3nMenuEmits, Ui3nMenuSlots, Ui3nList, Ui3nListProps, Ui3nListEmits, Ui3nListSlots, Ui3nVirtualScroll, Ui3nVirtualScrollProps, Ui3nVirtualScrollSlots, Ui3nTabs, Ui3nTabsProps, Ui3nTabsEmits, Ui3nTabsSlots, Ui3nBadge, Ui3nBadgeProps, Ui3nBreadcrumb, Ui3nBreadcrumbProps, Ui3nBreadcrumbEmits, Ui3nBreadcrumbSlots, Ui3nBreadcrumbs, Ui3nBreadcrumbsProps, Ui3nSwitch, Ui3nSwitchProps, Ui3nSwitchEmits, Ui3nSwitchSlots, Ui3nStepLineBar, Ui3nStepLineBarProps, Ui3nProgressLinear, Ui3nProgressLinearProps, Ui3nProgressCircular, Ui3nProgressCircularProps, Ui3nTooltip, Ui3nTooltipEmits, Ui3nTooltipProps, Ui3nTooltipSlots, Ui3nTooltipPlacement, Ui3nRadio, Ui3nRadioGroup, Ui3nRadioValue, Ui3nRadioEmits, Ui3nRadioProps, Ui3nRadioSlots, Ui3nRadioGroupEmits, Ui3nRadioGroupProps, Ui3nRadioGroupSlots, Ui3nEditable, Ui3nEditableProps, Ui3nEditableEmits, Ui3nAutocomplete, Ui3nAutocompleteProps, Ui3nAutocompleteEmits, Ui3nAutocompleteSlots, Ui3nAutocompleteOptionBase, Ui3nSlider, UI3nSliderProps, UI3nSliderEmits, };
|
|
@@ -1,7 +1,7 @@
|
|
|
1
|
-
import {
|
|
2
|
-
import {
|
|
3
|
-
export type Ui3nDialogEvent = '
|
|
4
|
-
export interface
|
|
1
|
+
import { VNode } from '../../../vue/dist/vue.esm-bundler.js';
|
|
2
|
+
import { Ui3nIconField } from '../../types';
|
|
3
|
+
export type Ui3nDialogEvent = 'close' | 'confirm' | 'cancel' | 'click-overlay';
|
|
4
|
+
export interface Ui3nDialogComponentProps<V> {
|
|
5
5
|
id?: string;
|
|
6
6
|
title?: string;
|
|
7
7
|
icon?: string | Ui3nIconField;
|
|
@@ -13,9 +13,6 @@ export interface Ui3nDialogProps<V> {
|
|
|
13
13
|
contentCssStyle?: Record<string, string>;
|
|
14
14
|
confirmButton?: boolean;
|
|
15
15
|
cancelButton?: boolean;
|
|
16
|
-
onClose?: (data?: V) => void;
|
|
17
|
-
onConfirm?: (data: V) => void;
|
|
18
|
-
onCancel?: (data: V) => void;
|
|
19
16
|
confirmButtonText?: string;
|
|
20
17
|
cancelButtonText?: string;
|
|
21
18
|
confirmButtonColor?: string;
|
|
@@ -24,17 +21,17 @@ export interface Ui3nDialogProps<V> {
|
|
|
24
21
|
cancelButtonBackground?: string;
|
|
25
22
|
closeOnClickOverlay?: boolean;
|
|
26
23
|
closeOnEsc?: boolean;
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
component: T;
|
|
30
|
-
componentProps?: ExtractComponentProps<T>;
|
|
31
|
-
dialogProps?: Ui3nDialogProps<V>;
|
|
24
|
+
data?: V | null | Event | undefined;
|
|
25
|
+
isValid?: boolean;
|
|
32
26
|
}
|
|
33
27
|
export interface Ui3nDialogComponentEmits<V> {
|
|
34
|
-
(
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
28
|
+
(event: 'action', value: {
|
|
29
|
+
event: Ui3nDialogEvent;
|
|
30
|
+
data?: V | null | Event | undefined;
|
|
31
|
+
}): void;
|
|
32
|
+
}
|
|
33
|
+
export interface Ui3nDialogComponentSlots {
|
|
34
|
+
header?: () => VNode;
|
|
35
|
+
body: () => VNode;
|
|
36
|
+
actions?: () => VNode;
|
|
40
37
|
}
|
|
@@ -1,17 +1,14 @@
|
|
|
1
|
-
import {
|
|
2
|
-
|
|
3
|
-
declare const _default: <T extends Component, V>(__VLS_props: NonNullable<Awaited<typeof __VLS_setup>>["props"], __VLS_ctx?: __VLS_PrettifyLocal<Pick<NonNullable<Awaited<typeof __VLS_setup>>, "attrs" | "emit" | "slots">>, __VLS_expose?: NonNullable<Awaited<typeof __VLS_setup>>["expose"], __VLS_setup?: Promise<{
|
|
1
|
+
import { Ui3nDialogComponentProps, Ui3nDialogComponentEmits, Ui3nDialogComponentSlots } from './types';
|
|
2
|
+
declare const _default: <V extends any>(__VLS_props: NonNullable<Awaited<typeof __VLS_setup>>["props"], __VLS_ctx?: __VLS_PrettifyLocal<Pick<NonNullable<Awaited<typeof __VLS_setup>>, "attrs" | "emit" | "slots">>, __VLS_expose?: NonNullable<Awaited<typeof __VLS_setup>>["expose"], __VLS_setup?: Promise<{
|
|
4
3
|
props: __VLS_PrettifyLocal<Pick<Partial<{}> & Omit<{
|
|
5
|
-
readonly
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
readonly "onClick-overlay"?: ((value?: V | undefined) => any) | undefined;
|
|
11
|
-
} & import('../../../vue/dist/vue.esm-bundler.js').VNodeProps & import('../../../vue/dist/vue.esm-bundler.js').AllowedComponentProps & import('../../../vue/dist/vue.esm-bundler.js').ComponentCustomProps, never>, "onClose" | "onCancel" | "onOpen" | "onBefore-close" | "onConfirm" | "onClick-overlay"> & Ui3nDialogComponentProps<T, V> & Partial<{}>> & import('../../../vue/dist/vue.esm-bundler.js').PublicProps;
|
|
4
|
+
readonly onAction?: ((value: {
|
|
5
|
+
event: import('./types').Ui3nDialogEvent;
|
|
6
|
+
data?: Event | V | null | undefined;
|
|
7
|
+
}) => any) | undefined;
|
|
8
|
+
} & import('../../../vue/dist/vue.esm-bundler.js').VNodeProps & import('../../../vue/dist/vue.esm-bundler.js').AllowedComponentProps & import('../../../vue/dist/vue.esm-bundler.js').ComponentCustomProps, never>, "onAction"> & Ui3nDialogComponentProps<V> & Partial<{}>> & import('../../../vue/dist/vue.esm-bundler.js').PublicProps;
|
|
12
9
|
expose(exposed: import('../../../vue/dist/vue.esm-bundler.js').ShallowUnwrapRef<{}>): void;
|
|
13
10
|
attrs: any;
|
|
14
|
-
slots:
|
|
11
|
+
slots: Readonly<Ui3nDialogComponentSlots> & Ui3nDialogComponentSlots;
|
|
15
12
|
emit: Ui3nDialogComponentEmits<V>;
|
|
16
13
|
}>) => import('../../../vue/dist/vue.esm-bundler.js').VNode & {
|
|
17
14
|
__ctx?: Awaited<typeof __VLS_setup>;
|
package/dist/index.d.ts
CHANGED
|
@@ -1,9 +1,9 @@
|
|
|
1
|
-
import { Component } from '../vue/dist/vue.esm-bundler.js';
|
|
1
|
+
import { Component, Reactive } from '../vue/dist/vue.esm-bundler.js';
|
|
2
2
|
import { default as Ui3nButton } from './components/ui3n-button/ui3n-button.vue';
|
|
3
3
|
import { default as Ui3nChip } from './components/ui3n-chip/ui3n-chip.vue';
|
|
4
4
|
import { default as Ui3nCheckbox } from './components/ui3n-checkbox/ui3n-checkbox.vue';
|
|
5
5
|
import { default as Ui3nDialog } from './components/ui3n-dialog/ui3n-dialog.vue';
|
|
6
|
-
import {
|
|
6
|
+
import { Ui3nDialogEvent } from './components/ui3n-dialog/types';
|
|
7
7
|
import { default as Ui3nDropFiles } from './components/ui3n-drop-files/ui3n-drop-files.vue';
|
|
8
8
|
import { default as Ui3nEmoji } from './components/ui3n-emoji/ui3n-emoji.vue';
|
|
9
9
|
import { default as Ui3nIcon } from './components/ui3n-icon/ui3n-icon.vue';
|
|
@@ -37,7 +37,8 @@ import { default as Ui3nRipple } from './directives/ui3n-ripple';
|
|
|
37
37
|
import { default as Ui3nTitle } from './directives/ui3n-title';
|
|
38
38
|
import { default as Ui3nLongPress } from './directives/ui3n-long-press';
|
|
39
39
|
import { VueEventBus } from './plugins/vue-bus/types';
|
|
40
|
-
import {
|
|
40
|
+
import { ExtractComponentProps } from './types';
|
|
41
|
+
import { DialogOptions } from './plugins/dialogs/types';
|
|
41
42
|
export * from './constants';
|
|
42
43
|
export * from './utils';
|
|
43
44
|
export * from './plugins';
|
|
@@ -46,9 +47,16 @@ export * from './components';
|
|
|
46
47
|
export * from './types';
|
|
47
48
|
declare module '../vue/dist/vue.esm-bundler.js' {
|
|
48
49
|
interface ComponentCustomProperties {
|
|
49
|
-
$openDialog: <
|
|
50
|
-
|
|
50
|
+
$openDialog: <V>(component: Component, props: ExtractComponentProps<Component>) => Promise<{
|
|
51
|
+
event: Ui3nDialogEvent;
|
|
52
|
+
data?: V | null | Event | undefined;
|
|
53
|
+
}>;
|
|
54
|
+
$closeDialog: <V>(id: string, value: {
|
|
55
|
+
event: Ui3nDialogEvent;
|
|
56
|
+
data?: V | null | Event | undefined;
|
|
57
|
+
}) => void;
|
|
51
58
|
$closeDialogs: () => void;
|
|
59
|
+
dialogStack: Reactive<DialogOptions<any>[]>;
|
|
52
60
|
$createNotice: (params: Ui3nNotificationProps) => void;
|
|
53
61
|
$locale: string;
|
|
54
62
|
$tr: (key: string, placeholders?: Record<string, string>) => string;
|
|
@@ -97,9 +105,18 @@ declare module '../vue/dist/vue.esm-bundler.js' {
|
|
|
97
105
|
}
|
|
98
106
|
declare module 'pinia' {
|
|
99
107
|
interface PiniaCustomProperties {
|
|
100
|
-
$
|
|
101
|
-
|
|
102
|
-
|
|
108
|
+
$dialogs: {
|
|
109
|
+
open: <V>(component: Component, props: ExtractComponentProps<Component>) => Promise<{
|
|
110
|
+
event: Ui3nDialogEvent;
|
|
111
|
+
data?: V | null | Event | undefined;
|
|
112
|
+
}>;
|
|
113
|
+
close: <V>(id: string, value: {
|
|
114
|
+
event: Ui3nDialogEvent;
|
|
115
|
+
data?: V | null | Event | undefined;
|
|
116
|
+
}) => void;
|
|
117
|
+
closeAll: () => void;
|
|
118
|
+
dialogStack: Reactive<DialogOptions<any>[]>;
|
|
119
|
+
};
|
|
103
120
|
$createNotice: (params: Ui3nNotificationProps) => void;
|
|
104
121
|
$emitter: VueEventBus<any>;
|
|
105
122
|
$i18n: {
|
|
@@ -1,11 +1,34 @@
|
|
|
1
|
-
import {
|
|
2
|
-
import {
|
|
3
|
-
import {
|
|
4
|
-
|
|
1
|
+
import { App, Component, Reactive } from '../../../vue/dist/vue.esm-bundler.js';
|
|
2
|
+
import { DialogOptions } from './types';
|
|
3
|
+
import { Ui3nDialogEvent } from '../../components/ui3n-dialog/types';
|
|
4
|
+
import { ExtractComponentProps } from '../../types';
|
|
5
|
+
export declare const dialogService: {
|
|
6
|
+
$openDialog<V>(component: Component, props: ExtractComponentProps<Component>): Promise<{
|
|
7
|
+
event: Ui3nDialogEvent;
|
|
8
|
+
data?: V | null | Event | undefined;
|
|
9
|
+
}>;
|
|
10
|
+
$closeDialog<V>(id: string, value: {
|
|
11
|
+
event: Ui3nDialogEvent;
|
|
12
|
+
data?: V | null | Event | undefined;
|
|
13
|
+
}): void;
|
|
14
|
+
$closeDialogs(): void;
|
|
15
|
+
readonly dialogStack: Reactive<DialogOptions<any>[]>;
|
|
16
|
+
};
|
|
17
|
+
declare const _default: {
|
|
18
|
+
install(app: App): void;
|
|
19
|
+
};
|
|
20
|
+
export default _default;
|
|
5
21
|
declare module '@vue/runtime-core' {
|
|
6
22
|
interface ComponentCustomProperties {
|
|
7
|
-
$openDialog: <
|
|
8
|
-
|
|
23
|
+
$openDialog: <V>(component: Component, props: ExtractComponentProps<Component>) => Promise<{
|
|
24
|
+
event: Ui3nDialogEvent;
|
|
25
|
+
data?: V | null | Event | undefined;
|
|
26
|
+
}>;
|
|
27
|
+
$closeDialog: <V>(id: string, value: {
|
|
28
|
+
event: Ui3nDialogEvent;
|
|
29
|
+
data?: V | null | Event | undefined;
|
|
30
|
+
}) => void;
|
|
9
31
|
$closeDialogs: () => void;
|
|
32
|
+
dialogStack: Reactive<DialogOptions<any>[]>;
|
|
10
33
|
}
|
|
11
34
|
}
|
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
import { Component, Reactive } from '../../../vue/dist/vue.esm-bundler.js';
|
|
2
|
+
import { ExtractComponentProps } from '../../types';
|
|
3
|
+
import { Ui3nDialogEvent } from '../../components/ui3n-dialog/types';
|
|
4
|
+
import { DialogOptions } from './types';
|
|
5
|
+
export declare function storeDialogs(context: any): {
|
|
6
|
+
$dialogs: {
|
|
7
|
+
open: <V>(component: Component, props: ExtractComponentProps<Component>) => Promise<{
|
|
8
|
+
event: Ui3nDialogEvent;
|
|
9
|
+
data?: V | null | Event | undefined;
|
|
10
|
+
}>;
|
|
11
|
+
close: <V>(id: string, value: {
|
|
12
|
+
event: Ui3nDialogEvent;
|
|
13
|
+
data?: V | null | Event | undefined;
|
|
14
|
+
}) => void;
|
|
15
|
+
closeAll: () => void;
|
|
16
|
+
dialogStack: Reactive<DialogOptions<any>[]>;
|
|
17
|
+
};
|
|
18
|
+
};
|
|
@@ -1,14 +1,25 @@
|
|
|
1
|
-
import { Component, InjectionKey,
|
|
2
|
-
import {
|
|
3
|
-
|
|
1
|
+
import { Component, InjectionKey, Reactive } from '../../../vue/dist/vue.esm-bundler.js';
|
|
2
|
+
import { ExtractComponentProps } from '../../types';
|
|
3
|
+
import { Ui3nDialogEvent } from '../../components/ui3n-dialog/types';
|
|
4
|
+
export interface DialogOptions<V> {
|
|
4
5
|
id: string;
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
6
|
+
component: Component;
|
|
7
|
+
props: ExtractComponentProps<Component>;
|
|
8
|
+
resolve: (value: {
|
|
9
|
+
event: Ui3nDialogEvent;
|
|
10
|
+
data?: V | null | Event | undefined;
|
|
11
|
+
}) => void;
|
|
12
|
+
}
|
|
9
13
|
export interface DialogsPlugin {
|
|
10
|
-
$openDialog: <
|
|
11
|
-
|
|
14
|
+
$openDialog: <V>(component: Component, props: ExtractComponentProps<Component>) => Promise<{
|
|
15
|
+
event: Ui3nDialogEvent;
|
|
16
|
+
data?: V | null | Event | undefined;
|
|
17
|
+
}>;
|
|
18
|
+
$closeDialog: <V>(id: string, value: {
|
|
19
|
+
event: Ui3nDialogEvent;
|
|
20
|
+
data?: V | null | Event | undefined;
|
|
21
|
+
}) => void;
|
|
12
22
|
$closeDialogs: () => void;
|
|
23
|
+
dialogStack: Reactive<DialogOptions<any>[]>;
|
|
13
24
|
}
|
|
14
25
|
export declare const DIALOGS_KEY: InjectionKey<DialogsPlugin>;
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
declare const _default: <V extends any>(__VLS_props: NonNullable<Awaited<typeof __VLS_setup>>["props"], __VLS_ctx?: __VLS_PrettifyLocal<Pick<NonNullable<Awaited<typeof __VLS_setup>>, "attrs" | "emit" | "slots">>, __VLS_expose?: NonNullable<Awaited<typeof __VLS_setup>>["expose"], __VLS_setup?: Promise<{
|
|
2
|
+
props: __VLS_PrettifyLocal<Pick<Partial<{}> & Omit<{} & import('../../../vue/dist/vue.esm-bundler.js').VNodeProps & import('../../../vue/dist/vue.esm-bundler.js').AllowedComponentProps & import('../../../vue/dist/vue.esm-bundler.js').ComponentCustomProps, never>, never> & {} & Partial<{}>> & import('../../../vue/dist/vue.esm-bundler.js').PublicProps;
|
|
3
|
+
expose(exposed: import('../../../vue/dist/vue.esm-bundler.js').ShallowUnwrapRef<{}>): void;
|
|
4
|
+
attrs: any;
|
|
5
|
+
slots: {};
|
|
6
|
+
emit: {};
|
|
7
|
+
}>) => import('../../../vue/dist/vue.esm-bundler.js').VNode & {
|
|
8
|
+
__ctx?: Awaited<typeof __VLS_setup>;
|
|
9
|
+
};
|
|
10
|
+
export default _default;
|
|
11
|
+
type __VLS_PrettifyLocal<T> = {
|
|
12
|
+
[K in keyof T]: T[K];
|
|
13
|
+
} & {};
|
package/dist/plugins/index.d.ts
CHANGED
|
@@ -4,10 +4,10 @@ import { notifications } from './notifications/notifications';
|
|
|
4
4
|
import { NOTIFICATIONS_KEY, NotificationsPlugin } from './notifications/types';
|
|
5
5
|
import { vueBus } from './vue-bus/vue-bus';
|
|
6
6
|
import { VUEBUS_KEY, VueBusPlugin } from './vue-bus/types';
|
|
7
|
-
import { dialogs } from './dialogs/dialogs';
|
|
8
|
-
import { DIALOGS_KEY, DialogsPlugin } from './dialogs/types';
|
|
7
|
+
import { default as dialogs } from './dialogs/dialogs';
|
|
8
|
+
import { DIALOGS_KEY, DialogsPlugin, DialogOptions } from './dialogs/types';
|
|
9
9
|
import { storeI18n } from './i18n/store-i18n';
|
|
10
10
|
import { storeNotifications } from './notifications/store-notifications';
|
|
11
11
|
import { storeVueBus } from './vue-bus/store-vue-bus';
|
|
12
|
-
import { storeDialogs } from './dialogs/store-
|
|
13
|
-
export { i18n, I18nOptions, I18nPlugin, I18N_KEY, notifications, NotificationsPlugin, NOTIFICATIONS_KEY, vueBus, VueBusPlugin, VUEBUS_KEY, dialogs, DialogsPlugin, DIALOGS_KEY, storeI18n, storeNotifications, storeVueBus, storeDialogs, };
|
|
12
|
+
import { storeDialogs } from './dialogs/store-dialog';
|
|
13
|
+
export { i18n, I18nOptions, I18nPlugin, I18N_KEY, notifications, NotificationsPlugin, NOTIFICATIONS_KEY, vueBus, VueBusPlugin, VUEBUS_KEY, dialogs, DialogsPlugin, DialogOptions, DIALOGS_KEY, storeI18n, storeNotifications, storeVueBus, storeDialogs, };
|