gov-ui-core 0.2.6-beta.10 → 0.2.6-beta.3

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 (115) hide show
  1. package/.eslintrc.json +54 -54
  2. package/.husky/pre-commit +4 -4
  3. package/.prettierrc +12 -12
  4. package/.storybook/main.ts +37 -37
  5. package/.storybook/preview.tsx +27 -27
  6. package/.stylelintrc.json +16 -16
  7. package/@types/custom.d.ts +43 -43
  8. package/@types/styles.d.ts +86 -86
  9. package/README.md +46 -46
  10. package/build/App.d.ts +3 -3
  11. package/build/Main.d.ts +5 -5
  12. package/build/components/Button/DropdownButton.d.ts +15 -15
  13. package/build/components/Button/SwitchButton.d.ts +7 -7
  14. package/build/components/Button/constants.d.ts +19 -19
  15. package/build/components/Button/index.d.ts +11 -11
  16. package/build/components/Button/styled.d.ts +11 -11
  17. package/build/components/Calendar/CalendarNavigation.d.ts +9 -9
  18. package/build/components/Calendar/constants.d.ts +2 -2
  19. package/build/components/Calendar/index.d.ts +11 -11
  20. package/build/components/Calendar/styled.d.ts +2 -2
  21. package/build/components/Carousel/ArrowButton.d.ts +7 -7
  22. package/build/components/Carousel/index.d.ts +14 -14
  23. package/build/components/Carousel/styled.d.ts +2 -2
  24. package/build/components/Directory/index.d.ts +32 -32
  25. package/build/components/Directory/styled.d.ts +6 -6
  26. package/build/components/EmptyBox/index.d.ts +8 -8
  27. package/build/components/EmptyBox/styled.d.ts +4 -4
  28. package/build/components/Form/Form.d.ts +21 -21
  29. package/build/components/Form/Group.d.ts +6 -6
  30. package/build/components/Form/Item.d.ts +22 -22
  31. package/build/components/Form/index.d.ts +14 -14
  32. package/build/components/Form/styled.d.ts +7 -7
  33. package/build/components/Header/ContentHeader.d.ts +15 -15
  34. package/build/components/Header/styled.d.ts +5 -5
  35. package/build/components/Icons/index.d.ts +14 -14
  36. package/build/components/Input/Checkbox.d.ts +19 -19
  37. package/build/components/Input/ErrorMessage.d.ts +8 -8
  38. package/build/components/Input/Input.d.ts +23 -23
  39. package/build/components/Input/InputNumber.d.ts +8 -8
  40. package/build/components/Input/Radio.d.ts +16 -16
  41. package/build/components/Input/Search.d.ts +13 -13
  42. package/build/components/Input/Select.d.ts +39 -40
  43. package/build/components/Input/TextArea.d.ts +15 -15
  44. package/build/components/Input/index.d.ts +19 -19
  45. package/build/components/Input/styled.d.ts +25 -25
  46. package/build/components/IntlText/index.d.ts +5 -5
  47. package/build/components/Loading/OverlayLoading.d.ts +10 -10
  48. package/build/components/Loading/Spinner.d.ts +9 -9
  49. package/build/components/Loading/styled.d.ts +10 -10
  50. package/build/components/Styled/mixins.d.ts +13 -13
  51. package/build/components/Styled/variable.d.ts +6 -6
  52. package/build/components/Table/AppendTable.d.ts +26 -26
  53. package/build/components/Table/AutoTooltip.d.ts +8 -8
  54. package/build/components/Table/TableBase.d.ts +16 -16
  55. package/build/components/Table/TableLoading.d.ts +9 -9
  56. package/build/components/Table/components/Pagination.d.ts +18 -18
  57. package/build/components/Table/components/PaginationItem.d.ts +9 -9
  58. package/build/components/Table/index.d.ts +27 -27
  59. package/build/components/Table/styled.d.ts +25 -25
  60. package/build/components/TailwindTest/index.d.ts +6 -6
  61. package/build/components/ThemeProvider.d.ts +16 -16
  62. package/build/globalStyle.d.ts +5 -5
  63. package/build/index.d.ts +1 -1
  64. package/build/index.js +1 -1
  65. package/build/modules.d.ts +25 -25
  66. package/build/pages/ButtonSample.d.ts +6 -6
  67. package/build/pages/CreateTable.d.ts +20 -20
  68. package/build/pages/FormSample.d.ts +5 -5
  69. package/build/pages/InputSample.d.ts +6 -6
  70. package/build/pages/Sample.d.ts +5 -5
  71. package/build/pages/Sample2.d.ts +5 -5
  72. package/build/pages/Sample3.d.ts +5 -5
  73. package/build/pages/Sample4.d.ts +5 -5
  74. package/build/pages/TableSample.d.ts +5 -5
  75. package/build/pages/TailwindSample.d.ts +1 -1
  76. package/build/pages/sampleData.d.ts +59 -59
  77. package/build/reportWebVitals.d.ts +3 -3
  78. package/build/theme.d.ts +3 -3
  79. package/build/utils/customState.d.ts +28 -28
  80. package/build/utils/hookUtils.d.ts +16 -16
  81. package/build/utils/index.d.ts +35 -35
  82. package/config/env.js +104 -104
  83. package/config/getHttpsConfig.js +66 -66
  84. package/config/jest/babelTransform.js +29 -29
  85. package/config/jest/cssTransform.js +14 -14
  86. package/config/jest/fileTransform.js +40 -40
  87. package/config/modules.js +134 -134
  88. package/config/paths.js +77 -77
  89. package/config/webpack/persistentCache/createEnvironmentHash.js +9 -9
  90. package/config/webpack.config.js +756 -756
  91. package/config/webpack.prod.config.js +91 -91
  92. package/config/webpackDevServer.config.js +127 -127
  93. package/doctor-storybook.log +18 -0
  94. package/migration-storybook.log +98 -0
  95. package/package.json +246 -246
  96. package/postcss.config.js +6 -8
  97. package/public/index.html +43 -43
  98. package/public/manifest.json +25 -25
  99. package/public/robots.txt +3 -3
  100. package/scripts/build.js +217 -217
  101. package/scripts/start.js +154 -154
  102. package/scripts/test.js +52 -52
  103. package/tailwind.config.js +185 -185
  104. package/tsconfig.json +34 -34
  105. package/build/20d0d451f31ed3b5c15f.woff +0 -1
  106. package/build/39285e8af490890e2df4.otf +0 -0
  107. package/build/3965b6176d1ce958b445.woff +0 -1
  108. package/build/508d69efb37042551458.woff +0 -1
  109. package/build/72ba455576ce8174ffa8.otf +0 -0
  110. package/build/a9ba4978d441af03cd27.woff +0 -1
  111. package/build/components/Chip/constants.d.ts +0 -9
  112. package/build/components/Chip/index.d.ts +0 -12
  113. package/build/e65c7edcd47e3e9f5c99.otf +0 -0
  114. package/build/f7a8dce8dfc249d7e12b.otf +0 -0
  115. package/build/pages/ChipSample.d.ts +0 -6
