@vuetify/v0 0.0.9 → 0.0.10
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/browser/index.js +1497 -466
- package/dist/components/index.d.mts +4 -0
- package/dist/components/index.mjs +7 -0
- package/dist/components-DFGu8N2g.mjs +947 -0
- package/dist/composables/index.d.mts +4 -0
- package/dist/composables/{index.js → index.mjs} +3 -3
- package/dist/{composables-DTW0WfTC.js → composables-TCjvMHyU.mjs} +590 -162
- package/dist/constants/{index.d.ts → index.d.mts} +1 -1
- package/dist/constants/{index.js → index.mjs} +3 -3
- package/dist/{globals-Cfd1Dr_o.js → globals-y0mJ6Eg7.mjs} +2 -2
- package/dist/{index-DWx3x9vE.d.ts → index-CQjOW_w5.d.mts} +101 -846
- package/dist/{index-DIX3zaZG.d.ts → index-CSdGoUCI.d.mts} +3 -2
- package/dist/index-CUnI4hGb.d.mts +815 -0
- package/dist/index-D-EP6KrS.d.mts +812 -0
- package/dist/index.d.mts +7 -0
- package/dist/index.mjs +8 -0
- package/dist/types/{index.d.ts → index.d.mts} +1 -1
- package/dist/utilities/index.d.mts +3 -0
- package/dist/utilities/index.mjs +3 -0
- package/dist/{utilities-rsKHgU2m.js → utilities-C26nB74O.mjs} +5 -1
- package/package.json +5 -5
- package/dist/components/index.d.ts +0 -4
- package/dist/components/index.js +0 -7
- package/dist/components-BfI4Pf1x.js +0 -350
- package/dist/composables/index.d.ts +0 -3
- package/dist/index-TlH7dtTg.d.ts +0 -241
- package/dist/index.d.ts +0 -6
- package/dist/index.js +0 -8
- package/dist/utilities/index.d.ts +0 -3
- package/dist/utilities/index.js +0 -3
- /package/dist/{constants-De5c3_aB.js → constants-Xfszzyok.mjs} +0 -0
- /package/dist/{htmlElements-lF7PGahL.js → htmlElements-BYo-fMlZ.mjs} +0 -0
- /package/dist/{index-BKc0YiL1.d.ts → index-8AIxAM2d.d.mts} +0 -0
- /package/dist/{index-C_lAPFXS.d.ts → index-DY7-T630.d.mts} +0 -0
- /package/dist/types/{index.js → index.mjs} +0 -0
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { n as DeepPartial } from "./index-
|
|
1
|
+
import { n as DeepPartial } from "./index-DY7-T630.mjs";
|
|
2
2
|
|
|
3
3
|
//#region src/utilities/helpers.d.ts
|
|
4
4
|
declare function isFunction(item: unknown): item is Function;
|
|
@@ -7,10 +7,11 @@ declare function isNumber(item: unknown): item is number;
|
|
|
7
7
|
declare function isBoolean(item: unknown): item is boolean;
|
|
8
8
|
declare function isObject(item: unknown): item is Record<string, unknown>;
|
|
9
9
|
declare function isArray(item: unknown): item is unknown[];
|
|
10
|
+
declare function isNull(item: unknown): item is null;
|
|
10
11
|
declare function isNullOrUndefined(item: unknown): item is null;
|
|
11
12
|
declare function isUndefined(item: unknown): item is undefined;
|
|
12
13
|
declare function isPrimitive(item: unknown): item is string | number | boolean;
|
|
13
14
|
declare function mergeDeep<T extends object>(target: T, ...sources: DeepPartial<T>[]): T;
|
|
14
15
|
declare function genId(): string;
|
|
15
16
|
//#endregion
|
|
16
|
-
export {
|
|
17
|
+
export { isNull as a, isObject as c, isUndefined as d, mergeDeep as f, isFunction as i, isPrimitive as l, isArray as n, isNullOrUndefined as o, isBoolean as r, isNumber as s, genId as t, isString as u };
|