vueless 1.0.2-beta.45 → 1.0.2-beta.46
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/package.json +1 -1
- package/ui.form-date-picker/storybook/stories.ts +2 -2
- package/ui.form-date-picker-range/storybook/stories.ts +2 -2
- package/ui.form-input-number/storybook/stories.ts +1 -1
- package/ui.form-input-password/storybook/stories.ts +2 -2
- package/ui.form-input-search/config.ts +1 -1
- package/ui.form-input-search/storybook/stories.ts +1 -1
package/package.json
CHANGED
|
@@ -270,7 +270,7 @@ export const Slots: StoryFn<DefaultUDatePickerArgs> = (args) => ({
|
|
|
270
270
|
v-bind="args"
|
|
271
271
|
v-model="args.modelValue"
|
|
272
272
|
class="w-full"
|
|
273
|
-
:config="{ datepickerInput: {
|
|
273
|
+
:config="{ datepickerInput: { wrapper: 'pl-0' } }"
|
|
274
274
|
>
|
|
275
275
|
<template #left>
|
|
276
276
|
<UButton
|
|
@@ -287,7 +287,7 @@ export const Slots: StoryFn<DefaultUDatePickerArgs> = (args) => ({
|
|
|
287
287
|
v-bind="args"
|
|
288
288
|
v-model="args.modelValue"
|
|
289
289
|
class="w-full"
|
|
290
|
-
:config="{ datepickerInput: {
|
|
290
|
+
:config="{ datepickerInput: { wrapper: 'pr-0' } }"
|
|
291
291
|
>
|
|
292
292
|
<template #right>
|
|
293
293
|
<UButton
|
|
@@ -277,7 +277,7 @@ export const Slots: StoryFn<DefaultUDatePickerRangeArgs> = (args) => ({
|
|
|
277
277
|
v-model="args.modelValue"
|
|
278
278
|
variant="input"
|
|
279
279
|
class="w-full"
|
|
280
|
-
:config="{ datepickerInput: {
|
|
280
|
+
:config="{ datepickerInput: { wrapper: 'pl-0' } }"
|
|
281
281
|
>
|
|
282
282
|
<template #left>
|
|
283
283
|
<UButton label="Export" size="xs" class="h-full rounded-r-none" />
|
|
@@ -288,7 +288,7 @@ export const Slots: StoryFn<DefaultUDatePickerRangeArgs> = (args) => ({
|
|
|
288
288
|
v-model="args.modelValue"
|
|
289
289
|
variant="input"
|
|
290
290
|
class="w-full"
|
|
291
|
-
:config="{ datepickerInput: {
|
|
291
|
+
:config="{ datepickerInput: { wrapper: 'pr-0' } }"
|
|
292
292
|
>
|
|
293
293
|
<template #right>
|
|
294
294
|
<UButton label="Schedule" size="xs" class="h-full rounded-l-none" />
|
|
@@ -217,7 +217,7 @@ export const Slots: StoryFn<UInputNumberArgs> = (args) => ({
|
|
|
217
217
|
<UInputNumber
|
|
218
218
|
label="Left slot"
|
|
219
219
|
placeholder="Enter discount amount"
|
|
220
|
-
:config="{ numberInput: {
|
|
220
|
+
:config="{ numberInput: { wrapper: 'pl-0' } }"
|
|
221
221
|
>
|
|
222
222
|
<template #left>
|
|
223
223
|
<UDropdownButton
|
|
@@ -154,7 +154,7 @@ export const Slots: StoryFn<UInputPasswordArgs> = (args) => ({
|
|
|
154
154
|
v-bind="args"
|
|
155
155
|
v-model="args.modelValue"
|
|
156
156
|
label="Enter your password"
|
|
157
|
-
:config="{ passwordInput: {
|
|
157
|
+
:config="{ passwordInput: { wrapper: 'pl-0' } }"
|
|
158
158
|
>
|
|
159
159
|
<template #label="{ label }">
|
|
160
160
|
{{ label }}
|
|
@@ -177,7 +177,7 @@ export const Slots: StoryFn<UInputPasswordArgs> = (args) => ({
|
|
|
177
177
|
v-bind="args"
|
|
178
178
|
v-model="args.modelValue"
|
|
179
179
|
label="Enter your password"
|
|
180
|
-
:config="{ passwordInput: {
|
|
180
|
+
:config="{ passwordInput: { wrapper: 'pr-0' } }"
|
|
181
181
|
>
|
|
182
182
|
<template #label="{ label }">
|
|
183
183
|
{{ label }}
|
|
@@ -175,7 +175,7 @@ export const Slots: StoryFn<UInputSearchArgs> = (args) => ({
|
|
|
175
175
|
|
|
176
176
|
<UInputSearch
|
|
177
177
|
placeholder="Ask something..."
|
|
178
|
-
:config="{ searchInput: {
|
|
178
|
+
:config="{ searchInput: { wrapper: 'pl-0' } }"
|
|
179
179
|
>
|
|
180
180
|
<template #left>
|
|
181
181
|
<UDropdownButton
|