@imperium/layout 7.0.4 → 7.1.2
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/client.js +617 -361
- package/dist/client.min.js +1 -1
- package/dist/client.min.js.map +1 -1
- package/dist/components/ExecuteSelectorHook.d.ts +8 -0
- package/dist/components/ItemBarItem.d.ts +1 -1
- package/dist/components/Layout.d.ts +1 -1
- package/dist/components/RenderIfVisible.d.ts +6 -0
- package/dist/index.d.ts +1 -0
- package/dist/types.d.ts +22 -12
- package/dist/utils.d.ts +2 -1
- package/package.json +19 -19
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@imperium/layout",
|
|
3
|
-
"version": "7.
|
|
3
|
+
"version": "7.1.2",
|
|
4
4
|
"description": "Imperium Layout package",
|
|
5
5
|
"bugs": {
|
|
6
6
|
"url": "https://github.com/darkadept/imperium/issues"
|
|
@@ -15,16 +15,16 @@
|
|
|
15
15
|
"client.js"
|
|
16
16
|
],
|
|
17
17
|
"scripts": {
|
|
18
|
-
"build": "
|
|
19
|
-
"build:dev": "
|
|
20
|
-
"build:prod": "
|
|
21
|
-
"clean": "
|
|
22
|
-
"
|
|
23
|
-
"lint": "
|
|
24
|
-
"lint:fix": "
|
|
25
|
-
"sort": "
|
|
18
|
+
"build": "thx build",
|
|
19
|
+
"build:dev": "thx build:dev",
|
|
20
|
+
"build:prod": "thx build:prod",
|
|
21
|
+
"clean": "thx clean",
|
|
22
|
+
"deps": "thx deps",
|
|
23
|
+
"lint": "thx lint",
|
|
24
|
+
"lint:fix": "thx lint:fix",
|
|
25
|
+
"sort": "thx sort",
|
|
26
26
|
"start": "screen -c ./dev.screenrc",
|
|
27
|
-
"ts": "
|
|
27
|
+
"ts": "thx ts"
|
|
28
28
|
},
|
|
29
29
|
"eslintConfig": {
|
|
30
30
|
"parserOptions": {
|
|
@@ -32,19 +32,19 @@
|
|
|
32
32
|
}
|
|
33
33
|
},
|
|
34
34
|
"dependencies": {
|
|
35
|
-
"@imperium/client": "^7.0
|
|
36
|
-
"@imperium/state": "^7.
|
|
35
|
+
"@imperium/client": "^7.1.0",
|
|
36
|
+
"@imperium/state": "^7.1.2",
|
|
37
37
|
"debug": "^4.3.2",
|
|
38
|
+
"history": "^5.0.1",
|
|
38
39
|
"lodash": "^4.17.21",
|
|
39
|
-
"query-string": "^7.0.1",
|
|
40
40
|
"react-responsive": "^8.2.0",
|
|
41
|
-
"semantic-ui-react": "^2.0.
|
|
41
|
+
"semantic-ui-react": "^2.0.4"
|
|
42
42
|
},
|
|
43
43
|
"peerDependencies": {
|
|
44
|
-
"@reduxjs/toolkit": "
|
|
45
|
-
"mingo": "
|
|
46
|
-
"react": "
|
|
47
|
-
"react-redux": "
|
|
44
|
+
"@reduxjs/toolkit": "1.x",
|
|
45
|
+
"mingo": "4.x",
|
|
46
|
+
"react": "17.x",
|
|
47
|
+
"react-redux": "7.x",
|
|
48
48
|
"react-router-dom": "5.x"
|
|
49
49
|
},
|
|
50
50
|
"engines": {
|
|
@@ -53,5 +53,5 @@
|
|
|
53
53
|
"publishConfig": {
|
|
54
54
|
"access": "public"
|
|
55
55
|
},
|
|
56
|
-
"gitHead": "
|
|
56
|
+
"gitHead": "ba311e4934254a5ef1be916dae4f1a0102c99e6c"
|
|
57
57
|
}
|