@selfcommunity/react-ui 0.7.50-events.71 → 0.7.50-events.77

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.
Files changed (123) hide show
  1. package/lib/cjs/assets/onBoarding/Android.d.ts +1 -0
  2. package/lib/cjs/assets/onBoarding/Android.js +7 -0
  3. package/lib/cjs/assets/onBoarding/CategoryA.d.ts +1 -0
  4. package/lib/cjs/assets/onBoarding/CategoryA.js +7 -0
  5. package/lib/cjs/assets/onBoarding/CategoryB.d.ts +1 -0
  6. package/lib/cjs/assets/onBoarding/CategoryB.js +7 -0
  7. package/lib/cjs/assets/onBoarding/Header.d.ts +1 -0
  8. package/lib/cjs/assets/onBoarding/Header.js +7 -0
  9. package/lib/cjs/assets/onBoarding/Ios.d.ts +1 -0
  10. package/lib/cjs/assets/onBoarding/Ios.js +7 -0
  11. package/lib/cjs/components/EventInviteButton/EventInviteButton.d.ts +1 -1
  12. package/lib/cjs/components/EventInviteButton/EventInviteButton.js +17 -28
  13. package/lib/cjs/components/EventMembersWidget/EventMembersWidget.js +11 -4
  14. package/lib/cjs/components/EventMembersWidget/TabContentComponent.d.ts +1 -0
  15. package/lib/cjs/components/EventMembersWidget/TabContentComponent.js +15 -2
  16. package/lib/cjs/components/Feed/Feed.d.ts +1 -0
  17. package/lib/cjs/components/Feed/Feed.js +3 -0
  18. package/lib/cjs/components/OnBoardingWidget/OnBoardingWidget.d.ts +19 -0
  19. package/lib/cjs/components/OnBoardingWidget/OnBoardingWidget.js +209 -0
  20. package/lib/cjs/components/OnBoardingWidget/Skeleton.d.ts +1 -0
  21. package/lib/cjs/components/OnBoardingWidget/Skeleton.js +24 -0
  22. package/lib/cjs/components/OnBoardingWidget/Steps/App/App.d.ts +18 -0
  23. package/lib/cjs/components/OnBoardingWidget/Steps/App/App.js +74 -0
  24. package/lib/cjs/components/OnBoardingWidget/Steps/App/index.d.ts +3 -0
  25. package/lib/cjs/components/OnBoardingWidget/Steps/App/index.js +5 -0
  26. package/lib/cjs/components/OnBoardingWidget/Steps/Appearance/Appearance.d.ts +13 -0
  27. package/lib/cjs/components/OnBoardingWidget/Steps/Appearance/Appearance.js +226 -0
  28. package/lib/cjs/components/OnBoardingWidget/Steps/Appearance/index.d.ts +3 -0
  29. package/lib/cjs/components/OnBoardingWidget/Steps/Appearance/index.js +5 -0
  30. package/lib/cjs/components/OnBoardingWidget/Steps/Appearance/reducer.d.ts +15 -0
  31. package/lib/cjs/components/OnBoardingWidget/Steps/Appearance/reducer.js +42 -0
  32. package/lib/cjs/components/OnBoardingWidget/Steps/Category/Category.d.ts +18 -0
  33. package/lib/cjs/components/OnBoardingWidget/Steps/Category/Category.js +81 -0
  34. package/lib/cjs/components/OnBoardingWidget/Steps/Category/index.d.ts +3 -0
  35. package/lib/cjs/components/OnBoardingWidget/Steps/Category/index.js +5 -0
  36. package/lib/cjs/components/OnBoardingWidget/Steps/Content/Content.d.ts +18 -0
  37. package/lib/cjs/components/OnBoardingWidget/Steps/Content/Content.js +51 -0
  38. package/lib/cjs/components/OnBoardingWidget/Steps/Content/index.d.ts +3 -0
  39. package/lib/cjs/components/OnBoardingWidget/Steps/Content/index.js +5 -0
  40. package/lib/cjs/components/OnBoardingWidget/Steps/Invite/Invite.d.ts +13 -0
  41. package/lib/cjs/components/OnBoardingWidget/Steps/Invite/Invite.js +54 -0
  42. package/lib/cjs/components/OnBoardingWidget/Steps/Invite/index.d.ts +3 -0
  43. package/lib/cjs/components/OnBoardingWidget/Steps/Invite/index.js +5 -0
  44. package/lib/cjs/components/OnBoardingWidget/Steps/Profile/Profile.d.ts +25 -0
  45. package/lib/cjs/components/OnBoardingWidget/Steps/Profile/Profile.js +94 -0
  46. package/lib/cjs/components/OnBoardingWidget/Steps/Profile/index.d.ts +3 -0
  47. package/lib/cjs/components/OnBoardingWidget/Steps/Profile/index.js +5 -0
  48. package/lib/cjs/components/OnBoardingWidget/constants.d.ts +1 -0
  49. package/lib/cjs/components/OnBoardingWidget/constants.js +4 -0
  50. package/lib/cjs/components/OnBoardingWidget/index.d.ts +4 -0
  51. package/lib/cjs/components/OnBoardingWidget/index.js +8 -0
  52. package/lib/cjs/components/PlatformWidget/constants.d.ts +4 -0
  53. package/lib/cjs/components/PlatformWidget/constants.js +5 -1
  54. package/lib/cjs/index.d.ts +3 -1
  55. package/lib/cjs/index.js +8 -3
  56. package/lib/cjs/shared/ProgressBar/index.d.ts +23 -0
  57. package/lib/cjs/shared/ProgressBar/index.js +25 -0
  58. package/lib/cjs/utils/onBoarding.d.ts +2 -0
  59. package/lib/cjs/utils/onBoarding.js +20 -0
  60. package/lib/esm/assets/onBoarding/Android.d.ts +1 -0
  61. package/lib/esm/assets/onBoarding/Android.js +4 -0
  62. package/lib/esm/assets/onBoarding/CategoryA.d.ts +1 -0
  63. package/lib/esm/assets/onBoarding/CategoryA.js +4 -0
  64. package/lib/esm/assets/onBoarding/CategoryB.d.ts +1 -0
  65. package/lib/esm/assets/onBoarding/CategoryB.js +4 -0
  66. package/lib/esm/assets/onBoarding/Header.d.ts +1 -0
  67. package/lib/esm/assets/onBoarding/Header.js +4 -0
  68. package/lib/esm/assets/onBoarding/Ios.d.ts +1 -0
  69. package/lib/esm/assets/onBoarding/Ios.js +4 -0
  70. package/lib/esm/components/EventInviteButton/EventInviteButton.d.ts +1 -1
  71. package/lib/esm/components/EventInviteButton/EventInviteButton.js +17 -28
  72. package/lib/esm/components/EventMembersWidget/EventMembersWidget.js +11 -4
  73. package/lib/esm/components/EventMembersWidget/TabContentComponent.d.ts +1 -0
  74. package/lib/esm/components/EventMembersWidget/TabContentComponent.js +15 -2
  75. package/lib/esm/components/Feed/Feed.d.ts +1 -0
  76. package/lib/esm/components/Feed/Feed.js +3 -0
  77. package/lib/esm/components/OnBoardingWidget/OnBoardingWidget.d.ts +19 -0
  78. package/lib/esm/components/OnBoardingWidget/OnBoardingWidget.js +207 -0
  79. package/lib/esm/components/OnBoardingWidget/Skeleton.d.ts +1 -0
  80. package/lib/esm/components/OnBoardingWidget/Skeleton.js +20 -0
  81. package/lib/esm/components/OnBoardingWidget/Steps/App/App.d.ts +18 -0
  82. package/lib/esm/components/OnBoardingWidget/Steps/App/App.js +70 -0
  83. package/lib/esm/components/OnBoardingWidget/Steps/App/index.d.ts +3 -0
  84. package/lib/esm/components/OnBoardingWidget/Steps/App/index.js +2 -0
  85. package/lib/esm/components/OnBoardingWidget/Steps/Appearance/Appearance.d.ts +13 -0
  86. package/lib/esm/components/OnBoardingWidget/Steps/Appearance/Appearance.js +223 -0
  87. package/lib/esm/components/OnBoardingWidget/Steps/Appearance/index.d.ts +3 -0
  88. package/lib/esm/components/OnBoardingWidget/Steps/Appearance/index.js +2 -0
  89. package/lib/esm/components/OnBoardingWidget/Steps/Appearance/reducer.d.ts +15 -0
  90. package/lib/esm/components/OnBoardingWidget/Steps/Appearance/reducer.js +37 -0
  91. package/lib/esm/components/OnBoardingWidget/Steps/Category/Category.d.ts +18 -0
  92. package/lib/esm/components/OnBoardingWidget/Steps/Category/Category.js +77 -0
  93. package/lib/esm/components/OnBoardingWidget/Steps/Category/index.d.ts +3 -0
  94. package/lib/esm/components/OnBoardingWidget/Steps/Category/index.js +2 -0
  95. package/lib/esm/components/OnBoardingWidget/Steps/Content/Content.d.ts +18 -0
  96. package/lib/esm/components/OnBoardingWidget/Steps/Content/Content.js +47 -0
  97. package/lib/esm/components/OnBoardingWidget/Steps/Content/index.d.ts +3 -0
  98. package/lib/esm/components/OnBoardingWidget/Steps/Content/index.js +2 -0
  99. package/lib/esm/components/OnBoardingWidget/Steps/Invite/Invite.d.ts +13 -0
  100. package/lib/esm/components/OnBoardingWidget/Steps/Invite/Invite.js +50 -0
  101. package/lib/esm/components/OnBoardingWidget/Steps/Invite/index.d.ts +3 -0
  102. package/lib/esm/components/OnBoardingWidget/Steps/Invite/index.js +2 -0
  103. package/lib/esm/components/OnBoardingWidget/Steps/Profile/Profile.d.ts +25 -0
  104. package/lib/esm/components/OnBoardingWidget/Steps/Profile/Profile.js +91 -0
  105. package/lib/esm/components/OnBoardingWidget/Steps/Profile/index.d.ts +3 -0
  106. package/lib/esm/components/OnBoardingWidget/Steps/Profile/index.js +2 -0
  107. package/lib/esm/components/OnBoardingWidget/constants.d.ts +1 -0
  108. package/lib/esm/components/OnBoardingWidget/constants.js +1 -0
  109. package/lib/esm/components/OnBoardingWidget/index.d.ts +4 -0
  110. package/lib/esm/components/OnBoardingWidget/index.js +4 -0
  111. package/lib/esm/components/PlatformWidget/constants.d.ts +4 -0
  112. package/lib/esm/components/PlatformWidget/constants.js +4 -0
  113. package/lib/esm/index.d.ts +3 -1
  114. package/lib/esm/index.js +5 -3
  115. package/lib/esm/shared/ProgressBar/index.d.ts +23 -0
  116. package/lib/esm/shared/ProgressBar/index.js +22 -0
  117. package/lib/esm/utils/onBoarding.d.ts +2 -0
  118. package/lib/esm/utils/onBoarding.js +15 -0
  119. package/lib/umd/920.js +2 -0
  120. package/lib/umd/react-ui.js +1 -1
  121. package/package.json +181 -180
  122. package/lib/umd/224.js +0 -2
  123. /package/lib/umd/{224.js.LICENSE.txt → 920.js.LICENSE.txt} +0 -0
