@point-hub/papp 0.0.92 → 0.0.93
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/app.vue.d.ts +1 -1
- package/dist/components/app-footer.vue.d.ts +3 -4
- package/dist/components/app-header.vue.d.ts +1 -1
- package/dist/components/app-preloader.vue.d.ts +1 -1
- package/dist/components/app-sidebar-menu.vue.d.ts +3 -6
- package/dist/components/app-sidebar-panel.vue.d.ts +5 -6
- package/dist/components/app-sidebar.vue.d.ts +4 -9
- package/dist/components/base-accordion-item.vue.d.ts +9 -11
- package/dist/components/base-accordion.vue.d.ts +7 -7
- package/dist/components/base-alert.vue.d.ts +11 -16
- package/dist/components/base-autocomplete.vue.d.ts +11 -11
- package/dist/components/base-avatar-group.vue.d.ts +3 -2
- package/dist/components/base-avatar.vue.d.ts +4 -12
- package/dist/components/base-badge.vue.d.ts +9 -11
- package/dist/components/base-breadcrumb.vue.d.ts +8 -9
- package/dist/components/base-button.vue.d.ts +13 -19
- package/dist/components/base-card.vue.d.ts +11 -10
- package/dist/components/base-checkbox.vue.d.ts +5 -5
- package/dist/components/base-choosen.vue.d.ts +16 -15
- package/dist/components/base-datepicker.vue.d.ts +5 -5
- package/dist/components/base-divider.vue.d.ts +3 -5
- package/dist/components/base-dropdown-item.vue.d.ts +2 -1
- package/dist/components/base-dropdown.vue.d.ts +2 -1
- package/dist/components/base-file-upload.vue.d.ts +7 -6
- package/dist/components/base-form.vue.d.ts +3 -2
- package/dist/components/base-icon.vue.d.ts +4 -6
- package/dist/components/base-input-mask.vue.d.ts +5 -5
- package/dist/components/base-input-number.vue.d.ts +8 -7
- package/dist/components/base-input.vue.d.ts +7 -6
- package/dist/components/base-link.vue.d.ts +12 -17
- package/dist/components/base-loader.vue.d.ts +8 -9
- package/dist/components/base-mask.vue.d.ts +1 -1
- package/dist/components/base-modal.vue.d.ts +8 -9
- package/dist/components/base-popover.vue.d.ts +2 -1
- package/dist/components/base-progress.vue.d.ts +3 -2
- package/dist/components/base-radio.vue.d.ts +7 -6
- package/dist/components/base-range.vue.d.ts +5 -5
- package/dist/components/base-select.vue.d.ts +5 -5
- package/dist/components/base-sitemap.vue.d.ts +3 -3
- package/dist/components/base-spinner.vue.d.ts +4 -6
- package/dist/components/base-step.vue.d.ts +1 -1
- package/dist/components/base-switch.vue.d.ts +7 -6
- package/dist/components/base-tab-group.vue.d.ts +2 -1
- package/dist/components/base-tab-list.vue.d.ts +2 -1
- package/dist/components/base-tab-panel.vue.d.ts +2 -1
- package/dist/components/base-tab-panels.vue.d.ts +2 -1
- package/dist/components/base-tab.vue.d.ts +2 -1
- package/dist/components/base-table.vue.d.ts +3 -2
- package/dist/components/base-textarea.vue.d.ts +5 -5
- package/dist/components/base-timeline-content.vue.d.ts +3 -2
- package/dist/components/base-timeline.vue.d.ts +3 -2
- package/dist/components/base-toast.vue.d.ts +2 -1
- package/dist/components/base-tooltip.vue.d.ts +2 -1
- package/dist/components/base-treeview.vue.d.ts +8 -9
- package/dist/index.css +1 -1
- package/dist/index.js +8 -5
- package/dist/index.umd.cjs +2 -2
- package/dist/pages/websocket.vue.d.ts +1 -1
- package/package.json +9 -9
|
@@ -16,24 +16,24 @@ export interface Props {
|
|
|
16
16
|
minHeight?: number;
|
|
17
17
|
maxHeight?: number;
|
|
18
18
|
}
|
|
19
|
-
|
|
19
|
+
type __VLS_Props = Props;
|
|
20
20
|
type __VLS_PublicProps = {
|
|
21
21
|
'errors'?: string[];
|
|
22
|
-
} &
|
|
22
|
+
} & __VLS_Props;
|
|
23
23
|
declare const _default: import('vue').DefineComponent<__VLS_PublicProps, {
|
|
24
24
|
textareaRef: import('vue').Ref<any, any>;
|
|
25
25
|
}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
|
|
26
|
-
"update:errors": (
|
|
26
|
+
"update:errors": (value: string[]) => any;
|
|
27
27
|
} & {
|
|
28
28
|
"update:modelValue": (value: string) => any;
|
|
29
29
|
}, string, import('vue').PublicProps, Readonly<__VLS_PublicProps> & Readonly<{
|
|
30
30
|
"onUpdate:modelValue"?: ((value: string) => any) | undefined;
|
|
31
|
-
"onUpdate:errors"?: ((
|
|
31
|
+
"onUpdate:errors"?: ((value: string[]) => any) | undefined;
|
|
32
32
|
}>, {
|
|
33
33
|
required: boolean;
|
|
34
34
|
disabled: boolean;
|
|
35
35
|
layout: BaseFormLayoutType;
|
|
36
36
|
border: BaseTextareaBorderType;
|
|
37
37
|
autofocus: boolean;
|
|
38
|
-
}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {},
|
|
38
|
+
}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, HTMLDivElement>;
|
|
39
39
|
export default _default;
|
|
@@ -1,13 +1,14 @@
|
|
|
1
1
|
declare function __VLS_template(): {
|
|
2
|
+
attrs: Partial<{}>;
|
|
2
3
|
slots: {
|
|
3
4
|
point?(_: {}): any;
|
|
4
5
|
content?(_: {}): any;
|
|
5
6
|
};
|
|
6
7
|
refs: {};
|
|
7
|
-
|
|
8
|
+
rootEl: HTMLDivElement;
|
|
8
9
|
};
|
|
9
10
|
type __VLS_TemplateResult = ReturnType<typeof __VLS_template>;
|
|
10
|
-
declare const __VLS_component: import('vue').DefineComponent<{}, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {},
|
|
11
|
+
declare const __VLS_component: import('vue').DefineComponent<{}, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, HTMLDivElement>;
|
|
11
12
|
declare const _default: __VLS_WithTemplateSlots<typeof __VLS_component, __VLS_TemplateResult["slots"]>;
|
|
12
13
|
export default _default;
|
|
13
14
|
type __VLS_WithTemplateSlots<T, S> = T & {
|
|
@@ -1,12 +1,13 @@
|
|
|
1
1
|
declare function __VLS_template(): {
|
|
2
|
+
attrs: Partial<{}>;
|
|
2
3
|
slots: {
|
|
3
4
|
default?(_: {}): any;
|
|
4
5
|
};
|
|
5
6
|
refs: {};
|
|
6
|
-
|
|
7
|
+
rootEl: HTMLDivElement;
|
|
7
8
|
};
|
|
8
9
|
type __VLS_TemplateResult = ReturnType<typeof __VLS_template>;
|
|
9
|
-
declare const __VLS_component: import('vue').DefineComponent<{}, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {},
|
|
10
|
+
declare const __VLS_component: import('vue').DefineComponent<{}, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, HTMLDivElement>;
|
|
10
11
|
declare const _default: __VLS_WithTemplateSlots<typeof __VLS_component, __VLS_TemplateResult["slots"]>;
|
|
11
12
|
export default _default;
|
|
12
13
|
type __VLS_WithTemplateSlots<T, S> = T & {
|
|
@@ -6,13 +6,14 @@ export interface IOptions {
|
|
|
6
6
|
timer?: number;
|
|
7
7
|
}
|
|
8
8
|
declare function __VLS_template(): {
|
|
9
|
+
attrs: Partial<{}>;
|
|
9
10
|
slots: {
|
|
10
11
|
default?(_: {
|
|
11
12
|
data: any;
|
|
12
13
|
}): any;
|
|
13
14
|
};
|
|
14
15
|
refs: {};
|
|
15
|
-
|
|
16
|
+
rootEl: any;
|
|
16
17
|
};
|
|
17
18
|
type __VLS_TemplateResult = ReturnType<typeof __VLS_template>;
|
|
18
19
|
declare const __VLS_component: import('vue').DefineComponent<{}, {
|
|
@@ -4,12 +4,13 @@ export interface Props {
|
|
|
4
4
|
zIndex?: number;
|
|
5
5
|
}
|
|
6
6
|
declare function __VLS_template(): {
|
|
7
|
+
attrs: Partial<{}>;
|
|
7
8
|
slots: {
|
|
8
9
|
default?(_: {}): any;
|
|
9
10
|
content?(_: {}): any;
|
|
10
11
|
};
|
|
11
12
|
refs: {};
|
|
12
|
-
|
|
13
|
+
rootEl: any;
|
|
13
14
|
};
|
|
14
15
|
type __VLS_TemplateResult = ReturnType<typeof __VLS_template>;
|
|
15
16
|
declare const __VLS_component: import('vue').DefineComponent<Props, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<Props> & Readonly<{}>, {
|
|
@@ -1,4 +1,9 @@
|
|
|
1
|
+
type __VLS_Props = {
|
|
2
|
+
title?: string;
|
|
3
|
+
isOpen?: boolean;
|
|
4
|
+
};
|
|
1
5
|
declare function __VLS_template(): {
|
|
6
|
+
attrs: Partial<{}>;
|
|
2
7
|
slots: {
|
|
3
8
|
header?(_: {
|
|
4
9
|
isOpen: boolean;
|
|
@@ -8,19 +13,13 @@ declare function __VLS_template(): {
|
|
|
8
13
|
refs: {
|
|
9
14
|
content: HTMLDivElement;
|
|
10
15
|
};
|
|
11
|
-
|
|
16
|
+
rootEl: HTMLDivElement;
|
|
12
17
|
};
|
|
13
18
|
type __VLS_TemplateResult = ReturnType<typeof __VLS_template>;
|
|
14
|
-
declare const __VLS_component: import('vue').DefineComponent<{
|
|
15
|
-
title?: string;
|
|
16
|
-
isOpen?: boolean;
|
|
17
|
-
}, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<{
|
|
18
|
-
title?: string;
|
|
19
|
-
isOpen?: boolean;
|
|
20
|
-
}> & Readonly<{}>, {
|
|
19
|
+
declare const __VLS_component: import('vue').DefineComponent<__VLS_Props, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<__VLS_Props> & Readonly<{}>, {
|
|
21
20
|
title: string;
|
|
22
21
|
isOpen: boolean;
|
|
23
|
-
}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {},
|
|
22
|
+
}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, HTMLDivElement>;
|
|
24
23
|
declare const _default: __VLS_WithTemplateSlots<typeof __VLS_component, __VLS_TemplateResult["slots"]>;
|
|
25
24
|
export default _default;
|
|
26
25
|
type __VLS_WithTemplateSlots<T, S> = T & {
|