@react5/ui 1.0.10 → 1.0.12

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 (183) hide show
  1. package/LICENSE +21 -21
  2. package/README.md +2 -2
  3. package/package.json +38 -38
  4. package/packages/app/README.md +50 -50
  5. package/packages/app/eslint.config.js +28 -28
  6. package/packages/app/index.html +13 -13
  7. package/packages/app/jest.config.js +12 -12
  8. package/packages/app/package.json +36 -36
  9. package/packages/app/src/App.css +5 -5
  10. package/packages/app/src/App.tsx +35 -35
  11. package/packages/app/src/i18n/config.ts +21 -21
  12. package/packages/app/src/i18n/en/translation.json +4 -4
  13. package/packages/app/src/i18n/fr/translation.json +4 -4
  14. package/packages/app/src/i18n/index.ts +3 -3
  15. package/packages/app/src/main.tsx +16 -16
  16. package/packages/app/src/styles/1-reset.scss +72 -72
  17. package/packages/app/src/styles/2-colors.scss +11 -11
  18. package/packages/app/src/vite-env.d.ts +1 -1
  19. package/packages/app/tsconfig.app.json +26 -26
  20. package/packages/app/tsconfig.json +7 -7
  21. package/packages/app/tsconfig.node.json +24 -24
  22. package/packages/app/vite.config.ts +7 -7
  23. package/packages/lib/.babelrc +9 -9
  24. package/packages/lib/.storybook/main.js +50 -50
  25. package/packages/lib/.storybook/preview.js +13 -13
  26. package/packages/lib/declaration.d.ts +9 -9
  27. package/packages/lib/dist/esm/index.esm.css +3 -0
  28. package/packages/lib/dist/esm/index.esm.scss +1326 -1323
  29. package/packages/lib/dist/index.css +3 -0
  30. package/packages/lib/dist/index.scss +1326 -1323
  31. package/packages/lib/dist/types/hooks/use-form.d.ts +1 -1
  32. package/packages/lib/dist/types/hooks/use-form.d.ts.map +1 -1
  33. package/packages/lib/jest.config.js +19 -19
  34. package/packages/lib/package.json +110 -110
  35. package/packages/lib/plop/component/index.js +43 -43
  36. package/packages/lib/plop/index.js +3 -3
  37. package/packages/lib/plop/templates/component/component.hbs +19 -19
  38. package/packages/lib/plop/templates/component/index.hbs +1 -1
  39. package/packages/lib/plop/templates/component/stories.hbs +17 -17
  40. package/packages/lib/plop/templates/component/style.hbs +1 -1
  41. package/packages/lib/plop/templates/component/test.hbs +11 -11
  42. package/packages/lib/plopfile.js +1 -1
  43. package/packages/lib/rollup.config.mjs +64 -64
  44. package/packages/lib/src/components/Accordion/Accordion.scss +67 -67
  45. package/packages/lib/src/components/Accordion/Accordion.tsx +36 -36
  46. package/packages/lib/src/components/Button/Button.scss +42 -42
  47. package/packages/lib/src/components/Button/Button.stories.tsx +26 -26
  48. package/packages/lib/src/components/Button/Button.tsx +40 -40
  49. package/packages/lib/src/components/Button/index.tsx +1 -1
  50. package/packages/lib/src/components/ButtonsGroup/ButtonsGroup.scss +3 -3
  51. package/packages/lib/src/components/ButtonsGroup/ButtonsGroup.stories.tsx +17 -17
  52. package/packages/lib/src/components/ButtonsGroup/ButtonsGroup.test.tsx +11 -11
  53. package/packages/lib/src/components/ButtonsGroup/ButtonsGroup.tsx +17 -17
  54. package/packages/lib/src/components/ButtonsGroup/index.tsx +1 -1
  55. package/packages/lib/src/components/CheckBox/CheckBox.scss +63 -63
  56. package/packages/lib/src/components/CheckBox/CheckBox.stories.tsx +22 -22
  57. package/packages/lib/src/components/CheckBox/CheckBox.tsx +42 -42
  58. package/packages/lib/src/components/CheckBox/index.tsx +1 -1
  59. package/packages/lib/src/components/DialogPrompt/DialogPrompt.scss +6 -6
  60. package/packages/lib/src/components/DialogPrompt/DialogPrompt.stories.tsx +17 -17
  61. package/packages/lib/src/components/DialogPrompt/DialogPrompt.test.tsx +11 -11
  62. package/packages/lib/src/components/DialogPrompt/DialogPrompt.tsx +41 -41
  63. package/packages/lib/src/components/DialogPrompt/index.tsx +1 -1
  64. package/packages/lib/src/components/Divider/Divider.scss +22 -22
  65. package/packages/lib/src/components/Divider/Divider.tsx +20 -20
  66. package/packages/lib/src/components/DropDown/DropDown.scss +70 -70
  67. package/packages/lib/src/components/DropDown/DropDown.stories.tsx +45 -45
  68. package/packages/lib/src/components/DropDown/DropDown.tsx +61 -61
  69. package/packages/lib/src/components/DropDown/index.tsx +1 -1
  70. package/packages/lib/src/components/Form/Form.scss +3 -3
  71. package/packages/lib/src/components/Form/Form.stories.tsx +20 -20
  72. package/packages/lib/src/components/Form/Form.tsx +25 -25
  73. package/packages/lib/src/components/FormButtons/FormButtons.scss +5 -5
  74. package/packages/lib/src/components/FormButtons/FormButtons.tsx +18 -18
  75. package/packages/lib/src/components/IconButton/IconButton.scss +64 -64
  76. package/packages/lib/src/components/IconButton/IconButton.tsx +44 -44
  77. package/packages/lib/src/components/MenuItem/MenuItem.scss +13 -13
  78. package/packages/lib/src/components/MenuItem/MenuItem.tsx +36 -36
  79. package/packages/lib/src/components/Modal/Modal.scss +71 -71
  80. package/packages/lib/src/components/Modal/Modal.tsx +60 -60
  81. package/packages/lib/src/components/Navbar/Navbar.scss +52 -52
  82. package/packages/lib/src/components/Navbar/Navbar.stories.tsx +25 -25
  83. package/packages/lib/src/components/Navbar/Navbar.tsx +38 -38
  84. package/packages/lib/src/components/NavbarLink/NavbarLink.scss +15 -15
  85. package/packages/lib/src/components/NavbarLink/NavbarLink.tsx +34 -34
  86. package/packages/lib/src/components/NavbarMenu/NavbarMenu.scss +156 -156
  87. package/packages/lib/src/components/NavbarMenu/NavbarMenu.stories.tsx +24 -24
  88. package/packages/lib/src/components/NavbarMenu/NavbarMenu.tsx +72 -72
  89. package/packages/lib/src/components/Panel/Panel.scss +4 -4
  90. package/packages/lib/src/components/Panel/Panel.stories.tsx +17 -17
  91. package/packages/lib/src/components/Panel/Panel.test.tsx +11 -11
  92. package/packages/lib/src/components/Panel/Panel.tsx +18 -18
  93. package/packages/lib/src/components/Panel/index.tsx +1 -1
  94. package/packages/lib/src/components/Paper/Paper.scss +5 -5
  95. package/packages/lib/src/components/Paper/Paper.stories.tsx +18 -18
  96. package/packages/lib/src/components/Paper/Paper.tsx +18 -18
  97. package/packages/lib/src/components/Paper/index.tsx +1 -1
  98. package/packages/lib/src/components/RangeSlider/RangeSlider.scss +83 -83
  99. package/packages/lib/src/components/RangeSlider/RangeSlider.stories.tsx +24 -24
  100. package/packages/lib/src/components/RangeSlider/RangeSlider.tsx +150 -150
  101. package/packages/lib/src/components/ResponsiveBar/ResponsiveBar.scss +72 -72
  102. package/packages/lib/src/components/ResponsiveBar/ResponsiveBar.tsx +38 -38
  103. package/packages/lib/src/components/ScrollView/ScrollView.scss +20 -20
  104. package/packages/lib/src/components/ScrollView/ScrollView.stories.tsx +17 -17
  105. package/packages/lib/src/components/ScrollView/ScrollView.test.tsx +11 -11
  106. package/packages/lib/src/components/ScrollView/ScrollView.tsx +19 -19
  107. package/packages/lib/src/components/ScrollView/index.tsx +1 -1
  108. package/packages/lib/src/components/Section/Section.scss +17 -17
  109. package/packages/lib/src/components/Section/Section.tsx +26 -26
  110. package/packages/lib/src/components/SelectField/SelectField.scss +33 -33
  111. package/packages/lib/src/components/SelectField/SelectField.stories.tsx +14 -14
  112. package/packages/lib/src/components/SelectField/SelectField.tsx +53 -53
  113. package/packages/lib/src/components/SelectField/index.tsx +1 -1
  114. package/packages/lib/src/components/Spacer/Spacer.scss +2 -2
  115. package/packages/lib/src/components/Spacer/Spacer.tsx +6 -6
  116. package/packages/lib/src/components/StackPanel/StackPanel.scss +8 -8
  117. package/packages/lib/src/components/StackPanel/StackPanel.stories.tsx +17 -17
  118. package/packages/lib/src/components/StackPanel/StackPanel.test.tsx +11 -11
  119. package/packages/lib/src/components/StackPanel/StackPanel.tsx +31 -31
  120. package/packages/lib/src/components/StackPanel/index.tsx +1 -1
  121. package/packages/lib/src/components/Submenu/Submenu.scss +55 -55
  122. package/packages/lib/src/components/Submenu/Submenu.stories.tsx +45 -45
  123. package/packages/lib/src/components/Submenu/Submenu.tsx +59 -59
  124. package/packages/lib/src/components/Submenu/index.tsx +1 -1
  125. package/packages/lib/src/components/SuccessCongratulation/SuccessCongratulation.scss +75 -75
  126. package/packages/lib/src/components/SuccessCongratulation/SuccessCongratulation.stories.tsx +17 -17
  127. package/packages/lib/src/components/SuccessCongratulation/SuccessCongratulation.test.tsx +11 -11
  128. package/packages/lib/src/components/SuccessCongratulation/SuccessCongratulation.tsx +63 -63
  129. package/packages/lib/src/components/SuccessCongratulation/index.tsx +1 -1
  130. package/packages/lib/src/components/TextArea/TextArea.scss +33 -33
  131. package/packages/lib/src/components/TextArea/TextArea.stories.tsx +14 -14
  132. package/packages/lib/src/components/TextArea/TextArea.tsx +49 -49
  133. package/packages/lib/src/components/TextArea/index.tsx +1 -1
  134. package/packages/lib/src/components/TextField/TextField.scss +48 -45
  135. package/packages/lib/src/components/TextField/TextField.stories.tsx +14 -14
  136. package/packages/lib/src/components/TextField/TextField.tsx +86 -86
  137. package/packages/lib/src/components/TextField/index.tsx +1 -1
  138. package/packages/lib/src/components/TitleEdit/TitleEdit.scss +17 -17
  139. package/packages/lib/src/components/TitleEdit/TitleEdit.tsx +69 -69
  140. package/packages/lib/src/components/Toast/Toast.scss +32 -32
  141. package/packages/lib/src/components/Toast/Toast.tsx +29 -29
  142. package/packages/lib/src/components/ToggleButton/ToggleButton.scss +47 -47
  143. package/packages/lib/src/components/ToggleButton/ToggleButton.stories.tsx +22 -22
  144. package/packages/lib/src/components/ToggleButton/ToggleButton.tsx +41 -41
  145. package/packages/lib/src/components/ToggleButton/index.tsx +1 -1
  146. package/packages/lib/src/components/Toolbar/Toolbar.scss +16 -16
  147. package/packages/lib/src/components/Toolbar/Toolbar.stories.tsx +17 -17
  148. package/packages/lib/src/components/Toolbar/Toolbar.test.tsx +11 -11
  149. package/packages/lib/src/components/Toolbar/Toolbar.tsx +20 -20
  150. package/packages/lib/src/components/Toolbar/index.tsx +1 -1
  151. package/packages/lib/src/components/Typography/Typography.scss +51 -51
  152. package/packages/lib/src/components/Typography/Typography.stories.tsx +18 -18
  153. package/packages/lib/src/components/Typography/Typography.tsx +19 -19
  154. package/packages/lib/src/components/index.tsx +33 -33
  155. package/packages/lib/src/hooks/index.tsx +3 -3
  156. package/packages/lib/src/hooks/use-click-outside.tsx +19 -19
  157. package/packages/lib/src/hooks/use-form.tsx +107 -107
  158. package/packages/lib/src/hooks/use-keys-enteresc.tsx +25 -25
  159. package/packages/lib/src/hooks/use-set-startup-focus.tsx +8 -8
  160. package/packages/lib/src/i18n/config.ts +8 -8
  161. package/packages/lib/src/i18n/en/translation.json +11 -11
  162. package/packages/lib/src/i18n/fr/translation.json +11 -11
  163. package/packages/lib/src/i18n/index.ts +11 -11
  164. package/packages/lib/src/index.tsx +7 -7
  165. package/packages/lib/src/stories/Intrduction.mdx +175 -175
  166. package/packages/lib/src/stories/assets/github.svg +3 -3
  167. package/packages/lib/src/styles/1-color-vars.scss +50 -50
  168. package/packages/lib/src/styles/2-font-variables.scss +2 -2
  169. package/packages/lib/src/styles/variables.scss +1 -1
  170. package/packages/lib/src/test/i18n.ts +17 -17
  171. package/packages/lib/src/utils/bem.ts +4 -4
  172. package/packages/lib/src/utils/formatError.ts +5 -5
  173. package/packages/lib/src/utils/index.ts +1 -1
  174. package/packages/lib/src/utils/interfaces.ts +5 -5
  175. package/packages/lib/tsconfig.json +25 -25
  176. package/packages/lib/vite.config.js +18 -18
  177. package/packages/ui-test/package-lock.json +97 -97
  178. package/packages/ui-test/package.json +19 -19
  179. package/packages/ui-test/playwright.config.ts +80 -80
  180. package/packages/ui-test/tests/example.spec.ts +18 -18
  181. package/packages/ui-test/tests-examples/demo-todo-app.spec.ts +437 -437
  182. package/packages/lib/dist/esm/index.esm.js.map +0 -1
  183. package/packages/lib/dist/index.js.map +0 -1
