abckit 0.0.29 → 0.0.31

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 (24) hide show
  1. package/dist/runtime/components/ui/auto-form/AutoForm.d.vue.ts +7 -7
  2. package/dist/runtime/components/ui/auto-form/AutoForm.vue.d.ts +7 -7
  3. package/dist/runtime/components/ui/auto-form/AutoFormField.d.vue.ts +2 -2
  4. package/dist/runtime/components/ui/auto-form/AutoFormField.vue.d.ts +2 -2
  5. package/dist/runtime/components/ui/auto-form/AutoFormFieldArray.d.vue.ts +0 -34
  6. package/dist/runtime/components/ui/auto-form/AutoFormFieldArray.vue.d.ts +0 -34
  7. package/dist/runtime/components/ui/auto-form/AutoFormFieldObject.d.vue.ts +0 -34
  8. package/dist/runtime/components/ui/auto-form/AutoFormFieldObject.vue.d.ts +0 -34
  9. package/dist/runtime/components/ui/auto-form/dependencies.d.ts +1 -25
  10. package/dist/runtime/components/ui/auto-form/utils.d.ts +1 -1
  11. package/dist/runtime/components/ui/country-select/CountrySelect.d.vue.ts +1 -1
  12. package/dist/runtime/components/ui/country-select/CountrySelect.vue.d.ts +1 -1
  13. package/dist/runtime/components/ui/currency-select/CurrencySelect.d.vue.ts +1 -1
  14. package/dist/runtime/components/ui/currency-select/CurrencySelect.vue.d.ts +1 -1
  15. package/dist/runtime/components/ui/drawer/Drawer.d.vue.ts +3 -1
  16. package/dist/runtime/components/ui/drawer/Drawer.vue.d.ts +3 -1
  17. package/dist/runtime/components/ui/language-select/LanguageSelect.d.vue.ts +1 -1
  18. package/dist/runtime/components/ui/language-select/LanguageSelect.vue.d.ts +1 -1
  19. package/dist/runtime/components/ui/pin-input/PinInput.d.vue.ts +2 -2
  20. package/dist/runtime/components/ui/pin-input/PinInput.vue.d.ts +2 -2
  21. package/dist/runtime/components/ui/timezone-select/TimezoneSelect.d.vue.ts +1 -1
  22. package/dist/runtime/components/ui/timezone-select/TimezoneSelect.vue.d.ts +1 -1
  23. package/dist/runtime/composables/useAuth.d.ts +2 -2
  24. package/package.json +66 -41
@@ -3,26 +3,26 @@ import type { z } from 'zod';
3
3
  import type { Config, ConfigItem, Dependency, Shape } from './interface.js';
4
4
  import { type ZodObjectOrWrapped } from './utils.js';
