@vuu-ui/vuu-data-types 0.13.24 → 0.13.26

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.
Files changed (2) hide show
  1. package/index.d.ts +9 -0
  2. package/package.json +3 -3
package/index.d.ts CHANGED
@@ -118,12 +118,14 @@ export declare type DataValueTypeSimple =
118
118
  | "boolean"
119
119
  | "json"
120
120
  | DateTimeDataValueTypeSimple
121
+ | TimeDataValueTypeSimple
121
122
  | "checkbox";
122
123
 
123
124
  export declare type DataValueType =
124
125
  | DataValueTypeSimple
125
126
  | DataValueTypeDescriptor;
126
127
 
128
+ export declare type TimeDataValueTypeSimple = "time";
127
129
  export declare type DateTimeDataValueTypeSimple = "date/time";
128
130
 
129
131
  export declare type DateTimeDataValueType =
@@ -160,6 +162,13 @@ export declare type DateTimeDataValueDescriptor = Omit<
160
162
  type: DateTimeDataValueType;
161
163
  };
162
164
 
165
+ export declare type TimeDataValueDescriptor = Omit<
166
+ DataValueDescriptor,
167
+ "type"
168
+ > & {
169
+ type: TimeDataValueType;
170
+ };
171
+
163
172
  export interface DataSourceFilter extends VuuFilter {
164
173
  filterStruct?: Filter;
165
174
  }
package/package.json CHANGED
@@ -1,11 +1,11 @@
1
1
  {
2
2
  "name": "@vuu-ui/vuu-data-types",
3
- "version": "0.13.24",
3
+ "version": "0.13.26",
4
4
  "author": "heswell",
5
5
  "license": "Apache-2.0",
6
6
  "devDependencies": {
7
- "@vuu-ui/vuu-filter-types": "0.13.24",
8
- "@vuu-ui/vuu-protocol-types": "0.13.24"
7
+ "@vuu-ui/vuu-filter-types": "0.13.26",
8
+ "@vuu-ui/vuu-protocol-types": "0.13.26"
9
9
  },
10
10
  "dependencies": {},
11
11
  "peerDependencies": {},