@myelmut/design-system 0.1.175 → 0.1.176

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@myelmut/design-system",
3
- "version": "0.1.175",
3
+ "version": "0.1.176",
4
4
  "description": "Design system for Elmut project",
5
5
  "repository": {
6
6
  "type": "git",
@@ -4,7 +4,7 @@ import { Meta, StoryObj } from '@storybook/react-vite';
4
4
 
5
5
  import { Tab } from './Tab';
6
6
 
7
- import { PlanCard, Text } from '../../../components';
7
+ import { Text } from '../../../components';
8
8
 
9
9
  const meta = {
10
10
  title: 'Components/Navigation/Tab',
@@ -66,28 +66,24 @@ export const Default: Story = {
66
66
  render: (args) => (
67
67
  <Tab.Wrapper {...args}>
68
68
  <Tab.Content id="complete">
69
- <PlanCard
70
- title="100% Elmut"
71
- description="Uniquement du Elmut pour couvrir l'intégralité des besoins caloriques de Jackie la Fripouille, Shalvah, Max."
72
- dailyAmount="300g/jour"
73
- price="2,69€"
74
- originalPrice="3,85€"
75
- discountPercentage="-30%"
76
- planImage="/images/trash/full-cat.png"
77
- planImageAlt="full cat"
78
- />
69
+ <div className="p-4">
70
+ <Text mobileSize="Body" desktopSize="Body" weight="bold">
71
+ 100% Elmut
72
+ </Text>
73
+ <Text mobileSize="Small-text" desktopSize="Small-text" className="mt-2">
74
+ Uniquement du Elmut pour couvrir l'intégralité des besoins caloriques.
75
+ </Text>
76
+ </div>
79
77
  </Tab.Content>
80
78
  <Tab.Content id="half">
81
- <PlanCard
82
- title="50% Elmut"
83
- description="Du Elmut pour couvrir 50% des besoins caloriques de votre animal, complété par vos croquettes habituelles."
84
- dailyAmount="150g/jour"
85
- price="1,35€"
86
- originalPrice="1,93€"
87
- discountPercentage="-30%"
88
- planImage="/images/trash/full-cat.png"
89
- planImageAlt="full cat"
90
- />
79
+ <div className="p-4">
80
+ <Text mobileSize="Body" desktopSize="Body" weight="bold">
81
+ 50% Elmut
82
+ </Text>
83
+ <Text mobileSize="Small-text" desktopSize="Small-text" className="mt-2">
84
+ Du Elmut pour couvrir 50% des besoins caloriques de votre animal.
85
+ </Text>
86
+ </div>
91
87
  </Tab.Content>
92
88
  </Tab.Wrapper>
93
89
  ),