5
5
  declare const __VLS_export: <T extends ZodObjectOrWrapped>(__VLS_props: NonNullable<Awaited<typeof __VLS_setup>>["props"], __VLS_ctx?: __VLS_PrettifyLocal<Pick<NonNullable<Awaited<typeof __VLS_setup>>, "attrs" | "emit" | "slots">>, __VLS_exposed?: NonNullable<Awaited<typeof __VLS_setup>>["expose"], __VLS_setup?: Promise<{
6
- props: __VLS_PrettifyLocal<{
6
+ props: import("vue").PublicProps & __VLS_PrettifyLocal<{
7
7
  schema: T;
8
8
  form?: FormContext<GenericObject>;
9
9
  fieldConfig?: Config<z.infer<T>>;
10
10
  dependencies?: Dependency<z.infer<T>>[];
11
11
  initialValues?: Partial<z.infer<T>>;
12
12
  } & {
13
- onSubmit?: ((event: z.TypeOf<T>) => any) | undefined;
14
- }> & import("vue").PublicProps & (typeof globalThis extends {
13
+ onSubmit?: ((event: z.core.output<T>) => any) | undefined;
14
+ }> & (typeof globalThis extends {
15
15
  __VLS_PROPS_FALLBACK: infer P;
16
16
  } ? P : {});
17
17
  expose: (exposed: {}) => void;
18
18
  attrs: any;
19
- slots: { [K in NonNullable<keyof z.TypeOf<T>>]?: ((props: {
20
- shape: { [key in keyof T]: Shape; }[keyof T];
19
+ slots: { [K in NonNullable<keyof z.core.output<T>>]?: ((props: {
20
+ shape: (any[] & { [key in keyof T]: Shape; })[number] | { [key in keyof T]: Shape; }[keyof T];
21
21
  fieldName: string;
22
22
  config: ConfigItem;
23
23
  }) => any) | undefined; } & {
24
24
  customAutoForm?: (props: {
25
- fields: { [key in keyof z.TypeOf<T>]: {
25
+ fields: { [key in keyof z.core.output<T>]: {
26
26
  shape: Shape;
27
27
  fieldName: string;
28
28
  config: ConfigItem;
@@ -33,7 +33,7 @@ declare const __VLS_export: <T extends ZodObjectOrWrapped>(__VLS_props: NonNulla
33
33
  shapes: { [key in keyof T]: Shape; };
34
34
  }) => any;
35
35
  };
36
- emit: (evt: "submit", event: z.TypeOf<T>) => void;
36
+ emit: (evt: "submit", event: z.core.output<T>) => void;
37
37
  }>) => import("vue").VNode & {
38
38
  __ctx?: Awaited<typeof __VLS_setup>;
39
39
  };
@@ -3,26 +3,26 @@ import type { z } from 'zod';
3
3
  import type { Config, ConfigItem, Dependency, Shape } from './interface.js';
4
4
  import { type ZodObjectOrWrapped } from './utils.js';
5
5
  declare const __VLS_export: <T extends ZodObjectOrWrapped>(__VLS_props: NonNullable<Awaited<typeof __VLS_setup>>["props"], __VLS_ctx?: __VLS_PrettifyLocal<Pick<NonNullable<Awaited<typeof __VLS_setup>>, "attrs" | "emit" | "slots">>, __VLS_exposed?: NonNullable<Awaited<typeof __VLS_setup>>["expose"], __VLS_setup?: Promise<{
6
- props: __VLS_PrettifyLocal<{
6
+ props: import("vue").PublicProps & __VLS_PrettifyLocal<{
7
7
  schema: T;
8
8
  form?: FormContext<GenericObject>;
9
9
  fieldConfig?: Config<z.infer<T>>;
10
10
  dependencies?: Dependency<z.infer<T>>[];
11
11
  initialValues?: Partial<z.infer<T>>;
12
12
  } & {
13
- onSubmit?: ((event: z.TypeOf<T>) => any) | undefined;
14
- }> & import("vue").PublicProps & (typeof globalThis extends {
13
+ onSubmit?: ((event: z.core.output<T>) => any) | undefined;
14
+ }> & (typeof globalThis extends {
15
15
  __VLS_PROPS_FALLBACK: infer P;
16
16
  } ? P : {});
17
17
  expose: (exposed: {}) => void;
18
18
  attrs: any;
19
- slots: { [K in NonNullable<keyof z.TypeOf<T>>]?: ((props: {
20
- shape: { [key in keyof T]: Shape; }[keyof T];
19
+ slots: { [K in NonNullable<keyof z.core.output<T>>]?: ((props: {
20
+ shape: (any[] & { [key in keyof T]: Shape; })[number] | { [key in keyof T]: Shape; }[keyof T];
21
21
  fieldName: string;
22
22
  config: ConfigItem;
23
23
  }) => any) | undefined; } & {
24
24
  customAutoForm?: (props: {
25
- fields: { [key in keyof z.TypeOf<T>]: {
25
+ fields: { [key in keyof z.core.output<T>]: {
26
26
  shape: Shape;
27
27
  fieldName: string;
28
28
  config: ConfigItem;
@@ -33,7 +33,7 @@ declare const __VLS_export: <T extends ZodObjectOrWrapped>(__VLS_props: NonNulla
33
33
  shapes: { [key in keyof T]: Shape; };
34
34
  }) => any;
35
35
  };
36
- emit: (evt: "submit", event: z.TypeOf<T>) => void;
36
+ emit: (evt: "submit", event: z.core.output<T>) => void;
37
37
  }>) => import("vue").VNode & {
38
38
  __ctx?: Awaited<typeof __VLS_setup>;
39
39
  };
@@ -1,11 +1,11 @@
1
1
  import type { ZodAny } from 'zod';
2
2
  import type { Config, ConfigItem, Shape } from './interface.js';
3
3
  declare const __VLS_export: <U extends ZodAny>(__VLS_props: NonNullable<Awaited<typeof __VLS_setup>>["props"], __VLS_ctx?: __VLS_PrettifyLocal<Pick<NonNullable<Awaited<typeof __VLS_setup>>, "attrs" | "emit" | "slots">>, __VLS_exposed?: NonNullable<Awaited<typeof __VLS_setup>>["expose"], __VLS_setup?: Promise<{
4
- props: __VLS_PrettifyLocal<{
4
+ props: import("vue").PublicProps & __VLS_PrettifyLocal<{
5
5
  fieldName: string;
6
6
  shape: Shape;
7
7
  config?: ConfigItem | Config<U>;
8
- }> & import("vue").PublicProps & (typeof globalThis extends {
8
+ }> & (typeof globalThis extends {
9
9
  __VLS_PROPS_FALLBACK: infer P;
10
10
  } ? P : {});
11
11
  expose: (exposed: {}) => void;
@@ -1,11 +1,11 @@
1
1
  import type { ZodAny } from 'zod';
2
2
  import type { Config, ConfigItem, Shape } from './interface.js';
3
3
  declare const __VLS_export: <U extends ZodAny>(__VLS_props: NonNullable<Awaited<typeof __VLS_setup>>["props"], __VLS_ctx?: __VLS_PrettifyLocal<Pick<NonNullable<Awaited<typeof __VLS_setup>>, "attrs" | "emit" | "slots">>, __VLS_exposed?: NonNullable<Awaited<typeof __VLS_setup>>["expose"], __VLS_setup?: Promise<{
4
- props: __VLS_PrettifyLocal<{
4
+ props: import("vue").PublicProps & __VLS_PrettifyLocal<{
5
5
  fieldName: string;
6
6
  shape: Shape;
7
7
  config?: ConfigItem | Config<U>;
8
- }> & import("vue").PublicProps & (typeof globalThis extends {
8
+ }> & (typeof globalThis extends {
9
9
  __VLS_PROPS_FALLBACK: infer P;
10
10
  } ? P : {});
11
11
  expose: (exposed: {}) => void;
@@ -1,34 +0,0 @@
1
- import type { Config } from './interface.js';
2
- import * as z from 'zod';
3
- declare const __VLS_export: <T extends z.ZodAny>(__VLS_props: NonNullable<Awaited<typeof __VLS_setup>>["props"], __VLS_ctx?: __VLS_PrettifyLocal<Pick<NonNullable<Awaited<typeof __VLS_setup>>, "attrs" | "emit" | "slots">>, __VLS_exposed?: NonNullable<Awaited<typeof __VLS_setup>>["expose"], __VLS_setup?: Promise<{
4
- props: __VLS_PrettifyLocal<{
5
- fieldName: string;
6
- required?: boolean;
7
- config?: Config<T>;
8
- schema?: z.ZodArray<T>;
9
- disabled?: boolean;
10
- }> & import("vue").PublicProps & (typeof globalThis extends {
11
- __VLS_PROPS_FALLBACK: infer P;
12
- } ? P : {});
13
- expose: (exposed: {}) => void;
14
- attrs: any;
15
- slots: {
16
- default?: (props: import("vue").DefineProps<import("@vue/shared").LooseRequired<{
17
- fieldName: string;
18
- required?: boolean;
19
- config?: Config<T>;
20
- schema?: z.ZodArray<T>;
21
- disabled?: boolean;
22
- }>, "required" | "disabled" | ([Config<T> | undefined] extends [boolean | undefined] ? "config" : never)>) => any;
23
- };
24
- emit: {};
25
- }>) => import("vue").VNode & {
26
- __ctx?: Awaited<typeof __VLS_setup>;
27
- };
28
- declare const _default: typeof __VLS_export;
29
- export default _default;
30
- type __VLS_PrettifyLocal<T> = (T extends any ? {
31
- [K in keyof T]: T[K];
32
- } : {
33
- [K in keyof T as K]: T[K];
34
- }) & {};
@@ -1,34 +0,0 @@
1
- import type { Config } from './interface.js';
2
- import * as z from 'zod';
3
- declare const __VLS_export: <T extends z.ZodAny>(__VLS_props: NonNullable<Awaited<typeof __VLS_setup>>["props"], __VLS_ctx?: __VLS_PrettifyLocal<Pick<NonNullable<Awaited<typeof __VLS_setup>>, "attrs" | "emit" | "slots">>, __VLS_exposed?: NonNullable<Awaited<typeof __VLS_setup>>["expose"], __VLS_setup?: Promise<{
4
- props: __VLS_PrettifyLocal<{
5
- fieldName: string;
6
- required?: boolean;
7
- config?: Config<T>;
8
- schema?: z.ZodArray<T>;
9
- disabled?: boolean;
10
- }> & import("vue").PublicProps & (typeof globalThis extends {
11
- __VLS_PROPS_FALLBACK: infer P;
12
- } ? P : {});
13
- expose: (exposed: {}) => void;
14
- attrs: any;
15
- slots: {
16
- default?: (props: import("vue").DefineProps<import("@vue/shared").LooseRequired<{
17
- fieldName: string;
18
- required?: boolean;
19
- config?: Config<T>;
20
- schema?: z.ZodArray<T>;
21
- disabled?: boolean;
22
- }>, "required" | "disabled" | ([Config<T> | undefined] extends [boolean | undefined] ? "config" : never)>) => any;
23
- };
24
- emit: {};
25
- }>) => import("vue").VNode & {
26
- __ctx?: Awaited<typeof __VLS_setup>;
27
- };
28
- declare const _default: typeof __VLS_export;
29
- export default _default;
30
- type __VLS_PrettifyLocal<T> = (T extends any ? {
31
- [K in keyof T]: T[K];
32
- } : {
33
- [K in keyof T as K]: T[K];
34
- }) & {};
@@ -1,34 +0,0 @@
1
- import type { ZodObject, ZodRawShape } from 'zod';
2
- import type { Config } from './interface.js';
3
- declare const __VLS_export: <T extends ZodRawShape>(__VLS_props: NonNullable<Awaited<typeof __VLS_setup>>["props"], __VLS_ctx?: __VLS_PrettifyLocal<Pick<NonNullable<Awaited<typeof __VLS_setup>>, "attrs" | "emit" | "slots">>, __VLS_exposed?: NonNullable<Awaited<typeof __VLS_setup>>["expose"], __VLS_setup?: Promise<{
4
- props: __VLS_PrettifyLocal<{
5
- fieldName: string;
6
- required?: boolean;
7
- config?: Config<T>;
8
- schema?: ZodObject<T>;
9
- disabled?: boolean;
10
- }> & import("vue").PublicProps & (typeof globalThis extends {
11
- __VLS_PROPS_FALLBACK: infer P;
12
- } ? P : {});
13
- expose: (exposed: {}) => void;
14
- attrs: any;
15
- slots: {
16
- default?: (props: import("vue").DefineProps<import("@vue/shared").LooseRequired<{
17
- fieldName: string;
18
- required?: boolean;
19
- config?: Config<T>;
20
- schema?: ZodObject<T>;
21
- disabled?: boolean;
22
- }>, "required" | "disabled" | ([Config<T> | undefined] extends [boolean | undefined] ? "config" : never)>) => any;
23
- };
24
- emit: {};
25
- }>) => import("vue").VNode & {
26
- __ctx?: Awaited<typeof __VLS_setup>;
27
- };
28
- declare const _default: typeof __VLS_export;
29
- export default _default;
30
- type __VLS_PrettifyLocal<T> = (T extends any ? {
31
- [K in keyof T]: T[K];
32
- } : {
33
- [K in keyof T as K]: T[K];
34
- }) & {};
@@ -1,34 +0,0 @@
1
- import type { ZodObject, ZodRawShape } from 'zod';
2
- import type { Config } from './interface.js';
3
- declare const __VLS_export: <T extends ZodRawShape>(__VLS_props: NonNullable<Awaited<typeof __VLS_setup>>["props"], __VLS_ctx?: __VLS_PrettifyLocal<Pick<NonNullable<Awaited<typeof __VLS_setup>>, "attrs" | "emit" | "slots">>, __VLS_exposed?: NonNullable<Awaited<typeof __VLS_setup>>["expose"], __VLS_setup?: Promise<{
4
- props: __VLS_PrettifyLocal<{
5
- fieldName: string;
6
- required?: boolean;
7
- config?: Config<T>;
8
- schema?: ZodObject<T>;
9
- disabled?: boolean;
10
- }> & import("vue").PublicProps & (typeof globalThis extends {
11
- __VLS_PROPS_FALLBACK: infer P;
12
- } ? P : {});
13
- expose: (exposed: {}) => void;
14
- attrs: any;
15
- slots: {
16
- default?: (props: import("vue").DefineProps<import("@vue/shared").LooseRequired<{
17
- fieldName: string;
18
- required?: boolean;
19
- config?: Config<T>;
20
- schema?: ZodObject<T>;
21
- disabled?: boolean;
22
- }>, "required" | "disabled" | ([Config<T> | undefined] extends [boolean | undefined] ? "config" : never)>) => any;
23
- };
24
- emit: {};
25
- }>) => import("vue").VNode & {
26
- __ctx?: Awaited<typeof __VLS_setup>;
27
- };
28
- declare const _default: typeof __VLS_export;
29
- export default _default;
30
- type __VLS_PrettifyLocal<T> = (T extends any ? {
31
- [K in keyof T]: T[K];
32
- } : {
33
- [K in keyof T as K]: T[K];
34
- }) & {};
@@ -1,30 +1,6 @@
1
1
  import type { Ref } from 'vue';
2
2
  import { type Dependency, type EnumValues } from './interface.js';
3
- export declare const injectDependencies: <T extends Ref<Dependency<{
4
- [x: string]: any;
5
- }>[] | undefined, Dependency<{
6
- [x: string]: any;
7
- }>[] | undefined> | null | undefined = Ref<Dependency<{
8
- [x: string]: any;
9
- }>[] | undefined, Dependency<{
10
- [x: string]: any;
11
- }>[] | undefined>>(fallback?: T | undefined) => T extends null ? Ref<Dependency<{
12
- [x: string]: any;
13
- }>[] | undefined, Dependency<{
14
- [x: string]: any;
15
- }>[] | undefined> | null : Ref<Dependency<{
16
- [x: string]: any;
17
- }>[] | undefined, Dependency<{
18
- [x: string]: any;
19
- }>[] | undefined>, provideDependencies: (contextValue: Ref<Dependency<{
20
- [x: string]: any;
21
- }>[] | undefined, Dependency<{
22
- [x: string]: any;
23
- }>[] | undefined>) => Ref<Dependency<{
24
- [x: string]: any;
25
- }>[] | undefined, Dependency<{
26
- [x: string]: any;
27
- }>[] | undefined>;
3
+ export declare const injectDependencies: <T extends Ref<Dependency<Record<string, unknown>>[] | undefined, Dependency<Record<string, unknown>>[] | undefined> | null | undefined = Ref<Dependency<Record<string, unknown>>[] | undefined, Dependency<Record<string, unknown>>[] | undefined>>(fallback?: T | undefined) => T extends null ? Ref<Dependency<Record<string, unknown>>[] | undefined, Dependency<Record<string, unknown>>[] | undefined> | null : Ref<Dependency<Record<string, unknown>>[] | undefined, Dependency<Record<string, unknown>>[] | undefined>, provideDependencies: (contextValue: Ref<Dependency<Record<string, unknown>>[] | undefined, Dependency<Record<string, unknown>>[] | undefined>) => Ref<Dependency<Record<string, unknown>>[] | undefined, Dependency<Record<string, unknown>>[] | undefined>;
28
4
  export default function useDependencies(fieldName: string): {
29
5
  isDisabled: Ref<boolean, boolean>;
30
6
  isHidden: Ref<boolean, boolean>;
@@ -21,7 +21,7 @@ z.ZodEffects<ChildType>): ChildType | null;
21
21
  * Get the type name of the lowest level Zod type.
22
22
  * This will unpack optionals, refinements, etc.
23
23
  */
24
- export declare function getBaseType(schema: z.ZodAny): "" | z.ZodFirstPartyTypeKind.ZodAny;
24
+ export declare function getBaseType(schema: z.ZodAny): any;
25
25
  /**
26
26
  * Search for a "ZodDefault" in the Zod stack and return its value.
27
27
  */
@@ -9,10 +9,10 @@ declare const __VLS_export: import("vue").DefineComponent<Props, {}, {}, {}, {},
9
9
  }, string, import("vue").PublicProps, Readonly<Props> & Readonly<{
10
10
  "onUpdate:modelValue"?: ((value: string) => any) | undefined;
11
11
  }>, {
12
- placeholder: string;
13
12
  disabled: boolean;
14
13
  locale: string;
15
14
  modelValue: string;
15
+ placeholder: string;
16
16
  }, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
17
17
  declare const _default: typeof __VLS_export;
18
18
  export default _default;
@@ -9,10 +9,10 @@ declare const __VLS_export: import("vue").DefineComponent<Props, {}, {}, {}, {},
9
9
  }, string, import("vue").PublicProps, Readonly<Props> & Readonly<{
10
10
  "onUpdate:modelValue"?: ((value: string) => any) | undefined;
11
11
  }>, {
12
- placeholder: string;
13
12
  disabled: boolean;
14
13
  locale: string;
15
14
  modelValue: string;
15
+ placeholder: string;
16
16
  }, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
17
17
  declare const _default: typeof __VLS_export;
18
18
  export default _default;
@@ -9,9 +9,9 @@ declare const __VLS_export: import("vue").DefineComponent<Props, {}, {}, {}, {},
9
9
  }, string, import("vue").PublicProps, Readonly<Props> & Readonly<{
10
10
  "onUpdate:modelValue"?: ((value: string) => any) | undefined;
11
11
  }>, {
12
- placeholder: string;
13
12
  disabled: boolean;
14
13
  modelValue: string;
14
+ placeholder: string;
15
15
  displayLocale: string;
16
16
  }, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
17
17
  declare const _default: typeof __VLS_export;
@@ -9,9 +9,9 @@ declare const __VLS_export: import("vue").DefineComponent<Props, {}, {}, {}, {},
9
9
  }, string, import("vue").PublicProps, Readonly<Props> & Readonly<{
10
10
  "onUpdate:modelValue"?: ((value: string) => any) | undefined;
11
11
  }>, {
12
- placeholder: string;
13
12
  disabled: boolean;
14
13
  modelValue: string;
14
+ placeholder: string;
15
15
  displayLocale: string;
16
16
  }, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
17
17
  declare const _default: typeof __VLS_export;
@@ -1,5 +1,7 @@
1
1
  import type { DrawerRootProps } from "vaul-vue";
2
- declare var __VLS_8: any;
2
+ declare var __VLS_8: {
3
+ open: boolean;
4
+ };
3
5
  type __VLS_Slots = {} & {
4
6
  default?: (props: typeof __VLS_8) => any;
5
7
  };
@@ -1,5 +1,7 @@
1
1
  import type { DrawerRootProps } from "vaul-vue";
2
- declare var __VLS_8: any;
2
+ declare var __VLS_8: {
3
+ open: boolean;
4
+ };
3
5
  type __VLS_Slots = {} & {
4
6
  default?: (props: typeof __VLS_8) => any;
5
7
  };
@@ -10,9 +10,9 @@ declare const __VLS_export: import("vue").DefineComponent<Props, {}, {}, {}, {},
10
10
  }, string, import("vue").PublicProps, Readonly<Props> & Readonly<{
11
11
  "onUpdate:modelValue"?: ((value: string) => any) | undefined;
12
12
  }>, {
13
- placeholder: string;
14
13
  disabled: boolean;
15
14
  modelValue: string;
15
+ placeholder: string;
16
16
  displayLocale: string;
17
17
  showAllLanguages: boolean;
18
18
  }, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
@@ -10,9 +10,9 @@ declare const __VLS_export: import("vue").DefineComponent<Props, {}, {}, {}, {},
10
10
  }, string, import("vue").PublicProps, Readonly<Props> & Readonly<{
11
11
  "onUpdate:modelValue"?: ((value: string) => any) | undefined;
12
12
  }>, {
13
- placeholder: string;
14
13
  disabled: boolean;
15
14
  modelValue: string;
15
+ placeholder: string;
16
16
  displayLocale: string;
17
17
  showAllLanguages: boolean;
18
18
  }, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
@@ -1,12 +1,12 @@
1
1
  import type { PinInputRootProps } from "reka-ui";
2
2
  import type { HTMLAttributes } from "vue";
3
3
  declare const __VLS_export: <Type extends "text" | "number" = "text">(__VLS_props: NonNullable<Awaited<typeof __VLS_setup>>["props"], __VLS_ctx?: __VLS_PrettifyLocal<Pick<NonNullable<Awaited<typeof __VLS_setup>>, "attrs" | "emit" | "slots">>, __VLS_exposed?: NonNullable<Awaited<typeof __VLS_setup>>["expose"], __VLS_setup?: Promise<{
4
- props: __VLS_PrettifyLocal<(PinInputRootProps<Type> & {
4
+ props: import("vue").PublicProps & __VLS_PrettifyLocal<(PinInputRootProps<Type> & {
5
5
  class?: HTMLAttributes["class"];
6
6
  }) & {
7
7
  "onUpdate:modelValue"?: ((value: [Type] extends ["number"] ? number[] : string[]) => any) | undefined;
8
8
  onComplete?: ((value: [Type] extends ["number"] ? number[] : string[]) => any) | undefined;
9
- }> & import("vue").PublicProps & (typeof globalThis extends {
9
+ }> & (typeof globalThis extends {
10
10
  __VLS_PROPS_FALLBACK: infer P;
11
11
  } ? P : {});
12
12
  expose: (exposed: {}) => void;
@@ -1,12 +1,12 @@
1
1
  import type { PinInputRootProps } from "reka-ui";
2
2
  import type { HTMLAttributes } from "vue";
3
3
  declare const __VLS_export: <Type extends "text" | "number" = "text">(__VLS_props: NonNullable<Awaited<typeof __VLS_setup>>["props"], __VLS_ctx?: __VLS_PrettifyLocal<Pick<NonNullable<Awaited<typeof __VLS_setup>>, "attrs" | "emit" | "slots">>, __VLS_exposed?: NonNullable<Awaited<typeof __VLS_setup>>["expose"], __VLS_setup?: Promise<{
4
- props: __VLS_PrettifyLocal<(PinInputRootProps<Type> & {
4
+ props: import("vue").PublicProps & __VLS_PrettifyLocal<(PinInputRootProps<Type> & {
5
5
  class?: HTMLAttributes["class"];
6
6
  }) & {
7
7
  "onUpdate:modelValue"?: ((value: [Type] extends ["number"] ? number[] : string[]) => any) | undefined;
8
8
  onComplete?: ((value: [Type] extends ["number"] ? number[] : string[]) => any) | undefined;
9
- }> & import("vue").PublicProps & (typeof globalThis extends {
9
+ }> & (typeof globalThis extends {
10
10
  __VLS_PROPS_FALLBACK: infer P;
11
11
  } ? P : {});
12
12
  expose: (exposed: {}) => void;
@@ -8,9 +8,9 @@ declare const __VLS_export: import("vue").DefineComponent<Props, {}, {}, {}, {},
8
8
  }, string, import("vue").PublicProps, Readonly<Props> & Readonly<{
9
9
  "onUpdate:modelValue"?: ((value: string) => any) | undefined;
10
10
  }>, {
11
- placeholder: string;
12
11
  disabled: boolean;
13
12
  modelValue: string;
13
+ placeholder: string;
14
14
  }, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
15
15
  declare const _default: typeof __VLS_export;
16
16
  export default _default;
@@ -8,9 +8,9 @@ declare const __VLS_export: import("vue").DefineComponent<Props, {}, {}, {}, {},
8
8
  }, string, import("vue").PublicProps, Readonly<Props> & Readonly<{
9
9
  "onUpdate:modelValue"?: ((value: string) => any) | undefined;
10
10
  }>, {
11
- placeholder: string;
12
11
  disabled: boolean;
13
12
  modelValue: string;
13
+ placeholder: string;
14
14
  }, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
15
15
  declare const _default: typeof __VLS_export;
16
16
  export default _default;
@@ -749,7 +749,7 @@ export declare function useAuth(): {
749
749
  };
750
750
  };
751
751
  $fetch: import("@better-fetch/fetch").BetterFetch<{
752
- plugins: (import("@better-fetch/fetch").BetterFetchPlugin | {
752
+ plugins: (import("@better-fetch/fetch").BetterFetchPlugin<Record<string, any>> | {
753
753
  id: string;
754
754
  name: string;
755
755
  hooks: {
@@ -1780,7 +1780,7 @@ export declare function getAuthClientExports(): {
1780
1780
  };
1781
1781
  };
1782
1782
  $fetch: import("@better-fetch/fetch").BetterFetch<{
1783
- plugins: (import("@better-fetch/fetch").BetterFetchPlugin | {
1783
+ plugins: (import("@better-fetch/fetch").BetterFetchPlugin<Record<string, any>> | {
1784
1784
  id: string;
1785
1785
  name: string;
1786
1786
  hooks: {
package/package.json CHANGED
@@ -1,10 +1,36 @@
1
1
  {
2
2
  "name": "abckit",
3
3
  "type": "module",
4
- "version": "0.0.29",
4
+ "version": "0.0.31",
5
+ "description": "Nuxt 4 module — UI components, auth, storage, GraphQL",
6
+ "author": "productdevbook",
7
+ "license": "MIT",
8
+ "homepage": "https://github.com/productdevbook/abckit",
9
+ "repository": {
10
+ "type": "git",
11
+ "url": "git+https://github.com/productdevbook/abckit.git"
12
+ },
13
+ "bugs": {
14
+ "url": "https://github.com/productdevbook/abckit/issues"
15
+ },
16
+ "keywords": [
17
+ "nuxt",
18
+ "nuxt-module",
19
+ "vue",
20
+ "shadcn",
21
+ "ui-components",
22
+ "auth",
23
+ "graphql",
24
+ "tailwindcss",
25
+ "pinia",
26
+ "better-auth",
27
+ "reka-ui"
28
+ ],
5
29
  "private": false,
6
30
  "sideEffects": false,
7
- "workspaces": ["playground/*"],
31
+ "workspaces": [
32
+ "playground/*"
33
+ ],
8
34
  "exports": {
9
35
  ".": {
10
36
  "types": "./dist/module.d.mts",
@@ -45,48 +71,37 @@
45
71
  "files": [
46
72
  "dist"
47
73
  ],
48
- "scripts": {
49
- "build": "nuxt-module-build build",
50
- "prepack": "nuxt-module-build build",
51
- "dev": "nuxt dev playground",
52
- "dev:build": "nuxi build playground",
53
- "dev:prepare": "nuxt-module-build build --stub && nuxt-module-build prepare && nuxi prepare playground",
54
- "lint": "eslint .",
55
- "lint:fix": "eslint . --fix",
56
- "test:types": "vue-tsc --noEmit && cd playground && vue-tsc --noEmit",
57
- "release": "pnpm publish --no-git-checks --access public"
58
- },
59
74
  "dependencies": {
60
75
  "@capacitor/android": "7.4.4",
61
- "@capacitor/app": "^7.0.1",
62
- "@capacitor/browser": "^7.0.1",
76
+ "@capacitor/app": "^8.0.0",
77
+ "@capacitor/browser": "^8.0.0",
63
78
  "@capacitor/cli": "7.4.4",
64
- "@capacitor/core": "^7.4.4",
65
- "@capacitor/device": "^7.0.3",
66
- "@capacitor/geolocation": "^7.1.6",
67
- "@capacitor/haptics": "^7.0.1",
79
+ "@capacitor/core": "^8.0.0",
80
+ "@capacitor/device": "^8.0.0",
81
+ "@capacitor/geolocation": "^7.1.7",
82
+ "@capacitor/haptics": "^8.0.0",
68
83
  "@capacitor/ios": "7.4.4",
69
- "@capacitor/network": "^7.0.3",
70
- "@capacitor/preferences": "^7.0.1",
71
- "@capacitor/push-notifications": "^7.0.1",
72
- "@capacitor/splash-screen": "^7.0.1",
73
- "@capacitor/status-bar": "^7.0.1",
74
- "@capgo/capacitor-social-login": "^7.20.0",
84
+ "@capacitor/network": "^8.0.0",
85
+ "@capacitor/preferences": "^8.0.0",
86
+ "@capacitor/push-notifications": "^8.0.0",
87
+ "@capacitor/splash-screen": "^8.0.0",
88
+ "@capacitor/status-bar": "^8.0.0",
89
+ "@capgo/capacitor-social-login": "^8.2.5",
75
90
  "@graphql-tools/utils": "^10.11.0",
76
- "@ionic/vue": "^8.7.13",
77
- "@nuxt/icon": "^2.1.0",
78
- "@nuxt/scripts": "^0.13.0",
91
+ "@ionic/vue": "^8.7.14",
92
+ "@nuxt/icon": "^2.1.1",
93
+ "@nuxt/scripts": "^0.13.2",
79
94
  "@nuxtjs/color-mode": "^4.0.0",
80
95
  "@nuxtjs/i18n": "^10.2.1",
81
96
  "@nuxtjs/ionic": "^1.0.2",
82
97
  "@nuxtjs/tailwindcss": "7.0.0-beta.1",
83
98
  "@openfga/sdk": "^0.9.1",
84
- "@pinia/colada": "^0.18.1",
85
- "@pinia/colada-nuxt": "^0.2.4",
99
+ "@pinia/colada": "^0.19.1",
100
+ "@pinia/colada-nuxt": "^0.2.6",
86
101
  "@pinia/colada-plugin-auto-refetch": "^0.2.4",
87
102
  "@pinia/nuxt": "^0.11.3",
88
- "@polar-sh/sdk": "^0.41.5",
89
- "@sentry/nuxt": "^10.30.0",
103
+ "@polar-sh/sdk": "^0.42.1",
104
+ "@sentry/nuxt": "^10.32.1",
90
105
  "@sindresorhus/slugify": "^3.0.0",
91
106
  "@tailwindcss/typography": "^0.5.19",
92
107
  "@tanstack/vue-table": "^8.21.3",
@@ -98,7 +113,7 @@
98
113
  "@vueuse/sound": "^2.1.3",
99
114
  "apiful": "^4.0.0",
100
115
  "aws4fetch": "^1.0.20",
101
- "better-auth": "^1.4.6",
116
+ "better-auth": "^1.4.7",
102
117
  "capacitor-native-settings": "^7.0.2",
103
118
  "class-variance-authority": "^0.7.1",
104
119
  "clsx": "^2.1.1",
@@ -113,9 +128,9 @@
113
128
  "graphql": "^16.12.0",
114
129
  "graphql-config": "^5.1.5",
115
130
  "graphql-scalars": "^1.25.0",
116
- "graphql-yoga": "^5.17.1",
131
+ "graphql-yoga": "^5.18.0",
117
132
  "md-editor-v3": "^6.2.1",
118
- "nitro-graphql": "^1.6.1",
133
+ "nitro-graphql": "^1.7.0",
119
134
  "nitropack": "^2.12.9",
120
135
  "notivue": "^2.4.5",
121
136
  "pg": "^8.16.3",
@@ -129,26 +144,26 @@
129
144
  "uuid": "^13.0.0",
130
145
  "vaul-vue": "^0.4.1",
131
146
  "vee-validate": "5.0.0-beta.0",
132
- "vite-tsconfig-paths": "^5.1.4",
147
+ "vite-tsconfig-paths": "^6.0.3",
133
148
  "vue-input-otp": "^0.3.2",
134
149
  "vue-router": "^4.6.4",
135
150
  "vue-sonner": "^2.0.9",
136
- "vue-tsc": "^3.1.8",
137
- "zod": "3.25.76"
151
+ "vue-tsc": "^3.2.0",
152
+ "zod": "^4.2.1"
138
153
  },
139
154
  "devDependencies": {
140
- "@antfu/eslint-config": "^6.6.1",
155
+ "@antfu/eslint-config": "^6.7.2",
141
156
  "@nuxt/eslint": "latest",
142
157
  "@nuxt/module-builder": "^1.0.2",
143
158
  "@nuxt/schema": "^4.2.2",
144
- "@types/node": "^25.0.1",
159
+ "@types/node": "^25.0.3",
145
160
  "@types/pg": "^8.16.0",
146
161
  "eslint": "^9.39.2",
147
162
  "h3": "^1.15.4",
148
163
  "nuxt": "^4.2.2",
149
164
  "shadcn-vue": "^2.4.3",
150
165
  "typescript": "^5.9.3",
151
- "vue": "^3.5.25"
166
+ "vue": "^3.5.26"
152
167
  },
153
168
  "resolutions": {
154
169
  "abckit": "workspace:*"
@@ -159,5 +174,15 @@
159
174
  "patchedDependencies": {
160
175
  "entities@7.0.0": "patches/entities@7.0.0.patch",
161
176
  "entities@7.0.0@7.0.0": "patches/entities@7.0.0.patch"
177
+ },
178
+ "scripts": {
179
+ "build": "nuxt-module-build build",
180
+ "dev": "nuxt dev playground",
181
+ "dev:build": "nuxi build playground",
182
+ "dev:prepare": "nuxt-module-build build --stub && nuxt-module-build prepare && nuxi prepare playground",
183
+ "lint": "eslint .",
184
+ "lint:fix": "eslint . --fix",
185
+ "test:types": "vue-tsc --noEmit && cd playground && vue-tsc --noEmit",
186
+ "release": "pnpm publish --no-git-checks --access public"
162
187
  }
163
188
  }