@wikicasa-dev/components 2.1.4-alpha.2 → 2.1.4-alpha.20

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.
Files changed (110) hide show
  1. package/dist/UIKit/BaseAutocomplete.d.ts +14 -12
  2. package/dist/UIKit/BaseAutocomplete.js +3 -2
  3. package/dist/UIKit/BaseBadge.d.ts +2 -38
  4. package/dist/UIKit/BaseDropDown.d.ts +8 -13
  5. package/dist/UIKit/BaseInput.d.ts +4 -5
  6. package/dist/UIKit/BasePagination.d.ts +7 -1
  7. package/dist/UIKit/BasePin.d.ts +22 -0
  8. package/dist/UIKit/BaseSelect.d.ts +26 -0
  9. package/dist/UIKit/BaseSelect.js +5 -0
  10. package/dist/UIKit/BaseTextarea.js +2 -2
  11. package/dist/UIKit/Checkbox/CheckboxGroup.d.ts +3 -3
  12. package/dist/UIKit/types.d.ts +7 -3
  13. package/dist/_virtual/_commonjsHelpers.js +6 -0
  14. package/dist/_virtual/cloneDeep.js +4 -0
  15. package/dist/_virtual/create-plugin.js +4 -0
  16. package/dist/_virtual/createPlugin.js +4 -0
  17. package/dist/_virtual/default-theme.js +4 -0
  18. package/dist/_virtual/defaultTheme.js +7 -0
  19. package/dist/_virtual/plugin.js +7 -0
  20. package/dist/assets/packages/components/lib/UIKit/BaseAlert.css +1 -1
  21. package/dist/assets/packages/components/lib/UIKit/BaseAutocomplete.css +1 -0
  22. package/dist/assets/packages/components/lib/UIKit/BaseBadge.css +1 -1
  23. package/dist/assets/packages/components/lib/UIKit/BaseComplexToggle.css +1 -1
  24. package/dist/assets/packages/components/lib/UIKit/BaseInput.css +1 -1
  25. package/dist/assets/packages/components/lib/UIKit/BasePin.css +1 -1
  26. package/dist/assets/packages/components/lib/UIKit/{NativeSelect.css → BaseSelect.css} +1 -1
  27. package/dist/assets/packages/components/lib/UIKit/BaseTextarea.css +1 -1
  28. package/dist/assets/packages/components/src/tailwind.css +1 -1
  29. package/dist/index.d.ts +3 -1
  30. package/dist/index.js +94 -87
  31. package/dist/node_modules/.pnpm/{swiper@11.2.8 → swiper@11.2.10}/node_modules/swiper/modules/keyboard.js +13 -13
  32. package/dist/node_modules/.pnpm/{swiper@11.2.8 → swiper@11.2.10}/node_modules/swiper/shared/classes-to-selector.js +1 -1
  33. package/dist/node_modules/.pnpm/tailwindcss@3.4.15_ts-node@10.9.2_@types_node@24.0.1_typescript@5.8.3_/node_modules/tailwindcss/defaultTheme.js +11 -0
  34. package/dist/node_modules/.pnpm/tailwindcss@3.4.15_ts-node@10.9.2_@types_node@24.0.1_typescript@5.8.3_/node_modules/tailwindcss/lib/public/create-plugin.js +25 -0
  35. package/dist/node_modules/.pnpm/tailwindcss@3.4.15_ts-node@10.9.2_@types_node@24.0.1_typescript@5.8.3_/node_modules/tailwindcss/lib/public/default-theme.js +26 -0
  36. package/dist/node_modules/.pnpm/tailwindcss@3.4.15_ts-node@10.9.2_@types_node@24.0.1_typescript@5.8.3_/node_modules/tailwindcss/lib/util/cloneDeep.js +23 -0
  37. package/dist/node_modules/.pnpm/tailwindcss@3.4.15_ts-node@10.9.2_@types_node@24.0.1_typescript@5.8.3_/node_modules/tailwindcss/lib/util/createPlugin.js +34 -0
  38. package/dist/node_modules/.pnpm/tailwindcss@3.4.15_ts-node@10.9.2_@types_node@24.0.1_typescript@5.8.3_/node_modules/tailwindcss/plugin.js +11 -0
  39. package/dist/node_modules/.pnpm/tailwindcss@3.4.15_ts-node@10.9.2_@types_node@24.0.1_typescript@5.8.3_/node_modules/tailwindcss/stubs/config.full.js +1068 -0
  40. package/dist/packages/components/lazyModules/Swiper/autoplay.js +2 -2
  41. package/dist/packages/components/lazyModules/Swiper/controller.js +2 -2
  42. package/dist/packages/components/lazyModules/Swiper/free-mode.js +2 -2
  43. package/dist/packages/components/lazyModules/Swiper/keyboard.js +2 -2
  44. package/dist/packages/components/lazyModules/Swiper/navigation.js +2 -2
  45. package/dist/packages/components/lazyModules/Swiper/pagination.js +2 -2
  46. package/dist/packages/components/lazyModules/Swiper/thumbs.js +2 -2
  47. package/dist/packages/components/lib/UIKit/AccessibleSelect.vue.js +24 -24
  48. package/dist/packages/components/lib/UIKit/Accordion/BaseAccordion.vue.js +10 -9
  49. package/dist/packages/components/lib/UIKit/Accordion/BaseAccordionBtn.vue.js +2 -2
  50. package/dist/packages/components/lib/UIKit/Accordion/BaseAccordionItem.vue.js +2 -2
  51. package/dist/packages/components/lib/UIKit/BaseAlert.vue.js +2 -2
  52. package/dist/packages/components/lib/UIKit/BaseAutocomplete.vue.js +106 -141
  53. package/dist/packages/components/lib/UIKit/BaseBadge.vue.js +16 -45
  54. package/dist/packages/components/lib/UIKit/BaseBanner.vue.js +9 -9
  55. package/dist/packages/components/lib/UIKit/BaseButton.vue.js +15 -15
  56. package/dist/packages/components/lib/UIKit/BaseChip.vue.js +2 -2
  57. package/dist/packages/components/lib/UIKit/BaseCollapse.vue.js +2 -2
  58. package/dist/packages/components/lib/UIKit/BaseDropDown.vue.js +53 -65
  59. package/dist/packages/components/lib/UIKit/BaseFloatingLabel.vue.js +4 -4
  60. package/dist/packages/components/lib/UIKit/BaseInput.vue.js +52 -51
  61. package/dist/packages/components/lib/UIKit/BaseModal.vue.js +2 -2
  62. package/dist/packages/components/lib/UIKit/BaseNotificationBadge.vue.js +1 -1
  63. package/dist/packages/components/lib/UIKit/BasePagination.vue.js +63 -40
  64. package/dist/packages/components/lib/UIKit/BasePin.vue.js +1 -1
  65. package/dist/packages/components/lib/UIKit/{NativeSelect.vue.js → BaseSelect.vue.js} +12 -12
  66. package/dist/packages/components/lib/UIKit/BaseSnackbar.vue.js +2 -2
  67. package/dist/packages/components/lib/UIKit/BaseTextarea.vue.js +8 -8
  68. package/dist/packages/components/lib/UIKit/BaseUploadFile.vue.js +1 -1
  69. package/dist/packages/components/lib/UIKit/Checkbox/CheckboxBtn.vue.js +4 -4
  70. package/dist/packages/components/lib/UIKit/Checkbox/CheckboxGroup.vue.js +7 -9
  71. package/dist/packages/components/lib/UIKit/DatePicker.vue.js +4 -4
  72. package/dist/packages/components/lib/UIKit/InputDropdown.vue.js +30 -30
  73. package/dist/packages/components/lib/UIKit/ShimmerLoader/BaseShimmerLoader.vue.js +1 -1
  74. package/dist/packages/components/lib/components/carousel/SwiperCarousel.vue.js +7 -6
  75. package/dist/packages/components/plugins/buttonPlugin.js +232 -0
  76. package/dist/tailwind.config.js +147 -0
  77. package/package.json +24 -31
  78. package/plugins/buttonPlugin.ts +290 -0
  79. package/dist/UIKit/NativeSelect.js +0 -5
  80. /package/dist/assets/node_modules/.pnpm/{swiper@11.2.8 → swiper@11.2.10}/node_modules/swiper/modules/free-mode.css +0 -0
  81. /package/dist/assets/node_modules/.pnpm/{swiper@11.2.8 → swiper@11.2.10}/node_modules/swiper/modules/navigation.css +0 -0
  82. /package/dist/assets/node_modules/.pnpm/{swiper@11.2.8 → swiper@11.2.10}/node_modules/swiper/modules/pagination.css +0 -0
  83. /package/dist/assets/node_modules/.pnpm/{swiper@11.2.8 → swiper@11.2.10}/node_modules/swiper/modules/zoom.css +0 -0
  84. /package/dist/assets/node_modules/.pnpm/{swiper@11.2.8 → swiper@11.2.10}/node_modules/swiper/swiper.css +0 -0
  85. /package/dist/node_modules/.pnpm/{@wikicasa-dev_svg-icons@1.2.12_typescript@5.8.3 → @wikicasa-dev_svg-icons@1.2.15-alpha.1_vue@3.5.16_typescript@5.8.3_}/node_modules/@wikicasa-dev/svg-icons/dist/ArrowFilledIcon.js +0 -0
  86. /package/dist/node_modules/.pnpm/{@wikicasa-dev_svg-icons@1.2.12_typescript@5.8.3 → @wikicasa-dev_svg-icons@1.2.15-alpha.1_vue@3.5.16_typescript@5.8.3_}/node_modules/@wikicasa-dev/svg-icons/dist/ArrowIcon.js +0 -0
  87. /package/dist/node_modules/.pnpm/{@wikicasa-dev_svg-icons@1.2.12_typescript@5.8.3 → @wikicasa-dev_svg-icons@1.2.15-alpha.1_vue@3.5.16_typescript@5.8.3_}/node_modules/@wikicasa-dev/svg-icons/dist/CheckIcon.js +0 -0
  88. /package/dist/node_modules/.pnpm/{@wikicasa-dev_svg-icons@1.2.12_typescript@5.8.3 → @wikicasa-dev_svg-icons@1.2.15-alpha.1_vue@3.5.16_typescript@5.8.3_}/node_modules/@wikicasa-dev/svg-icons/dist/CloseIcon.js +0 -0
  89. /package/dist/node_modules/.pnpm/{@wikicasa-dev_svg-icons@1.2.12_typescript@5.8.3 → @wikicasa-dev_svg-icons@1.2.15-alpha.1_vue@3.5.16_typescript@5.8.3_}/node_modules/@wikicasa-dev/svg-icons/dist/DefaultValues-CpabIgVz.js +0 -0
  90. /package/dist/node_modules/.pnpm/{@wikicasa-dev_svg-icons@1.2.12_typescript@5.8.3 → @wikicasa-dev_svg-icons@1.2.15-alpha.1_vue@3.5.16_typescript@5.8.3_}/node_modules/@wikicasa-dev/svg-icons/dist/PharmacyIcon.js +0 -0
  91. /package/dist/node_modules/.pnpm/{@wikicasa-dev_svg-icons@1.2.12_typescript@5.8.3 → @wikicasa-dev_svg-icons@1.2.15-alpha.1_vue@3.5.16_typescript@5.8.3_}/node_modules/@wikicasa-dev/svg-icons/dist/WarningIconRounded.js +0 -0
  92. /package/dist/node_modules/.pnpm/{@wikicasa-dev_svg-icons@1.2.12_typescript@5.8.3 → @wikicasa-dev_svg-icons@1.2.15-alpha.1_vue@3.5.16_typescript@5.8.3_}/node_modules/@wikicasa-dev/svg-icons/dist/svgIconFactory-BpnFimFz.js +0 -0
  93. /package/dist/node_modules/.pnpm/{@wikicasa-dev_utilities@1.1.21 → @wikicasa-dev_utilities@1.1.22-alpha.4}/node_modules/@wikicasa-dev/utilities/dist/utils/FunctionUtils.js +0 -0
  94. /package/dist/node_modules/.pnpm/{@wikicasa-dev_utilities@1.1.21 → @wikicasa-dev_utilities@1.1.22-alpha.4}/node_modules/@wikicasa-dev/utilities/dist/utils/ObjectUtils.js +0 -0
  95. /package/dist/node_modules/.pnpm/{@wikicasa-dev_vue-composables@0.0.23_typescript@5.8.3 → @wikicasa-dev_vue-composables@0.0.24-alpha.5_vue@3.5.16_typescript@5.8.3_}/node_modules/@wikicasa-dev/vue-composables/dist/useBreakpoints.js +0 -0
  96. /package/dist/node_modules/.pnpm/{@wikicasa-dev_vue-composables@0.0.23_typescript@5.8.3 → @wikicasa-dev_vue-composables@0.0.24-alpha.5_vue@3.5.16_typescript@5.8.3_}/node_modules/@wikicasa-dev/vue-composables/dist/useKeyboardController.js +0 -0
  97. /package/dist/node_modules/.pnpm/{swiper@11.2.8 → swiper@11.2.10}/node_modules/swiper/modules/autoplay.css.js +0 -0
  98. /package/dist/node_modules/.pnpm/{swiper@11.2.8 → swiper@11.2.10}/node_modules/swiper/modules/autoplay.js +0 -0
  99. /package/dist/node_modules/.pnpm/{swiper@11.2.8 → swiper@11.2.10}/node_modules/swiper/modules/controller.css.js +0 -0
  100. /package/dist/node_modules/.pnpm/{swiper@11.2.8 → swiper@11.2.10}/node_modules/swiper/modules/controller.js +0 -0
  101. /package/dist/node_modules/.pnpm/{swiper@11.2.8 → swiper@11.2.10}/node_modules/swiper/modules/free-mode.js +0 -0
  102. /package/dist/node_modules/.pnpm/{swiper@11.2.8 → swiper@11.2.10}/node_modules/swiper/modules/keyboard.css.js +0 -0
  103. /package/dist/node_modules/.pnpm/{swiper@11.2.8 → swiper@11.2.10}/node_modules/swiper/modules/navigation.js +0 -0
  104. /package/dist/node_modules/.pnpm/{swiper@11.2.8 → swiper@11.2.10}/node_modules/swiper/modules/pagination.js +0 -0
  105. /package/dist/node_modules/.pnpm/{swiper@11.2.8 → swiper@11.2.10}/node_modules/swiper/modules/thumbs.css.js +0 -0
  106. /package/dist/node_modules/.pnpm/{swiper@11.2.8 → swiper@11.2.10}/node_modules/swiper/modules/thumbs.js +0 -0
  107. /package/dist/node_modules/.pnpm/{swiper@11.2.8 → swiper@11.2.10}/node_modules/swiper/modules/zoom.js +0 -0
  108. /package/dist/node_modules/.pnpm/{swiper@11.2.8 → swiper@11.2.10}/node_modules/swiper/shared/create-element-if-not-defined.js +0 -0
  109. /package/dist/node_modules/.pnpm/{swiper@11.2.8 → swiper@11.2.10}/node_modules/swiper/shared/ssr-window.esm.js +0 -0
  110. /package/dist/node_modules/.pnpm/{swiper@11.2.8 → swiper@11.2.10}/node_modules/swiper/shared/utils.js +0 -0