package/package.json CHANGED
@@ -1,182 +1,183 @@
1
1
  {
2
- "name": "@selfcommunity/react-ui",
3
- "version": "0.7.50-events.71+f792603af",
4
- "description": "React UI Components to integrate a Community created with SelfCommunity Platform.",
5
- "author": "SelfCommunity <https://www.selfcommunity.com>",
6
- "homepage": "https://www.selfcommunity.com",
7
- "license": "MIT",
8
- "main": "./lib/cjs/index.js",
9
- "module": "./lib/esm/index.js",
10
- "exports": {
11
- ".": {
12
- "require": "./lib/cjs/index.js",
13
- "import": "./lib/esm/index.js"
14
- },
15
- "./*": {
16
- "require": "./lib/cjs/*",
17
- "import": "./lib/esm/*"
18
- }
19
- },
20
- "sideEffects": false,
21
- "keywords": [
22
- "react",
23
- "widgets",
24
- "community",
25
- "community ui",
26
- "selfcommunity ui",
27
- "react-ui",
28
- "react-component"
29
- ],
30
- "scripts": {
31
- "prepare": "install-peers -f",
32
- "install-peers": "install-peers -f",
33
- "test": "npm run lint && npm run test-only",
34
- "test-only": "jest --runInBand",
35
- "tdd": "jest --watch --runInBand",
36
- "lint": "eslint ./src test --ext .ts,.tsx,.js",
37
- "prettier": "prettier './**/*.js' './**/*.css' './**/*.md' --write",
38
- "prettier-list-different": "prettier './**/*.js' './**/*.css' './**/*.md' --list-different",
39
- "clean:lib": "rimraf lib",
40
- "clean:node_modules": "rimraf node_modules",
41
- "build:commonjs": "tsc -b tsconfig-cjs.build.json",
42
- "build:esm": "tsc -b tsconfig-esm.build.json",
43
- "build:umd": "webpack --mode production",
44
- "build:umd:analyze": "webpack --mode production --profile --json > ./lib/umd/stats.json && webpack-bundle-analyzer ./lib/umd/stats.json",
45
- "build": "yarn clean:lib && yarn build:commonjs && yarn build:esm && yarn build:umd",
46
- "prerelease": "yarn run clean:lib && yarn run build"
47
- },
48
- "directories": {
49
- "lib": "lib"
50
- },
51
- "files": [
52
- "lib"
53
- ],
54
- "repository": {
55
- "type": "git",
56
- "url": "https://github.com/selfcommunity/community-js/tree/main/packages/react-ui"
57
- },
58
- "publishConfig": {
59
- "access": "public"
60
- },
61
- "peerDependencies": {
62
- "@emotion/react": "^11.11.3",
63
- "@emotion/styled": "^11.11.0",
64
- "@mui/lab": "~5.0.0-alpha.159",
65
- "@mui/material": "^5.15.3",
66
- "@mui/x-date-pickers": "^6.18.7",
67
- "@rpldy/chunked-sender": "^1.7.1",
68
- "@rpldy/chunked-uploady": "^1.7.1",
69
- "@rpldy/upload-button": "^1.7.1",
70
- "@rpldy/upload-drop-zone": "^1.7.1",
71
- "@rpldy/upload-preview": "^1.7.1",
72
- "@rpldy/uploady": "^1.7.1",
73
- "notistack": "^3.0.1",
74
- "pdfjs-dist": "3.11.174",
75
- "react": "^17.0.2 || 18",
76
- "react-dom": "17 || 18",
77
- "react-intl": "^6.4.7"
78
- },
79
- "dependencies": {
80
- "@emotion/react": "^11.11.3",
81
- "@emotion/styled": "^11.11.0",
82
- "@lexical/html": "^0.15.0",
83
- "@lexical/react": "^0.15.0",
84
- "@mui/lab": "~5.0.0-alpha.159",
85
- "@mui/material": "^5.15.3",
86
- "@mui/x-date-pickers": "^6.18.7",
87
- "@react-google-maps/api": "^2.19.3",
88
- "@rpldy/chunked-sender": "^1.7.1",
89
- "@rpldy/chunked-uploady": "^1.7.1",
90
- "@rpldy/upload-button": "^1.7.1",
91
- "@rpldy/upload-drop-zone": "^1.7.1",
92
- "@rpldy/upload-preview": "^1.7.1",
93
- "@rpldy/uploady": "^1.7.1",
94
- "@selfcommunity/api-services": "0.4.50-events.71+f792603af",
95
- "@selfcommunity/react-core": "0.4.50-events.71+f792603af",
96
- "@selfcommunity/react-i18n": "0.5.50-events.71+f792603af",
97
- "@selfcommunity/types": "0.5.50-events.71+f792603af",
98
- "@selfcommunity/utils": "0.2.50-events.71+f792603af",
99
- "@types/classnames": "^2.3.1",
100
- "@types/sortablejs": "1",
101
- "autosuggest-highlight": "^3.3.4",
102
- "classnames": "^2.3.2",
103
- "date-fns": "^2.30.0",
104
- "emoji-picker-react": "4.5.16",
105
- "lexical": "0.15.0",
106
- "libphonenumber-js": "^1.10.53",
107
- "notistack": "^3.0.1",
108
- "pdfjs-dist": "3.11.174",
109
- "prop-types": "^15.8.1",
110
- "prop-types-extra": "^1.1.1",
111
- "pubsub-js": "^1.9.4",
112
- "react": "^17.0.2 || 18",
113
- "react-custom-scrollbars-2": "^4.5.0",
114
- "react-dom": "17 || 18",
115
- "react-intersection-observer": "^9.4.3",
116
- "react-intl": "^6.4.7",
117
- "react-lazyload": "^3.2.0",
118
- "react-photo-view": "^1.2.3",
119
- "react-player": "^2.12.0",
120
- "react-share": "^4.4.1",
121
- "react-sortablejs": "^6.1.4",
122
- "react-waypoint": "^10.3.0",
123
- "resize-observer-polyfill": "^1.5.1",
124
- "seamless-scroll-polyfill": "^2.3.4",
125
- "sortablejs": "^1.15.0",
126
- "spark-md5": "~3.0.2",
127
- "swiper": "^11.1.9",
128
- "throttle-debounce": "^2.1.0",
129
- "use-deep-compare-effect": "^1.8.1",
130
- "use-resize-observer": "^9.1.0",
131
- "virtual-scroller": "^1.12.3",
132
- "yjs": "^13.6.7"
133
- },
134
- "devDependencies": {
135
- "@types/chai": "^4.2.14",
136
- "@types/enzyme": "^3.10.8",
137
- "@types/jest": "^26.0.20",
138
- "@types/react": "17 || 18",
139
- "@types/react-dom": "17 || 18",
140
- "@types/sinon": "^9.0.10",
141
- "@typescript-eslint/eslint-plugin": "^4.14.2",
142
- "@typescript-eslint/parser": "^4.14.2",
143
- "babel-jest": "^26.6.3",
144
- "chai": "^4.2.0",
145
- "cherry-pick": "^0.5.0",
146
- "enzyme": "^3.10.0",
147
- "enzyme-adapter-react-16": "^1.15.6",
148
- "eslint": "^7.19.0",
149
- "eslint-config-prettier": "^7.2.0",
150
- "eslint-plugin-import": "^2.22.1",
151
- "eslint-plugin-mocha": "^8.0.0",
152
- "eslint-plugin-prettier": "^4.0.0",
153
- "eslint-plugin-react": "^7.22.0",
154
- "eslint-plugin-react-hooks": "^4.2.0",
155
- "faker": "^5.3.1",
156
- "install-peers-cli": "^2.2.0",
157
- "jest": "^26.6.3",
158
- "postcss": "^8.2.4",
159
- "prettier": "^2.2.1",
160
- "rimraf": "^3.0.2",
161
- "sass": "^1.32.6",
162
- "sinon": "^9.2.4",
163
- "transpile-webpack-plugin": "^1.1.3",
164
- "tslib": "^2.6.2",
165
- "typescript": "^4.1.3",
166
- "webpack": "^5.20.1",
167
- "webpack-atoms": "^17.1.0",
168
- "webpack-bundle-analyzer": "^4.9.0",
169
- "webpack-cli": "^4.5.0"
170
- },
171
- "prettier": {
172
- "printWidth": 150,
173
- "bracketSpacing": false,
174
- "trailingComma": "none",
175
- "singleQuote": true,
176
- "bracketSameLine": true
177
- },
178
- "bugs": {
179
- "url": "https://github.com/selfcommunity/community-js/issues"
180
- },
181
- "gitHead": "f792603afcf29697429a85224195a96e4f4da024"
2
+ "name": "@selfcommunity/react-ui",
3
+ "version": "0.7.50-events.77+32fb91861",
4
+ "description": "React UI Components to integrate a Community created with SelfCommunity Platform.",
5
+ "author": "SelfCommunity <https://www.selfcommunity.com>",
6
+ "homepage": "https://www.selfcommunity.com",
7
+ "license": "MIT",
8
+ "main": "./lib/cjs/index.js",
9
+ "module": "./lib/esm/index.js",
10
+ "exports": {
11
+ ".": {
12
+ "require": "./lib/cjs/index.js",
13
+ "import": "./lib/esm/index.js"
14
+ },
15
+ "./*": {
16
+ "require": "./lib/cjs/*",
17
+ "import": "./lib/esm/*"
18
+ }
19
+ },
20
+ "sideEffects": false,
21
+ "keywords": [
22
+ "react",
23
+ "widgets",
24
+ "community",
25
+ "community ui",
26
+ "selfcommunity ui",
27
+ "react-ui",
28
+ "react-component"
29
+ ],
30
+ "scripts": {
31
+ "prepare": "install-peers -f",
32
+ "install-peers": "install-peers -f",
33
+ "test": "npm run lint && npm run test-only",
34
+ "test-only": "jest --runInBand",
35
+ "tdd": "jest --watch --runInBand",
36
+ "lint": "eslint ./src test --ext .ts,.tsx,.js",
37
+ "prettier": "prettier './**/*.js' './**/*.css' './**/*.md' --write",
38
+ "prettier-list-different": "prettier './**/*.js' './**/*.css' './**/*.md' --list-different",
39
+ "clean:lib": "rimraf lib",
40
+ "clean:node_modules": "rimraf node_modules",
41
+ "build:commonjs": "tsc -b tsconfig-cjs.build.json",
42
+ "build:esm": "tsc -b tsconfig-esm.build.json",
43
+ "build:umd": "webpack --mode production",
44
+ "build:umd:analyze": "webpack --mode production --profile --json > ./lib/umd/stats.json && webpack-bundle-analyzer ./lib/umd/stats.json",
45
+ "build": "yarn clean:lib && yarn build:commonjs && yarn build:esm && yarn build:umd",
46
+ "prerelease": "yarn run clean:lib && yarn run build"
47
+ },
48
+ "directories": {
49
+ "lib": "lib"
50
+ },
51
+ "files": [
52
+ "lib"
53
+ ],
54
+ "repository": {
55
+ "type": "git",
56
+ "url": "https://github.com/selfcommunity/community-js/tree/main/packages/react-ui"
57
+ },
58
+ "publishConfig": {
59
+ "access": "public"
60
+ },
61
+ "peerDependencies": {
62
+ "@emotion/react": "^11.11.3",
63
+ "@emotion/styled": "^11.11.0",
64
+ "@mui/lab": "~5.0.0-alpha.159",
65
+ "@mui/material": "^5.15.3",
66
+ "@mui/x-date-pickers": "^6.18.7",
67
+ "@rpldy/chunked-sender": "^1.7.1",
68
+ "@rpldy/chunked-uploady": "^1.7.1",
69
+ "@rpldy/upload-button": "^1.7.1",
70
+ "@rpldy/upload-drop-zone": "^1.7.1",
71
+ "@rpldy/upload-preview": "^1.7.1",
72
+ "@rpldy/uploady": "^1.7.1",
73
+ "notistack": "^3.0.1",
74
+ "pdfjs-dist": "3.11.174",
75
+ "react": "^17.0.2 || 18",
76
+ "react-dom": "17 || 18",
77
+ "react-intl": "^6.4.7"
78
+ },
79
+ "dependencies": {
80
+ "@emotion/react": "^11.11.3",
81
+ "@emotion/styled": "^11.11.0",
82
+ "@lexical/html": "^0.15.0",
83
+ "@lexical/react": "^0.15.0",
84
+ "@mui/lab": "~5.0.0-alpha.159",
85
+ "@mui/material": "^5.15.3",
86
+ "@mui/x-date-pickers": "^6.18.7",
87
+ "@react-google-maps/api": "^2.19.3",
88
+ "@rpldy/chunked-sender": "^1.7.1",
89
+ "@rpldy/chunked-uploady": "^1.7.1",
90
+ "@rpldy/upload-button": "^1.7.1",
91
+ "@rpldy/upload-drop-zone": "^1.7.1",
92
+ "@rpldy/upload-preview": "^1.7.1",
93
+ "@rpldy/uploady": "^1.7.1",
94
+ "@selfcommunity/api-services": "0.4.50-events.77+32fb91861",
95
+ "@selfcommunity/react-core": "0.4.50-events.77+32fb91861",
96
+ "@selfcommunity/react-i18n": "0.5.50-events.77+32fb91861",
97
+ "@selfcommunity/types": "0.5.50-events.77+32fb91861",
98
+ "@selfcommunity/utils": "0.2.50-events.77+32fb91861",
99
+ "@types/classnames": "^2.3.1",
100
+ "@types/sortablejs": "1",
101
+ "autosuggest-highlight": "^3.3.4",
102
+ "classnames": "^2.3.2",
103
+ "date-fns": "^2.30.0",
104
+ "emoji-picker-react": "4.5.16",
105
+ "lexical": "0.15.0",
106
+ "libphonenumber-js": "^1.10.53",
107
+ "mui-color-input": "^3.0.0",
108
+ "notistack": "^3.0.1",
109
+ "pdfjs-dist": "3.11.174",
110
+ "prop-types": "^15.8.1",
111
+ "prop-types-extra": "^1.1.1",
112
+ "pubsub-js": "^1.9.4",
113
+ "react": "^17.0.2 || 18",
114
+ "react-custom-scrollbars-2": "^4.5.0",
115
+ "react-dom": "17 || 18",
116
+ "react-intersection-observer": "^9.4.3",
117
+ "react-intl": "^6.4.7",
118
+ "react-lazyload": "^3.2.0",
119
+ "react-photo-view": "^1.2.3",
120
+ "react-player": "^2.12.0",
121
+ "react-share": "^4.4.1",
122
+ "react-sortablejs": "^6.1.4",
123
+ "react-waypoint": "^10.3.0",
124
+ "resize-observer-polyfill": "^1.5.1",
125
+ "seamless-scroll-polyfill": "^2.3.4",
126
+ "sortablejs": "^1.15.0",
127
+ "spark-md5": "~3.0.2",
128
+ "swiper": "^11.1.9",
129
+ "throttle-debounce": "^2.1.0",
130
+ "use-deep-compare-effect": "^1.8.1",
131
+ "use-resize-observer": "^9.1.0",
132
+ "virtual-scroller": "^1.12.3",
133
+ "yjs": "^13.6.7"
134
+ },
135
+ "devDependencies": {
136
+ "@types/chai": "^4.2.14",
137
+ "@types/enzyme": "^3.10.8",
138
+ "@types/jest": "^26.0.20",
139
+ "@types/react": "17 || 18",
140
+ "@types/react-dom": "17 || 18",
141
+ "@types/sinon": "^9.0.10",
142
+ "@typescript-eslint/eslint-plugin": "^4.14.2",
143
+ "@typescript-eslint/parser": "^4.14.2",
144
+ "babel-jest": "^26.6.3",
145
+ "chai": "^4.2.0",
146
+ "cherry-pick": "^0.5.0",
147
+ "enzyme": "^3.10.0",
148
+ "enzyme-adapter-react-16": "^1.15.6",
149
+ "eslint": "^7.19.0",
150
+ "eslint-config-prettier": "^7.2.0",
151
+ "eslint-plugin-import": "^2.22.1",
152
+ "eslint-plugin-mocha": "^8.0.0",
153
+ "eslint-plugin-prettier": "^4.0.0",
154
+ "eslint-plugin-react": "^7.22.0",
155
+ "eslint-plugin-react-hooks": "^4.2.0",
156
+ "faker": "^5.3.1",
157
+ "install-peers-cli": "^2.2.0",
158
+ "jest": "^26.6.3",
159
+ "postcss": "^8.2.4",
160
+ "prettier": "^2.2.1",
161
+ "rimraf": "^3.0.2",
162
+ "sass": "^1.32.6",
163
+ "sinon": "^9.2.4",
164
+ "transpile-webpack-plugin": "^1.1.3",
165
+ "tslib": "^2.6.2",
166
+ "typescript": "^4.1.3",
167
+ "webpack": "^5.20.1",
168
+ "webpack-atoms": "^17.1.0",
169
+ "webpack-bundle-analyzer": "^4.9.0",
170
+ "webpack-cli": "^4.5.0"
171
+ },
172
+ "prettier": {
173
+ "printWidth": 150,
174
+ "bracketSpacing": false,
175
+ "trailingComma": "none",
176
+ "singleQuote": true,
177
+ "bracketSameLine": true
178
+ },
179
+ "bugs": {
180
+ "url": "https://github.com/selfcommunity/community-js/issues"
181
+ },
182
+ "gitHead": "32fb91861b9e631c8b42cfec2ee16b155e9af93a"
182
183
  }