@wikicasa-dev/components 2.1.25-alpha.1 → 2.1.25-alpha.3
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/UIKit/AccessibleSelect.d.ts +19 -16
- package/dist/UIKit/Accordion/BaseAccordion.d.ts +22 -22
- package/dist/UIKit/Accordion/BaseAccordionContent.d.ts +4 -4
- package/dist/UIKit/Accordion/BaseAccordionItem.d.ts +10 -9
- package/dist/UIKit/BaseAutocomplete.d.ts +2 -1
- package/dist/UIKit/BaseBreadcrumb.d.ts +3 -3
- package/dist/UIKit/BaseButton.d.ts +28 -21
- package/dist/UIKit/BaseCard.d.ts +10 -16
- package/dist/UIKit/BaseCard.js +2 -2
- package/dist/UIKit/BaseComplexToggle.d.ts +31 -31
- package/dist/UIKit/BaseComplexToggle.js +2 -2
- package/dist/UIKit/BaseDropDown.d.ts +6 -6
- package/dist/UIKit/BaseFloatingLabel.d.ts +11 -5
- package/dist/UIKit/BaseFloatingLabel.js +2 -2
- package/dist/UIKit/BaseSelect/SelectItem.d.ts +1 -1
- package/dist/UIKit/BaseTooltip.d.ts +3 -3
- package/dist/UIKit/BaseTooltip.js +2 -2
- package/dist/UIKit/BaseUploadFile.d.ts +9 -9
- package/dist/UIKit/Checkbox/CheckboxBtn.d.ts +4 -3
- package/dist/UIKit/Checkbox/CheckboxBtn.js +2 -2
- package/dist/UIKit/Checkbox/CheckboxGroup.d.ts +32 -38
- package/dist/UIKit/Radio/RadioButton.d.ts +4 -3
- package/dist/UIKit/Radio/RadioGroup.d.ts +46 -44
- package/dist/UIKit/ShimmerLoader/BaseShimmerLoader.d.ts +2 -2
- package/dist/UIKit/ShimmerLoader/BaseShimmerLoader.js +2 -2
- package/dist/UIKit/ShimmerLoader/ShimmerMultiLine.d.ts +5 -5
- package/dist/UIKit/Tab/BaseTab.d.ts +2 -2
- package/dist/UIKit/Tab/BaseTabList.d.ts +3 -3
- package/dist/UIKit/Tab/BaseTabView.d.ts +27 -12
- package/dist/UIKit/types.d.ts +10 -53
- package/dist/assets/packages/components/lib/UIKit/BaseCard.css +1 -1
- package/dist/assets/packages/components/lib/UIKit/BaseComplexToggle.css +1 -1
- package/dist/assets/packages/components/lib/UIKit/BaseFloatingLabel.css +1 -1
- package/dist/assets/packages/components/lib/UIKit/BaseTooltip.css +1 -1
- package/dist/assets/packages/components/lib/UIKit/Checkbox/CheckboxBtn.css +1 -1
- package/dist/assets/packages/components/lib/UIKit/ShimmerLoader/BaseShimmerLoader.css +1 -1
- package/dist/composables/useFloatingLabel.d.ts +1 -1
- package/dist/index.d.ts +42 -42
- package/dist/index.js +4 -4
- package/dist/packages/components/lazyModules/Swiper/autoplay.js +1 -1
- package/dist/packages/components/lazyModules/Swiper/controller.js +1 -1
- package/dist/packages/components/lazyModules/Swiper/keyboard.js +1 -1
- package/dist/packages/components/lazyModules/Swiper/thumbs.js +1 -1
- package/dist/packages/components/lib/UIKit/Accordion/BaseAccordionBtn.vue.js +4 -7
- package/dist/packages/components/lib/UIKit/Accordion/BaseAccordionItem.vue.js +1 -4
- package/dist/packages/components/lib/UIKit/Checkbox/CheckboxGroup.vue.js +4 -4
- package/package.json +1 -1
- /package/dist/assets/node_modules/.pnpm/swiper@12.0.3/node_modules/swiper/modules/{autoplay.css → thumbs.css} +0 -0
|
@@ -1,10 +1,21 @@
|
|
|
1
|
-
import {
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
1
|
+
import { ClassTypeProp } from '../types';
|
|
2
|
+
export type CheckboxButtonType<TID = string | number, TLabel = string | number, TPayload = unknown> = {
|
|
3
|
+
id: TID;
|
|
4
|
+
label: TLabel;
|
|
5
|
+
checked?: boolean;
|
|
6
|
+
reset?: boolean;
|
|
7
|
+
payload?: TPayload;
|
|
8
|
+
dataCy?: string;
|
|
9
|
+
};
|
|
10
|
+
export type CheckboxButtonTypeObj = Omit<CheckboxButtonType, "checked"> & {
|
|
11
|
+
checked: boolean;
|
|
12
|
+
};
|
|
13
|
+
export type GetterIdType<T = CheckboxButtonType | string | number> = (checkboxBtn: T) => string;
|
|
14
|
+
export type CheckboxGroupProps<TID = string | number, TLabel = string | number, TPayload = unknown> = {
|
|
15
|
+
checkboxData?: CheckboxButtonType<TID, TLabel, TPayload>[];
|
|
5
16
|
formCheckInline?: boolean;
|
|
6
17
|
reset?: boolean;
|
|
7
|
-
checkboxContainerClasses?:
|
|
18
|
+
checkboxContainerClasses?: ClassTypeProp;
|
|
8
19
|
/**
|
|
9
20
|
* [ResetCheckbox required] If true, when you check all the checkboxes, the reset one will be checked
|
|
10
21
|
*/
|
|
@@ -23,49 +34,32 @@ type __VLS_Props = {
|
|
|
23
34
|
groupId?: string;
|
|
24
35
|
dataCy?: string;
|
|
25
36
|
};
|
|
26
|
-
declare
|
|
27
|
-
|
|
37
|
+
declare const _default: <TID extends string | number, TLabel extends string | number, TPayload>(__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<{
|
|
38
|
+
props: __VLS_PrettifyLocal<Pick<Partial<{}> & Omit<{
|
|
39
|
+
readonly "onUpdate:modelValue"?: ((args_0: CheckboxButtonType<string | number, string | number, unknown>[]) => any) | undefined;
|
|
40
|
+
readonly onResetted?: (() => any) | undefined;
|
|
41
|
+
readonly onCheckedGroup?: ((args_0: string) => any) | undefined;
|
|
42
|
+
} & import('vue').VNodeProps & import('vue').AllowedComponentProps & import('vue').ComponentCustomProps, never>, "onUpdate:modelValue" | "onResetted" | "onCheckedGroup"> & CheckboxGroupProps<TID, TLabel, TPayload> & Partial<{}>> & import('vue').PublicProps;
|
|
43
|
+
expose(exposed: import('vue').ShallowUnwrapRef<{}>): void;
|
|
44
|
+
attrs: any;
|
|
28
45
|
slots: {
|
|
29
46
|
default?(_: {
|
|
30
47
|
isActive: (elem: CheckboxButtonType | string | number) => boolean;
|
|
31
48
|
handleChange: (checkboxValue: CheckboxButtonType) => void;
|
|
32
|
-
checkboxesData: CheckboxButtonType[];
|
|
49
|
+
checkboxesData: CheckboxButtonType<TID, TLabel, TPayload>[];
|
|
33
50
|
}): any;
|
|
34
51
|
checkbox_elements?(_: {
|
|
35
52
|
isActive: (elem: CheckboxButtonType | string | number) => boolean;
|
|
36
53
|
handleChange: (checkboxValue: CheckboxButtonType) => void;
|
|
37
|
-
checkboxesData: CheckboxButtonType[];
|
|
54
|
+
checkboxesData: CheckboxButtonType<TID, TLabel, TPayload>[];
|
|
38
55
|
reset: () => void;
|
|
39
56
|
}): any;
|
|
40
57
|
};
|
|
41
|
-
|
|
42
|
-
|
|
58
|
+
emit: ((evt: "update:modelValue", args_0: CheckboxButtonType<string | number, string | number, unknown>[]) => void) & ((evt: "resetted") => void) & ((evt: "checkedGroup", args_0: string) => void);
|
|
59
|
+
}>) => import('vue').VNode & {
|
|
60
|
+
__ctx?: Awaited<typeof __VLS_setup>;
|
|
43
61
|
};
|
|
44
|
-
type __VLS_TemplateResult = ReturnType<typeof __VLS_template>;
|
|
45
|
-
declare const __VLS_component: import('vue').DefineComponent<__VLS_Props, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
|
|
46
|
-
"update:modelValue": (args_0: CheckboxButtonType[]) => any;
|
|
47
|
-
resetted: () => any;
|
|
48
|
-
checkedGroup: (args_0: string) => any;
|
|
49
|
-
}, string, import('vue').PublicProps, Readonly<__VLS_Props> & Readonly<{
|
|
50
|
-
"onUpdate:modelValue"?: ((args_0: CheckboxButtonType[]) => any) | undefined;
|
|
51
|
-
onResetted?: (() => any) | undefined;
|
|
52
|
-
onCheckedGroup?: ((args_0: string) => any) | undefined;
|
|
53
|
-
}>, {
|
|
54
|
-
reset: boolean;
|
|
55
|
-
dataCy: string;
|
|
56
|
-
checkboxData: CheckboxButtonType[];
|
|
57
|
-
formCheckInline: boolean;
|
|
58
|
-
checkboxContainerClasses: ClassType;
|
|
59
|
-
autoCheckResetAll: boolean;
|
|
60
|
-
autoCheckResetEmpty: boolean;
|
|
61
|
-
manualToggleResetButton: boolean;
|
|
62
|
-
getKey: GetterIdType;
|
|
63
|
-
groupId: string;
|
|
64
|
-
}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, any>;
|
|
65
|
-
declare const _default: __VLS_WithTemplateSlots<typeof __VLS_component, __VLS_TemplateResult["slots"]>;
|
|
66
62
|
export default _default;
|
|
67
|
-
type
|
|
68
|
-
|
|
69
|
-
|
|
70
|
-
};
|
|
71
|
-
};
|
|
63
|
+
type __VLS_PrettifyLocal<T> = {
|
|
64
|
+
[K in keyof T]: T[K];
|
|
65
|
+
} & {};
|
|
@@ -1,11 +1,12 @@
|
|
|
1
|
-
import {
|
|
1
|
+
import { Nullable } from '@wikicasa-dev/types';
|
|
2
|
+
import { ClassTypeProp } from '../types';
|
|
2
3
|
type __VLS_Props = {
|
|
3
4
|
id?: Nullable<string | number>;
|
|
4
5
|
name?: string;
|
|
5
6
|
label: string;
|
|
6
7
|
modelValue?: boolean;
|
|
7
|
-
inputClasses?:
|
|
8
|
-
labelClasses?:
|
|
8
|
+
inputClasses?: ClassTypeProp;
|
|
9
|
+
labelClasses?: ClassTypeProp;
|
|
9
10
|
};
|
|
10
11
|
declare const _default: import('vue').DefineComponent<__VLS_Props, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
|
|
11
12
|
change: (args_0: {
|
|
@@ -1,51 +1,53 @@
|
|
|
1
|
-
import {
|
|
2
|
-
import {
|
|
3
|
-
type
|
|
1
|
+
import { Nullable, Optional } from '@wikicasa-dev/types';
|
|
2
|
+
import { ClassTypeProp } from '../types';
|
|
3
|
+
export type RadioButtonType<T = unknown> = {
|
|
4
|
+
id?: string | number | null;
|
|
5
|
+
label: string | number;
|
|
6
|
+
payload?: T;
|
|
7
|
+
active?: boolean;
|
|
8
|
+
};
|
|
9
|
+
declare const _default: __VLS_WithTemplateSlots<import('vue').DefineComponent<{
|
|
10
|
+
resetRadio?: Optional<boolean>;
|
|
11
|
+
} & {
|
|
4
12
|
radioValues?: RadioButtonType[];
|
|
5
13
|
dataCy?: string;
|
|
6
|
-
radioContainerClasses?:
|
|
7
|
-
}
|
|
8
|
-
|
|
9
|
-
"resetRadio"?: Optional<boolean>;
|
|
10
|
-
} & __VLS_Props;
|
|
11
|
-
declare function __VLS_template(): {
|
|
12
|
-
attrs: Partial<{}>;
|
|
13
|
-
slots: {
|
|
14
|
-
default?(_: {
|
|
15
|
-
handleClick: (elem: RadioButtonType) => void;
|
|
16
|
-
activeValue: {
|
|
17
|
-
id?: string | number | null | undefined;
|
|
18
|
-
label: string | number;
|
|
19
|
-
payload?: unknown;
|
|
20
|
-
active?: boolean | undefined;
|
|
21
|
-
} | null;
|
|
22
|
-
reset: () => void;
|
|
23
|
-
isActive: (elem: RadioButtonType) => boolean;
|
|
24
|
-
}): any;
|
|
25
|
-
radio_elements?(_: {
|
|
26
|
-
handleClick: (elem: RadioButtonType) => void;
|
|
27
|
-
activeValue: {
|
|
28
|
-
id?: string | number | null | undefined;
|
|
29
|
-
label: string | number;
|
|
30
|
-
payload?: unknown;
|
|
31
|
-
active?: boolean | undefined;
|
|
32
|
-
} | null;
|
|
33
|
-
reset: () => void;
|
|
34
|
-
isActive: (elem: RadioButtonType) => boolean;
|
|
35
|
-
}): any;
|
|
36
|
-
};
|
|
37
|
-
refs: {};
|
|
38
|
-
rootEl: any;
|
|
39
|
-
};
|
|
40
|
-
type __VLS_TemplateResult = ReturnType<typeof __VLS_template>;
|
|
41
|
-
declare const __VLS_component: import('vue').DefineComponent<__VLS_PublicProps, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
|
|
42
|
-
"update:modelValue": (args_0: Nullable<RadioButtonType>) => any;
|
|
14
|
+
radioContainerClasses?: ClassTypeProp;
|
|
15
|
+
}, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
|
|
16
|
+
"update:modelValue": (args_0: Nullable<RadioButtonType<unknown>>) => any;
|
|
43
17
|
"update:resetRadio": (value: Optional<boolean>) => any;
|
|
44
|
-
}, string, import('vue').PublicProps, Readonly<
|
|
45
|
-
|
|
18
|
+
}, string, import('vue').PublicProps, Readonly<{
|
|
19
|
+
resetRadio?: Optional<boolean>;
|
|
20
|
+
} & {
|
|
21
|
+
radioValues?: RadioButtonType[];
|
|
22
|
+
dataCy?: string;
|
|
23
|
+
radioContainerClasses?: ClassTypeProp;
|
|
24
|
+
}> & Readonly<{
|
|
25
|
+
"onUpdate:modelValue"?: ((args_0: Nullable<RadioButtonType<unknown>>) => any) | undefined;
|
|
46
26
|
"onUpdate:resetRadio"?: ((value: Optional<boolean>) => any) | undefined;
|
|
47
|
-
}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, any
|
|
48
|
-
|
|
27
|
+
}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, any>, {
|
|
28
|
+
default?(_: {
|
|
29
|
+
handleClick: (elem: RadioButtonType) => void;
|
|
30
|
+
activeValue: {
|
|
31
|
+
id?: string | number | null | undefined;
|
|
32
|
+
label: string | number;
|
|
33
|
+
payload?: unknown;
|
|
34
|
+
active?: boolean | undefined;
|
|
35
|
+
} | null;
|
|
36
|
+
reset: () => void;
|
|
37
|
+
isActive: (elem: RadioButtonType) => boolean;
|
|
38
|
+
}): any;
|
|
39
|
+
radio_elements?(_: {
|
|
40
|
+
handleClick: (elem: RadioButtonType) => void;
|
|
41
|
+
activeValue: {
|
|
42
|
+
id?: string | number | null | undefined;
|
|
43
|
+
label: string | number;
|
|
44
|
+
payload?: unknown;
|
|
45
|
+
active?: boolean | undefined;
|
|
46
|
+
} | null;
|
|
47
|
+
reset: () => void;
|
|
48
|
+
isActive: (elem: RadioButtonType) => boolean;
|
|
49
|
+
}): any;
|
|
50
|
+
}>;
|
|
49
51
|
export default _default;
|
|
50
52
|
type __VLS_WithTemplateSlots<T, S> = T & {
|
|
51
53
|
new (): {
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import o from "../../packages/components/lib/UIKit/ShimmerLoader/BaseShimmerLoader.vue.js";
|
|
2
2
|
import '../../assets/packages/components/lib/UIKit/ShimmerLoader/BaseShimmerLoader.css';/* empty css */
|
|
3
3
|
import r from "../../_virtual/_plugin-vue_export-helper.js";
|
|
4
|
-
const
|
|
4
|
+
const a = /* @__PURE__ */ r(o, [["__scopeId", "data-v-eb2d6076"]]);
|
|
5
5
|
export {
|
|
6
|
-
|
|
6
|
+
a as default
|
|
7
7
|
};
|
|
@@ -1,8 +1,8 @@
|
|
|
1
|
-
import {
|
|
1
|
+
import { ClassTypeProp } from '../types';
|
|
2
2
|
type __VLS_Props = {
|
|
3
3
|
lines?: number;
|
|
4
4
|
randomLength?: boolean;
|
|
5
|
-
shimmerClasses?:
|
|
5
|
+
shimmerClasses?: ClassTypeProp;
|
|
6
6
|
inheritHeight?: boolean;
|
|
7
7
|
};
|
|
8
8
|
declare const _default: import('vue').DefineComponent<__VLS_Props, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<__VLS_Props> & Readonly<{}>, {
|
|
@@ -14,7 +14,7 @@ declare const _default: import('vue').DefineComponent<__VLS_Props, {}, {}, {}, {
|
|
|
14
14
|
$: import('vue').ComponentInternalInstance;
|
|
15
15
|
$data: {};
|
|
16
16
|
$props: {
|
|
17
|
-
readonly shimmerClasses?:
|
|
17
|
+
readonly shimmerClasses?: ClassTypeProp;
|
|
18
18
|
} & import('vue').VNodeProps & import('vue').AllowedComponentProps & import('vue').ComponentCustomProps;
|
|
19
19
|
$attrs: {
|
|
20
20
|
[x: string]: unknown;
|
|
@@ -31,7 +31,7 @@ declare const _default: import('vue').DefineComponent<__VLS_Props, {}, {}, {}, {
|
|
|
31
31
|
$emit: (event: string, ...args: any[]) => void;
|
|
32
32
|
$el: any;
|
|
33
33
|
$options: import('vue').ComponentOptionsBase<Readonly<{
|
|
34
|
-
shimmerClasses?:
|
|
34
|
+
shimmerClasses?: ClassTypeProp;
|
|
35
35
|
}> & Readonly<{}>, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, {}, {}, string, {}, import('vue').GlobalComponents, import('vue').GlobalDirectives, string, import('vue').ComponentProvideOptions> & {
|
|
36
36
|
beforeCreate?: (() => void) | (() => void)[];
|
|
37
37
|
created?: (() => void) | (() => void)[];
|
|
@@ -53,7 +53,7 @@ declare const _default: import('vue').DefineComponent<__VLS_Props, {}, {}, {}, {
|
|
|
53
53
|
$nextTick: typeof import('vue').nextTick;
|
|
54
54
|
$watch<T extends string | ((...args: any) => any)>(source: T, cb: T extends (...args: any) => infer R ? (...args: [R, R, import('@vue/reactivity').OnCleanup]) => any : (...args: [any, any, import('@vue/reactivity').OnCleanup]) => any, options?: import('vue').WatchOptions): import('vue').WatchStopHandle;
|
|
55
55
|
} & Readonly<{}> & Omit<Readonly<{
|
|
56
|
-
shimmerClasses?:
|
|
56
|
+
shimmerClasses?: ClassTypeProp;
|
|
57
57
|
}> & Readonly<{}>, never> & import('vue').ShallowUnwrapRef<{}> & {} & import('vue').ComponentCustomProperties & {} & {
|
|
58
58
|
$slots: {
|
|
59
59
|
default?(_: {}): any;
|
|
@@ -1,8 +1,8 @@
|
|
|
1
|
-
import {
|
|
1
|
+
import { ClassTypeProp } from '../types';
|
|
2
2
|
type __VLS_Props = {
|
|
3
3
|
activeTabPanelIdx?: number;
|
|
4
4
|
headerTitle?: string;
|
|
5
|
-
tabPanelClasses?:
|
|
5
|
+
tabPanelClasses?: ClassTypeProp;
|
|
6
6
|
};
|
|
7
7
|
declare function __VLS_template(): {
|
|
8
8
|
attrs: Partial<{}>;
|
|
@@ -1,9 +1,9 @@
|
|
|
1
|
-
import {
|
|
2
|
-
import { TabType } from '
|
|
1
|
+
import { ClassTypeProp } from '../types';
|
|
2
|
+
import { TabType } from './BaseTabView';
|
|
3
3
|
type __VLS_Props = {
|
|
4
4
|
dataCy?: string;
|
|
5
5
|
uid: string;
|
|
6
|
-
tabListClasses?:
|
|
6
|
+
tabListClasses?: ClassTypeProp;
|
|
7
7
|
};
|
|
8
8
|
declare const _default: import('vue').DefineComponent<__VLS_Props, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
|
|
9
9
|
tabClick: (e: Event, tabIdx: number, tabElement: TabType) => any;
|
|
@@ -1,26 +1,41 @@
|
|
|
1
|
-
import {
|
|
2
|
-
|
|
3
|
-
|
|
1
|
+
import { ClassTypeProp } from '../types';
|
|
2
|
+
export type BaseTabProps = Partial<{
|
|
3
|
+
"header-title": string;
|
|
4
|
+
class: string;
|
|
5
|
+
"active-tab-panel-idx": number;
|
|
6
|
+
"tab-panel-classes": ClassTypeProp;
|
|
7
|
+
"data-cy": string;
|
|
8
|
+
}>;
|
|
9
|
+
export type TabType = {
|
|
10
|
+
renderFn: any;
|
|
11
|
+
tabId: string;
|
|
12
|
+
} & BaseTabProps;
|
|
13
|
+
declare const _default: import('vue').DefineComponent<{
|
|
14
|
+
activeIdx?: number | undefined;
|
|
15
|
+
} & {
|
|
4
16
|
tabsPosition?: "top" | "bottom";
|
|
5
17
|
tabViewDescription: string;
|
|
6
|
-
tabListClasses?:
|
|
18
|
+
tabListClasses?: ClassTypeProp;
|
|
7
19
|
dataCy?: string;
|
|
8
|
-
}
|
|
9
|
-
|
|
10
|
-
"activeIdx"?: number | undefined;
|
|
11
|
-
} & __VLS_Props;
|
|
12
|
-
declare const _default: import('vue').DefineComponent<__VLS_PublicProps, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
|
|
20
|
+
}, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
|
|
21
|
+
"update:activeIdx": (value: number | undefined) => any;
|
|
13
22
|
tabClicked: (args_0: {
|
|
14
23
|
tabIdx: number;
|
|
15
24
|
tabElement: TabType;
|
|
16
25
|
}) => any;
|
|
17
|
-
|
|
18
|
-
|
|
26
|
+
}, string, import('vue').PublicProps, Readonly<{
|
|
27
|
+
activeIdx?: number | undefined;
|
|
28
|
+
} & {
|
|
29
|
+
tabsPosition?: "top" | "bottom";
|
|
30
|
+
tabViewDescription: string;
|
|
31
|
+
tabListClasses?: ClassTypeProp;
|
|
32
|
+
dataCy?: string;
|
|
33
|
+
}> & Readonly<{
|
|
34
|
+
"onUpdate:activeIdx"?: ((value: number | undefined) => any) | undefined;
|
|
19
35
|
onTabClicked?: ((args_0: {
|
|
20
36
|
tabIdx: number;
|
|
21
37
|
tabElement: TabType;
|
|
22
38
|
}) => any) | undefined;
|
|
23
|
-
"onUpdate:activeIdx"?: ((value: number | undefined) => any) | undefined;
|
|
24
39
|
}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {
|
|
25
40
|
root: HTMLDivElement;
|
|
26
41
|
}, any>;
|
package/dist/UIKit/types.d.ts
CHANGED
|
@@ -1,62 +1,19 @@
|
|
|
1
|
-
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
/** Toggle types */
|
|
6
|
-
export type ToggleType<TPayload = unknown, TId = string | number> = {
|
|
7
|
-
id?: TId;
|
|
8
|
-
label: string;
|
|
9
|
-
icon?: Icon;
|
|
10
|
-
checked?: boolean;
|
|
11
|
-
payload?: TPayload;
|
|
12
|
-
};
|
|
13
|
-
export type ComplexToggleType<T = unknown> = {
|
|
14
|
-
leftToggle: ToggleType<T>;
|
|
15
|
-
rightToggle: ToggleType<T>;
|
|
1
|
+
export type Icon = {
|
|
2
|
+
src: string;
|
|
3
|
+
alt: string;
|
|
4
|
+
size?: "sm" | "md" | "lg";
|
|
16
5
|
};
|
|
17
|
-
export type
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
"active-tab-panel-idx": number;
|
|
21
|
-
"tab-panel-classes": ClassType;
|
|
22
|
-
"data-cy": string;
|
|
23
|
-
}>;
|
|
24
|
-
export type TabType = {
|
|
25
|
-
renderFn: any;
|
|
26
|
-
tabId: string;
|
|
27
|
-
} & BaseTabProps;
|
|
28
|
-
export type CheckboxButtonType<T = string | number, T1 = string | number, T2 = unknown> = {
|
|
29
|
-
id: T;
|
|
30
|
-
label: T1;
|
|
31
|
-
checked?: boolean;
|
|
32
|
-
reset?: boolean;
|
|
33
|
-
payload?: T2;
|
|
34
|
-
dataCy?: string;
|
|
6
|
+
export type IconItem = {
|
|
7
|
+
icon?: string;
|
|
8
|
+
iconColored?: string;
|
|
35
9
|
};
|
|
36
|
-
export type
|
|
37
|
-
|
|
10
|
+
export type LabelItem<L = number | string | undefined> = {
|
|
11
|
+
id: L;
|
|
12
|
+
label: string;
|
|
38
13
|
};
|
|
39
|
-
export type GetterIdType<T = CheckboxButtonType | string | number> = (checkboxBtn: T) => string;
|
|
40
|
-
export type LabelState = "inline-label" | "floating-label";
|
|
41
14
|
export type FeedbackLabels = {
|
|
42
15
|
valid?: string[] | string;
|
|
43
16
|
invalid?: string[] | string;
|
|
44
17
|
};
|
|
45
|
-
export type SelectOptions<T = void> = IconItem & LabelItem & {
|
|
46
|
-
payload?: T;
|
|
47
|
-
};
|
|
48
|
-
export type AccessibleSelectOptions<T = unknown, L = string | number | undefined> = IconItem & LabelItem<L> & {
|
|
49
|
-
visibleLabel?: string;
|
|
50
|
-
} & T;
|
|
51
|
-
export type RadioButtonType<T = unknown> = {
|
|
52
|
-
id?: string | number | null;
|
|
53
|
-
label: string | number;
|
|
54
|
-
payload?: T;
|
|
55
|
-
active?: boolean;
|
|
56
|
-
};
|
|
57
|
-
export type AccordionItemDecorated<T = unknown> = Record<string | number, T & Partial<AccordionItem>>;
|
|
58
|
-
type BtnPrefix = "btn-";
|
|
59
|
-
export type ButtonType = `${TwPrefix}${BtnPrefix}${"w-primary" | "w-secondary" | "w-warning" | "w-danger" | "transparent" | "light" | "show-more" | "multi-selection" | "single-selection" | "facile"}`;
|
|
60
18
|
export type ClassType = string | Record<string, boolean> | null | undefined | ClassType[];
|
|
61
19
|
export type ClassTypeProp = ClassType | ClassType[];
|
|
62
|
-
export {};
|
|
@@ -1 +1 @@
|
|
|
1
|
-
.card[data-v-
|
|
1
|
+
.card[data-v-bf21cda3]{--card-max-height: none;--card-max-width: 930px;--card-height: auto;--card-width: auto;--card-border-radius-top-left: 20px;--card-border-radius-top-right: 20px;--card-border-radius-bottom-left: 20px;--card-border-radius-bottom-right: 20px;border-top-left-radius:var(--card-border-radius-top-left);border-top-right-radius:var(--card-border-radius-top-right);border-bottom-left-radius:var(--card-border-radius-bottom-left);border-bottom-right-radius:var(--card-border-radius-bottom-right);height:var(--card-height);width:var(--card-width);max-width:var(--card-max-width);max-height:var(--card-max-height);position:relative;z-index:0;display:flex;overflow:hidden;--tw-shadow: 0 0 8px #2222221F;--tw-shadow-colored: 0 0 8px var(--tw-shadow-color);box-shadow:var(--tw-ring-offset-shadow, 0 0 #0000),var(--tw-ring-shadow, 0 0 #0000),var(--tw-shadow)}@media screen and (min-width: 576px){.card[data-v-bf21cda3]{--card-img-max-width: 300px;--card-height: 240px }}.card .card-body[data-v-bf21cda3]{--card-body-width: 100%;box-sizing:border-box;width:var(--card-body-width);padding:10px 15px}.card .card-img[data-v-bf21cda3]{--card-img-height: var(--card-height);--card-img-width: 100%;--card-img-max-height: none;--card-img-max-width: none;height:var(--card-img-height);width:var(--card-img-width);max-width:var(--card-img-max-width);max-height:var(--card-img-max-height)}@media screen and (min-width: 576px){.card .card-img[data-v-bf21cda3]{--card-img-max-width: 300px }}.card.vertical[data-v-bf21cda3]{--card-vertical-height: var(--card-height);height:var(--card-vertical-height);flex-direction:column}@media not all and (min-width: 576px){.card.vertical[data-v-bf21cda3]{min-height:100px;min-width:335px}}@media screen and (min-width: 576px){.card.vertical[data-v-bf21cda3]{--card-vertical-height: fit-content }}.card.vertical .card-img[data-v-bf21cda3]{--card-vertical-img-height: 200px;--card-img-width: 100%;--card-img-max-width: 100%;height:var(--card-vertical-img-height)}.card.mini[data-v-bf21cda3]{--card-max-height: 100px;--card-max-width: 370px}.card.mini .card-img[data-v-bf21cda3]{--card-img-max-height: 110px;--card-img-max-width: 120px}@media (min-width: 576px){.card.news-card[data-v-bf21cda3]{flex-direction:column}}.card.news-card[data-v-bf21cda3]{--card-height: 270px}@media screen and (max-width: 576px){.card.news-card[data-v-bf21cda3]{--card-height: 100px;--card-width: 320px }.card.news-card .card-img[data-v-bf21cda3]{--card-height: 100px;--card-img-max-width: 100px }}@media screen and (min-width: 576px){.card.news-card .card-img[data-v-bf21cda3]{--card-height: 150px;--card-img-max-width: 100% }}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
.base-complex-toggle[data-v-
|
|
1
|
+
.base-complex-toggle[data-v-c48c03df]{--base-complex-toggle-height: 42px;--base-complex-toggle-width: 230px;--base-complex-toggle-radius: 23px;--base-complex-toggle-border-width: 1px;--base-complex-toggle-border-color: #E9EFFE;--padding-x-bg: 7px;--padding-y-bg: 8px;--base-complex-toggle-bg-height: var(--base-complex-toggle-height);--base-complex-toggle-bg-width: calc(var(--base-complex-toggle-width) / 2);--base-complex-toggle-bg-padded-width: calc( var(--base-complex-toggle-bg-width) - var(--padding-x-bg) );--base-complex-toggle-bg-padded-height: calc( var(--base-complex-toggle-bg-height) - var(--padding-y-bg) );--padded-bg-dist-from-top: calc(var(--padding-y-bg) / 2);--round-interval: 1px;--translateX-value: calc(var(--base-complex-toggle-bg-width) / 2);--left-translateX: translateX(calc(var(--translateX-value) * -1));--right-translateX: translateX(var(--translateX-value));--toggle-width: var(--base-complex-toggle-width);--toggle-height: var(--base-complex-toggle-height);--toggle-border: var(--base-complex-toggle-border-width) var(--base-complex-toggle-border-color) solid;--toggle-border-radius: var(--base-complex-toggle-radius)}.base-complex-toggle.lg[data-v-c48c03df]{--base-complex-toggle-height: 56px;--base-complex-toggle-width: 342px;--base-complex-toggle-radius: 28px}@media screen and (max-width: 576px){.base-complex-toggle.mobile[data-v-c48c03df]{--base-complex-toggle-width: 342px }}.base-complex-toggle[data-v-c48c03df]{width:var(--toggle-width);height:var(--toggle-height);border:var(--toggle-border);border-radius:var(--toggle-border-radius)}.base-complex-toggle-active[data-v-c48c03df]{--base-complex-toggle-active-color: #fff;font-weight:500;cursor:default;color:var(--base-complex-toggle-active-color)}.base-complex-toggle-active[data-btn-bg-color=uikit-bg-w-warning][data-v-c48c03df],.base-complex-toggle-active[data-btn-bg-color=uikit-bg-w-lavender][data-v-c48c03df],.base-complex-toggle-active[data-btn-bg-color=uikit-bg-w-secondary][data-v-c48c03df]{--base-complex-toggle-active-color: #000}.base-complex-toggle-active-bg[data-v-c48c03df]{--toggle-bg-width: var(--base-complex-toggle-bg-width);--toggle-bg-height: calc( var(--base-complex-toggle-bg-height) - (2 * var(--base-complex-toggle-border-width)) )}@media screen and (max-width: 576px){.base-complex-toggle-active-bg .mobile[data-v-c48c03df]{--toggle-bg-width: var(--base-complex-toggle-bg-lg-width) }}.base-complex-toggle-active-bg[data-v-c48c03df]{width:var(--toggle-bg-width);height:var(--toggle-bg-height);border-radius:var(--base-complex-toggle-radius);z-index:1}.base-complex-toggle-active-padded-bg[data-v-c48c03df]{--toggle-bg-width: var(--base-complex-toggle-bg-padded-width);--toggle-bg-height: calc( var(--base-complex-toggle-bg-padded-height) - (2 * var(--base-complex-toggle-border-width)) )}@media screen and (max-width: 576px){.base-complex-toggle-active-padded-bg.mobile[data-v-c48c03df]{--toggle-bg-width: var(--base-complex-toggle-bg-padded-width) }}.base-complex-toggle-active-padded-bg[data-v-c48c03df]{border-radius:var(--base-complex-toggle-radius);z-index:1;top:var(--padded-bg-dist-from-top);width:var(--toggle-bg-width);height:var(--toggle-bg-height)}.translateX-left[data-v-c48c03df]{transform:var(--left-translateX)}@media screen and (max-width: 576px){.translateX-left.mobile[data-v-c48c03df]{transform:var(--left-translateX)}}.translateX-right[data-v-c48c03df]{transform:var(--right-translateX)}@media screen and (max-width: 576px){.translateX-right.mobile[data-v-c48c03df]{transform:var(--right-translateX)}}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
.floating-label[data-v-
|
|
1
|
+
.floating-label[data-v-5c7a4894]{top:-10px;left:1.25rem;border-radius:5px;font-size:14px;line-height:18px}.inline-label[data-v-5c7a4894]{top:.75rem;background-color:transparent;font-size:16px;line-height:20px}.inline-label>span[data-v-5c7a4894]{--tw-text-opacity: 1;color:rgb(109 118 135 / var(--tw-text-opacity, 1))}.floating-label[data-v-5c7a4894],.inline-label[data-v-5c7a4894]{transition-property:top,left;transition-timing-function:cubic-bezier(.4,0,.2,1);transition-duration:.15s;will-change:top,left}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
.base-tooltip[data-v-
|
|
1
|
+
.base-tooltip[data-v-2bb9040f]{--tooltip-sm-content-width: 250px;--tooltip-sm-arrows-width: 8px;--tooltip-sm-height: 65px;--tooltip-md-width: calc(var(--tooltip-sm-content-width) * 1.2);--tooltip-md-height: 100px;--tooltip-lg-width: calc(var(--tooltip-sm-content-width) * 1.4);--tooltip-lg-height: 130px;--tooltip-border-radius: 10px;--tooltip-space-from-top-content: 65%;--tooltip-blue-bg: #2B5DFF;--tooltip-blue-color: #fff;--tooltip-white-bg: #fff;--tooltip-white-color: #000;--arrow-width: 10px;--arrow-margin-left: calc(var(--arrow-width) * -1);--arrow-left-position: 10%;position:relative;display:inline-block}.base-tooltip .tooltip-content-wrapper[data-v-2bb9040f]{position:absolute;top:60%}.base-tooltip .tooltip-content-wrapper.sm[data-v-2bb9040f]{width:var(--tooltip-sm-content-width)}.base-tooltip .tooltip-content-wrapper.md[data-v-2bb9040f]{width:var(--tooltip-md-width)}.base-tooltip .tooltip-content-wrapper.lg[data-v-2bb9040f]{width:var(--tooltip-lg-width)}.base-tooltip .tooltip-content[data-v-2bb9040f]{display:none;opacity:0;text-align:center;padding:5px 0;position:absolute;z-index:1;left:var(--arrow-left-position);top:var(--tooltip-space-from-top-content)}.base-tooltip .tooltip-content.lg[data-v-2bb9040f]{top:calc(var(--tooltip-space-from-top-content) + 20%)}.base-tooltip .mail-alert[data-v-2bb9040f]{padding-top:22px;position:absolute;top:90%;z-index:1053}.base-tooltip .mail-alert.listing>.tooltip-content[data-v-2bb9040f]{left:-70px}.base-tooltip .mail-alert .tooltip-content[data-v-2bb9040f]{left:0;top:65%;display:flex!important;justify-content:center;align-items:center}.base-tooltip .mail-alert .tooltip-content[data-v-2bb9040f],.base-tooltip .mail-alert .tooltip-content[data-v-2bb9040f]:after{display:block;opacity:1;transition:opacity .25s ease-out}.base-tooltip .tooltip-content[data-v-2bb9040f],.base-tooltip .tooltip-content[data-v-2bb9040f]>*{border-radius:var(--tooltip-border-radius)}.base-tooltip .tooltip-content.blue[data-v-2bb9040f]{background-color:var(--tooltip-blue-bg);color:var(--tooltip-blue-color)}.base-tooltip .tooltip-content.blue[data-v-2bb9040f]:after{border-color:transparent transparent var(--tooltip-blue-bg) transparent}.base-tooltip .tooltip-content.white[data-v-2bb9040f]{background-color:var(--tooltip-white-bg);color:var(--tooltip-white-color)}.base-tooltip .tooltip-content.white[data-v-2bb9040f]:after{border-color:transparent transparent var(--tooltip-white-bg) transparent}.base-tooltip .tooltip-content.sm[data-v-2bb9040f]{width:var(--tooltip-sm-content-width);height:var(--tooltip-sm-height)}.base-tooltip .tooltip-content.sm[data-v-2bb9040f]:after{border-width:var(--tooltip-sm-arrows-width)}.base-tooltip .tooltip-content.md[data-v-2bb9040f]{width:var(--tooltip-md-width);height:var(--tooltip-md-height)}.base-tooltip .tooltip-content.md[data-v-2bb9040f]:after{border-width:calc(var(--tooltip-sm-arrows-width) + 1px)}.base-tooltip .tooltip-content.lg[data-v-2bb9040f]{width:var(--tooltip-lg-width);height:var(--tooltip-lg-height)}.base-tooltip .tooltip-content.lg[data-v-2bb9040f]:after{border-width:calc(var(--tooltip-sm-arrows-width) + 2px)}.base-tooltip:hover .tooltip-content-wrapper[data-v-2bb9040f]{padding-top:30px}.base-tooltip:hover .tooltip-content.lg[data-v-2bb9040f]{left:8%}.base-tooltip:hover .tooltip-content[data-v-2bb9040f],.base-tooltip .tooltip-content[data-v-2bb9040f]:after{display:block;opacity:1;transition:opacity .25s ease-out}.base-tooltip-arrow[data-v-2bb9040f]:after{content:" ";position:absolute;margin-left:var(--arrow-margin-left);border-style:solid}.base-tooltip-arrow.top[data-v-2bb9040f]:after{bottom:100%;left:var(--arrow-left-position)}.base-tooltip-arrow.top-center[data-v-2bb9040f]:after{bottom:100%;left:50%}.base-tooltip-arrow.right[data-v-2bb9040f]:after{top:50%;left:100%;transform:rotate(90deg)}.base-tooltip-arrow.bottom[data-v-2bb9040f]:after{top:100%;left:var(--arrow-left-position);transform:rotate(180deg)}.base-tooltip-arrow.bottom-center[data-v-2bb9040f]:after{top:100%;left:50%;transform:rotate(180deg)}.base-tooltip-arrow.left[data-v-2bb9040f]:after{top:50%;right:100%;transform:rotate(270deg)}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
.checked-bg[data-v-
|
|
1
|
+
.checked-bg[data-v-8649caa8]:checked{background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cg transform='translate(-307 -2432)'%3E%3Crect width='16' height='16' fill='%232b5dff' data-name='Rettangolo 2689' rx='3' transform='translate(307 2432)'/%3E%3Cpath fill='none' stroke='%23f4f7ff' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='m319.499 2437.499-6 6Zm-9 3 3 3Z' data-name='Unione 5'/%3E%3C/g%3E%3C/svg%3E")}.checked-bg-invalid[data-v-8649caa8]:checked{background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16'%3E%3Cg transform='translate(-307 -2432)'%3E%3Crect width='16' height='16' fill='%23FA4F64' data-name='Rettangolo 2689' rx='3' transform='translate(307 2432)'/%3E%3Cpath fill='none' stroke='%23f4f7ff' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='m319.499 2437.499-6 6Zm-9 3 3 3Z' data-name='Unione 5'/%3E%3C/g%3E%3C/svg%3E")}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
.shimmer[data-v-
|
|
1
|
+
.shimmer[data-v-eb2d6076]{animation:shimmer-eb2d6076 1.4s infinite;background-image:linear-gradient(90deg,#fff0,#fff3 20%,#ffffff80 60%,#fff0)}@keyframes shimmer-eb2d6076{to{transform:translate(100%)}}
|
package/dist/index.d.ts
CHANGED
|
@@ -1,44 +1,44 @@
|
|
|
1
|
-
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
import { default as IntersectionObserver } from './components/IntersectionObserver/IntersectionObserver';
|
|
39
|
-
import { default as SwiperCarousel } from './components/carousel/SwiperCarousel';
|
|
40
|
-
import { default as SwiperSlide } from './components/carousel/SwiperSlide';
|
|
41
|
-
import { default as BaseBreadcrumb } from './UIKit/BaseBreadcrumb';
|
|
1
|
+
export * from './UIKit/types';
|
|
2
|
+
export { default as BaseAccordion, type AccordionItemDecorated, type AccordionItem, } from './UIKit/Accordion/BaseAccordion';
|
|
3
|
+
export { default as BaseAccordionBtn } from './UIKit/Accordion/BaseAccordionBtn';
|
|
4
|
+
export { default as BaseAccordionContent } from './UIKit/Accordion/BaseAccordionContent';
|
|
5
|
+
export { default as BaseAccordionItem } from './UIKit/Accordion/BaseAccordionItem';
|
|
6
|
+
export { default as SelectItem } from './UIKit/BaseSelect/SelectItem';
|
|
7
|
+
export { default as CheckboxBtn } from './UIKit/Checkbox/CheckboxBtn';
|
|
8
|
+
export { default as CheckboxGroup, type CheckboxGroupProps, } from './UIKit/Checkbox/CheckboxGroup';
|
|
9
|
+
export { default as BaseTabView, type BaseTabProps, } from './UIKit/Tab/BaseTabView';
|
|
10
|
+
export { default as BaseTab } from './UIKit/Tab/BaseTab';
|
|
11
|
+
export { default as RadioButton } from './UIKit/Radio/RadioButton';
|
|
12
|
+
export { default as RadioGroup, type RadioButtonType, } from './UIKit/Radio/RadioGroup';
|
|
13
|
+
export { default as AccessibleSelect, type AccessibleSelectOptions, } from './UIKit/AccessibleSelect';
|
|
14
|
+
export { default as BaseAlert } from './UIKit/BaseAlert';
|
|
15
|
+
export { default as BaseAutocomplete } from './UIKit/BaseAutocomplete';
|
|
16
|
+
export { default as BaseBadge } from './UIKit/BaseBadge';
|
|
17
|
+
export { default as BaseButton, type ButtonType } from './UIKit/BaseButton';
|
|
18
|
+
export { default as BaseCard } from './UIKit/BaseCard';
|
|
19
|
+
export { default as BaseComplexToggle, type BaseComplexToggleProps, type ToggleType, } from './UIKit/BaseComplexToggle';
|
|
20
|
+
export { default as BaseDropDown } from './UIKit/BaseDropDown';
|
|
21
|
+
export { default as BaseFloatingLabel } from './UIKit/BaseFloatingLabel';
|
|
22
|
+
export { default as BaseIcon } from './UIKit/BaseIcon';
|
|
23
|
+
export { default as BaseInput } from './UIKit/BaseInput';
|
|
24
|
+
export { default as BasePagination } from './UIKit/BasePagination';
|
|
25
|
+
export { default as BasePaper } from './UIKit/BasePaper';
|
|
26
|
+
export { default as BaseSlider } from './UIKit/BaseSlider';
|
|
27
|
+
export { default as BaseTextarea } from './UIKit/BaseTextarea';
|
|
28
|
+
export { default as BaseToggle } from './UIKit/BaseToggle';
|
|
29
|
+
export { default as BaseTooltip } from './UIKit/BaseTooltip';
|
|
30
|
+
export { default as BaseUploadFile } from './UIKit/BaseUploadFile';
|
|
31
|
+
export { default as BaseModal } from './UIKit/BaseModal';
|
|
32
|
+
export { default as StaticSpinner } from './UIKit/StaticSpinner';
|
|
33
|
+
export { default as BaseShimmerLoader } from './UIKit/ShimmerLoader/BaseShimmerLoader';
|
|
34
|
+
export { default as ShimmerMultiLine } from './UIKit/ShimmerLoader/ShimmerMultiLine';
|
|
35
|
+
export { default as DoughnutChart } from './chart/DoughnutChart';
|
|
36
|
+
export { default as LineChart } from './chart/LineChart';
|
|
37
|
+
export { default as SimpleSlider } from './UIKit/Slider/SimpleSlider';
|
|
42
38
|
export { default as BaseSnackbar, type SnackbarProps, } from './UIKit/BaseSnackbar';
|
|
39
|
+
export { default as IntersectionObservable } from './components/IntersectionObserver/IntersectionObservable';
|
|
40
|
+
export { default as IntersectionObserver } from './components/IntersectionObserver/IntersectionObserver';
|
|
41
|
+
export { default as SwiperCarousel } from './components/carousel/SwiperCarousel';
|
|
42
|
+
export { default as SwiperSlide } from './components/carousel/SwiperSlide';
|
|
43
|
+
export { default as BaseBreadcrumb } from './UIKit/BaseBreadcrumb';
|
|
43
44
|
export type { ChartOptions, ChartData } from 'chart.js';
|
|
44
|
-
export { DoughnutChart, LineChart, BaseAccordion, BaseAccordionBtn, BaseAccordionContent, BaseAccordionItem, SelectItem, BaseAlert, BaseAutocomplete, BaseBadge, BaseButton, AccessibleSelect, BaseComplexToggle, BaseDropDown, BaseFloatingLabel, BaseCard, BaseIcon, BaseInput, BasePagination, BasePaper, BaseSlider, BaseTab, BaseTextarea, BaseToggle, BaseTooltip, BaseUploadFile, CheckboxBtn, CheckboxGroup, RadioButton, RadioGroup, SwiperCarousel, SwiperSlide, IntersectionObservable, IntersectionObserver, BaseModal, BaseTabView, BaseShimmerLoader, ShimmerMultiLine, StaticSpinner, BaseBreadcrumb, SimpleSlider, };
|