@@ -1,17 +1,17 @@
1
- import type { Meta, StoryObj } from '@storybook/react';
2
- import { SuccessCongratulation } from './SuccessCongratulation';
3
-
4
- const meta: Meta<typeof SuccessCongratulation> = {
5
- title: 'Example/SuccessCongratulation',
6
- component: SuccessCongratulation,
7
- argTypes: {
8
- backgroundColor: { control: 'color' },
9
- },
10
- } as Meta;
11
- export default meta;
12
-
13
- type Story = StoryObj<typeof SuccessCongratulation>;
14
-
15
- export const TextSuccessCongratulation: Story = {
16
- render: () => <SuccessCongratulation/>,
17
- };
1
+ import type { Meta, StoryObj } from '@storybook/react';
2
+ import { SuccessCongratulation } from './SuccessCongratulation';
3
+
4
+ const meta: Meta<typeof SuccessCongratulation> = {
5
+ title: 'Example/SuccessCongratulation',
6
+ component: SuccessCongratulation,
7
+ argTypes: {
8
+ backgroundColor: { control: 'color' },
9
+ },
10
+ } as Meta;
11
+ export default meta;
12
+
13
+ type Story = StoryObj<typeof SuccessCongratulation>;
14
+
15
+ export const TextSuccessCongratulation: Story = {
16
+ render: () => <SuccessCongratulation/>,
17
+ };
@@ -1,12 +1,12 @@
1
- import React from 'react';
2
- import { render, screen, fireEvent } from '@testing-library/react';
3
- import '@testing-library/jest-dom';
4
- import { SuccessCongratulation } from './SuccessCongratulation';
5
-
6
- describe('SuccessCongratulation Component', () => {
7
- test('renders the button with the correct label', () => {
8
- render(<SuccessCongratulation onContinue={jest.fn()} />);
9
- const div = screen.getByRole('SuccessCongratulation', { name: /click me/i });
10
- expect(div).toBeInTheDocument();
11
- });
1
+ import React from 'react';
2
+ import { render, screen, fireEvent } from '@testing-library/react';
3
+ import '@testing-library/jest-dom';
4
+ import { SuccessCongratulation } from './SuccessCongratulation';
5
+
6
+ describe('SuccessCongratulation Component', () => {
7
+ test('renders the button with the correct label', () => {
8
+ render(<SuccessCongratulation onContinue={jest.fn()} />);
9
+ const div = screen.getByRole('SuccessCongratulation', { name: /click me/i });
10
+ expect(div).toBeInTheDocument();
11
+ });
12
12
  });
@@ -1,64 +1,64 @@
1
- import './SuccessCongratulation.scss'
2
- import clsx from 'clsx';
3
- import { bem } from '../../utils/bem';
4
- import { Toolbar } from '../Toolbar';
5
- import { IconButton } from '../IconButton';
6
- import { FaBookmark, FaTrophy } from 'react-icons/fa6';
7
- import { FormEvent, useEffect } from 'react';
8
-
9
- interface SuccessCongratulationProps {
10
- message?: string;
11
- onContinue?: () => void;
12
- onAddToFavorites?: () => void;
13
- isFavorite?: boolean;
14
- className?: string;
15
- continueText?: string;
16
- }
17
- const b = bem("success-congratulation");
18
- export const SuccessCongratulation = ({message = "Congratulations!",
19
- onContinue, onAddToFavorites, isFavorite, className, continueText = "Continue"}: SuccessCongratulationProps) => {
20
-
21
- useEffect(() => {
22
- const handleKeyDown = (event: KeyboardEvent) => {
23
- if (["Escape", "Enter", " "].includes(event.key)) {
24
- event.preventDefault();
25
- onContinue?.();
26
- }
27
- };
28
-
29
- window.addEventListener("keydown", handleKeyDown, false);
30
- return () => {
31
- window.removeEventListener("keydown", handleKeyDown);
32
- };
33
- }, [onContinue]);
34
-
35
- const handleClick = () => {
36
- onContinue?.();
37
- };
38
- const handleAddToFavorites = (e?: FormEvent) => {
39
- e?.stopPropagation();
40
- onAddToFavorites?.();
41
- }
42
-
43
- return (
44
- <div
45
- className={clsx(b(), className)}
46
- onClick={handleClick}
47
- tabIndex={0}
48
- role="button"
49
- //onAnimationEnd={onAnimationEnd}
50
- >
51
- <div className={b("icon")}>
52
- <FaTrophy className={b("checkmark")}/>
53
- </div>
54
- <p className={b("message")}>{message}</p>
55
- <Toolbar>
56
- <IconButton variant='rounded' onClick={onContinue}>{continueText}</IconButton>
57
- <IconButton variant='round-outlined' onClick={handleAddToFavorites}>
58
- <FaBookmark className={clsx(isFavorite && b("favorite"))}/>
59
- </IconButton>
60
- </Toolbar>
61
- </div>
62
- )
63
- }
1
+ import './SuccessCongratulation.scss'
2
+ import clsx from 'clsx';
3
+ import { bem } from '../../utils/bem';
4
+ import { Toolbar } from '../Toolbar';
5
+ import { IconButton } from '../IconButton';
6
+ import { FaBookmark, FaTrophy } from 'react-icons/fa6';
7
+ import { FormEvent, useEffect } from 'react';
8
+
9
+ interface SuccessCongratulationProps {
10
+ message?: string;
11
+ onContinue?: () => void;
12
+ onAddToFavorites?: () => void;
13
+ isFavorite?: boolean;
14
+ className?: string;
15
+ continueText?: string;
16
+ }
17
+ const b = bem("success-congratulation");
18
+ export const SuccessCongratulation = ({message = "Congratulations!",
19
+ onContinue, onAddToFavorites, isFavorite, className, continueText = "Continue"}: SuccessCongratulationProps) => {
20
+
21
+ useEffect(() => {
22
+ const handleKeyDown = (event: KeyboardEvent) => {
23
+ if (["Escape", "Enter", " "].includes(event.key)) {
24
+ event.preventDefault();
25
+ onContinue?.();
26
+ }
27
+ };
28
+
29
+ window.addEventListener("keydown", handleKeyDown, false);
30
+ return () => {
31
+ window.removeEventListener("keydown", handleKeyDown);
32
+ };
33
+ }, [onContinue]);
34
+
35
+ const handleClick = () => {
36
+ onContinue?.();
37
+ };
38
+ const handleAddToFavorites = (e?: FormEvent) => {
39
+ e?.stopPropagation();
40
+ onAddToFavorites?.();
41
+ }
42
+
43
+ return (
44
+ <div
45
+ className={clsx(b(), className)}
46
+ onClick={handleClick}
47
+ tabIndex={0}
48
+ role="button"
49
+ //onAnimationEnd={onAnimationEnd}
50
+ >
51
+ <div className={b("icon")}>
52
+ <FaTrophy className={b("checkmark")}/>
53
+ </div>
54
+ <p className={b("message")}>{message}</p>
55
+ <Toolbar>
56
+ <IconButton variant='rounded' onClick={onContinue}>{continueText}</IconButton>
57
+ <IconButton variant='round-outlined' onClick={handleAddToFavorites}>
58
+ <FaBookmark className={clsx(isFavorite && b("favorite"))}/>
59
+ </IconButton>
60
+ </Toolbar>
61
+ </div>
62
+ )
63
+ }
64
64
  export default SuccessCongratulation
@@ -1 +1 @@
1
- export * from "./SuccessCongratulation";
1
+ export * from "./SuccessCongratulation";
@@ -1,34 +1,34 @@
1
- .r5ui-text-area {
2
- display: flex;
3
- flex-direction: column;
4
- justify-content: center;
5
-
6
- margin: 0.5em;
7
-
8
- &__label {
9
- flex: 40%;
10
- padding: 3px;
11
- color: $page_text_color;
12
- align-self: start;
13
- margin-right: 0.5em;
14
- text-align: right;
15
- }
16
- &__input {
17
- flex: 60%;
18
- border: $border_size solid $primary_border_color;
19
- border-radius: $border_radius;
20
- color: $control_text_color;
21
- background-color: $control_bg_color;
22
- }
23
-
24
- &__wrapper {
25
- display: flex;
26
- justify-content: space-between;
27
- flex-direction: row;
28
- width: 100%;
29
- }
30
- &__error-container {
31
- text-align: right;
32
- color: $error_validation_color;
33
- }
1
+ .r5ui-text-area {
2
+ display: flex;
3
+ flex-direction: column;
4
+ justify-content: center;
5
+
6
+ margin: 0.5em;
7
+
8
+ &__label {
9
+ flex: 40%;
10
+ padding: 3px;
11
+ color: $page_text_color;
12
+ align-self: start;
13
+ margin-right: 0.5em;
14
+ text-align: right;
15
+ }
16
+ &__input {
17
+ flex: 60%;
18
+ border: $border_size solid $primary_border_color;
19
+ border-radius: $border_radius;
20
+ color: $control_text_color;
21
+ background-color: $control_bg_color;
22
+ }
23
+
24
+ &__wrapper {
25
+ display: flex;
26
+ justify-content: space-between;
27
+ flex-direction: row;
28
+ width: 100%;
29
+ }
30
+ &__error-container {
31
+ text-align: right;
32
+ color: $error_validation_color;
33
+ }
34
34
  }
@@ -1,14 +1,14 @@
1
- import type { Meta, StoryObj } from '@storybook/react';
2
- import { TextArea } from './TextArea';
3
-
4
- const meta: Meta<typeof TextArea> = {
5
- title: 'Example/TextArea',
6
- component: TextArea,
7
- } as Meta;
8
- export default meta;
9
-
10
- type Story = StoryObj<typeof TextArea>;
11
-
12
- export const TextButton: Story = {
13
- render: () => <TextArea value="test" name="tf1" />,
14
- };
1
+ import type { Meta, StoryObj } from '@storybook/react';
2
+ import { TextArea } from './TextArea';
3
+
4
+ const meta: Meta<typeof TextArea> = {
5
+ title: 'Example/TextArea',
6
+ component: TextArea,
7
+ } as Meta;
8
+ export default meta;
9
+
10
+ type Story = StoryObj<typeof TextArea>;
11
+
12
+ export const TextButton: Story = {
13
+ render: () => <TextArea value="test" name="tf1" />,
14
+ };
@@ -1,49 +1,49 @@
1
- import { ChangeEventHandler, FC, forwardRef, RefObject } from "react";
2
- import { formatError } from "../../utils";
3
- import "./TextArea.scss"
4
- import clsx from "clsx";
5
- import { bem } from '../../utils/bem';
6
-
7
- interface ITextAreaProps {
8
- label?: string;
9
- name?: string;
10
- error?: string;
11
- rows?: number;
12
- validationError?: (name?: string) => string | undefined;
13
- onChange?: ChangeEventHandler<HTMLTextAreaElement | HTMLInputElement>;
14
- onBlur?: ChangeEventHandler<HTMLTextAreaElement | HTMLInputElement>;
15
- value?: string;
16
- autoFocus?: boolean;
17
- className?: string;
18
- readonly?: boolean;
19
- placeholder?: string;
20
- noLabel?: boolean;
21
- }
22
-
23
- const b = bem("text-area");
24
- export const TextArea = forwardRef<HTMLTextAreaElement, ITextAreaProps>(({value,
25
- onChange, noLabel = false, onBlur, name, rows = 3, className, autoFocus = false,
26
- readonly = false, label, error, placeholder }: ITextAreaProps, ref) => {
27
-
28
- return (<div className={clsx(b(), className)}>
29
- <div className={b("wrapper")}>
30
- {!noLabel && <label
31
- htmlFor={name} className={b("label")}>{label}:</label>}
32
- <textarea
33
- rows={rows}
34
- id={name}
35
- name={name}
36
- className={b("input")}
37
- readOnly={readonly}
38
- value={value}
39
- onChange={onChange}
40
- onBlur={onBlur}
41
- ref={ref}
42
- autoFocus={autoFocus}
43
- autoComplete="on"
44
- placeholder={placeholder}
45
- />
46
- </div>
47
- {error && <div className={b("error-container")}>{formatError(error, label)}</div>}
48
- </div>)
49
- });
1
+ import { ChangeEventHandler, FC, forwardRef, RefObject } from "react";
2
+ import { formatError } from "../../utils";
3
+ import "./TextArea.scss"
4
+ import clsx from "clsx";
5
+ import { bem } from '../../utils/bem';
6
+
7
+ interface ITextAreaProps {
8
+ label?: string;
9
+ name?: string;
10
+ error?: string;
11
+ rows?: number;
12
+ validationError?: (name?: string) => string | undefined;
13
+ onChange?: ChangeEventHandler<HTMLTextAreaElement | HTMLInputElement>;
14
+ onBlur?: ChangeEventHandler<HTMLTextAreaElement | HTMLInputElement>;
15
+ value?: string;
16
+ autoFocus?: boolean;
17
+ className?: string;
18
+ readonly?: boolean;
19
+ placeholder?: string;
20
+ noLabel?: boolean;
21
+ }
22
+
23
+ const b = bem("text-area");
24
+ export const TextArea = forwardRef<HTMLTextAreaElement, ITextAreaProps>(({value,
25
+ onChange, noLabel = false, onBlur, name, rows = 3, className, autoFocus = false,
26
+ readonly = false, label, error, placeholder }: ITextAreaProps, ref) => {
27
+
28
+ return (<div className={clsx(b(), className)}>
29
+ <div className={b("wrapper")}>
30
+ {!noLabel && <label
31
+ htmlFor={name} className={b("label")}>{label}:</label>}
32
+ <textarea
33
+ rows={rows}
34
+ id={name}
35
+ name={name}
36
+ className={b("input")}
37
+ readOnly={readonly}
38
+ value={value}
39
+ onChange={onChange}
40
+ onBlur={onBlur}
41
+ ref={ref}
42
+ autoFocus={autoFocus}
43
+ autoComplete="on"
44
+ placeholder={placeholder}
45
+ />
46
+ </div>
47
+ {error && <div className={b("error-container")}>{formatError(error, label)}</div>}
48
+ </div>)
49
+ });
@@ -1 +1 @@
1
- export * from "./TextArea";
1
+ export * from "./TextArea";
@@ -1,46 +1,49 @@
1
- .r5ui-text-field {
2
- display: flex;
3
- flex-direction: column;
4
- align-items: center;
5
- justify-content: center;
6
- //flex: 1;
7
- margin: 0.5em;
8
- flex-wrap: wrap;
9
- gap: 16px;
10
-
11
- &__label {
12
- flex: 40%;
13
- padding: 3px;
14
- color: $page_text_color;
15
- align-self: center;
16
- margin-right: 0.5em;
17
- text-align: right;
18
- }
19
- &__input-wrapper {
20
- flex: 60%;
21
- text-align: left;
22
- }
23
- &__input {
24
- border: $border_size solid $primary_border_color;
25
- border-radius: $border_radius;
26
- color: $control_text_color;
27
- background-color: $control_bg_color;
28
- &--number {
29
- width: 8em;
30
- }
31
- &--time {
32
- width: 8em;
33
- }
34
- }
35
-
36
- &__wrapper {
37
- display: flex;
38
- justify-content: space-between;
39
- flex-direction: row;
40
- width: 100%;
41
- }
42
- &__error-container {
43
- text-align: right;
44
- color: $error_validation_color;
45
- }
1
+ .r5ui-text-field {
2
+ display: flex;
3
+ flex-direction: column;
4
+ align-items: center;
5
+ justify-content: center;
6
+ //flex: 1;
7
+ margin: 0.5em;
8
+ flex-wrap: wrap;
9
+ gap: 16px;
10
+
11
+ &__label {
12
+ flex: 40%;
13
+ padding: 3px;
14
+ color: $page_text_color;
15
+ align-self: center;
16
+ margin-right: 0.5em;
17
+ text-align: right;
18
+ }
19
+ &__input-wrapper {
20
+ flex: 60%;
21
+ text-align: left;
22
+ }
23
+ &__input {
24
+ border: $border_size solid $primary_border_color;
25
+ border-radius: $border_radius;
26
+ color: $control_text_color;
27
+ background-color: $control_bg_color;
28
+ &--number {
29
+ width: 8em;
30
+ }
31
+ &--time {
32
+ width: 8em;
33
+ }
34
+ &--text {
35
+ width: 100%;
36
+ }
37
+ }
38
+
39
+ &__wrapper {
40
+ display: flex;
41
+ justify-content: space-between;
42
+ flex-direction: row;
43
+ width: 100%;
44
+ }
45
+ &__error-container {
46
+ text-align: right;
47
+ color: $error_validation_color;
48
+ }
46
49
  }
@@ -1,14 +1,14 @@
1
- import type { Meta, StoryObj } from '@storybook/react';
2
- import { TextField } from './TextField';
3
-
4
- const meta: Meta<typeof TextField> = {
5
- title: 'Example/TextField',
6
- component: TextField,
7
- } as Meta;
8
- export default meta;
9
-
10
- type Story = StoryObj<typeof TextField>;
11
-
12
- export const TextButton: Story = {
13
- render: () => <TextField value="test" name="tf1" />,
14
- };
1
+ import type { Meta, StoryObj } from '@storybook/react';
2
+ import { TextField } from './TextField';
3
+
4
+ const meta: Meta<typeof TextField> = {
5
+ title: 'Example/TextField',
6
+ component: TextField,
7
+ } as Meta;
8
+ export default meta;
9
+
10
+ type Story = StoryObj<typeof TextField>;
11
+
12
+ export const TextButton: Story = {
13
+ render: () => <TextField value="test" name="tf1" />,
14
+ };