jplan-pack 0.3.62 → 0.3.64

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 (38) hide show
  1. package/dist/components/ConfirmDialog.vue.d.ts +29 -0
  2. package/dist/{types/components → components}/CopyButton.vue.d.ts +4 -4
  3. package/dist/components/GlobalDialog.vue.d.ts +33 -0
  4. package/dist/{types/components → components}/JBtn.vue.d.ts +12 -5
  5. package/dist/components/JIconBtn.vue.d.ts +29 -0
  6. package/dist/{types/components → components}/JTextField.vue.d.ts +4 -4
  7. package/dist/components/ParentCard.vue.d.ts +24 -0
  8. package/dist/{types/components → components}/icon/IconSet.vue.d.ts +10 -10
  9. package/dist/components/table/UiTable.vue.d.ts +42 -0
  10. package/dist/index.d.ts +10 -0
  11. package/dist/jplan-lib.es.js.mjs +9 -9
  12. package/dist/types/index.d.ts +2 -10
  13. package/dist/types/{types/sidebarItem.d.ts → sidebarItem.d.ts} +1 -0
  14. package/package.json +1 -1
  15. package/dist/types/components/ConfirmDialog.vue.d.ts +0 -69
  16. package/dist/types/components/GlobalDialog.vue.d.ts +0 -26
  17. package/dist/types/components/JIconBtn.vue.d.ts +0 -64
  18. package/dist/types/components/ParentCard.vue.d.ts +0 -17
  19. package/dist/types/components/table/UiTable.vue.d.ts +0 -35
  20. package/dist/types/types/index.d.ts +0 -3
  21. /package/dist/{types/components → components}/DotsMenu.vue.d.ts +0 -0
  22. /package/dist/{types/components → components}/icon/tabler.d.ts +0 -0
  23. /package/dist/{types/components → components}/index.d.ts +0 -0
  24. /package/dist/{types/components → components}/layout/header/EnvironmentDialog.vue.d.ts +0 -0
  25. /package/dist/{types/components → components}/layout/header/MegaMenuDD.vue.d.ts +0 -0
  26. /package/dist/{types/components → components}/layout/header/NotificationDD.vue.d.ts +0 -0
  27. /package/dist/{types/components → components}/layout/header/ProfileDD.vue.d.ts +0 -0
  28. /package/dist/{types/components → components}/layout/header/UiHeader.vue.d.ts +0 -0
  29. /package/dist/{types/components → components}/layout/header/data.d.ts +0 -0
  30. /package/dist/{types/components → components}/layout/sidebar/_type.d.ts +0 -0
  31. /package/dist/{types/composables → composables}/index.d.ts +0 -0
  32. /package/dist/{types/composables → composables}/useCustomizer.d.ts +0 -0
  33. /package/dist/{types/composables → composables}/useDialog.d.ts +0 -0
  34. /package/dist/{types/constants → constants}/index.d.ts +0 -0
  35. /package/dist/{types/plugins → plugins}/pinia/pinia.d.ts +0 -0
  36. /package/dist/types/{types/UiTableHeader.d.ts → UiTableHeader.d.ts} +0 -0
  37. /package/dist/{types/utils → utils}/MyUtil.d.ts +0 -0
  38. /package/dist/{types/utils → utils}/index.d.ts +0 -0
