@kitbag/router 0.17.1 → 0.17.2
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/kitbag-router.d.ts +3 -2
- package/dist/kitbag-router.js +772 -638
- package/dist/kitbag-router.umd.cjs +3 -3
- package/package.json +12 -6
package/dist/kitbag-router.d.ts
CHANGED
|
@@ -11,6 +11,7 @@ import { PublicProps } from 'vue';
|
|
|
11
11
|
import { Ref } from 'vue';
|
|
12
12
|
import { UnwrapRef } from 'vue';
|
|
13
13
|
import { VNode } from 'vue';
|
|
14
|
+
import { ZodSchema } from 'zod';
|
|
14
15
|
|
|
15
16
|
declare const __VLS_component: DefineComponent<__VLS_Props, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<__VLS_Props> & Readonly<{}>, {}, {}, {}, {}, string, ComponentProvideOptions, false, {}, any>;
|
|
16
17
|
|
|
@@ -397,7 +398,7 @@ declare type ExtractParamTypesWithoutLosingOptional<TParams extends Record<strin
|
|
|
397
398
|
[K in keyof TParams as ExtractParamName<K>]: ExtractParamTypeWithoutLosingOptional<TParams[K], K>;
|
|
398
399
|
}>>;
|
|
399
400
|
|
|
400
|
-
declare type ExtractParamTypeWithoutLosingOptional<TParam extends Param, TParamKey extends PropertyKey> = TParam extends ParamGetSet<infer Type> ? TParamKey extends `?${string}` ? Type | undefined : Type : TParam extends ParamGetter ? TParamKey extends `?${string}` ? ReturnType<TParam> | undefined : ReturnType<TParam> : TParam extends LiteralParam ? TParamKey extends `?${string}` ? TParam | undefined : TParam : TParamKey extends `?${string}` ? string | undefined : string;
|
|
401
|
+
declare type ExtractParamTypeWithoutLosingOptional<TParam extends Param, TParamKey extends PropertyKey> = TParam extends ParamGetSet<infer Type> ? TParamKey extends `?${string}` ? Type | undefined : Type : TParam extends ParamGetter ? TParamKey extends `?${string}` ? ReturnType<TParam> | undefined : ReturnType<TParam> : TParam extends ZodSchema<infer Type> ? TParamKey extends `?${string}` ? Type | undefined : Type : TParam extends LiteralParam ? TParamKey extends `?${string}` ? TParam | undefined : TParam : TParamKey extends `?${string}` ? string | undefined : string;
|
|
401
402
|
|
|
402
403
|
/**
|
|
403
404
|
* Determines the type of a path parameter from a record of parameter types, considering optional parameters.
|
|
@@ -617,7 +618,7 @@ declare type OnlyRequiredProperties<T> = {
|
|
|
617
618
|
[K in keyof T as Extract<T[K], undefined> extends never ? K : never]: T[K];
|
|
618
619
|
};
|
|
619
620
|
|
|
620
|
-
export declare type Param = ParamGetter | ParamGetSet | RegExp | BooleanConstructor | NumberConstructor | StringConstructor | DateConstructor | JSON | LiteralParam;
|
|
621
|
+
export declare type Param = ParamGetter | ParamGetSet | RegExp | BooleanConstructor | NumberConstructor | StringConstructor | DateConstructor | JSON | ZodSchema | LiteralParam;
|
|
621
622
|
|
|
622
623
|
declare type ParamEnd = typeof paramEnd;
|
|
623
624
|
|