x-runtime-lib 0.6.23 → 0.6.24

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.
@@ -82,34 +82,34 @@ type ZPropNumInput = {
82
82
  type ZPropSwitch = {
83
83
  ui: 'switch';
84
84
  readonly?: boolean;
85
- default: undefined | boolean;
85
+ default: boolean | undefined;
86
86
  } & ZPropBase;
87
87
  type ZPropSelect = {
88
88
  ui: 'select';
89
89
  items: ZItem[];
90
90
  readonly?: boolean;
91
- default: undefined | string;
91
+ default: string | undefined;
92
92
  } & ZPropBase;
93
93
  type ZPropColorPicker = {
94
94
  ui: 'colorPicker';
95
95
  readonly?: boolean;
96
- default: undefined | string;
96
+ default: string | undefined;
97
97
  } & ZPropBase;
98
98
  type ZPropMultiTypes = {
99
99
  ui: 'multiTypes';
100
100
  types: ZType[];
101
101
  readonly?: boolean;
102
- default: undefined | string;
102
+ default: string | undefined;
103
103
  } & ZPropBase;
104
104
  type ZPropCompSelect = {
105
105
  ui: 'compSelect';
106
106
  readonly?: boolean;
107
- default: undefined | string;
107
+ default: string | undefined;
108
108
  } & ZPropBase;
109
109
  type ZPropSlotSelect = {
110
110
  ui: 'slotSelect';
111
111
  readonly?: boolean;
112
- default: undefined | string;
112
+ default: string | undefined;
113
113
  } & ZPropBase;
114
114
  export type ZProp = ({
115
115
  array?: false;
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "x-runtime-lib",
3
3
  "private": false,
4
- "version": "0.6.23",
4
+ "version": "0.6.24",
5
5
  "type": "module",
6
6
  "module": "dist/index.js",
7
7
  "types": "dist/index.d.ts",