@club-employes/utopia 4.414.0 → 4.415.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.
@@ -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';
package/dist/index.d.ts CHANGED
@@ -104,6 +104,7 @@ export type { CustomCriterionVProps, CustomCriterionValueType } from './componen
104
104
  export type { CartConfirmationProps, CartConfirmationSavingColor } from './components/organisms/CartConfirmation/types';
105
105
  export type { UserSelectionProps } from './components/organisms/UserSelection/types';
106
106
  export type { ContestCardProps } from './components/organisms/ContestCard/types';
107
+ export type { ExplanationStepperProps } from './components/organisms/ExplanationStepper/types';
107
108
  export type { AddressFormProps, AddressFormSchema, AddressFormSection } from './components/organisms/AddressForm/types';
108
109
  export type { CartPreviewProps, CartPreviewPrice, CartPreviewPriceLine } from './components/organisms/CartPreview/types';
109
110
  export type { CartPreviewItemProps } from './components/molecules/CartPreviewItem/types';