@thienvu18/formily-antd-v6-renderer 2.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/.npmignore.tpl ADDED
@@ -0,0 +1,11 @@
1
+ node_modules
2
+ *.log
3
+ build
4
+ docs
5
+ doc-site
6
+ __tests__
7
+ .eslintrc
8
+ jest.config.js
9
+ tsconfig.json
10
+ .umi
11
+ src
package/README.md ADDED
@@ -0,0 +1,9 @@
1
+ # @thienvu18/formily-antd-v6-renderer
2
+
3
+ > Formily Designable Settings Form
4
+
5
+ ## Install
6
+
7
+ ```bash
8
+ npm install @thienvu18/formily-antd-v6-renderer --save
9
+ ```
@@ -0,0 +1,9 @@
1
+ # @thienvu18/formily-antd-v6-renderer
2
+
3
+ > Formily Designable Settings Form
4
+
5
+ ## 安装
6
+
7
+ ```bash
8
+ npm install @thienvu18/formily-antd-v6-renderer --save
9
+ ```
@@ -0,0 +1,7 @@
1
+ import { IBuilderConfig } from '@formily/template'
2
+
3
+ export const BuilderConfig: IBuilderConfig = {
4
+ targetLibName: 'antd',
5
+ targetLibCjsDir: 'lib',
6
+ targetLibEsDir: 'es',
7
+ }
package/lib/index.d.ts ADDED
@@ -0,0 +1 @@
1
+ export {};
package/lib/index.js ADDED
@@ -0,0 +1,3 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ //# sourceMappingURL=index.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"index.js","sourceRoot":"lib/","sources":["index.ts"],"names":[],"mappings":"","sourcesContent":["export {}\n"]}
package/package.json ADDED
@@ -0,0 +1,40 @@
1
+ {
2
+ "name": "@thienvu18/formily-antd-v6-renderer",
3
+ "version": "2.0.0",
4
+ "homepage": "https://github.com/thienvu18/antd#readme",
5
+ "bugs": {
6
+ "url": "https://github.com/thienvu18/antd/issues"
7
+ },
8
+ "repository": {
9
+ "type": "git",
10
+ "url": "git+https://github.com/thienvu18/antd.git"
11
+ },
12
+ "license": "MIT",
13
+ "sideEffects": [
14
+ "dist/*",
15
+ "esm/*.js",
16
+ "lib/*.js",
17
+ "src/*.ts",
18
+ "*.less",
19
+ "*.scss",
20
+ "**/*/style.js"
21
+ ],
22
+ "main": "lib",
23
+ "module": "esm",
24
+ "jsnext:main": "esm",
25
+ "types": "lib/index.d.ts",
26
+ "scripts": {
27
+ "build": "node ../../scripts/build-package.cjs"
28
+ },
29
+ "peerDependencies": {
30
+ "react": ">=19.0.0 <20.0.0",
31
+ "react-dom": ">=19.0.0 <20.0.0",
32
+ "react-is": ">=19.0.0 <20.0.0"
33
+ },
34
+ "engines": {
35
+ "npm": ">=3.0.0"
36
+ },
37
+ "publishConfig": {
38
+ "access": "public"
39
+ }
40
+ }
@@ -0,0 +1,10 @@
1
+ {
2
+ "extends": "./tsconfig.json",
3
+ "compilerOptions": {
4
+ "outDir": "./lib",
5
+ "paths": {
6
+ "@formily/*": ["packages/*"]
7
+ },
8
+ "declaration": true
9
+ }
10
+ }