@codarmais/ui 0.1.18 → 0.1.20

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 (34) hide show
  1. package/dist/components/Button/Button.d.ts +8 -0
  2. package/dist/components/Button/Button.stories.d.ts +10 -0
  3. package/dist/components/Button/Button.styles.d.ts +7 -0
  4. package/dist/components/Button/index.d.ts +3 -0
  5. package/dist/components/Layout/Column/Column.d.ts +5 -0
  6. package/dist/components/Layout/Column/Column.stories.d.ts +7 -0
  7. package/dist/components/Layout/Column/index.d.ts +2 -0
  8. package/dist/components/Layout/Container/Container.d.ts +10 -0
  9. package/dist/components/Layout/Container/Container.stories.d.ts +7 -0
  10. package/dist/components/Layout/Container/index.d.ts +2 -0
  11. package/dist/components/Layout/Row/Row.d.ts +2 -0
  12. package/dist/components/Layout/Row/Row.stories.d.ts +7 -0
  13. package/dist/components/Layout/Row/index.d.ts +1 -0
  14. package/dist/components/Layout/index.d.ts +6 -0
  15. package/dist/components/Layout/types/Layout.types.d.ts +10 -0
  16. package/dist/components/Modal/Modal.d.ts +11 -0
  17. package/dist/components/Modal/Modal.stories.d.ts +8 -0
  18. package/dist/components/Modal/Modal.styles.d.ts +4 -0
  19. package/dist/components/Modal/index.d.ts +2 -0
  20. package/dist/components/Typography/Heading.d.ts +8 -0
  21. package/dist/components/Typography/Heading.stories.d.ts +11 -0
  22. package/dist/components/Typography/Text.d.ts +8 -0
  23. package/dist/components/Typography/Text.stories.d.ts +13 -0
  24. package/dist/components/Typography/index.d.ts +4 -0
  25. package/dist/components/index.d.ts +8 -0
  26. package/dist/index.cjs.js +212 -27
  27. package/dist/index.d.ts +2 -2
  28. package/dist/index.esm.js +619 -341
  29. package/dist/theme/Gradients.stories.d.ts +5 -0
  30. package/dist/theme/Icons.stories.d.ts +5 -0
  31. package/dist/theme/colors.d.ts +9 -3
  32. package/dist/theme/colors.stories.d.ts +5 -0
  33. package/dist/theme/theme.d.ts +9 -3
  34. package/package.json +2 -2
@@ -0,0 +1,5 @@
1
+ import type { Meta, StoryObj } from "@storybook/react";
2
+ declare const meta: Meta;
3
+ export default meta;
4
+ type Story = StoryObj;
5
+ export declare const AllGradients: Story;
@@ -0,0 +1,5 @@
1
+ import type { Meta, StoryObj } from "@storybook/react";
2
+ declare const meta: Meta;
3
+ export default meta;
4
+ type Story = StoryObj;
5
+ export declare const AllIcons: Story;
@@ -14,9 +14,15 @@ export declare const colors: {
14
14
  emerald: string;
15
15
  teal: string;
16
16
  };
17
- warning: string;
18
- success: string;
19
- pureWhite: string;
17
+ warning: {
18
+ base: string;
19
+ };
20
+ success: {
21
+ base: string;
22
+ };
23
+ pureWhite: {
24
+ base: string;
25
+ };
20
26
  };
21
27
  export declare const gradients: {
22
28
  sunsetGlow: string;
@@ -0,0 +1,5 @@
1
+ import type { Meta, StoryObj } from "@storybook/react";
2
+ declare const meta: Meta;
3
+ export default meta;
4
+ type Story = StoryObj;
5
+ export declare const AllColors: Story;
@@ -15,9 +15,15 @@ export declare const theme: {
15
15
  emerald: string;
16
16
  teal: string;
17
17
  };
18
- warning: string;
19
- success: string;
20
- pureWhite: string;
18
+ warning: {
19
+ base: string;
20
+ };
21
+ success: {
22
+ base: string;
23
+ };
24
+ pureWhite: {
25
+ base: string;
26
+ };
21
27
  };
22
28
  gradients: {
23
29
  sunsetGlow: string;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@codarmais/ui",
3
- "version": "0.1.18",
3
+ "version": "0.1.20",
4
4
  "description": "Codar Mais UI - Biblioteca de componentes React corporativos",
5
5
  "private": false,
6
6
  "type": "module",
@@ -80,4 +80,4 @@
80
80
  "dependencies": {
81
81
  "react-icons": "^4.10.1"
82
82
  }
83
- }
83
+ }