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.
- package/package.json +1 -1
- package/ui.button/config.ts +3 -3
- package/ui.button/storybook/stories.ts +1 -1
- package/ui.button/types.ts +2 -2
- package/ui.button-link/config.ts +3 -3
- package/ui.button-link/storybook/stories.ts +1 -1
- package/ui.button-link/types.ts +2 -2
- package/ui.button-toggle/UToggle.vue +2 -1
- package/ui.button-toggle/storybook/stories.ts +63 -29
- package/ui.button-toggle/types.ts +7 -2
- package/ui.button-toggle-item/UToggleItem.vue +2 -2
- package/ui.button-toggle-item/storybook/stories.ts +28 -21
- package/ui.container-divider/config.ts +3 -3
- package/ui.container-divider/storybook/stories.ts +1 -1
- package/ui.container-divider/types.ts +2 -2
- package/ui.container-group/UGroup.vue +1 -1
- package/ui.container-modal/UModal.vue +7 -4
- package/ui.container-modal/config.ts +2 -3
- package/ui.container-modal/types.ts +1 -1
- package/ui.container-page/UPage.vue +1 -1
- package/ui.dropdown-button/UDropdownButton.vue +1 -1
- package/ui.dropdown-button/storybook/stories.ts +30 -13
- package/ui.dropdown-link/UDropdownLink.vue +1 -1
- package/ui.dropdown-link/config.ts +1 -1
- package/ui.dropdown-link/types.ts +2 -2
- package/ui.form-calendar/UCalendar.vue +6 -6
- package/ui.form-calendar/UCalendarDayView.vue +13 -13
- package/ui.form-calendar/UCalendarMonthView.vue +12 -12
- package/ui.form-calendar/UCalendarYearView.vue +12 -12
- package/ui.form-date-picker-range/UDatePickerRange.vue +3 -3
- package/ui.form-date-picker-range/UDatePickerRangePeriodMenu.vue +18 -18
- package/ui.form-input-file/UInputFile.vue +2 -2
- package/ui.form-input-search/UInputSearch.vue +1 -1
- package/ui.form-select/USelect.vue +15 -11
- package/ui.form-select/config.ts +6 -6
- package/ui.form-select/storybook/stories.ts +6 -6
- package/ui.navigation-pagination/UPagination.vue +7 -7
- package/ui.text-alert/UAlert.vue +1 -1
- 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
|
-
|
|
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
|
-
|
|
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
|
-
|
|
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
|
-
|
|
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
|
-
|
|
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
|
-
|
|
217
|
+
:ring="false"
|
|
218
218
|
variant="thirdary"
|
|
219
219
|
:label="lastLabel"
|
|
220
220
|
:square="!lastLabel"
|
package/ui.text-alert/UAlert.vue
CHANGED
package/ui.text-file/UFile.vue
CHANGED
|
@@ -59,7 +59,7 @@ const {
|
|
|
59
59
|
</script>
|
|
60
60
|
|
|
61
61
|
<template>
|
|
62
|
-
<ULink :href="url"
|
|
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
|
|
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
|
|