@profitliga/ui 1.2.34 → 1.2.36
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,7 +1,7 @@
|
|
|
1
1
|
import { Component } from 'vue';
|
|
2
2
|
import { TSize, TVariants } from '../../types/global.types';
|
|
3
3
|
export type ButtonSize = TSize;
|
|
4
|
-
export type ButtonVariant =
|
|
4
|
+
export type ButtonVariant = Exclude<TVariants, 'info'> | 'secondary-blue' | 'link';
|
|
5
5
|
export type ButtonStyle = 'contrast' | 'outlined' | 'text' | 'text-filled';
|
|
6
6
|
export type ButtonIconPosition = 'start' | 'end';
|
|
7
7
|
export interface IButtonProps {
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { DateRangePickerRootProps, DateValue } from 'reka-ui';
|
|
1
|
+
import { DateRange, DateRangePickerRootProps, DateValue } from 'reka-ui';
|
|
2
2
|
import { IDateRangePickerContentProps } from './DateRangePickerContent.vue';
|
|
3
3
|
import { IDatePickerFieldProps } from './DateRangePickerField.vue';
|
|
4
4
|
import { DefineComponent, ComponentOptionsMixin, PublicProps, ComponentProvideOptions } from 'vue';
|
|
@@ -8,10 +8,7 @@ interface IDateRangePickerRootProps extends DateRangePickerRootProps {
|
|
|
8
8
|
}
|
|
9
9
|
type __VLS_Props = IDateRangePickerRootProps;
|
|
10
10
|
type __VLS_PublicProps = {
|
|
11
|
-
modelValue?:
|
|
12
|
-
start: DateValue | undefined;
|
|
13
|
-
end: DateValue | undefined;
|
|
14
|
-
};
|
|
11
|
+
modelValue?: DateRange;
|
|
15
12
|
} & __VLS_Props;
|
|
16
13
|
declare function __VLS_template(): {
|
|
17
14
|
attrs: Partial<{}>;
|
|
@@ -1,4 +1,5 @@
|
|
|
1
|
-
import { DropdownMenuRootProps } from 'reka-ui';
|
|
1
|
+
import { DropdownMenuRootProps, DropdownMenuTriggerProps } from 'reka-ui';
|
|
2
|
+
import { IDropdownMenuContentProps } from './DropdownMenuContent.vue';
|
|
2
3
|
import { DefineComponent, ComponentOptionsMixin, PublicProps, ComponentProvideOptions } from 'vue';
|
|
3
4
|
export interface IDropdownMenuProps {
|
|
4
5
|
defaultOpen?: DropdownMenuRootProps['defaultOpen'];
|
|
@@ -12,6 +13,8 @@ export interface IDropdownMenuProps {
|
|
|
12
13
|
contentAvoidCollisions?: boolean;
|
|
13
14
|
contentCollisionPadding?: number;
|
|
14
15
|
zIndexContent?: number;
|
|
16
|
+
triggerProps?: DropdownMenuTriggerProps;
|
|
17
|
+
contentProps?: IDropdownMenuContentProps;
|
|
15
18
|
}
|
|
16
19
|
type __VLS_Props = IDropdownMenuProps;
|
|
17
20
|
type __VLS_PublicProps = {
|