@club-employes/utopia 4.414.0 → 4.416.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 (32) hide show
  1. package/dist/components/atoms/FavoriteToggle/FavoriteToggle.d.ts +3 -1
  2. package/dist/components/atoms/FavoriteToggle/types.d.ts +1 -0
  3. package/dist/components/molecules/ProductImage/ProductImage.d.ts +1 -0
  4. package/dist/components/molecules/ProductImage/types.d.ts +1 -0
  5. package/dist/components/organisms/Accordion/Accordion.d.ts +1 -1
  6. package/dist/components/organisms/Accordion/AccordionItem.d.ts +1 -0
  7. package/dist/components/organisms/Accordion/types.d.ts +3 -2
  8. package/dist/components/organisms/ExplanationStepper/ExplanationStepper.d.ts +10 -0
  9. package/dist/components/organisms/ExplanationStepper/index.d.ts +2 -0
  10. package/dist/components/organisms/ExplanationStepper/types.d.ts +11 -0
  11. package/dist/components/organisms/ProductCard/ProductCard.d.ts +1 -0
  12. package/dist/components/organisms/ProductCard/types.d.ts +1 -0
  13. package/dist/components/organisms/index.d.ts +2 -0
  14. package/dist/dark-D17_KJ_y.js +4 -0
  15. package/dist/dark-M0bDMHoH.js +4 -0
  16. package/dist/index.d.ts +1 -0
  17. package/dist/index.js +4705 -4604
  18. package/dist/light-Btfjbyo4.js +4 -0
  19. package/dist/{dark-KZbVdJ-d.js → light-DEBSv3Lr.js} +1 -1
  20. package/dist/tokens/club-employes/dark.css +660 -602
  21. package/dist/tokens/club-employes/dark.js +664 -606
  22. package/dist/tokens/club-employes/light.css +43 -315
  23. package/dist/tokens/club-employes/light.js +47 -319
  24. package/dist/tokens/gifteo/dark.css +660 -602
  25. package/dist/tokens/gifteo/dark.js +664 -606
  26. package/dist/tokens/gifteo/light.css +43 -315
  27. package/dist/tokens/gifteo/light.js +47 -319
  28. package/dist/utopia.css +1 -1
  29. package/package.json +1 -1
  30. package/dist/dark-BVjSOlNr.js +0 -4
  31. package/dist/light-CD5Qd2yv.js +0 -4
  32. package/dist/light-dPSXJUDW.js +0 -4
@@ -4,5 +4,7 @@ declare const _default: DefineComponent<FavoriteToggleProps, {}, {}, {}, {}, Com
4
4
  "toggle-favorite": () => any;
5
5
  }, string, PublicProps, Readonly<FavoriteToggleProps> & Readonly<{
6
6
  "onToggle-favorite"?: (() => any) | undefined;
7
- }>, {}, {}, {}, {}, string, ComponentProvideOptions, false, {}, HTMLDivElement>;
7
+ }>, {
8
+ pending: boolean;
9
+ }, {}, {}, {}, string, ComponentProvideOptions, false, {}, HTMLDivElement>;
8
10
  export default _default;
@@ -1,3 +1,4 @@
1
1
  export interface FavoriteToggleProps {
2
+ pending?: boolean;
2
3
  isFavorite?: boolean;
3
4
  }
