@selfcommunity/react-theme-default 0.4.5-alpha.1 → 0.4.5-alpha.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.
Files changed (58) hide show
  1. package/lib/cjs/components/SCEventInfoDetails.d.ts +3 -0
  2. package/lib/cjs/components/SCEventInfoDetails.js +3 -0
  3. package/lib/cjs/components/SCLiveStream.d.ts +218 -0
  4. package/lib/cjs/components/SCLiveStream.js +220 -0
  5. package/lib/cjs/components/SCLiveStreamDialog.d.ts +16 -0
  6. package/lib/cjs/components/SCLiveStreamDialog.js +18 -0
  7. package/lib/cjs/components/SCLiveStreamForm.d.ts +27 -0
  8. package/lib/cjs/components/SCLiveStreamForm.js +29 -0
  9. package/lib/cjs/components/SCLiveStreamFormSettings.d.ts +15 -0
  10. package/lib/cjs/components/SCLiveStreamFormSettings.js +17 -0
  11. package/lib/cjs/components/SCLiveStreamInfoDetails.d.ts +43 -0
  12. package/lib/cjs/components/SCLiveStreamInfoDetails.js +43 -0
  13. package/lib/cjs/components/SCLiveStreamRoom.d.ts +113 -0
  14. package/lib/cjs/components/SCLiveStreamRoom.js +115 -0
  15. package/lib/cjs/components/SCLiveStreamSelector.d.ts +71 -0
  16. package/lib/cjs/components/SCLiveStreamSelector.js +75 -0
  17. package/lib/cjs/components/SCLiveStreamVideoConference.d.ts +27 -0
  18. package/lib/cjs/components/SCLiveStreamVideoConference.js +29 -0
  19. package/lib/cjs/components/SCNavigationMenuDrawer.d.ts +3 -0
  20. package/lib/cjs/components/SCNavigationMenuDrawer.js +3 -0
  21. package/lib/cjs/components/SCNotification.d.ts +27 -0
  22. package/lib/cjs/components/SCNotification.js +27 -0
  23. package/lib/cjs/components/SCUpScalingTierBadge.d.ts +13 -0
  24. package/lib/cjs/components/SCUpScalingTierBadge.js +15 -0
  25. package/lib/cjs/components/SCUserLiveStreamWidget.d.ts +101 -0
  26. package/lib/cjs/components/SCUserLiveStreamWidget.js +97 -0
  27. package/lib/cjs/index.d.ts +764 -94
  28. package/lib/cjs/index.js +21 -1
  29. package/lib/esm/components/SCEventInfoDetails.d.ts +3 -0
  30. package/lib/esm/components/SCEventInfoDetails.js +3 -0
  31. package/lib/esm/components/SCLiveStream.d.ts +218 -0
  32. package/lib/esm/components/SCLiveStream.js +218 -0
  33. package/lib/esm/components/SCLiveStreamDialog.d.ts +16 -0
  34. package/lib/esm/components/SCLiveStreamDialog.js +16 -0
  35. package/lib/esm/components/SCLiveStreamForm.d.ts +27 -0
  36. package/lib/esm/components/SCLiveStreamForm.js +27 -0
  37. package/lib/esm/components/SCLiveStreamFormSettings.d.ts +15 -0
  38. package/lib/esm/components/SCLiveStreamFormSettings.js +15 -0
  39. package/lib/esm/components/SCLiveStreamInfoDetails.d.ts +43 -0
  40. package/lib/esm/components/SCLiveStreamInfoDetails.js +41 -0
  41. package/lib/esm/components/SCLiveStreamRoom.d.ts +113 -0
  42. package/lib/esm/components/SCLiveStreamRoom.js +113 -0
  43. package/lib/esm/components/SCLiveStreamSelector.d.ts +71 -0
  44. package/lib/esm/components/SCLiveStreamSelector.js +73 -0
  45. package/lib/esm/components/SCLiveStreamVideoConference.d.ts +27 -0
  46. package/lib/esm/components/SCLiveStreamVideoConference.js +27 -0
  47. package/lib/esm/components/SCNavigationMenuDrawer.d.ts +3 -0
  48. package/lib/esm/components/SCNavigationMenuDrawer.js +3 -0
  49. package/lib/esm/components/SCNotification.d.ts +27 -0
  50. package/lib/esm/components/SCNotification.js +27 -0
  51. package/lib/esm/components/SCUpScalingTierBadge.d.ts +13 -0
  52. package/lib/esm/components/SCUpScalingTierBadge.js +13 -0
  53. package/lib/esm/components/SCUserLiveStreamWidget.d.ts +101 -0
  54. package/lib/esm/components/SCUserLiveStreamWidget.js +95 -0
  55. package/lib/esm/index.d.ts +764 -94
  56. package/lib/esm/index.js +21 -1
  57. package/lib/umd/react-theme-default.js +1 -19
  58. package/package.json +123 -117
