@selfcommunity/react-templates 0.5.0 → 1.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.
Files changed (42) hide show
  1. package/lib/cjs/components/CategoryFeed/CategoryFeed.js +1 -1
  2. package/lib/cjs/components/Course/Course.d.ts +1 -1
  3. package/lib/cjs/components/EventFeed/EventFeed.js +1 -1
  4. package/lib/cjs/components/ExploreFeed/ExploreFeed.js +1 -1
  5. package/lib/cjs/components/FeedObjectDetail/FeedObjectDetail.js +1 -1
  6. package/lib/cjs/components/FeedObjectDetail/Skeleton.js +1 -1
  7. package/lib/cjs/components/GroupFeed/GroupFeed.js +1 -1
  8. package/lib/cjs/components/Lesson/Lesson.js +3 -4
  9. package/lib/cjs/components/LoyaltyProgramDetail/LoyaltyProgramDetail.js +2 -2
  10. package/lib/cjs/components/LoyaltyProgramDetail/PointsList.js +2 -2
  11. package/lib/cjs/components/LoyaltyProgramDetail/PrizeItemSkeleton.js +1 -1
  12. package/lib/cjs/components/LoyaltyProgramDetail/Skeleton.js +1 -1
  13. package/lib/cjs/components/MainFeed/MainFeed.js +1 -1
  14. package/lib/cjs/components/UserFeed/UserFeed.js +1 -1
  15. package/lib/cjs/components/UserProfile/UserProfile.js +1 -1
  16. package/lib/esm/components/CategoryFeed/CategoryFeed.js +1 -1
  17. package/lib/esm/components/Course/Course.d.ts +1 -1
  18. package/lib/esm/components/EventFeed/EventFeed.js +1 -1
  19. package/lib/esm/components/ExploreFeed/ExploreFeed.js +1 -1
  20. package/lib/esm/components/FeedObjectDetail/FeedObjectDetail.js +2 -2
  21. package/lib/esm/components/FeedObjectDetail/Skeleton.js +1 -1
  22. package/lib/esm/components/GroupFeed/GroupFeed.js +1 -1
  23. package/lib/esm/components/Lesson/Lesson.js +4 -5
  24. package/lib/esm/components/LoyaltyProgramDetail/LoyaltyProgramDetail.js +2 -2
  25. package/lib/esm/components/LoyaltyProgramDetail/PointsList.js +2 -2
  26. package/lib/esm/components/LoyaltyProgramDetail/PrizeItemSkeleton.js +1 -1
  27. package/lib/esm/components/LoyaltyProgramDetail/Skeleton.js +1 -1
  28. package/lib/esm/components/MainFeed/MainFeed.js +1 -1
  29. package/lib/esm/components/UserFeed/UserFeed.js +1 -1
  30. package/lib/esm/components/UserProfile/UserProfile.js +1 -1
  31. package/lib/umd/234.js +2 -0
  32. package/lib/umd/{519.js.LICENSE.txt → 234.js.LICENSE.txt} +1 -14
  33. package/lib/umd/3ffb7beb33b58142e791.js +2 -0
  34. package/lib/umd/739.js +2 -0
  35. package/lib/umd/react-templates.js +1 -1
  36. package/lib/umd/react-templates.js.LICENSE.txt +1 -1
  37. package/package.json +131 -131
  38. package/lib/umd/519.js +0 -2
  39. package/lib/umd/738.js +0 -2
  40. package/lib/umd/73cbb3dbfaa3ddd4df47.js +0 -2
  41. /package/lib/umd/{738.js.LICENSE.txt → 3ffb7beb33b58142e791.js.LICENSE.txt} +0 -0
  42. /package/lib/umd/{73cbb3dbfaa3ddd4df47.js.LICENSE.txt → 739.js.LICENSE.txt} +0 -0
@@ -1,3 +1,3 @@
1
1
  /*! (c) 2023 - present: Quentral Srl | https://github.com/selfcommunity/community-js/blob/master/LICENSE.md */
2
2
 