@@ -0,0 +1,29 @@
1
+ export interface DialogProps {
2
+ title: string;
3
+ text?: string;
4
+ callback?: () => Promise<void> | void;
5
+ cancelCallback?: () => void;
6
+ width?: string;
7
+ loading?: boolean;
8
+ }
9
+ declare function __VLS_template(): {
10
+ slots: {
11
+ button?(_: {
12
+ isActive: any;
13
+ props: any;
14
+ }): any;
15
+ };
16
+ refs: {};
17
+ attrs: Partial<{}>;
18
+ };
19
+ type __VLS_TemplateResult = ReturnType<typeof __VLS_template>;
20
+ declare const __VLS_component: import('vue').DefineComponent<DialogProps, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<DialogProps> & Readonly<{}>, {
21
+ width: string;
22
+ }, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, any>;
23
+ declare const _default: __VLS_WithTemplateSlots<typeof __VLS_component, __VLS_TemplateResult["slots"]>;
24
+ export default _default;
25
+ type __VLS_WithTemplateSlots<T, S> = T & {
26
+ new (): {
27
+ $slots: S;
28
+ };
29
+ };
@@ -1,10 +1,10 @@
1
1
  declare const _default: import('vue').DefineComponent<{
2
2
  contentToCopy: string;
3
- size?: number | "small" | "medium" | "large" | undefined;
4
- color?: string | undefined;
3
+ size?: "small" | "medium" | "large" | number;
4
+ color?: string;
5
5
  }, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<{
6
6
  contentToCopy: string;
7
- size?: number | "small" | "medium" | "large" | undefined;
8
- color?: string | undefined;
7
+ size?: "small" | "medium" | "large" | number;
8
+ color?: string;
9
9
  }> & Readonly<{}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, any>;
10
10
  export default _default;
@@ -0,0 +1,33 @@
1
+ export type JDialogType = {
2
+ dialogId?: string;
3
+ title?: string;
4
+ text?: string;
5
+ callback?: (...params: any) => any;
6
+ cancelCallback?: () => void;
7
+ width?: string;
8
+ reference?: boolean;
9
+ buttons?: boolean;
10
+ };
11
+ declare function __VLS_template(): {
12
+ slots: {
13
+ title?(_: {}): any;
14
+ "heading-actions"?(_: {}): any;
15
+ default?(_: {}): any;
16
+ footer?(_: {}): any;
17
+ metadata?(_: {}): any;
18
+ };
19
+ refs: {};
20
+ attrs: Partial<{}>;
21
+ };
22
+ type __VLS_TemplateResult = ReturnType<typeof __VLS_template>;
23
+ declare const __VLS_component: import('vue').DefineComponent<JDialogType, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<JDialogType> & Readonly<{}>, {
24
+ width: string;
25
+ buttons: boolean;
26
+ }, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, any>;
27
+ declare const _default: __VLS_WithTemplateSlots<typeof __VLS_component, __VLS_TemplateResult["slots"]>;
28
+ export default _default;
29
+ type __VLS_WithTemplateSlots<T, S> = T & {
30
+ new (): {
31
+ $slots: S;
32
+ };
33
+ };
@@ -7,16 +7,23 @@ export interface BtnProps {
7
7
  color: string;
8
8
  tooltip?: string;
9
9
  }
10
- declare const _default: __VLS_WithTemplateSlots<import('vue').DefineComponent<BtnProps, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
10
+ declare function __VLS_template(): {
11
+ slots: {
12
+ default?(_: {}): any;
13
+ };
14
+ refs: {};
15
+ attrs: Partial<{}>;
16
+ };
17
+ type __VLS_TemplateResult = ReturnType<typeof __VLS_template>;
18
+ declare const __VLS_component: import('vue').DefineComponent<BtnProps, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
11
19
  click: (...args: any[]) => void;
12
20
  }, string, import('vue').PublicProps, Readonly<BtnProps> & Readonly<{
13
21
  onClick?: ((...args: any[]) => any) | undefined;
14
22
  }>, {
15
23
  color: string;
16
- variant: "flat" | "text" | "elevated" | "tonal" | "outlined" | "plain";
17
- }, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, any>, {
18
- default?(_: {}): any;
19
- }>;
24
+ variant: VBtn["variant"];
25
+ }, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, any>;
26
+ declare const _default: __VLS_WithTemplateSlots<typeof __VLS_component, __VLS_TemplateResult["slots"]>;
20
27
  export default _default;
