@vuetify/v0 0.0.2 → 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 +12 -13
- package/dist/browser/index.js +884 -808
- package/dist/components/index.d.ts +4 -4
- package/dist/components/index.js +5 -6
- package/dist/{components-Cc48kKWf.js → components-DVuB4lnH.js} +14 -187
- package/dist/composables/index.d.ts +4 -4
- package/dist/composables/index.js +6 -6
- package/dist/{composables-7Cbs2sdO.js → composables-yeVk-ULz.js} +368 -101
- package/dist/constants/index.d.ts +1 -1
- package/dist/constants/index.js +1 -1
- package/dist/factories/index.d.ts +2 -2
- package/dist/factories/index.js +2 -2
- package/dist/{factories-CPq2yMlr.js → factories-BEpawPUw.js} +32 -15
- package/dist/{globals--2b7sF4-.js → globals-DZvNEOB4.js} +1 -1
- package/dist/{index-BqrLvboW.d.ts → index-Ckt12ON6.d.ts} +38 -24
- package/dist/{index-BnsMFYhs.d.ts → index-D0L_ydyW.d.ts} +364 -375
- package/dist/{index-z_zwVNP8.d.ts → index-DVKeyWc5.d.ts} +1 -1
- package/dist/index.d.ts +4 -4
- package/dist/index.js +7 -7
- package/dist/transformers/index.js +1 -1
- package/dist/{transformers-BAeg3QJF.js → transformers-CWrxLIkw.js} +1 -1
- package/dist/{useTheme-DSYiiz0R.js → useTheme-DCXkw_kv.js} +153 -189
- package/package.json +12 -38
package/README.md
CHANGED
|
@@ -43,7 +43,6 @@ yarn add @vuetify/v0
|
|
|
43
43
|
- **`useHydration`** - SSR hydration helpers
|
|
44
44
|
- **`useIntersectionObserver`** - Intersection observer utilities
|
|
45
45
|
- **`useKeydown`** - Keyboard event handling
|
|
46
|
-
- **`useLayout`** - Layout management utilities
|
|
47
46
|
- **`useLocale`** - Internationalization support
|
|
48
47
|
- **`useLogger`** - Development logging utilities
|
|
49
48
|
- **`useMutationObserver`** - DOM mutation observation
|
|
@@ -127,8 +126,8 @@ const currentStep = ref(0)
|
|
|
127
126
|
<!-- Group selection -->
|
|
128
127
|
<Group v-model="selectedItems" multiple>
|
|
129
128
|
<template #default="{ select, isSelected }">
|
|
130
|
-
<button
|
|
131
|
-
v-for="item in items"
|
|
129
|
+
<button
|
|
130
|
+
v-for="item in items"
|
|
132
131
|
:key="item.id"
|
|
133
132
|
@click="select(item.id)"
|
|
134
133
|
:class="{ active: isSelected(item.id) }"
|
|
@@ -198,23 +197,23 @@ const handleSubmit = async () => {
|
|
|
198
197
|
<button @click="setTheme(theme === 'light' ? 'dark' : 'light')">
|
|
199
198
|
Toggle Theme ({{ theme }})
|
|
200
199
|
</button>
|
|
201
|
-
|
|
200
|
+
|
|
202
201
|
<form @submit.prevent="handleSubmit">
|
|
203
|
-
<input
|
|
204
|
-
v-model="email"
|
|
205
|
-
type="email"
|
|
202
|
+
<input
|
|
203
|
+
v-model="email"
|
|
204
|
+
type="email"
|
|
206
205
|
placeholder="Email"
|
|
207
206
|
:style="{ borderColor: colors.primary }"
|
|
208
207
|
/>
|
|
209
208
|
<div v-if="errors.email" class="error">{{ errors.email[0] }}</div>
|
|
210
|
-
|
|
211
|
-
<input
|
|
212
|
-
v-model="password"
|
|
213
|
-
type="password"
|
|
209
|
+
|
|
210
|
+
<input
|
|
211
|
+
v-model="password"
|
|
212
|
+
type="password"
|
|
214
213
|
placeholder="Password"
|
|
215
214
|
/>
|
|
216
215
|
<div v-if="errors.password" class="error">{{ errors.password[0] }}</div>
|
|
217
|
-
|
|
216
|
+
|
|
218
217
|
<button type="submit">Submit</button>
|
|
219
218
|
</form>
|
|
220
219
|
</div>
|
|
@@ -249,4 +248,4 @@ MIT License
|
|
|
249
248
|
|
|
250
249
|
---
|
|
251
250
|
|
|
252
|
-
Built with ❤️ for the Vue ecosystem. Part of the Vuetify family.
|
|
251
|
+
Built with ❤️ for the Vue ecosystem. Part of the Vuetify family.
|