@point-hub/papp 0.0.110 → 0.0.113
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 +11 -1
- package/dist/components/app-footer.vue.d.ts +1 -0
- package/dist/components/app-header.vue.d.ts +17 -114
- package/dist/components/app-sidebar-panel.vue.d.ts +2 -1
- package/dist/components/app-sidebar.vue.d.ts +2 -1
- package/dist/components/base-accordion-item.vue.d.ts +1 -0
- package/dist/components/base-autocomplete.vue.d.ts +2 -1
- package/dist/components/base-avatar.vue.d.ts +2 -2
- package/dist/components/base-button.vue.d.ts +7 -1
- package/dist/components/base-checkbox.vue.d.ts +2 -2
- package/dist/components/base-choosen.vue.d.ts +1 -0
- package/dist/components/base-datepicker.vue.d.ts +2 -1
- package/dist/components/base-file-upload.vue.d.ts +3 -2
- package/dist/components/base-input-mask.vue.d.ts +4 -2
- package/dist/components/base-input-number.vue.d.ts +6 -4
- package/dist/components/base-input.vue.d.ts +7 -3
- package/dist/components/base-link.vue.d.ts +4 -1
- package/dist/components/base-progress.vue.d.ts +1 -1
- package/dist/components/base-radio.vue.d.ts +3 -3
- package/dist/components/base-range.vue.d.ts +2 -1
- package/dist/components/base-select.vue.d.ts +5 -4
- package/dist/components/base-spinner.vue.d.ts +1 -1
- package/dist/components/base-switch.vue.d.ts +4 -3
- package/dist/components/base-textarea.vue.d.ts +2 -1
- package/dist/components/base-toast.vue.d.ts +5 -2
- package/dist/components/header-menu-account.vue.d.ts +7 -0
- package/dist/components/header-menu-dark-mode.vue.d.ts +12 -0
- package/dist/components/header-menu-signout.vue.d.ts +5 -0
- package/dist/components/header-menu-switch-organization.vue.d.ts +9 -0
- package/dist/components/header-menu.vue.d.ts +26 -0
- package/dist/components/header-notification.vue.d.ts +59 -0
- package/dist/components/header-sidebar-button.vue.d.ts +12 -0
- package/dist/index.css +1 -1
- package/dist/index.d.ts +9 -1
- package/dist/index.js +4606 -4387
- package/dist/index.umd.cjs +8 -8
- package/dist/layouts/app.vue.d.ts +1 -1
- package/dist/pages/{page-1.vue.d.ts → cypress-selector.vue.d.ts} +1 -1
- package/dist/plugins/base.d.ts +2 -5
- package/dist/plugins/input-mask.d.ts +2 -5
- package/dist/plugins/tooltip.d.ts +2 -5
- package/dist/stores/sidebar-menu.d.ts +47 -28
- package/package.json +20 -11
- package/dist/pages/page-2.vue.d.ts +0 -2
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
type __VLS_Props = {
|
|
2
|
+
organization: string;
|
|
3
|
+
username: string;
|
|
4
|
+
avatar: string;
|
|
5
|
+
};
|
|
6
|
+
declare const _default: import('vue').DefineComponent<__VLS_Props, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<__VLS_Props> & Readonly<{}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, any>;
|
|
7
|
+
export default _default;
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
type __VLS_Props = {
|
|
2
|
+
onToggleDarkMode: () => void;
|
|
3
|
+
};
|
|
4
|
+
type __VLS_PublicProps = {
|
|
5
|
+
'is-dark-mode'?: boolean;
|
|
6
|
+
} & __VLS_Props;
|
|
7
|
+
declare const _default: import('vue').DefineComponent<__VLS_PublicProps, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
|
|
8
|
+
"update:is-dark-mode": (value: boolean) => any;
|
|
9
|
+
}, string, import('vue').PublicProps, Readonly<__VLS_PublicProps> & Readonly<{
|
|
10
|
+
"onUpdate:is-dark-mode"?: ((value: boolean) => any) | undefined;
|
|
11
|
+
}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, any>;
|
|
12
|
+
export default _default;
|
|
@@ -0,0 +1,5 @@
|
|
|
1
|
+
type __VLS_Props = {
|
|
2
|
+
onSignout: () => void;
|
|
3
|
+
};
|
|
4
|
+
declare const _default: import('vue').DefineComponent<__VLS_Props, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<__VLS_Props> & Readonly<{}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, any>;
|
|
5
|
+
export default _default;
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
interface IOrganization {
|
|
2
|
+
name: string;
|
|
3
|
+
link: string;
|
|
4
|
+
}
|
|
5
|
+
type __VLS_Props = {
|
|
6
|
+
organizations: IOrganization[];
|
|
7
|
+
};
|
|
8
|
+
declare const _default: import('vue').DefineComponent<__VLS_Props, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<__VLS_Props> & Readonly<{}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, any>;
|
|
9
|
+
export default _default;
|
|
@@ -0,0 +1,26 @@
|
|
|
1
|
+
type __VLS_Props = {
|
|
2
|
+
organization: string;
|
|
3
|
+
username: string;
|
|
4
|
+
avatar: string;
|
|
5
|
+
};
|
|
6
|
+
declare function __VLS_template(): {
|
|
7
|
+
attrs: Partial<{}>;
|
|
8
|
+
slots: {
|
|
9
|
+
default?(_: {}): any;
|
|
10
|
+
};
|
|
11
|
+
refs: {
|
|
12
|
+
accountPopoverRef: unknown;
|
|
13
|
+
};
|
|
14
|
+
rootEl: any;
|
|
15
|
+
};
|
|
16
|
+
type __VLS_TemplateResult = ReturnType<typeof __VLS_template>;
|
|
17
|
+
declare const __VLS_component: import('vue').DefineComponent<__VLS_Props, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<__VLS_Props> & Readonly<{}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {
|
|
18
|
+
accountPopoverRef: unknown;
|
|
19
|
+
}, any>;
|
|
20
|
+
declare const _default: __VLS_WithTemplateSlots<typeof __VLS_component, __VLS_TemplateResult["slots"]>;
|
|
21
|
+
export default _default;
|
|
22
|
+
type __VLS_WithTemplateSlots<T, S> = T & {
|
|
23
|
+
new (): {
|
|
24
|
+
$slots: S;
|
|
25
|
+
};
|
|
26
|
+
};
|
|
@@ -0,0 +1,59 @@
|
|
|
1
|
+
declare const _default: import('vue').DefineComponent<{}, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {
|
|
2
|
+
notificationPopoverRef: ({
|
|
3
|
+
$: import('vue').ComponentInternalInstance;
|
|
4
|
+
$data: {};
|
|
5
|
+
$props: {
|
|
6
|
+
readonly placement?: import('./base-popover.vue').BasePopoverPlacementType | undefined;
|
|
7
|
+
} & import('vue').VNodeProps & import('vue').AllowedComponentProps & import('vue').ComponentCustomProps;
|
|
8
|
+
$attrs: {
|
|
9
|
+
[x: string]: unknown;
|
|
10
|
+
};
|
|
11
|
+
$refs: {
|
|
12
|
+
[x: string]: unknown;
|
|
13
|
+
} & {
|
|
14
|
+
ignoreOutsideRef: HTMLButtonElement;
|
|
15
|
+
};
|
|
16
|
+
$slots: Readonly<{
|
|
17
|
+
[name: string]: import('vue').Slot<any> | undefined;
|
|
18
|
+
}>;
|
|
19
|
+
$root: import('vue').ComponentPublicInstance | null;
|
|
20
|
+
$parent: import('vue').ComponentPublicInstance | null;
|
|
21
|
+
$host: Element | null;
|
|
22
|
+
$emit: (event: string, ...args: any[]) => void;
|
|
23
|
+
$el: any;
|
|
24
|
+
$options: import('vue').ComponentOptionsBase<Readonly<import('./base-popover.vue').Props> & Readonly<{}>, {
|
|
25
|
+
toggle: (val: boolean) => void;
|
|
26
|
+
}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, {
|
|
27
|
+
placement: import('./base-popover.vue').BasePopoverPlacementType;
|
|
28
|
+
}, {}, string, {}, import('vue').GlobalComponents, import('vue').GlobalDirectives, string, import('vue').ComponentProvideOptions> & {
|
|
29
|
+
beforeCreate?: (() => void) | (() => void)[];
|
|
30
|
+
created?: (() => void) | (() => void)[];
|
|
31
|
+
beforeMount?: (() => void) | (() => void)[];
|
|
32
|
+
mounted?: (() => void) | (() => void)[];
|
|
33
|
+
beforeUpdate?: (() => void) | (() => void)[];
|
|
34
|
+
updated?: (() => void) | (() => void)[];
|
|
35
|
+
activated?: (() => void) | (() => void)[];
|
|
36
|
+
deactivated?: (() => void) | (() => void)[];
|
|
37
|
+
beforeDestroy?: (() => void) | (() => void)[];
|
|
38
|
+
beforeUnmount?: (() => void) | (() => void)[];
|
|
39
|
+
destroyed?: (() => void) | (() => void)[];
|
|
40
|
+
unmounted?: (() => void) | (() => void)[];
|
|
41
|
+
renderTracked?: ((e: import('vue').DebuggerEvent) => void) | ((e: import('vue').DebuggerEvent) => void)[];
|
|
42
|
+
renderTriggered?: ((e: import('vue').DebuggerEvent) => void) | ((e: import('vue').DebuggerEvent) => void)[];
|
|
43
|
+
errorCaptured?: ((err: unknown, instance: import('vue').ComponentPublicInstance | null, info: string) => boolean | void) | ((err: unknown, instance: import('vue').ComponentPublicInstance | null, info: string) => boolean | void)[];
|
|
44
|
+
};
|
|
45
|
+
$forceUpdate: () => void;
|
|
46
|
+
$nextTick: typeof import('vue').nextTick;
|
|
47
|
+
$watch<T extends string | ((...args: any) => any)>(source: T, cb: T extends (...args: any) => infer R ? (...args: [R, R, import('@vue/reactivity').OnCleanup]) => any : (...args: [any, any, import('@vue/reactivity').OnCleanup]) => any, options?: import('vue').WatchOptions): import('vue').WatchStopHandle;
|
|
48
|
+
} & Readonly<{
|
|
49
|
+
placement: import('./base-popover.vue').BasePopoverPlacementType;
|
|
50
|
+
}> & Omit<Readonly<import('./base-popover.vue').Props> & Readonly<{}>, "placement" | "toggle"> & import('vue').ShallowUnwrapRef<{
|
|
51
|
+
toggle: (val: boolean) => void;
|
|
52
|
+
}> & {} & import('vue').ComponentCustomProperties & {} & {
|
|
53
|
+
$slots: {
|
|
54
|
+
default?(_: {}): any;
|
|
55
|
+
content?(_: any): any;
|
|
56
|
+
};
|
|
57
|
+
}) | null;
|
|
58
|
+
}, any>;
|
|
59
|
+
export default _default;
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
type __VLS_Props = {
|
|
2
|
+
onToggleSidebar: () => void;
|
|
3
|
+
};
|
|
4
|
+
type __VLS_PublicProps = {
|
|
5
|
+
'is-sidebar-open'?: boolean;
|
|
6
|
+
} & __VLS_Props;
|
|
7
|
+
declare const _default: import('vue').DefineComponent<__VLS_PublicProps, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
|
|
8
|
+
"update:is-sidebar-open": (value: boolean) => any;
|
|
9
|
+
}, string, import('vue').PublicProps, Readonly<__VLS_PublicProps> & Readonly<{
|
|
10
|
+
"onUpdate:is-sidebar-open"?: ((value: boolean) => any) | undefined;
|
|
11
|
+
}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, HTMLAnchorElement>;
|
|
12
|
+
export default _default;
|