@vuu-ui/vuu-data-types 3.3.3 → 3.3.5
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/index.d.ts +3 -1
- package/package.json +3 -3
package/index.d.ts
CHANGED
|
@@ -153,6 +153,8 @@ export interface DataValueDescriptor {
|
|
|
153
153
|
label?: string;
|
|
154
154
|
/** unique name for this data value */
|
|
155
155
|
name: string;
|
|
156
|
+
/** Whether the field is required or can be empty/nullable */
|
|
157
|
+
required?: boolean;
|
|
156
158
|
/** The type defined on server for this data value */
|
|
157
159
|
serverDataType?: VuuColumnDataType;
|
|
158
160
|
/** Type hints for the UI that supplement the serverDataType */
|
|
@@ -1097,4 +1099,4 @@ export interface ServerAPI {
|
|
|
1097
1099
|
callback: PostMessageToClientCallback,
|
|
1098
1100
|
) => void;
|
|
1099
1101
|
unsubscribe: (viewport: string) => void;
|
|
1100
|
-
}
|
|
1102
|
+
}
|
package/package.json
CHANGED
|
@@ -1,11 +1,11 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@vuu-ui/vuu-data-types",
|
|
3
|
-
"version": "3.3.
|
|
3
|
+
"version": "3.3.5",
|
|
4
4
|
"author": "heswell",
|
|
5
5
|
"license": "Apache-2.0",
|
|
6
6
|
"devDependencies": {
|
|
7
|
-
"@vuu-ui/vuu-filter-types": "3.3.
|
|
8
|
-
"@vuu-ui/vuu-protocol-types": "3.3.
|
|
7
|
+
"@vuu-ui/vuu-filter-types": "3.3.5",
|
|
8
|
+
"@vuu-ui/vuu-protocol-types": "3.3.5"
|
|
9
9
|
},
|
|
10
10
|
"dependencies": {},
|
|
11
11
|
"peerDependencies": {},
|