@milaboratories/uikit 2.2.51 → 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 +12 -0
- package/dist/pl-uikit.js +3244 -3221
- 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/PlFileDialog/Remote.vue +6 -4
- 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
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
type __VLS_Props = {
|
|
2
|
+
/**
|
|
3
|
+
* Optional string that sets size for PlLoaderCircular.
|
|
4
|
+
*/
|
|
5
|
+
size?: '16' | '24' | '48' | string;
|
|
6
|
+
/**
|
|
7
|
+
* Optional string that sets text that will be shown below the PlLoaderCircular.
|
|
8
|
+
*/
|
|
9
|
+
text?: string;
|
|
10
|
+
};
|
|
11
|
+
declare const _default: import("vue").DefineComponent<__VLS_Props, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<__VLS_Props> & Readonly<{}>, {
|
|
12
|
+
text: string;
|
|
13
|
+
size: "16" | "24" | "48" | string;
|
|
14
|
+
}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, HTMLDivElement>;
|
|
15
|
+
export default _default;
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export { default as PlSplash } from './PlSplash.vue';
|
package/dist/src/index.d.ts
CHANGED
|
@@ -46,6 +46,7 @@ export * from './components/PlSectionSeparator';
|
|
|
46
46
|
export * from './components/PlAccordion';
|
|
47
47
|
export * from './components/PlStatusTag';
|
|
48
48
|
export * from './components/PlLoaderCircular';
|
|
49
|
+
export * from './components/PlSplash';
|
|
49
50
|
export * from './components/PlProgressCell';
|
|
50
51
|
export * from './components/PlFileDialog';
|
|
51
52
|
export * from './components/PlFileInput';
|