@myelmut/design-system 0.1.30 → 0.1.35
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/assets/images/packagings/elmut-sausage-beef.webp +0 -0
- package/assets/images/packagings/elmut-sausage-beef@2x.webp +0 -0
- package/assets/images/packagings/elmut-sausage-fish.webp +0 -0
- package/assets/images/packagings/elmut-sausage-fish@2x.webp +0 -0
- package/assets/images/packagings/elmut-sausage-pork.webp +0 -0
- package/assets/images/packagings/elmut-sausage-pork@2x.webp +0 -0
- package/assets/images/packagings/elmut-sausage-turkey.webp +0 -0
- package/assets/images/packagings/elmut-sausage-turkey@2x.webp +0 -0
- package/dist/index.cjs +1 -1
- package/dist/index.cjs.map +1 -1
- package/dist/index.es.js +453 -469
- package/dist/index.es.js.map +1 -1
- package/dist/types/index.d.ts +8 -8
- package/package.json +1 -1
- package/assets/images/ingredients/potatoe.webp +0 -0
- package/assets/images/ingredients/vegetal-oil.webp +0 -0
- /package/assets/images/ingredients/{quinoa.webp → cereals.webp} +0 -0
- /package/assets/images/ingredients/{lactoserum.webp → liquid.webp} +0 -0
- /package/assets/images/ingredients/{dry-potatoe.webp → potato.webp} +0 -0
- /package/assets/images/ingredients/{vitamines.webp → powder.webp} +0 -0
- /package/assets/images/{dog-sausages-packaging.webp → packagings/dog-sausages-packaging.webp} +0 -0
- /package/assets/images/{dog-snacks-packaging.webp → packagings/dog-snacks-packaging.webp} +0 -0
- /package/assets/images/{elmut-sausage-chicken.webp → packagings/elmut-sausage-chicken.webp} +0 -0
- /package/assets/images/{elmut-sausage-chicken@2x.webp → packagings/elmut-sausage-chicken@2x.webp} +0 -0
- /package/assets/images/{snacks-recette-packaging.webp → packagings/snacks-recette-packaging.webp} +0 -0
package/dist/types/index.d.ts
CHANGED
|
@@ -327,13 +327,12 @@ declare interface IllustratedCardProps {
|
|
|
327
327
|
|
|
328
328
|
export { InfoIcon }
|
|
329
329
|
|
|
330
|
-
export declare const Ingredient: ({ label, description,
|
|
330
|
+
export declare const Ingredient: ({ label, description, image, className }: IngredientProps) => JSX.Element;
|
|
331
331
|
|
|
332
332
|
declare interface IngredientProps {
|
|
333
|
-
label
|
|
334
|
-
description
|
|
335
|
-
|
|
336
|
-
variant?: 'carrot' | 'quinoa' | 'potatoe' | 'dry-potatoe' | 'dry-apple' | 'dry-carrot' | 'beef' | 'chicken' | 'courgette' | 'duck' | 'fish' | 'lactoserum' | 'oil' | 'pork' | 'turkey' | 'vitamines' | 'vegetal-oil';
|
|
333
|
+
label: string;
|
|
334
|
+
description: string;
|
|
335
|
+
image: 'carrot' | 'cereals' | 'potato' | 'apple' | 'dry-carrot' | 'beef' | 'chicken' | 'courgette' | 'duck' | 'fish' | 'liquid' | 'oil' | 'pork' | 'turkey' | 'powder' | 'oil' | 'seaweed';
|
|
337
336
|
className?: string;
|
|
338
337
|
}
|
|
339
338
|
|
|
@@ -570,7 +569,7 @@ declare interface TagSelectProps {
|
|
|
570
569
|
className?: string;
|
|
571
570
|
}
|
|
572
571
|
|
|
573
|
-
export declare const Testimonial:
|
|
572
|
+
export declare const Testimonial: ForwardRefExoticComponent<TestimonialProps & RefAttributes<HTMLDivElement>>;
|
|
574
573
|
|
|
575
574
|
declare interface TestimonialProps {
|
|
576
575
|
variant: 'primary' | 'secondary';
|
|
@@ -658,11 +657,12 @@ declare interface ToggleProps {
|
|
|
658
657
|
'aria-label'?: string;
|
|
659
658
|
}
|
|
660
659
|
|
|
661
|
-
export declare const TransitionCard: ({ variant,
|
|
660
|
+
export declare const TransitionCard: ({ id, variant, active, className }: TransitionCardProps) => JSX.Element;
|
|
662
661
|
|
|
663
662
|
declare interface TransitionCardProps {
|
|
663
|
+
id: string;
|
|
664
664
|
variant: '25%' | '50%' | '75%' | '100%';
|
|
665
|
-
|
|
665
|
+
active?: boolean;
|
|
666
666
|
className?: string;
|
|
667
667
|
}
|
|
668
668
|
|
package/package.json
CHANGED
|
Binary file
|
|
Binary file
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
/package/assets/images/{dog-sausages-packaging.webp → packagings/dog-sausages-packaging.webp}
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
/package/assets/images/{elmut-sausage-chicken@2x.webp → packagings/elmut-sausage-chicken@2x.webp}
RENAMED
|
File without changes
|
/package/assets/images/{snacks-recette-packaging.webp → packagings/snacks-recette-packaging.webp}
RENAMED
|
File without changes
|