@milaboratories/uikit 1.2.13 → 1.2.14

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,4 +1,5 @@
1
1
  import './pl-log-view.scss';
2
+ import type { ValueOrErrors } from '@platforma-sdk/model';
2
3
  /**
3
4
  * Log Viewer Component
4
5
  */
@@ -7,10 +8,26 @@ declare const _default: import("vue").DefineComponent<{
7
8
  * String contents
8
9
  */
9
10
  value?: string;
11
+ /**
12
+ * String contents
13
+ */
14
+ error?: unknown;
15
+ /**
16
+ * Block output (Note: error and value take precedence over output property)
17
+ */
18
+ output?: ValueOrErrors<unknown>;
10
19
  }, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<{
11
20
  /**
12
21
  * String contents
13
22
  */
14
23
  value?: string;
24
+ /**
25
+ * String contents
26
+ */
27
+ error?: unknown;
28
+ /**
29
+ * Block output (Note: error and value take precedence over output property)
30
+ */
31
+ output?: ValueOrErrors<unknown>;
15
32
  }> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
16
33
  export default _default;