21
28
  type __VLS_WithTemplateSlots<T, S> = T & {
22
29
  new (): {
@@ -0,0 +1,29 @@
1
+ import { VBtn } from 'vuetify/components';
2
+ import { TablerIconComponent } from 'vue-tabler-icons';
3
+ export interface Props<T> {
4
+ variant?: VBtn['variant'];
5
+ icon?: string | TablerIconComponent | SVGElement;
6
+ color?: string;
7
+ tooltip?: string;
8
+ size?: number;
9
+ }
10
+ declare const _default: <T>(__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<{
11
+ props: __VLS_PrettifyLocal<Pick<Partial<{}> & Omit<{
12
+ readonly onClick?: ((...args: any[]) => any) | undefined;
13
+ } & import('vue').VNodeProps & import('vue').AllowedComponentProps & import('vue').ComponentCustomProps, never>, "onClick"> & Props<T>> & import('vue').PublicProps;
14
+ expose(exposed: import('vue').ShallowUnwrapRef<{}>): void;
15
+ attrs: any;
16
+ slots: {
17
+ default?(_: {}): any;
18
+ default?(_: {}): any;
19
+ };
20
+ emit: (event: "click", ...args: any[]) => void;
21
+ }>) => import('vue').VNode<import('vue').RendererNode, import('vue').RendererElement, {
22
+ [key: string]: any;
23
+ }> & {
24
+ __ctx?: Awaited<typeof __VLS_setup>;
25
+ };
26
+ export default _default;
27
+ type __VLS_PrettifyLocal<T> = {
28
+ [K in keyof T]: T[K];
29
+ } & {};
@@ -1,14 +1,14 @@
1
1
  declare const _default: import('vue').DefineComponent<{
2
2
  modelValue: string;
3
- name?: string | undefined;
4
- label?: string | undefined;
3
+ name?: string;
4
+ label?: string;
5
5
  type: "text" | "password" | "email" | "date";
6
6
  }, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
7
7
  "update:modelValue": (...args: any[]) => void;
8
8
  }, string, import('vue').PublicProps, Readonly<{
9
9
  modelValue: string;
10
- name?: string | undefined;
11
- label?: string | undefined;
10
+ name?: string;
11
+ label?: string;
12
12
  type: "text" | "password" | "email" | "date";
13
13
  }> & Readonly<{
14
14
  "onUpdate:modelValue"?: ((...args: any[]) => any) | undefined;
@@ -0,0 +1,24 @@
1
+ declare function __VLS_template(): {
2
+ slots: {
3
+ default?(_: {}): any;
4
+ };
5
+ refs: {};
6
+ attrs: Partial<{}>;
7
+ };
8
+ type __VLS_TemplateResult = ReturnType<typeof __VLS_template>;
9
+ declare const __VLS_component: import('vue').DefineComponent<{
10
+ title?: string;
11
+ height?: string;
12
+ }, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<{
13
+ title?: string;
14
+ height?: string;
15
+ }> & Readonly<{}>, {
16
+ height: string;
17
+ }, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, any>;
18
+ declare const _default: __VLS_WithTemplateSlots<typeof __VLS_component, __VLS_TemplateResult["slots"]>;
19
+ export default _default;
20
+ type __VLS_WithTemplateSlots<T, S> = T & {
21
+ new (): {
22
+ $slots: S;
23
+ };
24
+ };
@@ -1,18 +1,18 @@
1
1
  import { TablerIconComponent } from 'vue-tabler-icons';
2
2
  declare const _default: import('vue').DefineComponent<{
3
3
  item: string | TablerIconComponent | SVGElement;
4
- level?: number | undefined;
5
- size?: number | undefined;
6
- stroke?: number | undefined;
7
- color?: string | undefined;
8
- svg?: SVGElement | null | undefined;
4
+ level?: number;
5
+ size?: number;
6
+ stroke?: number;
7
+ color?: string;
8
+ svg?: SVGElement | null;
9
9
  }, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<{
10
10
  item: string | TablerIconComponent | SVGElement;
11
- level?: number | undefined;
12
- size?: number | undefined;
13
- stroke?: number | undefined;
14
- color?: string | undefined;
15
- svg?: SVGElement | null | undefined;
11
+ level?: number;
12
+ size?: number;
13
+ stroke?: number;
14
+ color?: string;
15
+ svg?: SVGElement | null;
16
16
  }> & Readonly<{}>, {
17
17
  size: number;
18
18
  color: string;
@@ -0,0 +1,42 @@
1
+ import { UiTableHeader } from '../../types/UiTableHeader';
2
+ declare function __VLS_template(): {
3
+ slots: {
4
+ actions?(_: {
5
+ item: any;
6
+ }): any;
7
+ };
8
+ refs: {};
9
+ attrs: Partial<{}>;
10
+ };
11
+ type __VLS_TemplateResult = ReturnType<typeof __VLS_template>;
12
+ declare const __VLS_component: import('vue').DefineComponent<{
13
+ headers?: UiTableHeader[];
14
+ items: any[];
15
+ actions?: any;
16
+ loading?: boolean;
17
+ columns?: UiTableHeader[];
18
+ sortBy?: {
19
+ key: string;
20
+ order: "asc" | "desc";
21
+ }[];
22
+ }, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<{
23
+ headers?: UiTableHeader[];
24
+ items: any[];
25
+ actions?: any;
26
+ loading?: boolean;
27
+ columns?: UiTableHeader[];
28
+ sortBy?: {
29
+ key: string;
30
+ order: "asc" | "desc";
31
+ }[];
32
+ }> & Readonly<{}>, {
33
+ items: any[];
34
+ columns: UiTableHeader[];
35
+ }, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, any>;
36
+ declare const _default: __VLS_WithTemplateSlots<typeof __VLS_component, __VLS_TemplateResult["slots"]>;
37
+ export default _default;
38
+ type __VLS_WithTemplateSlots<T, S> = T & {
39
+ new (): {
40
+ $slots: S;
41
+ };
42
+ };
@@ -0,0 +1,10 @@
1
+ import { App } from 'vue';
2
+ declare const _default: {
3
+ install: (app: App) => void;
4
+ };
5
+ export default _default;
6
+ export * from './components';
7
+ export * from './composables';
8
+ export * from './constants';
9
+ export * from './utils';
10
+ export * from './types';
@@ -169643,7 +169643,7 @@ const _pt = /* @__PURE__ */ Gpt({
169643
169643
  }
169644
169644
  });
169645
169645
  /**
169646
- * @license @tabler/icons-vue v3.21.0 - MIT
169646
+ * @license @tabler/icons-vue v3.22.0 - MIT
169647
169647
  *
169648
169648
  * This source code is licensed under the MIT license.
169649
169649
  * See the LICENSE file in the root directory of this source tree.
@@ -169670,7 +169670,7 @@ var re = {
169670
169670
  }
169671
169671
  };
169672
169672
  /**
169673
- * @license @tabler/icons-vue v3.21.0 - MIT
169673
+ * @license @tabler/icons-vue v3.22.0 - MIT
169674
169674
  *
169675
169675
  * This source code is licensed under the MIT license.
169676
169676
  * See the LICENSE file in the root directory of this source tree.
@@ -169697,49 +169697,49 @@ const Q = (n, l, r, s) => ({ color: a = "currentColor", size: i = 24, stroke: c
169697
169697
  );
169698
169698
  };
169699
169699
  /**
169700
- * @license @tabler/icons-vue v3.21.0 - MIT
169700
+ * @license @tabler/icons-vue v3.22.0 - MIT
169701
169701
  *
169702
169702
  * This source code is licensed under the MIT license.
169703
169703
  * See the LICENSE file in the root directory of this source tree.
169704
169704
  */
169705
169705
  var rut = Q("outline", "building-store", "IconBuildingStore", [["path", { d: "M3 21l18 0", key: "svg-0" }], ["path", { d: "M3 7v1a3 3 0 0 0 6 0v-1m0 1a3 3 0 0 0 6 0v-1m0 1a3 3 0 0 0 6 0v-1h-18l2 -4h14l2 4", key: "svg-1" }], ["path", { d: "M5 21l0 -10.15", key: "svg-2" }], ["path", { d: "M19 21l0 -10.15", key: "svg-3" }], ["path", { d: "M9 21v-4a2 2 0 0 1 2 -2h2a2 2 0 0 1 2 2v4", key: "svg-4" }]]);
169706
169706
  /**
169707
- * @license @tabler/icons-vue v3.21.0 - MIT
169707
+ * @license @tabler/icons-vue v3.22.0 - MIT
169708
169708
  *
169709
169709
  * This source code is licensed under the MIT license.
169710
169710
  * See the LICENSE file in the root directory of this source tree.
169711
169711
  */
169712
169712
  var out = Q("outline", "logout", "IconLogout", [["path", { d: "M14 8v-2a2 2 0 0 0 -2 -2h-7a2 2 0 0 0 -2 2v12a2 2 0 0 0 2 2h7a2 2 0 0 0 2 -2v-2", key: "svg-0" }], ["path", { d: "M9 12h12l-3 -3", key: "svg-1" }], ["path", { d: "M18 15l3 -3", key: "svg-2" }]]);
169713
169713
  /**
169714
- * @license @tabler/icons-vue v3.21.0 - MIT
169714
+ * @license @tabler/icons-vue v3.22.0 - MIT
169715
169715
  *
169716
169716
  * This source code is licensed under the MIT license.
169717
169717
  * See the LICENSE file in the root directory of this source tree.
169718
169718
  */
169719
169719
  var sut = Q("outline", "mailbox", "IconMailbox", [["path", { d: "M10 21v-6.5a3.5 3.5 0 0 0 -7 0v6.5h18v-6a4 4 0 0 0 -4 -4h-10.5", key: "svg-0" }], ["path", { d: "M12 11v-8h4l2 2l-2 2h-4", key: "svg-1" }], ["path", { d: "M6 15h1", key: "svg-2" }]]);
169720
169720
  /**
169721
- * @license @tabler/icons-vue v3.21.0 - MIT
169721
+ * @license @tabler/icons-vue v3.22.0 - MIT
169722
169722
  *
169723
169723
  * This source code is licensed under the MIT license.
169724
169724
  * See the LICENSE file in the root directory of this source tree.
169725
169725
  */
169726
169726
  var aut = Q("outline", "photo", "IconPhoto", [["path", { d: "M15 8h.01", key: "svg-0" }], ["path", { d: "M3 6a3 3 0 0 1 3 -3h12a3 3 0 0 1 3 3v12a3 3 0 0 1 -3 3h-12a3 3 0 0 1 -3 -3v-12z", key: "svg-1" }], ["path", { d: "M3 16l5 -5c.928 -.893 2.072 -.893 3 0l5 5", key: "svg-2" }], ["path", { d: "M14 14l1 -1c.928 -.893 2.072 -.893 3 0l3 3", key: "svg-3" }]]);
169727
169727
  /**
169728
- * @license @tabler/icons-vue v3.21.0 - MIT
169728
+ * @license @tabler/icons-vue v3.22.0 - MIT
169729
169729
  *
169730
169730
  * This source code is licensed under the MIT license.
169731
169731
  * See the LICENSE file in the root directory of this source tree.
169732
169732
  */
169733
169733
  var iut = Q("outline", "send", "IconSend", [["path", { d: "M10 14l11 -11", key: "svg-0" }], ["path", { d: "M21 3l-6.5 18a.55 .55 0 0 1 -1 0l-3.5 -7l-7 -3.5a.55 .55 0 0 1 0 -1l18 -6.5", key: "svg-1" }]]);
169734
169734
  /**
169735
- * @license @tabler/icons-vue v3.21.0 - MIT
169735
+ * @license @tabler/icons-vue v3.22.0 - MIT
169736
169736
  *
169737
169737
  * This source code is licensed under the MIT license.
169738
169738
  * See the LICENSE file in the root directory of this source tree.
169739
169739
  */
169740
169740
  var hut = Q("outline", "settings", "IconSettings", [["path", { d: "M10.325 4.317c.426 -1.756 2.924 -1.756 3.35 0a1.724 1.724 0 0 0 2.573 1.066c1.543 -.94 3.31 .826 2.37 2.37a1.724 1.724 0 0 0 1.065 2.572c1.756 .426 1.756 2.924 0 3.35a1.724 1.724 0 0 0 -1.066 2.573c.94 1.543 -.826 3.31 -2.37 2.37a1.724 1.724 0 0 0 -2.572 1.065c-.426 1.756 -2.924 1.756 -3.35 0a1.724 1.724 0 0 0 -2.573 -1.066c-1.543 .94 -3.31 -.826 -2.37 -2.37a1.724 1.724 0 0 0 -1.065 -2.572c-1.756 -.426 -1.756 -2.924 0 -3.35a1.724 1.724 0 0 0 1.066 -2.573c-.94 -1.543 .826 -3.31 2.37 -2.37c1 .608 2.296 .07 2.572 -1.065z", key: "svg-0" }], ["path", { d: "M9 12a3 3 0 1 0 6 0a3 3 0 0 0 -6 0", key: "svg-1" }]]);
169741
169741
  /**
169742
- * @license @tabler/icons-vue v3.21.0 - MIT
169742
+ * @license @tabler/icons-vue v3.22.0 - MIT
169743
169743
  *
169744
169744
  * This source code is licensed under the MIT license.
169745
169745
  * See the LICENSE file in the root directory of this source tree.
@@ -1,10 +1,2 @@
1
- import { App } from 'vue';
2
- declare const _default: {
3
- install: (app: App<any>) => void;
4
- };
5
- export default _default;
6
- export * from './components';
7
- export * from './composables';
8
- export * from './constants';
9
- export * from './utils';
10
- export * from './types';
1
+ export * from './UiTableHeader';
2
+ export * from './sidebarItem';
@@ -2,6 +2,7 @@ export type sidebarItem = {
2
2
  title?: string;
3
3
  icon?: any;
4
4
  to?: string;
5
+ disabled?: boolean;
5
6
  header?: boolean;
6
7
  divider?: boolean;
7
8
  children?: sidebarItem[];
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "jplan-pack",
3
- "version": "0.3.62",
3
+ "version": "0.3.64",
4
4
  "files": ["dist"],
5
5
  "main": "./dist/jplan-lib.es.js",
6
6
  "types": "./dist/types/index.d.ts",
@@ -1,69 +0,0 @@
1
- export interface DialogProps<T> {
2
- title: string;
3
- text?: string;
4
- callback?: () => Promise<void> | void;
5
- cancelCallback?: () => void;
6
- width?: string;
7
- loading?: boolean;
8
- }
9
- declare const _default: <T>(__VLS_props: {
10
- title: string;
11
- text?: string | undefined;
12
- callback?: (() => void | Promise<void>) | undefined;
13
- cancelCallback?: (() => void) | undefined;
14
- width?: string | undefined;
15
- loading?: boolean | undefined;
16
- } & import('vue').VNodeProps & import('vue').AllowedComponentProps & import('vue').ComponentCustomProps, __VLS_ctx?: {
17
- attrs: any;
18
- slots: {
19
- button?(_: {
20
- isActive: any;
21
- props: any;
22
- }): any;
23
- };
24
- emit: {};
25
- } | undefined, __VLS_expose?: ((exposed: import('vue').ShallowUnwrapRef<{}>) => void) | undefined, __VLS_setup?: Promise<{
26
- props: {
27
- title: string;
28
- text?: string | undefined;
29
- callback?: (() => void | Promise<void>) | undefined;
30
- cancelCallback?: (() => void) | undefined;
31
- width?: string | undefined;
32
- loading?: boolean | undefined;
33
- } & import('vue').VNodeProps & import('vue').AllowedComponentProps & import('vue').ComponentCustomProps;
34
- expose(exposed: import('vue').ShallowUnwrapRef<{}>): void;
35
- attrs: any;
36
- slots: {
37
- button?(_: {
38
- isActive: any;
39
- props: any;
40
- }): any;
41
- };
42
- emit: {};
43
- }>) => import('vue').VNode<import('vue').RendererNode, import('vue').RendererElement, {
44
- [key: string]: any;
45
- }> & {
46
- __ctx?: {
47
- props: {
48
- title: string;
49
- text?: string | undefined;
50
- callback?: (() => void | Promise<void>) | undefined;
51
- cancelCallback?: (() => void) | undefined;
52
- width?: string | undefined;
53
- loading?: boolean | undefined;
54
- } & import('vue').VNodeProps & import('vue').AllowedComponentProps & import('vue').ComponentCustomProps;
55
- expose(exposed: import('vue').ShallowUnwrapRef<{}>): void;
56
- attrs: any;
57
- slots: {
58
- button?(_: {
59
- isActive: any;
60
- props: any;
61
- }): any;
62
- };
63
- emit: {};
64
- } | undefined;
65
- };
66
- export default _default;
67
- type __VLS_PrettifyLocal<T> = {
68
- [K in keyof T]: T[K];
69
- } & {};
@@ -1,26 +0,0 @@
1
- export type JDialogType = {
2
- dialogId?: string;
3
- title?: string;
4
- text?: string;
5
- callback?: (...params: any) => any;
6
- cancelCallback?: () => void;
7
- width?: string;
8
- reference?: boolean;
9
- buttons?: boolean;
10
- };
11
- declare const _default: __VLS_WithTemplateSlots<import('vue').DefineComponent<JDialogType, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<JDialogType> & Readonly<{}>, {
12
- width: string;
13
- buttons: boolean;
14
- }, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, any>, {
15
- title?(_: {}): any;
16
- "heading-actions"?(_: {}): any;
17
- default?(_: {}): any;
18
- footer?(_: {}): any;
19
- metadata?(_: {}): any;
20
- }>;
21
- export default _default;
22
- type __VLS_WithTemplateSlots<T, S> = T & {
23
- new (): {
24
- $slots: S;
25
- };
26
- };
@@ -1,64 +0,0 @@
1
- import { VBtn } from 'vuetify/components';
2
- import { TablerIconComponent } from 'vue-tabler-icons';
3
- export interface Props<T> {
4
- variant?: VBtn['variant'];
5
- icon?: string | TablerIconComponent | SVGElement;
6
- color?: string;
7
- tooltip?: string;
8
- size?: number;
9
- }
10
- declare const _default: <T>(__VLS_props: {
11
- readonly onClick?: ((...args: any[]) => any) | undefined;
12
- variant?: "flat" | "text" | "elevated" | "tonal" | "outlined" | "plain" | undefined;
13
- icon?: string | TablerIconComponent | SVGElement | undefined;
14
- color?: string | undefined;
15
- tooltip?: string | undefined;
16
- size?: number | undefined;
17
- } & import('vue').VNodeProps & import('vue').AllowedComponentProps & import('vue').ComponentCustomProps, __VLS_ctx?: {
18
- attrs: any;
19
- slots: {
20
- default?(_: {}): any;
21
- default?(_: {}): any;
22
- };
23
- emit: (event: "click", ...args: any[]) => void;
24
- } | undefined, __VLS_expose?: ((exposed: import('vue').ShallowUnwrapRef<{}>) => void) | undefined, __VLS_setup?: Promise<{
25
- props: {
26
- readonly onClick?: ((...args: any[]) => any) | undefined;
27
- variant?: "flat" | "text" | "elevated" | "tonal" | "outlined" | "plain" | undefined;
28
- icon?: string | TablerIconComponent | SVGElement | undefined;
29
- color?: string | undefined;
30
- tooltip?: string | undefined;
31
- size?: number | undefined;
32
- } & import('vue').VNodeProps & import('vue').AllowedComponentProps & import('vue').ComponentCustomProps;
33
- expose(exposed: import('vue').ShallowUnwrapRef<{}>): void;
34
- attrs: any;
35
- slots: {
36
- default?(_: {}): any;
37
- default?(_: {}): any;
38
- };
39
- emit: (event: "click", ...args: any[]) => void;
40
- }>) => import('vue').VNode<import('vue').RendererNode, import('vue').RendererElement, {
41
- [key: string]: any;
42
- }> & {
43
- __ctx?: {
44
- props: {
45
- readonly onClick?: ((...args: any[]) => any) | undefined;
46
- variant?: "flat" | "text" | "elevated" | "tonal" | "outlined" | "plain" | undefined;
47
- icon?: string | TablerIconComponent | SVGElement | undefined;
48
- color?: string | undefined;
49
- tooltip?: string | undefined;
50
- size?: number | undefined;
51
- } & import('vue').VNodeProps & import('vue').AllowedComponentProps & import('vue').ComponentCustomProps;
52
- expose(exposed: import('vue').ShallowUnwrapRef<{}>): void;
53
- attrs: any;
54
- slots: {
55
- default?(_: {}): any;
56
- default?(_: {}): any;
57
- };
58
- emit: (event: "click", ...args: any[]) => void;
59
- } | undefined;
60
- };
61
- export default _default;
62
- type __VLS_PrettifyLocal<T> = {
63
- [K in keyof T]: T[K];
64
- } & {};
@@ -1,17 +0,0 @@
1
- declare const _default: __VLS_WithTemplateSlots<import('vue').DefineComponent<{
2
- title?: string | undefined;
3
- height?: string | undefined;
4
- }, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<{
5
- title?: string | undefined;
6
- height?: string | undefined;
7
- }> & Readonly<{}>, {
8
- height: string;
9
- }, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, any>, {
10
- default?(_: {}): any;
11
- }>;
12
- export default _default;
13
- type __VLS_WithTemplateSlots<T, S> = T & {
14
- new (): {
15
- $slots: S;
16
- };
17
- };
@@ -1,35 +0,0 @@
1
- import { UiTableHeader } from '../../types/UiTableHeader';
2
- declare const _default: __VLS_WithTemplateSlots<import('vue').DefineComponent<{
3
- headers?: UiTableHeader[] | undefined;
4
- items: any[];
5
- actions?: any;
6
- loading?: boolean | undefined;
7
- columns?: UiTableHeader[] | undefined;
8
- sortBy?: {
9
- key: string;
10
- order: "desc" | "asc";
11
- }[] | undefined;
12
- }, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<{
13
- headers?: UiTableHeader[] | undefined;
14
- items: any[];
15
- actions?: any;
16
- loading?: boolean | undefined;
17
- columns?: UiTableHeader[] | undefined;
18
- sortBy?: {
19
- key: string;
20
- order: "desc" | "asc";
21
- }[] | undefined;
22
- }> & Readonly<{}>, {
23
- items: any[];
24
- columns: UiTableHeader[];
25
- }, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, any>, {
26
- actions?(_: {
27
- item: any;
28
- }): any;
29
- }>;
30
- export default _default;
31
- type __VLS_WithTemplateSlots<T, S> = T & {
32
- new (): {
33
- $slots: S;
34
- };
35
- };
@@ -1,3 +0,0 @@
1
- import { sidebarItem } from './sidebarItem';
2
- import { UiTableHeader } from './UiTableHeader';
3
- export { sidebarItem, UiTableHeader };
File without changes
File without changes
File without changes