@yuuvis/client-core 2.3.23 → 2.3.25
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.
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { InternalFieldType } from "../system/system.enum";
|
|
2
2
|
import { ObjectTypeField } from "../system/system.interface";
|
|
3
3
|
export type ObjectTypeFieldType = 'string' | 'integer' | 'decimal' | 'boolean' | 'table' | 'datetime';
|
|
4
|
-
export type ObjectTypeFieldInternalType = ObjectTypeFieldType | InternalFieldType.STRING_REFERENCE | InternalFieldType.STRING_ORGANIZATION | InternalFieldType.STRING_ORGANIZATION_SET | InternalFieldType.STRING_CATALOG | InternalFieldType.BOOLEAN_SWITCH | InternalFieldType.STRING_DYNAMIC_CATALOG;
|
|
4
|
+
export type ObjectTypeFieldInternalType = ObjectTypeFieldType | InternalFieldType.STRING_REFERENCE | InternalFieldType.STRING_ORGANIZATION | InternalFieldType.STRING_ORGANIZATION_SET | InternalFieldType.STRING_CATALOG | InternalFieldType.STRING_CATALOG_I18N | InternalFieldType.BOOLEAN_SWITCH | InternalFieldType.STRING_DYNAMIC_CATALOG;
|
|
5
5
|
export interface FormElementString extends ObjectTypeField {
|
|
6
6
|
propertyType: 'string';
|
|
7
7
|
defaultvalue?: string[] | string;
|
|
@@ -92,6 +92,7 @@ export declare enum ContentStreamAllowed {
|
|
|
92
92
|
REQUIRED = "required"
|
|
93
93
|
}
|
|
94
94
|
export declare enum Classification {
|
|
95
|
+
STRING_CATALOG_I18N = "i18n:catalog",
|
|
95
96
|
STRING_CATALOG_CUSTOM = "custom:catalog",
|
|
96
97
|
STRING_CATALOG_DYNAMIC = "dynamic:catalog",
|
|
97
98
|
STRING_CATALOG = "catalog",
|
|
@@ -127,6 +128,7 @@ export declare enum InternalFieldType {
|
|
|
127
128
|
STRING_ORGANIZATION = "string:organization",
|
|
128
129
|
STRING_REFERENCE = "string:reference",
|
|
129
130
|
STRING_CATALOG = "string:catalog",
|
|
131
|
+
STRING_CATALOG_I18N = "string:catalog:i18n",
|
|
130
132
|
STRING_DYNAMIC_CATALOG = "string:catalog:dynamic",
|
|
131
133
|
BOOLEAN_SWITCH = "boolean:switch"
|
|
132
134
|
}
|