mirror of https://github.com/certd/certd
🔱: [client] sync upgrade with 3 commits [trident-sync]
build: publish success fix: 修复fs-values-format组件某些值无法获取自动颜色的bugpull/349/head
parent
f802b4c2dd
commit
85cbc16c53
|
@ -3,6 +3,12 @@
|
||||||
All notable changes to this project will be documented in this file.
|
All notable changes to this project will be documented in this file.
|
||||||
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
|
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
|
||||||
|
|
||||||
|
## [1.25.13](https://github.com/fast-crud/fast-crud/compare/v1.25.12...v1.25.13) (2025-06-10)
|
||||||
|
|
||||||
|
### Bug Fixes
|
||||||
|
|
||||||
|
* 修复fs-values-format组件某些值无法获取自动颜色的bug ([18169fc](https://github.com/fast-crud/fast-crud/commit/18169fc11f37595b8fba96467f0c741fe898ad21))
|
||||||
|
|
||||||
## [1.25.12](https://github.com/fast-crud/fast-crud/compare/v1.25.11...v1.25.12) (2025-05-26)
|
## [1.25.12](https://github.com/fast-crud/fast-crud/compare/v1.25.11...v1.25.12) (2025-05-26)
|
||||||
|
|
||||||
### Bug Fixes
|
### Bug Fixes
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
{
|
{
|
||||||
"name": "@fast-crud/fs-admin-antdv4",
|
"name": "@fast-crud/fs-admin-antdv4",
|
||||||
"version": "1.25.12",
|
"version": "1.25.13",
|
||||||
"private": true,
|
"private": true,
|
||||||
"scripts": {
|
"scripts": {
|
||||||
"dev": "vite",
|
"dev": "vite",
|
||||||
|
@ -27,10 +27,10 @@
|
||||||
"@aws-sdk/client-s3": "^3.535.0",
|
"@aws-sdk/client-s3": "^3.535.0",
|
||||||
"@aws-sdk/s3-request-presigner": "^3.535.0",
|
"@aws-sdk/s3-request-presigner": "^3.535.0",
|
||||||
"@ctrl/tinycolor": "^4.1.0",
|
"@ctrl/tinycolor": "^4.1.0",
|
||||||
"@fast-crud/fast-crud": "^1.25.12",
|
"@fast-crud/fast-crud": "^1.25.13",
|
||||||
"@fast-crud/fast-extends": "^1.25.12",
|
"@fast-crud/fast-extends": "^1.25.13",
|
||||||
"@fast-crud/ui-antdv4": "^1.25.12",
|
"@fast-crud/ui-antdv4": "^1.25.13",
|
||||||
"@fast-crud/ui-interface": "^1.25.12",
|
"@fast-crud/ui-interface": "^1.25.13",
|
||||||
"@iconify/tailwind": "^1.2.0",
|
"@iconify/tailwind": "^1.2.0",
|
||||||
"@iconify/vue": "^4.1.1",
|
"@iconify/vue": "^4.1.1",
|
||||||
"@manypkg/get-packages": "^2.2.2",
|
"@manypkg/get-packages": "^2.2.2",
|
||||||
|
|
|
@ -306,7 +306,8 @@ export default async function ({ crudExpose, context }: CreateCrudOptionsProps):
|
||||||
{ value: "wh", label: "武汉" },
|
{ value: "wh", label: "武汉" },
|
||||||
{ value: "sh", label: "上海" },
|
{ value: "sh", label: "上海" },
|
||||||
{ value: "hz", label: "杭州" },
|
{ value: "hz", label: "杭州" },
|
||||||
{ value: "bj", label: "北京", color: "red" }
|
{ value: "bj", label: "北京", color: "red" },
|
||||||
|
{ value: "github", label: "github" }
|
||||||
]
|
]
|
||||||
}),
|
}),
|
||||||
column: {
|
column: {
|
||||||
|
|
|
@ -8,7 +8,7 @@ const list = [
|
||||||
statusLocal: "sz",
|
statusLocal: "sz",
|
||||||
customDictUrl: "0",
|
customDictUrl: "0",
|
||||||
statusValue: 1,
|
statusValue: 1,
|
||||||
multiple: ["sz", "bj", "gz", "sh", "hz", "xz", "xg"],
|
multiple: ["sz", "bj", "gz", "sh", "hz", "xz", "xg", "github"],
|
||||||
checkbox: "0",
|
checkbox: "0",
|
||||||
select_local: "sz",
|
select_local: "sz",
|
||||||
statusRemote: "0",
|
statusRemote: "0",
|
||||||
|
|
Loading…
Reference in New Issue