Skip to content

Commit d613a66

Browse files
authored
Merge pull request #161 from libvue/improve/misc
Improve/misc
2 parents cfba7eb + e50e610 commit d613a66

File tree

8 files changed

+10
-9
lines changed

8 files changed

+10
-9
lines changed

package-lock.json

+2-2
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@libvue/core",
3-
"version": "1.3.1",
3+
"version": "1.3.2",
44
"private": false,
55
"scripts": {
66
"dev": "vite",

src/docs/views/documentation/components/lv-button.vue

+1-1
Original file line numberDiff line numberDiff line change
@@ -189,7 +189,7 @@ export default {
189189
tabs: [
190190
{ id: 'colors', title: 'Colors', icon: 'palette' },
191191
{ id: 'sizes', title: 'Sizes', icon: 'scaling' },
192-
{ id: 'states', title: 'States', icon: 'loader-2' },
192+
{ id: 'states', title: 'States', icon: 'loader-circle' },
193193
{ id: 'icons', title: 'Icons', icon: 'box-select' },
194194
{ id: 'align', title: 'Text Alignment', icon: 'align-center' },
195195
],

src/docs/views/documentation/components/lv-date-picker.vue

+1-1
Original file line numberDiff line numberDiff line change
@@ -70,7 +70,7 @@ export default {
7070
{ id: 'single', title: 'Single Date', icon: 'calendar-days' },
7171
{ id: 'range', title: 'Date Range', icon: 'calendar-range' },
7272
{ id: 'inline', title: 'Inline', icon: 'pencil' },
73-
{ id: 'states', title: 'States', icon: 'loader-2' },
73+
{ id: 'states', title: 'States', icon: 'loader-circle' },
7474
],
7575
}
7676
}

src/docs/views/documentation/components/lv-input.vue

+1-1
Original file line numberDiff line numberDiff line change
@@ -70,7 +70,7 @@ export default {
7070
activeTab: 'types',
7171
tabs: [
7272
{ id: 'types', title: 'Types', icon: 'form-input' },
73-
{ id: 'states', title: 'States', icon: 'loader-2' },
73+
{ id: 'states', title: 'States', icon: 'loader-circle' },
7474
{ id: 'sizes', title: 'Sizes', icon: 'scaling' },
7575
],
7676
};

src/docs/views/documentation/components/lv-pill.vue

+1-1
Original file line numberDiff line numberDiff line change
@@ -114,7 +114,7 @@ export default {
114114
activeTab: 'colors',
115115
tabs: [
116116
{ id: 'colors', title: 'Colors', icon: 'palette' },
117-
{ id: 'states', title: 'States', icon: 'loader-2' },
117+
{ id: 'states', title: 'States', icon: 'loader-circle' },
118118
{ id: 'icons', title: 'Icons', icon: 'box-select' },
119119
{ id: 'sizes', title: 'Sizes', icon: 'scaling' },
120120
],

src/lib/components/LvPill/LvPill.vue

+1
Original file line numberDiff line numberDiff line change
@@ -83,6 +83,7 @@ export default {
8383
display: flex;
8484
align-items: center;
8585
padding: 0.5rem 0.625rem;
86+
margin: 0 2px;
8687
}
8788
8889
&__close {

src/lib/components/LvSpinner/LvSpinner.vue

+2-2
Original file line numberDiff line numberDiff line change
@@ -7,9 +7,9 @@
77
:height="computedSize"
88
aria-hidden="true"
99
:style="push ? `margin-right: ${push}rem;` : false"
10-
data-name="loader-2"
10+
data-name="loader-circle"
1111
>
12-
<use :href="`${spritePath}#loader-2`" />
12+
<use :href="`${spritePath}#loader-circle`" />
1313
<animateTransform attributeType="xml" attributeName="transform" type="rotate" from="0 0 0" to="359 0 0" :dur="duration" additive="sum" repeatCount="indefinite" />
1414
</svg>
1515
</template>

0 commit comments

Comments
 (0)