3
- /*! regenerator-runtime -- Copyright (c) 2014-present, Facebook, Inc. -- license (MIT): https://github.com/facebook/regenerator/blob/main/LICENSE */
3
+ /*! regenerator-runtime -- Copyright (c) 2014-present, Facebook, Inc. -- license (MIT): https://github.com/babel/babel/blob/main/packages/babel-helpers/LICENSE */
package/package.json CHANGED
@@ -1,133 +1,133 @@
1
1
  {
2
- "name": "@selfcommunity/react-templates",
3
- "version": "0.5.0",
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": "React Templates Components to integrate a Community created with SelfCommunity.",
20
- "author": "SelfCommunity <https://www.selfcommunity.com>",
21
- "keywords": [
22
- "react",
23
- "widgets",
24
- "community",
25
- "selfcommunity",
26
- "community templates",
27
- "selfcommunity templates",
28
- "react-ui",
29
- "react-components",
30
- "react-templates"
31
- ],
32
- "scripts": {
33
- "prepare": "install-peers -f",
34
- "install-peers": "install-peers -f",
35
- "test": "npm run lint && npm run test-only",
36
- "test-only": "jest --runInBand",
37
- "tdd": "jest --watch --runInBand",
38
- "lint": "eslint ./src test --ext .ts,.tsx,.js",
39
- "prettier": "prettier './**/*.js' './**/*.css' './**/*.md' --write",
40
- "prettier-list-different": "prettier './**/*.js' './**/*.css' './**/*.md' --list-different",
41
- "clean:lib": "rimraf lib",
42
- "clean:node_modules": "rimraf node_modules",
43
- "build:commonjs": "tsc -b tsconfig-cjs.build.json",
44
- "build:esm": "tsc -b tsconfig-esm.build.json",
45
- "build:umd": "webpack --mode production",
46
- "build:umd:analyze": "webpack --mode production --profile --json > ./lib/umd/stats.json && webpack-bundle-analyzer ./lib/umd/stats.json",
47
- "build": "yarn clean:lib && yarn build:commonjs && yarn build:esm && yarn build:umd",
48
- "prerelease": "yarn run clean:lib && yarn run build"
49
- },
50
- "homepage": "https://www.selfcommunity.com",
51
- "files": [
52
- "lib"
53
- ],
54
- "repository": {
55
- "type": "git",
56
- "url": "https://github.com/selfcommunity/community-js/tree/main/packages/react-templates"
57
- },
58
- "publishConfig": {
59
- "access": "public"
60
- },
61
- "peerDependencies": {
62
- "@emotion/react": "^11.11.3",
63
- "@emotion/styled": "^11.11.0",
64
- "@mui/material": "^5.15.3",
65
- "react": "^17.0.2 || 18",
66
- "react-dom": "17 || 18",
67
- "react-intl": "^6.5.5"
68
- },
69
- "dependencies": {
70
- "@selfcommunity/react-core": "^0.7.0",
71
- "@selfcommunity/react-i18n": "^0.8.0",
72
- "@selfcommunity/react-ui": "^0.11.0",
73
- "@selfcommunity/types": "^0.8.0",
74
- "@types/classnames": "^2.3.4",
75
- "classnames": "^2.5.1"
76
- },
77
- "devDependencies": {
78
- "@babel/core": "^7.7.4",
79
- "@babel/preset-env": "^7.25.8",
80
- "@babel/preset-react": "^7.7.4",
81
- "@babel/preset-typescript": "^7.7.4",
82
- "@types/chai": "^4.2.14",
83
- "@types/enzyme": "^3.10.8",
84
- "@types/jest": "^26.0.20",
85
- "@types/react": "17 || 18",
86
- "@types/react-dom": "17 || 18",
87
- "@types/sinon": "^9.0.10",
88
- "@typescript-eslint/eslint-plugin": "^4.14.2",
89
- "@typescript-eslint/parser": "^4.14.2",
90
- "babel-jest": "^26.6.3",
91
- "babel-loader": "^8.2.2",
92
- "babel-preset-env-modules": "^1.0.0",
93
- "chai": "^4.2.0",
94
- "cherry-pick": "^0.5.0",
95
- "enzyme": "^3.10.0",
96
- "enzyme-adapter-react-16": "^1.15.6",
97
- "eslint": "^7.19.0",
98
- "eslint-config-prettier": "^7.2.0",
99
- "eslint-plugin-import": "^2.22.1",
100
- "eslint-plugin-mocha": "^8.0.0",
101
- "eslint-plugin-prettier": "^4.0.0",
102
- "eslint-plugin-react": "^7.22.0",
103
- "eslint-plugin-react-hooks": "^4.2.0",
104
- "faker": "^5.3.1",
105
- "install-peers-cli": "^2.2.0",
106
- "jest": "^26.6.3",
107
- "lodash": "^4.17.15",
108
- "postcss": "^8.2.4",
109
- "prettier": "^2.2.1",
110
- "rimraf": "^3.0.2",
111
- "sass": "^1.32.6",
112
- "sinon": "^9.2.4",
113
- "tslib": "^2.6.2",
114
- "typescript": "^4.1.3",
115
- "webpack": "^5.20.1",
116
- "webpack-bundle-analyzer": "^4.9.0",
117
- "webpack-cli": "^4.5.0"
118
- },
119
- "prettier": {
120
- "printWidth": 150,
121
- "bracketSpacing": false,
122
- "trailingComma": "none",
123
- "singleQuote": true,
124
- "bracketSameLine": true
125
- },
126
- "bugs": {
127
- "url": "https://github.com/selfcommunity/community-js/issues"
128
- },
129
- "engines": {
130
- "node": ">=20.x"
131
- },
132
- "gitHead": "ab382584884a3a322907e1db19002d45b34edc5b"
2
+ "name": "@selfcommunity/react-templates",
3
+ "version": "1.0.0",
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": "React Templates Components to integrate a Community created with SelfCommunity.",
20
+ "author": "SelfCommunity <https://www.selfcommunity.com>",
21
+ "keywords": [
22
+ "react",
23
+ "widgets",
24
+ "community",
25
+ "selfcommunity",
26
+ "community templates",
27
+ "selfcommunity templates",
28
+ "react-ui",
29
+ "react-components",
30
+ "react-templates"
31
+ ],
32
+ "scripts": {
33
+ "prepare": "install-peers -f",
34
+ "install-peers": "install-peers -f",
35
+ "test": "npm run lint && npm run test-only",
36
+ "test-only": "jest --runInBand",
37
+ "tdd": "jest --watch --runInBand",
38
+ "lint": "eslint ./src test --ext .ts,.tsx,.js",
39
+ "prettier": "prettier './**/*.js' './**/*.css' './**/*.md' --write",
40
+ "prettier-list-different": "prettier './**/*.js' './**/*.css' './**/*.md' --list-different",
41
+ "clean:lib": "rimraf lib",
42
+ "clean:node_modules": "rimraf node_modules",
43
+ "build:commonjs": "tsc -b tsconfig-cjs.build.json",
44
+ "build:esm": "tsc -b tsconfig-esm.build.json",
45
+ "build:umd": "webpack --mode production",
46
+ "build:umd:analyze": "webpack --mode production --profile --json > ./lib/umd/stats.json && webpack-bundle-analyzer ./lib/umd/stats.json",
47
+ "build": "yarn clean:lib && yarn build:commonjs && yarn build:esm && yarn build:umd",
48
+ "prerelease": "yarn run clean:lib && yarn run build"
49
+ },
50
+ "homepage": "https://www.selfcommunity.com",
51
+ "files": [
52
+ "lib"
53
+ ],
54
+ "repository": {
55
+ "type": "git",
56
+ "url": "https://github.com/selfcommunity/community-js/tree/main/packages/react-templates"
57
+ },
58
+ "publishConfig": {
59
+ "access": "public"
60
+ },
61
+ "peerDependencies": {
62
+ "@emotion/react": "^11.11.3",
63
+ "@emotion/styled": "^11.11.0",
64
+ "@mui/material": "^7.3.4",
65
+ "react": "^19.2.0",
66
+ "react-dom": "^19.2.0",
67
+ "react-intl": "^6.8.9"
68
+ },
69
+ "dependencies": {
70
+ "@selfcommunity/react-core": "^1.0.0",
71
+ "@selfcommunity/react-i18n": "^1.0.0",
72
+ "@selfcommunity/react-ui": "^1.0.0",
73
+ "@selfcommunity/types": "^1.0.0",
74
+ "@types/classnames": "^2.3.4",
75
+ "classnames": "^2.5.1"
76
+ },
77
+ "devDependencies": {
78
+ "@babel/core": "^7.7.4",
79
+ "@babel/preset-env": "^7.25.8",
80
+ "@babel/preset-react": "^7.7.4",
81
+ "@babel/preset-typescript": "^7.7.4",
82
+ "@types/chai": "^4.2.14",
83
+ "@types/enzyme": "^3.10.8",
84
+ "@types/jest": "^26.0.20",
85
+ "@types/react": "18",
86
+ "@types/react-dom": "18",
87
+ "@types/sinon": "^9.0.10",
88
+ "@typescript-eslint/eslint-plugin": "^4.14.2",
89
+ "@typescript-eslint/parser": "^4.14.2",
90
+ "babel-jest": "^26.6.3",
91
+ "babel-loader": "^8.2.2",
92
+ "babel-preset-env-modules": "^1.0.0",
93
+ "chai": "^4.2.0",
94
+ "cherry-pick": "^0.5.0",
95
+ "enzyme": "^3.10.0",
96
+ "enzyme-adapter-react-16": "^1.15.6",
97
+ "eslint": "^7.19.0",
98
+ "eslint-config-prettier": "^7.2.0",
99
+ "eslint-plugin-import": "^2.22.1",
100
+ "eslint-plugin-mocha": "^8.0.0",
101
+ "eslint-plugin-prettier": "^4.0.0",
102
+ "eslint-plugin-react": "^7.22.0",
103
+ "eslint-plugin-react-hooks": "^4.2.0",
104
+ "faker": "^5.3.1",
105
+ "install-peers-cli": "^2.2.0",
106
+ "jest": "^26.6.3",
107
+ "lodash": "^4.17.15",
108
+ "postcss": "^8.2.4",
109
+ "prettier": "^2.2.1",
110
+ "rimraf": "^3.0.2",
111
+ "sass": "^1.32.6",
112
+ "sinon": "^9.2.4",
113
+ "tslib": "^2.6.2",
114
+ "typescript": "^4.9.5",
115
+ "webpack": "^5.20.1",
116
+ "webpack-bundle-analyzer": "^4.9.0",
117
+ "webpack-cli": "^4.5.0"
118
+ },
119
+ "prettier": {
120
+ "printWidth": 150,
121
+ "bracketSpacing": false,
122
+ "trailingComma": "none",
123
+ "singleQuote": true,
124
+ "bracketSameLine": true
125
+ },
126
+ "bugs": {
127
+ "url": "https://github.com/selfcommunity/community-js/issues"
128
+ },
129
+ "engines": {
130
+ "node": ">=20.x"
131
+ },
132
+ "gitHead": "a62b64a95076ca73aa72043f8b93a4e4a6a6dc8d"
133
133
  }