@plasmicpkgs/plasmic-rich-components 1.0.270 → 1.0.272
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/LICENSE.platform.md +661 -0
- package/dist/.tsbuildinfo +1 -1
- package/package.json +11 -13
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@plasmicpkgs/plasmic-rich-components",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.272",
|
|
4
4
|
"description": "Rich batteries-included general purpose components for business apps, admin panels, etc.",
|
|
5
5
|
"homepage": "https://www.plasmic.app",
|
|
6
6
|
"repository": {
|
|
@@ -38,21 +38,12 @@
|
|
|
38
38
|
"limit": "10 KB"
|
|
39
39
|
}
|
|
40
40
|
],
|
|
41
|
-
"scripts": {
|
|
42
|
-
"build": "rollup -c rollup.config.mjs && tsc --emitDeclarationOnly --declaration src/index.tsx --incremental --tsBuildInfoFile ./dist/.tsbuildinfo --skipLibCheck --jsx react --lib dom,esnext --esModuleInterop --strict --outDir ./dist/ && rsync -r --include='*/' --include='*.d.ts' --exclude='*' ./dist/ ./skinny/ && rm skinny/index.d.ts",
|
|
43
|
-
"test": "TEST_CWD=`pwd` pnpm -w test --passWithNoTests",
|
|
44
|
-
"prepublishOnly": "npm run build",
|
|
45
|
-
"size": "size-limit",
|
|
46
|
-
"analyze": "size-limit --why"
|
|
47
|
-
},
|
|
48
41
|
"devDependenciesComments": {
|
|
49
42
|
"@ant-design/pro-components": "Must be 2.6.4. Earlier doesn't support newer antd, later incurs a disallowed dynamic require of antd/es/layout/Sider. https://app.shortcut.com/plasmic/story/37043/richlayout-always-initially-loads-with-dark-background"
|
|
50
43
|
},
|
|
51
44
|
"devDependencies": {
|
|
52
45
|
"@ant-design/icons": "^5.0.1",
|
|
53
46
|
"@ant-design/pro-components": "2.6.4",
|
|
54
|
-
"@plasmicapp/data-sources": "1.0.25",
|
|
55
|
-
"@plasmicapp/host": "2.0.16",
|
|
56
47
|
"@rollup/plugin-commonjs": "^25.0.2",
|
|
57
48
|
"@rollup/plugin-json": "^6.0.0",
|
|
58
49
|
"@rollup/plugin-node-resolve": "^15.1.0",
|
|
@@ -64,7 +55,9 @@
|
|
|
64
55
|
"rollup": "^3.26.2",
|
|
65
56
|
"rollup-plugin-esbuild": "^5.0.0",
|
|
66
57
|
"tslib": "^2.2.0",
|
|
67
|
-
"typescript": "^5.2.2"
|
|
58
|
+
"typescript": "^5.2.2",
|
|
59
|
+
"@plasmicapp/host": "2.0.18",
|
|
60
|
+
"@plasmicapp/data-sources": "1.0.27"
|
|
68
61
|
},
|
|
69
62
|
"peerDependencies": {
|
|
70
63
|
"@ant-design/icons": ">=5.0.0",
|
|
@@ -87,5 +80,10 @@
|
|
|
87
80
|
"fast-stringify": "^2.0.0",
|
|
88
81
|
"lodash": "^4.17.21"
|
|
89
82
|
},
|
|
90
|
-
"
|
|
91
|
-
|
|
83
|
+
"scripts": {
|
|
84
|
+
"build": "rollup -c rollup.config.mjs && tsc --emitDeclarationOnly --declaration src/index.tsx --incremental --tsBuildInfoFile ./dist/.tsbuildinfo --skipLibCheck --jsx react --lib dom,esnext --esModuleInterop --strict --outDir ./dist/ && rsync -r --include='*/' --include='*.d.ts' --exclude='*' ./dist/ ./skinny/ && rm skinny/index.d.ts",
|
|
85
|
+
"test": "TEST_CWD=`pwd` pnpm -w test --passWithNoTests",
|
|
86
|
+
"size": "size-limit",
|
|
87
|
+
"analyze": "size-limit --why"
|
|
88
|
+
}
|
|
89
|
+
}
|