@interopio/groups-ui-react 2.7.0 → 3.0.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/dist/cjs/GroupWrapper.d.ts +2 -1
- package/dist/cjs/defaultComponents/buttons/StandardButton.d.ts +4 -0
- package/dist/cjs/defaultComponents/utils/common.d.ts +3 -0
- package/dist/cjs/defaultComponents/utils/useDragMove.d.ts +6 -0
- package/dist/cjs/index.d.ts +2 -1
- package/dist/cjs/index.js +207 -92
- package/dist/cjs/index.js.map +1 -1
- package/dist/cjs/tests/buttons/BaseButton.test.d.ts +1 -0
- package/dist/cjs/tests/buttons/CloneButton.test.d.ts +1 -0
- package/dist/cjs/tests/buttons/CloseButton.test.d.ts +1 -0
- package/dist/cjs/tests/buttons/CustomButton.test.d.ts +1 -0
- package/dist/cjs/tests/buttons/ExtractButton.test.d.ts +1 -0
- package/dist/cjs/tests/buttons/FeedbackButton.test.d.ts +1 -0
- package/dist/cjs/tests/buttons/LockButtons.test.d.ts +1 -0
- package/dist/cjs/tests/buttons/MaximizeButton.test.d.ts +1 -0
- package/dist/cjs/tests/buttons/MinimizeButton.test.d.ts +1 -0
- package/dist/cjs/tests/buttons/OverflowButton.test.d.ts +1 -0
- package/dist/cjs/tests/buttons/RestoreButton.test.d.ts +1 -0
- package/dist/cjs/tests/buttons/StickyButton.test.d.ts +1 -0
- package/dist/cjs/tests/buttons/UnlockButton.test.d.ts +1 -0
- package/dist/cjs/tests/captionEditor/CaptionEditor.test.d.ts +1 -0
- package/dist/cjs/tests/channelSelector/BaseChannelSelector.test.d.ts +1 -0
- package/dist/cjs/tests/flatCaptionBar/FlatCaptionBar.test.d.ts +1 -0
- package/dist/cjs/tests/groupCaptionBar/GroupCaptionBar.test.d.ts +1 -0
- package/dist/cjs/tests/htmlButtonBar/HtmlButtonBar.test.d.ts +1 -0
- package/dist/cjs/tests/popups/TabOverflowPopup.test.d.ts +1 -0
- package/dist/cjs/tests/tabs/Tab.test.d.ts +1 -0
- package/dist/cjs/types/api.d.ts +12 -1
- package/dist/cjs/types/defaultComponents.d.ts +10 -2
- package/dist/cjs/types/internal.d.ts +48 -45
- package/dist/cjs/webGroupsManager.d.ts +6 -1
- package/dist/esm/GroupWrapper.d.ts +2 -1
- package/dist/esm/defaultComponents/buttons/StandardButton.d.ts +4 -0
- package/dist/esm/defaultComponents/utils/common.d.ts +3 -0
- package/dist/esm/defaultComponents/utils/useDragMove.d.ts +6 -0
- package/dist/esm/index.d.ts +2 -1
- package/dist/esm/index.js +207 -93
- package/dist/esm/index.js.map +1 -1
- package/dist/esm/tests/buttons/BaseButton.test.d.ts +1 -0
- package/dist/esm/tests/buttons/CloneButton.test.d.ts +1 -0
- package/dist/esm/tests/buttons/CloseButton.test.d.ts +1 -0
- package/dist/esm/tests/buttons/CustomButton.test.d.ts +1 -0
- package/dist/esm/tests/buttons/ExtractButton.test.d.ts +1 -0
- package/dist/esm/tests/buttons/FeedbackButton.test.d.ts +1 -0
- package/dist/esm/tests/buttons/LockButtons.test.d.ts +1 -0
- package/dist/esm/tests/buttons/MaximizeButton.test.d.ts +1 -0
- package/dist/esm/tests/buttons/MinimizeButton.test.d.ts +1 -0
- package/dist/esm/tests/buttons/OverflowButton.test.d.ts +1 -0
- package/dist/esm/tests/buttons/RestoreButton.test.d.ts +1 -0
- package/dist/esm/tests/buttons/StickyButton.test.d.ts +1 -0
- package/dist/esm/tests/buttons/UnlockButton.test.d.ts +1 -0
- package/dist/esm/tests/captionEditor/CaptionEditor.test.d.ts +1 -0
- package/dist/esm/tests/channelSelector/BaseChannelSelector.test.d.ts +1 -0
- package/dist/esm/tests/flatCaptionBar/FlatCaptionBar.test.d.ts +1 -0
- package/dist/esm/tests/groupCaptionBar/GroupCaptionBar.test.d.ts +1 -0
- package/dist/esm/tests/htmlButtonBar/HtmlButtonBar.test.d.ts +1 -0
- package/dist/esm/tests/popups/TabOverflowPopup.test.d.ts +1 -0
- package/dist/esm/tests/tabs/Tab.test.d.ts +1 -0
- package/dist/esm/types/api.d.ts +12 -1
- package/dist/esm/types/defaultComponents.d.ts +10 -2
- package/dist/esm/types/internal.d.ts +48 -45
- package/dist/esm/webGroupsManager.d.ts +6 -1
- package/dist/styles/groups.css +156 -76
- package/dist/styles/vars.css +865 -78
- package/package.json +36 -28
- package/dist/cjs/useGDWindow.d.ts +0 -2
- package/dist/esm/useGDWindow.d.ts +0 -2
- package/dist/styles/fonts.css +0 -2
- package/dist/styles/styles.css +0 -679
- package/dist/styles/themes.css +0 -155
package/package.json
CHANGED
|
@@ -1,55 +1,53 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@interopio/groups-ui-react",
|
|
3
|
-
"version": "
|
|
3
|
+
"version": "3.0.0",
|
|
4
4
|
"description": "React library for building a Web Group App for io.Connect Desktop.",
|
|
5
|
+
"keywords": [
|
|
6
|
+
"interop",
|
|
7
|
+
"interop.io",
|
|
8
|
+
"desktop",
|
|
9
|
+
"groups",
|
|
10
|
+
"react"
|
|
11
|
+
],
|
|
12
|
+
"homepage": "https://interop.io/",
|
|
13
|
+
"repository": "https://github.com/InteropIO/groups-ui-react",
|
|
14
|
+
"license": "MIT",
|
|
5
15
|
"author": {
|
|
6
16
|
"name": "interop.io",
|
|
7
17
|
"url": "https://interop.io/"
|
|
8
18
|
},
|
|
9
|
-
"license": "MIT",
|
|
10
19
|
"main": "dist/cjs/index.js",
|
|
11
20
|
"module": "dist/esm/index.js",
|
|
12
21
|
"source": "src/index.tsx",
|
|
13
|
-
"
|
|
14
|
-
|
|
15
|
-
"engines": {
|
|
16
|
-
"node": ">=10"
|
|
17
|
-
},
|
|
18
|
-
"keywords": [
|
|
19
|
-
"interop",
|
|
20
|
-
"interop.io",
|
|
21
|
-
"desktop",
|
|
22
|
-
"groups",
|
|
23
|
-
"react"
|
|
22
|
+
"files": [
|
|
23
|
+
"dist"
|
|
24
24
|
],
|
|
25
25
|
"scripts": {
|
|
26
26
|
"build": "rollup -c ./rollup.config.js",
|
|
27
|
+
"test": "jest",
|
|
27
28
|
"bundle:css": "node ./scripts/bundlecss.js",
|
|
28
29
|
"prepublishOnly": "npm run build",
|
|
29
30
|
"preversion": "npm run build",
|
|
30
31
|
"version": "npm run build",
|
|
31
|
-
"clean": "
|
|
32
|
-
},
|
|
33
|
-
"publishConfig": {
|
|
34
|
-
"access": "public"
|
|
32
|
+
"clean": ""
|
|
35
33
|
},
|
|
36
34
|
"dependencies": {
|
|
37
|
-
"@interopio/theme": "
|
|
35
|
+
"@interopio/theme": "3.1.0",
|
|
38
36
|
"callback-registry": "^2.7.2",
|
|
39
37
|
"color2k": "^2.0.0",
|
|
40
38
|
"overlayscrollbars": "^2.8.3",
|
|
41
|
-
"use-sync-external-store": "^1.
|
|
42
|
-
},
|
|
43
|
-
"peerDependencies": {
|
|
44
|
-
"@interopio/react-hooks": "^3.0.2",
|
|
45
|
-
"react": ">=16.8.0",
|
|
46
|
-
"react-dom": ">=16.8.0"
|
|
39
|
+
"use-sync-external-store": "^1.4.0"
|
|
47
40
|
},
|
|
48
41
|
"devDependencies": {
|
|
49
42
|
"@rollup/plugin-commonjs": "^15.1.0",
|
|
50
43
|
"@rollup/plugin-node-resolve": "^9.0.0",
|
|
51
44
|
"@rollup/plugin-typescript": "^6.0.0",
|
|
52
45
|
"@svgr/rollup": "^6.2.1",
|
|
46
|
+
"@swc/jest": "^0.2.37",
|
|
47
|
+
"@testing-library/jest-dom": "^6.2.0",
|
|
48
|
+
"@testing-library/react": "^16.0.1",
|
|
49
|
+
"@testing-library/user-event": "^14.4.3",
|
|
50
|
+
"@types/jest": "^29.2.4",
|
|
53
51
|
"@types/node": "^12.12.38",
|
|
54
52
|
"@types/react": "^18.0.9",
|
|
55
53
|
"@types/react-dom": "^18.0.4",
|
|
@@ -68,6 +66,8 @@
|
|
|
68
66
|
"eslint-plugin-promise": "^4.2.1",
|
|
69
67
|
"eslint-plugin-react": "^7.17.0",
|
|
70
68
|
"eslint-plugin-standard": "^4.0.1",
|
|
69
|
+
"jest": "^29.7.0",
|
|
70
|
+
"jest-environment-jsdom": "^29.7.0",
|
|
71
71
|
"npm-run-all": "^4.1.5",
|
|
72
72
|
"postcss": "^8.4.29",
|
|
73
73
|
"postcss-import": "^15.1.0",
|
|
@@ -81,7 +81,15 @@
|
|
|
81
81
|
"rollup-plugin-typescript2": "^0.29.0",
|
|
82
82
|
"typescript": "^3.7.5"
|
|
83
83
|
},
|
|
84
|
-
"
|
|
85
|
-
"
|
|
86
|
-
|
|
87
|
-
|
|
84
|
+
"peerDependencies": {
|
|
85
|
+
"@interopio/react-hooks": "^3.0.2",
|
|
86
|
+
"react": ">=16.8.0",
|
|
87
|
+
"react-dom": ">=16.8.0"
|
|
88
|
+
},
|
|
89
|
+
"engines": {
|
|
90
|
+
"node": ">=10"
|
|
91
|
+
},
|
|
92
|
+
"publishConfig": {
|
|
93
|
+
"access": "public"
|
|
94
|
+
}
|
|
95
|
+
}
|