@dartcom/ui-kit 3.10.0 → 10.0.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.
@@ -1 +1 @@
1
- {"version":3,"file":"auth.d.ts","sourceRoot":"","sources":["../../../src/providers/auth/auth.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,KAAK,MAAM,OAAO,CAAC;AAO/B,OAAO,EAAE,iBAAiB,EAAE,MAAM,SAAS,CAAC;;AAmB5C,wBAAsC"}
1
+ {"version":3,"file":"auth.d.ts","sourceRoot":"","sources":["../../../src/providers/auth/auth.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,KAAK,MAAM,OAAO,CAAC;AAK/B,OAAO,EAAE,iBAAiB,EAAE,MAAM,SAAS,CAAC;;AAiB5C,wBAAsC"}
@@ -2,12 +2,12 @@ import * as React from 'react';
2
2
  import { rootStore } from './store';
3
3
  export declare const StoreContext: React.Context<{
4
4
  authStore: import("..").AuthStore;
5
- modalStore: import("../../components/modal").ModalStore;
5
+ modalStore: import("../..").ModalStore;
6
6
  }>;
7
7
  export declare const DartcomMobxProvider: React.FC<React.PropsWithChildren>;
8
8
  declare const useRootStore: () => {
9
9
  authStore: import("..").AuthStore;
10
- modalStore: import("../../components/modal").ModalStore;
10
+ modalStore: import("../..").ModalStore;
11
11
  };
12
12
  export { rootStore, useRootStore };
13
13
  //# sourceMappingURL=mobx.d.ts.map
package/package.json CHANGED
@@ -1,147 +1,148 @@
1
- {
2
- "name": "@dartcom/ui-kit",
3
- "version": "3.10.0",
4
- "description": "Кастомная библиотека комопнентов Dartcom",
5
- "type": "module",
6
- "main": "./dist/index.cjs",
7
- "module": "./dist/index.esm.js",
8
- "types": "./dist/index.d.ts",
9
- "exports": {
10
- ".": {
11
- "types": "./dist/index.d.ts",
12
- "import": "./dist/index.esm.js",
13
- "require": "./dist/index.cjs"
14
- }
15
- },
16
- "files": [
17
- "dist"
18
- ],
19
- "scripts": {
20
- "build": "rollup -c",
21
- "build:watch": "rollup -c -w",
22
- "test": "jest",
23
- "test:watch": "jest --watch",
24
- "storybook": "storybook dev -p 6006",
25
- "build-storybook": "storybook build",
26
- "lint": "eslint src --ext .ts,.tsx",
27
- "lint:fix": "eslint src --ext .ts,.tsx --fix",
28
- "format": "prettier --write src/**/*.{ts,tsx}",
29
- "prepare": "husky",
30
- "prepublishOnly": "npm run lint && npm test && npm run build",
31
- "library:publish": "npm publish --access public",
32
- "version:patch": "npm version patch",
33
- "version:minor": "npm version minor",
34
- "version:major": "npm version major"
35
- },
36
- "repository": {
37
- "type": "git",
38
- "url": "git+https://github.com/jeni2d/tiles_library.git"
39
- },
40
- "keywords": [
41
- "react",
42
- "typescript",
43
- "ui",
44
- "components",
45
- "library"
46
- ],
47
- "author": "Artemidas",
48
- "license": "ISC",
49
- "bugs": {
50
- "url": "https://github.com/jeni2d/tiles_library/issues"
51
- },
52
- "homepage": "https://github.com/jeni2d/tiles_library#readme",
53
- "peerDependencies": {
54
- "@emotion/react": "^11.14.0",
55
- "@emotion/styled": "^11.14.1",
56
- "@mui/icons-material": "^7.3.6",
57
- "@mui/lab": "^7.0.1-beta.20",
58
- "@mui/material": "^7.3.6",
59
- "@mui/x-date-pickers": "^8.21.0",
60
- "react": "^19.2.0",
61
- "react-dom": "^19.2.0"
62
- },
63
- "devDependencies": {
64
- "@eslint/compat": "^2.0.0",
65
- "@eslint/eslintrc": "^3.3.3",
66
- "@eslint/js": "^9.39.1",
67
- "@rollup/plugin-alias": "^6.0.0",
68
- "@rollup/plugin-commonjs": "^29.0.0",
69
- "@rollup/plugin-node-resolve": "^16.0.3",
70
- "@rollup/plugin-terser": "^0.4.4",
71
- "@rollup/plugin-typescript": "^12.3.0",
72
- "@rollup/plugin-yaml": "^4.1.2",
73
- "@semantic-release/changelog": "^6.0.3",
74
- "@semantic-release/git": "^10.0.1",
75
- "@storybook/addon-docs": "^10.1.10",
76
- "@storybook/addon-onboarding": "^10.1.10",
77
- "@storybook/addon-themes": "^10.1.10",
78
- "@storybook/react-vite": "^10.1.10",
79
- "@testing-library/jest-dom": "^6.9.1",
80
- "@testing-library/react": "^16.3.1",
81
- "@types/jest": "^30.0.0",
82
- "@types/leaflet": "^1.9.21",
83
- "@types/node": "^24.10.1",
84
- "@types/react": "^19.2.7",
85
- "@types/react-dom": "^19.2.3",
86
- "@types/rollup-plugin-peer-deps-external": "^2.2.6",
87
- "@typescript-eslint/eslint-plugin": "^8.48.1",
88
- "@typescript-eslint/parser": "^8.48.1",
89
- "axios": "^1.13.2",
90
- "eslint": "^9.39.1",
91
- "eslint-config-prettier": "^10.1.8",
92
- "eslint-plugin-jest": "^28.14.0",
93
- "eslint-plugin-prettier": "^5.5.4",
94
- "eslint-plugin-react": "^7.37.5",
95
- "eslint-plugin-react-hooks": "^7.0.1",
96
- "eslint-plugin-react-refresh": "^0.4.24",
97
- "eslint-plugin-simple-import-sort": "^12.1.1",
98
- "globals": "^16.5.0",
99
- "husky": "^9.1.7",
100
- "jest": "^30.2.0",
101
- "jest-environment-jsdom": "^30.2.0",
102
- "lint-staged": "^16.2.7",
103
- "prettier": "^3.7.4",
104
- "rollup": "^4.53.3",
105
- "rollup-plugin-peer-deps-external": "^2.2.4",
106
- "rollup-plugin-postcss": "^4.0.2",
107
- "rollup-plugin-preserve-directives": "^0.4.0",
108
- "rollup-plugin-tsc-alias": "^1.1.4",
109
- "rollup-plugin-tsconfig-paths": "^1.5.2",
110
- "semantic-release": "^25.0.2",
111
- "storybook": "^10.1.10",
112
- "ts-jest": "^29.4.6",
113
- "ts-node": "^10.9.2",
114
- "typescript": "^5.9.3",
115
- "typescript-eslint": "^8.48.1",
116
- "typescript-transform-paths": "^3.5.5",
117
- "vite": "^7.2.6",
118
- "vite-tsconfig-paths": "^5.1.4",
119
- "eslint-plugin-storybook": "10.1.10"
120
- },
121
- "lint-staged": {
122
- "src/**/*.{ts,tsx}": [
123
- "eslint --fix",
124
- "prettier --write",
125
- "git add"
126
- ]
127
- },
128
- "dependencies": {
129
- "@dnd-kit/core": "^6.3.1",
130
- "@dnd-kit/sortable": "^10.0.0",
131
- "@dnd-kit/utilities": "^3.2.2",
132
- "@hookform/resolvers": "^5.2.2",
133
- "@tanstack/react-query": "^5.90.12",
134
- "date-fns": "^4.1.0",
135
- "leaflet": "^1.9.4",
136
- "mobx": "^6.15.0",
137
- "mobx-react-lite": "^4.1.1",
138
- "notistack": "^3.0.2",
139
- "react-error-boundary": "^6.0.0",
140
- "react-hook-form": "^7.68.0",
141
- "react-leaflet": "^5.0.0",
142
- "react-router-dom": "^7.10.1",
143
- "react-uuid": "^2.0.0",
144
- "tangram": "^0.22.0",
145
- "yup": "^1.7.1"
146
- }
147
- }
1
+ {
2
+ "name": "@dartcom/ui-kit",
3
+ "version": "10.0.3",
4
+ "description": "Кастомная библиотека комопнентов Dartcom",
5
+ "type": "module",
6
+ "main": "./dist/index.cjs",
7
+ "module": "./dist/index.esm.js",
8
+ "types": "./dist/index.d.ts",
9
+ "exports": {
10
+ ".": {
11
+ "types": "./dist/index.d.ts",
12
+ "import": "./dist/index.esm.js",
13
+ "require": "./dist/index.cjs"
14
+ }
15
+ },
16
+ "files": [
17
+ "dist"
18
+ ],
19
+ "scripts": {
20
+ "build": "rollup -c",
21
+ "build:watch": "rollup -c -w",
22
+ "library:pack": "npm run build && npm pack",
23
+ "test": "jest",
24
+ "test:watch": "jest --watch",
25
+ "storybook": "storybook dev -p 6006",
26
+ "storybook:build": "storybook build",
27
+ "lint": "eslint src --ext .ts,.tsx",
28
+ "lint:fix": "eslint src --ext .ts,.tsx --fix",
29
+ "format": "prettier --write src/**/*.{ts,tsx}",
30
+ "prepare": "husky",
31
+ "prepublishOnly": "npm run lint && npm test && npm run build",
32
+ "library:publish": "npm publish --access public",
33
+ "version:patch": "npm version patch",
34
+ "version:minor": "npm version minor",
35
+ "version:major": "npm version major"
36
+ },
37
+ "repository": {
38
+ "type": "git",
39
+ "url": "git+https://github.com/jeni2d/tiles_library.git"
40
+ },
41
+ "keywords": [
42
+ "react",
43
+ "typescript",
44
+ "ui",
45
+ "components",
46
+ "library"
47
+ ],
48
+ "author": "Artemidas",
49
+ "license": "ISC",
50
+ "bugs": {
51
+ "url": "https://github.com/jeni2d/tiles_library/issues"
52
+ },
53
+ "homepage": "https://github.com/jeni2d/tiles_library#readme",
54
+ "peerDependencies": {
55
+ "@emotion/react": "^11.14.0",
56
+ "@emotion/styled": "^11.14.1",
57
+ "@mui/icons-material": "^7.3.6",
58
+ "@mui/lab": "^7.0.1-beta.20",
59
+ "@mui/material": "^7.3.6",
60
+ "@mui/x-date-pickers": "^8.21.0",
61
+ "react": "^19.2.0",
62
+ "react-dom": "^19.2.0"
63
+ },
64
+ "devDependencies": {
65
+ "@eslint/compat": "^2.0.0",
66
+ "@eslint/eslintrc": "^3.3.3",
67
+ "@eslint/js": "^9.39.1",
68
+ "@rollup/plugin-alias": "^6.0.0",
69
+ "@rollup/plugin-commonjs": "^29.0.0",
70
+ "@rollup/plugin-node-resolve": "^16.0.3",
71
+ "@rollup/plugin-terser": "^0.4.4",
72
+ "@rollup/plugin-typescript": "^12.3.0",
73
+ "@rollup/plugin-yaml": "^4.1.2",
74
+ "@semantic-release/changelog": "^6.0.3",
75
+ "@semantic-release/git": "^10.0.1",
76
+ "@storybook/addon-docs": "^10.1.10",
77
+ "@storybook/addon-onboarding": "^10.1.10",
78
+ "@storybook/addon-themes": "^10.1.10",
79
+ "@storybook/react-vite": "^10.1.10",
80
+ "@testing-library/jest-dom": "^6.9.1",
81
+ "@testing-library/react": "^16.3.1",
82
+ "@types/jest": "^30.0.0",
83
+ "@types/leaflet": "^1.9.21",
84
+ "@types/node": "^24.10.1",
85
+ "@types/react": "^19.2.7",
86
+ "@types/react-dom": "^19.2.3",
87
+ "@types/rollup-plugin-peer-deps-external": "^2.2.6",
88
+ "@typescript-eslint/eslint-plugin": "^8.48.1",
89
+ "@typescript-eslint/parser": "^8.48.1",
90
+ "axios": "^1.13.2",
91
+ "eslint": "^9.39.1",
92
+ "eslint-config-prettier": "^10.1.8",
93
+ "eslint-plugin-jest": "^28.14.0",
94
+ "eslint-plugin-prettier": "^5.5.4",
95
+ "eslint-plugin-react": "^7.37.5",
96
+ "eslint-plugin-react-hooks": "^7.0.1",
97
+ "eslint-plugin-react-refresh": "^0.4.24",
98
+ "eslint-plugin-simple-import-sort": "^12.1.1",
99
+ "globals": "^16.5.0",
100
+ "husky": "^9.1.7",
101
+ "jest": "^30.2.0",
102
+ "jest-environment-jsdom": "^30.2.0",
103
+ "lint-staged": "^16.2.7",
104
+ "prettier": "^3.7.4",
105
+ "rollup": "^4.53.3",
106
+ "rollup-plugin-peer-deps-external": "^2.2.4",
107
+ "rollup-plugin-postcss": "^4.0.2",
108
+ "rollup-plugin-preserve-directives": "^0.4.0",
109
+ "rollup-plugin-tsc-alias": "^1.1.4",
110
+ "rollup-plugin-tsconfig-paths": "^1.5.2",
111
+ "semantic-release": "^25.0.2",
112
+ "storybook": "^10.1.10",
113
+ "ts-jest": "^29.4.6",
114
+ "ts-node": "^10.9.2",
115
+ "typescript": "^5.9.3",
116
+ "typescript-eslint": "^8.48.1",
117
+ "typescript-transform-paths": "^3.5.5",
118
+ "vite": "^7.2.6",
119
+ "vite-tsconfig-paths": "^5.1.4",
120
+ "eslint-plugin-storybook": "10.1.10"
121
+ },
122
+ "lint-staged": {
123
+ "src/**/*.{ts,tsx}": [
124
+ "eslint --fix",
125
+ "prettier --write",
126
+ "git add"
127
+ ]
128
+ },
129
+ "dependencies": {
130
+ "@dnd-kit/core": "^6.3.1",
131
+ "@dnd-kit/sortable": "^10.0.0",
132
+ "@dnd-kit/utilities": "^3.2.2",
133
+ "@hookform/resolvers": "^5.2.2",
134
+ "@tanstack/react-query": "^5.90.12",
135
+ "date-fns": "^4.1.0",
136
+ "leaflet": "^1.9.4",
137
+ "mobx": "^6.15.0",
138
+ "mobx-react-lite": "^4.1.1",
139
+ "notistack": "^3.0.2",
140
+ "react-error-boundary": "^6.0.0",
141
+ "react-hook-form": "^7.68.0",
142
+ "react-leaflet": "^5.0.0",
143
+ "react-router-dom": "^7.10.1",
144
+ "react-uuid": "^2.0.0",
145
+ "tangram": "^0.22.0",
146
+ "yup": "^1.7.1"
147
+ }
148
+ }