@ukic/canary-docs 3.0.0-canary.22 → 3.0.0-canary.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.
- package/docs.json +783 -73
- package/package.json +2 -2
package/docs.json
CHANGED
|
@@ -5,6 +5,612 @@
|
|
|
5
5
|
"typescriptVersion": "5.5.4"
|
|
6
6
|
},
|
|
7
7
|
"components": [
|
|
8
|
+
{
|
|
9
|
+
"filePath": "src/components/ic-calendar/ic-calendar.tsx",
|
|
10
|
+
"encapsulation": "shadow",
|
|
11
|
+
"tag": "ic-calendar",
|
|
12
|
+
"readme": "# ic-calendar\n\n\n",
|
|
13
|
+
"docs": "",
|
|
14
|
+
"docsTags": [],
|
|
15
|
+
"usage": {},
|
|
16
|
+
"props": [
|
|
17
|
+
{
|
|
18
|
+
"name": "dateFormat",
|
|
19
|
+
"type": "\"DD/MM/YYYY\" | \"MM/DD/YYYY\" | \"YYYY/MM/DD\"",
|
|
20
|
+
"complexType": {
|
|
21
|
+
"original": "IcDateFormat",
|
|
22
|
+
"resolved": "\"DD/MM/YYYY\" | \"MM/DD/YYYY\" | \"YYYY/MM/DD\"",
|
|
23
|
+
"references": {
|
|
24
|
+
"IcDateFormat": {
|
|
25
|
+
"location": "import",
|
|
26
|
+
"path": "../../utils/types",
|
|
27
|
+
"id": "src/utils/types.ts::IcDateFormat"
|
|
28
|
+
}
|
|
29
|
+
}
|
|
30
|
+
},
|
|
31
|
+
"mutable": false,
|
|
32
|
+
"attr": "date-format",
|
|
33
|
+
"reflectToAttr": false,
|
|
34
|
+
"docs": "The format in which the date will be displayed.",
|
|
35
|
+
"docsTags": [],
|
|
36
|
+
"default": "\"DD/MM/YYYY\"",
|
|
37
|
+
"values": [
|
|
38
|
+
{
|
|
39
|
+
"value": "DD/MM/YYYY",
|
|
40
|
+
"type": "string"
|
|
41
|
+
},
|
|
42
|
+
{
|
|
43
|
+
"value": "MM/DD/YYYY",
|
|
44
|
+
"type": "string"
|
|
45
|
+
},
|
|
46
|
+
{
|
|
47
|
+
"value": "YYYY/MM/DD",
|
|
48
|
+
"type": "string"
|
|
49
|
+
}
|
|
50
|
+
],
|
|
51
|
+
"optional": false,
|
|
52
|
+
"required": false,
|
|
53
|
+
"getter": false,
|
|
54
|
+
"setter": false
|
|
55
|
+
},
|
|
56
|
+
{
|
|
57
|
+
"name": "disableDays",
|
|
58
|
+
"type": "IcWeekDays[] | undefined",
|
|
59
|
+
"complexType": {
|
|
60
|
+
"original": "IcWeekDays[]",
|
|
61
|
+
"resolved": "IcWeekDays[] | undefined",
|
|
62
|
+
"references": {
|
|
63
|
+
"IcWeekDays": {
|
|
64
|
+
"location": "import",
|
|
65
|
+
"path": "../../utils/types",
|
|
66
|
+
"id": "src/utils/types.ts::IcWeekDays"
|
|
67
|
+
}
|
|
68
|
+
}
|
|
69
|
+
},
|
|
70
|
+
"mutable": false,
|
|
71
|
+
"reflectToAttr": false,
|
|
72
|
+
"docs": "The days of the week to disable.",
|
|
73
|
+
"docsTags": [],
|
|
74
|
+
"default": "[]",
|
|
75
|
+
"values": [
|
|
76
|
+
{
|
|
77
|
+
"type": "IcWeekDays[]"
|
|
78
|
+
},
|
|
79
|
+
{
|
|
80
|
+
"type": "undefined"
|
|
81
|
+
}
|
|
82
|
+
],
|
|
83
|
+
"optional": true,
|
|
84
|
+
"required": false,
|
|
85
|
+
"getter": false,
|
|
86
|
+
"setter": false
|
|
87
|
+
},
|
|
88
|
+
{
|
|
89
|
+
"name": "disableFuture",
|
|
90
|
+
"type": "boolean | undefined",
|
|
91
|
+
"complexType": {
|
|
92
|
+
"original": "boolean",
|
|
93
|
+
"resolved": "boolean | undefined",
|
|
94
|
+
"references": {}
|
|
95
|
+
},
|
|
96
|
+
"mutable": false,
|
|
97
|
+
"attr": "disable-future",
|
|
98
|
+
"reflectToAttr": false,
|
|
99
|
+
"docs": "If `true`, dates in the future are not allowed.",
|
|
100
|
+
"docsTags": [],
|
|
101
|
+
"default": "false",
|
|
102
|
+
"values": [
|
|
103
|
+
{
|
|
104
|
+
"type": "boolean"
|
|
105
|
+
},
|
|
106
|
+
{
|
|
107
|
+
"type": "undefined"
|
|
108
|
+
}
|
|
109
|
+
],
|
|
110
|
+
"optional": true,
|
|
111
|
+
"required": false,
|
|
112
|
+
"getter": false,
|
|
113
|
+
"setter": false
|
|
114
|
+
},
|
|
115
|
+
{
|
|
116
|
+
"name": "disablePast",
|
|
117
|
+
"type": "boolean | undefined",
|
|
118
|
+
"complexType": {
|
|
119
|
+
"original": "boolean",
|
|
120
|
+
"resolved": "boolean | undefined",
|
|
121
|
+
"references": {}
|
|
122
|
+
},
|
|
123
|
+
"mutable": false,
|
|
124
|
+
"attr": "disable-past",
|
|
125
|
+
"reflectToAttr": false,
|
|
126
|
+
"docs": "If `true`, dates in the past are not allowed.",
|
|
127
|
+
"docsTags": [],
|
|
128
|
+
"default": "false",
|
|
129
|
+
"values": [
|
|
130
|
+
{
|
|
131
|
+
"type": "boolean"
|
|
132
|
+
},
|
|
133
|
+
{
|
|
134
|
+
"type": "undefined"
|
|
135
|
+
}
|
|
136
|
+
],
|
|
137
|
+
"optional": true,
|
|
138
|
+
"required": false,
|
|
139
|
+
"getter": false,
|
|
140
|
+
"setter": false
|
|
141
|
+
},
|
|
142
|
+
{
|
|
143
|
+
"name": "disabled",
|
|
144
|
+
"type": "boolean",
|
|
145
|
+
"complexType": {
|
|
146
|
+
"original": "boolean",
|
|
147
|
+
"resolved": "boolean",
|
|
148
|
+
"references": {}
|
|
149
|
+
},
|
|
150
|
+
"mutable": false,
|
|
151
|
+
"attr": "disabled",
|
|
152
|
+
"reflectToAttr": true,
|
|
153
|
+
"docs": "If `true`, the disabled state will be set.",
|
|
154
|
+
"docsTags": [],
|
|
155
|
+
"default": "false",
|
|
156
|
+
"values": [
|
|
157
|
+
{
|
|
158
|
+
"type": "boolean"
|
|
159
|
+
}
|
|
160
|
+
],
|
|
161
|
+
"optional": false,
|
|
162
|
+
"required": false,
|
|
163
|
+
"getter": false,
|
|
164
|
+
"setter": false
|
|
165
|
+
},
|
|
166
|
+
{
|
|
167
|
+
"name": "max",
|
|
168
|
+
"type": "Date | string",
|
|
169
|
+
"complexType": {
|
|
170
|
+
"original": "string | Date",
|
|
171
|
+
"resolved": "Date | string",
|
|
172
|
+
"references": {
|
|
173
|
+
"Date": {
|
|
174
|
+
"location": "global",
|
|
175
|
+
"id": "global::Date"
|
|
176
|
+
}
|
|
177
|
+
}
|
|
178
|
+
},
|
|
179
|
+
"mutable": false,
|
|
180
|
+
"attr": "max",
|
|
181
|
+
"reflectToAttr": false,
|
|
182
|
+
"docs": "The latest date that will be allowed. The value can be in any format supported as `dateFormat`, in ISO 8601 date string format (`yyyy-mm-dd`) or as a JavaScript `Date` object.\nThe value of this prop is ignored if `disableFuture` is set to `true`.",
|
|
183
|
+
"docsTags": [],
|
|
184
|
+
"default": "\"\"",
|
|
185
|
+
"values": [
|
|
186
|
+
{
|
|
187
|
+
"type": "Date"
|
|
188
|
+
},
|
|
189
|
+
{
|
|
190
|
+
"type": "string"
|
|
191
|
+
}
|
|
192
|
+
],
|
|
193
|
+
"optional": false,
|
|
194
|
+
"required": false,
|
|
195
|
+
"getter": false,
|
|
196
|
+
"setter": false
|
|
197
|
+
},
|
|
198
|
+
{
|
|
199
|
+
"name": "min",
|
|
200
|
+
"type": "Date | string",
|
|
201
|
+
"complexType": {
|
|
202
|
+
"original": "string | Date",
|
|
203
|
+
"resolved": "Date | string",
|
|
204
|
+
"references": {
|
|
205
|
+
"Date": {
|
|
206
|
+
"location": "global",
|
|
207
|
+
"id": "global::Date"
|
|
208
|
+
}
|
|
209
|
+
}
|
|
210
|
+
},
|
|
211
|
+
"mutable": false,
|
|
212
|
+
"attr": "min",
|
|
213
|
+
"reflectToAttr": false,
|
|
214
|
+
"docs": "The earliest date that will be allowed. The value can be in any format supported as `dateFormat`, in ISO 8601 date string format (`yyyy-mm-dd`) or as a JavaScript `Date` object.\nThe value of this prop is ignored if `disablePast` is set to `true`.",
|
|
215
|
+
"docsTags": [],
|
|
216
|
+
"default": "\"\"",
|
|
217
|
+
"values": [
|
|
218
|
+
{
|
|
219
|
+
"type": "Date"
|
|
220
|
+
},
|
|
221
|
+
{
|
|
222
|
+
"type": "string"
|
|
223
|
+
}
|
|
224
|
+
],
|
|
225
|
+
"optional": false,
|
|
226
|
+
"required": false,
|
|
227
|
+
"getter": false,
|
|
228
|
+
"setter": false
|
|
229
|
+
},
|
|
230
|
+
{
|
|
231
|
+
"name": "openAtDate",
|
|
232
|
+
"type": "Date | string",
|
|
233
|
+
"complexType": {
|
|
234
|
+
"original": "string | Date",
|
|
235
|
+
"resolved": "Date | string",
|
|
236
|
+
"references": {
|
|
237
|
+
"Date": {
|
|
238
|
+
"location": "global",
|
|
239
|
+
"id": "global::Date"
|
|
240
|
+
}
|
|
241
|
+
}
|
|
242
|
+
},
|
|
243
|
+
"mutable": false,
|
|
244
|
+
"attr": "open-at-date",
|
|
245
|
+
"reflectToAttr": false,
|
|
246
|
+
"docs": "The date visible when the calendar opens. Used if no date is currently selected.\nThe value can be in any format supported as `dateFormat`, in ISO 8601 date string format (`yyyy-mm-dd`) or as a JavaScript `Date` object.",
|
|
247
|
+
"docsTags": [],
|
|
248
|
+
"default": "\"\"",
|
|
249
|
+
"values": [
|
|
250
|
+
{
|
|
251
|
+
"type": "Date"
|
|
252
|
+
},
|
|
253
|
+
{
|
|
254
|
+
"type": "string"
|
|
255
|
+
}
|
|
256
|
+
],
|
|
257
|
+
"optional": false,
|
|
258
|
+
"required": false,
|
|
259
|
+
"getter": false,
|
|
260
|
+
"setter": false
|
|
261
|
+
},
|
|
262
|
+
{
|
|
263
|
+
"name": "showClearButton",
|
|
264
|
+
"type": "boolean | undefined",
|
|
265
|
+
"complexType": {
|
|
266
|
+
"original": "boolean",
|
|
267
|
+
"resolved": "boolean | undefined",
|
|
268
|
+
"references": {}
|
|
269
|
+
},
|
|
270
|
+
"mutable": false,
|
|
271
|
+
"attr": "show-clear-button",
|
|
272
|
+
"reflectToAttr": false,
|
|
273
|
+
"docs": "If `true`, the `Clear` button on the calendar will be visible.",
|
|
274
|
+
"docsTags": [],
|
|
275
|
+
"default": "true",
|
|
276
|
+
"values": [
|
|
277
|
+
{
|
|
278
|
+
"type": "boolean"
|
|
279
|
+
},
|
|
280
|
+
{
|
|
281
|
+
"type": "undefined"
|
|
282
|
+
}
|
|
283
|
+
],
|
|
284
|
+
"optional": true,
|
|
285
|
+
"required": false,
|
|
286
|
+
"getter": false,
|
|
287
|
+
"setter": false
|
|
288
|
+
},
|
|
289
|
+
{
|
|
290
|
+
"name": "showDaysOutsideMonth",
|
|
291
|
+
"type": "boolean | undefined",
|
|
292
|
+
"complexType": {
|
|
293
|
+
"original": "boolean",
|
|
294
|
+
"resolved": "boolean | undefined",
|
|
295
|
+
"references": {}
|
|
296
|
+
},
|
|
297
|
+
"mutable": false,
|
|
298
|
+
"attr": "show-days-outside-month",
|
|
299
|
+
"reflectToAttr": false,
|
|
300
|
+
"docs": "If `true`, days outside the current month will be visible in the calendar.",
|
|
301
|
+
"docsTags": [],
|
|
302
|
+
"default": "true",
|
|
303
|
+
"values": [
|
|
304
|
+
{
|
|
305
|
+
"type": "boolean"
|
|
306
|
+
},
|
|
307
|
+
{
|
|
308
|
+
"type": "undefined"
|
|
309
|
+
}
|
|
310
|
+
],
|
|
311
|
+
"optional": true,
|
|
312
|
+
"required": false,
|
|
313
|
+
"getter": false,
|
|
314
|
+
"setter": false
|
|
315
|
+
},
|
|
316
|
+
{
|
|
317
|
+
"name": "showTodayButton",
|
|
318
|
+
"type": "boolean | undefined",
|
|
319
|
+
"complexType": {
|
|
320
|
+
"original": "boolean",
|
|
321
|
+
"resolved": "boolean | undefined",
|
|
322
|
+
"references": {}
|
|
323
|
+
},
|
|
324
|
+
"mutable": false,
|
|
325
|
+
"attr": "show-today-button",
|
|
326
|
+
"reflectToAttr": false,
|
|
327
|
+
"docs": "If `true`, the `Go to today` button on the calendar will be visible.",
|
|
328
|
+
"docsTags": [],
|
|
329
|
+
"default": "true",
|
|
330
|
+
"values": [
|
|
331
|
+
{
|
|
332
|
+
"type": "boolean"
|
|
333
|
+
},
|
|
334
|
+
{
|
|
335
|
+
"type": "undefined"
|
|
336
|
+
}
|
|
337
|
+
],
|
|
338
|
+
"optional": true,
|
|
339
|
+
"required": false,
|
|
340
|
+
"getter": false,
|
|
341
|
+
"setter": false
|
|
342
|
+
},
|
|
343
|
+
{
|
|
344
|
+
"name": "size",
|
|
345
|
+
"type": "\"large\" | \"medium\" | \"small\"",
|
|
346
|
+
"complexType": {
|
|
347
|
+
"original": "IcSizes",
|
|
348
|
+
"resolved": "\"large\" | \"medium\" | \"small\"",
|
|
349
|
+
"references": {
|
|
350
|
+
"IcSizes": {
|
|
351
|
+
"location": "import",
|
|
352
|
+
"path": "../../utils/types",
|
|
353
|
+
"id": "src/utils/types.ts::IcSizes"
|
|
354
|
+
}
|
|
355
|
+
}
|
|
356
|
+
},
|
|
357
|
+
"mutable": false,
|
|
358
|
+
"attr": "size",
|
|
359
|
+
"reflectToAttr": false,
|
|
360
|
+
"docs": "The size of the calendar to be displayed.",
|
|
361
|
+
"docsTags": [],
|
|
362
|
+
"default": "\"medium\"",
|
|
363
|
+
"values": [
|
|
364
|
+
{
|
|
365
|
+
"value": "large",
|
|
366
|
+
"type": "string"
|
|
367
|
+
},
|
|
368
|
+
{
|
|
369
|
+
"value": "medium",
|
|
370
|
+
"type": "string"
|
|
371
|
+
},
|
|
372
|
+
{
|
|
373
|
+
"value": "small",
|
|
374
|
+
"type": "string"
|
|
375
|
+
}
|
|
376
|
+
],
|
|
377
|
+
"optional": false,
|
|
378
|
+
"required": false,
|
|
379
|
+
"getter": false,
|
|
380
|
+
"setter": false
|
|
381
|
+
},
|
|
382
|
+
{
|
|
383
|
+
"name": "startOfWeek",
|
|
384
|
+
"type": "IcWeekDays.Friday | IcWeekDays.Monday | IcWeekDays.Saturday | IcWeekDays.Sunday | IcWeekDays.Thursday | IcWeekDays.Tuesday | IcWeekDays.Wednesday",
|
|
385
|
+
"complexType": {
|
|
386
|
+
"original": "IcWeekDays",
|
|
387
|
+
"resolved": "IcWeekDays.Friday | IcWeekDays.Monday | IcWeekDays.Saturday | IcWeekDays.Sunday | IcWeekDays.Thursday | IcWeekDays.Tuesday | IcWeekDays.Wednesday",
|
|
388
|
+
"references": {
|
|
389
|
+
"IcWeekDays": {
|
|
390
|
+
"location": "import",
|
|
391
|
+
"path": "../../utils/types",
|
|
392
|
+
"id": "src/utils/types.ts::IcWeekDays"
|
|
393
|
+
}
|
|
394
|
+
}
|
|
395
|
+
},
|
|
396
|
+
"mutable": false,
|
|
397
|
+
"attr": "start-of-week",
|
|
398
|
+
"reflectToAttr": false,
|
|
399
|
+
"docs": "The first day of the week. `0` for Sunday, `1` for Monday, etc.\nDefault is Monday.",
|
|
400
|
+
"docsTags": [],
|
|
401
|
+
"default": "IcWeekDays.Monday",
|
|
402
|
+
"values": [
|
|
403
|
+
{
|
|
404
|
+
"type": "IcWeekDays.Friday"
|
|
405
|
+
},
|
|
406
|
+
{
|
|
407
|
+
"type": "IcWeekDays.Monday"
|
|
408
|
+
},
|
|
409
|
+
{
|
|
410
|
+
"type": "IcWeekDays.Saturday"
|
|
411
|
+
},
|
|
412
|
+
{
|
|
413
|
+
"type": "IcWeekDays.Sunday"
|
|
414
|
+
},
|
|
415
|
+
{
|
|
416
|
+
"type": "IcWeekDays.Thursday"
|
|
417
|
+
},
|
|
418
|
+
{
|
|
419
|
+
"type": "IcWeekDays.Tuesday"
|
|
420
|
+
},
|
|
421
|
+
{
|
|
422
|
+
"type": "IcWeekDays.Wednesday"
|
|
423
|
+
}
|
|
424
|
+
],
|
|
425
|
+
"optional": false,
|
|
426
|
+
"required": false,
|
|
427
|
+
"getter": false,
|
|
428
|
+
"setter": false
|
|
429
|
+
},
|
|
430
|
+
{
|
|
431
|
+
"name": "theme",
|
|
432
|
+
"type": "\"dark\" | \"inherit\" | \"light\" | undefined",
|
|
433
|
+
"complexType": {
|
|
434
|
+
"original": "IcThemeMode",
|
|
435
|
+
"resolved": "\"dark\" | \"inherit\" | \"light\" | undefined",
|
|
436
|
+
"references": {
|
|
437
|
+
"IcThemeMode": {
|
|
438
|
+
"location": "import",
|
|
439
|
+
"path": "../../utils/types",
|
|
440
|
+
"id": "src/utils/types.ts::IcThemeMode"
|
|
441
|
+
}
|
|
442
|
+
}
|
|
443
|
+
},
|
|
444
|
+
"mutable": false,
|
|
445
|
+
"attr": "theme",
|
|
446
|
+
"reflectToAttr": false,
|
|
447
|
+
"docs": "Sets the calendar to the dark or light theme colors. \"inherit\" will set the color based on the system settings or ic-theme component.",
|
|
448
|
+
"docsTags": [],
|
|
449
|
+
"default": "\"inherit\"",
|
|
450
|
+
"values": [
|
|
451
|
+
{
|
|
452
|
+
"value": "dark",
|
|
453
|
+
"type": "string"
|
|
454
|
+
},
|
|
455
|
+
{
|
|
456
|
+
"value": "inherit",
|
|
457
|
+
"type": "string"
|
|
458
|
+
},
|
|
459
|
+
{
|
|
460
|
+
"value": "light",
|
|
461
|
+
"type": "string"
|
|
462
|
+
},
|
|
463
|
+
{
|
|
464
|
+
"type": "undefined"
|
|
465
|
+
}
|
|
466
|
+
],
|
|
467
|
+
"optional": true,
|
|
468
|
+
"required": false,
|
|
469
|
+
"getter": false,
|
|
470
|
+
"setter": false
|
|
471
|
+
},
|
|
472
|
+
{
|
|
473
|
+
"name": "value",
|
|
474
|
+
"type": "Date | null | string | undefined",
|
|
475
|
+
"complexType": {
|
|
476
|
+
"original": "IcDateValueFormat",
|
|
477
|
+
"resolved": "Date | null | string | undefined",
|
|
478
|
+
"references": {
|
|
479
|
+
"IcDateValueFormat": {
|
|
480
|
+
"location": "import",
|
|
481
|
+
"path": "../../utils/types",
|
|
482
|
+
"id": "src/utils/types.ts::IcDateValueFormat"
|
|
483
|
+
}
|
|
484
|
+
}
|
|
485
|
+
},
|
|
486
|
+
"mutable": true,
|
|
487
|
+
"attr": "value",
|
|
488
|
+
"reflectToAttr": true,
|
|
489
|
+
"docs": "The value of the calendar and the date visible when the calendar opens.\nThe value can be in any format supported as `dateFormat`, in ISO 8601 date string format (`yyyy-mm-dd`) or as a JavaScript `Date` object.",
|
|
490
|
+
"docsTags": [],
|
|
491
|
+
"default": "\"\"",
|
|
492
|
+
"values": [
|
|
493
|
+
{
|
|
494
|
+
"type": "Date"
|
|
495
|
+
},
|
|
496
|
+
{
|
|
497
|
+
"type": "null"
|
|
498
|
+
},
|
|
499
|
+
{
|
|
500
|
+
"type": "string"
|
|
501
|
+
},
|
|
502
|
+
{
|
|
503
|
+
"type": "undefined"
|
|
504
|
+
}
|
|
505
|
+
],
|
|
506
|
+
"optional": true,
|
|
507
|
+
"required": false,
|
|
508
|
+
"getter": false,
|
|
509
|
+
"setter": false
|
|
510
|
+
}
|
|
511
|
+
],
|
|
512
|
+
"methods": [],
|
|
513
|
+
"events": [
|
|
514
|
+
{
|
|
515
|
+
"event": "icCalendarClearButtonClick",
|
|
516
|
+
"detail": "void",
|
|
517
|
+
"bubbles": true,
|
|
518
|
+
"complexType": {
|
|
519
|
+
"original": "void",
|
|
520
|
+
"resolved": "void",
|
|
521
|
+
"references": {}
|
|
522
|
+
},
|
|
523
|
+
"cancelable": true,
|
|
524
|
+
"composed": true,
|
|
525
|
+
"docs": "Emitted when the clear button has been clicked.",
|
|
526
|
+
"docsTags": []
|
|
527
|
+
},
|
|
528
|
+
{
|
|
529
|
+
"event": "icCalendarMonthSelect",
|
|
530
|
+
"detail": "void",
|
|
531
|
+
"bubbles": true,
|
|
532
|
+
"complexType": {
|
|
533
|
+
"original": "void",
|
|
534
|
+
"resolved": "void",
|
|
535
|
+
"references": {}
|
|
536
|
+
},
|
|
537
|
+
"cancelable": true,
|
|
538
|
+
"composed": true,
|
|
539
|
+
"docs": "Emitted when a month is selected.",
|
|
540
|
+
"docsTags": []
|
|
541
|
+
},
|
|
542
|
+
{
|
|
543
|
+
"event": "icCalendarYearSelect",
|
|
544
|
+
"detail": "void",
|
|
545
|
+
"bubbles": true,
|
|
546
|
+
"complexType": {
|
|
547
|
+
"original": "void",
|
|
548
|
+
"resolved": "void",
|
|
549
|
+
"references": {}
|
|
550
|
+
},
|
|
551
|
+
"cancelable": true,
|
|
552
|
+
"composed": true,
|
|
553
|
+
"docs": "Emitted when a year is selected.",
|
|
554
|
+
"docsTags": []
|
|
555
|
+
},
|
|
556
|
+
{
|
|
557
|
+
"event": "icChange",
|
|
558
|
+
"detail": "{ value: Date | null; dateObject: { day: string | null; month: string | null; year: string | null; }; utcValue: Date | null; }",
|
|
559
|
+
"bubbles": true,
|
|
560
|
+
"complexType": {
|
|
561
|
+
"original": "{\n value: Date | null;\n dateObject: {\n day: string | null;\n month: string | null;\n year: string | null;\n };\n utcValue: Date | null;\n }",
|
|
562
|
+
"resolved": "{ value: Date | null; dateObject: { day: string | null; month: string | null; year: string | null; }; utcValue: Date | null; }",
|
|
563
|
+
"references": {
|
|
564
|
+
"Date": {
|
|
565
|
+
"location": "global",
|
|
566
|
+
"id": "global::Date"
|
|
567
|
+
}
|
|
568
|
+
}
|
|
569
|
+
},
|
|
570
|
+
"cancelable": true,
|
|
571
|
+
"composed": true,
|
|
572
|
+
"docs": "Emitted when the value has changed.",
|
|
573
|
+
"docsTags": []
|
|
574
|
+
}
|
|
575
|
+
],
|
|
576
|
+
"listeners": [],
|
|
577
|
+
"styles": [
|
|
578
|
+
{
|
|
579
|
+
"name": "--ic-z-index-calendar",
|
|
580
|
+
"annotation": "prop",
|
|
581
|
+
"docs": "z-index of calendar."
|
|
582
|
+
}
|
|
583
|
+
],
|
|
584
|
+
"slots": [],
|
|
585
|
+
"parts": [],
|
|
586
|
+
"dependents": [
|
|
587
|
+
"ic-date-picker"
|
|
588
|
+
],
|
|
589
|
+
"dependencies": [
|
|
590
|
+
"ic-button",
|
|
591
|
+
"ic-typography"
|
|
592
|
+
],
|
|
593
|
+
"dependencyGraph": {
|
|
594
|
+
"ic-calendar": [
|
|
595
|
+
"ic-button",
|
|
596
|
+
"ic-typography"
|
|
597
|
+
],
|
|
598
|
+
"ic-button": [
|
|
599
|
+
"ic-typography",
|
|
600
|
+
"ic-loading-indicator",
|
|
601
|
+
"ic-tooltip"
|
|
602
|
+
],
|
|
603
|
+
"ic-loading-indicator": [
|
|
604
|
+
"ic-typography"
|
|
605
|
+
],
|
|
606
|
+
"ic-tooltip": [
|
|
607
|
+
"ic-typography"
|
|
608
|
+
],
|
|
609
|
+
"ic-date-picker": [
|
|
610
|
+
"ic-calendar"
|
|
611
|
+
]
|
|
612
|
+
}
|
|
613
|
+
},
|
|
8
614
|
{
|
|
9
615
|
"filePath": "src/components/ic-card-horizontal/ic-card-horizontal.tsx",
|
|
10
616
|
"encapsulation": "shadow",
|
|
@@ -22,12 +628,28 @@
|
|
|
22
628
|
},
|
|
23
629
|
{
|
|
24
630
|
"name": "slot",
|
|
25
|
-
"text": "
|
|
631
|
+
"text": "subheading - Content will be placed below the card heading. Only for `density=\"spacious\"`."
|
|
632
|
+
},
|
|
633
|
+
{
|
|
634
|
+
"name": "slot",
|
|
635
|
+
"text": "adornment - Content will be placed below the card subheading. Only for `density=\"spacious\"`."
|
|
636
|
+
},
|
|
637
|
+
{
|
|
638
|
+
"name": "slot",
|
|
639
|
+
"text": "image-left - Content will be placed to the left of all other content."
|
|
640
|
+
},
|
|
641
|
+
{
|
|
642
|
+
"name": "slot",
|
|
643
|
+
"text": "image-right - Content will be placed to the right of all other content."
|
|
26
644
|
},
|
|
27
645
|
{
|
|
28
646
|
"name": "slot",
|
|
29
647
|
"text": "icon - Content will be placed to the left of the horizontal card heading."
|
|
30
648
|
},
|
|
649
|
+
{
|
|
650
|
+
"name": "slot",
|
|
651
|
+
"text": "interaction-button - Content will be placed in the top right corner of the heading section."
|
|
652
|
+
},
|
|
31
653
|
{
|
|
32
654
|
"name": "slot",
|
|
33
655
|
"text": "badge - Badge component overlaying the top right of the horizontal card."
|
|
@@ -59,6 +681,41 @@
|
|
|
59
681
|
"getter": false,
|
|
60
682
|
"setter": false
|
|
61
683
|
},
|
|
684
|
+
{
|
|
685
|
+
"name": "density",
|
|
686
|
+
"type": "\"default\" | \"spacious\"",
|
|
687
|
+
"complexType": {
|
|
688
|
+
"original": "IcCardDensity",
|
|
689
|
+
"resolved": "\"default\" | \"spacious\"",
|
|
690
|
+
"references": {
|
|
691
|
+
"IcCardDensity": {
|
|
692
|
+
"location": "import",
|
|
693
|
+
"path": "../../utils/types",
|
|
694
|
+
"id": "src/utils/types.ts::IcCardDensity"
|
|
695
|
+
}
|
|
696
|
+
}
|
|
697
|
+
},
|
|
698
|
+
"mutable": false,
|
|
699
|
+
"attr": "density",
|
|
700
|
+
"reflectToAttr": false,
|
|
701
|
+
"docs": "The padding of the horizontal card.",
|
|
702
|
+
"docsTags": [],
|
|
703
|
+
"default": "\"default\"",
|
|
704
|
+
"values": [
|
|
705
|
+
{
|
|
706
|
+
"value": "default",
|
|
707
|
+
"type": "string"
|
|
708
|
+
},
|
|
709
|
+
{
|
|
710
|
+
"value": "spacious",
|
|
711
|
+
"type": "string"
|
|
712
|
+
}
|
|
713
|
+
],
|
|
714
|
+
"optional": false,
|
|
715
|
+
"required": false,
|
|
716
|
+
"getter": false,
|
|
717
|
+
"setter": false
|
|
718
|
+
},
|
|
62
719
|
{
|
|
63
720
|
"name": "disabled",
|
|
64
721
|
"type": "boolean",
|
|
@@ -280,15 +937,15 @@
|
|
|
280
937
|
},
|
|
281
938
|
{
|
|
282
939
|
"name": "size",
|
|
283
|
-
"type": "\"
|
|
940
|
+
"type": "\"large\" | \"medium\" | \"small\"",
|
|
284
941
|
"complexType": {
|
|
285
|
-
"original": "
|
|
286
|
-
"resolved": "\"
|
|
942
|
+
"original": "IcSizes",
|
|
943
|
+
"resolved": "\"large\" | \"medium\" | \"small\"",
|
|
287
944
|
"references": {
|
|
288
|
-
"
|
|
945
|
+
"IcSizes": {
|
|
289
946
|
"location": "import",
|
|
290
|
-
"path": "
|
|
291
|
-
"id": "src/
|
|
947
|
+
"path": "../../utils/types",
|
|
948
|
+
"id": "src/utils/types.ts::IcSizes"
|
|
292
949
|
}
|
|
293
950
|
}
|
|
294
951
|
},
|
|
@@ -299,10 +956,6 @@
|
|
|
299
956
|
"docsTags": [],
|
|
300
957
|
"default": "\"medium\"",
|
|
301
958
|
"values": [
|
|
302
|
-
{
|
|
303
|
-
"value": "extra-large",
|
|
304
|
-
"type": "string"
|
|
305
|
-
},
|
|
306
959
|
{
|
|
307
960
|
"value": "large",
|
|
308
961
|
"type": "string"
|
|
@@ -321,6 +974,32 @@
|
|
|
321
974
|
"getter": false,
|
|
322
975
|
"setter": false
|
|
323
976
|
},
|
|
977
|
+
{
|
|
978
|
+
"name": "subheading",
|
|
979
|
+
"type": "string | undefined",
|
|
980
|
+
"complexType": {
|
|
981
|
+
"original": "string",
|
|
982
|
+
"resolved": "string | undefined",
|
|
983
|
+
"references": {}
|
|
984
|
+
},
|
|
985
|
+
"mutable": false,
|
|
986
|
+
"attr": "subheading",
|
|
987
|
+
"reflectToAttr": false,
|
|
988
|
+
"docs": "The subheading for the card.",
|
|
989
|
+
"docsTags": [],
|
|
990
|
+
"values": [
|
|
991
|
+
{
|
|
992
|
+
"type": "string"
|
|
993
|
+
},
|
|
994
|
+
{
|
|
995
|
+
"type": "undefined"
|
|
996
|
+
}
|
|
997
|
+
],
|
|
998
|
+
"optional": true,
|
|
999
|
+
"required": false,
|
|
1000
|
+
"getter": false,
|
|
1001
|
+
"setter": false
|
|
1002
|
+
},
|
|
324
1003
|
{
|
|
325
1004
|
"name": "target",
|
|
326
1005
|
"type": "string | undefined",
|
|
@@ -356,8 +1035,8 @@
|
|
|
356
1035
|
"references": {
|
|
357
1036
|
"IcThemeMode": {
|
|
358
1037
|
"location": "import",
|
|
359
|
-
"path": "
|
|
360
|
-
"id": "
|
|
1038
|
+
"path": "../../utils/types",
|
|
1039
|
+
"id": "src/utils/types.ts::IcThemeMode"
|
|
361
1040
|
}
|
|
362
1041
|
}
|
|
363
1042
|
},
|
|
@@ -436,6 +1115,10 @@
|
|
|
436
1115
|
}
|
|
437
1116
|
],
|
|
438
1117
|
"slots": [
|
|
1118
|
+
{
|
|
1119
|
+
"name": "adornment",
|
|
1120
|
+
"docs": "Content will be placed below the card subheading. Only for `density=\"spacious\"`."
|
|
1121
|
+
},
|
|
439
1122
|
{
|
|
440
1123
|
"name": "badge",
|
|
441
1124
|
"docs": "Badge component overlaying the top right of the horizontal card."
|
|
@@ -449,12 +1132,24 @@
|
|
|
449
1132
|
"docs": "Content will be placed to the left of the horizontal card heading."
|
|
450
1133
|
},
|
|
451
1134
|
{
|
|
452
|
-
"name": "image",
|
|
1135
|
+
"name": "image-left",
|
|
453
1136
|
"docs": "Content will be placed to the left of all other content."
|
|
454
1137
|
},
|
|
1138
|
+
{
|
|
1139
|
+
"name": "image-right",
|
|
1140
|
+
"docs": "Content will be placed to the right of all other content."
|
|
1141
|
+
},
|
|
1142
|
+
{
|
|
1143
|
+
"name": "interaction-button",
|
|
1144
|
+
"docs": "Content will be placed in the top right corner of the heading section."
|
|
1145
|
+
},
|
|
455
1146
|
{
|
|
456
1147
|
"name": "message",
|
|
457
1148
|
"docs": "Content will be placed in the main body of the horizontal card."
|
|
1149
|
+
},
|
|
1150
|
+
{
|
|
1151
|
+
"name": "subheading",
|
|
1152
|
+
"docs": "Content will be placed below the card heading. Only for `density=\"spacious\"`."
|
|
458
1153
|
}
|
|
459
1154
|
],
|
|
460
1155
|
"parts": [],
|
|
@@ -1454,11 +2149,11 @@
|
|
|
1454
2149
|
},
|
|
1455
2150
|
{
|
|
1456
2151
|
"event": "icSelectedRowChange",
|
|
1457
|
-
"detail": "{ row: IcDataTableDataType | null; selectedRows: IcDataTableDataType[]; }",
|
|
2152
|
+
"detail": "{ row: IcDataTableDataType | null; selectedRows: IcDataTableDataType[]; icRowId: string | null; selectedIcRowIds: string[]; }",
|
|
1458
2153
|
"bubbles": true,
|
|
1459
2154
|
"complexType": {
|
|
1460
|
-
"original": "{\n row: IcDataTableDataType | null;\n selectedRows: IcDataTableDataType[];\n }",
|
|
1461
|
-
"resolved": "{ row: IcDataTableDataType | null; selectedRows: IcDataTableDataType[]; }",
|
|
2155
|
+
"original": "{\n row: IcDataTableDataType | null;\n selectedRows: IcDataTableDataType[];\n icRowId: string | null;\n selectedIcRowIds: string[];\n }",
|
|
2156
|
+
"resolved": "{ row: IcDataTableDataType | null; selectedRows: IcDataTableDataType[]; icRowId: string | null; selectedIcRowIds: string[]; }",
|
|
1462
2157
|
"references": {
|
|
1463
2158
|
"IcDataTableDataType": {
|
|
1464
2159
|
"location": "import",
|
|
@@ -2581,12 +3276,13 @@
|
|
|
2581
3276
|
"name": "value",
|
|
2582
3277
|
"type": "Date | null | string | undefined",
|
|
2583
3278
|
"complexType": {
|
|
2584
|
-
"original": "
|
|
3279
|
+
"original": "IcDateValueFormat",
|
|
2585
3280
|
"resolved": "Date | null | string | undefined",
|
|
2586
3281
|
"references": {
|
|
2587
|
-
"
|
|
2588
|
-
"location": "
|
|
2589
|
-
"
|
|
3282
|
+
"IcDateValueFormat": {
|
|
3283
|
+
"location": "import",
|
|
3284
|
+
"path": "../../utils/types",
|
|
3285
|
+
"id": "src/utils/types.ts::IcDateValueFormat"
|
|
2590
3286
|
}
|
|
2591
3287
|
}
|
|
2592
3288
|
},
|
|
@@ -3685,12 +4381,13 @@
|
|
|
3685
4381
|
"name": "value",
|
|
3686
4382
|
"type": "Date | null | string | undefined",
|
|
3687
4383
|
"complexType": {
|
|
3688
|
-
"original": "
|
|
4384
|
+
"original": "IcDateValueFormat",
|
|
3689
4385
|
"resolved": "Date | null | string | undefined",
|
|
3690
4386
|
"references": {
|
|
3691
|
-
"
|
|
3692
|
-
"location": "
|
|
3693
|
-
"
|
|
4387
|
+
"IcDateValueFormat": {
|
|
4388
|
+
"location": "import",
|
|
4389
|
+
"path": "../../utils/types",
|
|
4390
|
+
"id": "src/utils/types.ts::IcDateValueFormat"
|
|
3694
4391
|
}
|
|
3695
4392
|
}
|
|
3696
4393
|
},
|
|
@@ -3724,11 +4421,11 @@
|
|
|
3724
4421
|
"events": [
|
|
3725
4422
|
{
|
|
3726
4423
|
"event": "icChange",
|
|
3727
|
-
"detail": "{ value: Date; }",
|
|
4424
|
+
"detail": "{ value: Date | null; dateObject?: { day: string | null; month: string | null; year: string | null; } | undefined; utcValue: Date | null; }",
|
|
3728
4425
|
"bubbles": true,
|
|
3729
4426
|
"complexType": {
|
|
3730
|
-
"original": "{
|
|
3731
|
-
"resolved": "{ value: Date; }",
|
|
4427
|
+
"original": "{\n value: Date | null;\n dateObject?: {\n day: string | null;\n month: string | null;\n year: string | null;\n };\n utcValue: Date | null;\n }",
|
|
4428
|
+
"resolved": "{ value: Date | null; dateObject?: { day: string | null; month: string | null; year: string | null; } | undefined; utcValue: Date | null; }",
|
|
3732
4429
|
"references": {
|
|
3733
4430
|
"Date": {
|
|
3734
4431
|
"location": "global",
|
|
@@ -3753,6 +4450,16 @@
|
|
|
3753
4450
|
"target": "document",
|
|
3754
4451
|
"capture": false,
|
|
3755
4452
|
"passive": false
|
|
4453
|
+
},
|
|
4454
|
+
{
|
|
4455
|
+
"event": "icCalendarDaySelect",
|
|
4456
|
+
"capture": false,
|
|
4457
|
+
"passive": false
|
|
4458
|
+
},
|
|
4459
|
+
{
|
|
4460
|
+
"event": "icChange",
|
|
4461
|
+
"capture": false,
|
|
4462
|
+
"passive": false
|
|
3756
4463
|
}
|
|
3757
4464
|
],
|
|
3758
4465
|
"styles": [
|
|
@@ -3764,7 +4471,7 @@
|
|
|
3764
4471
|
{
|
|
3765
4472
|
"name": "--input-width",
|
|
3766
4473
|
"annotation": "prop",
|
|
3767
|
-
"docs": "Width of the input field"
|
|
4474
|
+
"docs": "Width of the date input field"
|
|
3768
4475
|
}
|
|
3769
4476
|
],
|
|
3770
4477
|
"slots": [
|
|
@@ -3776,14 +4483,22 @@
|
|
|
3776
4483
|
"parts": [],
|
|
3777
4484
|
"dependents": [],
|
|
3778
4485
|
"dependencies": [
|
|
3779
|
-
"ic-button",
|
|
3780
4486
|
"ic-date-input",
|
|
3781
|
-
"ic-
|
|
4487
|
+
"ic-calendar"
|
|
3782
4488
|
],
|
|
3783
4489
|
"dependencyGraph": {
|
|
3784
4490
|
"ic-date-picker": [
|
|
3785
|
-
"ic-button",
|
|
3786
4491
|
"ic-date-input",
|
|
4492
|
+
"ic-calendar"
|
|
4493
|
+
],
|
|
4494
|
+
"ic-date-input": [
|
|
4495
|
+
"ic-input-container",
|
|
4496
|
+
"ic-input-label",
|
|
4497
|
+
"ic-input-component-container",
|
|
4498
|
+
"ic-button",
|
|
4499
|
+
"ic-input-validation"
|
|
4500
|
+
],
|
|
4501
|
+
"ic-input-label": [
|
|
3787
4502
|
"ic-typography"
|
|
3788
4503
|
],
|
|
3789
4504
|
"ic-button": [
|
|
@@ -3797,17 +4512,11 @@
|
|
|
3797
4512
|
"ic-tooltip": [
|
|
3798
4513
|
"ic-typography"
|
|
3799
4514
|
],
|
|
3800
|
-
"ic-
|
|
3801
|
-
"ic-input-container",
|
|
3802
|
-
"ic-input-label",
|
|
3803
|
-
"ic-input-component-container",
|
|
3804
|
-
"ic-button",
|
|
3805
|
-
"ic-input-validation"
|
|
3806
|
-
],
|
|
3807
|
-
"ic-input-label": [
|
|
4515
|
+
"ic-input-validation": [
|
|
3808
4516
|
"ic-typography"
|
|
3809
4517
|
],
|
|
3810
|
-
"ic-
|
|
4518
|
+
"ic-calendar": [
|
|
4519
|
+
"ic-button",
|
|
3811
4520
|
"ic-typography"
|
|
3812
4521
|
]
|
|
3813
4522
|
}
|
|
@@ -4228,8 +4937,8 @@
|
|
|
4228
4937
|
"references": {
|
|
4229
4938
|
"IcThemeMode": {
|
|
4230
4939
|
"location": "import",
|
|
4231
|
-
"path": "
|
|
4232
|
-
"id": "
|
|
4940
|
+
"path": "../../utils/types",
|
|
4941
|
+
"id": "src/utils/types.ts::IcThemeMode"
|
|
4233
4942
|
}
|
|
4234
4943
|
}
|
|
4235
4944
|
},
|
|
@@ -5356,12 +6065,13 @@
|
|
|
5356
6065
|
"name": "value",
|
|
5357
6066
|
"type": "Date | null | string | undefined",
|
|
5358
6067
|
"complexType": {
|
|
5359
|
-
"original": "
|
|
6068
|
+
"original": "IcDateValueFormat",
|
|
5360
6069
|
"resolved": "Date | null | string | undefined",
|
|
5361
6070
|
"references": {
|
|
5362
|
-
"
|
|
5363
|
-
"location": "
|
|
5364
|
-
"
|
|
6071
|
+
"IcDateValueFormat": {
|
|
6072
|
+
"location": "import",
|
|
6073
|
+
"path": "../../utils/types",
|
|
6074
|
+
"id": "src/utils/types.ts::IcDateValueFormat"
|
|
5365
6075
|
}
|
|
5366
6076
|
}
|
|
5367
6077
|
},
|
|
@@ -6248,15 +6958,35 @@
|
|
|
6248
6958
|
}
|
|
6249
6959
|
],
|
|
6250
6960
|
"typeLibrary": {
|
|
6251
|
-
"src/
|
|
6252
|
-
"declaration": "export type
|
|
6961
|
+
"src/utils/types.ts::IcDateFormat": {
|
|
6962
|
+
"declaration": "export type IcDateFormat = \"DD/MM/YYYY\" | \"MM/DD/YYYY\" | \"YYYY/MM/DD\";",
|
|
6963
|
+
"docstring": "",
|
|
6964
|
+
"path": "src/utils/types.ts"
|
|
6965
|
+
},
|
|
6966
|
+
"src/utils/types.ts::IcWeekDays": {
|
|
6967
|
+
"declaration": "export enum IcWeekDays {\n Sunday = 0,\n Monday = 1,\n Tuesday = 2,\n Wednesday = 3,\n Thursday = 4,\n Friday = 5,\n Saturday = 6,\n}",
|
|
6968
|
+
"docstring": "",
|
|
6969
|
+
"path": "src/utils/types.ts"
|
|
6970
|
+
},
|
|
6971
|
+
"src/utils/types.ts::IcSizes": {
|
|
6972
|
+
"declaration": "export type IcSizes = \"medium\" | \"large\" | \"small\";",
|
|
6973
|
+
"docstring": "",
|
|
6974
|
+
"path": "src/utils/types.ts"
|
|
6975
|
+
},
|
|
6976
|
+
"src/utils/types.ts::IcThemeMode": {
|
|
6977
|
+
"declaration": "export type IcThemeMode = \"dark\" | \"light\" | \"inherit\";",
|
|
6978
|
+
"docstring": "",
|
|
6979
|
+
"path": "src/utils/types.ts"
|
|
6980
|
+
},
|
|
6981
|
+
"src/utils/types.ts::IcDateValueFormat": {
|
|
6982
|
+
"declaration": "export type IcDateValueFormat = string | Date | null | undefined;",
|
|
6253
6983
|
"docstring": "",
|
|
6254
|
-
"path": "src/
|
|
6984
|
+
"path": "src/utils/types.ts"
|
|
6255
6985
|
},
|
|
6256
|
-
"
|
|
6257
|
-
"declaration": "
|
|
6986
|
+
"src/utils/types.ts::IcCardDensity": {
|
|
6987
|
+
"declaration": "export type IcCardDensity = \"default\" | \"spacious\";",
|
|
6258
6988
|
"docstring": "",
|
|
6259
|
-
"path": "
|
|
6989
|
+
"path": "src/utils/types.ts"
|
|
6260
6990
|
},
|
|
6261
6991
|
"src/components/ic-data-table/ic-data-table.types.tsx::IcDataTableColumnObject": {
|
|
6262
6992
|
"declaration": "{\n key: string;\n title: string;\n dataType: IcDataTableColumnDataTypes;\n columnAlignment?: IcDataTableAlignmentOptions;\n columnWidth?: string | IcDataTableColumnWidthTypes;\n textWrap?: boolean;\n cellAlignment?: string;\n emphasis?: string;\n colspan?: number;\n icon?: {\n icon: string;\n onAllCells?: boolean;\n hideOnHeader?: boolean;\n };\n excludeColumnFromSort?: boolean;\n hidden?: boolean;\n disableAutoSort?: boolean;\n}",
|
|
@@ -6288,11 +7018,6 @@
|
|
|
6288
7018
|
"docstring": "",
|
|
6289
7019
|
"path": "src/components/ic-data-table/ic-data-table.types.tsx"
|
|
6290
7020
|
},
|
|
6291
|
-
"src/utils/types.ts::IcThemeMode": {
|
|
6292
|
-
"declaration": "export type IcThemeMode = \"dark\" | \"light\" | \"inherit\";",
|
|
6293
|
-
"docstring": "",
|
|
6294
|
-
"path": "src/utils/types.ts"
|
|
6295
|
-
},
|
|
6296
7021
|
"src/components/ic-data-table/ic-data-table.types.tsx::IcDataTableTruncationTypes": {
|
|
6297
7022
|
"declaration": "export type IcDataTableTruncationTypes = \"tooltip\" | \"show-hide\" | undefined;",
|
|
6298
7023
|
"docstring": "",
|
|
@@ -6333,21 +7058,6 @@
|
|
|
6333
7058
|
"docstring": "",
|
|
6334
7059
|
"path": "src/components/ic-data-table/ic-data-table.types.tsx"
|
|
6335
7060
|
},
|
|
6336
|
-
"src/utils/types.ts::IcDateFormat": {
|
|
6337
|
-
"declaration": "export type IcDateFormat = \"DD/MM/YYYY\" | \"MM/DD/YYYY\" | \"YYYY/MM/DD\";",
|
|
6338
|
-
"docstring": "",
|
|
6339
|
-
"path": "src/utils/types.ts"
|
|
6340
|
-
},
|
|
6341
|
-
"src/utils/types.ts::IcWeekDays": {
|
|
6342
|
-
"declaration": "export enum IcWeekDays {\n Sunday = 0,\n Monday = 1,\n Tuesday = 2,\n Wednesday = 3,\n Thursday = 4,\n Friday = 5,\n Saturday = 6,\n}",
|
|
6343
|
-
"docstring": "",
|
|
6344
|
-
"path": "src/utils/types.ts"
|
|
6345
|
-
},
|
|
6346
|
-
"src/utils/types.ts::IcSizes": {
|
|
6347
|
-
"declaration": "export type IcSizes = \"medium\" | \"large\" | \"small\";",
|
|
6348
|
-
"docstring": "",
|
|
6349
|
-
"path": "src/utils/types.ts"
|
|
6350
|
-
},
|
|
6351
7061
|
"src/utils/types.ts::IcAriaLive": {
|
|
6352
7062
|
"declaration": "export type IcAriaLive = \"polite\" | \"assertive\" | \"off\";",
|
|
6353
7063
|
"docstring": "",
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"author": "mi6",
|
|
3
3
|
"name": "@ukic/canary-docs",
|
|
4
|
-
"version": "3.0.0-canary.
|
|
4
|
+
"version": "3.0.0-canary.24",
|
|
5
5
|
"description": "API documentation for @ukic canary components",
|
|
6
6
|
"main": "docs.json",
|
|
7
7
|
"types": "./docs.d.ts",
|
|
@@ -19,5 +19,5 @@
|
|
|
19
19
|
},
|
|
20
20
|
"license": "MIT",
|
|
21
21
|
"packageManager": "^npm@10.9.2",
|
|
22
|
-
"gitHead": "
|
|
22
|
+
"gitHead": "055d3ec189bdc7b19e08762df4a74905043b5ea3"
|
|
23
23
|
}
|