@nocobase/client 1.6.16 → 1.6.18
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/application/components/defaultComponents.d.ts +3 -1
- package/es/collection-manager/interfaces/properties/operators.d.ts +3 -10
- package/es/collection-manager/interfaces/radioGroup.d.ts +3 -10
- package/es/collection-manager/interfaces/select.d.ts +3 -10
- package/es/index.mjs +6973 -6929
- package/es/schema-component/antd/action/Action.Modal.d.ts +1 -0
- package/es/schema-component/antd/input/Input.d.ts +4 -1
- package/es/schema-component/antd/variable/Input.d.ts +1 -0
- package/es/schema-component/antd/variable/TextArea.d.ts +14 -1
- package/es/schema-component/antd/variable/Variable.d.ts +1 -1
- package/lib/index.js +53 -53
- package/lib/locale/de-DE.js +3 -1
- package/lib/locale/en-US.js +3 -1
- package/lib/locale/es-ES.js +3 -1
- package/lib/locale/fr-FR.js +3 -1
- package/lib/locale/it-IT.js +3 -1
- package/lib/locale/ja-JP.js +3 -1
- package/lib/locale/ko-KR.js +3 -1
- package/lib/locale/pt-BR.js +3 -1
- package/lib/locale/ru-RU.js +3 -1
- package/lib/locale/tr-TR.js +3 -1
- package/lib/locale/uk-UA.js +3 -1
- package/lib/locale/zh-CN.js +3 -1
- package/lib/locale/zh-TW.js +3 -1
- package/package.json +5 -5
|
@@ -133,17 +133,10 @@ export declare const enumType: ({
|
|
|
133
133
|
selected: boolean;
|
|
134
134
|
schema: {
|
|
135
135
|
'x-component': string;
|
|
136
|
-
'x-component-props'
|
|
137
|
-
|
|
138
|
-
|
|
139
|
-
} | {
|
|
140
|
-
label: string;
|
|
141
|
-
value: string;
|
|
142
|
-
schema: {
|
|
143
|
-
'x-component': string;
|
|
144
|
-
'x-component-props'?: undefined;
|
|
136
|
+
'x-component-props': {
|
|
137
|
+
mode: any;
|
|
138
|
+
};
|
|
145
139
|
};
|
|
146
|
-
selected?: undefined;
|
|
147
140
|
noValue?: undefined;
|
|
148
141
|
} | {
|
|
149
142
|
label: string;
|
|
@@ -106,17 +106,10 @@ export declare class RadioGroupFieldInterface extends CollectionFieldInterface {
|
|
|
106
106
|
selected: boolean;
|
|
107
107
|
schema: {
|
|
108
108
|
'x-component': string;
|
|
109
|
-
'x-component-props'
|
|
110
|
-
|
|
111
|
-
|
|
112
|
-
} | {
|
|
113
|
-
label: string;
|
|
114
|
-
value: string;
|
|
115
|
-
schema: {
|
|
116
|
-
'x-component': string;
|
|
117
|
-
'x-component-props'?: undefined;
|
|
109
|
+
'x-component-props': {
|
|
110
|
+
mode: any;
|
|
111
|
+
};
|
|
118
112
|
};
|
|
119
|
-
selected?: undefined;
|
|
120
113
|
noValue?: undefined;
|
|
121
114
|
} | {
|
|
122
115
|
label: string;
|
|
@@ -108,17 +108,10 @@ export declare class SelectFieldInterface extends CollectionFieldInterface {
|
|
|
108
108
|
selected: boolean;
|
|
109
109
|
schema: {
|
|
110
110
|
'x-component': string;
|
|
111
|
-
'x-component-props'
|
|
112
|
-
|
|
113
|
-
|
|
114
|
-
} | {
|
|
115
|
-
label: string;
|
|
116
|
-
value: string;
|
|
117
|
-
schema: {
|
|
118
|
-
'x-component': string;
|
|
119
|
-
'x-component-props'?: undefined;
|
|
111
|
+
'x-component-props': {
|
|
112
|
+
mode: any;
|
|
113
|
+
};
|
|
120
114
|
};
|
|
121
|
-
selected?: undefined;
|
|
122
115
|
noValue?: undefined;
|
|
123
116
|
} | {
|
|
124
117
|
label: string;
|