fui-material 1.16.15 → 1.17.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 +13 -50
- package/dist/types/material/FGrid/FGrid.d.ts +1 -1
- package/package.json +6 -6
package/README.md
CHANGED
|
@@ -1,50 +1,13 @@
|
|
|
1
|
-
#
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
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
|
+
# FUI-KIT
|
|
2
|
+
## Material UI Kit for gis.favr
|
|
3
|
+
|
|
4
|
+
Dillinger is a React JS, TypeScript, JS, HTML5, CSS.
|
|
5
|
+
|
|
6
|
+
## О наборе
|
|
7
|
+
|
|
8
|
+
> Данный UI набор предназначен для разработки сервисов и приложений gis.favr
|
|
9
|
+
> Он адаптирован под React приложения с использованием TS
|
|
10
|
+
|
|
11
|
+
[FUI-KIT](https://allorion.github.io/fui-storybook/) - Просмотреть имеющиеся компоненты
|
|
12
|
+
|
|
13
|
+
©Allori
|
package/package.json
CHANGED
|
@@ -1,15 +1,18 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "fui-material",
|
|
3
|
-
"version": "1.
|
|
3
|
+
"version": "1.17.0",
|
|
4
4
|
"publishConfig": {
|
|
5
5
|
"access": "public",
|
|
6
6
|
"registry": "https://registry.npmjs.org/"
|
|
7
7
|
},
|
|
8
|
+
"author": "Allori",
|
|
9
|
+
"license": "ISC",
|
|
8
10
|
"private": false,
|
|
9
11
|
"scripts": {
|
|
10
12
|
"dev": "vite",
|
|
11
13
|
"build:types": "tsc --project tsconfig.build.json",
|
|
12
14
|
"build": "vite build && npm run build:types",
|
|
15
|
+
"publish": "npm run build",
|
|
13
16
|
"lint": "eslint .",
|
|
14
17
|
"preview": "vite preview"
|
|
15
18
|
},
|
|
@@ -17,9 +20,7 @@
|
|
|
17
20
|
"axios": "^1.7.4",
|
|
18
21
|
"jszip": "^3.10.1",
|
|
19
22
|
"react": "^18.3.1",
|
|
20
|
-
"react-dom": "^18.3.1"
|
|
21
|
-
"vite-plugin-css-injected-by-js": "^3.5.1",
|
|
22
|
-
"vite-plugin-lib-inject-css": "^2.1.1"
|
|
23
|
+
"react-dom": "^18.3.1"
|
|
23
24
|
},
|
|
24
25
|
"devDependencies": {
|
|
25
26
|
"@eslint/js": "^9.9.0",
|
|
@@ -28,7 +29,6 @@
|
|
|
28
29
|
"@types/react": "^18.3.3",
|
|
29
30
|
"@types/react-dom": "^18.3.0",
|
|
30
31
|
"@vitejs/plugin-react": "^4.3.1",
|
|
31
|
-
"dts-bundle-generator": "^9.5.1",
|
|
32
32
|
"eslint": "^9.9.0",
|
|
33
33
|
"eslint-plugin-react-hooks": "^5.1.0-rc.0",
|
|
34
34
|
"eslint-plugin-react-refresh": "^0.4.9",
|
|
@@ -37,7 +37,7 @@
|
|
|
37
37
|
"typescript": "^5.5.3",
|
|
38
38
|
"typescript-eslint": "^8.0.1",
|
|
39
39
|
"vite": "^5.4.1",
|
|
40
|
-
"vite-plugin-css": "^1.
|
|
40
|
+
"vite-plugin-lib-inject-css": "^2.1.1"
|
|
41
41
|
},
|
|
42
42
|
"main": "dist/f-ui-kit.umd.js",
|
|
43
43
|
"module": "dist/f-ui-kit.es.js",
|