@vuetify/v0 0.0.2-beta.4 → 0.0.3
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/README.md +251 -0
- package/dist/browser/index.js +3199 -0
- package/dist/components/index.d.ts +7 -0
- package/dist/components/index.js +8 -0
- package/dist/{components-B5iiovK7.mjs → components-DVuB4lnH.js} +16 -217
- package/dist/composables/index.d.ts +7 -0
- package/dist/composables/index.js +8 -0
- package/dist/composables-yeVk-ULz.js +1270 -0
- package/dist/constants/index.d.ts +2 -0
- package/dist/constants/index.js +5 -0
- package/dist/constants-DiTCgvMU.js +1 -0
- package/dist/factories/index.d.ts +2 -0
- package/dist/factories/index.js +3 -0
- package/dist/{createTrinity-CwGvQ2ng.mjs → factories-BEpawPUw.js} +32 -15
- package/dist/globals-DZvNEOB4.js +12 -0
- package/dist/htmlElements-SjqYu0am.js +78 -0
- package/dist/{index-D4Grk5x1.d.mts → index-BozA2pze.d.ts} +1 -1
- package/dist/index-Ckt12ON6.d.ts +75 -0
- package/dist/index-D0L_ydyW.d.ts +1396 -0
- package/dist/index-DVKeyWc5.d.ts +79 -0
- package/dist/index.d.ts +7 -0
- package/dist/index.js +11 -0
- package/dist/transformers/index.d.ts +2 -0
- package/dist/transformers/index.js +4 -0
- package/dist/{transformers-BTjuwbOV.mjs → transformers-CWrxLIkw.js} +2 -2
- package/dist/types/{index.d.mts → index.d.ts} +1 -1
- package/dist/types/index.js +1 -0
- package/dist/{useTheme-tY7MoBKr.mjs → useTheme-DCXkw_kv.js} +214 -204
- package/dist/utilities/{index.d.mts → index.d.ts} +2 -2
- package/dist/utilities/{index.mjs → index.js} +1 -1
- package/package.json +20 -35
- package/dist/components/index.d.mts +0 -5
- package/dist/components/index.mjs +0 -7
- package/dist/composables/index.d.mts +0 -5
- package/dist/composables/index.mjs +0 -7
- package/dist/composables-C6dl5kjP.mjs +0 -614
- package/dist/factories/index.d.mts +0 -3
- package/dist/factories/index.mjs +0 -4
- package/dist/factories-DOLmqhVS.mjs +0 -0
- package/dist/index-ChaaTPKp.d.mts +0 -421
- package/dist/index-Cya5Y9pB.d.mts +0 -412
- package/dist/index-DfahEz6s.d.mts +0 -18
- package/dist/index-jG0yrC1F.d.mts +0 -467
- package/dist/index-oCBJwhpG.d.mts +0 -43
- package/dist/index.d.mts +0 -9
- package/dist/index.mjs +0 -9
- package/dist/transformers/index.d.mts +0 -2
- package/dist/transformers/index.mjs +0 -4
- package/dist/types/index.mjs +0 -0
- /package/dist/{index-BA3ZFBnL.d.mts → index-LBy5OPMu.d.ts} +0 -0
- /package/dist/{index-CZRh0I2w.d.mts → index-tUyghL98.d.ts} +0 -0
- /package/dist/{utilities-lZSfrXgw.mjs → utilities-D9rWEgQK.js} +0 -0
|
@@ -1,3 +1,3 @@
|
|
|
1
|
-
import "../index-
|
|
2
|
-
import { genId, isArray, isBoolean, isFunction, isNullOrUndefined, isNumber, isObject, isPrimitive, isString, mergeDeep, run } from "../index-
|
|
1
|
+
import "../index-LBy5OPMu.js";
|
|
2
|
+
import { genId, isArray, isBoolean, isFunction, isNullOrUndefined, isNumber, isObject, isPrimitive, isString, mergeDeep, run } from "../index-BozA2pze.js";
|
|
3
3
|
export { genId, isArray, isBoolean, isFunction, isNullOrUndefined, isNumber, isObject, isPrimitive, isString, mergeDeep, run };
|
|
@@ -1,3 +1,3 @@
|
|
|
1
|
-
import { genId, isArray, isBoolean, isFunction, isNullOrUndefined, isNumber, isObject, isPrimitive, isString, mergeDeep, run } from "../utilities-
|
|
1
|
+
import { genId, isArray, isBoolean, isFunction, isNullOrUndefined, isNumber, isObject, isPrimitive, isString, mergeDeep, run } from "../utilities-D9rWEgQK.js";
|
|
2
2
|
|
|
3
3
|
export { genId, isArray, isBoolean, isFunction, isNullOrUndefined, isNumber, isObject, isPrimitive, isString, mergeDeep, run };
|
package/package.json
CHANGED
|
@@ -1,11 +1,12 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@vuetify/v0",
|
|
3
|
-
"version": "0.0.
|
|
3
|
+
"version": "0.0.3",
|
|
4
4
|
"description": "Vuetify0",
|
|
5
5
|
"license": "MIT",
|
|
6
|
-
"main": "./dist/index.
|
|
7
|
-
"module": "./dist/index.
|
|
8
|
-
"types": "./dist/index.d.
|
|
6
|
+
"main": "./dist/index.js",
|
|
7
|
+
"module": "./dist/index.js",
|
|
8
|
+
"types": "./dist/index.d.ts",
|
|
9
|
+
"type": "module",
|
|
9
10
|
"files": [
|
|
10
11
|
"dist"
|
|
11
12
|
],
|
|
@@ -15,34 +16,18 @@
|
|
|
15
16
|
"directory": "packages/0"
|
|
16
17
|
},
|
|
17
18
|
"exports": {
|
|
18
|
-
".":
|
|
19
|
-
|
|
20
|
-
"
|
|
19
|
+
".": "./dist/index.js",
|
|
20
|
+
"./browser": {
|
|
21
|
+
"types": "./dist/index.d.ts",
|
|
22
|
+
"import": "./dist/browser/index.js"
|
|
21
23
|
},
|
|
22
|
-
"./components":
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
"./
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
},
|
|
30
|
-
"./factories": {
|
|
31
|
-
"types": "./dist/factories/index.d.mts",
|
|
32
|
-
"import": "./dist/factories/index.mjs"
|
|
33
|
-
},
|
|
34
|
-
"./transformers": {
|
|
35
|
-
"types": "./dist/transformers/index.d.mts",
|
|
36
|
-
"import": "./dist/transformers/index.mjs"
|
|
37
|
-
},
|
|
38
|
-
"./types": {
|
|
39
|
-
"types": "./dist/types/index.d.mts",
|
|
40
|
-
"import": "./dist/types/index.mjs"
|
|
41
|
-
},
|
|
42
|
-
"./utilities": {
|
|
43
|
-
"types": "./dist/utilities/index.d.mts",
|
|
44
|
-
"import": "./dist/utilities/index.mjs"
|
|
45
|
-
}
|
|
24
|
+
"./components": "./dist/components/index.js",
|
|
25
|
+
"./composables": "./dist/composables/index.js",
|
|
26
|
+
"./factories": "./dist/factories/index.js",
|
|
27
|
+
"./transformers": "./dist/transformers/index.js",
|
|
28
|
+
"./constants": "./dist/constants/index.js",
|
|
29
|
+
"./types": "./dist/types/index.js",
|
|
30
|
+
"./utilities": "./dist/utilities/index.js"
|
|
46
31
|
},
|
|
47
32
|
"peerDependencies": {
|
|
48
33
|
"markdown": "^0.5.0",
|
|
@@ -67,13 +52,13 @@
|
|
|
67
52
|
},
|
|
68
53
|
"devDependencies": {
|
|
69
54
|
"@vue/test-utils": "^2.4.6",
|
|
70
|
-
"tsdown": "^0.
|
|
55
|
+
"tsdown": "^0.14.2",
|
|
71
56
|
"typescript": "5.8.3",
|
|
72
|
-
"unplugin-vue": "^
|
|
73
|
-
"vue": "^3.5.
|
|
57
|
+
"unplugin-vue": "^7.0.1",
|
|
58
|
+
"vue": "^3.5.21"
|
|
74
59
|
},
|
|
75
60
|
"scripts": {
|
|
76
61
|
"build": "tsdown",
|
|
77
|
-
"
|
|
62
|
+
"typecheck": "vue-tsc --noEmit --incremental"
|
|
78
63
|
}
|
|
79
64
|
}
|
|
@@ -1,5 +0,0 @@
|
|
|
1
|
-
import "../index-BA3ZFBnL.mjs";
|
|
2
|
-
import { AtomExpose, AtomProps, AtomSlots, Breakpoints, Context, Group, GroupItemProps, GroupItemSlots, GroupRootProps, GroupRootSlots, Popover, PopoverAnchorProps, PopoverContentEmits, PopoverContentProps, PopoverContext, PopoverRootProps, Step, StepItemProps, StepItemSlots, StepRootProps, StepRootSlots, Theme, ThemeRootProps, ThemeRootSlots, ThemeSlots, _default as _default$2, _default$1 as _default, _default$2 as _default$1, providePopoverContext, usePopoverContext } from "../index-jG0yrC1F.mjs";
|
|
3
|
-
import "../index-ChaaTPKp.mjs";
|
|
4
|
-
import "../index-DfahEz6s.mjs";
|
|
5
|
-
export { _default$1 as Atom, AtomExpose, AtomProps, AtomSlots, Breakpoints, Context, Group, GroupItemProps, GroupItemSlots, GroupRootProps, GroupRootSlots, _default as Hydration, _default$2 as HydrationRoot, Popover, PopoverAnchorProps, PopoverContentEmits, PopoverContentProps, PopoverContext, PopoverRootProps, Step, StepItemProps, StepItemSlots, StepRootProps, StepRootSlots, Theme, ThemeRootProps, ThemeRootSlots, ThemeSlots, providePopoverContext, usePopoverContext };
|
|
@@ -1,7 +0,0 @@
|
|
|
1
|
-
import { Atom_default, Breakpoints, Context, Group, HydrationRoot_default, Hydration_default, Popover, Step, Theme, providePopoverContext, usePopoverContext } from "../components-B5iiovK7.mjs";
|
|
2
|
-
import "../createTrinity-CwGvQ2ng.mjs";
|
|
3
|
-
import "../useTheme-tY7MoBKr.mjs";
|
|
4
|
-
import "../utilities-lZSfrXgw.mjs";
|
|
5
|
-
import "../transformers-BTjuwbOV.mjs";
|
|
6
|
-
|
|
7
|
-
export { Atom_default as Atom, Breakpoints, Context, Group, Hydration_default as Hydration, HydrationRoot_default as HydrationRoot, Popover, Step, Theme, providePopoverContext, usePopoverContext };
|
|
@@ -1,5 +0,0 @@
|
|
|
1
|
-
import "../index-BA3ZFBnL.mjs";
|
|
2
|
-
import { BreakpointName, BreakpointsContext, BreakpointsOptions, BreakpointsPlugin, Colors, FlatTokenCollection, GroupContext, GroupOptions, GroupTicket, HydrationContext, HydrationPlugin, RegistryContext, RegistryOptions, RegistryTicket, SelectionContext, SelectionOptions, SelectionTicket, SingleContext, SingleOptions, SingleTicket, StepContext, StepOptions, StepTicket, ThemeColors, ThemeContext, ThemeOptions, ThemePlugin, ThemePluginOptions, ThemeRecord, ThemeTicket, TokenAlias, TokenCollection, TokenContext, TokenPrimitive, TokenTicket, TokenValue, createBreakpoints, createBreakpointsPlugin, createHydration, createHydrationPlugin, createTheme, createThemePlugin, createTokensContext, provideBreakpointsContext, provideHydrationContext, useBreakpoints, useBreakpointsContext, useGroup, useHydration, useHydrationContext, useRegistry, useSelection, useSingle, useStep, useTheme, useTokens } from "../index-ChaaTPKp.mjs";
|
|
3
|
-
import "../index-DfahEz6s.mjs";
|
|
4
|
-
import { CleanupFunction, ConsolaLoggerAdapter, EventHandler, FilterFunction, FilterItem, FilterMode, FilterQuery, FormContext, FormOptions, FormTicket, FormValidationResult, FormValidationRule, FormValue, KeyHandler, LayoutContext, LayoutLocation, LayoutOptions, LayoutTicket, LocaleContext, LocaleOptions, LocalePlugin, LocalePluginOptions, LocaleTicket, LogLevel, LoggerAdapter, LoggerContext, LoggerOptions, LoggerPlugin, PinoLoggerAdapter, Primitive, ProxyModelOptions, StorageContext, StorageOptions, StoragePlugin, UseFilterOptions, UseFilterResult, Vuetify0LoggerAdapter, createLocale, createLocalePlugin, createLogger, createLoggerPlugin, createStorage, createStoragePlugin, provideStorageContext, useDocumentEventListener, useEventListener, useFilter, useForm, useKeydown, useLayout, useLocale, useLogger, useProxyModel, useStorage, useStorageContext, useWindowEventListener } from "../index-Cya5Y9pB.mjs";
|
|
5
|
-
export { BreakpointName, BreakpointsContext, BreakpointsOptions, BreakpointsPlugin, CleanupFunction, Colors, ConsolaLoggerAdapter, EventHandler, FilterFunction, FilterItem, FilterMode, FilterQuery, FlatTokenCollection, FormContext, FormOptions, FormTicket, FormValidationResult, FormValidationRule, FormValue, GroupContext, GroupOptions, GroupTicket, HydrationContext, HydrationPlugin, KeyHandler, LayoutContext, LayoutLocation, LayoutOptions, LayoutTicket, LocaleContext, LocaleOptions, LocalePlugin, LocalePluginOptions, LocaleTicket, LogLevel, LoggerAdapter, LoggerContext, LoggerOptions, LoggerPlugin, PinoLoggerAdapter, Primitive, ProxyModelOptions, RegistryContext, RegistryOptions, RegistryTicket, SelectionContext, SelectionOptions, SelectionTicket, SingleContext, SingleOptions, SingleTicket, StepContext, StepOptions, StepTicket, StorageContext, StorageOptions, StoragePlugin, ThemeColors, ThemeContext, ThemeOptions, ThemePlugin, ThemePluginOptions, ThemeRecord, ThemeTicket, TokenAlias, TokenCollection, TokenContext, TokenPrimitive, TokenTicket, TokenValue, UseFilterOptions, UseFilterResult, Vuetify0LoggerAdapter, createBreakpoints, createBreakpointsPlugin, createHydration, createHydrationPlugin, createLocale, createLocalePlugin, createLogger, createLoggerPlugin, createStorage, createStoragePlugin, createTheme, createThemePlugin, createTokensContext, provideBreakpointsContext, provideHydrationContext, provideStorageContext, useBreakpoints, useBreakpointsContext, useDocumentEventListener, useEventListener, useFilter, useForm, useGroup, useHydration, useHydrationContext, useKeydown, useLayout, useLocale, useLogger, useProxyModel, useRegistry, useSelection, useSingle, useStep, useStorage, useStorageContext, useTheme, useTokens, useWindowEventListener };
|
|
@@ -1,7 +0,0 @@
|
|
|
1
|
-
import "../createTrinity-CwGvQ2ng.mjs";
|
|
2
|
-
import { ConsolaLoggerAdapter, PinoLoggerAdapter, Vuetify0LoggerAdapter, createBreakpoints, createBreakpointsPlugin, createHydration, createHydrationPlugin, createLogger, createLoggerPlugin, createTheme, createThemePlugin, createTokensContext, provideBreakpointsContext, provideHydrationContext, useBreakpoints, useBreakpointsContext, useGroup, useHydration, useHydrationContext, useLogger, useRegistry, useSelection, useSingle, useStep, useTheme, useTokens } from "../useTheme-tY7MoBKr.mjs";
|
|
3
|
-
import "../utilities-lZSfrXgw.mjs";
|
|
4
|
-
import "../transformers-BTjuwbOV.mjs";
|
|
5
|
-
import { createLocale, createLocalePlugin, createStorage, createStoragePlugin, provideStorageContext, useDocumentEventListener, useEventListener, useFilter, useForm, useKeydown, useLayout, useLocale, useProxyModel, useStorage, useStorageContext, useWindowEventListener } from "../composables-C6dl5kjP.mjs";
|
|
6
|
-
|
|
7
|
-
export { ConsolaLoggerAdapter, PinoLoggerAdapter, Vuetify0LoggerAdapter, createBreakpoints, createBreakpointsPlugin, createHydration, createHydrationPlugin, createLocale, createLocalePlugin, createLogger, createLoggerPlugin, createStorage, createStoragePlugin, createTheme, createThemePlugin, createTokensContext, provideBreakpointsContext, provideHydrationContext, provideStorageContext, useBreakpoints, useBreakpointsContext, useDocumentEventListener, useEventListener, useFilter, useForm, useGroup, useHydration, useHydrationContext, useKeydown, useLayout, useLocale, useLogger, useProxyModel, useRegistry, useSelection, useSingle, useStep, useStorage, useStorageContext, useTheme, useTokens, useWindowEventListener };
|