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 CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "vueless",
3
- "version": "1.0.2-beta.45",
3
+ "version": "1.0.2-beta.46",
4
4
  "license": "MIT",
5
5
  "description": "Vue Styleless UI Component Library, powered by Tailwind CSS.",
6
6
  "keywords": [
@@ -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: { leftSlot: 'pl-0' } }"
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: { rightSlot: 'pr-0' } }"
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: { leftSlot: 'pl-0' } }"
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: { rightSlot: 'pr-0' } }"
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: { leftSlot: 'pl-0' } }"
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: { leftSlot: 'pl-0' } }"
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: { rightSlot: 'pr-0' } }"
180
+ :config="{ passwordInput: { wrapper: 'pr-0' } }"
181
181
  >
182
182
  <template #label="{ label }">
183
183
  {{ label }}
@@ -2,7 +2,7 @@ export default /*tw*/ {
2
2
  searchInput: "{UInput}",
3
3
  searchInputWithButton: {
4
4
  base: "{UInput} {>searchInput}",
5
- rightSlot: "pr-0",
5
+ wrapper: "pr-0",
6
6
  },
7
7
  inputIcon: {
8
8
  base: "{UIcon}",
@@ -175,7 +175,7 @@ export const Slots: StoryFn<UInputSearchArgs> = (args) => ({
175
175
 
176
176
  <UInputSearch
177
177
  placeholder="Ask something..."
178
- :config="{ searchInput: { leftSlot: 'pl-0' } }"
178
+ :config="{ searchInput: { wrapper: 'pl-0' } }"
179
179
  >
180
180
  <template #left>
181
181
  <UDropdownButton