@milaboratories/uikit 2.2.60 → 2.2.62
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 +3869 -3798
- 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/PlFileDialog/Remote.vue.d.ts +1 -1
- package/dist/src/components/PlFileDialog/utils.test.d.ts +1 -0
- package/dist/src/components/PlLogView/PlLogView.vue.d.ts +8 -0
- package/dist/src/components/PlLogView/useLogHandle.d.ts +1 -1
- package/dist/tsconfig.lib.tsbuildinfo +1 -1
- package/package.json +4 -4
- package/src/components/PlFileDialog/Local.vue +5 -5
- package/src/components/PlFileDialog/Remote.vue +5 -5
- package/src/components/PlFileDialog/utils.test.ts +51 -0
- package/src/components/PlFileDialog/utils.ts +27 -12
- package/src/components/PlLogView/PlLogView.vue +13 -2
- package/src/components/PlLogView/useLogHandle.ts +2 -2
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export {};
|
|
@@ -8,6 +8,10 @@ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<{
|
|
|
8
8
|
* String contents
|
|
9
9
|
*/
|
|
10
10
|
value?: string;
|
|
11
|
+
/**
|
|
12
|
+
* The content to copy (Note: it takes precedence over value property)
|
|
13
|
+
*/
|
|
14
|
+
valueToCopy?: string;
|
|
11
15
|
/**
|
|
12
16
|
* AnyLogHandle
|
|
13
17
|
*/
|
|
@@ -41,6 +45,10 @@ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<{
|
|
|
41
45
|
* String contents
|
|
42
46
|
*/
|
|
43
47
|
value?: string;
|
|
48
|
+
/**
|
|
49
|
+
* The content to copy (Note: it takes precedence over value property)
|
|
50
|
+
*/
|
|
51
|
+
valueToCopy?: string;
|
|
44
52
|
/**
|
|
45
53
|
* AnyLogHandle
|
|
46
54
|
*/
|