@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.
Files changed (25) hide show
  1. package/assets/images/packagings/elmut-sausage-beef.webp +0 -0
  2. package/assets/images/packagings/elmut-sausage-beef@2x.webp +0 -0
  3. package/assets/images/packagings/elmut-sausage-fish.webp +0 -0
  4. package/assets/images/packagings/elmut-sausage-fish@2x.webp +0 -0
  5. package/assets/images/packagings/elmut-sausage-pork.webp +0 -0
  6. package/assets/images/packagings/elmut-sausage-pork@2x.webp +0 -0
  7. package/assets/images/packagings/elmut-sausage-turkey.webp +0 -0
  8. package/assets/images/packagings/elmut-sausage-turkey@2x.webp +0 -0
  9. package/dist/index.cjs +1 -1
  10. package/dist/index.cjs.map +1 -1
  11. package/dist/index.es.js +453 -469
  12. package/dist/index.es.js.map +1 -1
  13. package/dist/types/index.d.ts +8 -8
  14. package/package.json +1 -1
  15. package/assets/images/ingredients/potatoe.webp +0 -0
  16. package/assets/images/ingredients/vegetal-oil.webp +0 -0
  17. /package/assets/images/ingredients/{quinoa.webp → cereals.webp} +0 -0
  18. /package/assets/images/ingredients/{lactoserum.webp → liquid.webp} +0 -0
  19. /package/assets/images/ingredients/{dry-potatoe.webp → potato.webp} +0 -0
  20. /package/assets/images/ingredients/{vitamines.webp → powder.webp} +0 -0
  21. /package/assets/images/{dog-sausages-packaging.webp → packagings/dog-sausages-packaging.webp} +0 -0
  22. /package/assets/images/{dog-snacks-packaging.webp → packagings/dog-snacks-packaging.webp} +0 -0
  23. /package/assets/images/{elmut-sausage-chicken.webp → packagings/elmut-sausage-chicken.webp} +0 -0
  24. /package/assets/images/{elmut-sausage-chicken@2x.webp → packagings/elmut-sausage-chicken@2x.webp} +0 -0
  25. /package/assets/images/{snacks-recette-packaging.webp → packagings/snacks-recette-packaging.webp} +0 -0
@@ -327,13 +327,12 @@ declare interface IllustratedCardProps {
327
327
 
328
328
  export { InfoIcon }
329
329
 
330
- export declare const Ingredient: ({ label, description, name, variant, className }: IngredientProps) => JSX.Element;
330
+ export declare const Ingredient: ({ label, description, image, className }: IngredientProps) => JSX.Element;
331
331
 
332
332
  declare interface IngredientProps {
333
- label?: string;
334
- description?: string;
335
- name?: string;
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: ({ variant, quote, author, role, imageMobile, imageDesktop, imageMobile2x, imageDesktop2x, className }: TestimonialProps) => JSX.Element;
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, disabled, className }: TransitionCardProps) => JSX.Element;
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
- disabled?: boolean;
665
+ active?: boolean;
666
666
  className?: string;
667
667
  }
668
668
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@myelmut/design-system",
3
- "version": "0.1.30",
3
+ "version": "0.1.35",
4
4
  "description": "Design system for Elmut project",
5
5
  "repository": {
6
6
  "type": "git",