globalfy-design-system 0.78.0 → 0.79.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/README.md +1 -1
- package/dist/components/atoms/TextArea/TextArea.d.ts +3 -0
- package/dist/components/atoms/TextArea/TextArea.stories.d.ts +13 -0
- package/dist/components/atoms/TextArea/TextArea.types.d.ts +8 -0
- package/dist/components/atoms/TextArea/index.d.ts +2 -0
- package/dist/components/atoms/index.d.ts +1 -0
- package/dist/globalfy-design-system.js +1192 -1083
- package/dist/globalfy-design-system.umd.cjs +24 -24
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -37,7 +37,7 @@ fix(validations): missing email validation
|
|
|
37
37
|
|
|
38
38
|
- Unit tests use [Jest](<[https://https://jestjs.io//](https://jestjs.io/)>) with [react-testing-library](https://testing-library.com/docs/react-testing-library/intro/)
|
|
39
39
|
- All components developed must have tests
|
|
40
|
-
- Test coverage must be
|
|
40
|
+
- Test coverage must be 99%
|
|
41
41
|
|
|
42
42
|
### Storybook Link
|
|
43
43
|
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
/// <reference types="react" />
|
|
2
|
+
import { StoryObj } from "@storybook/react";
|
|
3
|
+
declare const meta: {
|
|
4
|
+
title: string;
|
|
5
|
+
component: import("react").ForwardRefExoticComponent<import("./TextArea.types").TextAreaProps & import("react").RefAttributes<HTMLTextAreaElement>>;
|
|
6
|
+
tags: string[];
|
|
7
|
+
parameters: {
|
|
8
|
+
layout: string;
|
|
9
|
+
};
|
|
10
|
+
};
|
|
11
|
+
export default meta;
|
|
12
|
+
type Story = StoryObj<typeof meta>;
|
|
13
|
+
export declare const Playground: Story;
|