Skip to content

Commit

Permalink
Merge pull request #161 from libvue/improve/misc
Browse files Browse the repository at this point in the history
Improve/misc
  • Loading branch information
harmendv authored Apr 26, 2024
2 parents cfba7eb + e50e610 commit d613a66
Show file tree
Hide file tree
Showing 8 changed files with 10 additions and 9 deletions.
4 changes: 2 additions & 2 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@libvue/core",
"version": "1.3.1",
"version": "1.3.2",
"private": false,
"scripts": {
"dev": "vite",
Expand Down
2 changes: 1 addition & 1 deletion src/docs/views/documentation/components/lv-button.vue
Original file line number Diff line number Diff line change
Expand Up @@ -189,7 +189,7 @@ export default {
tabs: [
{ id: 'colors', title: 'Colors', icon: 'palette' },
{ id: 'sizes', title: 'Sizes', icon: 'scaling' },
{ id: 'states', title: 'States', icon: 'loader-2' },
{ id: 'states', title: 'States', icon: 'loader-circle' },
{ id: 'icons', title: 'Icons', icon: 'box-select' },
{ id: 'align', title: 'Text Alignment', icon: 'align-center' },
],
Expand Down
2 changes: 1 addition & 1 deletion src/docs/views/documentation/components/lv-date-picker.vue
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,7 @@ export default {
{ id: 'single', title: 'Single Date', icon: 'calendar-days' },
{ id: 'range', title: 'Date Range', icon: 'calendar-range' },
{ id: 'inline', title: 'Inline', icon: 'pencil' },
{ id: 'states', title: 'States', icon: 'loader-2' },
{ id: 'states', title: 'States', icon: 'loader-circle' },
],
}
}
Expand Down
2 changes: 1 addition & 1 deletion src/docs/views/documentation/components/lv-input.vue
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,7 @@ export default {
activeTab: 'types',
tabs: [
{ id: 'types', title: 'Types', icon: 'form-input' },
{ id: 'states', title: 'States', icon: 'loader-2' },
{ id: 'states', title: 'States', icon: 'loader-circle' },
{ id: 'sizes', title: 'Sizes', icon: 'scaling' },
],
};
Expand Down
2 changes: 1 addition & 1 deletion src/docs/views/documentation/components/lv-pill.vue
Original file line number Diff line number Diff line change
Expand Up @@ -114,7 +114,7 @@ export default {
activeTab: 'colors',
tabs: [
{ id: 'colors', title: 'Colors', icon: 'palette' },
{ id: 'states', title: 'States', icon: 'loader-2' },
{ id: 'states', title: 'States', icon: 'loader-circle' },
{ id: 'icons', title: 'Icons', icon: 'box-select' },
{ id: 'sizes', title: 'Sizes', icon: 'scaling' },
],
Expand Down
1 change: 1 addition & 0 deletions src/lib/components/LvPill/LvPill.vue
Original file line number Diff line number Diff line change
Expand Up @@ -83,6 +83,7 @@ export default {
display: flex;
align-items: center;
padding: 0.5rem 0.625rem;
margin: 0 2px;
}
&__close {
Expand Down
4 changes: 2 additions & 2 deletions src/lib/components/LvSpinner/LvSpinner.vue
Original file line number Diff line number Diff line change
Expand Up @@ -7,9 +7,9 @@
:height="computedSize"
aria-hidden="true"
:style="push ? `margin-right: ${push}rem;` : false"
data-name="loader-2"
data-name="loader-circle"
>
<use :href="`${spritePath}#loader-2`" />
<use :href="`${spritePath}#loader-circle`" />
<animateTransform attributeType="xml" attributeName="transform" type="rotate" from="0 0 0" to="359 0 0" :dur="duration" additive="sum" repeatCount="indefinite" />
</svg>
</template>
Expand Down

0 comments on commit d613a66

Please sign in to comment.