polymatica-widget 2.1.16 → 2.1.17

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/config.d.ts +6 -6
  2. package/package.json +1 -1
package/config.d.ts CHANGED
@@ -94,19 +94,19 @@ export declare function tabPanels(params: {
94
94
  export declare function text(params: {
95
95
  key: string;
96
96
  label: Text;
97
- placeholder: Text;
97
+ placeholder?: Text;
98
98
  span?: number;
99
99
  }): void;
100
100
  export declare function number(params: {
101
101
  key: string;
102
102
  label: Text;
103
- placeholder: Text;
103
+ placeholder?: Text;
104
104
  span?: number;
105
105
  }): void;
106
106
  export declare function integer(params: {
107
107
  key: string;
108
108
  label: Text;
109
- placeholder: Text;
109
+ placeholder?: Text;
110
110
  span?: number;
111
111
  }): void;
112
112
  export declare function range(params: {
@@ -122,19 +122,19 @@ export declare function interval(params: {
122
122
  export declare function date(params: {
123
123
  key: string;
124
124
  label: Text;
125
- placeholder: Text;
125
+ placeholder?: Text;
126
126
  span?: number;
127
127
  }): void;
128
128
  export declare function time(params: {
129
129
  key: string;
130
130
  label: Text;
131
- placeholder: Text;
131
+ placeholder?: Text;
132
132
  span?: number;
133
133
  }): void;
134
134
  export declare function dateTime(params: {
135
135
  key: string;
136
136
  label: Text;
137
- placeholder: Text;
137
+ placeholder?: Text;
138
138
  span?: number;
139
139
  }): void;
140
140
  export declare function checkbox(params: {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "polymatica-widget",
3
- "version": "2.1.16",
3
+ "version": "2.1.17",
4
4
  "description": "SDK для создания виджетов для платформы Polymatica",
5
5
  "keywords": [],
6
6
  "license": "ISC",