vueless 0.0.657 → 0.0.659

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.
Files changed (39) hide show
  1. package/package.json +1 -1
  2. package/ui.button/config.ts +3 -3
  3. package/ui.button/storybook/stories.ts +1 -1
  4. package/ui.button/types.ts +2 -2
  5. package/ui.button-link/config.ts +3 -3
  6. package/ui.button-link/storybook/stories.ts +1 -1
  7. package/ui.button-link/types.ts +2 -2
  8. package/ui.button-toggle/UToggle.vue +2 -1
  9. package/ui.button-toggle/storybook/stories.ts +63 -29
  10. package/ui.button-toggle/types.ts +7 -2
  11. package/ui.button-toggle-item/UToggleItem.vue +2 -2
  12. package/ui.button-toggle-item/storybook/stories.ts +28 -21
  13. package/ui.container-divider/config.ts +3 -3
  14. package/ui.container-divider/storybook/stories.ts +1 -1
  15. package/ui.container-divider/types.ts +2 -2
  16. package/ui.container-group/UGroup.vue +1 -1
  17. package/ui.container-modal/UModal.vue +7 -4
  18. package/ui.container-modal/config.ts +2 -3
  19. package/ui.container-modal/types.ts +1 -1
  20. package/ui.container-page/UPage.vue +1 -1
  21. package/ui.dropdown-button/UDropdownButton.vue +1 -1
  22. package/ui.dropdown-button/storybook/stories.ts +30 -13
  23. package/ui.dropdown-link/UDropdownLink.vue +1 -1
  24. package/ui.dropdown-link/config.ts +1 -1
  25. package/ui.dropdown-link/types.ts +2 -2
  26. package/ui.form-calendar/UCalendar.vue +6 -6
  27. package/ui.form-calendar/UCalendarDayView.vue +13 -13
  28. package/ui.form-calendar/UCalendarMonthView.vue +12 -12
  29. package/ui.form-calendar/UCalendarYearView.vue +12 -12
  30. package/ui.form-date-picker-range/UDatePickerRange.vue +3 -3
  31. package/ui.form-date-picker-range/UDatePickerRangePeriodMenu.vue +18 -18
  32. package/ui.form-input-file/UInputFile.vue +2 -2
  33. package/ui.form-input-search/UInputSearch.vue +1 -1
  34. package/ui.form-select/USelect.vue +15 -11
  35. package/ui.form-select/config.ts +6 -6
  36. package/ui.form-select/storybook/stories.ts +6 -6
  37. package/ui.navigation-pagination/UPagination.vue +7 -7
  38. package/ui.text-alert/UAlert.vue +1 -1
  39. package/ui.text-file/UFile.vue +9 -2
@@ -124,7 +124,7 @@ const {
124
124
  <div v-bind="paginationAttrs">
125
125
  <UButton
126
126
  v-if="showFirst"
127
- no-ring
127
+ :ring="false"
128
128
  variant="thirdary"
129
129
  :label="firstLabel"
130
130
  :square="!firstLabel"
@@ -145,7 +145,7 @@ const {
145
145
  </UButton>
146
146
 
147
147
  <UButton
148
- no-ring
148
+ :ring="false"
149
149
  variant="thirdary"
150
150
  :label="prevLabel"
151
151
  :square="!prevLabel"
@@ -164,8 +164,8 @@ const {
164
164
  <UButton
165
165
  v-if="!isFinite(page.number)"
166
166
  square
167
- no-ring
168
167
  disabled
168
+ :ring="false"
169
169
  variant="thirdary"
170
170
  v-bind="inactiveButtonAttrs"
171
171
  >
@@ -176,7 +176,7 @@ const {
176
176
  <UButton
177
177
  v-else-if="page.isActive"
178
178
  filled
179
- no-ring
179
+ :ring="false"
180
180
  :variant="variant"
181
181
  :label="String(page.number)"
182
182
  :disabled="disabled"
@@ -186,7 +186,7 @@ const {
186
186
 
187
187
  <UButton
188
188
  v-else
189
- no-ring
189
+ :ring="false"
190
190
  variant="thirdary"
191
191
  :label="String(page.number)"
192
192
  :disabled="disabled"
@@ -197,7 +197,7 @@ const {
197
197
  </template>
198
198
 
199
199
  <UButton
200
- no-ring
200
+ :ring="false"
201
201
  variant="thirdary"
202
202
  :label="nextLabel"
203
203
  :square="!nextLabel"
@@ -214,7 +214,7 @@ const {
214
214
 
215
215
  <UButton
216
216
  v-if="showLast"
217
- no-ring
217
+ :ring="false"
218
218
  variant="thirdary"
219
219
  :label="lastLabel"
220
220
  :square="!lastLabel"
@@ -110,8 +110,8 @@ const {
110
110
  <UButton
111
111
  v-if="closable"
112
112
  square
113
- no-ring
114
113
  size="xs"
114
+ :ring="false"
115
115
  :color="closeButtonColor"
116
116
  variant="thirdary"
117
117
  v-bind="closeButtonAttrs"
@@ -59,7 +59,7 @@ const {
59
59
  </script>
60
60
 
61
61
  <template>
62
- <ULink :href="url" no-ring v-bind="fileAttrs" :data-test="dataTest">
62
+ <ULink :href="url" :ring="false" v-bind="fileAttrs" :data-test="dataTest">
63
63
  <slot name="left" :file="{ elementId, label, url, imageUrl }" />
64
64
 
65
65
  <slot :file="{ elementId, label, url, imageUrl }">
@@ -77,7 +77,14 @@ const {
77
77
  @blur="onBlur"
78
78
  />
79
79
 
80
- <ULink :label="label" :size="size" color="gray" dashed no-ring v-bind="fileLabelAttrs" />
80
+ <ULink
81
+ :label="label"
82
+ :ring="false"
83
+ :size="size"
84
+ color="gray"
85
+ dashed
86
+ v-bind="fileLabelAttrs"
87
+ />
81
88
  </div>
82
89
  </slot>
83
90