procode-lowcode-core 1.0.15 → 1.0.16

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.
@@ -6,5 +6,5 @@ export type BoundOperand<T> = {
6
6
  };
7
7
  export type BoundValue<T> = T | BoundOperand<T> | undefined | null;
8
8
  export declare const resolveBoundValue: <T>(bound: BoundValue<T>, viewModel: ViewModel) => T | null | undefined;
9
- export declare const BOUND_PROP_NAMES: readonly ["min", "max", "minDate", "maxDate", "minLength", "maxLength", "minResizeHeight", "maxResizeHeight", "minResizeWidth", "maxResizeWidth", "step", "placeHolder", "disabled"];
9
+ export declare const BOUND_PROP_NAMES: readonly ["min", "max", "minDate", "maxDate", "minLength", "maxLength", "minResizeHeight", "maxResizeHeight", "minResizeWidth", "maxResizeWidth", "step", "placeHolder", "disabled", "format"];
10
10
  export type BoundPropName = (typeof BOUND_PROP_NAMES)[number];
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "procode-lowcode-core",
3
- "version": "1.0.15",
3
+ "version": "1.0.16",
4
4
  "description": "ProCode Core Library - React framework for low-code applications",
5
5
  "type": "module",
6
6
  "main": "dist/index.js",
@@ -44,6 +44,7 @@ export const BOUND_PROP_NAMES = [
44
44
  "step",
45
45
  "placeHolder",
46
46
  "disabled",
47
+ "format",
47
48
  ] as const;
48
49
 
49
50
  export type BoundPropName = (typeof BOUND_PROP_NAMES)[number];