@profitliga/ui 1.0.14 → 1.1.0
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/DateRangePickerMobile/DateRangePickerMobile.stories.d.ts +6 -0
- package/dist/components/DateRangePickerMobile/DateRangePickerMobile.vue.d.ts +37 -0
- package/dist/components/DateRangePickerMobile/DateRangePickerMobileBottomSheet.vue.d.ts +13 -0
- package/dist/components/DateRangePickerMobile/index.d.ts +1 -0
- package/package.json +1 -1
|
@@ -0,0 +1,6 @@
|
|
|
1
|
+
import { Meta, StoryObj } from '@storybook/vue3-vite';
|
|
2
|
+
import { default as DateRangePickerMobile } from './DateRangePickerMobile.vue';
|
|
3
|
+
declare const meta: Meta<typeof DateRangePickerMobile>;
|
|
4
|
+
export default meta;
|
|
5
|
+
type Story = StoryObj<typeof DateRangePickerMobile>;
|
|
6
|
+
export declare const Default: Story;
|
|
@@ -0,0 +1,37 @@
|
|
|
1
|
+
import { DateRange } from 'reka-ui';
|
|
2
|
+
import { DefineComponent, ComponentOptionsMixin, PublicProps, ComponentProvideOptions, CreateComponentPublicInstanceWithMixins, GlobalComponents, GlobalDirectives } from 'vue';
|
|
3
|
+
type __VLS_Props = {
|
|
4
|
+
placeholder?: string;
|
|
5
|
+
};
|
|
6
|
+
type __VLS_PublicProps = {
|
|
7
|
+
modelValue: DateRange;
|
|
8
|
+
} & __VLS_Props;
|
|
9
|
+
declare const _default: DefineComponent<__VLS_PublicProps, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
|
|
10
|
+
"update:modelValue": (value: DateRange) => any;
|
|
11
|
+
}, string, PublicProps, Readonly<__VLS_PublicProps> & Readonly<{
|
|
12
|
+
"onUpdate:modelValue"?: ((value: DateRange) => any) | undefined;
|
|
13
|
+
}>, {}, {}, {}, {}, string, ComponentProvideOptions, false, {
|
|
14
|
+
dateRangePickerMobileBottomSheet: CreateComponentPublicInstanceWithMixins<Readonly<{
|
|
15
|
+
modelValue: DateRange;
|
|
16
|
+
}> & Readonly<{
|
|
17
|
+
"onUpdate:modelValue"?: ((value: DateRange) => any) | undefined;
|
|
18
|
+
}>, {
|
|
19
|
+
open: () => void;
|
|
20
|
+
}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
|
|
21
|
+
"update:modelValue": (value: DateRange) => any;
|
|
22
|
+
}, PublicProps, {}, false, {}, {}, GlobalComponents, GlobalDirectives, string, {}, any, ComponentProvideOptions, {
|
|
23
|
+
P: {};
|
|
24
|
+
B: {};
|
|
25
|
+
D: {};
|
|
26
|
+
C: {};
|
|
27
|
+
M: {};
|
|
28
|
+
Defaults: {};
|
|
29
|
+
}, Readonly<{
|
|
30
|
+
modelValue: DateRange;
|
|
31
|
+
}> & Readonly<{
|
|
32
|
+
"onUpdate:modelValue"?: ((value: DateRange) => any) | undefined;
|
|
33
|
+
}>, {
|
|
34
|
+
open: () => void;
|
|
35
|
+
}, {}, {}, {}, {}> | null;
|
|
36
|
+
}, HTMLDivElement>;
|
|
37
|
+
export default _default;
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
import { DateRange } from 'reka-ui';
|
|
2
|
+
import { DefineComponent, ComponentOptionsMixin, PublicProps, ComponentProvideOptions } from 'vue';
|
|
3
|
+
type __VLS_PublicProps = {
|
|
4
|
+
modelValue: DateRange;
|
|
5
|
+
};
|
|
6
|
+
declare const _default: DefineComponent<__VLS_PublicProps, {
|
|
7
|
+
open: () => void;
|
|
8
|
+
}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
|
|
9
|
+
"update:modelValue": (value: DateRange) => any;
|
|
10
|
+
}, string, PublicProps, Readonly<__VLS_PublicProps> & Readonly<{
|
|
11
|
+
"onUpdate:modelValue"?: ((value: DateRange) => any) | undefined;
|
|
12
|
+
}>, {}, {}, {}, {}, string, ComponentProvideOptions, false, {}, any>;
|
|
13
|
+
export default _default;
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export {};
|