polymatica-widget 2.1.14 → 2.1.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.
- package/config.d.ts +7 -0
- package/package.json +1 -1
package/config.d.ts
CHANGED
|
@@ -46,6 +46,7 @@ export interface DataConfig {
|
|
|
46
46
|
type?: string;
|
|
47
47
|
hideSort?: boolean;
|
|
48
48
|
hideCounter?: boolean;
|
|
49
|
+
label?: Text;
|
|
49
50
|
}
|
|
50
51
|
export interface Block {
|
|
51
52
|
key: string;
|
|
@@ -93,16 +94,19 @@ export declare function tabPanels(params: {
|
|
|
93
94
|
export declare function text(params: {
|
|
94
95
|
key: string;
|
|
95
96
|
label: Text;
|
|
97
|
+
placeholder: Text;
|
|
96
98
|
span?: number;
|
|
97
99
|
}): void;
|
|
98
100
|
export declare function number(params: {
|
|
99
101
|
key: string;
|
|
100
102
|
label: Text;
|
|
103
|
+
placeholder: Text;
|
|
101
104
|
span?: number;
|
|
102
105
|
}): void;
|
|
103
106
|
export declare function integer(params: {
|
|
104
107
|
key: string;
|
|
105
108
|
label: Text;
|
|
109
|
+
placeholder: Text;
|
|
106
110
|
span?: number;
|
|
107
111
|
}): void;
|
|
108
112
|
export declare function range(params: {
|
|
@@ -118,16 +122,19 @@ export declare function interval(params: {
|
|
|
118
122
|
export declare function date(params: {
|
|
119
123
|
key: string;
|
|
120
124
|
label: Text;
|
|
125
|
+
placeholder: Text;
|
|
121
126
|
span?: number;
|
|
122
127
|
}): void;
|
|
123
128
|
export declare function time(params: {
|
|
124
129
|
key: string;
|
|
125
130
|
label: Text;
|
|
131
|
+
placeholder: Text;
|
|
126
132
|
span?: number;
|
|
127
133
|
}): void;
|
|
128
134
|
export declare function dateTime(params: {
|
|
129
135
|
key: string;
|
|
130
136
|
label: Text;
|
|
137
|
+
placeholder: Text;
|
|
131
138
|
span?: number;
|
|
132
139
|
}): void;
|
|
133
140
|
export declare function checkbox(params: {
|