krl-alfred 2.17.49 → 2.17.51

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.
@@ -9,6 +9,21 @@ declare const _default: {
9
9
  hasCopyButton: {
10
10
  control: string;
11
11
  };
12
+ isClearable: {
13
+ control: string;
14
+ };
15
+ disabled: {
16
+ control: string;
17
+ };
18
+ readOnly: {
19
+ control: string;
20
+ };
21
+ inline: {
22
+ control: string;
23
+ };
24
+ hasNumericFormat: {
25
+ control: string;
26
+ };
12
27
  onCustomLinkClick: {
13
28
  action: string;
14
29
  };
@@ -28,27 +43,352 @@ export declare const Default: {
28
43
  isClearable: boolean;
29
44
  label: string;
30
45
  type: string;
31
- infoText: string;
46
+ infoText: any;
32
47
  id: string;
33
- format: string;
48
+ format: any;
34
49
  mask: any;
35
50
  onChange: (e: any) => void;
36
51
  };
37
52
  };
53
+ export declare const WithLabel: {
54
+ args: {
55
+ placeholder: string;
56
+ label: string;
57
+ hasError: boolean;
58
+ disabled: boolean;
59
+ readOnly: boolean;
60
+ isClearable: boolean;
61
+ type: string;
62
+ infoText: any;
63
+ id: string;
64
+ onChange: (e: any) => void;
65
+ };
66
+ };
67
+ export declare const WithError: {
68
+ args: {
69
+ placeholder: string;
70
+ label: string;
71
+ hasError: boolean;
72
+ errorMessage: string;
73
+ disabled: boolean;
74
+ readOnly: boolean;
75
+ isClearable: boolean;
76
+ type: string;
77
+ infoText: any;
78
+ id: string;
79
+ onChange: (e: any) => void;
80
+ };
81
+ };
82
+ export declare const Disabled: {
83
+ args: {
84
+ placeholder: string;
85
+ label: string;
86
+ hasError: boolean;
87
+ disabled: boolean;
88
+ readOnly: boolean;
89
+ isClearable: boolean;
90
+ type: string;
91
+ value: string;
92
+ infoText: any;
93
+ id: string;
94
+ onChange: (e: any) => void;
95
+ };
96
+ };
97
+ export declare const ReadOnly: {
98
+ args: {
99
+ placeholder: string;
100
+ label: string;
101
+ hasError: boolean;
102
+ disabled: boolean;
103
+ readOnly: boolean;
104
+ isClearable: boolean;
105
+ type: string;
106
+ value: string;
107
+ infoText: any;
108
+ id: string;
109
+ onChange: (e: any) => void;
110
+ };
111
+ };
112
+ export declare const WithCustomLink: {
113
+ args: {
114
+ placeholder: string;
115
+ label: string;
116
+ customLinkText: string;
117
+ customLinkHref: string;
118
+ onCustomLinkClick: () => void;
119
+ hasError: boolean;
120
+ disabled: boolean;
121
+ readOnly: boolean;
122
+ isClearable: boolean;
123
+ type: string;
124
+ infoText: any;
125
+ id: string;
126
+ onChange: (e: any) => void;
127
+ };
128
+ };
129
+ export declare const Password: {
130
+ args: {
131
+ placeholder: string;
132
+ label: string;
133
+ hasError: boolean;
134
+ disabled: boolean;
135
+ readOnly: boolean;
136
+ isClearable: boolean;
137
+ type: string;
138
+ infoText: any;
139
+ id: string;
140
+ onChange: (e: any) => void;
141
+ };
142
+ };
143
+ export declare const PasswordWithValue: {
144
+ args: {
145
+ placeholder: string;
146
+ label: string;
147
+ hasError: boolean;
148
+ disabled: boolean;
149
+ readOnly: boolean;
150
+ isClearable: boolean;
151
+ type: string;
152
+ value: string;
153
+ infoText: any;
154
+ id: string;
155
+ onChange: (e: any) => void;
156
+ };
157
+ };
38
158
  export declare const DateInput: {
39
159
  args: {
160
+ placeholder: string;
161
+ label: string;
162
+ hasError: boolean;
163
+ disabled: boolean;
164
+ readOnly: boolean;
165
+ isClearable: boolean;
40
166
  type: string;
41
- autoFocus: boolean;
167
+ format: string;
168
+ infoText: any;
169
+ id: string;
170
+ onChange: (e: any) => void;
171
+ };
172
+ };
173
+ export declare const DateInline: {
174
+ args: {
175
+ placeholder: string;
176
+ label: string;
177
+ hasError: boolean;
178
+ disabled: boolean;
179
+ readOnly: boolean;
180
+ isClearable: boolean;
181
+ type: string;
182
+ format: string;
183
+ inline: boolean;
42
184
  infoText: any;
185
+ id: string;
186
+ onChange: (e: any) => void;
187
+ };
188
+ };
189
+ export declare const DateWithMinMax: {
190
+ args: {
43
191
  placeholder: string;
192
+ label: string;
44
193
  hasError: boolean;
45
194
  disabled: boolean;
46
195
  readOnly: boolean;
47
196
  isClearable: boolean;
197
+ type: string;
198
+ format: string;
199
+ minDate: Date;
200
+ maxDate: Date;
201
+ infoText: any;
202
+ id: string;
203
+ onChange: (e: any) => void;
204
+ };
205
+ };
206
+ export declare const WithCopyButton: {
207
+ args: {
208
+ placeholder: string;
48
209
  label: string;
210
+ hasError: boolean;
211
+ disabled: boolean;
212
+ readOnly: boolean;
213
+ isClearable: boolean;
214
+ hasCopyButton: boolean;
215
+ type: string;
216
+ value: string;
217
+ infoText: any;
49
218
  id: string;
219
+ onChange: (e: any) => void;
220
+ };
221
+ };
222
+ export declare const Clearable: {
223
+ args: {
224
+ placeholder: string;
225
+ label: string;
226
+ hasError: boolean;
227
+ disabled: boolean;
228
+ readOnly: boolean;
229
+ isClearable: boolean;
230
+ type: string;
231
+ value: string;
232
+ infoText: any;
233
+ id: string;
234
+ onChange: (e: any) => void;
235
+ onClear: () => void;
236
+ };
237
+ };
238
+ export declare const WithInfoText: {
239
+ args: {
240
+ placeholder: string;
241
+ label: string;
242
+ hasError: boolean;
243
+ disabled: boolean;
244
+ readOnly: boolean;
245
+ isClearable: boolean;
246
+ type: string;
247
+ infoText: string;
248
+ id: string;
249
+ onChange: (e: any) => void;
250
+ };
251
+ };
252
+ export declare const NumericFormat: {
253
+ args: {
254
+ placeholder: string;
255
+ label: string;
256
+ hasError: boolean;
257
+ disabled: boolean;
258
+ readOnly: boolean;
259
+ isClearable: boolean;
260
+ hasNumericFormat: boolean;
261
+ type: string;
262
+ infoText: any;
263
+ id: string;
264
+ onChange: (e: any) => void;
265
+ };
266
+ };
267
+ export declare const PatternFormat: {
268
+ args: {
269
+ placeholder: string;
270
+ label: string;
271
+ hasError: boolean;
272
+ disabled: boolean;
273
+ readOnly: boolean;
274
+ isClearable: boolean;
275
+ type: string;
50
276
  format: string;
51
- mask: any;
277
+ mask: string;
278
+ infoText: any;
279
+ id: string;
280
+ onChange: (e: any) => void;
281
+ };
282
+ };
283
+ export declare const PatternFormatWithValue: {
284
+ args: {
285
+ placeholder: string;
286
+ label: string;
287
+ hasError: boolean;
288
+ disabled: boolean;
289
+ readOnly: boolean;
290
+ isClearable: boolean;
291
+ type: string;
292
+ format: string;
293
+ mask: string;
294
+ value: string;
295
+ infoText: any;
296
+ id: string;
297
+ onChange: (e: any) => void;
298
+ };
299
+ };
300
+ export declare const Email: {
301
+ args: {
302
+ placeholder: string;
303
+ label: string;
304
+ hasError: boolean;
305
+ disabled: boolean;
306
+ readOnly: boolean;
307
+ isClearable: boolean;
308
+ type: string;
309
+ infoText: any;
310
+ id: string;
311
+ onChange: (e: any) => void;
312
+ };
313
+ };
314
+ export declare const Tel: {
315
+ args: {
316
+ placeholder: string;
317
+ label: string;
318
+ hasError: boolean;
319
+ disabled: boolean;
320
+ readOnly: boolean;
321
+ isClearable: boolean;
322
+ type: string;
323
+ infoText: any;
324
+ id: string;
325
+ onChange: (e: any) => void;
326
+ };
327
+ };
328
+ export declare const Number: {
329
+ args: {
330
+ placeholder: string;
331
+ label: string;
332
+ hasError: boolean;
333
+ disabled: boolean;
334
+ readOnly: boolean;
335
+ isClearable: boolean;
336
+ type: string;
337
+ infoText: any;
338
+ id: string;
339
+ onChange: (e: any) => void;
340
+ };
341
+ };
342
+ export declare const CustomWidth: {
343
+ args: {
344
+ placeholder: string;
345
+ label: string;
346
+ width: string;
347
+ hasError: boolean;
348
+ disabled: boolean;
349
+ readOnly: boolean;
350
+ isClearable: boolean;
351
+ type: string;
352
+ infoText: any;
353
+ id: string;
354
+ onChange: (e: any) => void;
355
+ };
356
+ };
357
+ export declare const Complete: {
358
+ args: {
359
+ placeholder: string;
360
+ label: string;
361
+ customLinkText: string;
362
+ customLinkHref: string;
363
+ onCustomLinkClick: () => void;
364
+ hasError: boolean;
365
+ disabled: boolean;
366
+ readOnly: boolean;
367
+ isClearable: boolean;
368
+ hasCopyButton: boolean;
369
+ type: string;
370
+ value: string;
371
+ infoText: string;
372
+ id: string;
373
+ onChange: (e: any) => void;
374
+ onClear: () => void;
375
+ };
376
+ };
377
+ export declare const ErrorWithCustomLink: {
378
+ args: {
379
+ placeholder: string;
380
+ label: string;
381
+ customLinkText: string;
382
+ customLinkHref: string;
383
+ onCustomLinkClick: () => void;
384
+ hasError: boolean;
385
+ errorMessage: string;
386
+ disabled: boolean;
387
+ readOnly: boolean;
388
+ isClearable: boolean;
389
+ type: string;
390
+ infoText: any;
391
+ id: string;
52
392
  onChange: (e: any) => void;
53
393
  };
54
394
  };