@wikicasa-dev/components 2.3.1-alpha.1 → 2.3.1-alpha.11
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/Swiper/autoplay.js +1 -1
- package/dist/Swiper/controller.js +1 -1
- package/dist/Swiper/keyboard.js +1 -1
- package/dist/Swiper/thumbs.js +1 -1
- package/dist/UIKit/Accordion/AccordionContentPrimitive.d.ts +19 -0
- package/dist/UIKit/Accordion/AccordionContentPrimitive.js +4 -0
- package/dist/UIKit/Accordion/AccordionHeaderPrimitive.d.ts +11 -0
- package/dist/UIKit/Accordion/AccordionHeaderPrimitive.js +4 -0
- package/dist/UIKit/Accordion/AccordionItemPrimitive.d.ts +13 -0
- package/dist/UIKit/Accordion/AccordionItemPrimitive.js +4 -0
- package/dist/UIKit/Accordion/AccordionTriggerPrimitive.d.ts +13 -0
- package/dist/UIKit/Accordion/AccordionTriggerPrimitive.js +4 -0
- package/dist/UIKit/Accordion/BaseAccordion.d.ts +15 -18
- package/dist/UIKit/Accordion/BaseAccordionItem.d.ts +12 -21
- package/dist/UIKit/Autocomplete/ClearableAutocomplete.d.ts +1 -1
- package/dist/UIKit/BaseAutocomplete.d.ts +1 -1
- package/dist/UIKit/BaseButton.d.ts +2 -2
- package/dist/UIKit/BaseDropDown.d.ts +1 -1
- package/dist/UIKit/BaseSnackbar.d.ts +1 -1
- package/dist/UIKit/BaseToggle.d.ts +3 -2
- package/dist/UIKit/Checkbox/CheckboxBtn.d.ts +1 -1
- package/dist/UIKit/Checkbox/v2/CheckboxGroupItemPrimitive.d.ts +26 -0
- package/dist/UIKit/Checkbox/v2/CheckboxGroupItemPrimitive.js +4 -0
- package/dist/UIKit/Checkbox/v2/CheckboxGroupPrimitive.d.ts +21 -0
- package/dist/UIKit/Checkbox/v2/CheckboxGroupPrimitive.js +4 -0
- package/dist/UIKit/Radio/v2/RadioGroupItemPrimitive.d.ts +21 -0
- package/dist/UIKit/Radio/v2/RadioGroupItemPrimitive.js +4 -0
- package/dist/assets/BaseAccordionItem.css +1 -1
- package/dist/assets/BaseSnackbar.css +1 -1
- package/dist/assets/tailwind.css +1 -1
- package/dist/index.d.ts +7 -3
- package/dist/index.js +96 -88
- package/dist/packages/components/lib/UIKit/Accordion/AccordionContentPrimitive.vue.js +22 -0
- package/dist/packages/components/lib/UIKit/Accordion/AccordionHeaderPrimitive.vue.js +21 -0
- package/dist/packages/components/lib/UIKit/Accordion/AccordionItemPrimitive.vue.js +24 -0
- package/dist/packages/components/lib/UIKit/Accordion/AccordionTriggerPrimitive.vue.js +22 -0
- package/dist/packages/components/lib/UIKit/Accordion/BaseAccordion.vue.js +22 -14
- package/dist/packages/components/lib/UIKit/Accordion/BaseAccordionItem.vue.js +36 -36
- package/dist/packages/components/lib/UIKit/Autocomplete/ClearableAutocomplete.vue.js +17 -17
- package/dist/packages/components/lib/UIKit/BaseSnackbar.vue.js +9 -9
- package/dist/packages/components/lib/UIKit/BaseToggle.vue.js +16 -15
- package/dist/packages/components/lib/UIKit/Checkbox/v2/CheckboxGroupItemPrimitive.vue.js +33 -0
- package/dist/packages/components/lib/UIKit/Checkbox/v2/CheckboxGroupPrimitive.vue.js +35 -0
- package/dist/packages/components/lib/UIKit/Radio/v2/RadioGroupItemPrimitive.vue.js +31 -0
- package/dist/types/index.d.ts +9 -1
- package/package.json +1 -1
- package/dist/UIKit/Accordion/BaseAccordionBtn.d.ts +0 -34
- package/dist/UIKit/Accordion/BaseAccordionBtn.js +0 -4
- package/dist/UIKit/Accordion/BaseAccordionContent.d.ts +0 -30
- package/dist/UIKit/Accordion/BaseAccordionContent.js +0 -4
- package/dist/packages/components/lib/UIKit/Accordion/BaseAccordionBtn.vue.js +0 -59
- package/dist/packages/components/lib/UIKit/Accordion/BaseAccordionContent.vue.js +0 -34
- /package/dist/assets/{swiper-controller.css → swiper-thumbs.css} +0 -0
package/dist/Swiper/autoplay.js
CHANGED
package/dist/Swiper/keyboard.js
CHANGED
package/dist/Swiper/thumbs.js
CHANGED
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
import { AccordionContentProps } from 'reka-ui';
|
|
2
|
+
export type AccordionContentPrimitiveProps = AccordionContentProps;
|
|
3
|
+
declare function __VLS_template(): {
|
|
4
|
+
attrs: Partial<{}>;
|
|
5
|
+
slots: {
|
|
6
|
+
default?(_: {}): any;
|
|
7
|
+
};
|
|
8
|
+
refs: {};
|
|
9
|
+
rootEl: any;
|
|
10
|
+
};
|
|
11
|
+
type __VLS_TemplateResult = ReturnType<typeof __VLS_template>;
|
|
12
|
+
declare const __VLS_component: import('vue').DefineComponent<AccordionContentProps, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<AccordionContentProps> & Readonly<{}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, any>;
|
|
13
|
+
declare const _default: __VLS_WithTemplateSlots<typeof __VLS_component, __VLS_TemplateResult["slots"]>;
|
|
14
|
+
export default _default;
|
|
15
|
+
type __VLS_WithTemplateSlots<T, S> = T & {
|
|
16
|
+
new (): {
|
|
17
|
+
$slots: S;
|
|
18
|
+
};
|
|
19
|
+
};
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
import { AccordionHeaderProps } from 'reka-ui';
|
|
2
|
+
export type AccordionHeaderPrimitiveProps = AccordionHeaderProps;
|
|
3
|
+
declare const _default: __VLS_WithTemplateSlots<import('vue').DefineComponent<AccordionHeaderProps, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<AccordionHeaderProps> & Readonly<{}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, any>, {
|
|
4
|
+
default?(_: {}): any;
|
|
5
|
+
}>;
|
|
6
|
+
export default _default;
|
|
7
|
+
type __VLS_WithTemplateSlots<T, S> = T & {
|
|
8
|
+
new (): {
|
|
9
|
+
$slots: S;
|
|
10
|
+
};
|
|
11
|
+
};
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
import { AccordionItemProps } from 'reka-ui';
|
|
2
|
+
export type AccordionItemPrimitiveProps = AccordionItemProps;
|
|
3
|
+
declare const _default: __VLS_WithTemplateSlots<import('vue').DefineComponent<AccordionItemProps, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<AccordionItemProps> & Readonly<{}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, any>, {
|
|
4
|
+
default?(_: {
|
|
5
|
+
open: boolean;
|
|
6
|
+
}): any;
|
|
7
|
+
}>;
|
|
8
|
+
export default _default;
|
|
9
|
+
type __VLS_WithTemplateSlots<T, S> = T & {
|
|
10
|
+
new (): {
|
|
11
|
+
$slots: S;
|
|
12
|
+
};
|
|
13
|
+
};
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
import { AccordionTriggerProps } from 'reka-ui';
|
|
2
|
+
export type AccordionTriggerPrimitiveProps = AccordionTriggerProps & {
|
|
3
|
+
dataCy?: string;
|
|
4
|
+
};
|
|
5
|
+
declare const _default: __VLS_WithTemplateSlots<import('vue').DefineComponent<AccordionTriggerPrimitiveProps, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<AccordionTriggerPrimitiveProps> & Readonly<{}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, any>, {
|
|
6
|
+
default?(_: {}): any;
|
|
7
|
+
}>;
|
|
8
|
+
export default _default;
|
|
9
|
+
type __VLS_WithTemplateSlots<T, S> = T & {
|
|
10
|
+
new (): {
|
|
11
|
+
$slots: S;
|
|
12
|
+
};
|
|
13
|
+
};
|
|
@@ -1,30 +1,27 @@
|
|
|
1
|
-
import { AccordionRootProps } from 'reka-ui';
|
|
2
1
|
import { Optional } from '@wikicasa-dev/types';
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
2
|
+
import { AccordionRootProps } from 'reka-ui';
|
|
3
|
+
export interface BaseAccordionProps<T extends AccordionRootProps["type"]> extends AccordionRootProps {
|
|
4
|
+
/**
|
|
5
|
+
* When type is "single", allows closing content when clicking trigger for an open item. When type is "multiple", this prop has no effect.
|
|
6
|
+
*/
|
|
7
|
+
collapsible?: AccordionRootProps["collapsible"];
|
|
8
|
+
/**
|
|
9
|
+
* Determines whether a "single" or "multiple" items can be selected at a time.
|
|
10
|
+
*/
|
|
11
|
+
type: T;
|
|
12
|
+
}
|
|
9
13
|
declare const _default: <T extends AccordionRootProps["type"]>(__VLS_props: NonNullable<Awaited<typeof __VLS_setup>>["props"], __VLS_ctx?: __VLS_PrettifyLocal<Pick<NonNullable<Awaited<typeof __VLS_setup>>, "attrs" | "emit" | "slots">>, __VLS_expose?: NonNullable<Awaited<typeof __VLS_setup>>["expose"], __VLS_setup?: Promise<{
|
|
10
14
|
props: __VLS_PrettifyLocal<Pick<Partial<{}> & Omit<{
|
|
11
15
|
readonly "onUpdate:modelValue"?: ((value: Optional<T extends "single" ? string : string[]>) => any) | undefined;
|
|
12
16
|
} & import('vue').VNodeProps & import('vue').AllowedComponentProps & import('vue').ComponentCustomProps, never>, "onUpdate:modelValue"> & ({
|
|
13
17
|
modelValue?: Optional<T extends "single" ? string : string[]>;
|
|
14
|
-
} & {
|
|
15
|
-
/**
|
|
16
|
-
* When type is "single", allows closing content when clicking trigger for an open item. When type is "multiple", this prop has no effect.
|
|
17
|
-
*/
|
|
18
|
-
collapsible?: AccordionRootProps["collapsible"];
|
|
19
|
-
/**
|
|
20
|
-
* Determines whether a "single" or "multiple" items can be selected at a time.
|
|
21
|
-
*/
|
|
22
|
-
type: T;
|
|
23
|
-
}) & Partial<{}>> & import('vue').PublicProps;
|
|
18
|
+
} & BaseAccordionProps<T>) & Partial<{}>> & import('vue').PublicProps;
|
|
24
19
|
expose(exposed: import('vue').ShallowUnwrapRef<{}>): void;
|
|
25
20
|
attrs: any;
|
|
26
21
|
slots: {
|
|
27
|
-
default?(_: {
|
|
22
|
+
default?(_: {
|
|
23
|
+
modelValue: import('reka-ui').AcceptableValue | import('reka-ui').AcceptableValue[] | undefined;
|
|
24
|
+
}): any;
|
|
28
25
|
};
|
|
29
26
|
emit: (evt: "update:modelValue", value: Optional<T extends "single" ? string : string[]>) => void;
|
|
30
27
|
}>) => import('vue').VNode & {
|
|
@@ -1,36 +1,27 @@
|
|
|
1
|
-
import {
|
|
1
|
+
import { AccordionContentPrimitiveProps } from './AccordionContentPrimitive';
|
|
2
|
+
import { AccordionItemPrimitiveProps } from './AccordionItemPrimitive';
|
|
2
3
|
import { ClassTypeProp } from '../types';
|
|
3
|
-
|
|
4
|
+
export interface BaseAccordionItemProps {
|
|
4
5
|
title?: string;
|
|
5
6
|
arrowColor?: `#${string}`;
|
|
6
7
|
arrowWidth?: number;
|
|
7
8
|
dataCy?: string;
|
|
8
|
-
value:
|
|
9
|
+
value: AccordionItemPrimitiveProps["value"];
|
|
9
10
|
triggerClasses?: ClassTypeProp;
|
|
10
11
|
headerClasses?: ClassTypeProp;
|
|
11
12
|
contentClasses?: ClassTypeProp;
|
|
12
13
|
arrowClasses?: ClassTypeProp;
|
|
13
14
|
/**
|
|
14
15
|
* The element or component this component should render as. Can be overwritten by asChild.
|
|
15
|
-
* @defaultValue — “
|
|
16
|
+
* @defaultValue — “h3”
|
|
16
17
|
*/
|
|
17
|
-
headerTag?:
|
|
18
|
-
}
|
|
19
|
-
declare
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
active: boolean;
|
|
25
|
-
}): any;
|
|
26
|
-
default?(_: {}): any;
|
|
27
|
-
};
|
|
28
|
-
refs: {};
|
|
29
|
-
rootEl: any;
|
|
30
|
-
};
|
|
31
|
-
type __VLS_TemplateResult = ReturnType<typeof __VLS_template>;
|
|
32
|
-
declare const __VLS_component: import('vue').DefineComponent<__VLS_Props, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<__VLS_Props> & Readonly<{}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, any>;
|
|
33
|
-
declare const _default: __VLS_WithTemplateSlots<typeof __VLS_component, __VLS_TemplateResult["slots"]>;
|
|
18
|
+
headerTag?: AccordionContentPrimitiveProps["as"];
|
|
19
|
+
}
|
|
20
|
+
declare const _default: __VLS_WithTemplateSlots<import('vue').DefineComponent<BaseAccordionItemProps, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<BaseAccordionItemProps> & Readonly<{}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, any>, {
|
|
21
|
+
'header-content'?(_: {}): any;
|
|
22
|
+
trigger?(_: {}): any;
|
|
23
|
+
default?(_: {}): any;
|
|
24
|
+
}>;
|
|
34
25
|
export default _default;
|
|
35
26
|
type __VLS_WithTemplateSlots<T, S> = T & {
|
|
36
27
|
new (): {
|
|
@@ -31,7 +31,7 @@ declare const _default: <TID extends string | number | undefined, TPayload>(__VL
|
|
|
31
31
|
readonly "onUpdate:open"?: ((value: boolean) => any) | undefined;
|
|
32
32
|
readonly "onUpdate:inputValue"?: ((value: string) => any) | undefined;
|
|
33
33
|
readonly onInputClick?: ((args_0: MouseEvent) => any) | undefined;
|
|
34
|
-
} & import('vue').VNodeProps & import('vue').AllowedComponentProps & import('vue').ComponentCustomProps, never>, "onUpdate:modelValue" | "
|
|
34
|
+
} & import('vue').VNodeProps & import('vue').AllowedComponentProps & import('vue').ComponentCustomProps, never>, "onUpdate:modelValue" | "onInput" | "onKeydown" | "onClick" | "onUpdate:open" | "onUpdate:inputValue" | "onInputClick"> & ({
|
|
35
35
|
open?: boolean;
|
|
36
36
|
modelValue?: Nullable<AccessibleSelectOptions<TPayload, TID>>;
|
|
37
37
|
inputValue?: string;
|
|
@@ -10,7 +10,7 @@ declare const _default: <TID extends string | number | undefined, TPayload>(__VL
|
|
|
10
10
|
readonly "onUpdate:dropdownState"?: ((args_0: boolean) => any) | undefined;
|
|
11
11
|
readonly onKeydownEnterPressed?: (() => any) | undefined;
|
|
12
12
|
readonly onChangedValue?: ((args_0: string) => any) | undefined;
|
|
13
|
-
} & import('vue').VNodeProps & import('vue').AllowedComponentProps & import('vue').ComponentCustomProps, never>, "onUpdate:modelValue" | "
|
|
13
|
+
} & import('vue').VNodeProps & import('vue').AllowedComponentProps & import('vue').ComponentCustomProps, never>, "onUpdate:modelValue" | "onKeydown" | "onClick" | "onUpdate:dropdownState" | "onKeydownEnterPressed" | "onChangedValue"> & ({
|
|
14
14
|
modelValue?: AccessibleSelectOptions<TPayload, TID> | undefined;
|
|
15
15
|
} & {
|
|
16
16
|
isValid?: Nullable<boolean>;
|
|
@@ -15,7 +15,7 @@ declare const _default: __VLS_WithTemplateSlots<import('vue').DefineComponent<{
|
|
|
15
15
|
*/
|
|
16
16
|
title?: string;
|
|
17
17
|
dataCy?: string;
|
|
18
|
-
type?: "button" | "
|
|
18
|
+
type?: "button" | "reset" | "submit" | undefined;
|
|
19
19
|
}, {
|
|
20
20
|
getRootElement: () => HTMLButtonElement | null;
|
|
21
21
|
}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
|
|
@@ -37,7 +37,7 @@ declare const _default: __VLS_WithTemplateSlots<import('vue').DefineComponent<{
|
|
|
37
37
|
*/
|
|
38
38
|
title?: string;
|
|
39
39
|
dataCy?: string;
|
|
40
|
-
type?: "button" | "
|
|
40
|
+
type?: "button" | "reset" | "submit" | undefined;
|
|
41
41
|
}> & Readonly<{
|
|
42
42
|
onClick?: ((e: MouseEvent) => any) | undefined;
|
|
43
43
|
onMouseover?: ((e: MouseEvent) => any) | undefined;
|
|
@@ -68,8 +68,8 @@ declare const __VLS_component: import('vue').DefineComponent<__VLS_PublicProps,
|
|
|
68
68
|
"onUpdate:resetKeyboardController"?: ((value: boolean) => any) | undefined;
|
|
69
69
|
"onUpdate:open"?: ((value: boolean) => any) | undefined;
|
|
70
70
|
}>, {
|
|
71
|
-
arrowWidth: number;
|
|
72
71
|
dataCy: string;
|
|
72
|
+
arrowWidth: number;
|
|
73
73
|
labelClasses: string | Record<string, boolean> | import('./types').ClassType[] | import('./types').ClassType[] | null;
|
|
74
74
|
closeKeys: false | string[];
|
|
75
75
|
dropdownClasses: string | Record<string, boolean> | import('./types').ClassType[] | import('./types').ClassType[] | null;
|
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
import { Optional } from '@wikicasa-dev/types';
|
|
2
2
|
type __VLS_Props = {
|
|
3
3
|
label?: string;
|
|
4
|
+
dataCy?: string;
|
|
4
5
|
};
|
|
5
6
|
type __VLS_PublicProps = {
|
|
6
7
|
modelValue?: Optional<boolean>;
|
|
@@ -12,14 +13,14 @@ declare function __VLS_template(): {
|
|
|
12
13
|
rightLabel?(_: {}): any;
|
|
13
14
|
};
|
|
14
15
|
refs: {};
|
|
15
|
-
rootEl:
|
|
16
|
+
rootEl: HTMLDivElement;
|
|
16
17
|
};
|
|
17
18
|
type __VLS_TemplateResult = ReturnType<typeof __VLS_template>;
|
|
18
19
|
declare const __VLS_component: import('vue').DefineComponent<__VLS_PublicProps, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
|
|
19
20
|
"update:modelValue": (value: Optional<boolean>) => any;
|
|
20
21
|
}, string, import('vue').PublicProps, Readonly<__VLS_PublicProps> & Readonly<{
|
|
21
22
|
"onUpdate:modelValue"?: ((value: Optional<boolean>) => any) | undefined;
|
|
22
|
-
}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {},
|
|
23
|
+
}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, HTMLDivElement>;
|
|
23
24
|
declare const _default: __VLS_WithTemplateSlots<typeof __VLS_component, __VLS_TemplateResult["slots"]>;
|
|
24
25
|
export default _default;
|
|
25
26
|
type __VLS_WithTemplateSlots<T, S> = T & {
|
|
@@ -13,7 +13,7 @@ declare const _default: <TID extends string | number, TLabel extends string | nu
|
|
|
13
13
|
label: TLabel;
|
|
14
14
|
checked: boolean;
|
|
15
15
|
}) => any) | undefined;
|
|
16
|
-
} & import('vue').VNodeProps & import('vue').AllowedComponentProps & import('vue').ComponentCustomProps, never>, "onUpdate:modelValue" | "
|
|
16
|
+
} & import('vue').VNodeProps & import('vue').AllowedComponentProps & import('vue').ComponentCustomProps, never>, "onUpdate:modelValue" | "onChange" | "onClick"> & ({
|
|
17
17
|
modelValue?: boolean;
|
|
18
18
|
} & {
|
|
19
19
|
id?: TID;
|
|
@@ -0,0 +1,26 @@
|
|
|
1
|
+
import { CheckboxRootProps } from 'reka-ui';
|
|
2
|
+
export type CheckboxGroupItemPrimitiveValueType<T extends undefined | CheckboxRootProps["value"] = undefined> = T;
|
|
3
|
+
export interface CheckboxGroupItemPrimitiveProps<T extends undefined | CheckboxRootProps["value"] = undefined> extends Omit<CheckboxRootProps, "value"> {
|
|
4
|
+
dataCy?: string;
|
|
5
|
+
value: CheckboxGroupItemPrimitiveValueType<T>;
|
|
6
|
+
}
|
|
7
|
+
declare const _default: <T extends CheckboxRootProps["value"]>(__VLS_props: NonNullable<Awaited<typeof __VLS_setup>>["props"], __VLS_ctx?: __VLS_PrettifyLocal<Pick<NonNullable<Awaited<typeof __VLS_setup>>, "attrs" | "emit" | "slots">>, __VLS_expose?: NonNullable<Awaited<typeof __VLS_setup>>["expose"], __VLS_setup?: Promise<{
|
|
8
|
+
props: __VLS_PrettifyLocal<Pick<Partial<{}> & Omit<{
|
|
9
|
+
readonly "onUpdate:modelValue"?: ((value: boolean | "indeterminate") => any) | undefined;
|
|
10
|
+
} & import('vue').VNodeProps & import('vue').AllowedComponentProps & import('vue').ComponentCustomProps, never>, "onUpdate:modelValue"> & CheckboxGroupItemPrimitiveProps<T> & Partial<{}>> & import('vue').PublicProps;
|
|
11
|
+
expose(exposed: import('vue').ShallowUnwrapRef<{}>): void;
|
|
12
|
+
attrs: any;
|
|
13
|
+
slots: {
|
|
14
|
+
default?(_: {
|
|
15
|
+
modelValue: import('reka-ui').CheckboxCheckedState;
|
|
16
|
+
state: import('reka-ui').CheckboxCheckedState;
|
|
17
|
+
}): any;
|
|
18
|
+
};
|
|
19
|
+
emit: (evt: "update:modelValue", value: boolean | "indeterminate") => void;
|
|
20
|
+
}>) => import('vue').VNode & {
|
|
21
|
+
__ctx?: Awaited<typeof __VLS_setup>;
|
|
22
|
+
};
|
|
23
|
+
export default _default;
|
|
24
|
+
type __VLS_PrettifyLocal<T> = {
|
|
25
|
+
[K in keyof T]: T[K];
|
|
26
|
+
} & {};
|
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
import { CheckboxGroupRootProps, AcceptableValue } from 'reka-ui';
|
|
2
|
+
export interface CheckboxGroupPrimitiveProps<T extends AcceptableValue> extends CheckboxGroupRootProps<T> {
|
|
3
|
+
dataCy?: string;
|
|
4
|
+
}
|
|
5
|
+
declare const _default: <T extends AcceptableValue>(__VLS_props: NonNullable<Awaited<typeof __VLS_setup>>["props"], __VLS_ctx?: __VLS_PrettifyLocal<Pick<NonNullable<Awaited<typeof __VLS_setup>>, "attrs" | "emit" | "slots">>, __VLS_expose?: NonNullable<Awaited<typeof __VLS_setup>>["expose"], __VLS_setup?: Promise<{
|
|
6
|
+
props: __VLS_PrettifyLocal<Pick<Partial<{}> & Omit<{
|
|
7
|
+
readonly "onUpdate:modelValue"?: ((value: T[]) => any) | undefined;
|
|
8
|
+
} & import('vue').VNodeProps & import('vue').AllowedComponentProps & import('vue').ComponentCustomProps, never>, "onUpdate:modelValue"> & CheckboxGroupPrimitiveProps<T> & Partial<{}>> & import('vue').PublicProps;
|
|
9
|
+
expose(exposed: import('vue').ShallowUnwrapRef<{}>): void;
|
|
10
|
+
attrs: any;
|
|
11
|
+
slots: {
|
|
12
|
+
default?(_: {}): any;
|
|
13
|
+
};
|
|
14
|
+
emit: (evt: "update:modelValue", value: T[]) => void;
|
|
15
|
+
}>) => import('vue').VNode & {
|
|
16
|
+
__ctx?: Awaited<typeof __VLS_setup>;
|
|
17
|
+
};
|
|
18
|
+
export default _default;
|
|
19
|
+
type __VLS_PrettifyLocal<T> = {
|
|
20
|
+
[K in keyof T]: T[K];
|
|
21
|
+
} & {};
|
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
import { RadioGroupItemProps, RadioGroupItemSelectEvent } from 'reka-ui';
|
|
2
|
+
export interface RadioGroupItemPrimitiveProps extends RadioGroupItemProps {
|
|
3
|
+
dataCy?: string;
|
|
4
|
+
}
|
|
5
|
+
declare const _default: __VLS_WithTemplateSlots<import('vue').DefineComponent<RadioGroupItemPrimitiveProps, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
|
|
6
|
+
select: (args_0: RadioGroupItemSelectEvent) => any;
|
|
7
|
+
}, string, import('vue').PublicProps, Readonly<RadioGroupItemPrimitiveProps> & Readonly<{
|
|
8
|
+
onSelect?: ((args_0: RadioGroupItemSelectEvent) => any) | undefined;
|
|
9
|
+
}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, any>, {
|
|
10
|
+
default?(_: {
|
|
11
|
+
checked: boolean;
|
|
12
|
+
required: boolean;
|
|
13
|
+
disabled: boolean;
|
|
14
|
+
}): any;
|
|
15
|
+
}>;
|
|
16
|
+
export default _default;
|
|
17
|
+
type __VLS_WithTemplateSlots<T, S> = T & {
|
|
18
|
+
new (): {
|
|
19
|
+
$slots: S;
|
|
20
|
+
};
|
|
21
|
+
};
|
|
@@ -1 +1 @@
|
|
|
1
|
-
.uikit-base-accordion-item-content{overflow:hidden;will-change:animation,height}.uikit-base-accordion-item-content[data-state=open]{animation:slideDown .2s ease-out}.uikit-base-accordion-item-content[data-state=closed]{animation:slideUp .2s ease-out}@keyframes slideDown{0%{height:0}to{height:var(--reka-accordion-content-height)}}@keyframes slideUp{0%{height:var(--reka-accordion-content-height)}to{height:0}}
|
|
1
|
+
.uikit-base-accordion-trigger[data-state=open]>.uikit-base-accordion-item-arrow{transform:rotate(180deg)}.uikit-base-accordion-item-content{overflow:hidden;will-change:animation,height}.uikit-base-accordion-item-content[data-state=open]{animation:slideDown .2s ease-out}.uikit-base-accordion-item-content[data-state=closed]{animation:slideUp .2s ease-out}@keyframes slideDown{0%{height:0}to{height:var(--reka-accordion-content-height)}}@keyframes slideUp{0%{height:var(--reka-accordion-content-height)}to{height:0}}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
.uikit-alert-viewport{--uikit-alert-viewport-padding: 0px;--uikit-alert-viewport-position: fixed;--uikit-alert-viewport-top: auto;--uikit-alert-viewport-right: auto;--uikit-alert-viewport-bottom: 0px;--uikit-alert-viewport-left: 0px;--uikit-alert-viewport-display: flex;--uikit-alert-viewport-flex-direction: column;--uikit-alert-viewport-align-items: flex-
|
|
1
|
+
.uikit-alert-viewport{--uikit-alert-viewport-padding: 0px;--uikit-alert-viewport-position: fixed;--uikit-alert-viewport-top: auto;--uikit-alert-viewport-right: auto;--uikit-alert-viewport-bottom: 0px;--uikit-alert-viewport-left: 0px;--uikit-alert-viewport-display: flex;--uikit-alert-viewport-flex-direction: column;--uikit-alert-viewport-align-items: flex-start;--uikit-alert-viewport-justify-content: flex-start;padding:var(--uikit-alert-viewport-padding);position:var(--uikit-alert-viewport-position);inset:var(--uikit-alert-viewport-top) var(--uikit-alert-viewport-right) var(--uikit-alert-viewport-bottom) var(--uikit-alert-viewport-left);display:var(--uikit-alert-viewport-display);flex-direction:var(--uikit-alert-viewport-flex-direction);align-items:var(--uikit-alert-viewport-align-items);justify-content:var(--uikit-alert-viewport-justify-content)}.uikit-alert{--uikit-alert-bg-color: #e9effe;--uikit-alert-text-color: #2b5dff;--uikit-alert-progress-indicator-bg-color: #2b5dff}.uikit-alert .uikit-alert-progress-indicator{background-color:var(--uikit-alert-progress-indicator-bg-color)}.uikit-alert{background-color:var(--uikit-alert-bg-color);color:var(--uikit-alert-text-color)}.uikit-alert.uikit-alert-w-danger{--uikit-alert-bg-color: #fff4f4;--uikit-alert-text-color: #f20003;--uikit-alert-progress-indicator-bg-color: #f20003}.uikit-alert.uikit-alert-w-darkblue{--uikit-alert-bg-color: #2a3761;--uikit-alert-text-color: #fff}.uikit-toast-root{will-change:animation,transform,opacity;--uikit-toast-root-open-animation: openAnimationRight .1s ease-out, fadeIn .1s ease-out;--uikit-toast-root-swipe-out-animation: slideRight .1s ease-out, fadeOut .1s ease-out}.uikit-toast-root[data-swipe-direction=left]{--uikit-toast-root-open-animation: openAnimationLeft .1s ease-out, fadeIn .1s ease-out;--uikit-toast-root-swipe-out-animation: slideLeft .1s ease-out, fadeOut .1s ease-out}.uikit-toast-root[data-state=open]{animation:var(--uikit-toast-root-open-animation)}.uikit-toast-root[data-state=closed]{animation:var(--uikit-toast-root-swipe-out-animation)}.uikit-toast-root[data-swipe=move]{transform:translate(var(--reka-toast-swipe-move-x))}.uikit-toast-root[data-swipe=cancel]{transform:translate(0);transition:transform .2s ease-out}.uikit-toast-root[data-swipe=end]{animation:var(--uikit-toast-root-swipe-out-animation)}@keyframes fadeIn{0%{opacity:0}to{opacity:1}}@keyframes fadeOut{0%{opacity:1}to{opacity:0}}@keyframes openAnimationRight{0%{transform:translate(100%)}to{transform:translate(var(--reka-toast-swipe-end-x))}}@keyframes openAnimationLeft{0%{transform:translate(-100%)}to{transform:translate(var(--reka-toast-swipe-end-x))}}@keyframes slideRight{0%{transform:translate(var(--reka-toast-swipe-end-x))}to{transform:translate(100%)}}@keyframes slideLeft{0%{transform:translate(var(--reka-toast-swipe-end-x))}to{transform:translate(-100%)}}
|