@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.
@@ -1,5 +1,5 @@
1
1
  import type { ImportedFiles } from '../../types';
2
- import type { StorageHandle } from '@platforma-sdk/model';
2
+ import { type StorageHandle } from '@platforma-sdk/model';
3
3
  type __VLS_Props = {
4
4
  modelValue: boolean;
5
5
  extensions?: string[];
@@ -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
  */
@@ -1,5 +1,5 @@
1
1
  import { type Reactive } from 'vue';
2
- import type { AnyLogHandle, Platforma } from '@platforma-sdk/model';
2
+ import { type AnyLogHandle, type Platforma } from '@platforma-sdk/model';
3
3
  type LogState = {
4
4
  logHandle: AnyLogHandle;
5
5
  lines: string;