@katlux/toolkit 0.1.0-beta.34 → 0.1.0-beta.39

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/module.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@katlux/toolkit",
3
3
  "configKey": "katluxToolkit",
4
- "version": "0.1.0-beta.34",
4
+ "version": "0.1.0-beta.39",
5
5
  "builder": {
6
6
  "@nuxt/module-builder": "1.0.2",
7
7
  "unbuild": "3.6.1"
@@ -47,7 +47,7 @@ declare const __VLS_export: import("vue").DefineComponent<import("vue").ExtractP
47
47
  onClick?: (() => any) | undefined;
48
48
  }>, {
49
49
  size: "small" | "large" | "medium" | undefined;
50
- type: "info" | "default" | "success" | "warning" | "primary" | "dark" | "danger" | "light" | undefined;
50
+ type: "info" | "default" | "primary" | "danger" | "success" | "warning" | "light" | "dark" | undefined;
51
51
  disabled: boolean;
52
52
  href: string;
53
53
  loading: boolean;
@@ -47,7 +47,7 @@ declare const __VLS_export: import("vue").DefineComponent<import("vue").ExtractP
47
47
  onClick?: (() => any) | undefined;
48
48
  }>, {
49
49
  size: "small" | "large" | "medium" | undefined;
50
- type: "info" | "default" | "success" | "warning" | "primary" | "dark" | "danger" | "light" | undefined;
50
+ type: "info" | "default" | "primary" | "danger" | "success" | "warning" | "light" | "dark" | undefined;
51
51
  disabled: boolean;
52
52
  href: string;
53
53
  loading: boolean;
@@ -22,7 +22,7 @@ export interface KButtonEmits {
22
22
  export declare function useKButtonLogic(props: KButtonProps, emit: KButtonEmits): {
23
23
  isLink: import("vue").ComputedRef<boolean>;
24
24
  isDisabled: import("vue").ComputedRef<boolean | undefined>;
25
- buttonClasses: import("vue").ComputedRef<("info" | "default" | "success" | "warning" | "primary" | "dark" | "small" | "danger" | "light" | "large" | "medium" | {
25
+ buttonClasses: import("vue").ComputedRef<("info" | "default" | "small" | "primary" | "danger" | "success" | "warning" | "light" | "dark" | "large" | "medium" | {
26
26
  disabled: boolean | undefined;
27
27
  })[]>;
28
28
  onClick: () => void;
@@ -11,8 +11,8 @@ interface Props {
11
11
  page?: number;
12
12
  }
13
13
  declare const __VLS_export: import("vue").DefineComponent<Props, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<Props> & Readonly<{}>, {
14
- search: string;
15
14
  bulkActions: IKDatatableAction[];
15
+ search: string;
16
16
  loading: boolean;
17
17
  visibleFields: Array<string> | null;
18
18
  rowActions: IKDatatableAction[];
@@ -11,8 +11,8 @@ interface Props {
11
11
  page?: number;
12
12
  }
13
13
  declare const __VLS_export: import("vue").DefineComponent<Props, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<Props> & Readonly<{}>, {
14
- search: string;
15
14
  bulkActions: IKDatatableAction[];
15
+ search: string;
16
16
  loading: boolean;
17
17
  visibleFields: Array<string> | null;
18
18
  rowActions: IKDatatableAction[];
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@katlux/toolkit",
3
- "version": "0.1.0-beta.34",
3
+ "version": "0.1.0-beta.39",
4
4
  "description": "Core UI toolkit and utilities for the Katlux ecosystem",
5
5
  "author": "Katlux",
6
6
  "license": "MIT",
@@ -16,9 +16,9 @@
16
16
  },
17
17
  "exports": {
18
18
  ".": {
19
- "types": "./dist/types.d.ts",
19
+ "types": "./dist/types.d.mts",
20
20
  "import": "./dist/module.mjs",
21
- "require": "./dist/module.cjs"
21
+ "require": "./dist/module.mjs"
22
22
  },
23
23
  "./package.json": "./package.json",
24
24
  "./components/*": "./dist/runtime/components/*",