@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.
- package/dist/components/atoms/FavoriteToggle/FavoriteToggle.d.ts +3 -1
- package/dist/components/atoms/FavoriteToggle/types.d.ts +1 -0
- package/dist/components/molecules/ProductImage/ProductImage.d.ts +1 -0
- package/dist/components/molecules/ProductImage/types.d.ts +1 -0
- package/dist/components/organisms/Accordion/Accordion.d.ts +1 -1
- package/dist/components/organisms/Accordion/AccordionItem.d.ts +1 -0
- package/dist/components/organisms/Accordion/types.d.ts +3 -2
- package/dist/components/organisms/ExplanationStepper/ExplanationStepper.d.ts +10 -0
- package/dist/components/organisms/ExplanationStepper/index.d.ts +2 -0
- package/dist/components/organisms/ExplanationStepper/types.d.ts +11 -0
- package/dist/components/organisms/ProductCard/ProductCard.d.ts +1 -0
- package/dist/components/organisms/ProductCard/types.d.ts +1 -0
- package/dist/components/organisms/index.d.ts +2 -0
- package/dist/index.d.ts +1 -0
- package/dist/index.js +4705 -4604
- package/dist/utopia.css +1 -1
- package/package.json +1 -1
|
@@ -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
|
-
}>, {
|
|
7
|
+
}>, {
|
|
8
|
+
pending: boolean;
|
|
9
|
+
}, {}, {}, {}, string, ComponentProvideOptions, false, {}, HTMLDivElement>;
|
|
8
10
|
export default _default;
|
|
@@ -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;
|
|
@@ -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';
|