@@ -7,6 +7,7 @@ declare const _default: DefineComponent<ProductImageProps, {}, {}, {}, {}, Compo
7
7
  }>, {
8
8
  disabled: boolean;
9
9
  loading: boolean;
10
+ pending: boolean;
10
11
  aspectRatio: number;
11
12
  hoverZoom: boolean;
12
13
  images: ProductImageType[];
@@ -9,6 +9,7 @@ export interface ProductImageProps {
9
9
  isFavorite: boolean;
10
10
  aspectRatio?: number;
11
11
  loading?: boolean;
12
+ pending?: boolean;
12
13
  disabled?: boolean;
13
14
  hoverZoom?: boolean;
14
15
  }
@@ -14,7 +14,7 @@ declare const __VLS_component: DefineComponent<AccordionProps, {}, {}, {}, {}, C
14
14
  }, string, PublicProps, Readonly<AccordionProps> & Readonly<{
15
15
  "onUpdate:modelValue"?: ((value: string[]) => any) | undefined;
16
16
  }>, {
17
- variant: "primary" | "secondary" | "tertiary";
17
+ variant: "primary" | "secondary" | "tertiary" | "brand-primary" | "brand-secondary" | "brand-accent";
18
18
  size: "sm" | "md" | "lg";
19
19
  disabled: boolean;
20
20
  ariaLabel: string;
@@ -22,6 +22,7 @@ declare const __VLS_component: DefineComponent<AccordionItemProps, {}, {}, {}, {
22
22
  icon: string;
23
23
  iconPosition: "left" | "right";
24
24
  iconSize: IconSize;
25
+ weight: "thin" | "extralight" | "light" | "normal" | "medium" | "semibold" | "bold" | "extrabold" | "black";
25
26
  iconColor: string;
26
27
  iconStrokeWidth: number | string;
27
28
  open: boolean;
@@ -8,6 +8,7 @@ export interface AccordionItemProps {
8
8
  collapsible?: boolean;
9
9
  icon?: string;
10
10
  iconPosition?: 'left' | 'right';
11
+ weight?: 'thin' | 'extralight' | 'light' | 'normal' | 'medium' | 'semibold' | 'bold' | 'extrabold' | 'black';
11
12
  iconSize?: IconSize;
12
13
  chevronSize?: IconSize;
13
14
  iconColor?: string;
@@ -20,7 +21,7 @@ export interface AccordionProps {
20
21
  allowMultiple?: boolean;
21
22
  collapsible?: boolean;
22
23
  size?: 'sm' | 'md' | 'lg';
23
- variant?: 'primary' | 'secondary' | 'tertiary';
24
+ variant?: 'primary' | 'secondary' | 'tertiary' | 'brand-primary' | 'brand-secondary' | 'brand-accent';
24
25
  ariaLabel?: string;
25
26
  disabled?: boolean;
26
27
  }
@@ -32,6 +33,6 @@ export interface AccordionContext {
32
33
  keepContentMounted: ComputedRef<boolean>;
33
34
  disabled: ComputedRef<boolean>;
34
35
  size: ComputedRef<'sm' | 'md' | 'lg'>;
35
- variant: 'primary' | 'secondary' | 'tertiary';
36
+ variant: 'primary' | 'secondary' | 'tertiary' | 'brand-primary' | 'brand-secondary' | 'brand-accent';
36
37
  collapsible: ComputedRef<boolean>;
37
38
  }
@@ -0,0 +1,10 @@
1
+ import { ExplanationStepperProps } from './types';
2
+ import { DefineComponent, ComponentOptionsMixin, PublicProps, ComponentProvideOptions } from 'vue';
3
+ declare const _default: DefineComponent<ExplanationStepperProps, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
4
+ "step-click": (...args: any[]) => void;
5
+ }, string, PublicProps, Readonly<ExplanationStepperProps> & Readonly<{
6
+ "onStep-click"?: ((...args: any[]) => any) | undefined;
7
+ }>, {
8
+ interactible: boolean;
9
+ }, {}, {}, {}, string, ComponentProvideOptions, false, {}, HTMLDivElement>;
10
+ export default _default;
@@ -0,0 +1,2 @@
1
+ export { default as ExplanationStepper } from './ExplanationStepper';
2
+ export type { ExplanationStepperProps } from './types';
@@ -0,0 +1,11 @@
1
+ export interface ExplanationStepperProps {
2
+ title: string;
3
+ icon: string;
4
+ description: string;
5
+ steps: {
6
+ name: string;
7
+ description: string;
8
+ }[];
9
+ activeStepIndex: number;
10
+ interactible?: boolean;
11
+ }
@@ -19,6 +19,7 @@ declare const _default: DefineComponent<ProductCardProps, {}, {}, {}, {}, Compon
19
19
  }>, {
20
20
  loading: boolean;
21
21
  currency: string;
22
+ pending: boolean;
22
23
  outOfStockLabel: string;
23
24
  imageUrl: string;
24
25
  available: boolean;
@@ -2,6 +2,7 @@ import { ImageFits } from '../../atoms/DefaultImage';
2
2
  export interface ProductCardProps {
3
3
  id: string;
4
4
  loading?: boolean;
5
+ pending?: boolean;
5
6
  title: string;
6
7
  description?: string;
7
8
  imageUrl: string;
@@ -44,3 +44,5 @@ export { UserSelection } from './UserSelection';
44
44
  export type { UserSelectionProps } from './UserSelection';
45
45
  export { ContestCard } from './ContestCard';
46
46
  export type { ContestCardProps } from './ContestCard';
47
+ export { ExplanationStepper } from './ExplanationStepper';
48
+ export type { ExplanationStepperProps } from './ExplanationStepper';