@milaboratories/uikit 2.2.52 → 2.2.53
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/CHANGELOG.md +6 -0
- package/dist/pl-uikit.js +1715 -1694
- package/dist/pl-uikit.js.map +1 -1
- package/dist/pl-uikit.umd.cjs +6 -6
- package/dist/pl-uikit.umd.cjs.map +1 -1
- package/dist/src/components/PlSplash/PlSplash.vue.d.ts +15 -0
- package/dist/src/components/PlSplash/index.d.ts +1 -0
- package/dist/src/index.d.ts +1 -0
- package/dist/style.css +1 -1
- package/dist/tsconfig.lib.tsbuildinfo +1 -1
- package/package.json +1 -1
- package/src/components/PlSplash/PlSplash.vue +23 -0
- package/src/components/PlSplash/index.ts +1 -0
- package/src/components/PlSplash/pl-splash.module.scss +9 -0
- package/src/index.ts +1 -0
package/package.json
CHANGED
|
@@ -0,0 +1,23 @@
|
|
|
1
|
+
<script setup lang="ts">
|
|
2
|
+
import style from './pl-splash.module.scss';
|
|
3
|
+
import { PlLoaderCircular } from '@/components/PlLoaderCircular';
|
|
4
|
+
|
|
5
|
+
withDefaults(defineProps<{
|
|
6
|
+
/**
|
|
7
|
+
* Optional string that sets size for PlLoaderCircular.
|
|
8
|
+
*/
|
|
9
|
+
size?: '16' | '24' | '48' | string;
|
|
10
|
+
/**
|
|
11
|
+
* Optional string that sets text that will be shown below the PlLoaderCircular.
|
|
12
|
+
*/
|
|
13
|
+
text?: string;
|
|
14
|
+
|
|
15
|
+
}>(), { size: '48', text: 'Loading' });
|
|
16
|
+
</script>
|
|
17
|
+
|
|
18
|
+
<template>
|
|
19
|
+
<div :class="style.container">
|
|
20
|
+
<PlLoaderCircular :size="size" />
|
|
21
|
+
<h3 :class="style.text">{{ text }}</h3>
|
|
22
|
+
</div>
|
|
23
|
+
</template>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export { default as PlSplash } from './PlSplash.vue';
|
package/src/index.ts
CHANGED
|
@@ -51,6 +51,7 @@ export * from './components/PlSectionSeparator';
|
|
|
51
51
|
export * from './components/PlAccordion';
|
|
52
52
|
export * from './components/PlStatusTag';
|
|
53
53
|
export * from './components/PlLoaderCircular';
|
|
54
|
+
export * from './components/PlSplash';
|
|
54
55
|
export * from './components/PlProgressCell';
|
|
55
56
|
|
|
56
57
|
export * from './components/PlFileDialog';
|