@its/core 2.2.10 → 2.2.13
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/dist/core.css +21 -1
- package/dist/core.es.js +31420 -24210
- package/dist/types/src/components/Buttons/FlagButton.d.ts +1 -1
- package/dist/types/src/components/Buttons/FlagButton.d.ts.map +1 -1
- package/dist/types/src/components/Buttons/ToggleSwitch.d.ts +3 -2
- package/dist/types/src/components/Buttons/ToggleSwitch.d.ts.map +1 -1
- package/dist/types/src/components/CaptionValue/CaptionValue.d.ts +1 -1
- package/dist/types/src/components/CaptionValue/CaptionValue.d.ts.map +1 -1
- package/dist/types/src/components/CaptionValue/types.d.ts +1 -0
- package/dist/types/src/components/CaptionValue/types.d.ts.map +1 -1
- package/dist/types/src/components/Charts/Graph/index.d.ts +1 -0
- package/dist/types/src/components/Charts/Graph/index.d.ts.map +1 -1
- package/dist/types/src/components/Dialog/ConfirmDialog.d.ts.map +1 -1
- package/dist/types/src/components/Inputs/Select.d.ts +2 -1
- package/dist/types/src/components/Inputs/Select.d.ts.map +1 -1
- package/dist/types/src/components/Inputs/TextField.d.ts +24 -0
- package/dist/types/src/components/Inputs/TextField.d.ts.map +1 -0
- package/dist/types/src/components/Inputs/TextFieldWithKeyboard.d.ts +22 -0
- package/dist/types/src/components/Inputs/TextFieldWithKeyboard.d.ts.map +1 -0
- package/dist/types/src/components/Inputs/index.d.ts +2 -0
- package/dist/types/src/components/Inputs/index.d.ts.map +1 -1
- package/dist/types/src/components/Keyboard/StyledKeyboardWrapper.d.ts +5 -0
- package/dist/types/src/components/Keyboard/StyledKeyboardWrapper.d.ts.map +1 -0
- package/dist/types/src/components/Keyboard/index.d.ts +4 -0
- package/dist/types/src/components/Keyboard/index.d.ts.map +1 -0
- package/dist/types/src/components/Keyboard/layout.d.ts +5 -0
- package/dist/types/src/components/Keyboard/layout.d.ts.map +1 -0
- package/dist/types/src/components/Keyboard/types.d.ts +9 -0
- package/dist/types/src/components/Keyboard/types.d.ts.map +1 -0
- package/dist/types/src/components/Lists/ListWrapper.d.ts.map +1 -1
- package/dist/types/src/components/index.d.ts +1 -0
- package/dist/types/src/components/index.d.ts.map +1 -1
- package/dist/types/src/hooks/index.d.ts +2 -0
- package/dist/types/src/hooks/index.d.ts.map +1 -1
- package/dist/types/src/hooks/useVirtualKeyboard.d.ts +10 -0
- package/dist/types/src/hooks/useVirtualKeyboard.d.ts.map +1 -0
- package/dist/types/src/relay/RelayNetwork.d.ts.map +1 -1
- package/dist/types/src/state_manager/StateProvider.d.ts.map +1 -1
- package/dist/types/src/theme/themes.d.ts.map +1 -1
- package/dist/types/src/utils/index.d.ts +2 -1
- package/dist/types/src/utils/index.d.ts.map +1 -1
- package/dist/types/tsconfig.tsbuildinfo +1 -1
- package/package.json +7 -5
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"type": "module",
|
|
3
3
|
"name": "@its/core",
|
|
4
|
-
"version": "2.2.
|
|
4
|
+
"version": "2.2.13",
|
|
5
5
|
"main": "dist/core.cjs.js",
|
|
6
6
|
"module": "dist/core.es.js",
|
|
7
7
|
"types": "dist/types/index.d.ts",
|
|
@@ -24,6 +24,8 @@
|
|
|
24
24
|
"lint:check": "eslint --max-warnings=0 \"src/**/*.{js,jsx,ts,tsx,json}\""
|
|
25
25
|
},
|
|
26
26
|
"dependencies": {
|
|
27
|
+
"recoil": "^0.7.7",
|
|
28
|
+
"jotai": "^2.12.5",
|
|
27
29
|
"@dnd-kit/core": "^6.3.1",
|
|
28
30
|
"@dnd-kit/modifiers": "^9.0.0",
|
|
29
31
|
"@dnd-kit/sortable": "^10.0.0",
|
|
@@ -45,6 +47,10 @@
|
|
|
45
47
|
"react-gauge-component": "^1.2.64",
|
|
46
48
|
"react-hotkeys-hook": "^5.1.0",
|
|
47
49
|
"react-pdf": "^10.0.1",
|
|
50
|
+
"react-i18next": "^15.5.2",
|
|
51
|
+
"react-relay": "^20.0.0",
|
|
52
|
+
"react-router-dom": "^7.6.1",
|
|
53
|
+
"react-simple-keyboard": "^3.8.101",
|
|
48
54
|
"react-svg": "^16.3.0",
|
|
49
55
|
"react-transition-group": "^4.4.5",
|
|
50
56
|
"react-use": "^17.6.0",
|
|
@@ -59,14 +65,12 @@
|
|
|
59
65
|
"dayjs": "^1.11.13",
|
|
60
66
|
"graphql": "^16.11.0",
|
|
61
67
|
"i18next": "^25.3.2",
|
|
62
|
-
"jotai": "^2.12.5",
|
|
63
68
|
"notistack": "^3.0.2",
|
|
64
69
|
"react": "^19.1.1",
|
|
65
70
|
"react-dom": "^19.1.1",
|
|
66
71
|
"react-i18next": "^15.6.1",
|
|
67
72
|
"react-relay": "^20.1.0",
|
|
68
73
|
"react-router-dom": "^7.7.1",
|
|
69
|
-
"recoil": "^0.7.7",
|
|
70
74
|
"react-is": "^19.1.1",
|
|
71
75
|
"relay-runtime": "^20.1.0"
|
|
72
76
|
},
|
|
@@ -98,7 +102,6 @@
|
|
|
98
102
|
"globals": "^16.3.0",
|
|
99
103
|
"graphql": "^16.11.0",
|
|
100
104
|
"i18next": "^25.3.2",
|
|
101
|
-
"jotai": "^2.12.5",
|
|
102
105
|
"notistack": "^3.0.2",
|
|
103
106
|
"prettier": "^3.6.2",
|
|
104
107
|
"react": "^19.1.1",
|
|
@@ -108,7 +111,6 @@
|
|
|
108
111
|
"react-is": "^19.1.1",
|
|
109
112
|
"react-relay": "^20.1.0",
|
|
110
113
|
"react-router-dom": "^7.7.1",
|
|
111
|
-
"recoil": "^0.7.7",
|
|
112
114
|
"relay-compiler": "^20.1.0",
|
|
113
115
|
"relay-compiler-language-typescript": "^15.0.1",
|
|
114
116
|
"relay-runtime": "^20.1.0",
|