@milaboratories/uikit 2.2.48 → 2.2.49

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.
@@ -26,7 +26,9 @@ declare const _default: <M = unknown>(__VLS_props: NonNullable<Awaited<typeof __
26
26
  }> & import("vue").PublicProps;
27
27
  expose(exposed: import("vue").ShallowUnwrapRef<{}>): void;
28
28
  attrs: any;
29
- slots: {};
29
+ slots: {
30
+ tooltip?(_: {}): any;
31
+ };
30
32
  emit: (e: "update:modelValue", v: M[]) => void;
31
33
  }>) => import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
32
34
  [key: string]: any;
@@ -33,7 +33,16 @@ type __VLS_Props = {
33
33
  */
34
34
  disabled?: boolean;
35
35
  };
36
- declare const _default: import("vue").DefineComponent<__VLS_Props, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {} & {
36
+ declare function __VLS_template(): {
37
+ attrs: Partial<{}>;
38
+ slots: {
39
+ tooltip?(_: {}): any;
40
+ };
41
+ refs: {};
42
+ rootEl: any;
43
+ };
44
+ type __VLS_TemplateResult = ReturnType<typeof __VLS_template>;
45
+ declare const __VLS_component: import("vue").DefineComponent<__VLS_Props, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {} & {
37
46
  "update:modelValue": (value: Readonly<{
38
47
  __isRef: true;
39
48
  blockId: string;
@@ -55,4 +64,10 @@ declare const _default: import("vue").DefineComponent<__VLS_Props, {}, {}, {}, {
55
64
  helper: string;
56
65
  placeholder: string;
57
66
  }, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
67
+ declare const _default: __VLS_WithTemplateSlots<typeof __VLS_component, __VLS_TemplateResult["slots"]>;
58
68
  export default _default;
69
+ type __VLS_WithTemplateSlots<T, S> = T & {
70
+ new (): {
71
+ $slots: S;
72
+ };
73
+ };
@@ -2,7 +2,7 @@ import type { ModelRef, RefOption } from '../../types';
2
2
  /**
3
3
  * A component for selecting one value from a list of options
4
4
  */
5
- declare const _default: import("vue").DefineComponent<{
5
+ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<{
6
6
  /**
7
7
  * The current selected ref of the dropdown.
8
8
  */
@@ -115,5 +115,12 @@ declare const _default: import("vue").DefineComponent<{
115
115
  clearable: boolean;
116
116
  loadingOptionsHelper: string;
117
117
  optionSize: "small" | "medium";
118
- }, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
118
+ }, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>, {
119
+ tooltip?(_: {}): any;
120
+ }>;
119
121
  export default _default;
122
+ type __VLS_WithTemplateSlots<T, S> = T & {
123
+ new (): {
124
+ $slots: S;
125
+ };
126
+ };
@@ -3,7 +3,7 @@ import type { AnyLogHandle, Platforma, ValueOrErrors } from '@platforma-sdk/mode
3
3
  /**
4
4
  * Log Viewer Component
5
5
  */
6
- declare const _default: import("vue").DefineComponent<{
6
+ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<{
7
7
  /**
8
8
  * String contents
9
9
  */
@@ -69,5 +69,12 @@ declare const _default: import("vue").DefineComponent<{
69
69
  * The label to display above the texarea.
70
70
  */
71
71
  label?: string;
72
- }> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, HTMLDivElement>;
72
+ }> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, HTMLDivElement>, {
73
+ tooltip?(_: {}): any;
74
+ }>;
73
75
  export default _default;
76
+ type __VLS_WithTemplateSlots<T, S> = T & {
77
+ new (): {
78
+ $slots: S;
79
+ };
80
+ };