@club-employes/utopia 4.95.0 → 4.97.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (28) hide show
  1. package/README.md +3 -3
  2. package/dist/components/atoms/Checkbox/Checkbox.d.ts +1 -0
  3. package/dist/components/atoms/Checkbox/index.d.ts +1 -0
  4. package/dist/components/atoms/Checkbox/types.d.ts +1 -0
  5. package/dist/components/atoms/FilterButton/FilterButton.d.ts +13 -0
  6. package/dist/components/atoms/FilterButton/index.d.ts +2 -0
  7. package/dist/components/atoms/FilterButton/types.d.ts +8 -0
  8. package/dist/components/atoms/InputText/index.d.ts +1 -0
  9. package/dist/components/atoms/ProgressBar/index.d.ts +1 -0
  10. package/dist/components/atoms/RadioBox/index.d.ts +1 -0
  11. package/dist/components/atoms/index.d.ts +9 -13
  12. package/dist/components/molecules/DropDown/DropDown.d.ts +1 -1
  13. package/dist/components/molecules/FilterSelect/types.d.ts +1 -0
  14. package/dist/components/molecules/InputPhone/InputPhone.d.ts +1 -1
  15. package/dist/components/molecules/Modal/Modal.d.ts +2 -1
  16. package/dist/components/molecules/PriceSummary/PriceSummary.d.ts +9 -0
  17. package/dist/components/molecules/PriceSummary/index.d.ts +2 -0
  18. package/dist/components/molecules/PriceSummary/types.d.ts +9 -0
  19. package/dist/components/molecules/RadioCard/index.d.ts +1 -0
  20. package/dist/components/molecules/index.d.ts +2 -2
  21. package/dist/components/organisms/DropFile/DropFile.d.ts +2 -1
  22. package/dist/components/organisms/FilterGroup/FilterGroup.d.ts +1 -1
  23. package/dist/components/organisms/FilterGroup/types.d.ts +1 -0
  24. package/dist/icons-list.json +1 -1
  25. package/dist/index.d.ts +2 -0
  26. package/dist/index.js +6941 -6660
  27. package/dist/utopia.css +1 -1
  28. package/package.json +1 -1
