@react5/ui 1.0.27 → 1.0.28

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 (186) 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.js +1 -1
  28. package/packages/lib/dist/esm/index.esm.js.map +1 -1
  29. package/packages/lib/dist/esm/index.esm.scss +1401 -1401
  30. package/packages/lib/dist/index.js +1 -1
  31. package/packages/lib/dist/index.js.map +1 -1
  32. package/packages/lib/dist/index.scss +1401 -1401
  33. package/packages/lib/jest.config.js +19 -19
  34. package/packages/lib/package.json +100 -102
  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 +60 -60
  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/HeaderButtons/HeaderButtons.scss +6 -6
  76. package/packages/lib/src/components/HeaderButtons/HeaderButtons.stories.tsx +17 -17
  77. package/packages/lib/src/components/HeaderButtons/HeaderButtons.test.tsx +11 -11
  78. package/packages/lib/src/components/HeaderButtons/HeaderButtons.tsx +28 -28
  79. package/packages/lib/src/components/HeaderButtons/index.tsx +1 -1
  80. package/packages/lib/src/components/IconButton/IconButton.scss +64 -64
  81. package/packages/lib/src/components/IconButton/IconButton.tsx +44 -44
  82. package/packages/lib/src/components/MenuItem/MenuItem.scss +13 -13
  83. package/packages/lib/src/components/MenuItem/MenuItem.tsx +36 -36
  84. package/packages/lib/src/components/Modal/Modal.scss +71 -71
  85. package/packages/lib/src/components/Modal/Modal.tsx +60 -60
  86. package/packages/lib/src/components/Navbar/Navbar.scss +52 -52
  87. package/packages/lib/src/components/Navbar/Navbar.stories.tsx +25 -25
  88. package/packages/lib/src/components/Navbar/Navbar.tsx +38 -38
  89. package/packages/lib/src/components/NavbarLink/NavbarLink.scss +15 -15
  90. package/packages/lib/src/components/NavbarLink/NavbarLink.tsx +34 -34
  91. package/packages/lib/src/components/NavbarMenu/NavbarMenu.scss +156 -156
  92. package/packages/lib/src/components/NavbarMenu/NavbarMenu.stories.tsx +24 -24
  93. package/packages/lib/src/components/NavbarMenu/NavbarMenu.tsx +72 -72
  94. package/packages/lib/src/components/Panel/Panel.scss +29 -29
  95. package/packages/lib/src/components/Panel/Panel.stories.tsx +32 -32
  96. package/packages/lib/src/components/Panel/Panel.test.tsx +11 -11
  97. package/packages/lib/src/components/Panel/Panel.tsx +29 -29
  98. package/packages/lib/src/components/Panel/index.tsx +1 -1
  99. package/packages/lib/src/components/Paper/Paper.scss +5 -5
  100. package/packages/lib/src/components/Paper/Paper.stories.tsx +18 -18
  101. package/packages/lib/src/components/Paper/Paper.tsx +18 -18
  102. package/packages/lib/src/components/Paper/index.tsx +1 -1
  103. package/packages/lib/src/components/RangeSlider/RangeSlider.scss +83 -83
  104. package/packages/lib/src/components/RangeSlider/RangeSlider.stories.tsx +24 -24
  105. package/packages/lib/src/components/RangeSlider/RangeSlider.tsx +150 -150
  106. package/packages/lib/src/components/ResponsiveBar/ResponsiveBar.scss +72 -72
  107. package/packages/lib/src/components/ResponsiveBar/ResponsiveBar.tsx +38 -38
  108. package/packages/lib/src/components/ScrollView/ScrollView.scss +20 -20
  109. package/packages/lib/src/components/ScrollView/ScrollView.stories.tsx +17 -17
  110. package/packages/lib/src/components/ScrollView/ScrollView.test.tsx +11 -11
  111. package/packages/lib/src/components/ScrollView/ScrollView.tsx +19 -19
  112. package/packages/lib/src/components/ScrollView/index.tsx +1 -1
  113. package/packages/lib/src/components/Section/Section.scss +17 -17
  114. package/packages/lib/src/components/Section/Section.tsx +26 -26
  115. package/packages/lib/src/components/SelectField/SelectField.scss +42 -42
  116. package/packages/lib/src/components/SelectField/SelectField.stories.tsx +14 -14
  117. package/packages/lib/src/components/SelectField/SelectField.tsx +54 -54
  118. package/packages/lib/src/components/SelectField/index.tsx +1 -1
  119. package/packages/lib/src/components/Spacer/Spacer.scss +2 -2
  120. package/packages/lib/src/components/Spacer/Spacer.tsx +6 -6
  121. package/packages/lib/src/components/StackPanel/StackPanel.scss +8 -8
  122. package/packages/lib/src/components/StackPanel/StackPanel.stories.tsx +17 -17
  123. package/packages/lib/src/components/StackPanel/StackPanel.test.tsx +11 -11
  124. package/packages/lib/src/components/StackPanel/StackPanel.tsx +31 -31
  125. package/packages/lib/src/components/StackPanel/index.tsx +1 -1
  126. package/packages/lib/src/components/Submenu/Submenu.scss +55 -55
  127. package/packages/lib/src/components/Submenu/Submenu.stories.tsx +45 -45
  128. package/packages/lib/src/components/Submenu/Submenu.tsx +59 -59
  129. package/packages/lib/src/components/Submenu/index.tsx +1 -1
  130. package/packages/lib/src/components/SuccessCongratulation/SuccessCongratulation.scss +75 -75
  131. package/packages/lib/src/components/SuccessCongratulation/SuccessCongratulation.stories.tsx +17 -17
  132. package/packages/lib/src/components/SuccessCongratulation/SuccessCongratulation.test.tsx +11 -11
  133. package/packages/lib/src/components/SuccessCongratulation/SuccessCongratulation.tsx +63 -63
  134. package/packages/lib/src/components/SuccessCongratulation/index.tsx +1 -1
  135. package/packages/lib/src/components/TextArea/TextArea.scss +41 -41
  136. package/packages/lib/src/components/TextArea/TextArea.stories.tsx +14 -14
  137. package/packages/lib/src/components/TextArea/TextArea.tsx +50 -50
  138. package/packages/lib/src/components/TextArea/index.tsx +1 -1
  139. package/packages/lib/src/components/TextField/TextField.scss +56 -56
  140. package/packages/lib/src/components/TextField/TextField.stories.tsx +14 -14
  141. package/packages/lib/src/components/TextField/TextField.tsx +89 -89
  142. package/packages/lib/src/components/TextField/index.tsx +1 -1
  143. package/packages/lib/src/components/TitleEdit/TitleEdit.scss +17 -17
  144. package/packages/lib/src/components/TitleEdit/TitleEdit.tsx +69 -69
  145. package/packages/lib/src/components/Toast/Toast.scss +32 -32
  146. package/packages/lib/src/components/Toast/Toast.tsx +29 -29
  147. package/packages/lib/src/components/ToggleButton/ToggleButton.scss +47 -47
  148. package/packages/lib/src/components/ToggleButton/ToggleButton.stories.tsx +22 -22
  149. package/packages/lib/src/components/ToggleButton/ToggleButton.tsx +41 -41
  150. package/packages/lib/src/components/ToggleButton/index.tsx +1 -1
  151. package/packages/lib/src/components/Toolbar/Toolbar.scss +16 -16
  152. package/packages/lib/src/components/Toolbar/Toolbar.stories.tsx +17 -17
  153. package/packages/lib/src/components/Toolbar/Toolbar.test.tsx +11 -11
  154. package/packages/lib/src/components/Toolbar/Toolbar.tsx +20 -20
  155. package/packages/lib/src/components/Toolbar/index.tsx +1 -1
  156. package/packages/lib/src/components/Typography/Typography.scss +51 -51
  157. package/packages/lib/src/components/Typography/Typography.stories.tsx +18 -18
  158. package/packages/lib/src/components/Typography/Typography.tsx +19 -19
  159. package/packages/lib/src/components/index.tsx +34 -34
  160. package/packages/lib/src/hooks/index.tsx +3 -3
  161. package/packages/lib/src/hooks/use-click-outside.tsx +19 -19
  162. package/packages/lib/src/hooks/use-form.tsx +107 -107
  163. package/packages/lib/src/hooks/use-keys-enteresc.tsx +25 -25
  164. package/packages/lib/src/hooks/use-set-startup-focus.tsx +8 -8
  165. package/packages/lib/src/i18n/config.ts +8 -8
  166. package/packages/lib/src/i18n/en/translation.json +11 -11
  167. package/packages/lib/src/i18n/fr/translation.json +11 -11
  168. package/packages/lib/src/i18n/index.ts +11 -11
  169. package/packages/lib/src/index.tsx +7 -7
  170. package/packages/lib/src/stories/Intrduction.mdx +171 -171
  171. package/packages/lib/src/stories/assets/github.svg +3 -3
  172. package/packages/lib/src/styles/1-color-vars.scss +51 -51
  173. package/packages/lib/src/styles/2-font-variables.scss +2 -2
  174. package/packages/lib/src/styles/variables.scss +1 -1
  175. package/packages/lib/src/test/i18n.ts +17 -17
  176. package/packages/lib/src/utils/bem.ts +4 -4
  177. package/packages/lib/src/utils/formatError.ts +5 -5
  178. package/packages/lib/src/utils/index.ts +1 -1
  179. package/packages/lib/src/utils/interfaces.ts +5 -5
  180. package/packages/lib/tsconfig.json +26 -25
  181. package/packages/lib/vite.config.js +18 -18
  182. package/packages/ui-test/package-lock.json +97 -97
  183. package/packages/ui-test/package.json +19 -19
  184. package/packages/ui-test/playwright.config.ts +80 -80
  185. package/packages/ui-test/tests/example.spec.ts +18 -18
  186. package/packages/ui-test/tests-examples/demo-todo-app.spec.ts +437 -437
