@ftjs/antd 0.5.6 → 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.
package/dist/form/style.d.ts
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
export declare const isViewOptionsStyle = "display: flex; gap: 8px;";
|
|
1
|
+
export declare const isViewOptionsStyle = "display: flex; gap: 8px; flex-wrap: wrap;";
|
package/dist/index.js
CHANGED
|
@@ -35,7 +35,7 @@ const input = defineFormItem((props) => {
|
|
|
35
35
|
});
|
|
36
36
|
};
|
|
37
37
|
});
|
|
38
|
-
const isViewOptionsStyle = "display: flex; gap: 8px;";
|
|
38
|
+
const isViewOptionsStyle = "display: flex; gap: 8px; flex-wrap: wrap;";
|
|
39
39
|
const select = defineFormItem((props) => {
|
|
40
40
|
const {
|
|
41
41
|
valueComputed
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@ftjs/antd",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "1.0.0",
|
|
4
4
|
"keywords": [],
|
|
5
5
|
"author": "",
|
|
6
6
|
"license": "MIT",
|
|
@@ -30,19 +30,18 @@
|
|
|
30
30
|
"vite": "^6.1.0",
|
|
31
31
|
"vite-plugin-dts": "^4.5.0",
|
|
32
32
|
"vue-tsc": "2.2.0",
|
|
33
|
-
"@ftjs/core": "
|
|
33
|
+
"@ftjs/core": "1.1.0"
|
|
34
34
|
},
|
|
35
35
|
"peerDependencies": {
|
|
36
36
|
"@ant-design/icons-vue": ">=7.0.0",
|
|
37
37
|
"vue": ">=3.3.0",
|
|
38
|
-
"@ftjs/core": ">=
|
|
38
|
+
"@ftjs/core": ">=1.1.0",
|
|
39
39
|
"ant-design-vue": ">=4.0.0",
|
|
40
40
|
"dayjs": ">=1.0.0",
|
|
41
41
|
"vxe-table": ">=4.0.0"
|
|
42
42
|
},
|
|
43
43
|
"scripts": {
|
|
44
44
|
"build": "vite build",
|
|
45
|
-
"minify": "pnpm dlx esbuild ./dist/index.js --minify --outfile=./dist/index.min.js"
|
|
46
|
-
"pub": "tsx ../../scripts/publish.ts"
|
|
45
|
+
"minify": "pnpm dlx esbuild ./dist/index.js --minify --outfile=./dist/index.min.js"
|
|
47
46
|
}
|
|
48
47
|
}
|