package/.eslintrc.json CHANGED
@@ -1,54 +1,54 @@
1
- {
2
- "env": {
3
- "node": true,
4
- "browser": true,
5
- "es2021": true
6
- },
7
- "extends": [
8
- "eslint:recommended",
9
- "plugin:react/recommended",
10
- "plugin:@typescript-eslint/recommended",
11
- "prettier"
12
- ],
13
- "overrides": [
14
- ],
15
- "parser": "@typescript-eslint/parser",
16
- "parserOptions": {
17
- "ecmaFeatures": {
18
- "jsx": true
19
- },
20
- "ecmaVersion": "latest",
21
- "sourceType": "module",
22
- "project": "./tsconfig.json"
23
- },
24
- "plugins": [
25
- "react",
26
- "@typescript-eslint"
27
- ],
28
- "rules": {
29
- "quotes": [
30
- "error",
31
- "single",
32
- {
33
- "avoidEscape": true
34
- }
35
- ],
36
- "jsx-quotes": ["error", "prefer-double"],
37
- "@typescript-eslint/no-explicit-any": "off",
38
- "@typescript-eslint/no-empty-interface": "off",
39
- "@typescript-eslint/no-empty-function": "off",
40
- "@typescript-eslint/ban-ts-comment": "off",
41
- "@typescript-eslint/no-non-null-assertion": "off",
42
- "react/no-children-prop": "off",
43
- "no-extra-boolean-cast": "off",
44
- "no-constant-condition": "off"
45
- },
46
- "settings": {
47
- "react": {
48
- "version": "detect"
49
- }
50
- },
51
- "ignorePatterns": [
52
- "mock/**/*"
53
- ]
54
- }
1
+ {
2
+ "env": {
3
+ "node": true,
4
+ "browser": true,
5
+ "es2021": true
6
+ },
7
+ "extends": [
8
+ "eslint:recommended",
9
+ "plugin:react/recommended",
10
+ "plugin:@typescript-eslint/recommended",
11
+ "prettier"
12
+ ],
13
+ "overrides": [
14
+ ],
15
+ "parser": "@typescript-eslint/parser",
16
+ "parserOptions": {
17
+ "ecmaFeatures": {
18
+ "jsx": true
19
+ },
20
+ "ecmaVersion": "latest",
21
+ "sourceType": "module",
22
+ "project": "./tsconfig.json"
23
+ },
24
+ "plugins": [
25
+ "react",
26
+ "@typescript-eslint"
27
+ ],
28
+ "rules": {
29
+ "quotes": [
30
+ "error",
31
+ "single",
32
+ {
33
+ "avoidEscape": true
34
+ }
35
+ ],
36
+ "jsx-quotes": ["error", "prefer-double"],
37
+ "@typescript-eslint/no-explicit-any": "off",
38
+ "@typescript-eslint/no-empty-interface": "off",
39
+ "@typescript-eslint/no-empty-function": "off",
40
+ "@typescript-eslint/ban-ts-comment": "off",
41
+ "@typescript-eslint/no-non-null-assertion": "off",
42
+ "react/no-children-prop": "off",
43
+ "no-extra-boolean-cast": "off",
44
+ "no-constant-condition": "off"
45
+ },
46
+ "settings": {
47
+ "react": {
48
+ "version": "detect"
49
+ }
50
+ },
51
+ "ignorePatterns": [
52
+ "mock/**/*"
53
+ ]
54
+ }
package/.husky/pre-commit CHANGED
@@ -1,4 +1,4 @@
1
- #!/usr/bin/env sh
2
- . "$(dirname -- "$0")/_/husky.sh"
3
-
4
- yarn lint-staged
1
+ #!/usr/bin/env sh
2
+ . "$(dirname -- "$0")/_/husky.sh"
3
+
4
+ yarn lint-staged
package/.prettierrc CHANGED
@@ -1,12 +1,12 @@
1
- {
2
- "printWidth": 80,
3
- "tabWidth": 2,
4
- "useTabs": false,
5
- "semi": true,
6
- "singleQuote": true,
7
- "quoteProps": "consistent",
8
- "trailingComma": "es5",
9
- "bracketSpacing": true,
10
- "arrowParens": "always",
11
- "endOfLine": "lf"
12
- }
1
+ {
2
+ "printWidth": 80,
3
+ "tabWidth": 2,
4
+ "useTabs": false,
5
+ "semi": true,
6
+ "singleQuote": true,
7
+ "quoteProps": "consistent",
8
+ "trailingComma": "es5",
9
+ "bracketSpacing": true,
10
+ "arrowParens": "always",
11
+ "endOfLine": "lf"
12
+ }
@@ -1,37 +1,37 @@
1
- // @ts-nocheck
2
- import type { StorybookConfig } from '@storybook/react-webpack5';
3
- import { resolve } from 'path';
4
-
5
- const config: StorybookConfig = {
6
- stories: ['../src/**/*.mdx', '../src/**/*.stories.@(js|jsx|mjs|ts|tsx)'],
7
- addons: [
8
- '@storybook/addon-webpack5-compiler-swc',
9
- '@storybook/addon-onboarding',
10
- '@storybook/addon-essentials',
11
- '@chromatic-com/storybook',
12
- '@storybook/addon-interactions',
13
- ],
14
- framework: {
15
- name: '@storybook/react-webpack5',
16
- options: {},
17
- },
18
- docs: {},
19
- staticDirs: ['../public'],
20
- webpackFinal: async (config) => {
21
- if (config.resolve) {
22
- config.resolve.alias = {
23
- ...config.resolve?.alias,
24
- '@': resolve(__dirname, '../src'),
25
- };
26
- }
27
- if (config.module?.rules) {
28
- config.module.rules.push({
29
- test: /\.scss$/,
30
- use: ['style-loader', 'css-loader', 'sass-loader'],
31
- include: resolve(__dirname, '../'),
32
- });
33
- }
34
- return config;
35
- },
36
- };
37
- export default config;
1
+ // @ts-nocheck
2
+ import type { StorybookConfig } from '@storybook/react-webpack5';
3
+ import { resolve } from 'path';
4
+
5
+ const config: StorybookConfig = {
6
+ stories: ['../src/**/*.mdx', '../src/**/*.stories.@(js|jsx|mjs|ts|tsx)'],
7
+ addons: [
8
+ '@storybook/addon-webpack5-compiler-swc',
9
+ '@storybook/addon-onboarding',
10
+ '@storybook/addon-essentials',
11
+ '@chromatic-com/storybook',
12
+ '@storybook/addon-interactions',
13
+ ],
14
+ framework: {
15
+ name: '@storybook/react-webpack5',
16
+ options: {},
17
+ },
18
+ docs: {},
19
+ staticDirs: ['../public'],
20
+ webpackFinal: async (config) => {
21
+ if (config.resolve) {
22
+ config.resolve.alias = {
23
+ ...config.resolve?.alias,
24
+ '@': resolve(__dirname, '../src'),
25
+ };
26
+ }
27
+ if (config.module?.rules) {
28
+ config.module.rules.push({
29
+ test: /\.scss$/,
30
+ use: ['style-loader', 'css-loader', 'sass-loader'],
31
+ include: resolve(__dirname, '../'),
32
+ });
33
+ }
34
+ return config;
35
+ },
36
+ };
37
+ export default config;
@@ -1,27 +1,27 @@
1
- import React from 'react';
2
- import type { Preview } from "@storybook/react";
3
- import ThemeProvider from '../src/components/ThemeProvider';
4
-
5
-
6
- const preview: Preview = {
7
- parameters: {
8
- controls: {
9
- matchers: {
10
- color: /(background|color)$/i,
11
- date: /Date$/i,
12
- },
13
- },
14
- },
15
-
16
- decorators: [
17
- (Story) => (
18
- <ThemeProvider>
19
- <Story />
20
- </ThemeProvider>
21
- )
22
- ],
23
-
24
- tags: ['autodocs']
25
- };
26
-
27
- export default preview;
1
+ import React from 'react';
2
+ import type { Preview } from "@storybook/react";
3
+ import ThemeProvider from '../src/components/ThemeProvider';
4
+
5
+
6
+ const preview: Preview = {
7
+ parameters: {
8
+ controls: {
9
+ matchers: {
10
+ color: /(background|color)$/i,
11
+ date: /Date$/i,
12
+ },
13
+ },
14
+ },
15
+
16
+ decorators: [
17
+ (Story) => (
18
+ <ThemeProvider>
19
+ <Story />
20
+ </ThemeProvider>
21
+ )
22
+ ],
23
+
24
+ tags: ['autodocs']
25
+ };
26
+
27
+ export default preview;
package/.stylelintrc.json CHANGED
@@ -1,16 +1,16 @@
1
- {
2
- "extends": ["stylelint-config-standard-scss", "stylelint-config-prettier-scss", "prettier"],
3
- "rules": {
4
- "at-rule-no-unknown": null,
5
- "selector-class-pattern": "^([a-z][a-z0-9]*)(-[a-z0-9]+)*$",
6
- "keyframes-name-pattern": "/^(,[a-z][a-z0-9]*)(-[a-z0-9]+)*$/",
7
- "no-descending-specificity": null,
8
- "block-no-empty": null,
9
- "scss/at-rule-no-unknown": [
10
- true,
11
- {
12
- "ignoreAtRules": ["tailwind"]
13
- }
14
- ]
15
- }
16
- }
1
+ {
2
+ "extends": ["stylelint-config-standard-scss", "stylelint-config-prettier-scss", "prettier"],
3
+ "rules": {
4
+ "at-rule-no-unknown": null,
5
+ "selector-class-pattern": "^([a-z][a-z0-9]*)(-[a-z0-9]+)*$",
6
+ "keyframes-name-pattern": "/^(,[a-z][a-z0-9]*)(-[a-z0-9]+)*$/",
7
+ "no-descending-specificity": null,
8
+ "block-no-empty": null,
9
+ "scss/at-rule-no-unknown": [
10
+ true,
11
+ {
12
+ "ignoreAtRules": ["tailwind"]
13
+ }
14
+ ]
15
+ }
16
+ }
@@ -1,43 +1,43 @@
1
- declare module '*.webp' {
2
- const value: any;
3
- export = value;
4
- }
5
- declare module "*.png" {
6
- const value: any;
7
- export = value;
8
- }
9
- declare module "*.svg" {
10
- const value: any;
11
- export = value;
12
- }
13
-
14
- type Merge<A, B> = {
15
- [K in keyof A]: K extends keyof B ? B[K] : A[K];
16
- } &
17
- B;
18
-
19
- interface PaginationType {
20
- limit?: number;
21
- offset?: number;
22
- sort?: string[] | string;
23
- keyword?: string;
24
- etc?: any;
25
- }
26
-
27
- type FilesParams = Merge<
28
- PaginationType,
29
- {
30
- projectId?: string;
31
- readingDeskId?: string;
32
- fileName?: string;
33
- }
34
- >;
35
-
36
- type TableState = {
37
- pageSize: number;
38
- currentPage: number;
39
- keyword?: string;
40
- sort?: string;
41
- };
42
-
43
- type SubjectType = 'all' | 'project' | 'readingDesk' | 'file' | null;
1
+ declare module '*.webp' {
2
+ const value: any;
3
+ export = value;
4
+ }
5
+ declare module "*.png" {
6
+ const value: any;
7
+ export = value;
8
+ }
9
+ declare module "*.svg" {
10
+ const value: any;
11
+ export = value;
12
+ }
13
+
14
+ type Merge<A, B> = {
15
+ [K in keyof A]: K extends keyof B ? B[K] : A[K];
16
+ } &
17
+ B;
18
+
19
+ interface PaginationType {
20
+ limit?: number;
21
+ offset?: number;
22
+ sort?: string[] | string;
23
+ keyword?: string;
24
+ etc?: any;
25
+ }
26
+
27
+ type FilesParams = Merge<
28
+ PaginationType,
29
+ {
30
+ projectId?: string;
31
+ readingDeskId?: string;
32
+ fileName?: string;
33
+ }
34
+ >;
35
+
36
+ type TableState = {
37
+ pageSize: number;
38
+ currentPage: number;
39
+ keyword?: string;
40
+ sort?: string;
41
+ };
42
+
43
+ type SubjectType = 'all' | 'project' | 'readingDesk' | 'file' | null;
@@ -1,86 +1,86 @@
1
- import 'styled-components';
2
-
3
- declare module '*.css';
4
- declare module '*.scss';
5
- declare module '*.less';
6
-
7
- declare module 'styled-components' {
8
- export interface DefaultTheme {
9
- info?: string;
10
- info10?: string;
11
- info20?: string;
12
- success?: string;
13
- warning?: string;
14
- error?: string;
15
- errortooltip?: string;
16
- transparent?: string;
17
- black100?: string;
18
- black80?: string;
19
- black70?: string;
20
- black60?: string;
21
- black50?: string;
22
- black40?: string;
23
- black30?: string;
24
- black20?: string;
25
- black15?: string;
26
- black10?: string;
27
- black07?: string;
28
- black05?: string;
29
- black03?: string;
30
- white?: string;
31
- white90?: string;
32
- white80?: string;
33
- white70?: string;
34
- white60?: string;
35
- white50?: string;
36
- white40?: string;
37
- white30?: string;
38
- white20?: string;
39
- white10?: string;
40
- line?: string;
41
- primary?: string;
42
- primary90?: string;
43
- primary60?: string;
44
- primary50?: string;
45
- primary40?: string;
46
- primary20?: string;
47
- primary10?: string;
48
- primarystop1?: string;
49
- primarystop2?: string;
50
- emptyLogo?: string;
51
-
52
- // new colors
53
- colorPrimary?: string;
54
- colorPrimary90?: string;
55
- colorPrimary60?: string;
56
- colorPrimary50?: string;
57
- colorPrimary40?: string;
58
- colorPrimary30?: string;
59
- colorPrimary20?: string;
60
- colorPrimary10?: string;
61
- colorPrimaryHover?: string;
62
- colorPrimaryActive?: string;
63
- colorEtcLine?: string;
64
- colorEtcLineDisable?: string;
65
- colorEtcBG?: string;
66
- colorEtcTransparent?: string;
67
- colorEtcError?: string;
68
- colorEtcError05?: string;
69
- colorEtcWarning?: string;
70
- colorEtcWarning05?: string;
71
- colorEtcSuccess?: string;
72
- colorEtcSuccess05?: string;
73
- colorEtcInfo?: string;
74
- colorEtcInfo05?: string;
75
- colorChart01?: string;
76
- colorChart02?: string;
77
- colorChart03?: string;
78
- colorChart04?: string;
79
- colorChart05?: string;
80
- colorChart06?: string;
81
- colorChart07?: string;
82
- colorChart08?: string;
83
- colorChart09?: string;
84
- colorChart10?: string;
85
- }
86
- }
1
+ import 'styled-components';
2
+
3
+ declare module '*.css';
4
+ declare module '*.scss';
5
+ declare module '*.less';
6
+
7
+ declare module 'styled-components' {
8
+ export interface DefaultTheme {
9
+ info?: string;
10
+ info10?: string;
11
+ info20?: string;
12
+ success?: string;
13
+ warning?: string;
14
+ error?: string;
15
+ errortooltip?: string;
16
+ transparent?: string;
17
+ black100?: string;
18
+ black80?: string;
19
+ black70?: string;
20
+ black60?: string;
21
+ black50?: string;
22
+ black40?: string;
23
+ black30?: string;
24
+ black20?: string;
25
+ black15?: string;
26
+ black10?: string;
27
+ black07?: string;
28
+ black05?: string;
29
+ black03?: string;
30
+ white?: string;
31
+ white90?: string;
32
+ white80?: string;
33
+ white70?: string;
34
+ white60?: string;
35
+ white50?: string;
36
+ white40?: string;
37
+ white30?: string;
38
+ white20?: string;
39
+ white10?: string;
40
+ line?: string;
41
+ primary?: string;
42
+ primary90?: string;
43
+ primary60?: string;
44
+ primary50?: string;
45
+ primary40?: string;
46
+ primary20?: string;
47
+ primary10?: string;
48
+ primarystop1?: string;
49
+ primarystop2?: string;
50
+ emptyLogo?: string;
51
+
52
+ // new colors
53
+ colorPrimary?: string;
54
+ colorPrimary90?: string;
55
+ colorPrimary60?: string;
56
+ colorPrimary50?: string;
57
+ colorPrimary40?: string;
58
+ colorPrimary30?: string;
59
+ colorPrimary20?: string;
60
+ colorPrimary10?: string;
61
+ colorPrimaryHover?: string;
62
+ colorPrimaryActive?: string;
63
+ colorEtcLine?: string;
64
+ colorEtcLineDisable?: string;
65
+ colorEtcBG?: string;
66
+ colorEtcTransparent?: string;
67
+ colorEtcError?: string;
68
+ colorEtcError05?: string;
69
+ colorEtcWarning?: string;
70
+ colorEtcWarning05?: string;
71
+ colorEtcSuccess?: string;
72
+ colorEtcSuccess05?: string;
73
+ colorEtcInfo?: string;
74
+ colorEtcInfo05?: string;
75
+ colorChart01?: string;
76
+ colorChart02?: string;
77
+ colorChart03?: string;
78
+ colorChart04?: string;
79
+ colorChart05?: string;
80
+ colorChart06?: string;
81
+ colorChart07?: string;
82
+ colorChart08?: string;
83
+ colorChart09?: string;
84
+ colorChart10?: string;
85
+ }
86
+ }
package/README.md CHANGED
@@ -1,46 +1,46 @@
1
- # Getting Started with Create React App
2
-
3
- This project was bootstrapped with [Create React App](https://github.com/facebook/create-react-app).
4
-
5
- ## Available Scripts
6
-
7
- In the project directory, you can run:
8
-
9
- ### `npm start`
10
-
11
- Runs the app in the development mode.\
12
- Open [http://localhost:3000](http://localhost:3000) to view it in the browser.
13
-
14
- The page will reload if you make edits.\
15
- You will also see any lint errors in the console.
16
-
17
- ### `npm test`
18
-
19
- Launches the test runner in the interactive watch mode.\
20
- See the section about [running tests](https://facebook.github.io/create-react-app/docs/running-tests) for more information.
21
-
22
- ### `npm run build`
23
-
24
- Builds the app for production to the `build` folder.\
25
- It correctly bundles React in production mode and optimizes the build for the best performance.
26
-
27
- The build is minified and the filenames include the hashes.\
28
- Your app is ready to be deployed!
29
-
30
- See the section about [deployment](https://facebook.github.io/create-react-app/docs/deployment) for more information.
31
-
32
- ### `npm run eject`
33
-
34
- **Note: this is a one-way operation. Once you `eject`, you can’t go back!**
35
-
36
- If you aren’t satisfied with the build tool and configuration choices, you can `eject` at any time. This command will remove the single build dependency from your project.
37
-
38
- Instead, it will copy all the configuration files and the transitive dependencies (webpack, Babel, ESLint, etc) right into your project so you have full control over them. All of the commands except `eject` will still work, but they will point to the copied scripts so you can tweak them. At this point you’re on your own.
39
-
40
- You don’t have to ever use `eject`. The curated feature set is suitable for small and middle deployments, and you shouldn’t feel obligated to use this feature. However we understand that this tool wouldn’t be useful if you couldn’t customize it when you are ready for it.
41
-
42
- ## Learn More
43
-
44
- You can learn more in the [Create React App documentation](https://facebook.github.io/create-react-app/docs/getting-started).
45
-
46
- To learn React, check out the [React documentation](https://reactjs.org/).
1
+ # Getting Started with Create React App
2
+
3
+ This project was bootstrapped with [Create React App](https://github.com/facebook/create-react-app).
4
+
5
+ ## Available Scripts
6
+
7
+ In the project directory, you can run:
8
+
9
+ ### `npm start`
10
+
11
+ Runs the app in the development mode.\
12
+ Open [http://localhost:3000](http://localhost:3000) to view it in the browser.
13
+
14
+ The page will reload if you make edits.\
15
+ You will also see any lint errors in the console.
16
+
17
+ ### `npm test`
18
+
19
+ Launches the test runner in the interactive watch mode.\
20
+ See the section about [running tests](https://facebook.github.io/create-react-app/docs/running-tests) for more information.
21
+
22
+ ### `npm run build`
23
+
24
+ Builds the app for production to the `build` folder.\
25
+ It correctly bundles React in production mode and optimizes the build for the best performance.
26
+
27
+ The build is minified and the filenames include the hashes.\
28
+ Your app is ready to be deployed!
29
+
30
+ See the section about [deployment](https://facebook.github.io/create-react-app/docs/deployment) for more information.
31
+
32
+ ### `npm run eject`
33
+
34
+ **Note: this is a one-way operation. Once you `eject`, you can’t go back!**
35
+
36
+ If you aren’t satisfied with the build tool and configuration choices, you can `eject` at any time. This command will remove the single build dependency from your project.
37
+
38
+ Instead, it will copy all the configuration files and the transitive dependencies (webpack, Babel, ESLint, etc) right into your project so you have full control over them. All of the commands except `eject` will still work, but they will point to the copied scripts so you can tweak them. At this point you’re on your own.
39
+
40
+ You don’t have to ever use `eject`. The curated feature set is suitable for small and middle deployments, and you shouldn’t feel obligated to use this feature. However we understand that this tool wouldn’t be useful if you couldn’t customize it when you are ready for it.
41
+
42
+ ## Learn More
43
+
44
+ You can learn more in the [Create React App documentation](https://facebook.github.io/create-react-app/docs/getting-started).
45
+
46
+ To learn React, check out the [React documentation](https://reactjs.org/).
package/build/App.d.ts CHANGED
@@ -1,3 +1,3 @@
1
- import '@mdi/font/css/materialdesignicons.min.css';
2
- declare function App(): import("react/jsx-runtime").JSX.Element;
3
- export default App;
1
+ import '@mdi/font/css/materialdesignicons.min.css';
2
+ declare function App(): import("react/jsx-runtime").JSX.Element;
3
+ export default App;