@nocobase/client 2.0.51 → 2.0.53
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/es/flow/actions/dateRangeLimit.d.ts +9 -0
- package/es/flow/actions/index.d.ts +1 -0
- package/es/flow/components/FieldAssignRulesEditor.d.ts +1 -0
- package/es/flow/internal/utils/enumOptionsUtils.d.ts +5 -0
- package/es/flow/models/actions/AssociationActionUtils.d.ts +5 -0
- package/es/flow/models/blocks/filter-form/FilterFormBlockModel.d.ts +4 -0
- package/es/flow/models/blocks/filter-manager/FilterManager.d.ts +5 -1
- package/es/flow/models/blocks/shared/legacyDefaultValueMigrationBase.d.ts +1 -0
- package/es/flow/models/blocks/table/TableSelectModel.d.ts +8 -0
- package/es/flow/models/fields/AssociationFieldModel/SubTableFieldModel/SubTableColumnModel.d.ts +7 -0
- package/es/flow/models/fields/ClickableFieldModel.d.ts +3 -0
- package/es/flow/models/fields/DateTimeFieldModel/dateLimit.d.ts +20 -0
- package/es/flow/models/fields/DisplayEnumFieldModel.d.ts +6 -0
- package/es/flow/models/fields/DisplayTitleFieldModel.d.ts +2 -2
- package/es/flow/models/utils/displayValueUtils.d.ts +12 -0
- package/es/index.mjs +10920 -10352
- package/es/modules/actions/associate/utils.d.ts +18 -0
- package/es/schema-component/antd/form-v2/Form.d.ts +5 -0
- package/lib/index.js +221 -221
- package/lib/locale/en-US.json +1 -0
- package/lib/locale/zh-CN.json +1 -0
- package/package.json +6 -6
package/lib/locale/en-US.json
CHANGED
|
@@ -360,6 +360,7 @@
|
|
|
360
360
|
"Current form": "Current form",
|
|
361
361
|
"Current object": "Current object",
|
|
362
362
|
"Current item": "Current item",
|
|
363
|
+
"Current language": "Current language",
|
|
363
364
|
"Current popup": "Current popup",
|
|
364
365
|
"Current popup parent record": "Current popup parent record",
|
|
365
366
|
"Current popup record": "Current popup record",
|
package/lib/locale/zh-CN.json
CHANGED
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@nocobase/client",
|
|
3
|
-
"version": "2.0.
|
|
3
|
+
"version": "2.0.53",
|
|
4
4
|
"license": "Apache-2.0",
|
|
5
5
|
"main": "lib/index.js",
|
|
6
6
|
"module": "es/index.mjs",
|
|
@@ -28,10 +28,10 @@
|
|
|
28
28
|
"@formily/reactive-react": "^2.2.27",
|
|
29
29
|
"@formily/shared": "^2.2.27",
|
|
30
30
|
"@formily/validator": "^2.2.27",
|
|
31
|
-
"@nocobase/evaluators": "2.0.
|
|
32
|
-
"@nocobase/flow-engine": "2.0.
|
|
33
|
-
"@nocobase/sdk": "2.0.
|
|
34
|
-
"@nocobase/utils": "2.0.
|
|
31
|
+
"@nocobase/evaluators": "2.0.53",
|
|
32
|
+
"@nocobase/flow-engine": "2.0.53",
|
|
33
|
+
"@nocobase/sdk": "2.0.53",
|
|
34
|
+
"@nocobase/utils": "2.0.53",
|
|
35
35
|
"@tanstack/react-table": "^8.21.3",
|
|
36
36
|
"@types/tabulator-tables": "^6.2.6",
|
|
37
37
|
"acorn-jsx": "^5.3.2",
|
|
@@ -96,5 +96,5 @@
|
|
|
96
96
|
"dumi": "2.2.14",
|
|
97
97
|
"dumi-theme-nocobase": "^0.2.32"
|
|
98
98
|
},
|
|
99
|
-
"gitHead": "
|
|
99
|
+
"gitHead": "652f01597d2293faea886f803c3dfefbecfc654f"
|
|
100
100
|
}
|