Skip to content

Commit

Permalink
Added VueUiMiniLoader component
Browse files Browse the repository at this point in the history
  • Loading branch information
graphieros committed Feb 14, 2024
1 parent 553f334 commit e17bf69
Show file tree
Hide file tree
Showing 5 changed files with 12 additions and 8 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,7 +1,7 @@
{
"name": "vue-data-ui",
"private": false,
"version": "1.9.90",
"version": "1.9.91",
"type": "module",
"description": "A user-empowering data visualization Vue components library",
"keywords": [
Expand Down
6 changes: 3 additions & 3 deletions src/App.vue
Original file line number Diff line number Diff line change
Expand Up @@ -3964,9 +3964,9 @@ const moodRadarConfig = ref({
<template #dev>
<MiniLoaderTest :config="miniLoaderConfig" />
</template>
<!-- <template #prod>
<VueUiTableSparkline :dataset="tableSparklineDataset"/>
</template> -->
<template #prod>
<VueUiMiniLoader :config="miniLoaderConfig" />
</template>
<template #config>
{{ PROD_CONFIG.vue_ui_mini_loader }}
</template>
Expand Down
4 changes: 3 additions & 1 deletion src/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -35,6 +35,7 @@ import VueUiDigits from "./components/vue-ui-digits.vue";
import VueUiMolecule from "./components/vue-ui-molecule.vue";
import VueUiTableSparkline from "./components/vue-ui-table-sparkline.vue";
import Arrow from "./atoms/Arrow.vue"
import VueUiMiniLoader from "./components/vue-ui-mini-loader.vue";

export {
VueUiXy,
Expand Down Expand Up @@ -73,5 +74,6 @@ export {
VueUiDigits,
VueUiMolecule,
VueUiTableSparkline,
Arrow
Arrow,
VueUiMiniLoader
};
4 changes: 3 additions & 1 deletion src/main.js
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,8 @@ import {
VueUiDigits,
VueUiMolecule,
VueUiTableSparkline,
Arrow
Arrow,
VueUiMiniLoader
} from 'vue-data-ui';
import 'vue-data-ui/style.css';

Expand Down Expand Up @@ -80,4 +81,5 @@ app.component("VueUiDigits", VueUiDigits);
app.component("VueUiMolecule", VueUiMolecule);
app.component("VueUiTableSparkline", VueUiTableSparkline);
app.component("Arrow", Arrow);
app.component("VueUiMiniLoader", VueUiMiniLoader);
app.mount('#app');

0 comments on commit e17bf69

Please sign in to comment.