@point-hub/papp 0.0.111 → 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.
Files changed (44) hide show
  1. package/dist/app.vue.d.ts +11 -1
  2. package/dist/components/app-footer.vue.d.ts +1 -0
  3. package/dist/components/app-header.vue.d.ts +17 -114
  4. package/dist/components/app-sidebar-panel.vue.d.ts +2 -1
  5. package/dist/components/app-sidebar.vue.d.ts +2 -1
  6. package/dist/components/base-accordion-item.vue.d.ts +1 -0
  7. package/dist/components/base-autocomplete.vue.d.ts +3 -2
  8. package/dist/components/base-avatar.vue.d.ts +2 -2
  9. package/dist/components/base-button.vue.d.ts +5 -1
  10. package/dist/components/base-checkbox.vue.d.ts +3 -3
  11. package/dist/components/base-choosen.vue.d.ts +2 -1
  12. package/dist/components/base-datepicker.vue.d.ts +3 -2
  13. package/dist/components/base-file-upload.vue.d.ts +4 -3
  14. package/dist/components/base-input-mask.vue.d.ts +5 -3
  15. package/dist/components/base-input-number.vue.d.ts +7 -5
  16. package/dist/components/base-input.vue.d.ts +8 -4
  17. package/dist/components/base-link.vue.d.ts +4 -1
  18. package/dist/components/base-progress.vue.d.ts +1 -1
  19. package/dist/components/base-radio.vue.d.ts +4 -4
  20. package/dist/components/base-range.vue.d.ts +2 -1
  21. package/dist/components/base-select.vue.d.ts +6 -5
  22. package/dist/components/base-spinner.vue.d.ts +1 -1
  23. package/dist/components/base-switch.vue.d.ts +4 -3
  24. package/dist/components/base-textarea.vue.d.ts +3 -2
  25. package/dist/components/base-toast.vue.d.ts +5 -2
  26. package/dist/components/header-menu-account.vue.d.ts +7 -0
  27. package/dist/components/header-menu-dark-mode.vue.d.ts +12 -0
  28. package/dist/components/header-menu-signout.vue.d.ts +5 -0
  29. package/dist/components/header-menu-switch-organization.vue.d.ts +9 -0
  30. package/dist/components/header-menu.vue.d.ts +26 -0
  31. package/dist/components/header-notification.vue.d.ts +59 -0
  32. package/dist/components/header-sidebar-button.vue.d.ts +12 -0
  33. package/dist/index.css +1 -1
  34. package/dist/index.d.ts +9 -1
  35. package/dist/index.js +4601 -4392
  36. package/dist/index.umd.cjs +7 -7
  37. package/dist/layouts/app.vue.d.ts +1 -1
  38. package/dist/pages/{page-1.vue.d.ts → cypress-selector.vue.d.ts} +1 -1
  39. package/dist/plugins/base.d.ts +2 -5
  40. package/dist/plugins/input-mask.d.ts +2 -5
  41. package/dist/plugins/tooltip.d.ts +2 -5
  42. package/dist/stores/sidebar-menu.d.ts +47 -28
  43. package/package.json +11 -2
  44. package/dist/pages/page-2.vue.d.ts +0 -2
@@ -14,6 +14,7 @@ export interface Props {
14
14
  required?: boolean;
15
15
  disabled?: boolean;
16
16
  helpers?: string[];
17
+ dataTestid?: string;
17
18
  }
18
19
  type __VLS_Props = Props;
19
20
  type __VLS_PublicProps = {
@@ -25,7 +26,7 @@ declare function __VLS_template(): {
25
26
  label?(_: {}): any;
26
27
  };
27
28
  refs: {};
28
- rootEl: HTMLDivElement;
29
+ rootEl: any;
29
30
  };
30
31
  type __VLS_TemplateResult = ReturnType<typeof __VLS_template>;
31
32
  declare const __VLS_component: import('vue').DefineComponent<__VLS_PublicProps, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
@@ -36,12 +37,12 @@ declare const __VLS_component: import('vue').DefineComponent<__VLS_PublicProps,
36
37
  "onUpdate:modelValue"?: ((value: boolean) => any) | undefined;
37
38
  "onUpdate:errors"?: ((value: string[]) => any) | undefined;
38
39
  }>, {
40
+ required: boolean;
39
41
  size: BaseSwitchSize;
40
42
  disabled: boolean;
41
- required: boolean;
42
43
  layout: BaseFormLayoutType;
43
44
  textPosition: BaseSwitchTextPosition;
44
- }, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, HTMLDivElement>;
45
+ }, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, any>;
45
46
  declare const _default: __VLS_WithTemplateSlots<typeof __VLS_component, __VLS_TemplateResult["slots"]>;
46
47
  export default _default;
47
48
  type __VLS_WithTemplateSlots<T, S> = T & {
@@ -15,6 +15,7 @@ export interface Props {
15
15
  helpers?: string[];
16
16
  minHeight?: number;
17
17
  maxHeight?: number;
18
+ dataTestid?: string;
18
19
  }
19
20
  type __VLS_Props = Props;
20
21
  type __VLS_PublicProps = {
@@ -30,12 +31,12 @@ declare const _default: import('vue').DefineComponent<__VLS_PublicProps, {
30
31
  "onUpdate:modelValue"?: ((value: string) => any) | undefined;
31
32
  "onUpdate:errors"?: ((value: string[]) => any) | undefined;
32
33
  }>, {
33
- disabled: boolean;
34
34
  required: boolean;
35
+ disabled: boolean;
35
36
  layout: BaseFormLayoutType;
36
37
  border: BaseTextareaBorderType;
37
38
  autofocus: boolean;
38
39
  }, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {
39
40
  textareaRef: HTMLTextAreaElement;
40
- }, HTMLDivElement>;
41
+ }, any>;
41
42
  export default _default;
@@ -5,6 +5,9 @@ export interface IOptions {
5
5
  autoClose?: boolean;
6
6
  timer?: number;
7
7
  }
8
+ export interface Props {
9
+ dataTestid?: string;
10
+ }
8
11
  declare function __VLS_template(): {
9
12
  attrs: Partial<{}>;
10
13
  slots: {
@@ -16,10 +19,10 @@ declare function __VLS_template(): {
16
19
  rootEl: any;
17
20
  };
18
21
  type __VLS_TemplateResult = ReturnType<typeof __VLS_template>;
19
- declare const __VLS_component: import('vue').DefineComponent<{}, {
22
+ declare const __VLS_component: import('vue').DefineComponent<Props, {
20
23
  toast: (message: string, options?: IOptions) => void;
21
24
  remove: (id: string) => void;
22
- }, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
25
+ }, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<Props> & Readonly<{}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, any>;
23
26
  declare const _default: __VLS_WithTemplateSlots<typeof __VLS_component, __VLS_TemplateResult["slots"]>;
24
27
  export default _default;
25
28
  type __VLS_WithTemplateSlots<T, S> = T & {
@@ -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;