package/LICENSE CHANGED
@@ -1,21 +1,21 @@
1
- MIT License
2
-
3
- Copyright (c) 2025 React5
4
-
5
- Permission is hereby granted, free of charge, to any person obtaining a copy
6
- of this software and associated documentation files (the "Software"), to deal
7
- in the Software without restriction, including without limitation the rights
8
- to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9
- copies of the Software, and to permit persons to whom the Software is
10
- furnished to do so, subject to the following conditions:
11
-
12
- The above copyright notice and this permission notice shall be included in all
13
- copies or substantial portions of the Software.
14
-
15
- THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16
- IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17
- FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18
- AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19
- LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20
- OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21
- SOFTWARE.
1
+ MIT License
2
+
3
+ Copyright (c) 2025 React5
4
+
5
+ Permission is hereby granted, free of charge, to any person obtaining a copy
6
+ of this software and associated documentation files (the "Software"), to deal
7
+ in the Software without restriction, including without limitation the rights
8
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9
+ copies of the Software, and to permit persons to whom the Software is
10
+ furnished to do so, subject to the following conditions:
11
+
12
+ The above copyright notice and this permission notice shall be included in all
13
+ copies or substantial portions of the Software.
14
+
15
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21
+ SOFTWARE.
package/README.md CHANGED
@@ -1,2 +1,2 @@
1
- # ui
2
- A template of a React UI library with a test app. It uses a monorepo structure.
1
+ # ui
2
+ A template of a React UI library with a test app. It uses a monorepo structure.
package/package.json CHANGED
@@ -1,38 +1,38 @@
1
- {
2
- "name": "@react5/ui",
3
- "version": "1.0.27",
4
- "description": "A React UI library.",
5
- "homepage": "https://github.com/react5com/ui#readme",
6
- "bugs": {
7
- "url": "https://github.com/react5com/ui/issues"
8
- },
9
- "repository": {
10
- "type": "git",
11
- "url": "git+https://github.com/react5com/ui.git"
12
- },
13
- "workspaces": [
14
- "packages/lib",
15
- "packages/app",
16
- "packages/ui-test"
17
- ],
18
- "license": "MIT",
19
- "author": "React5.com",
20
- "main": "packages/lib/dist/index.js",
21
- "type": "module",
22
- "module": "packages/lib/dist/esm/index.esm.js",
23
- "types": "packages/lib/dist/types/index.d.ts",
24
- "style": "packages/lib/dist/index.css",
25
- "scripts": {
26
- "build": "npm run build --workspaces",
27
- "test": "npm run test --workspaces",
28
- "dev": "npm-run-all --parallel dev:*",
29
- "dev:lib": "npm --workspace @react5/lib run dev",
30
- "dev:app": "npm --workspace @react5/app run dev",
31
- "uitest": "npm --workspace ui-test run uitest",
32
- "storybook": "npm --workspace @react5/lib run storybook",
33
- "plop": "npm --workspace @react5/lib run plop"
34
- },
35
- "devDependencies": {
36
- "npm-run-all": "^4.1.5"
37
- }
38
- }
1
+ {
2
+ "name": "@react5/ui",
3
+ "version": "1.0.28",
4
+ "description": "A React UI library.",
5
+ "homepage": "https://github.com/react5com/ui#readme",
6
+ "bugs": {
7
+ "url": "https://github.com/react5com/ui/issues"
8
+ },
9
+ "repository": {
10
+ "type": "git",
11
+ "url": "git+https://github.com/react5com/ui.git"
12
+ },
13
+ "workspaces": [
14
+ "packages/lib",
15
+ "packages/app",
16
+ "packages/ui-test"
17
+ ],
18
+ "license": "MIT",
19
+ "author": "React5.com",
20
+ "main": "packages/lib/dist/index.js",
21
+ "type": "module",
22
+ "module": "packages/lib/dist/esm/index.esm.js",
23
+ "types": "packages/lib/dist/types/index.d.ts",
24
+ "style": "packages/lib/dist/index.css",
25
+ "scripts": {
26
+ "build": "npm run build --workspaces",
27
+ "test": "npm run test --workspaces",
28
+ "dev": "npm-run-all --parallel dev:*",
29
+ "dev:lib": "npm --workspace @react5/lib run dev",
30
+ "dev:app": "npm --workspace @react5/app run dev",
31
+ "uitest": "npm --workspace ui-test run uitest",
32
+ "storybook": "npm --workspace @react5/lib run storybook",
33
+ "plop": "npm --workspace @react5/lib run plop"
34
+ },
35
+ "devDependencies": {
36
+ "npm-run-all": "^4.1.5"
37
+ }
38
+ }
@@ -1,50 +1,50 @@
1
- # React + TypeScript + Vite
2
-
3
- This template provides a minimal setup to get React working in Vite with HMR and some ESLint rules.
4
-
5
- Currently, two official plugins are available:
6
-
7
- - [@vitejs/plugin-react](https://github.com/vitejs/vite-plugin-react/blob/main/packages/plugin-react/README.md) uses [Babel](https://babeljs.io/) for Fast Refresh
8
- - [@vitejs/plugin-react-swc](https://github.com/vitejs/vite-plugin-react-swc) uses [SWC](https://swc.rs/) for Fast Refresh
9
-
10
- ## Expanding the ESLint configuration
11
-
12
- If you are developing a production application, we recommend updating the configuration to enable type aware lint rules:
13
-
14
- - Configure the top-level `parserOptions` property like this:
15
-
16
- ```js
17
- export default tseslint.config({
18
- languageOptions: {
19
- // other options...
20
- parserOptions: {
21
- project: ['./tsconfig.node.json', './tsconfig.app.json'],
22
- tsconfigRootDir: import.meta.dirname,
23
- },
24
- },
25
- })
26
- ```
27
-
28
- - Replace `tseslint.configs.recommended` to `tseslint.configs.recommendedTypeChecked` or `tseslint.configs.strictTypeChecked`
29
- - Optionally add `...tseslint.configs.stylisticTypeChecked`
30
- - Install [eslint-plugin-react](https://github.com/jsx-eslint/eslint-plugin-react) and update the config:
31
-
32
- ```js
33
- // eslint.config.js
34
- import react from 'eslint-plugin-react'
35
-
36
- export default tseslint.config({
37
- // Set the react version
38
- settings: { react: { version: '18.3' } },
39
- plugins: {
40
- // Add the react plugin
41
- react,
42
- },
43
- rules: {
44
- // other rules...
45
- // Enable its recommended rules
46
- ...react.configs.recommended.rules,
47
- ...react.configs['jsx-runtime'].rules,
48
- },
49
- })
50
- ```
1
+ # React + TypeScript + Vite
2
+
3
+ This template provides a minimal setup to get React working in Vite with HMR and some ESLint rules.
4
+
5
+ Currently, two official plugins are available:
6
+
7
+ - [@vitejs/plugin-react](https://github.com/vitejs/vite-plugin-react/blob/main/packages/plugin-react/README.md) uses [Babel](https://babeljs.io/) for Fast Refresh
8
+ - [@vitejs/plugin-react-swc](https://github.com/vitejs/vite-plugin-react-swc) uses [SWC](https://swc.rs/) for Fast Refresh
9
+
10
+ ## Expanding the ESLint configuration
11
+
12
+ If you are developing a production application, we recommend updating the configuration to enable type aware lint rules:
13
+
14
+ - Configure the top-level `parserOptions` property like this:
15
+
16
+ ```js
17
+ export default tseslint.config({
18
+ languageOptions: {
19
+ // other options...
20
+ parserOptions: {
21
+ project: ['./tsconfig.node.json', './tsconfig.app.json'],
22
+ tsconfigRootDir: import.meta.dirname,
23
+ },
24
+ },
25
+ })
26
+ ```
27
+
28
+ - Replace `tseslint.configs.recommended` to `tseslint.configs.recommendedTypeChecked` or `tseslint.configs.strictTypeChecked`
29
+ - Optionally add `...tseslint.configs.stylisticTypeChecked`
30
+ - Install [eslint-plugin-react](https://github.com/jsx-eslint/eslint-plugin-react) and update the config:
31
+
32
+ ```js
33
+ // eslint.config.js
34
+ import react from 'eslint-plugin-react'
35
+
36
+ export default tseslint.config({
37
+ // Set the react version
38
+ settings: { react: { version: '18.3' } },
39
+ plugins: {
40
+ // Add the react plugin
41
+ react,
42
+ },
43
+ rules: {
44
+ // other rules...
45
+ // Enable its recommended rules
46
+ ...react.configs.recommended.rules,
47
+ ...react.configs['jsx-runtime'].rules,
48
+ },
49
+ })
50
+ ```
@@ -1,28 +1,28 @@
1
- import js from '@eslint/js'
2
- import globals from 'globals'
3
- import reactHooks from 'eslint-plugin-react-hooks'
4
- import reactRefresh from 'eslint-plugin-react-refresh'
5
- import tseslint from 'typescript-eslint'
6
-
7
- export default tseslint.config(
8
- { ignores: ['dist'] },
9
- {
10
- extends: [js.configs.recommended, ...tseslint.configs.recommended],
11
- files: ['**/*.{ts,tsx}'],
12
- languageOptions: {
13
- ecmaVersion: 2020,
14
- globals: globals.browser,
15
- },
16
- plugins: {
17
- 'react-hooks': reactHooks,
18
- 'react-refresh': reactRefresh,
19
- },
20
- rules: {
21
- ...reactHooks.configs.recommended.rules,
22
- 'react-refresh/only-export-components': [
23
- 'warn',
24
- { allowConstantExport: true },
25
- ],
26
- },
27
- },
28
- )
1
+ import js from '@eslint/js'
2
+ import globals from 'globals'
3
+ import reactHooks from 'eslint-plugin-react-hooks'
4
+ import reactRefresh from 'eslint-plugin-react-refresh'
5
+ import tseslint from 'typescript-eslint'
6
+
7
+ export default tseslint.config(
8
+ { ignores: ['dist'] },
9
+ {
10
+ extends: [js.configs.recommended, ...tseslint.configs.recommended],
11
+ files: ['**/*.{ts,tsx}'],
12
+ languageOptions: {
13
+ ecmaVersion: 2020,
14
+ globals: globals.browser,
15
+ },
16
+ plugins: {
17
+ 'react-hooks': reactHooks,
18
+ 'react-refresh': reactRefresh,
19
+ },
20
+ rules: {
21
+ ...reactHooks.configs.recommended.rules,
22
+ 'react-refresh/only-export-components': [
23
+ 'warn',
24
+ { allowConstantExport: true },
25
+ ],
26
+ },
27
+ },
28
+ )
@@ -1,13 +1,13 @@
1
- <!doctype html>
2
- <html lang="en">
3
- <head>
4
- <meta charset="UTF-8" />
5
- <link rel="icon" type="image/svg+xml" href="/vite.svg" />
6
- <meta name="viewport" content="width=device-width, initial-scale=1.0" />
7
- <title>Vite + React + TS</title>
8
- </head>
9
- <body>
10
- <div id="root"></div>
11
- <script type="module" src="/src/main.tsx"></script>
12
- </body>
13
- </html>
1
+ <!doctype html>
2
+ <html lang="en">
3
+ <head>
4
+ <meta charset="UTF-8" />
5
+ <link rel="icon" type="image/svg+xml" href="/vite.svg" />
6
+ <meta name="viewport" content="width=device-width, initial-scale=1.0" />
7
+ <title>Vite + React + TS</title>
8
+ </head>
9
+ <body>
10
+ <div id="root"></div>
11
+ <script type="module" src="/src/main.tsx"></script>
12
+ </body>
13
+ </html>
@@ -1,13 +1,13 @@
1
- /** @type {import('ts-jest/dist/types').InitialOptionsTsJest} */
2
- export default {
3
- preset: 'ts-jest',
4
- passWithNoTests: true,
5
- testEnvironment: 'jsdom',
6
- moduleNameMapper:{
7
- "\\.(css|less|scss|sass)$": "identity-obj-proxy"
8
- },
9
- testPathIgnorePatterns: [
10
- "/build/",
11
- "/dist/"
12
- ],
1
+ /** @type {import('ts-jest/dist/types').InitialOptionsTsJest} */
2
+ export default {
3
+ preset: 'ts-jest',
4
+ passWithNoTests: true,
5
+ testEnvironment: 'jsdom',
6
+ moduleNameMapper:{
7
+ "\\.(css|less|scss|sass)$": "identity-obj-proxy"
8
+ },
9
+ testPathIgnorePatterns: [
10
+ "/build/",
11
+ "/dist/"
12
+ ],
13
13
  };
@@ -1,36 +1,36 @@
1
- {
2
- "name": "@react5/app",
3
- "private": true,
4
- "version": "0.0.0",
5
- "type": "module",
6
- "author": "React5.com",
7
- "scripts": {
8
- "dev": "vite",
9
- "build": "tsc -b && vite build",
10
- "lint": "eslint .",
11
- "preview": "vite preview",
12
- "test": "jest"
13
- },
14
- "dependencies": {
15
- "react": "^19.1.0",
16
- "react-dom": "^19.1.0",
17
- "@react5/lib": "*",
18
- "i18next": "^25.2.1",
19
- "react-i18next": "^15.5.3"
20
- },
21
- "devDependencies": {
22
- "@eslint/js": "^9.29.0",
23
- "@types/react": "^19.1.8",
24
- "@types/react-dom": "^19.1.6",
25
- "@vitejs/plugin-react": "^4.5.2",
26
- "eslint": "^9.29.0",
27
- "eslint-plugin-react-hooks": "^5.2.0",
28
- "eslint-plugin-react-refresh": "^0.4.20",
29
- "globals": "^16.2.0",
30
- "typescript": "^5.8.3",
31
- "typescript-eslint": "^8.34.1",
32
- "vite": "^6.3.5",
33
- "jest": "^30.0.2",
34
- "ts-jest": "^29.4.0"
35
- }
36
- }
1
+ {
2
+ "name": "@react5/app",
3
+ "private": true,
4
+ "version": "0.0.0",
5
+ "type": "module",
6
+ "author": "React5.com",
7
+ "scripts": {
8
+ "dev": "vite",
9
+ "build": "tsc -b && vite build",
10
+ "lint": "eslint .",
11
+ "preview": "vite preview",
12
+ "test": "jest"
13
+ },
14
+ "dependencies": {
15
+ "react": "^19.2.3",
16
+ "react-dom": "^19.2.3",
17
+ "@react5/lib": "*",
18
+ "i18next": "^25.7.4",
19
+ "react-i18next": "^16.5.3"
20
+ },
21
+ "devDependencies": {
22
+ "@eslint/js": "^9.39.2",
23
+ "@types/react": "^19.2.8",
24
+ "@types/react-dom": "^19.2.3",
25
+ "@vitejs/plugin-react": "^5.1.2",
26
+ "eslint": "^9.39.2",
27
+ "eslint-plugin-react-hooks": "^7.0.1",
28
+ "eslint-plugin-react-refresh": "^0.4.26",
29
+ "globals": "^17.0.0",
30
+ "typescript": "^5.9.3",
31
+ "typescript-eslint": "^8.53.0",
32
+ "vite": "^7.3.1",
33
+ "jest": "^30.2.0",
34
+ "ts-jest": "^29.4.6"
35
+ }
36
+ }
@@ -1,6 +1,6 @@
1
- body {
2
- display: flex;
3
- justify-content: center;
4
- align-items: center;
5
- text-align: center;
1
+ body {
2
+ display: flex;
3
+ justify-content: center;
4
+ align-items: center;
5
+ text-align: center;
6
6
  }
@@ -1,35 +1,35 @@
1
- import './App.css'
2
- import { Button, CheckBox, Form, TextField, useForm } from '@react5/lib'
3
- import '@react5/lib/dist/index.css'
4
- import { useTranslation } from 'react-i18next'
5
- import { translationNs } from './i18n/ns'
6
- import { useEffect } from 'react'
7
-
8
- function App() {
9
- const { t } = useTranslation(translationNs)
10
- const { register, registerForm, values, reset } = useForm({fieldone: "test", checkfield: false});
11
- useEffect(() => {
12
- console.log("effect")
13
- setTimeout(() => {
14
- reset({fieldone: "test2", checkfield: true})
15
- }, 1000);
16
- }, []);
17
- const handleTestButton = () => {
18
- console.log(values);
19
- }
20
- const handleSubmit = (data?: unknown) => {
21
- console.log("submit", data);
22
- }
23
- return (
24
- <>
25
- <h1>{t('app.title')}</h1>
26
- <Form {...registerForm(handleSubmit)}>
27
- <TextField label="One" {...register("fieldone")} />
28
- <CheckBox label="Two" {...register("checkfield")} />
29
- <Button onClick={handleTestButton}>test</Button>
30
- <Button type='submit'>Submit</Button>
31
- </Form>
32
- </>
33
- )
34
- }
35
- export default App
1
+ import './App.css'
2
+ import { Button, CheckBox, Form, TextField, useForm } from '@react5/lib'
3
+ import '@react5/lib/dist/index.css'
4
+ import { useTranslation } from 'react-i18next'
5
+ import { translationNs } from './i18n/ns'
6
+ import { useEffect } from 'react'
7
+
8
+ function App() {
9
+ const { t } = useTranslation(translationNs)
10
+ const { register, registerForm, values, reset } = useForm({fieldone: "test", checkfield: false});
11
+ useEffect(() => {
12
+ console.log("effect")
13
+ setTimeout(() => {
14
+ reset({fieldone: "test2", checkfield: true})
15
+ }, 1000);
16
+ }, []);
17
+ const handleTestButton = () => {
18
+ console.log(values);
19
+ }
20
+ const handleSubmit = (data?: unknown) => {
21
+ console.log("submit", data);
22
+ }
23
+ return (
24
+ <>
25
+ <h1>{t('app.title')}</h1>
26
+ <Form {...registerForm(handleSubmit)}>
27
+ <TextField label="One" {...register("fieldone")} />
28
+ <CheckBox label="Two" {...register("checkfield")} />
29
+ <Button onClick={handleTestButton}>test</Button>
30
+ <Button type='submit'>Submit</Button>
31
+ </Form>
32
+ </>
33
+ )
34
+ }
35
+ export default App
@@ -1,22 +1,22 @@
1
- import i18next from 'i18next';
2
- import en from './en/translation.json';
3
- import fr from './fr/translation.json';
4
- import { initReactI18next } from 'react-i18next';
5
- import { translationNs } from './ns';
6
-
7
- i18next
8
- .use(initReactI18next)
9
- .init({
10
- fallbackLng: 'en',
11
- debug: true,
12
- resources: {
13
- en: {
14
- [translationNs]: en
15
- },
16
- fr: {
17
- [translationNs]: fr
18
- },
19
- },
20
- });
21
-
1
+ import i18next from 'i18next';
2
+ import en from './en/translation.json';
3
+ import fr from './fr/translation.json';
4
+ import { initReactI18next } from 'react-i18next';
5
+ import { translationNs } from './ns';
6
+
7
+ i18next
8
+ .use(initReactI18next)
9
+ .init({
10
+ fallbackLng: 'en',
11
+ debug: true,
12
+ resources: {
13
+ en: {
14
+ [translationNs]: en
15
+ },
16
+ fr: {
17
+ [translationNs]: fr
18
+ },
19
+ },
20
+ });
21
+
22
22
  export default i18next;
@@ -1,5 +1,5 @@
1
- {
2
- "app": {
3
- "title": "Test application"
4
- }
1
+ {
2
+ "app": {
3
+ "title": "Test application"
4
+ }
5
5
  }
@@ -1,5 +1,5 @@
1
- {
2
- "app": {
3
- "title": "Application de test"
4
- }
1
+ {
2
+ "app": {
3
+ "title": "Application de test"
4
+ }
5
5
  }
@@ -1,3 +1,3 @@
1
- import i18n from './config';
2
-
3
- export const i18next = i18n;
1
+ import i18n from './config';
2
+
3
+ export const i18next = i18n;
@@ -1,16 +1,16 @@
1
- import { StrictMode } from 'react'
2
- import { createRoot } from 'react-dom/client'
3
- import './styles/1-reset.scss'
4
- import './styles/2-colors.scss'
5
- import './index.css'
6
- import { i18next } from './i18n';
7
- import { addTranslations } from '@react5/lib'
8
- addTranslations(i18next);
9
-
10
- import App from './App.tsx'
11
-
12
- createRoot(document.getElementById('root')!).render(
13
- <StrictMode>
14
- <App />
15
- </StrictMode>,
16
- )
1
+ import { StrictMode } from 'react'
2
+ import { createRoot } from 'react-dom/client'
3
+ import './styles/1-reset.scss'
4
+ import './styles/2-colors.scss'
5
+ import './index.css'
6
+ import { i18next } from './i18n';
7
+ import { addTranslations } from '@react5/lib'
8
+ addTranslations(i18next);
9
+
10
+ import App from './App.tsx'
11
+
12
+ createRoot(document.getElementById('root')!).render(
13
+ <StrictMode>
14
+ <App />
15
+ </StrictMode>,
16
+ )