@vuu-ui/vuu-protocol-types 0.13.115 → 0.13.117

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 +6 -4
  2. package/package.json +1 -1
package/index.d.ts CHANGED
@@ -657,6 +657,8 @@ export declare type VuuRpcMenuAction =
657
657
  | NoAction
658
658
  | ShowNotificationAction;
659
659
 
660
+ export declare type RawNumericType = "int" | "double";
661
+
660
662
  export declare type StringNumericType =
661
663
  | "long"
662
664
  | "scaleddecimal2"
@@ -664,14 +666,14 @@ export declare type StringNumericType =
664
666
  | "scaleddecimal6"
665
667
  | "scaleddecimal8";
666
668
 
669
+ export declare type VuuNumericType = RawNumericType | StringNumericType;
670
+
667
671
  export declare type VuuColumnDataType =
668
- | "int"
669
- | "double"
672
+ | VuuNumericType
670
673
  | "string"
671
674
  | "char"
672
675
  | "boolean"
673
- | "epochtimestamp"
674
- | StringNumericType;
676
+ | "epochtimestamp";
675
677
 
676
678
  export declare type VuuMenuContext = "cell" | "row" | "grid" | "selected-rows";
677
679
  export declare type VuuTable = {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@vuu-ui/vuu-protocol-types",
3
- "version": "0.13.115",
3
+ "version": "0.13.117",
4
4
  "author": "heswell",
5
5
  "license": "Apache-2.0",
6
6
  "dependencies": {},