@vuu-ui/vuu-protocol-types 0.13.114 → 0.13.115-alpha.2

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