@profitliga/ui 1.2.55 → 1.2.57
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/dist/components/BottomSheet/BottomSheet.vue.d.ts +4 -10
- package/dist/components/ScrollArea/ScrollAreaRoot.vue.d.ts +5 -13
- package/dist/components/Stepper/StepperRoot.vue.d.ts +5 -13
- package/dist/components/Toast/use-toast.d.ts +3 -7
- package/dist/components/Tooltip/TooltipArrow.vue.d.ts +1 -6
- package/dist/components/index.js +926 -1006
- package/dist/ui.css +1 -1
- package/package.json +1 -1
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { nextTick, ComponentInternalInstance, Component, VNodeProps, AllowedComponentProps, ComponentCustomProps, Slot, ComponentPublicInstance, ComponentOptionsBase, ComponentOptionsMixin, GlobalComponents, GlobalDirectives, ComponentProvideOptions, DebuggerEvent, WatchOptions, WatchStopHandle, ShallowUnwrapRef, ComponentCustomProperties, DefineComponent, PublicProps } from 'vue';
|
|
1
|
+
import { nextTick, ComponentInternalInstance, Component, VNodeProps, AllowedComponentProps, ComponentCustomProps, Attrs, Slot, ComponentPublicInstance, ComponentOptionsBase, ComponentOptionsMixin, GlobalComponents, GlobalDirectives, ComponentProvideOptions, DebuggerEvent, WatchOptions, WatchStopHandle, ShallowUnwrapRef, ComponentCustomProperties, DefineComponent, PublicProps } from 'vue';
|
|
2
2
|
import { IDrawerCloseProps, IDialogContentProps } from '../Drawer/DrawerContent.vue';
|
|
3
3
|
import { AsTag, PointerDownOutsideEvent, FocusOutsideEvent } from 'reka-ui';
|
|
4
4
|
import { OnCleanup } from '@vue/reactivity';
|
|
@@ -33,9 +33,7 @@ declare function __VLS_template(): {
|
|
|
33
33
|
readonly onInteractOutside?: ((event: PointerDownOutsideEvent | FocusOutsideEvent) => any) | undefined;
|
|
34
34
|
readonly onCloseAutoFocus?: ((event: Event) => any) | undefined;
|
|
35
35
|
} & VNodeProps & AllowedComponentProps & ComponentCustomProps;
|
|
36
|
-
$attrs:
|
|
37
|
-
[x: string]: unknown;
|
|
38
|
-
};
|
|
36
|
+
$attrs: Attrs;
|
|
39
37
|
$refs: {
|
|
40
38
|
[x: string]: unknown;
|
|
41
39
|
};
|
|
@@ -126,9 +124,7 @@ declare const __VLS_component: DefineComponent<__VLS_PublicProps, {
|
|
|
126
124
|
readonly onInteractOutside?: ((event: PointerDownOutsideEvent | FocusOutsideEvent) => any) | undefined;
|
|
127
125
|
readonly onCloseAutoFocus?: ((event: Event) => any) | undefined;
|
|
128
126
|
} & VNodeProps & AllowedComponentProps & ComponentCustomProps;
|
|
129
|
-
$attrs:
|
|
130
|
-
[x: string]: unknown;
|
|
131
|
-
};
|
|
127
|
+
$attrs: Attrs;
|
|
132
128
|
$refs: {
|
|
133
129
|
[x: string]: unknown;
|
|
134
130
|
};
|
|
@@ -219,9 +215,7 @@ declare const __VLS_component: DefineComponent<__VLS_PublicProps, {
|
|
|
219
215
|
readonly onInteractOutside?: ((event: PointerDownOutsideEvent | FocusOutsideEvent) => any) | undefined;
|
|
220
216
|
readonly onCloseAutoFocus?: ((event: Event) => any) | undefined;
|
|
221
217
|
} & VNodeProps & AllowedComponentProps & ComponentCustomProps;
|
|
222
|
-
$attrs:
|
|
223
|
-
[x: string]: unknown;
|
|
224
|
-
};
|
|
218
|
+
$attrs: Attrs;
|
|
225
219
|
$refs: {
|
|
226
220
|
[x: string]: unknown;
|
|
227
221
|
};
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { ScrollAreaRoot, ScrollAreaRootProps, AsTag } from 'reka-ui';
|
|
2
|
-
import { ComputedRef, Component, ComponentInternalInstance, VNodeProps, AllowedComponentProps, ComponentCustomProps, Slot, ComponentPublicInstance, ComponentOptionsBase, ComponentOptionsMixin, GlobalComponents, GlobalDirectives, ComponentProvideOptions, DebuggerEvent, nextTick, WatchOptions, WatchStopHandle, ShallowUnwrapRef, ComponentCustomProperties, Ref, DefineComponent, PublicProps } from 'vue';
|
|
2
|
+
import { ComputedRef, Component, ComponentInternalInstance, VNodeProps, AllowedComponentProps, ComponentCustomProps, Attrs, Slot, ComponentPublicInstance, ComponentOptionsBase, ComponentOptionsMixin, GlobalComponents, GlobalDirectives, ComponentProvideOptions, DebuggerEvent, nextTick, WatchOptions, WatchStopHandle, ShallowUnwrapRef, ComponentCustomProperties, Ref, DefineComponent, PublicProps } from 'vue';
|
|
3
3
|
import { OnCleanup } from '@vue/reactivity';
|
|
4
4
|
export interface IScrollAreaRootProps extends ScrollAreaRootProps {
|
|
5
5
|
maxHeight?: number | string;
|
|
@@ -35,9 +35,7 @@ declare function __VLS_template(): {
|
|
|
35
35
|
readonly asChild?: boolean | undefined;
|
|
36
36
|
readonly as?: ( AsTag | Component) | undefined;
|
|
37
37
|
} & VNodeProps & AllowedComponentProps & ComponentCustomProps;
|
|
38
|
-
$attrs:
|
|
39
|
-
[x: string]: unknown;
|
|
40
|
-
};
|
|
38
|
+
$attrs: Attrs;
|
|
41
39
|
$refs: {
|
|
42
40
|
[x: string]: unknown;
|
|
43
41
|
};
|
|
@@ -95,9 +93,7 @@ declare function __VLS_template(): {
|
|
|
95
93
|
readonly asChild?: boolean | undefined;
|
|
96
94
|
readonly as?: ( AsTag | Component) | undefined;
|
|
97
95
|
} & VNodeProps & AllowedComponentProps & ComponentCustomProps;
|
|
98
|
-
$attrs:
|
|
99
|
-
[x: string]: unknown;
|
|
100
|
-
};
|
|
96
|
+
$attrs: Attrs;
|
|
101
97
|
$refs: {
|
|
102
98
|
[x: string]: unknown;
|
|
103
99
|
};
|
|
@@ -165,9 +161,7 @@ declare const __VLS_component: DefineComponent<IScrollAreaRootProps, {
|
|
|
165
161
|
readonly asChild?: boolean | undefined;
|
|
166
162
|
readonly as?: ( AsTag | Component) | undefined;
|
|
167
163
|
} & VNodeProps & AllowedComponentProps & ComponentCustomProps;
|
|
168
|
-
$attrs:
|
|
169
|
-
[x: string]: unknown;
|
|
170
|
-
};
|
|
164
|
+
$attrs: Attrs;
|
|
171
165
|
$refs: {
|
|
172
166
|
[x: string]: unknown;
|
|
173
167
|
};
|
|
@@ -225,9 +219,7 @@ declare const __VLS_component: DefineComponent<IScrollAreaRootProps, {
|
|
|
225
219
|
readonly asChild?: boolean | undefined;
|
|
226
220
|
readonly as?: ( AsTag | Component) | undefined;
|
|
227
221
|
} & VNodeProps & AllowedComponentProps & ComponentCustomProps;
|
|
228
|
-
$attrs:
|
|
229
|
-
[x: string]: unknown;
|
|
230
|
-
};
|
|
222
|
+
$attrs: Attrs;
|
|
231
223
|
$refs: {
|
|
232
224
|
[x: string]: unknown;
|
|
233
225
|
};
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { StepperRoot, StepperRootProps, AsTag } from 'reka-ui';
|
|
2
|
-
import { ComputedRef, ComponentInternalInstance, Component, VNodeProps, AllowedComponentProps, ComponentCustomProps, Slot, ComponentPublicInstance, ComponentOptionsBase, ComponentOptionsMixin, GlobalComponents, GlobalDirectives, ComponentProvideOptions, DebuggerEvent, nextTick, WatchOptions, WatchStopHandle, ShallowUnwrapRef, ComponentCustomProperties, WritableComputedRef, DefineComponent, ShallowRef, CreateComponentPublicInstanceWithMixins, PublicProps } from 'vue';
|
|
2
|
+
import { ComputedRef, ComponentInternalInstance, Component, VNodeProps, AllowedComponentProps, ComponentCustomProps, Attrs, Slot, ComponentPublicInstance, ComponentOptionsBase, ComponentOptionsMixin, GlobalComponents, GlobalDirectives, ComponentProvideOptions, DebuggerEvent, nextTick, WatchOptions, WatchStopHandle, ShallowUnwrapRef, ComponentCustomProperties, WritableComputedRef, DefineComponent, ShallowRef, CreateComponentPublicInstanceWithMixins, PublicProps } from 'vue';
|
|
3
3
|
import { LooseRequired } from '@vue/shared';
|
|
4
4
|
import { OnCleanup } from '@vue/reactivity';
|
|
5
5
|
declare const forwared: ComputedRef<Readonly< LooseRequired<StepperRootProps>> & {
|
|
@@ -25,9 +25,7 @@ declare function __VLS_template(): {
|
|
|
25
25
|
readonly as?: ( AsTag | Component) | undefined;
|
|
26
26
|
readonly "onUpdate:modelValue"?: ((payload: number | undefined) => any) | undefined;
|
|
27
27
|
} & VNodeProps & AllowedComponentProps & ComponentCustomProps;
|
|
28
|
-
$attrs:
|
|
29
|
-
[x: string]: unknown;
|
|
30
|
-
};
|
|
28
|
+
$attrs: Attrs;
|
|
31
29
|
$refs: {
|
|
32
30
|
[x: string]: unknown;
|
|
33
31
|
};
|
|
@@ -88,9 +86,7 @@ declare function __VLS_template(): {
|
|
|
88
86
|
readonly as?: ( AsTag | Component) | undefined;
|
|
89
87
|
readonly "onUpdate:modelValue"?: ((payload: number | undefined) => any) | undefined | undefined;
|
|
90
88
|
} & VNodeProps & AllowedComponentProps & ComponentCustomProps;
|
|
91
|
-
$attrs:
|
|
92
|
-
[x: string]: unknown;
|
|
93
|
-
};
|
|
89
|
+
$attrs: Attrs;
|
|
94
90
|
$refs: {
|
|
95
91
|
[x: string]: unknown;
|
|
96
92
|
};
|
|
@@ -287,9 +283,7 @@ declare const __VLS_component: DefineComponent<StepperRootProps, {
|
|
|
287
283
|
readonly as?: ( AsTag | Component) | undefined;
|
|
288
284
|
readonly "onUpdate:modelValue"?: ((payload: number | undefined) => any) | undefined;
|
|
289
285
|
} & VNodeProps & AllowedComponentProps & ComponentCustomProps;
|
|
290
|
-
$attrs:
|
|
291
|
-
[x: string]: unknown;
|
|
292
|
-
};
|
|
286
|
+
$attrs: Attrs;
|
|
293
287
|
$refs: {
|
|
294
288
|
[x: string]: unknown;
|
|
295
289
|
};
|
|
@@ -350,9 +344,7 @@ declare const __VLS_component: DefineComponent<StepperRootProps, {
|
|
|
350
344
|
readonly as?: ( AsTag | Component) | undefined;
|
|
351
345
|
readonly "onUpdate:modelValue"?: ((payload: number | undefined) => any) | undefined | undefined;
|
|
352
346
|
} & VNodeProps & AllowedComponentProps & ComponentCustomProps;
|
|
353
|
-
$attrs:
|
|
354
|
-
[x: string]: unknown;
|
|
355
|
-
};
|
|
347
|
+
$attrs: Attrs;
|
|
356
348
|
$refs: {
|
|
357
349
|
[x: string]: unknown;
|
|
358
350
|
};
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { IToastRootProps } from '.';
|
|
2
|
-
import { Component, VNode, ComputedRef, FunctionalComponent, Slot, ComputedOptions, MethodOptions, Directive, WatchCallback, WatchOptions, ComponentProvideOptions, DebuggerEvent, ComponentPublicInstance } from 'vue';
|
|
2
|
+
import { Component, VNode, ComputedRef, FunctionalComponent, Attrs, Slot, ComputedOptions, MethodOptions, Directive, WatchCallback, WatchOptions, ComponentProvideOptions, DebuggerEvent, ComponentPublicInstance } from 'vue';
|
|
3
3
|
import { ToastVariant } from './toast.constants';
|
|
4
4
|
import { AsTag } from 'reka-ui';
|
|
5
5
|
import { LooseRequired } from '@vue/shared';
|
|
@@ -29,9 +29,7 @@ declare function useToast(): {
|
|
|
29
29
|
} | AsTag | {
|
|
30
30
|
[x: string]: any;
|
|
31
31
|
setup?: ((this: void, props: LooseRequired<any>, ctx: {
|
|
32
|
-
attrs:
|
|
33
|
-
[x: string]: unknown;
|
|
34
|
-
};
|
|
32
|
+
attrs: Attrs;
|
|
35
33
|
slots: Readonly<{
|
|
36
34
|
[name: string]: Slot<any> | undefined;
|
|
37
35
|
}>;
|
|
@@ -154,9 +152,7 @@ declare function useToast(): {
|
|
|
154
152
|
} | {
|
|
155
153
|
[x: string]: any;
|
|
156
154
|
setup?: ((this: void, props: LooseRequired<any>, ctx: {
|
|
157
|
-
attrs:
|
|
158
|
-
[x: string]: unknown;
|
|
159
|
-
};
|
|
155
|
+
attrs: Attrs;
|
|
160
156
|
slots: Readonly<{
|
|
161
157
|
[name: string]: Slot<any> | undefined;
|
|
162
158
|
}>;
|
|
@@ -1,9 +1,4 @@
|
|
|
1
1
|
import { TooltipArrowProps } from 'reka-ui';
|
|
2
2
|
import { DefineComponent, ComponentOptionsMixin, PublicProps, ComponentProvideOptions } from 'vue';
|
|
3
|
-
|
|
4
|
-
side?: 'top' | 'right' | 'bottom' | 'left';
|
|
5
|
-
}
|
|
6
|
-
declare const _default: DefineComponent<ITooltipArrowProps, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<ITooltipArrowProps> & Readonly<{}>, {
|
|
7
|
-
side: "top" | "right" | "bottom" | "left";
|
|
8
|
-
}, {}, {}, {}, string, ComponentProvideOptions, false, {}, any>;
|
|
3
|
+
declare const _default: DefineComponent<TooltipArrowProps, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<TooltipArrowProps> & Readonly<{}>, {}, {}, {}, {}, string, ComponentProvideOptions, false, {}, any>;
|
|
9
4
|
export default _default;
|