package/README.md CHANGED
@@ -274,9 +274,9 @@ Components are mobile-first and responsive by default:
274
274
  ```vue
275
275
  <template>
276
276
  <Button
277
- size="small" <!-- Mobile -->
278
- :size-md="'medium'" <!-- Tablet -->
279
- :size-lg="'large'" <!-- Desktop -->
277
+ size="small" <!-- Mobile -->
278
+ size-md="medium" <!-- Tablet -->
279
+ size-lg="large" <!-- Desktop -->
280
280
  >
281
281
  Responsive Button
282
282
  </Button>
@@ -17,6 +17,7 @@ declare const __VLS_component: DefineComponent<CheckboxProps, {}, {}, {}, {}, Co
17
17
  size: "small" | "medium" | "large";
18
18
  disabled: boolean;
19
19
  modelValue: boolean;
20
+ partial: boolean;
20
21
  focusable: boolean;
21
22
  }, {}, {}, {}, string, ComponentProvideOptions, false, {}, HTMLLabelElement>;
22
23
  declare const _default: __VLS_WithTemplateSlots<typeof __VLS_component, __VLS_TemplateResult["slots"]>;
@@ -1 +1,2 @@
1
1
  export { default as Checkbox } from './Checkbox';
2
+ export type { CheckboxProps } from './types';
@@ -1,5 +1,6 @@
1
1
  export interface CheckboxProps {
2
2
  modelValue?: boolean;
3
+ partial?: boolean;
3
4
  disabled?: boolean;
4
5
  focusable?: boolean;
5
6
  size?: 'small' | 'medium' | 'large';
@@ -0,0 +1,13 @@
1
+ import { FilterButtonProps } from './types';
2
+ import { DefineComponent, ComponentOptionsMixin, PublicProps, ComponentProvideOptions } from 'vue';
3
+ declare const _default: DefineComponent<FilterButtonProps, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
4
+ toggle: (args_0: boolean) => any;
5
+ }, string, PublicProps, Readonly<FilterButtonProps> & Readonly<{
6
+ onToggle?: ((args_0: boolean) => any) | undefined;
7
+ }>, {
8
+ active: boolean;
9
+ count: number;
10
+ opened: boolean;
11
+ fullWidth: boolean;
12
+ }, {}, {}, {}, string, ComponentProvideOptions, false, {}, HTMLDivElement>;
13
+ export default _default;
@@ -0,0 +1,2 @@
1
+ export { default as FilterButton } from './FilterButton';
2
+ export type { FilterButtonProps } from './types';
@@ -0,0 +1,8 @@
1
+ export interface FilterButtonProps {
2
+ label?: string;
3
+ count?: number;
4
+ active?: boolean;
5
+ opened?: boolean;
6
+ icon?: string;
7
+ fullWidth?: boolean;
8
+ }
@@ -1 +1,2 @@
1
1
  export { default as InputText } from './InputText';
2
+ export type { InputTextProps } from './types';
@@ -1 +1,2 @@
1
1
  export { default as ProgressBar } from './ProgressBar';
2
+ export type { ProgressBarProps } from './types';
@@ -1 +1,2 @@
1
1
  export { default as RadioBox } from './RadioBox';
2
+ export type { RadioBoxProps } from './types';
@@ -1,18 +1,18 @@
1
1
  export { Button } from './Button';
2
- export { Card } from './Card';
3
- export type { CardProps } from './Card';
4
- export { Checkbox } from './Checkbox';
5
- export { Chip } from './Chip';
6
- export type { ChipProps } from './Chip';
7
- export { Icon } from './Icon';
8
- export { InputText } from './InputText';
9
- export { Logo } from './Logo';
10
- export type { LogoBrand, LogoSize, LogoVariant } from './Logo';
2
+ export { Card, type CardProps } from './Card';
3
+ export { Checkbox, type CheckboxProps } from './Checkbox';
4
+ export { Chip, type ChipProps } from './Chip';
5
+ export { Icon, type IconProps } from './Icon';
6
+ export { InputText, type InputTextProps } from './InputText';
7
+ export { Logo, type LogoBrand, type LogoSize, type LogoVariant } from './Logo';
11
8
  export { Skeleton, SkeletonAvatar, SkeletonText } from './Skeleton';
12
9
  export { Switch } from './Switch';
13
10
  export { Link } from './Link';
14
11
  export { Text } from './Text';
15
12
  export { RangeSlider } from './RangeSlider';
13
+ export { ProgressBar, type ProgressBarProps } from './ProgressBar';
14
+ export { RadioBox, type RadioBoxProps } from './RadioBox';
15
+ export { FilterButton, type FilterButtonProps } from './FilterButton';
16
16
  export type BadgeVariant = 'default' | 'success' | 'warning' | 'danger';
17
17
  export type BadgeSize = 'small' | 'medium';
18
18
  export type ButtonVariant = 'primary' | 'secondary' | 'outline' | 'ghost' | 'danger';
@@ -21,7 +21,3 @@ export type IconName = string;
21
21
  export type IconSize = 'extra-small' | 'small' | 'medium' | 'large';
22
22
  export type IconColor = 'primary' | 'secondary' | 'success' | 'warning' | 'danger' | 'neutral' | 'current';
23
23
  export type Currency = '€' | '£';
24
- export { ProgressBar } from './ProgressBar';
25
- export type { ProgressBarProps } from './ProgressBar';
26
- export { RadioBox } from './RadioBox';
27
- export type { RadioBoxProps } from './RadioBox';
@@ -1,6 +1,6 @@
1
1
  import { DropDownOption, DropDownProps } from './types';
2
2
  import { DefineComponent, ComponentOptionsMixin, PublicProps, ComponentProvideOptions, CreateComponentPublicInstanceWithMixins, GlobalComponents, GlobalDirectives } from 'vue';
3
- import { InputTextProps } from '../../..';
3
+ import { InputTextProps } from '../..';
4
4
  declare const _default: DefineComponent<DropDownProps, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
5
5
  blur: (event: FocusEvent) => any;
6
6
  change: (value: string | number | boolean | (string | number)[] | undefined) => any;
@@ -3,6 +3,7 @@ export interface FilterSelectOption {
3
3
  label: string;
4
4
  count?: number;
5
5
  active: boolean;
6
+ partial?: boolean;
6
7
  imageUrl?: string;
7
8
  children?: {
8
9
  open: boolean;
@@ -1,7 +1,7 @@
1
1
  import { DropDownOption, DropDownProps } from '../DropDown/types';
2
2
  import { InputPhoneProps } from './types';
3
3
  import { DefineComponent, ComponentOptionsMixin, PublicProps, ComponentProvideOptions, CreateComponentPublicInstanceWithMixins, GlobalComponents, GlobalDirectives } from 'vue';
4
- import { InputTextProps } from '../../..';
4
+ import { InputTextProps } from '../..';
5
5
  declare const _default: DefineComponent<InputPhoneProps, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
6
6
  blur: () => any;
7
7
  change: (value: string | null) => any;
@@ -1,5 +1,5 @@
1
1
  import { nextTick, ComponentInternalInstance, VNodeProps, AllowedComponentProps, ComponentCustomProps, Slot, ComponentPublicInstance, ComponentOptionsBase, ComponentOptionsMixin, GlobalComponents, GlobalDirectives, ComponentProvideOptions, DebuggerEvent, WatchOptions, WatchStopHandle, ShallowUnwrapRef, ComponentCustomProperties, DefineComponent, PublicProps } from 'vue';
2
- import { ModalChangeReason, ModalProps, ModalSize, ModalPosition, ModalAnimation, ModalMobileBehavior } from './types';
2
+ import { ModalProps, ModalChangeReason, ModalSize, ModalPosition, ModalAnimation, ModalMobileBehavior } from './types';
3
3
  import { ButtonVariant, ButtonSize } from '../../atoms/Button/types';
4
4
  import { ButtonProps } from '../../..';
5
5
  import { OnCleanup } from '@vue/reactivity';
@@ -7,6 +7,7 @@ declare function __VLS_template(): {
7
7
  attrs: Partial<{}>;
8
8
  slots: {
9
9
  header?(_: {}): any;
10
+ sticky?(_: {}): any;
10
11
  default?(_: {}): any;
11
12
  footer?(_: {}): any;
12
13
  };
@@ -0,0 +1,9 @@
1
+ import { PriceSummaryProps } from './types';
2
+ import { DefineComponent, ComponentOptionsMixin, PublicProps, ComponentProvideOptions } from 'vue';
3
+ declare const _default: DefineComponent<PriceSummaryProps, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<PriceSummaryProps> & Readonly<{}>, {
4
+ currency: string;
5
+ totalLabel: string;
6
+ showSavingInfo: boolean;
7
+ savingInfoLabel: string;
8
+ }, {}, {}, {}, string, ComponentProvideOptions, false, {}, HTMLDivElement>;
9
+ export default _default;
@@ -0,0 +1,2 @@
1
+ export { default as PriceSummary } from './PriceSummary';
2
+ export type { PriceSummaryProps } from './types';
@@ -0,0 +1,9 @@
1
+ export interface PriceSummaryProps {
2
+ totalLabel: string;
3
+ originalPrice?: number;
4
+ finalPrice: number;
5
+ currency?: string;
6
+ showSavingInfo?: boolean;
7
+ savingInfoLabel?: string;
8
+ savingInfoTooltip?: string;
9
+ }
@@ -1 +1,2 @@
1
1
  export { default as RadioCard } from './RadioCard';
2
+ export type { RadioCardProps } from './types';
@@ -23,5 +23,5 @@ export { Tab, Tabs } from './Tabs';
23
23
  export type { TabProps, TabsProps } from './Tabs/types';
24
24
  export { Tooltip } from './Tooltip';
25
25
  export { FilterLocation, type FilterLocationProps } from './FilterLocation';
26
- export { RadioCard } from './RadioCard';
27
- export type { RadioCardProps } from './RadioCard';
26
+ export { RadioCard, type RadioCardProps } from './RadioCard';
27
+ export { PriceSummary, type PriceSummaryProps } from './PriceSummary';
@@ -1,6 +1,7 @@
1
1
  import { DropFileProps, DropFileVariant } from './types';
2
2
  import { CreateComponentPublicInstanceWithMixins, ComponentOptionsMixin, PublicProps, GlobalComponents, GlobalDirectives, ComponentProvideOptions, DefineComponent } from 'vue';
3
- import { InputTextProps, ButtonProps } from '../../..';
3
+ import { InputTextProps } from '../..';
4
+ import { ButtonProps } from '../../..';
4
5
  type __VLS_Props = DropFileProps & {
5
6
  enableImageEditor?: boolean;
6
7
  editorOptions?: Record<string, unknown>;
@@ -9,5 +9,5 @@ declare const _default: DefineComponent<FilterGroupProps, {}, {}, {}, {}, Compon
9
9
  }>, {
10
10
  label: string;
11
11
  resetFiltersLabel: string;
12
- }, {}, {}, {}, string, ComponentProvideOptions, false, {}, HTMLDivElement>;
12
+ }, {}, {}, {}, string, ComponentProvideOptions, false, {}, any>;
13
13
  export default _default;
@@ -15,4 +15,5 @@ export interface FilterGroupProps {
15
15
  filters: Filter[];
16
16
  sort?: Sort;
17
17
  resetFiltersLabel?: string;
18
+ resultsCountLabel?: string;
18
19
  }
@@ -1,5 +1,5 @@
1
1
  {
2
- "generated": "2026-01-15T09:29:43.226Z",
2
+ "generated": "2026-01-16T09:17:29.831Z",
3
3
  "count": 1239,
4
4
  "icons": [
5
5
  "Accessibility",
package/dist/index.d.ts CHANGED
@@ -17,6 +17,7 @@ export type { SkeletonAvatarProps, SkeletonProps, SkeletonTextProps } from './co
17
17
  export type { SwitchProps } from './components/atoms/Switch/types';
18
18
  export type { ProgressBarProps } from './components/atoms/ProgressBar/types';
19
19
  export type { RadioBoxProps } from './components/atoms/RadioBox/types';
20
+ export type { FilterButtonProps } from './components/atoms/FilterButton/types';
20
21
  export type { BottomSheetChangeReason, BottomSheetProps } from './components/molecules/BottomSheet/types';
21
22
  export type { DatePickerProps } from './components/molecules/DatePicker/types';
22
23
  export type { DropDownOption, DropDownProps } from './components/molecules/DropDown/types';
@@ -30,6 +31,7 @@ export type { PriceTagProps } from './components/molecules/PriceTag/types';
30
31
  export type { TooltipProps } from './components/molecules/Tooltip/types';
31
32
  export type { FilterLocationProps } from './components/molecules/FilterLocation/types';
32
33
  export type { RadioCardProps } from './components/molecules/RadioCard/types';
34
+ export type { PriceSummaryProps } from './components/molecules/PriceSummary/types';
33
35
  export type { BreadcrumbsItem, BreadcrumbsProps } from './components/organisms/Breadcrumbs/types';
34
36
  export type { Filter, FilterGroupProps, Sort } from './components/organisms/FilterGroup/types';
35
37
  export type { FilterPriceProps } from './components/organisms/FilterPrice/types';