@@ -1,22 +1,20 @@
1
- import { Nullable, BaseAutocompleteThemes } from '@wikicasa-dev/types';
1
+ import { Nullable, Optional } from '@wikicasa-dev/types';
2
2
  import { AccessibleSelectOptions, ClassTypeProp } from './types';
3
- declare const _default: <T, LabelID extends string | number | undefined>(__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<{
3
+ declare const _default: <T, LabelID extends string | number | undefined, TComponent>(__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<{
4
4
  props: __VLS_PrettifyLocal<Pick<Partial<{}> & Omit<{
5
5
  readonly onClick?: (() => any) | undefined;
6
- readonly "onUpdate:modelValue"?: ((value: AccessibleSelectOptions<T, LabelID> | undefined) => any) | undefined;
6
+ readonly "onUpdate:modelValue"?: ((value: Optional<AccessibleSelectOptions<T, LabelID, TComponent>>) => any) | undefined;
7
7
  readonly "onUpdate:dropdownState"?: ((args_0: boolean) => any) | undefined;
8
8
  readonly onKeydown?: ((args_0: KeyboardEvent) => any) | undefined;
9
9
  readonly onKeydownEnterPressed?: (() => any) | undefined;
10
10
  readonly onChangedValue?: ((args_0: string) => any) | undefined;
11
11
  } & import('vue').VNodeProps & import('vue').AllowedComponentProps & import('vue').ComponentCustomProps, never>, "onClick" | "onKeydown" | "onUpdate:modelValue" | "onUpdate:dropdownState" | "onKeydownEnterPressed" | "onChangedValue"> & ({
12
- modelValue?: AccessibleSelectOptions<T, LabelID> | undefined;
12
+ modelValue?: Optional<AccessibleSelectOptions<T, LabelID, TComponent>>;
13
13
  } & {
14
14
  isValid?: Nullable<boolean>;
15
- theme?: BaseAutocompleteThemes;
16
- label?: string;
17
15
  disableCb?: boolean;
18
- onInputChangeCb: (v: string) => Promise<AccessibleSelectOptions<T, LabelID>[]>;
19
- onOptionSelectedCb?: Nullable<(v: AccessibleSelectOptions<T, LabelID>) => void>;
16
+ onInputChangeCb: (v: string) => Promise<AccessibleSelectOptions<T, LabelID, TComponent>[]>;
17
+ onOptionSelectedCb?: Nullable<(v: AccessibleSelectOptions<T, LabelID, TComponent>) => void>;
20
18
  keepState?: Nullable<"closed" | "open">;
21
19
  cleanupOnClose?: boolean;
22
20
  dropdownClasses?: string;
@@ -26,19 +24,23 @@ declare const _default: <T, LabelID extends string | number | undefined>(__VLS_p
26
24
  closeDropdownOnBodyPressed?: boolean;
27
25
  inputClasses?: ClassTypeProp;
28
26
  fieldsetClasses?: ClassTypeProp;
27
+ placeholder?: string;
29
28
  dataCy?: string;
29
+ withBorder?: boolean;
30
+ withCleanBtn?: boolean;
30
31
  }) & Partial<{}>> & import('vue').PublicProps;
31
32
  expose(exposed: import('vue').ShallowUnwrapRef<{
32
33
  select: () => void;
33
34
  }>): void;
34
35
  attrs: any;
35
36
  slots: {
36
- lefticon?(_: {}): any;
37
- righticon?(_: {
38
- handleClean: () => void;
37
+ leftIcon?(_: {}): any;
38
+ dropdown?(_: {
39
+ options: import('@vue/reactivity').UnwrapRefSimple<AccessibleSelectOptions<T, LabelID, TComponent>>[];
40
+ toggleDropdown: () => void;
39
41
  }): any;
40
42
  };
41
- emit: (((evt: "click") => void) & ((evt: "update:dropdownState", args_0: boolean) => void) & ((evt: "keydown", args_0: KeyboardEvent) => void) & ((evt: "keydownEnterPressed") => void) & ((evt: "changedValue", args_0: string) => void)) & ((evt: "update:modelValue", value: AccessibleSelectOptions<T, LabelID> | undefined) => void);
43
+ emit: (((evt: "click") => void) & ((evt: "update:dropdownState", args_0: boolean) => void) & ((evt: "keydown", args_0: KeyboardEvent) => void) & ((evt: "keydownEnterPressed") => void) & ((evt: "changedValue", args_0: string) => void)) & ((evt: "update:modelValue", value: Optional<AccessibleSelectOptions<T, LabelID, TComponent>>) => void);
42
44
  }>) => import('vue').VNode & {
43
45
  __ctx?: Awaited<typeof __VLS_setup>;
44
46
  };
@@ -1,4 +1,5 @@
1
- import f from "../packages/components/lib/UIKit/BaseAutocomplete.vue.js";
1
+ import o from "../packages/components/lib/UIKit/BaseAutocomplete.vue.js";
2
+ import '../assets/packages/components/lib/UIKit/BaseAutocomplete.css';/* empty css */
2
3
  export {
3
- f as default
4
+ o as default
4
5
  };
@@ -1,42 +1,6 @@
1
- declare const badgeType: {
2
- /**
3
- * @deprecated Old style
4
- */
5
- readonly warning: "uikit-badge-w-warning";
6
- /**
7
- * @deprecated Old style
8
- */
9
- readonly lavender: "uikit-badge-w-lavender";
10
- /**
11
- * @deprecated Old style
12
- */
13
- readonly danger: "uikit-badge-w-danger";
14
- /**
15
- * @deprecated Old style
16
- */
17
- readonly "outline-tag": "uikit-badge-outline-tag";
18
- /**
19
- * @deprecated Old style
20
- */
21
- readonly "primary-sm": "uikit-badge-w-primary-sm";
22
- /**
23
- * @deprecated Old style
24
- */
25
- readonly "dark-primary": "uikit-badge-w-dark-primary";
26
- /**
27
- * @deprecated Old style
28
- */
29
- readonly "outline-tag-listing": "uikit-badge-outline-tag-listing";
30
- readonly gold: "uikit-badge-gold";
31
- readonly silver: "uikit-badge-silver";
32
- readonly premium: "uikit-badge-premium";
33
- readonly luxury: "uikit-badge-luxury";
34
- readonly alert: "uikit-badge-alert";
35
- readonly new: "uikit-badge-new";
36
- readonly discount: "uikit-badge-discount";
37
- };
38
1
  type __VLS_Props = {
39
- badgeClass?: keyof typeof badgeType;
2
+ badgeClass?: "gold" | "silver" | "black" | "darkblue" | "gray" | "pink" | "cultured";
3
+ type?: "rounded" | "squared" | "default";
40
4
  };
41
5
  declare function __VLS_template(): {
42
6
  attrs: Partial<{}>;
@@ -1,19 +1,15 @@
1
1
  import { Nullable, Optional } from '@wikicasa-dev/types';
2
- import { ClassType } from './types';
2
+ import { ClassTypeProp } from './types';
3
3
  type __VLS_Props = {
4
- dropdownClasses?: ClassType;
4
+ dropdownClasses?: ClassTypeProp;
5
5
  btnClasses?: string;
6
6
  withArrowIcon?: boolean;
7
7
  btnLabel?: string;
8
- labelClasses?: ClassType;
8
+ labelClasses?: ClassTypeProp;
9
9
  direction?: "up" | "down";
10
10
  arrowWidth?: number;
11
11
  arrowStrokeColor?: `#${string}`;
12
12
  isAbsolute?: boolean;
13
- /**
14
- * @deprecated Use v-model:toggleDropdown instead
15
- */
16
- openDropdown?: boolean;
17
13
  closeWhenClickedOutside?: boolean;
18
14
  dropdownElement?: "div" | "ul" | "ol";
19
15
  keepState?: "opened" | "closed" | "";
@@ -22,7 +18,7 @@ type __VLS_Props = {
22
18
  dataCy?: string;
23
19
  };
24
20
  type __VLS_PublicProps = {
25
- "toggleDropdown"?: Optional<boolean>;
21
+ "open"?: Optional<boolean>;
26
22
  } & __VLS_Props;
27
23
  declare function __VLS_template(): {
28
24
  attrs: Partial<{}>;
@@ -49,26 +45,25 @@ declare function __VLS_template(): {
49
45
  type __VLS_TemplateResult = ReturnType<typeof __VLS_template>;
50
46
  declare const __VLS_component: import('vue').DefineComponent<__VLS_PublicProps, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
51
47
  click: () => any;
52
- "update:toggleDropdown": (value: Optional<boolean>) => any;
53
48
  "update:dropdownState": (args_0: boolean) => any;
49
+ "update:open": (value: Optional<boolean>) => any;
54
50
  "update:selectedIdx": (args_0: number) => any;
55
51
  }, string, import('vue').PublicProps, Readonly<__VLS_PublicProps> & Readonly<{
56
52
  onClick?: (() => any) | undefined;
57
- "onUpdate:toggleDropdown"?: ((value: Optional<boolean>) => any) | undefined;
58
53
  "onUpdate:dropdownState"?: ((args_0: boolean) => any) | undefined;
54
+ "onUpdate:open"?: ((value: Optional<boolean>) => any) | undefined;
59
55
  "onUpdate:selectedIdx"?: ((args_0: number) => any) | undefined;
60
56
  }>, {
61
57
  dataCy: string;
62
58
  arrowWidth: number;
63
59
  btnClasses: string;
64
- labelClasses: string | Record<string, boolean> | ClassType[] | null;
65
- dropdownClasses: string | Record<string, boolean> | ClassType[] | null;
60
+ labelClasses: string | Record<string, boolean> | (string | Record<string, boolean> | (string | Record<string, boolean> | (string | Record<string, boolean> | (string | Record<string, boolean> | (string | Record<string, boolean> | (string | Record<string, boolean> | (string | Record<string, boolean> | (string | Record<string, boolean> | (string | Record<string, boolean> | (string | Record<string, boolean> | (string | Record<string, boolean> | /*elided*/ any | null | undefined)[] | null | undefined)[] | null | undefined)[] | null | undefined)[] | null | undefined)[] | null | undefined)[] | null | undefined)[] | null | undefined)[] | null | undefined)[] | null | undefined)[] | null | undefined)[] | (string | Record<string, boolean> | (string | Record<string, boolean> | (string | Record<string, boolean> | (string | Record<string, boolean> | (string | Record<string, boolean> | (string | Record<string, boolean> | (string | Record<string, boolean> | (string | Record<string, boolean> | (string | Record<string, boolean> | (string | Record<string, boolean> | (string | Record<string, boolean> | (string | Record<string, boolean> | /*elided*/ any | null | undefined)[] | null | undefined)[] | null | undefined)[] | null | undefined)[] | null | undefined)[] | null | undefined)[] | null | undefined)[] | null | undefined)[] | null | undefined)[] | null | undefined)[] | null | undefined)[] | null | undefined)[] | null;
61
+ dropdownClasses: string | Record<string, boolean> | (string | Record<string, boolean> | (string | Record<string, boolean> | (string | Record<string, boolean> | (string | Record<string, boolean> | (string | Record<string, boolean> | (string | Record<string, boolean> | (string | Record<string, boolean> | (string | Record<string, boolean> | (string | Record<string, boolean> | (string | Record<string, boolean> | (string | Record<string, boolean> | /*elided*/ any | null | undefined)[] | null | undefined)[] | null | undefined)[] | null | undefined)[] | null | undefined)[] | null | undefined)[] | null | undefined)[] | null | undefined)[] | null | undefined)[] | null | undefined)[] | null | undefined)[] | (string | Record<string, boolean> | (string | Record<string, boolean> | (string | Record<string, boolean> | (string | Record<string, boolean> | (string | Record<string, boolean> | (string | Record<string, boolean> | (string | Record<string, boolean> | (string | Record<string, boolean> | (string | Record<string, boolean> | (string | Record<string, boolean> | (string | Record<string, boolean> | (string | Record<string, boolean> | /*elided*/ any | null | undefined)[] | null | undefined)[] | null | undefined)[] | null | undefined)[] | null | undefined)[] | null | undefined)[] | null | undefined)[] | null | undefined)[] | null | undefined)[] | null | undefined)[] | null | undefined)[] | null | undefined)[] | null;
66
62
  withArrowIcon: boolean;
67
63
  btnLabel: string;
68
64
  direction: "up" | "down";
69
65
  arrowStrokeColor: `#${string}`;
70
66
  isAbsolute: boolean;
71
- openDropdown: boolean;
72
67
  closeWhenClickedOutside: boolean;
73
68
  dropdownElement: "div" | "ul" | "ol";
74
69
  keepState: "opened" | "closed" | "";
@@ -1,7 +1,6 @@
1
1
  import { Nullable, InputTypeHTMLAttribute } from '@wikicasa-dev/types';
2
- import { ClassType, ClassTypeProp, FeedbackLabels } from './types';
2
+ import { ClassTypeProp, FeedbackLabels } from './types';
3
3
  type __VLS_Props = {
4
- inputClass?: ClassType | ClassType[];
5
4
  labelText?: string;
6
5
  feedback?: FeedbackLabels;
7
6
  isValid?: Nullable<boolean>;
@@ -10,11 +9,11 @@ type __VLS_Props = {
10
9
  formatFn: (n: number | string) => string;
11
10
  unFormatFn: (v: string) => string | number | null;
12
11
  }>>;
12
+ inputClass?: ClassTypeProp;
13
13
  labelClasses?: ClassTypeProp;
14
14
  labelTextClasses?: ClassTypeProp;
15
- withLeftIcon?: boolean;
16
- withRightIcon?: boolean;
17
15
  dataCy?: string;
16
+ withBorder?: boolean;
18
17
  };
19
18
  type __VLS_PublicProps = {
20
19
  modelValue?: string | number | undefined;
@@ -23,7 +22,7 @@ declare function __VLS_template(): {
23
22
  attrs: Partial<{}>;
24
23
  slots: {
25
24
  leftIcon?(_: {}): any;
26
- righticon?(_: {
25
+ rightIcon?(_: {
27
26
  handleClean: () => void;
28
27
  handleShowPasswd: () => void;
29
28
  curType: InputTypeHTMLAttribute;
@@ -1,4 +1,5 @@
1
- import { Optional } from '@wikicasa-dev/types';
1
+ import { Nullable, Optional } from '@wikicasa-dev/types';
2
+ import { Component } from 'vue';
2
3
  type __VLS_Props = {
3
4
  /**
4
5
  * Number of elements in the list
@@ -17,6 +18,11 @@ type __VLS_Props = {
17
18
  nextLabel?: string;
18
19
  prevDataCy?: string;
19
20
  nextDataCy?: string;
21
+ linkProps?: Record<string, unknown>;
22
+ linkTag?: Component | "a";
23
+ baseUrl?: string;
24
+ pageQueryParameter?: string;
25
+ formatter?: (value?: Nullable<number>) => string;
20
26
  };
21
27
  type __VLS_PublicProps = {
22
28
  "pageNumber"?: Optional<number>;
@@ -0,0 +1,22 @@
1
+ type __VLS_Props = {
2
+ type?: "default" | "large" | "rounded";
3
+ pinClass?: "white" | "blue" | "cultured" | "dark-blue" | "red";
4
+ outlined?: boolean;
5
+ };
6
+ declare function __VLS_template(): {
7
+ attrs: Partial<{}>;
8
+ slots: {
9
+ default?(_: {}): any;
10
+ };
11
+ refs: {};
12
+ rootEl: HTMLSpanElement;
13
+ };
14
+ type __VLS_TemplateResult = ReturnType<typeof __VLS_template>;
15
+ 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, {}, HTMLSpanElement>;
16
+ declare const _default: __VLS_WithTemplateSlots<typeof __VLS_component, __VLS_TemplateResult["slots"]>;
17
+ export default _default;
18
+ type __VLS_WithTemplateSlots<T, S> = T & {
19
+ new (): {
20
+ $slots: S;
21
+ };
22
+ };
@@ -0,0 +1,26 @@
1
+ import { AccessibleSelectOptions, ClassTypeProp } from './types';
2
+ import { Optional } from '@wikicasa-dev/types';
3
+ declare const _default: <TPayload, TID extends string | number | undefined>(__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<{
4
+ props: __VLS_PrettifyLocal<Pick<Partial<{}> & Omit<{
5
+ readonly onChange?: ((args_0: Event) => any) | undefined;
6
+ readonly "onUpdate:modelValue"?: ((value: Optional<AccessibleSelectOptions<TPayload, TID>>) => any) | undefined;
7
+ } & import('vue').VNodeProps & import('vue').AllowedComponentProps & import('vue').ComponentCustomProps, never>, "onChange" | "onUpdate:modelValue"> & ({
8
+ modelValue?: Optional<AccessibleSelectOptions<TPayload, TID>>;
9
+ } & {
10
+ labelText?: string;
11
+ options?: AccessibleSelectOptions<TPayload, TID>[];
12
+ border?: boolean;
13
+ labelClasses?: ClassTypeProp;
14
+ arrowSize?: number;
15
+ }) & Partial<{}>> & import('vue').PublicProps;
16
+ expose(exposed: import('vue').ShallowUnwrapRef<{}>): void;
17
+ attrs: any;
18
+ slots: {};
19
+ emit: ((evt: "change", args_0: Event) => void) & ((evt: "update:modelValue", value: Optional<AccessibleSelectOptions<TPayload, TID>>) => 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,5 @@
1
+ import o from "../packages/components/lib/UIKit/BaseSelect.vue.js";
2
+ import '../assets/packages/components/lib/UIKit/BaseSelect.css';/* empty css */
3
+ export {
4
+ o as default
5
+ };
@@ -1,7 +1,7 @@
1
1
  import o from "../packages/components/lib/UIKit/BaseTextarea.vue.js";
2
2
  import '../assets/packages/components/lib/UIKit/BaseTextarea.css';/* empty css */
3
3
  import t from "../_virtual/_plugin-vue_export-helper.js";
4
- const c = /* @__PURE__ */ t(o, [["__scopeId", "data-v-48b631cc"]]);
4
+ const m = /* @__PURE__ */ t(o, [["__scopeId", "data-v-e9dd2650"]]);
5
5
  export {
6
- c as default
6
+ m as default
7
7
  };
@@ -1,9 +1,9 @@
1
- import { CheckboxButtonType, GetterIdType, ClassType } from '../types';
1
+ import { CheckboxButtonType, GetterIdType, ClassTypeProp } from '../types';
2
2
  type __VLS_Props = {
3
3
  checkboxData?: CheckboxButtonType[];
4
4
  formCheckInline?: boolean;
5
5
  reset?: boolean;
6
- checkboxContainerClasses?: ClassType;
6
+ checkboxContainerClasses?: ClassTypeProp;
7
7
  /**
8
8
  * [ResetCheckbox required] If true, when you check all the checkboxes, the reset one will be checked
9
9
  */
@@ -54,7 +54,7 @@ declare const __VLS_component: import('vue').DefineComponent<__VLS_Props, {}, {}
54
54
  dataCy: string;
55
55
  checkboxData: CheckboxButtonType[];
56
56
  formCheckInline: boolean;
57
- checkboxContainerClasses: string | Record<string, boolean> | ClassType[] | null;
57
+ checkboxContainerClasses: string | Record<string, boolean> | (string | Record<string, boolean> | (string | Record<string, boolean> | (string | Record<string, boolean> | (string | Record<string, boolean> | (string | Record<string, boolean> | (string | Record<string, boolean> | (string | Record<string, boolean> | (string | Record<string, boolean> | (string | Record<string, boolean> | (string | Record<string, boolean> | (string | Record<string, boolean> | /*elided*/ any | null | undefined)[] | null | undefined)[] | null | undefined)[] | null | undefined)[] | null | undefined)[] | null | undefined)[] | null | undefined)[] | null | undefined)[] | null | undefined)[] | null | undefined)[] | null | undefined)[] | (string | Record<string, boolean> | (string | Record<string, boolean> | (string | Record<string, boolean> | (string | Record<string, boolean> | (string | Record<string, boolean> | (string | Record<string, boolean> | (string | Record<string, boolean> | (string | Record<string, boolean> | (string | Record<string, boolean> | (string | Record<string, boolean> | (string | Record<string, boolean> | (string | Record<string, boolean> | /*elided*/ any | null | undefined)[] | null | undefined)[] | null | undefined)[] | null | undefined)[] | null | undefined)[] | null | undefined)[] | null | undefined)[] | null | undefined)[] | null | undefined)[] | null | undefined)[] | null | undefined)[] | null | undefined)[] | null;
58
58
  autoCheckResetAll: boolean;
59
59
  autoCheckResetEmpty: boolean;
60
60
  manualToggleResetButton: boolean;
@@ -1,4 +1,5 @@
1
1
  import { Icon, LabelItem, IconItem, AccordionItem } from '@wikicasa-dev/types';
2
+ import { Component } from 'vue';
2
3
  export type CardTypes = "mini" | "vertical" | "news" | "";
3
4
  export type CardRootTypes = "div" | "article";
4
5
  /** Toggle types */
@@ -44,9 +45,11 @@ export type FeedbackLabels = {
44
45
  export type SelectOptions<T = void> = IconItem & LabelItem & {
45
46
  payload?: T;
46
47
  };
47
- export type AccessibleSelectOptions<TData = unknown, TID = string | number | undefined> = IconItem & LabelItem<TID> & {
48
+ export type AccessibleSelectOptions<TData = unknown, TID = string | number | undefined, TComponent = Component> = LabelItem<TID> & {
48
49
  visibleLabel?: string;
49
- } & TData;
50
+ } & TData & {
51
+ icon?: TComponent;
52
+ };
50
53
  export type RadioButtonType<T = unknown> = {
51
54
  id?: string | number | null;
52
55
  label: string | number;
@@ -55,7 +58,7 @@ export type RadioButtonType<T = unknown> = {
55
58
  };
56
59
  export type AccordionItemDecorated<T = unknown> = Record<string | number, T & Partial<AccordionItem>>;
57
60
  export type BtnVariant = "primary" | "secondary" | "ternary" | "quaternary" | "warning" | "danger" | "transparent" | "light" | "show-more" | "multi-selection" | "single-selection" | "facile";
58
- export type ClassType = string | Record<string, boolean> | null | undefined | ClassType[];
61
+ type ClassType = string | Record<string, boolean> | null | undefined | ClassType[];
59
62
  export type ClassTypeProp = ClassType | ClassType[];
60
63
  export type SegmentedControlItemType<T = unknown> = {
61
64
  label: string;
@@ -65,3 +68,4 @@ export type SegmentedControlItemType<T = unknown> = {
65
68
  single?: boolean;
66
69
  payload?: T;
67
70
  };
71
+ export {};
@@ -0,0 +1,6 @@
1
+ function e(t) {
2
+ return t && t.__esModule && Object.prototype.hasOwnProperty.call(t, "default") ? t.default : t;
3
+ }
4
+ export {
5
+ e as getDefaultExportFromCjs
6
+ };
@@ -0,0 +1,4 @@
1
+ var e = {};
2
+ export {
3
+ e as __exports
4
+ };
@@ -0,0 +1,4 @@
1
+ var e = {};
2
+ export {
3
+ e as __exports
4
+ };
@@ -0,0 +1,4 @@
1
+ var e = {};
2
+ export {
3
+ e as __exports
4
+ };
@@ -0,0 +1,4 @@
1
+ var e = {};
2
+ export {
3
+ e as __exports
4
+ };
@@ -0,0 +1,7 @@
1
+ import { getDefaultExportFromCjs as e } from "./_commonjsHelpers.js";
2
+ import { __require as r } from "../node_modules/.pnpm/tailwindcss@3.4.15_ts-node@10.9.2_@types_node@24.0.1_typescript@5.8.3_/node_modules/tailwindcss/defaultTheme.js";
3
+ var t = r();
4
+ const m = /* @__PURE__ */ e(t);
5
+ export {
6
+ m as default
7
+ };
@@ -0,0 +1,7 @@
1
+ import { getDefaultExportFromCjs as r } from "./_commonjsHelpers.js";
2
+ import { __require as o } from "../node_modules/.pnpm/tailwindcss@3.4.15_ts-node@10.9.2_@types_node@24.0.1_typescript@5.8.3_/node_modules/tailwindcss/plugin.js";
3
+ var t = o();
4
+ const p = /* @__PURE__ */ r(t);
5
+ export {
6
+ p as default
7
+ };
@@ -1 +1 @@
1
- .uikit-alert{--uikit-alert-bg-color: #e9effe;--uikit-alert-text-color: #2b5dff;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.uikit-alert-w-dark-primary{--uikit-alert-bg-color: #2a3761;--uikit-alert-text-color: #fff}.toast-root{will-change:animation,transform,opacity}.toast-root[data-state=open]{animation:slideLeft .1s ease-out}.toast-root[data-state=closed]{animation:slideRight .1s ease-out}.toast-root[data-swipe=move]{transform:translate(var(--reka-toast-swipe-move-x))}.toast-root[data-swipe=cancel]{transform:translate(0);transition:transform .2s ease-out}.toast-root[data-swipe=end]{animation:slideRight .1s ease-out}@keyframes slideLeft{0%{transform:translate(100%);opacity:0}to{transform:translate(var(--reka-toast-swipe-end-x));opacity:1}}@keyframes slideRight{0%{transform:translate(var(--reka-toast-swipe-end-x));opacity:1}to{transform:translate(100%);opacity:0}}
1
+ .uikit-alert{--uikit-alert-bg-color: #e9effe;--uikit-alert-text-color: #2b5dff;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.uikit-alert-w-darkblue{--uikit-alert-bg-color: #2a3761;--uikit-alert-text-color: #fff}.toast-root{will-change:animation,transform,opacity}.toast-root[data-state=open]{animation:slideLeft .1s ease-out}.toast-root[data-state=closed]{animation:slideRight .1s ease-out}.toast-root[data-swipe=move]{transform:translate(var(--reka-toast-swipe-move-x))}.toast-root[data-swipe=cancel]{transform:translate(0);transition:transform .2s ease-out}.toast-root[data-swipe=end]{animation:slideRight .1s ease-out}@keyframes slideLeft{0%{transform:translate(100%);opacity:0}to{transform:translate(var(--reka-toast-swipe-end-x));opacity:1}}@keyframes slideRight{0%{transform:translate(var(--reka-toast-swipe-end-x));opacity:1}to{transform:translate(100%);opacity:0}}
@@ -0,0 +1 @@
1
+ .uikit-input-wrapper .base-autocomplete-input{--input-height: 40px}.uikit-input-wrapper .base-autocomplete-input .text-input-icon{--icon-top: 10px}
@@ -1 +1 @@
1
- .uikit-badge{--uikit-badge-text-color: #fff;color:var(--uikit-badge-text-color)}.uikit-badge-w-warning{--tw-bg-opacity: 1;background-color:rgb(255 209 103 / var(--tw-bg-opacity, 1));--tw-text-opacity: 1;color:rgb(22 47 128 / var(--tw-text-opacity, 1))}.uikit-badge-w-lavender{--tw-bg-opacity: 1;background-color:rgb(22 47 128 / var(--tw-bg-opacity, 1));--tw-text-opacity: 1;color:rgb(22 47 128 / var(--tw-text-opacity, 1));--tw-shadow: 0 1px 6px #79797929;--tw-shadow-colored: 0 1px 6px var(--tw-shadow-color);box-shadow:var(--tw-ring-offset-shadow, 0 0 #0000),var(--tw-ring-shadow, 0 0 #0000),var(--tw-shadow)}.uikit-badge-outline-tag{border-radius:20px;border-width:1px;border-style:solid;--tw-border-opacity: 1;border-color:rgb(34 34 34 / var(--tw-border-opacity, 1));padding:8px 18px;font-weight:400;--tw-text-opacity: 1;color:rgb(34 34 34 / var(--tw-text-opacity, 1))}.uikit-badge-outline-tag-listing{border-radius:20px;border-width:1px;border-style:solid;--tw-border-opacity: 1;border-color:rgb(34 34 34 / var(--tw-border-opacity, 1));--tw-bg-opacity: 1;background-color:rgb(255 255 255 / var(--tw-bg-opacity, 1));font-size:12px;font-weight:400;--tw-text-opacity: 1;color:rgb(34 34 34 / var(--tw-text-opacity, 1))}.uikit-badge-w-primary-sm{height:24px;border-radius:10px;--tw-bg-opacity: 1;background-color:rgb(242 2 130 / var(--tw-bg-opacity, 1));font-size:10px;font-weight:500;line-height:inherit;--tw-text-opacity: 1;color:rgb(255 255 255 / var(--tw-text-opacity, 1))}.uikit-badge-w-dark-primary{--tw-bg-opacity: 1;background-color:rgb(242 0 3 / var(--tw-bg-opacity, 1));padding-left:11px;padding-right:11px}@media (min-width: 640px){.uikit-badge-w-dark-primary{padding-right:8px;font-size:12px}}.uikit-badge-w-danger{--tw-bg-opacity: 1;background-color:rgb(242 0 3 / var(--tw-bg-opacity, 1));--tw-text-opacity: 1;color:rgb(255 255 255 / var(--tw-text-opacity, 1))}.uikit-badge-gold{background:transparent linear-gradient(125deg,#d1953b,#deb762) 0% 0% no-repeat padding-box}.uikit-badge-silver{background:transparent linear-gradient(166deg,#cbcbcb,#a7a7a7 54%,#cbcbcb) 0% 0% no-repeat padding-box}.uikit-badge-premium{background:transparent linear-gradient(151deg,#272727,#696969 52%,#272727) 0% 0% no-repeat padding-box}.uikit-badge-luxury{--tw-bg-opacity: 1;background-color:rgb(22 47 128 / var(--tw-bg-opacity, 1))}.uikit-badge-alert{background-color:#2222227f}.uikit-badge-new{border-width:1px;border-style:solid;--tw-border-opacity: 1;border-color:rgb(255 255 255 / var(--tw-border-opacity, 1));--tw-bg-opacity: 1;background-color:rgb(242 2 130 / var(--tw-bg-opacity, 1))}.uikit-badge-discount{--uikit-badge-text-color: #222222;--tw-bg-opacity: 1;background-color:rgb(244 247 255 / var(--tw-bg-opacity, 1))}
1
+ .uikit-badge{--uikit-badge-text-color: #fff;color:var(--uikit-badge-text-color)}.badge-gold{background:transparent linear-gradient(125deg,#d1953b,#deb762) 0% 0% no-repeat padding-box}.badge-silver{background:transparent linear-gradient(166deg,#cbcbcb,#a7a7a7 54%,#cbcbcb) 0% 0% no-repeat padding-box}.badge-gold,.badge-silver{--badge-custom-size: 28px;height:var(--badge-custom-size);width:var(--badge-custom-size)}.badge-black{background:transparent linear-gradient(151deg,#272727,#696969 52%,#272727) 0% 0% no-repeat padding-box}.badge-darkblue{--tw-bg-opacity: 1;background-color:rgb(22 47 128 / var(--tw-bg-opacity, 1))}.badge-gray{background-color:#2222227f}.badge-pink{border-width:1px;border-style:solid;--tw-border-opacity: 1;border-color:rgb(255 255 255 / var(--tw-border-opacity, 1));--tw-bg-opacity: 1;background-color:rgb(242 2 130 / var(--tw-bg-opacity, 1))}.badge-cultured{--uikit-badge-text-color: #222222;--tw-bg-opacity: 1;background-color:rgb(244 247 255 / var(--tw-bg-opacity, 1))}
@@ -1 +1 @@
1
- .base-complex-toggle[data-v-7737664c]{--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: #162F80;--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-7737664c]{--base-complex-toggle-height: 56px;--base-complex-toggle-width: 342px;--base-complex-toggle-radius: 28px}@media screen and (max-width: 640px){.base-complex-toggle.mobile[data-v-7737664c]{--base-complex-toggle-width: 342px }}.base-complex-toggle[data-v-7737664c]{width:var(--toggle-width);height:var(--toggle-height);border:var(--toggle-border);border-radius:var(--toggle-border-radius)}.base-complex-toggle-active[data-v-7737664c]{--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-7737664c],.base-complex-toggle-active[data-btn-bg-color=uikit-bg-w-darkblue][data-v-7737664c]{--base-complex-toggle-active-color: #222222}.base-complex-toggle-active-bg[data-v-7737664c]{--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: 640px){.base-complex-toggle-active-bg .mobile[data-v-7737664c]{--toggle-bg-width: var(--base-complex-toggle-bg-lg-width) }}.base-complex-toggle-active-bg[data-v-7737664c]{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-7737664c]{--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: 640px){.base-complex-toggle-active-padded-bg.mobile[data-v-7737664c]{--toggle-bg-width: var(--base-complex-toggle-bg-padded-width) }}.base-complex-toggle-active-padded-bg[data-v-7737664c]{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-7737664c]{transform:var(--left-translateX)}@media screen and (max-width: 640px){.translateX-left.mobile[data-v-7737664c]{transform:var(--left-translateX)}}.translateX-right[data-v-7737664c]{transform:var(--right-translateX)}@media screen and (max-width: 640px){.translateX-right.mobile[data-v-7737664c]{transform:var(--right-translateX)}}
1
+ .base-complex-toggle[data-v-7737664c]{--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: #162F80;--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-7737664c]{--base-complex-toggle-height: 56px;--base-complex-toggle-width: 342px;--base-complex-toggle-radius: 28px}@media screen and (max-width: 640px){.base-complex-toggle.mobile[data-v-7737664c]{--base-complex-toggle-width: 342px }}.base-complex-toggle[data-v-7737664c]{width:var(--toggle-width);height:var(--toggle-height);border:var(--toggle-border);border-radius:var(--toggle-border-radius)}.base-complex-toggle-active[data-v-7737664c]{--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-7737664c]{--base-complex-toggle-active-color: #222222}.base-complex-toggle-active-bg[data-v-7737664c]{--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: 640px){.base-complex-toggle-active-bg .mobile[data-v-7737664c]{--toggle-bg-width: var(--base-complex-toggle-bg-lg-width) }}.base-complex-toggle-active-bg[data-v-7737664c]{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-7737664c]{--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: 640px){.base-complex-toggle-active-padded-bg.mobile[data-v-7737664c]{--toggle-bg-width: var(--base-complex-toggle-bg-padded-width) }}.base-complex-toggle-active-padded-bg[data-v-7737664c]{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-7737664c]{transform:var(--left-translateX)}@media screen and (max-width: 640px){.translateX-left.mobile[data-v-7737664c]{transform:var(--left-translateX)}}.translateX-right[data-v-7737664c]{transform:var(--right-translateX)}@media screen and (max-width: 640px){.translateX-right.mobile[data-v-7737664c]{transform:var(--right-translateX)}}
@@ -1 +1 @@
1
- .uikit-input-wrapper{--input-icon-size: 20px;--input-padding-with-icon: 40px}.uikit-input-wrapper.has-right-icon input{padding-right:var(--input-padding-with-icon)}.uikit-input-wrapper.has-right-icon>label{right:var(--input-padding-with-icon)}.uikit-input-wrapper.has-left-icon input{padding-left:var(--input-padding-with-icon)}.uikit-input-wrapper.has-left-icon>label{left:var(--input-padding-with-icon)}.uikit-input-wrapper .text-input-icon{position:absolute;z-index:20;box-sizing:border-box}.uikit-input-wrapper .text-input-icon.left{left:12px}.uikit-input-wrapper .text-input-icon.right{right:12px}.uikit-input-wrapper .text-input-icon{--icon-top: 18px;width:var(--input-icon-size);height:var(--input-icon-size);top:var(--icon-top)}.uikit-input-wrapper .under-label{left:4px;font-style:italic}
1
+ .uikit-input-wrapper{--input-icon-size: 20px;--input-padding-with-icon: 40px;--input-height: 56px}.uikit-input-wrapper.has-right-icon input{padding-right:var(--input-padding-with-icon)}.uikit-input-wrapper.has-right-icon>label{right:var(--input-padding-with-icon)}.uikit-input-wrapper.has-left-icon input{padding-left:var(--input-padding-with-icon)}.uikit-input-wrapper.has-left-icon>label{left:var(--input-padding-with-icon)}.uikit-input-wrapper .text-input-icon{position:absolute;z-index:20;box-sizing:border-box}.uikit-input-wrapper .text-input-icon.left{left:12px}.uikit-input-wrapper .text-input-icon.right{right:12px}.uikit-input-wrapper .text-input-icon{--icon-top: 18px;width:var(--input-icon-size);height:var(--input-icon-size);top:var(--icon-top)}.uikit-input-wrapper .under-label{left:4px;font-style:italic}.uikit-input-wrapper .input-element{height:var(--input-height)}
@@ -1 +1 @@
1
- .uikit-pin{--pin-bg-color: #fff;--pin-color: #2b5dff;--pin-arrow-top: 4px}.uikit-pin.uikit-pin-blue{--pin-bg-color: #2b5dff;--pin-color: #fff}.uikit-pin.uikit-pin-cultured{--pin-bg-color: #F4F7FF;--pin-color: #222222}.uikit-pin.uikit-pin-dark-blue{--pin-bg-color: #162F80;--pin-color: #fff}.uikit-pin.uikit-pin-outlined{--pin-border-width: 1px;--pin-border-color: #2b5dff;--pin-arrow-top: 3px}.uikit-pin.uikit-pin-outlined.uikit-pin-red{--pin-border-color: #F20003;--pin-color: #F20003}.uikit-pin.uikit-pin-outlined .uikit-pin-body:after{content:"";width:15px;height:2px;position:absolute;background-color:var(--pin-bg-color);bottom:0;left:26.5px}.uikit-pin.uikit-pin-rounded{--pin-border-color: #2b5dff;--pin-border-width: 2px}.uikit-pin.uikit-pin-rounded.uikit-pin-blue{--pin-border-color: #fff}.uikit-pin .uikit-pin-body{background-color:var(--pin-bg-color);color:var(--pin-color);border:var(--pin-border-width) var(--pin-border-color) solid;box-shadow:0 5px 10px #0000001a}.uikit-pin .uikit-pin-arrow{position:absolute;background-color:var(--pin-bg-color);text-align:left;top:calc(100% - 8px);left:calc(50% - 8px);width:15px;height:15px;border-bottom-left-radius:4px;clip-path:polygon(0% 0%,0 100%,100% 100%);transform:rotate(-56deg) skew(-20deg) scaleY(.95);border:var(--pin-border-width) var(--pin-border-color) solid}
1
+ .uikit-pin{--pin-bg-color: #fff;--pin-color: #2b5dff;--pin-arrow-top: 4px}.uikit-pin.uikit-pin-blue{--pin-bg-color: #2b5dff;--pin-color: #fff}.uikit-pin.uikit-pin-cultured{--pin-bg-color: #F4F7FF;--pin-color: #222222}.uikit-pin.uikit-pin-dark-blue{--pin-bg-color: #162F80;--pin-color: #fff}.uikit-pin.uikit-pin-outlined{--pin-border-width: 1px;--pin-border-color: #2b5dff;--pin-arrow-top: 3px}.uikit-pin.uikit-pin-outlined.uikit-pin-red{--pin-border-color: #F20003;--pin-color: #F20003}.uikit-pin.uikit-pin-outlined .uikit-pin-body:after{content:"";width:15px;height:2px;position:absolute;background-color:var(--pin-bg-color);bottom:0;left:28.5px}.uikit-pin.uikit-pin-rounded{--pin-border-color: #2b5dff;--pin-border-width: 2px}.uikit-pin.uikit-pin-rounded.uikit-pin-blue{--pin-border-color: #fff}.uikit-pin .uikit-pin-body{background-color:var(--pin-bg-color);color:var(--pin-color);border:var(--pin-border-width) var(--pin-border-color) solid;box-shadow:0 5px 10px #0000001a}.uikit-pin .uikit-pin-arrow{position:absolute;background-color:var(--pin-bg-color);text-align:left;top:calc(100% - 8px);left:calc(50% - 8px);width:15px;height:15px;border-bottom-left-radius:4px;clip-path:polygon(0% 0%,0 100%,100% 100%);transform:rotate(-56deg) skew(-20deg) scaleY(.95);border:var(--pin-border-width) var(--pin-border-color) solid}
@@ -1 +1 @@
1
- .select-wrapper{position:relative;display:inline-block}.select-wrapper select{appearance:none;-webkit-appearance:none;-moz-appearance:none;background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' width='16' height='16' viewBox='0 0 16 16'%3E%3Cg%3E%3Cpath d='M21.006,9.708l-7.448,7.448a.543.543,0,0,1-.779,0L5.331,9.708a.548.548,0,0,1,.384-.932H20.622A.543.543,0,0,1,21.006,9.708Z' transform='translate(-5.172 -5.048)' fill='%230e1d34'/%3E%3C/g%3E%3C/svg%3E");background-repeat:no-repeat;background-position:right 12px center;background-size:var(--f3734614)}
1
+ .select-wrapper{position:relative;display:inline-block}.select-wrapper select{appearance:none;-webkit-appearance:none;-moz-appearance:none;background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' width='16' height='16' viewBox='0 0 16 16'%3E%3Cg%3E%3Cpath d='M21.006,9.708l-7.448,7.448a.543.543,0,0,1-.779,0L5.331,9.708a.548.548,0,0,1,.384-.932H20.622A.543.543,0,0,1,21.006,9.708Z' transform='translate(-5.172 -5.048)' fill='%230e1d34'/%3E%3C/g%3E%3C/svg%3E");background-repeat:no-repeat;background-position:right 12px center;background-size:var(--7c189782)}
@@ -1 +1 @@
1
- .invalid-bg[data-v-48b631cc],.valid-bg[data-v-48b631cc]{background-position:top 0px right 12px;background-size:20px}.textarea-scrollbar[data-v-48b631cc]::-webkit-scrollbar{width:8px;height:6px}.textarea-scrollbar[data-v-48b631cc]::-webkit-scrollbar-track{--tw-bg-opacity: 1;background-color:rgb(244 247 255 / var(--tw-bg-opacity, 1))}.textarea-scrollbar[data-v-48b631cc]::-webkit-scrollbar-thumb{border-radius:5px;--tw-bg-opacity: 1;background-color:rgb(22 47 128 / var(--tw-bg-opacity, 1))}.is-valid.textarea-scrollbar[data-v-48b631cc]::-webkit-scrollbar-thumb{background-color:#f20282!important}.is-invalid.textarea-scrollbar[data-v-48b631cc]::-webkit-scrollbar-thumb{background-color:#f20003!important}
1
+ .invalid-bg[data-v-e9dd2650],.valid-bg[data-v-e9dd2650]{background-position:top 0px right 12px;background-size:20px}.textarea-scrollbar[data-v-e9dd2650]::-webkit-scrollbar{width:8px;height:6px}.textarea-scrollbar[data-v-e9dd2650]::-webkit-scrollbar-track{--tw-bg-opacity: 1;background-color:rgb(244 247 255 / var(--tw-bg-opacity, 1))}.textarea-scrollbar[data-v-e9dd2650]::-webkit-scrollbar-thumb{border-radius:5px;--tw-bg-opacity: 1;background-color:rgb(22 47 128 / var(--tw-bg-opacity, 1))}.is-valid.textarea-scrollbar[data-v-e9dd2650]::-webkit-scrollbar-thumb{background-color:#f20282!important}.is-invalid.textarea-scrollbar[data-v-e9dd2650]::-webkit-scrollbar-thumb{background-color:#f20003!important}