package/package.json CHANGED
@@ -1,119 +1,125 @@
1
1
  {
2
- "name": "@selfcommunity/react-theme-default",
3
- "version": "0.4.5-alpha.1",
4
- "license": "MIT",
5
- "private": false,
6
- "main": "./lib/cjs/index.js",
7
- "module": "./lib/esm/index.js",
8
- "exports": {
9
- ".": {
10
- "require": "./lib/cjs/index.js",
11
- "import": "./lib/esm/index.js"
12
- },
13
- "./*": {
14
- "require": "./lib/cjs/*",
15
- "import": "./lib/esm/*"
16
- }
17
- },
18
- "sideEffects": false,
19
- "description": "Default theme to use with SelfCommunity TS library",
20
- "author": "SelfCommunity <https://www.selfcommunity.com>",
21
- "keywords": [
22
- "react",
23
- "theme",
24
- "community",
25
- "selfcommunity",
26
- "community-react-theme-default"
27
- ],
28
- "scripts": {
29
- "prepare": "install-peers -f",
30
- "install-peers": "install-peers -f",
31
- "test": "npm run lint && npm run test-only",
32
- "test-only": "jest --runInBand",
33
- "tdd": "jest --watch --runInBand",
34
- "lint": "eslint ./src test --ext .ts,.tsx,.js",
35
- "prettier": "prettier './**/*.js' './**/*.css' './**/*.md' --write",
36
- "prettier-list-different": "prettier './**/*.js' './**/*.css' './**/*.md' --list-different",
37
- "clean:lib": "rimraf lib",
38
- "clean:node_modules": "rimraf node_modules",
39
- "build:commonjs": "tsc -b tsconfig-cjs.build.json && cp -R ./src/styles ./lib/cjs && cp -R ./src/fonts ./lib/cjs",
40
- "build:esm": "tsc -b tsconfig-esm.build.json && cp -R ./src/styles ./lib/esm && cp -R ./src/fonts ./lib/esm",
41
- "build:umd": "webpack --mode production",
42
- "build:umd:analyze": "webpack --mode production --profile --json > ./lib/umd/stats.json && webpack-bundle-analyzer ./lib/umd/stats.json",
43
- "build": "yarn clean:lib && yarn build:commonjs && yarn build:esm && yarn build:umd",
44
- "prerelease": "yarn run clean:lib && yarn run build"
45
- },
46
- "homepage": "https://www.selfcommunity.com",
47
- "files": [
48
- "lib"
49
- ],
50
- "repository": {
51
- "type": "git",
52
- "url": "https://github.com/selfcommunity/community-js/tree/main/packages/react-theme-default"
53
- },
54
- "publishConfig": {
55
- "access": "public"
56
- },
57
- "peerDependencies": {
58
- "@emotion/react": "^11.11.3",
59
- "@emotion/styled": "^11.11.0",
60
- "@mui/material": "^5.15.3",
61
- "react": "^17.0.2 || 18",
62
- "react-dom": "17 || 18"
63
- },
64
- "dependencies": {
65
- "@emotion/react": "^11.11.3",
66
- "@emotion/styled": "^11.11.0",
67
- "@mui/material": "^5.15.3",
68
- "react": "^17.0.2 || 18",
69
- "react-dom": "17 || 18"
70
- },
71
- "devDependencies": {
72
- "@types/chai": "^4.2.14",
73
- "@types/enzyme": "^3.10.8",
74
- "@types/jest": "^26.0.20",
75
- "@types/react": "17 || 18",
76
- "@types/react-dom": "17 || 18",
77
- "@types/sinon": "^9.0.10",
78
- "@typescript-eslint/eslint-plugin": "^4.14.2",
79
- "@typescript-eslint/parser": "^4.14.2",
80
- "babel-jest": "^26.6.3",
81
- "chai": "^4.2.0",
82
- "cherry-pick": "^0.5.0",
83
- "enzyme": "^3.10.0",
84
- "enzyme-adapter-react-16": "^1.15.6",
85
- "eslint": "^7.19.0",
86
- "eslint-config-prettier": "^7.2.0",
87
- "eslint-plugin-import": "^2.22.1",
88
- "eslint-plugin-mocha": "^8.0.0",
89
- "eslint-plugin-prettier": "^4.0.0",
90
- "eslint-plugin-react": "^7.22.0",
91
- "eslint-plugin-react-hooks": "^4.2.0",
92
- "faker": "^5.3.1",
93
- "install-peers-cli": "^2.2.0",
94
- "jest": "^26.6.3",
95
- "lodash": "^4.17.15",
96
- "postcss": "^8.2.4",
97
- "prettier": "^2.2.1",
98
- "rimraf": "^3.0.2",
99
- "sass": "^1.32.6",
100
- "sinon": "^9.2.4",
101
- "tslib": "^2.6.2",
102
- "typescript": "^4.1.3",
103
- "webpack": "^5.20.1",
104
- "webpack-atoms": "^17.1.0",
105
- "webpack-bundle-analyzer": "^4.9.0",
106
- "webpack-cli": "^4.5.0"
107
- },
108
- "prettier": {
109
- "printWidth": 150,
110
- "bracketSpacing": false,
111
- "trailingComma": "none",
112
- "singleQuote": true,
113
- "bracketSameLine": true
114
- },
115
- "bugs": {
116
- "url": "https://github.com/selfcommunity/community-js/issues"
117
- },
118
- "gitHead": "8ccbc819d7f6c7d4f092e58893cd7ea6342e3165"
2
+ "name": "@selfcommunity/react-theme-default",
3
+ "version": "0.4.5-alpha.2",
4
+ "license": "MIT",
5
+ "private": false,
6
+ "main": "./lib/cjs/index.js",
7
+ "module": "./lib/esm/index.js",
8
+ "exports": {
9
+ ".": {
10
+ "require": "./lib/cjs/index.js",
11
+ "import": "./lib/esm/index.js"
12
+ },
13
+ "./*": {
14
+ "require": "./lib/cjs/*",
15
+ "import": "./lib/esm/*"
16
+ }
17
+ },
18
+ "sideEffects": false,
19
+ "description": "Default theme to use with SelfCommunity TS library",
20
+ "author": "SelfCommunity <https://www.selfcommunity.com>",
21
+ "keywords": [
22
+ "react",
23
+ "theme",
24
+ "community",
25
+ "selfcommunity",
26
+ "community-react-theme-default"
27
+ ],
28
+ "scripts": {
29
+ "prepare": "install-peers -f",
30
+ "install-peers": "install-peers -f",
31
+ "test": "npm run lint && npm run test-only",
32
+ "test-only": "jest --runInBand",
33
+ "tdd": "jest --watch --runInBand",
34
+ "lint": "eslint ./src test --ext .ts,.tsx,.js",
35
+ "prettier": "prettier './**/*.js' './**/*.css' './**/*.md' --write",
36
+ "prettier-list-different": "prettier './**/*.js' './**/*.css' './**/*.md' --list-different",
37
+ "clean:lib": "rimraf lib",
38
+ "clean:node_modules": "rimraf node_modules",
39
+ "build:commonjs": "tsc -b tsconfig-cjs.build.json && cp -R ./src/styles ./lib/cjs && cp -R ./src/fonts ./lib/cjs",
40
+ "build:esm": "tsc -b tsconfig-esm.build.json && cp -R ./src/styles ./lib/esm && cp -R ./src/fonts ./lib/esm",
41
+ "build:umd": "webpack --mode production",
42
+ "build:umd:analyze": "webpack --mode production --profile --json > ./lib/umd/stats.json && webpack-bundle-analyzer ./lib/umd/stats.json",
43
+ "build": "yarn clean:lib && yarn build:commonjs && yarn build:esm && yarn build:umd",
44
+ "prerelease": "yarn run clean:lib && yarn run build"
45
+ },
46
+ "homepage": "https://www.selfcommunity.com",
47
+ "files": [
48
+ "lib"
49
+ ],
50
+ "repository": {
51
+ "type": "git",
52
+ "url": "https://github.com/selfcommunity/community-js/tree/main/packages/react-theme-default"
53
+ },
54
+ "publishConfig": {
55
+ "access": "public"
56
+ },
57
+ "peerDependencies": {
58
+ "@emotion/react": "^11.11.3",
59
+ "@emotion/styled": "^11.11.0",
60
+ "@mui/material": "^5.15.3",
61
+ "react": "^17.0.2 || 18",
62
+ "react-dom": "17 || 18"
63
+ },
64
+ "dependencies": {
65
+ "@emotion/react": "^11.11.3",
66
+ "@emotion/styled": "^11.11.0",
67
+ "@mui/material": "^5.15.3",
68
+ "react": "^17.0.2 || 18",
69
+ "react-dom": "17 || 18"
70
+ },
71
+ "devDependencies": {
72
+ "@babel/core": "^7.7.4",
73
+ "@babel/preset-env": "^7.25.8",
74
+ "@babel/preset-react": "^7.7.4",
75
+ "@babel/preset-typescript": "^7.7.4",
76
+ "@types/chai": "^4.2.14",
77
+ "@types/enzyme": "^3.10.8",
78
+ "@types/jest": "^26.0.20",
79
+ "@types/react": "17 || 18",
80
+ "@types/react-dom": "17 || 18",
81
+ "@types/sinon": "^9.0.10",
82
+ "@typescript-eslint/eslint-plugin": "^4.14.2",
83
+ "@typescript-eslint/parser": "^4.14.2",
84
+ "babel-jest": "^26.6.3",
85
+ "babel-loader": "^8.2.2",
86
+ "babel-preset-env-modules": "^1.0.0",
87
+ "chai": "^4.2.0",
88
+ "cherry-pick": "^0.5.0",
89
+ "enzyme": "^3.10.0",
90
+ "enzyme-adapter-react-16": "^1.15.6",
91
+ "eslint": "^7.19.0",
92
+ "eslint-config-prettier": "^7.2.0",
93
+ "eslint-plugin-import": "^2.22.1",
94
+ "eslint-plugin-mocha": "^8.0.0",
95
+ "eslint-plugin-prettier": "^4.0.0",
96
+ "eslint-plugin-react": "^7.22.0",
97
+ "eslint-plugin-react-hooks": "^4.2.0",
98
+ "faker": "^5.3.1",
99
+ "file-loader": "^6.2.0",
100
+ "install-peers-cli": "^2.2.0",
101
+ "jest": "^26.6.3",
102
+ "lodash": "^4.17.15",
103
+ "postcss": "^8.2.4",
104
+ "prettier": "^2.2.1",
105
+ "rimraf": "^3.0.2",
106
+ "sass": "^1.32.6",
107
+ "sinon": "^9.2.4",
108
+ "tslib": "^2.6.2",
109
+ "typescript": "^4.1.3",
110
+ "webpack": "^5.20.1",
111
+ "webpack-bundle-analyzer": "^4.9.0",
112
+ "webpack-cli": "^4.5.0"
113
+ },
114
+ "prettier": {
115
+ "printWidth": 150,
116
+ "bracketSpacing": false,
117
+ "trailingComma": "none",
118
+ "singleQuote": true,
119
+ "bracketSameLine": true
120
+ },
121
+ "bugs": {
122
+ "url": "https://github.com/selfcommunity/community-js/issues"
123
+ },
124
+ "gitHead": "d1e76de34050080cff753b4419d7c8b85d31c75d"
119
125
  }