@ukic/canary-docs 2.0.0-canary.1

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 (4) hide show
  1. package/README.md +3 -0
  2. package/docs.d.ts +401 -0
  3. package/docs.json +3861 -0
  4. package/package.json +21 -0
package/docs.json ADDED
@@ -0,0 +1,3861 @@
1
+ {
2
+ "timestamp": "2024-04-09T09:35:30",
3
+ "compiler": {
4
+ "name": "@stencil/core",
5
+ "version": "4.9.0",
6
+ "typescriptVersion": "5.2.2"
7
+ },
8
+ "components": [
9
+ {
10
+ "filePath": "src/components/ic-data-table/ic-data-table.tsx",
11
+ "encapsulation": "shadow",
12
+ "tag": "ic-data-table",
13
+ "readme": "# ic-data-table\n\n\n",
14
+ "docs": "",
15
+ "docsTags": [],
16
+ "usage": {},
17
+ "props": [
18
+ {
19
+ "name": "caption",
20
+ "type": "string",
21
+ "complexType": {
22
+ "original": "string",
23
+ "resolved": "string",
24
+ "references": {}
25
+ },
26
+ "mutable": false,
27
+ "attr": "caption",
28
+ "reflectToAttr": false,
29
+ "docs": "The title for the table only visible to screen readers.",
30
+ "docsTags": [],
31
+ "values": [
32
+ {
33
+ "type": "string"
34
+ }
35
+ ],
36
+ "optional": false,
37
+ "required": true
38
+ },
39
+ {
40
+ "name": "columns",
41
+ "type": "IcDataTableColumnObject[]",
42
+ "complexType": {
43
+ "original": "IcDataTableColumnObject[]",
44
+ "resolved": "IcDataTableColumnObject[]",
45
+ "references": {
46
+ "IcDataTableColumnObject": {
47
+ "location": "import",
48
+ "path": "./ic-data-table.types",
49
+ "id": "src/components/ic-data-table/ic-data-table.types.tsx::IcDataTableColumnObject"
50
+ }
51
+ }
52
+ },
53
+ "mutable": false,
54
+ "reflectToAttr": false,
55
+ "docs": "The column headers for the table.",
56
+ "docsTags": [],
57
+ "values": [
58
+ {
59
+ "type": "IcDataTableColumnObject[]"
60
+ }
61
+ ],
62
+ "optional": false,
63
+ "required": true
64
+ },
65
+ {
66
+ "name": "data",
67
+ "type": "{ [key: string]: any; }[]",
68
+ "complexType": {
69
+ "original": "{ [key: string]: any }[]",
70
+ "resolved": "{ [key: string]: any; }[]",
71
+ "references": {}
72
+ },
73
+ "mutable": false,
74
+ "reflectToAttr": false,
75
+ "docs": "The row content for the table.",
76
+ "docsTags": [],
77
+ "values": [
78
+ {
79
+ "type": "{ [key: string]: any; }[]"
80
+ }
81
+ ],
82
+ "optional": false,
83
+ "required": false
84
+ },
85
+ {
86
+ "name": "density",
87
+ "type": "\"default\" | \"dense\" | \"spacious\"",
88
+ "complexType": {
89
+ "original": "IcDataTableDensityOptions",
90
+ "resolved": "\"default\" | \"dense\" | \"spacious\"",
91
+ "references": {
92
+ "IcDataTableDensityOptions": {
93
+ "location": "import",
94
+ "path": "./ic-data-table.types",
95
+ "id": "src/components/ic-data-table/ic-data-table.types.tsx::IcDataTableDensityOptions"
96
+ }
97
+ }
98
+ },
99
+ "mutable": false,
100
+ "attr": "density",
101
+ "reflectToAttr": false,
102
+ "docs": "Set the density of the table including font and padding.",
103
+ "docsTags": [],
104
+ "default": "\"default\"",
105
+ "values": [
106
+ {
107
+ "value": "default",
108
+ "type": "string"
109
+ },
110
+ {
111
+ "value": "dense",
112
+ "type": "string"
113
+ },
114
+ {
115
+ "value": "spacious",
116
+ "type": "string"
117
+ }
118
+ ],
119
+ "optional": true,
120
+ "required": false
121
+ },
122
+ {
123
+ "name": "embedded",
124
+ "type": "boolean",
125
+ "complexType": {
126
+ "original": "boolean",
127
+ "resolved": "boolean",
128
+ "references": {}
129
+ },
130
+ "mutable": false,
131
+ "attr": "embedded",
132
+ "reflectToAttr": false,
133
+ "docs": "Applies a border to the table container.",
134
+ "docsTags": [],
135
+ "default": "false",
136
+ "values": [
137
+ {
138
+ "type": "boolean"
139
+ }
140
+ ],
141
+ "optional": true,
142
+ "required": false
143
+ },
144
+ {
145
+ "name": "hideColumnHeaders",
146
+ "type": "boolean",
147
+ "complexType": {
148
+ "original": "boolean",
149
+ "resolved": "boolean",
150
+ "references": {}
151
+ },
152
+ "mutable": false,
153
+ "attr": "hide-column-headers",
154
+ "reflectToAttr": false,
155
+ "docs": "If `true`, column headers will not be visible.",
156
+ "docsTags": [],
157
+ "default": "false",
158
+ "values": [
159
+ {
160
+ "type": "boolean"
161
+ }
162
+ ],
163
+ "optional": true,
164
+ "required": false
165
+ },
166
+ {
167
+ "name": "paginationOptions",
168
+ "type": "{ itemsPerPage?: { label: string; value: string; }[]; type?: IcPaginationTypes; control?: IcPaginationControlTypes; itemsPerPageControl?: boolean; goToPageControl?: boolean; alignment?: IcPaginationAlignmentOptions; }",
169
+ "complexType": {
170
+ "original": "{\n itemsPerPage?: { label: string; value: string }[];\n type?: IcPaginationTypes;\n control?: IcPaginationControlTypes;\n itemsPerPageControl?: boolean;\n goToPageControl?: boolean;\n alignment?: IcPaginationAlignmentOptions;\n }",
171
+ "resolved": "{ itemsPerPage?: { label: string; value: string; }[]; type?: IcPaginationTypes; control?: IcPaginationControlTypes; itemsPerPageControl?: boolean; goToPageControl?: boolean; alignment?: IcPaginationAlignmentOptions; }",
172
+ "references": {
173
+ "IcPaginationTypes": {
174
+ "location": "import",
175
+ "path": "../ic-pagination/ic-pagination.types",
176
+ "id": "src/components/ic-pagination/ic-pagination.types.ts::IcPaginationTypes"
177
+ },
178
+ "IcPaginationControlTypes": {
179
+ "location": "import",
180
+ "path": "../ic-pagination/ic-pagination.types",
181
+ "id": "src/components/ic-pagination/ic-pagination.types.ts::IcPaginationControlTypes"
182
+ },
183
+ "IcPaginationAlignmentOptions": {
184
+ "location": "import",
185
+ "path": "../ic-pagination/ic-pagination.types",
186
+ "id": "src/components/ic-pagination/ic-pagination.types.ts::IcPaginationAlignmentOptions"
187
+ }
188
+ }
189
+ },
190
+ "mutable": false,
191
+ "reflectToAttr": false,
192
+ "docs": "Sets the props for the pagination bar.",
193
+ "docsTags": [],
194
+ "default": "{\n itemsPerPage: [\n { label: \"10\", value: \"10\" },\n { label: \"25\", value: \"25\" },\n { label: \"50\", value: \"50\" },\n ],\n type: \"page\",\n control: \"simple\",\n itemsPerPageControl: true,\n goToPageControl: true,\n alignment: \"right\",\n }",
195
+ "values": [
196
+ {
197
+ "type": "{ itemsPerPage?: { label: string; value: string; }[]; type?: IcPaginationTypes; control?: IcPaginationControlTypes; itemsPerPageControl?: boolean; goToPageControl?: boolean; alignment?: IcPaginationAlignmentOptions; }"
198
+ }
199
+ ],
200
+ "optional": true,
201
+ "required": false
202
+ },
203
+ {
204
+ "name": "showPagination",
205
+ "type": "boolean",
206
+ "complexType": {
207
+ "original": "boolean",
208
+ "resolved": "boolean",
209
+ "references": {}
210
+ },
211
+ "mutable": false,
212
+ "attr": "show-pagination",
213
+ "reflectToAttr": false,
214
+ "docs": "If `true`, adds a pagination bar to the bottom of the table.",
215
+ "docsTags": [],
216
+ "default": "false",
217
+ "values": [
218
+ {
219
+ "type": "boolean"
220
+ }
221
+ ],
222
+ "optional": true,
223
+ "required": false
224
+ },
225
+ {
226
+ "name": "sortOptions",
227
+ "type": "{ sortOrders: IcDataTableSortOrderOptions[]; defaultColumn?: string; }",
228
+ "complexType": {
229
+ "original": "{\n sortOrders: IcDataTableSortOrderOptions[];\n defaultColumn?: string;\n }",
230
+ "resolved": "{ sortOrders: IcDataTableSortOrderOptions[]; defaultColumn?: string; }",
231
+ "references": {
232
+ "IcDataTableSortOrderOptions": {
233
+ "location": "import",
234
+ "path": "./ic-data-table.types",
235
+ "id": "src/components/ic-data-table/ic-data-table.types.tsx::IcDataTableSortOrderOptions"
236
+ }
237
+ }
238
+ },
239
+ "mutable": false,
240
+ "reflectToAttr": false,
241
+ "docs": "Sets the order columns will be sorted in and allows for 'default' sorts to be added.",
242
+ "docsTags": [],
243
+ "default": "{\n sortOrders: [\"unsorted\", \"ascending\", \"descending\"],\n defaultColumn: \"\",\n }",
244
+ "values": [
245
+ {
246
+ "type": "{ sortOrders: IcDataTableSortOrderOptions[]; defaultColumn?: string; }"
247
+ }
248
+ ],
249
+ "optional": true,
250
+ "required": false
251
+ },
252
+ {
253
+ "name": "sortable",
254
+ "type": "boolean",
255
+ "complexType": {
256
+ "original": "boolean",
257
+ "resolved": "boolean",
258
+ "references": {}
259
+ },
260
+ "mutable": false,
261
+ "attr": "sortable",
262
+ "reflectToAttr": false,
263
+ "docs": "If `true`, allows table columns to be sorted using applied sort buttons.",
264
+ "docsTags": [],
265
+ "default": "false",
266
+ "values": [
267
+ {
268
+ "type": "boolean"
269
+ }
270
+ ],
271
+ "optional": true,
272
+ "required": false
273
+ },
274
+ {
275
+ "name": "stickyColumnHeaders",
276
+ "type": "boolean",
277
+ "complexType": {
278
+ "original": "boolean",
279
+ "resolved": "boolean",
280
+ "references": {}
281
+ },
282
+ "mutable": false,
283
+ "attr": "sticky-column-headers",
284
+ "reflectToAttr": false,
285
+ "docs": "If `true`, column headers will remain at the top of the table when scrolling vertically.",
286
+ "docsTags": [],
287
+ "default": "false",
288
+ "values": [
289
+ {
290
+ "type": "boolean"
291
+ }
292
+ ],
293
+ "optional": true,
294
+ "required": false
295
+ },
296
+ {
297
+ "name": "stickyRowHeaders",
298
+ "type": "boolean",
299
+ "complexType": {
300
+ "original": "boolean",
301
+ "resolved": "boolean",
302
+ "references": {}
303
+ },
304
+ "mutable": false,
305
+ "attr": "sticky-row-headers",
306
+ "reflectToAttr": false,
307
+ "docs": "If `true`, row headers will remain to the left when scrolling horizontally.",
308
+ "docsTags": [],
309
+ "default": "false",
310
+ "values": [
311
+ {
312
+ "type": "boolean"
313
+ }
314
+ ],
315
+ "optional": true,
316
+ "required": false
317
+ }
318
+ ],
319
+ "methods": [],
320
+ "events": [],
321
+ "listeners": [
322
+ {
323
+ "event": "icItemsPerPageChange",
324
+ "capture": false,
325
+ "passive": false
326
+ },
327
+ {
328
+ "event": "icPageChange",
329
+ "capture": false,
330
+ "passive": false
331
+ },
332
+ {
333
+ "event": "click",
334
+ "target": "window",
335
+ "capture": false,
336
+ "passive": false
337
+ }
338
+ ],
339
+ "styles": [],
340
+ "slots": [],
341
+ "parts": [],
342
+ "dependents": [],
343
+ "dependencies": [
344
+ "ic-typography",
345
+ "ic-link",
346
+ "ic-button",
347
+ "ic-pagination-bar"
348
+ ],
349
+ "dependencyGraph": {
350
+ "ic-data-table": [
351
+ "ic-typography",
352
+ "ic-link",
353
+ "ic-button",
354
+ "ic-pagination-bar"
355
+ ],
356
+ "ic-button": [
357
+ "ic-loading-indicator",
358
+ "ic-tooltip"
359
+ ],
360
+ "ic-loading-indicator": [
361
+ "ic-typography"
362
+ ],
363
+ "ic-tooltip": [
364
+ "ic-typography"
365
+ ],
366
+ "ic-pagination-bar": [
367
+ "ic-typography",
368
+ "ic-select",
369
+ "ic-pagination",
370
+ "ic-tooltip",
371
+ "ic-text-field",
372
+ "ic-button"
373
+ ],
374
+ "ic-select": [
375
+ "ic-input-container",
376
+ "ic-input-label",
377
+ "ic-input-component-container",
378
+ "ic-typography",
379
+ "ic-button",
380
+ "ic-menu",
381
+ "ic-input-validation"
382
+ ],
383
+ "ic-input-label": [
384
+ "ic-typography"
385
+ ],
386
+ "ic-menu": [
387
+ "ic-loading-indicator",
388
+ "ic-typography",
389
+ "ic-button"
390
+ ],
391
+ "ic-input-validation": [
392
+ "ic-typography"
393
+ ],
394
+ "ic-pagination": [
395
+ "ic-button",
396
+ "ic-pagination-item"
397
+ ],
398
+ "ic-pagination-item": [
399
+ "ic-typography"
400
+ ],
401
+ "ic-text-field": [
402
+ "ic-input-container",
403
+ "ic-input-label",
404
+ "ic-input-component-container",
405
+ "ic-input-validation",
406
+ "ic-typography"
407
+ ]
408
+ }
409
+ },
410
+ {
411
+ "filePath": "src/components/ic-date-input/ic-date-input.tsx",
412
+ "encapsulation": "shadow",
413
+ "tag": "ic-date-input",
414
+ "readme": "# ic-date-input\n\n\n",
415
+ "docs": "",
416
+ "docsTags": [],
417
+ "usage": {},
418
+ "props": [
419
+ {
420
+ "name": "dateFormat",
421
+ "type": "\"DD/MM/YYYY\" | \"MM/DD/YYYY\" | \"YYYY/MM/DD\"",
422
+ "complexType": {
423
+ "original": "IcDateFormat",
424
+ "resolved": "\"DD/MM/YYYY\" | \"MM/DD/YYYY\" | \"YYYY/MM/DD\"",
425
+ "references": {
426
+ "IcDateFormat": {
427
+ "location": "import",
428
+ "path": "../../utils/types",
429
+ "id": "src/utils/types.ts::IcDateFormat"
430
+ }
431
+ }
432
+ },
433
+ "mutable": false,
434
+ "attr": "date-format",
435
+ "reflectToAttr": false,
436
+ "docs": "The format in which the date will be displayed.",
437
+ "docsTags": [],
438
+ "default": "\"DD/MM/YYYY\"",
439
+ "values": [
440
+ {
441
+ "value": "DD/MM/YYYY",
442
+ "type": "string"
443
+ },
444
+ {
445
+ "value": "MM/DD/YYYY",
446
+ "type": "string"
447
+ },
448
+ {
449
+ "value": "YYYY/MM/DD",
450
+ "type": "string"
451
+ }
452
+ ],
453
+ "optional": true,
454
+ "required": false
455
+ },
456
+ {
457
+ "name": "disableDays",
458
+ "type": "IcWeekDays[]",
459
+ "complexType": {
460
+ "original": "IcWeekDays[]",
461
+ "resolved": "IcWeekDays[]",
462
+ "references": {
463
+ "IcWeekDays": {
464
+ "location": "import",
465
+ "path": "../../utils/types",
466
+ "id": "src/utils/types.ts::IcWeekDays"
467
+ }
468
+ }
469
+ },
470
+ "mutable": true,
471
+ "reflectToAttr": false,
472
+ "docs": "The days of the week to disable.",
473
+ "docsTags": [],
474
+ "default": "[]",
475
+ "values": [
476
+ {
477
+ "type": "IcWeekDays[]"
478
+ }
479
+ ],
480
+ "optional": true,
481
+ "required": false
482
+ },
483
+ {
484
+ "name": "disableDaysMessage",
485
+ "type": "string",
486
+ "complexType": {
487
+ "original": "string",
488
+ "resolved": "string",
489
+ "references": {}
490
+ },
491
+ "mutable": false,
492
+ "attr": "disable-days-message",
493
+ "reflectToAttr": false,
494
+ "docs": "The text to display as the validation message when `disableDays` is set and a disabled date is entered.",
495
+ "docsTags": [],
496
+ "default": "\"The date you have selected is on a day of the week that is not allowed. Please select another date.\"",
497
+ "values": [
498
+ {
499
+ "type": "string"
500
+ }
501
+ ],
502
+ "optional": true,
503
+ "required": false
504
+ },
505
+ {
506
+ "name": "disableFuture",
507
+ "type": "boolean",
508
+ "complexType": {
509
+ "original": "boolean",
510
+ "resolved": "boolean",
511
+ "references": {}
512
+ },
513
+ "mutable": false,
514
+ "attr": "disable-future",
515
+ "reflectToAttr": false,
516
+ "docs": "If `true`, dates in the future are not allowed. A validation message will appear if a date in the future is entered.",
517
+ "docsTags": [],
518
+ "default": "false",
519
+ "values": [
520
+ {
521
+ "type": "boolean"
522
+ }
523
+ ],
524
+ "optional": true,
525
+ "required": false
526
+ },
527
+ {
528
+ "name": "disableFutureMessage",
529
+ "type": "string",
530
+ "complexType": {
531
+ "original": "string",
532
+ "resolved": "string",
533
+ "references": {}
534
+ },
535
+ "mutable": false,
536
+ "attr": "disable-future-message",
537
+ "reflectToAttr": false,
538
+ "docs": "The text to display as the validation message when `disableFuture` is true and a date in the future is entered.",
539
+ "docsTags": [],
540
+ "default": "\"Dates in the future are not allowed. Please select a date in the past.\"",
541
+ "values": [
542
+ {
543
+ "type": "string"
544
+ }
545
+ ],
546
+ "optional": true,
547
+ "required": false
548
+ },
549
+ {
550
+ "name": "disablePast",
551
+ "type": "boolean",
552
+ "complexType": {
553
+ "original": "boolean",
554
+ "resolved": "boolean",
555
+ "references": {}
556
+ },
557
+ "mutable": false,
558
+ "attr": "disable-past",
559
+ "reflectToAttr": false,
560
+ "docs": "If `true`, dates in the past are not allowed. A validation message will appear if a date in the past is entered.",
561
+ "docsTags": [],
562
+ "default": "false",
563
+ "values": [
564
+ {
565
+ "type": "boolean"
566
+ }
567
+ ],
568
+ "optional": true,
569
+ "required": false
570
+ },
571
+ {
572
+ "name": "disablePastMessage",
573
+ "type": "string",
574
+ "complexType": {
575
+ "original": "string",
576
+ "resolved": "string",
577
+ "references": {}
578
+ },
579
+ "mutable": false,
580
+ "attr": "disable-past-message",
581
+ "reflectToAttr": false,
582
+ "docs": "The text to display as the validation message when `disablePast` is true and a date in the past is entered.",
583
+ "docsTags": [],
584
+ "default": "\"Dates in the past are not allowed. Please select a date in the future.\"",
585
+ "values": [
586
+ {
587
+ "type": "string"
588
+ }
589
+ ],
590
+ "optional": true,
591
+ "required": false
592
+ },
593
+ {
594
+ "name": "disabled",
595
+ "type": "boolean",
596
+ "complexType": {
597
+ "original": "boolean",
598
+ "resolved": "boolean",
599
+ "references": {}
600
+ },
601
+ "mutable": false,
602
+ "attr": "disabled",
603
+ "reflectToAttr": false,
604
+ "docs": "If `true`, the disabled state will be set.",
605
+ "docsTags": [],
606
+ "default": "false",
607
+ "values": [
608
+ {
609
+ "type": "boolean"
610
+ }
611
+ ],
612
+ "optional": true,
613
+ "required": false
614
+ },
615
+ {
616
+ "name": "helperText",
617
+ "type": "string",
618
+ "complexType": {
619
+ "original": "string",
620
+ "resolved": "string",
621
+ "references": {}
622
+ },
623
+ "mutable": true,
624
+ "attr": "helper-text",
625
+ "reflectToAttr": false,
626
+ "docs": "The helper text that will be displayed for additional field guidance. This will default to the text \"Use format\" along with the `dateFormat` value.",
627
+ "docsTags": [],
628
+ "values": [
629
+ {
630
+ "type": "string"
631
+ }
632
+ ],
633
+ "optional": true,
634
+ "required": false
635
+ },
636
+ {
637
+ "name": "inputId",
638
+ "type": "string",
639
+ "complexType": {
640
+ "original": "string",
641
+ "resolved": "string",
642
+ "references": {}
643
+ },
644
+ "mutable": false,
645
+ "attr": "input-id",
646
+ "reflectToAttr": false,
647
+ "docs": "The ID for the input.",
648
+ "docsTags": [],
649
+ "default": "`ic-date-input-${inputIds++}`",
650
+ "values": [
651
+ {
652
+ "type": "string"
653
+ }
654
+ ],
655
+ "optional": true,
656
+ "required": false
657
+ },
658
+ {
659
+ "name": "label",
660
+ "type": "string",
661
+ "complexType": {
662
+ "original": "string",
663
+ "resolved": "string",
664
+ "references": {}
665
+ },
666
+ "mutable": false,
667
+ "attr": "label",
668
+ "reflectToAttr": false,
669
+ "docs": "The label for the date input.",
670
+ "docsTags": [],
671
+ "values": [
672
+ {
673
+ "type": "string"
674
+ }
675
+ ],
676
+ "optional": false,
677
+ "required": true
678
+ },
679
+ {
680
+ "name": "max",
681
+ "type": "Date | string",
682
+ "complexType": {
683
+ "original": "string | Date",
684
+ "resolved": "Date | string",
685
+ "references": {
686
+ "Date": {
687
+ "location": "global",
688
+ "id": "global::Date"
689
+ }
690
+ }
691
+ },
692
+ "mutable": false,
693
+ "attr": "max",
694
+ "reflectToAttr": false,
695
+ "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`.",
696
+ "docsTags": [],
697
+ "default": "\"\"",
698
+ "values": [
699
+ {
700
+ "type": "Date"
701
+ },
702
+ {
703
+ "type": "string"
704
+ }
705
+ ],
706
+ "optional": true,
707
+ "required": false
708
+ },
709
+ {
710
+ "name": "min",
711
+ "type": "Date | string",
712
+ "complexType": {
713
+ "original": "string | Date",
714
+ "resolved": "Date | string",
715
+ "references": {
716
+ "Date": {
717
+ "location": "global",
718
+ "id": "global::Date"
719
+ }
720
+ }
721
+ },
722
+ "mutable": false,
723
+ "attr": "min",
724
+ "reflectToAttr": false,
725
+ "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`.",
726
+ "docsTags": [],
727
+ "default": "\"\"",
728
+ "values": [
729
+ {
730
+ "type": "Date"
731
+ },
732
+ {
733
+ "type": "string"
734
+ }
735
+ ],
736
+ "optional": true,
737
+ "required": false
738
+ },
739
+ {
740
+ "name": "name",
741
+ "type": "string",
742
+ "complexType": {
743
+ "original": "string",
744
+ "resolved": "string",
745
+ "references": {}
746
+ },
747
+ "mutable": false,
748
+ "attr": "name",
749
+ "reflectToAttr": false,
750
+ "docs": "The name of the control, which is submitted with the form data.",
751
+ "docsTags": [],
752
+ "default": "this.inputId",
753
+ "values": [
754
+ {
755
+ "type": "string"
756
+ }
757
+ ],
758
+ "optional": false,
759
+ "required": false
760
+ },
761
+ {
762
+ "name": "required",
763
+ "type": "boolean",
764
+ "complexType": {
765
+ "original": "boolean",
766
+ "resolved": "boolean",
767
+ "references": {}
768
+ },
769
+ "mutable": false,
770
+ "attr": "required",
771
+ "reflectToAttr": false,
772
+ "docs": "If `true`, the input will require a value.",
773
+ "docsTags": [],
774
+ "default": "false",
775
+ "values": [
776
+ {
777
+ "type": "boolean"
778
+ }
779
+ ],
780
+ "optional": true,
781
+ "required": false
782
+ },
783
+ {
784
+ "name": "showClearButton",
785
+ "type": "boolean",
786
+ "complexType": {
787
+ "original": "boolean",
788
+ "resolved": "boolean",
789
+ "references": {}
790
+ },
791
+ "mutable": false,
792
+ "attr": "show-clear-button",
793
+ "reflectToAttr": false,
794
+ "docs": "If `true`, a button which clears the date input when clicked will be displayed.",
795
+ "docsTags": [],
796
+ "default": "true",
797
+ "values": [
798
+ {
799
+ "type": "boolean"
800
+ }
801
+ ],
802
+ "optional": true,
803
+ "required": false
804
+ },
805
+ {
806
+ "name": "size",
807
+ "type": "\"default\" | \"large\" | \"small\"",
808
+ "complexType": {
809
+ "original": "IcSizes",
810
+ "resolved": "\"default\" | \"large\" | \"small\"",
811
+ "references": {
812
+ "IcSizes": {
813
+ "location": "import",
814
+ "path": "../../utils/types",
815
+ "id": "src/utils/types.ts::IcSizes"
816
+ }
817
+ }
818
+ },
819
+ "mutable": false,
820
+ "attr": "size",
821
+ "reflectToAttr": false,
822
+ "docs": "The size of the date input to be displayed.",
823
+ "docsTags": [],
824
+ "default": "\"default\"",
825
+ "values": [
826
+ {
827
+ "value": "default",
828
+ "type": "string"
829
+ },
830
+ {
831
+ "value": "large",
832
+ "type": "string"
833
+ },
834
+ {
835
+ "value": "small",
836
+ "type": "string"
837
+ }
838
+ ],
839
+ "optional": true,
840
+ "required": false
841
+ },
842
+ {
843
+ "name": "validationStatus",
844
+ "type": "\"\" | \"error\" | \"success\" | \"warning\"",
845
+ "complexType": {
846
+ "original": "IcInformationStatusOrEmpty",
847
+ "resolved": "\"\" | \"error\" | \"success\" | \"warning\"",
848
+ "references": {
849
+ "IcInformationStatusOrEmpty": {
850
+ "location": "import",
851
+ "path": "../../utils/types",
852
+ "id": "src/utils/types.ts::IcInformationStatusOrEmpty"
853
+ }
854
+ }
855
+ },
856
+ "mutable": true,
857
+ "attr": "validation-status",
858
+ "reflectToAttr": false,
859
+ "docs": "The validation status - e.g. 'error' | 'warning' | 'success'. This will override the built-in date validation.",
860
+ "docsTags": [],
861
+ "default": "\"\"",
862
+ "values": [
863
+ {
864
+ "type": "\"\""
865
+ },
866
+ {
867
+ "value": "error",
868
+ "type": "string"
869
+ },
870
+ {
871
+ "value": "success",
872
+ "type": "string"
873
+ },
874
+ {
875
+ "value": "warning",
876
+ "type": "string"
877
+ }
878
+ ],
879
+ "optional": true,
880
+ "required": false
881
+ },
882
+ {
883
+ "name": "validationText",
884
+ "type": "string",
885
+ "complexType": {
886
+ "original": "string",
887
+ "resolved": "string",
888
+ "references": {}
889
+ },
890
+ "mutable": false,
891
+ "attr": "validation-text",
892
+ "reflectToAttr": false,
893
+ "docs": "The text to display as the validation message. This will override the built-in date validation.",
894
+ "docsTags": [],
895
+ "default": "\"\"",
896
+ "values": [
897
+ {
898
+ "type": "string"
899
+ }
900
+ ],
901
+ "optional": true,
902
+ "required": false
903
+ },
904
+ {
905
+ "name": "value",
906
+ "type": "Date | string",
907
+ "complexType": {
908
+ "original": "string | Date | null | undefined",
909
+ "resolved": "Date | string",
910
+ "references": {
911
+ "Date": {
912
+ "location": "global",
913
+ "id": "global::Date"
914
+ }
915
+ }
916
+ },
917
+ "mutable": true,
918
+ "attr": "value",
919
+ "reflectToAttr": false,
920
+ "docs": "The value of the date input. 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.",
921
+ "docsTags": [],
922
+ "default": "\"\"",
923
+ "values": [
924
+ {
925
+ "type": "Date"
926
+ },
927
+ {
928
+ "type": "string"
929
+ }
930
+ ],
931
+ "optional": true,
932
+ "required": false
933
+ }
934
+ ],
935
+ "methods": [
936
+ {
937
+ "name": "getDate",
938
+ "returns": {
939
+ "type": "Promise<Date>",
940
+ "docs": "Date"
941
+ },
942
+ "complexType": {
943
+ "signature": "() => Promise<Date>",
944
+ "parameters": [],
945
+ "references": {
946
+ "Promise": {
947
+ "location": "global",
948
+ "id": "global::Promise"
949
+ },
950
+ "Date": {
951
+ "location": "global",
952
+ "id": "global::Date"
953
+ }
954
+ },
955
+ "return": "Promise<Date>"
956
+ },
957
+ "signature": "getDate() => Promise<Date>",
958
+ "parameters": [],
959
+ "docs": "Returns the value as a Date object",
960
+ "docsTags": [
961
+ {
962
+ "name": "returns",
963
+ "text": "Date"
964
+ }
965
+ ]
966
+ }
967
+ ],
968
+ "events": [
969
+ {
970
+ "event": "icBlur",
971
+ "detail": "{ value: Date; }",
972
+ "bubbles": true,
973
+ "complexType": {
974
+ "original": "{ value: Date }",
975
+ "resolved": "{ value: Date; }",
976
+ "references": {
977
+ "Date": {
978
+ "location": "global",
979
+ "id": "global::Date"
980
+ }
981
+ }
982
+ },
983
+ "cancelable": true,
984
+ "composed": true,
985
+ "docs": "Emitted when the input loses focus.",
986
+ "docsTags": []
987
+ },
988
+ {
989
+ "event": "icChange",
990
+ "detail": "{ value: Date; }",
991
+ "bubbles": true,
992
+ "complexType": {
993
+ "original": "{ value: Date }",
994
+ "resolved": "{ value: Date; }",
995
+ "references": {
996
+ "Date": {
997
+ "location": "global",
998
+ "id": "global::Date"
999
+ }
1000
+ }
1001
+ },
1002
+ "cancelable": true,
1003
+ "composed": true,
1004
+ "docs": "Emitted when the value has changed.",
1005
+ "docsTags": []
1006
+ },
1007
+ {
1008
+ "event": "icFocus",
1009
+ "detail": "{ value: Date; }",
1010
+ "bubbles": true,
1011
+ "complexType": {
1012
+ "original": "{ value: Date }",
1013
+ "resolved": "{ value: Date; }",
1014
+ "references": {
1015
+ "Date": {
1016
+ "location": "global",
1017
+ "id": "global::Date"
1018
+ }
1019
+ }
1020
+ },
1021
+ "cancelable": true,
1022
+ "composed": true,
1023
+ "docs": "Emitted when the input gains focus.",
1024
+ "docsTags": []
1025
+ }
1026
+ ],
1027
+ "listeners": [],
1028
+ "styles": [],
1029
+ "slots": [],
1030
+ "parts": [],
1031
+ "dependents": [
1032
+ "ic-date-picker"
1033
+ ],
1034
+ "dependencies": [
1035
+ "ic-input-container",
1036
+ "ic-input-label",
1037
+ "ic-input-component-container",
1038
+ "ic-button",
1039
+ "ic-input-validation"
1040
+ ],
1041
+ "dependencyGraph": {
1042
+ "ic-date-input": [
1043
+ "ic-input-container",
1044
+ "ic-input-label",
1045
+ "ic-input-component-container",
1046
+ "ic-button",
1047
+ "ic-input-validation"
1048
+ ],
1049
+ "ic-input-label": [
1050
+ "ic-typography"
1051
+ ],
1052
+ "ic-button": [
1053
+ "ic-loading-indicator",
1054
+ "ic-tooltip"
1055
+ ],
1056
+ "ic-loading-indicator": [
1057
+ "ic-typography"
1058
+ ],
1059
+ "ic-tooltip": [
1060
+ "ic-typography"
1061
+ ],
1062
+ "ic-input-validation": [
1063
+ "ic-typography"
1064
+ ],
1065
+ "ic-date-picker": [
1066
+ "ic-date-input"
1067
+ ]
1068
+ }
1069
+ },
1070
+ {
1071
+ "filePath": "src/components/ic-date-picker/ic-date-picker.tsx",
1072
+ "encapsulation": "shadow",
1073
+ "tag": "ic-date-picker",
1074
+ "readme": "# ic-date-picker\n\n\n",
1075
+ "docs": "",
1076
+ "docsTags": [],
1077
+ "usage": {},
1078
+ "props": [
1079
+ {
1080
+ "name": "dateFormat",
1081
+ "type": "\"DD/MM/YYYY\" | \"MM/DD/YYYY\" | \"YYYY/MM/DD\"",
1082
+ "complexType": {
1083
+ "original": "IcDateFormat",
1084
+ "resolved": "\"DD/MM/YYYY\" | \"MM/DD/YYYY\" | \"YYYY/MM/DD\"",
1085
+ "references": {
1086
+ "IcDateFormat": {
1087
+ "location": "import",
1088
+ "path": "../../utils/types",
1089
+ "id": "src/utils/types.ts::IcDateFormat"
1090
+ }
1091
+ }
1092
+ },
1093
+ "mutable": false,
1094
+ "attr": "date-format",
1095
+ "reflectToAttr": false,
1096
+ "docs": "The format in which the date will be displayed.",
1097
+ "docsTags": [],
1098
+ "default": "\"DD/MM/YYYY\"",
1099
+ "values": [
1100
+ {
1101
+ "value": "DD/MM/YYYY",
1102
+ "type": "string"
1103
+ },
1104
+ {
1105
+ "value": "MM/DD/YYYY",
1106
+ "type": "string"
1107
+ },
1108
+ {
1109
+ "value": "YYYY/MM/DD",
1110
+ "type": "string"
1111
+ }
1112
+ ],
1113
+ "optional": true,
1114
+ "required": false
1115
+ },
1116
+ {
1117
+ "name": "disableDays",
1118
+ "type": "IcWeekDays[]",
1119
+ "complexType": {
1120
+ "original": "IcWeekDays[]",
1121
+ "resolved": "IcWeekDays[]",
1122
+ "references": {
1123
+ "IcWeekDays": {
1124
+ "location": "import",
1125
+ "path": "../../utils/types",
1126
+ "id": "src/utils/types.ts::IcWeekDays"
1127
+ }
1128
+ }
1129
+ },
1130
+ "mutable": false,
1131
+ "reflectToAttr": false,
1132
+ "docs": "The days of the week to disable.",
1133
+ "docsTags": [],
1134
+ "default": "[]",
1135
+ "values": [
1136
+ {
1137
+ "type": "IcWeekDays[]"
1138
+ }
1139
+ ],
1140
+ "optional": true,
1141
+ "required": false
1142
+ },
1143
+ {
1144
+ "name": "disableDaysMessage",
1145
+ "type": "string",
1146
+ "complexType": {
1147
+ "original": "string",
1148
+ "resolved": "string",
1149
+ "references": {}
1150
+ },
1151
+ "mutable": false,
1152
+ "attr": "disable-days-message",
1153
+ "reflectToAttr": false,
1154
+ "docs": "The text to display as the validation message when `disableDays` is `true` and a disabled date is entered.",
1155
+ "docsTags": [],
1156
+ "default": "\"The date you have selected is on a day of the week that is not allowed. Please select another date.\"",
1157
+ "values": [
1158
+ {
1159
+ "type": "string"
1160
+ }
1161
+ ],
1162
+ "optional": true,
1163
+ "required": false
1164
+ },
1165
+ {
1166
+ "name": "disableFuture",
1167
+ "type": "boolean",
1168
+ "complexType": {
1169
+ "original": "boolean",
1170
+ "resolved": "boolean",
1171
+ "references": {}
1172
+ },
1173
+ "mutable": false,
1174
+ "attr": "disable-future",
1175
+ "reflectToAttr": false,
1176
+ "docs": "If `true`, dates in the future are not allowed. A validation message will appear if a date in the future is entered.",
1177
+ "docsTags": [],
1178
+ "default": "false",
1179
+ "values": [
1180
+ {
1181
+ "type": "boolean"
1182
+ }
1183
+ ],
1184
+ "optional": true,
1185
+ "required": false
1186
+ },
1187
+ {
1188
+ "name": "disableFutureMessage",
1189
+ "type": "string",
1190
+ "complexType": {
1191
+ "original": "string",
1192
+ "resolved": "string",
1193
+ "references": {}
1194
+ },
1195
+ "mutable": false,
1196
+ "attr": "disable-future-message",
1197
+ "reflectToAttr": false,
1198
+ "docs": "The text to display as the validation message when `disableFuture` is `true` and a date in the future is entered.",
1199
+ "docsTags": [],
1200
+ "default": "\"Dates in the future are not allowed. Please select a date in the past.\"",
1201
+ "values": [
1202
+ {
1203
+ "type": "string"
1204
+ }
1205
+ ],
1206
+ "optional": true,
1207
+ "required": false
1208
+ },
1209
+ {
1210
+ "name": "disablePast",
1211
+ "type": "boolean",
1212
+ "complexType": {
1213
+ "original": "boolean",
1214
+ "resolved": "boolean",
1215
+ "references": {}
1216
+ },
1217
+ "mutable": false,
1218
+ "attr": "disable-past",
1219
+ "reflectToAttr": false,
1220
+ "docs": "If `true`, dates in the past are not allowed. A validation message will appear if a date in the past is entered.",
1221
+ "docsTags": [],
1222
+ "default": "false",
1223
+ "values": [
1224
+ {
1225
+ "type": "boolean"
1226
+ }
1227
+ ],
1228
+ "optional": true,
1229
+ "required": false
1230
+ },
1231
+ {
1232
+ "name": "disablePastMessage",
1233
+ "type": "string",
1234
+ "complexType": {
1235
+ "original": "string",
1236
+ "resolved": "string",
1237
+ "references": {}
1238
+ },
1239
+ "mutable": false,
1240
+ "attr": "disable-past-message",
1241
+ "reflectToAttr": false,
1242
+ "docs": "The text to display as the validation message when `disablePast` is `true` and a date in the past is entered.",
1243
+ "docsTags": [],
1244
+ "default": "\"Dates in the past are not allowed. Please select a date in the future.\"",
1245
+ "values": [
1246
+ {
1247
+ "type": "string"
1248
+ }
1249
+ ],
1250
+ "optional": true,
1251
+ "required": false
1252
+ },
1253
+ {
1254
+ "name": "disabled",
1255
+ "type": "boolean",
1256
+ "complexType": {
1257
+ "original": "boolean",
1258
+ "resolved": "boolean",
1259
+ "references": {}
1260
+ },
1261
+ "mutable": false,
1262
+ "attr": "disabled",
1263
+ "reflectToAttr": false,
1264
+ "docs": "If `true`, the disabled state will be set.",
1265
+ "docsTags": [],
1266
+ "default": "false",
1267
+ "values": [
1268
+ {
1269
+ "type": "boolean"
1270
+ }
1271
+ ],
1272
+ "optional": true,
1273
+ "required": false
1274
+ },
1275
+ {
1276
+ "name": "helperText",
1277
+ "type": "string",
1278
+ "complexType": {
1279
+ "original": "string",
1280
+ "resolved": "string",
1281
+ "references": {}
1282
+ },
1283
+ "mutable": false,
1284
+ "attr": "helper-text",
1285
+ "reflectToAttr": false,
1286
+ "docs": "The helper text that will be displayed for additional field guidance. This will default to the text \"Use format\" along with the `dateFormat` value.",
1287
+ "docsTags": [],
1288
+ "values": [
1289
+ {
1290
+ "type": "string"
1291
+ }
1292
+ ],
1293
+ "optional": true,
1294
+ "required": false
1295
+ },
1296
+ {
1297
+ "name": "inputId",
1298
+ "type": "string",
1299
+ "complexType": {
1300
+ "original": "string",
1301
+ "resolved": "string",
1302
+ "references": {}
1303
+ },
1304
+ "mutable": false,
1305
+ "attr": "input-id",
1306
+ "reflectToAttr": false,
1307
+ "docs": "The ID for the input field. The default will be an automatically generated value.",
1308
+ "docsTags": [],
1309
+ "values": [
1310
+ {
1311
+ "type": "string"
1312
+ }
1313
+ ],
1314
+ "optional": true,
1315
+ "required": false
1316
+ },
1317
+ {
1318
+ "name": "label",
1319
+ "type": "string",
1320
+ "complexType": {
1321
+ "original": "string",
1322
+ "resolved": "string",
1323
+ "references": {}
1324
+ },
1325
+ "mutable": false,
1326
+ "attr": "label",
1327
+ "reflectToAttr": false,
1328
+ "docs": "The label for the date input.",
1329
+ "docsTags": [],
1330
+ "values": [
1331
+ {
1332
+ "type": "string"
1333
+ }
1334
+ ],
1335
+ "optional": false,
1336
+ "required": true
1337
+ },
1338
+ {
1339
+ "name": "max",
1340
+ "type": "Date | string",
1341
+ "complexType": {
1342
+ "original": "string | Date",
1343
+ "resolved": "Date | string",
1344
+ "references": {
1345
+ "Date": {
1346
+ "location": "global",
1347
+ "id": "global::Date"
1348
+ }
1349
+ }
1350
+ },
1351
+ "mutable": false,
1352
+ "attr": "max",
1353
+ "reflectToAttr": false,
1354
+ "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`.",
1355
+ "docsTags": [],
1356
+ "default": "\"\"",
1357
+ "values": [
1358
+ {
1359
+ "type": "Date"
1360
+ },
1361
+ {
1362
+ "type": "string"
1363
+ }
1364
+ ],
1365
+ "optional": true,
1366
+ "required": false
1367
+ },
1368
+ {
1369
+ "name": "min",
1370
+ "type": "Date | string",
1371
+ "complexType": {
1372
+ "original": "string | Date",
1373
+ "resolved": "Date | string",
1374
+ "references": {
1375
+ "Date": {
1376
+ "location": "global",
1377
+ "id": "global::Date"
1378
+ }
1379
+ }
1380
+ },
1381
+ "mutable": false,
1382
+ "attr": "min",
1383
+ "reflectToAttr": false,
1384
+ "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`.",
1385
+ "docsTags": [],
1386
+ "default": "\"\"",
1387
+ "values": [
1388
+ {
1389
+ "type": "Date"
1390
+ },
1391
+ {
1392
+ "type": "string"
1393
+ }
1394
+ ],
1395
+ "optional": true,
1396
+ "required": false
1397
+ },
1398
+ {
1399
+ "name": "name",
1400
+ "type": "string",
1401
+ "complexType": {
1402
+ "original": "string",
1403
+ "resolved": "string",
1404
+ "references": {}
1405
+ },
1406
+ "mutable": false,
1407
+ "attr": "name",
1408
+ "reflectToAttr": false,
1409
+ "docs": "The name of the control, which is submitted with the form data.",
1410
+ "docsTags": [],
1411
+ "values": [
1412
+ {
1413
+ "type": "string"
1414
+ }
1415
+ ],
1416
+ "optional": true,
1417
+ "required": false
1418
+ },
1419
+ {
1420
+ "name": "openAtDate",
1421
+ "type": "Date | string",
1422
+ "complexType": {
1423
+ "original": "string | Date",
1424
+ "resolved": "Date | string",
1425
+ "references": {
1426
+ "Date": {
1427
+ "location": "global",
1428
+ "id": "global::Date"
1429
+ }
1430
+ }
1431
+ },
1432
+ "mutable": false,
1433
+ "attr": "open-at-date",
1434
+ "reflectToAttr": false,
1435
+ "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.",
1436
+ "docsTags": [],
1437
+ "default": "\"\"",
1438
+ "values": [
1439
+ {
1440
+ "type": "Date"
1441
+ },
1442
+ {
1443
+ "type": "string"
1444
+ }
1445
+ ],
1446
+ "optional": false,
1447
+ "required": false
1448
+ },
1449
+ {
1450
+ "name": "required",
1451
+ "type": "boolean",
1452
+ "complexType": {
1453
+ "original": "boolean",
1454
+ "resolved": "boolean",
1455
+ "references": {}
1456
+ },
1457
+ "mutable": false,
1458
+ "attr": "required",
1459
+ "reflectToAttr": false,
1460
+ "docs": "If `true`, the input will require a value.",
1461
+ "docsTags": [],
1462
+ "default": "false",
1463
+ "values": [
1464
+ {
1465
+ "type": "boolean"
1466
+ }
1467
+ ],
1468
+ "optional": true,
1469
+ "required": false
1470
+ },
1471
+ {
1472
+ "name": "showDaysOutsideMonth",
1473
+ "type": "boolean",
1474
+ "complexType": {
1475
+ "original": "boolean",
1476
+ "resolved": "boolean",
1477
+ "references": {}
1478
+ },
1479
+ "mutable": false,
1480
+ "attr": "show-days-outside-month",
1481
+ "reflectToAttr": false,
1482
+ "docs": "If `true`, days outside the current month will be visible in the date picker.",
1483
+ "docsTags": [],
1484
+ "default": "true",
1485
+ "values": [
1486
+ {
1487
+ "type": "boolean"
1488
+ }
1489
+ ],
1490
+ "optional": true,
1491
+ "required": false
1492
+ },
1493
+ {
1494
+ "name": "showPickerClearButton",
1495
+ "type": "boolean",
1496
+ "complexType": {
1497
+ "original": "boolean",
1498
+ "resolved": "boolean",
1499
+ "references": {}
1500
+ },
1501
+ "mutable": false,
1502
+ "attr": "show-picker-clear-button",
1503
+ "reflectToAttr": false,
1504
+ "docs": "If `true`, the `Clear` button on the date picker will be visible.",
1505
+ "docsTags": [],
1506
+ "default": "true",
1507
+ "values": [
1508
+ {
1509
+ "type": "boolean"
1510
+ }
1511
+ ],
1512
+ "optional": true,
1513
+ "required": false
1514
+ },
1515
+ {
1516
+ "name": "showPickerTodayButton",
1517
+ "type": "boolean",
1518
+ "complexType": {
1519
+ "original": "boolean",
1520
+ "resolved": "boolean",
1521
+ "references": {}
1522
+ },
1523
+ "mutable": false,
1524
+ "attr": "show-picker-today-button",
1525
+ "reflectToAttr": false,
1526
+ "docs": "If `true`, the `Go to today` button on the date picker will be visible.",
1527
+ "docsTags": [],
1528
+ "default": "true",
1529
+ "values": [
1530
+ {
1531
+ "type": "boolean"
1532
+ }
1533
+ ],
1534
+ "optional": true,
1535
+ "required": false
1536
+ },
1537
+ {
1538
+ "name": "size",
1539
+ "type": "\"default\" | \"large\" | \"small\"",
1540
+ "complexType": {
1541
+ "original": "IcSizes",
1542
+ "resolved": "\"default\" | \"large\" | \"small\"",
1543
+ "references": {
1544
+ "IcSizes": {
1545
+ "location": "import",
1546
+ "path": "../../utils/types",
1547
+ "id": "src/utils/types.ts::IcSizes"
1548
+ }
1549
+ }
1550
+ },
1551
+ "mutable": false,
1552
+ "attr": "size",
1553
+ "reflectToAttr": false,
1554
+ "docs": "The size of the date picker to be displayed.",
1555
+ "docsTags": [],
1556
+ "default": "\"default\"",
1557
+ "values": [
1558
+ {
1559
+ "value": "default",
1560
+ "type": "string"
1561
+ },
1562
+ {
1563
+ "value": "large",
1564
+ "type": "string"
1565
+ },
1566
+ {
1567
+ "value": "small",
1568
+ "type": "string"
1569
+ }
1570
+ ],
1571
+ "optional": true,
1572
+ "required": false
1573
+ },
1574
+ {
1575
+ "name": "startOfWeek",
1576
+ "type": "IcWeekDays.Friday | IcWeekDays.Monday | IcWeekDays.Saturday | IcWeekDays.Sunday | IcWeekDays.Thursday | IcWeekDays.Tuesday | IcWeekDays.Wednesday",
1577
+ "complexType": {
1578
+ "original": "IcWeekDays",
1579
+ "resolved": "IcWeekDays.Friday | IcWeekDays.Monday | IcWeekDays.Saturday | IcWeekDays.Sunday | IcWeekDays.Thursday | IcWeekDays.Tuesday | IcWeekDays.Wednesday",
1580
+ "references": {
1581
+ "IcWeekDays": {
1582
+ "location": "import",
1583
+ "path": "../../utils/types",
1584
+ "id": "src/utils/types.ts::IcWeekDays"
1585
+ }
1586
+ }
1587
+ },
1588
+ "mutable": false,
1589
+ "attr": "start-of-week",
1590
+ "reflectToAttr": false,
1591
+ "docs": "The first day of the week. `0` for Sunday, `1` for Monday, etc.\nDefault is Monday.",
1592
+ "docsTags": [],
1593
+ "default": "IcWeekDays.Monday",
1594
+ "values": [
1595
+ {
1596
+ "type": "IcWeekDays.Friday"
1597
+ },
1598
+ {
1599
+ "type": "IcWeekDays.Monday"
1600
+ },
1601
+ {
1602
+ "type": "IcWeekDays.Saturday"
1603
+ },
1604
+ {
1605
+ "type": "IcWeekDays.Sunday"
1606
+ },
1607
+ {
1608
+ "type": "IcWeekDays.Thursday"
1609
+ },
1610
+ {
1611
+ "type": "IcWeekDays.Tuesday"
1612
+ },
1613
+ {
1614
+ "type": "IcWeekDays.Wednesday"
1615
+ }
1616
+ ],
1617
+ "optional": true,
1618
+ "required": false
1619
+ },
1620
+ {
1621
+ "name": "validationStatus",
1622
+ "type": "\"\" | \"error\" | \"success\" | \"warning\"",
1623
+ "complexType": {
1624
+ "original": "IcInformationStatusOrEmpty",
1625
+ "resolved": "\"\" | \"error\" | \"success\" | \"warning\"",
1626
+ "references": {
1627
+ "IcInformationStatusOrEmpty": {
1628
+ "location": "import",
1629
+ "path": "../../utils/types",
1630
+ "id": "src/utils/types.ts::IcInformationStatusOrEmpty"
1631
+ }
1632
+ }
1633
+ },
1634
+ "mutable": false,
1635
+ "attr": "validation-status",
1636
+ "reflectToAttr": false,
1637
+ "docs": "The validation status - e.g. 'error' | 'warning' | 'success'. This will override the built-in date validation.",
1638
+ "docsTags": [],
1639
+ "default": "\"\"",
1640
+ "values": [
1641
+ {
1642
+ "type": "\"\""
1643
+ },
1644
+ {
1645
+ "value": "error",
1646
+ "type": "string"
1647
+ },
1648
+ {
1649
+ "value": "success",
1650
+ "type": "string"
1651
+ },
1652
+ {
1653
+ "value": "warning",
1654
+ "type": "string"
1655
+ }
1656
+ ],
1657
+ "optional": true,
1658
+ "required": false
1659
+ },
1660
+ {
1661
+ "name": "validationText",
1662
+ "type": "string",
1663
+ "complexType": {
1664
+ "original": "string",
1665
+ "resolved": "string",
1666
+ "references": {}
1667
+ },
1668
+ "mutable": false,
1669
+ "attr": "validation-text",
1670
+ "reflectToAttr": false,
1671
+ "docs": "The text to display as the validation message. This will override the built-in date validation.",
1672
+ "docsTags": [],
1673
+ "default": "\"\"",
1674
+ "values": [
1675
+ {
1676
+ "type": "string"
1677
+ }
1678
+ ],
1679
+ "optional": true,
1680
+ "required": false
1681
+ },
1682
+ {
1683
+ "name": "value",
1684
+ "type": "Date | string",
1685
+ "complexType": {
1686
+ "original": "string | Date | null | undefined",
1687
+ "resolved": "Date | string",
1688
+ "references": {
1689
+ "Date": {
1690
+ "location": "global",
1691
+ "id": "global::Date"
1692
+ }
1693
+ }
1694
+ },
1695
+ "mutable": true,
1696
+ "attr": "value",
1697
+ "reflectToAttr": false,
1698
+ "docs": "The value of the date picker. 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.",
1699
+ "docsTags": [],
1700
+ "default": "\"\"",
1701
+ "values": [
1702
+ {
1703
+ "type": "Date"
1704
+ },
1705
+ {
1706
+ "type": "string"
1707
+ }
1708
+ ],
1709
+ "optional": true,
1710
+ "required": false
1711
+ }
1712
+ ],
1713
+ "methods": [],
1714
+ "events": [
1715
+ {
1716
+ "event": "icChange",
1717
+ "detail": "{ value: Date; }",
1718
+ "bubbles": true,
1719
+ "complexType": {
1720
+ "original": "{ value: Date }",
1721
+ "resolved": "{ value: Date; }",
1722
+ "references": {
1723
+ "Date": {
1724
+ "location": "global",
1725
+ "id": "global::Date"
1726
+ }
1727
+ }
1728
+ },
1729
+ "cancelable": true,
1730
+ "composed": true,
1731
+ "docs": "Emitted when the value has changed.",
1732
+ "docsTags": []
1733
+ }
1734
+ ],
1735
+ "listeners": [
1736
+ {
1737
+ "event": "calendarButtonClicked",
1738
+ "capture": false,
1739
+ "passive": false
1740
+ },
1741
+ {
1742
+ "event": "calendarButtonClicked",
1743
+ "target": "document",
1744
+ "capture": false,
1745
+ "passive": false
1746
+ }
1747
+ ],
1748
+ "styles": [
1749
+ {
1750
+ "name": "--ic-z-index-date-picker",
1751
+ "annotation": "prop",
1752
+ "docs": "z-index of date picker."
1753
+ },
1754
+ {
1755
+ "name": "--input-width",
1756
+ "annotation": "prop",
1757
+ "docs": "Width of the input field"
1758
+ }
1759
+ ],
1760
+ "slots": [],
1761
+ "parts": [],
1762
+ "dependents": [],
1763
+ "dependencies": [
1764
+ "ic-button",
1765
+ "ic-date-input",
1766
+ "ic-typography"
1767
+ ],
1768
+ "dependencyGraph": {
1769
+ "ic-date-picker": [
1770
+ "ic-button",
1771
+ "ic-date-input",
1772
+ "ic-typography"
1773
+ ],
1774
+ "ic-button": [
1775
+ "ic-loading-indicator",
1776
+ "ic-tooltip"
1777
+ ],
1778
+ "ic-loading-indicator": [
1779
+ "ic-typography"
1780
+ ],
1781
+ "ic-tooltip": [
1782
+ "ic-typography"
1783
+ ],
1784
+ "ic-date-input": [
1785
+ "ic-input-container",
1786
+ "ic-input-label",
1787
+ "ic-input-component-container",
1788
+ "ic-button",
1789
+ "ic-input-validation"
1790
+ ],
1791
+ "ic-input-label": [
1792
+ "ic-typography"
1793
+ ],
1794
+ "ic-input-validation": [
1795
+ "ic-typography"
1796
+ ]
1797
+ }
1798
+ },
1799
+ {
1800
+ "filePath": "src/components/ic-menu-with-multi/ic-menu.tsx",
1801
+ "encapsulation": "scoped",
1802
+ "tag": "ic-menu-with-multi",
1803
+ "readme": "# ic-menu-with-multi\n\n\n",
1804
+ "docs": "",
1805
+ "docsTags": [],
1806
+ "usage": {},
1807
+ "props": [
1808
+ {
1809
+ "name": "activationType",
1810
+ "type": "\"automatic\" | \"manual\"",
1811
+ "complexType": {
1812
+ "original": "IcActivationTypes",
1813
+ "resolved": "\"automatic\" | \"manual\"",
1814
+ "references": {
1815
+ "IcActivationTypes": {
1816
+ "location": "import",
1817
+ "path": "@ukic/web-components/dist/types/utils/types",
1818
+ "id": "../web-components/dist/types/utils/types.d.ts::IcActivationTypes"
1819
+ }
1820
+ }
1821
+ },
1822
+ "mutable": false,
1823
+ "attr": "activation-type",
1824
+ "reflectToAttr": false,
1825
+ "docs": "Determines whether options manually set as values (by pressing 'Enter') when they receive focus using keyboard navigation.",
1826
+ "docsTags": [],
1827
+ "default": "\"automatic\"",
1828
+ "values": [
1829
+ {
1830
+ "value": "automatic",
1831
+ "type": "string"
1832
+ },
1833
+ {
1834
+ "value": "manual",
1835
+ "type": "string"
1836
+ }
1837
+ ],
1838
+ "optional": true,
1839
+ "required": false
1840
+ },
1841
+ {
1842
+ "name": "anchorEl",
1843
+ "type": "HTMLElement",
1844
+ "complexType": {
1845
+ "original": "HTMLElement",
1846
+ "resolved": "HTMLElement",
1847
+ "references": {
1848
+ "HTMLElement": {
1849
+ "location": "global",
1850
+ "id": "global::HTMLElement"
1851
+ }
1852
+ }
1853
+ },
1854
+ "mutable": false,
1855
+ "reflectToAttr": false,
1856
+ "docs": "The reference to an anchor element the menu will position itself from when rendered.",
1857
+ "docsTags": [],
1858
+ "values": [
1859
+ {
1860
+ "type": "HTMLElement"
1861
+ }
1862
+ ],
1863
+ "optional": false,
1864
+ "required": true
1865
+ },
1866
+ {
1867
+ "name": "closeOnSelect",
1868
+ "type": "boolean",
1869
+ "complexType": {
1870
+ "original": "boolean",
1871
+ "resolved": "boolean",
1872
+ "references": {}
1873
+ },
1874
+ "mutable": false,
1875
+ "attr": "close-on-select",
1876
+ "reflectToAttr": false,
1877
+ "docs": "If `true`, the menu will close when an option is selected.",
1878
+ "docsTags": [],
1879
+ "default": "true",
1880
+ "values": [
1881
+ {
1882
+ "type": "boolean"
1883
+ }
1884
+ ],
1885
+ "optional": false,
1886
+ "required": false
1887
+ },
1888
+ {
1889
+ "name": "fullWidth",
1890
+ "type": "boolean",
1891
+ "complexType": {
1892
+ "original": "boolean",
1893
+ "resolved": "boolean",
1894
+ "references": {}
1895
+ },
1896
+ "mutable": false,
1897
+ "attr": "full-width",
1898
+ "reflectToAttr": false,
1899
+ "docs": "If `true`, the menu will fill the width of the container.",
1900
+ "docsTags": [],
1901
+ "default": "false",
1902
+ "values": [
1903
+ {
1904
+ "type": "boolean"
1905
+ }
1906
+ ],
1907
+ "optional": false,
1908
+ "required": false
1909
+ },
1910
+ {
1911
+ "name": "inputEl",
1912
+ "type": "HTMLElement",
1913
+ "complexType": {
1914
+ "original": "HTMLElement",
1915
+ "resolved": "HTMLElement",
1916
+ "references": {
1917
+ "HTMLElement": {
1918
+ "location": "global",
1919
+ "id": "global::HTMLElement"
1920
+ }
1921
+ }
1922
+ },
1923
+ "mutable": false,
1924
+ "reflectToAttr": false,
1925
+ "docs": "The reference to the input element.",
1926
+ "docsTags": [],
1927
+ "values": [
1928
+ {
1929
+ "type": "HTMLElement"
1930
+ }
1931
+ ],
1932
+ "optional": false,
1933
+ "required": true
1934
+ },
1935
+ {
1936
+ "name": "inputLabel",
1937
+ "type": "string",
1938
+ "complexType": {
1939
+ "original": "string",
1940
+ "resolved": "string",
1941
+ "references": {}
1942
+ },
1943
+ "mutable": false,
1944
+ "attr": "input-label",
1945
+ "reflectToAttr": false,
1946
+ "docs": "The label for the input element.",
1947
+ "docsTags": [],
1948
+ "values": [
1949
+ {
1950
+ "type": "string"
1951
+ }
1952
+ ],
1953
+ "optional": false,
1954
+ "required": true
1955
+ },
1956
+ {
1957
+ "name": "labelField",
1958
+ "type": "string",
1959
+ "complexType": {
1960
+ "original": "string",
1961
+ "resolved": "string",
1962
+ "references": {}
1963
+ },
1964
+ "mutable": false,
1965
+ "attr": "label-field",
1966
+ "reflectToAttr": false,
1967
+ "docs": "The custom name for the label field for IcMenuOption.",
1968
+ "docsTags": [],
1969
+ "default": "\"label\"",
1970
+ "values": [
1971
+ {
1972
+ "type": "string"
1973
+ }
1974
+ ],
1975
+ "optional": false,
1976
+ "required": false
1977
+ },
1978
+ {
1979
+ "name": "menuId",
1980
+ "type": "string",
1981
+ "complexType": {
1982
+ "original": "string",
1983
+ "resolved": "string",
1984
+ "references": {}
1985
+ },
1986
+ "mutable": false,
1987
+ "attr": "menu-id",
1988
+ "reflectToAttr": false,
1989
+ "docs": "The ID of the menu.",
1990
+ "docsTags": [],
1991
+ "values": [
1992
+ {
1993
+ "type": "string"
1994
+ }
1995
+ ],
1996
+ "optional": false,
1997
+ "required": true
1998
+ },
1999
+ {
2000
+ "name": "open",
2001
+ "type": "boolean",
2002
+ "complexType": {
2003
+ "original": "boolean",
2004
+ "resolved": "boolean",
2005
+ "references": {}
2006
+ },
2007
+ "mutable": false,
2008
+ "attr": "open",
2009
+ "reflectToAttr": true,
2010
+ "docs": "If `true`, the menu will be displayed open.",
2011
+ "docsTags": [],
2012
+ "values": [
2013
+ {
2014
+ "type": "boolean"
2015
+ }
2016
+ ],
2017
+ "optional": false,
2018
+ "required": true
2019
+ },
2020
+ {
2021
+ "name": "options",
2022
+ "type": "IcMenuOption[]",
2023
+ "complexType": {
2024
+ "original": "IcMenuOption[]",
2025
+ "resolved": "IcMenuOption[]",
2026
+ "references": {
2027
+ "IcMenuOption": {
2028
+ "location": "import",
2029
+ "path": "@ukic/web-components/dist/types/utils/types",
2030
+ "id": "../web-components/dist/types/utils/types.d.ts::IcMenuOption"
2031
+ }
2032
+ }
2033
+ },
2034
+ "mutable": false,
2035
+ "reflectToAttr": false,
2036
+ "docs": "The possible menu selection options.",
2037
+ "docsTags": [],
2038
+ "values": [
2039
+ {
2040
+ "type": "IcMenuOption[]"
2041
+ }
2042
+ ],
2043
+ "optional": false,
2044
+ "required": true
2045
+ },
2046
+ {
2047
+ "name": "searchMode",
2048
+ "type": "\"navigation\" | \"query\"",
2049
+ "complexType": {
2050
+ "original": "IcSearchBarSearchModes",
2051
+ "resolved": "\"navigation\" | \"query\"",
2052
+ "references": {
2053
+ "IcSearchBarSearchModes": {
2054
+ "location": "import",
2055
+ "path": "@ukic/web-components/dist/types/components",
2056
+ "id": "../web-components/dist/types/components.d.ts::IcSearchBarSearchModes"
2057
+ }
2058
+ }
2059
+ },
2060
+ "mutable": false,
2061
+ "attr": "search-mode",
2062
+ "reflectToAttr": false,
2063
+ "docs": "Specify the mode search bar uses to search. `navigation` allows for quick lookups of a set of values, `query` allows for more general searches.",
2064
+ "docsTags": [],
2065
+ "default": "\"navigation\"",
2066
+ "values": [
2067
+ {
2068
+ "value": "navigation",
2069
+ "type": "string"
2070
+ },
2071
+ {
2072
+ "value": "query",
2073
+ "type": "string"
2074
+ }
2075
+ ],
2076
+ "optional": true,
2077
+ "required": false
2078
+ },
2079
+ {
2080
+ "name": "size",
2081
+ "type": "\"default\" | \"large\" | \"small\"",
2082
+ "complexType": {
2083
+ "original": "IcSizes",
2084
+ "resolved": "\"default\" | \"large\" | \"small\"",
2085
+ "references": {
2086
+ "IcSizes": {
2087
+ "location": "import",
2088
+ "path": "../../utils/types",
2089
+ "id": "src/utils/types.ts::IcSizes"
2090
+ }
2091
+ }
2092
+ },
2093
+ "mutable": false,
2094
+ "attr": "size",
2095
+ "reflectToAttr": false,
2096
+ "docs": "The size of the menu.",
2097
+ "docsTags": [],
2098
+ "default": "\"default\"",
2099
+ "values": [
2100
+ {
2101
+ "value": "default",
2102
+ "type": "string"
2103
+ },
2104
+ {
2105
+ "value": "large",
2106
+ "type": "string"
2107
+ },
2108
+ {
2109
+ "value": "small",
2110
+ "type": "string"
2111
+ }
2112
+ ],
2113
+ "optional": true,
2114
+ "required": false
2115
+ },
2116
+ {
2117
+ "name": "small",
2118
+ "type": "boolean",
2119
+ "complexType": {
2120
+ "original": "boolean",
2121
+ "resolved": "boolean",
2122
+ "references": {}
2123
+ },
2124
+ "mutable": false,
2125
+ "attr": "small",
2126
+ "reflectToAttr": false,
2127
+ "docs": "",
2128
+ "docsTags": [
2129
+ {
2130
+ "name": "deprecated",
2131
+ "text": "This prop should not be used anymore. Set prop `size` to \"small\" instead."
2132
+ }
2133
+ ],
2134
+ "default": "false",
2135
+ "deprecation": "This prop should not be used anymore. Set prop `size` to \"small\" instead.",
2136
+ "values": [
2137
+ {
2138
+ "type": "boolean"
2139
+ }
2140
+ ],
2141
+ "optional": true,
2142
+ "required": false
2143
+ },
2144
+ {
2145
+ "name": "value",
2146
+ "type": "string | string[]",
2147
+ "complexType": {
2148
+ "original": "string | string[]",
2149
+ "resolved": "string | string[]",
2150
+ "references": {}
2151
+ },
2152
+ "mutable": true,
2153
+ "attr": "value",
2154
+ "reflectToAttr": false,
2155
+ "docs": "The value of the currently selected option - or array of values (if multiple options allowed).",
2156
+ "docsTags": [],
2157
+ "values": [
2158
+ {
2159
+ "type": "string"
2160
+ },
2161
+ {
2162
+ "type": "string[]"
2163
+ }
2164
+ ],
2165
+ "optional": false,
2166
+ "required": true
2167
+ },
2168
+ {
2169
+ "name": "valueField",
2170
+ "type": "string",
2171
+ "complexType": {
2172
+ "original": "string",
2173
+ "resolved": "string",
2174
+ "references": {}
2175
+ },
2176
+ "mutable": false,
2177
+ "attr": "value-field",
2178
+ "reflectToAttr": false,
2179
+ "docs": "The custom name for the value field for IcMenuOption.",
2180
+ "docsTags": [],
2181
+ "default": "\"value\"",
2182
+ "values": [
2183
+ {
2184
+ "type": "string"
2185
+ }
2186
+ ],
2187
+ "optional": false,
2188
+ "required": false
2189
+ }
2190
+ ],
2191
+ "methods": [
2192
+ {
2193
+ "name": "handleKeyboardOpen",
2194
+ "returns": {
2195
+ "type": "Promise<void>",
2196
+ "docs": ""
2197
+ },
2198
+ "complexType": {
2199
+ "signature": "(event: KeyboardEvent) => Promise<void>",
2200
+ "parameters": [
2201
+ {
2202
+ "name": "event",
2203
+ "type": "KeyboardEvent",
2204
+ "docs": "- keyboard event"
2205
+ }
2206
+ ],
2207
+ "references": {
2208
+ "Promise": {
2209
+ "location": "global",
2210
+ "id": "global::Promise"
2211
+ },
2212
+ "KeyboardEvent": {
2213
+ "location": "global",
2214
+ "id": "global::KeyboardEvent"
2215
+ }
2216
+ },
2217
+ "return": "Promise<void>"
2218
+ },
2219
+ "signature": "handleKeyboardOpen(event: KeyboardEvent) => Promise<void>",
2220
+ "parameters": [
2221
+ {
2222
+ "name": "event",
2223
+ "type": "KeyboardEvent",
2224
+ "docs": "- keyboard event"
2225
+ }
2226
+ ],
2227
+ "docs": "Used alongside activationType\nIf menu is opened via keyboard navigation (i.e. Enter, ArrowUp or ArrowDown), emit optionSelect custom event.",
2228
+ "docsTags": [
2229
+ {
2230
+ "name": "param",
2231
+ "text": "event - keyboard event"
2232
+ }
2233
+ ]
2234
+ }
2235
+ ],
2236
+ "events": [],
2237
+ "listeners": [],
2238
+ "styles": [
2239
+ {
2240
+ "name": "--ic-z-index-menu",
2241
+ "annotation": "prop",
2242
+ "docs": "z-index of menu"
2243
+ }
2244
+ ],
2245
+ "slots": [],
2246
+ "parts": [],
2247
+ "dependents": [
2248
+ "ic-select-with-multi"
2249
+ ],
2250
+ "dependencies": [
2251
+ "ic-loading-indicator",
2252
+ "ic-typography",
2253
+ "ic-button"
2254
+ ],
2255
+ "dependencyGraph": {
2256
+ "ic-menu-with-multi": [
2257
+ "ic-loading-indicator",
2258
+ "ic-typography",
2259
+ "ic-button"
2260
+ ],
2261
+ "ic-loading-indicator": [
2262
+ "ic-typography"
2263
+ ],
2264
+ "ic-button": [
2265
+ "ic-loading-indicator",
2266
+ "ic-tooltip"
2267
+ ],
2268
+ "ic-tooltip": [
2269
+ "ic-typography"
2270
+ ],
2271
+ "ic-select-with-multi": [
2272
+ "ic-menu-with-multi"
2273
+ ]
2274
+ }
2275
+ },
2276
+ {
2277
+ "filePath": "src/components/ic-pagination-bar/ic-pagination-bar.tsx",
2278
+ "encapsulation": "shadow",
2279
+ "tag": "ic-pagination-bar",
2280
+ "readme": "# ic-pagination-bar\n\n\n",
2281
+ "docs": "",
2282
+ "docsTags": [],
2283
+ "usage": {},
2284
+ "props": [
2285
+ {
2286
+ "name": "alignment",
2287
+ "type": "\"left\" | \"right\" | \"space-between\"",
2288
+ "complexType": {
2289
+ "original": "IcPaginationAlignmentOptions",
2290
+ "resolved": "\"left\" | \"right\" | \"space-between\"",
2291
+ "references": {
2292
+ "IcPaginationAlignmentOptions": {
2293
+ "location": "import",
2294
+ "path": "../ic-pagination/ic-pagination.types",
2295
+ "id": "src/components/ic-pagination/ic-pagination.types.ts::IcPaginationAlignmentOptions"
2296
+ }
2297
+ }
2298
+ },
2299
+ "mutable": false,
2300
+ "attr": "alignment",
2301
+ "reflectToAttr": false,
2302
+ "docs": "Sets the alignment of the items in the pagination bar.",
2303
+ "docsTags": [],
2304
+ "default": "\"right\"",
2305
+ "values": [
2306
+ {
2307
+ "value": "left",
2308
+ "type": "string"
2309
+ },
2310
+ {
2311
+ "value": "right",
2312
+ "type": "string"
2313
+ },
2314
+ {
2315
+ "value": "space-between",
2316
+ "type": "string"
2317
+ }
2318
+ ],
2319
+ "optional": true,
2320
+ "required": false
2321
+ },
2322
+ {
2323
+ "name": "appearance",
2324
+ "type": "\"dark\" | \"default\" | \"light\"",
2325
+ "complexType": {
2326
+ "original": "IcThemeForeground",
2327
+ "resolved": "\"dark\" | \"default\" | \"light\"",
2328
+ "references": {
2329
+ "IcThemeForeground": {
2330
+ "location": "import",
2331
+ "path": "@ukic/web-components/dist/types/interface",
2332
+ "id": "../web-components/dist/types/interface.d.ts::IcThemeForeground"
2333
+ }
2334
+ }
2335
+ },
2336
+ "mutable": false,
2337
+ "attr": "appearance",
2338
+ "reflectToAttr": false,
2339
+ "docs": "Sets the styling for the items in the pagination bar.",
2340
+ "docsTags": [],
2341
+ "default": "\"default\"",
2342
+ "values": [
2343
+ {
2344
+ "value": "dark",
2345
+ "type": "string"
2346
+ },
2347
+ {
2348
+ "value": "default",
2349
+ "type": "string"
2350
+ },
2351
+ {
2352
+ "value": "light",
2353
+ "type": "string"
2354
+ }
2355
+ ],
2356
+ "optional": true,
2357
+ "required": false
2358
+ },
2359
+ {
2360
+ "name": "itemLabel",
2361
+ "type": "string",
2362
+ "complexType": {
2363
+ "original": "string",
2364
+ "resolved": "string",
2365
+ "references": {}
2366
+ },
2367
+ "mutable": false,
2368
+ "attr": "item-label",
2369
+ "reflectToAttr": false,
2370
+ "docs": "The label which will be used in place of 'items' if paginationType is data. Should be capitalised.",
2371
+ "docsTags": [],
2372
+ "default": "\"Item\"",
2373
+ "values": [
2374
+ {
2375
+ "type": "string"
2376
+ }
2377
+ ],
2378
+ "optional": true,
2379
+ "required": false
2380
+ },
2381
+ {
2382
+ "name": "itemsPerPageOptions",
2383
+ "type": "{ label: string; value: string; }[]",
2384
+ "complexType": {
2385
+ "original": "{\n label: string;\n value: string;\n }[]",
2386
+ "resolved": "{ label: string; value: string; }[]",
2387
+ "references": {}
2388
+ },
2389
+ "mutable": true,
2390
+ "reflectToAttr": false,
2391
+ "docs": "The options which will be displayed for 'items per page' select input. Set a maximum of 4 options including a required 'All' option with value equal to total number of items.",
2392
+ "docsTags": [],
2393
+ "values": [
2394
+ {
2395
+ "type": "{ label: string; value: string; }[]"
2396
+ }
2397
+ ],
2398
+ "optional": true,
2399
+ "required": false
2400
+ },
2401
+ {
2402
+ "name": "pageLabel",
2403
+ "type": "string",
2404
+ "complexType": {
2405
+ "original": "string",
2406
+ "resolved": "string",
2407
+ "references": {}
2408
+ },
2409
+ "mutable": false,
2410
+ "attr": "page-label",
2411
+ "reflectToAttr": false,
2412
+ "docs": "The label which will be used in place of 'Page' if paginationType is page. Should be capitalised.",
2413
+ "docsTags": [],
2414
+ "default": "\"Page\"",
2415
+ "values": [
2416
+ {
2417
+ "type": "string"
2418
+ }
2419
+ ],
2420
+ "optional": true,
2421
+ "required": false
2422
+ },
2423
+ {
2424
+ "name": "paginationControl",
2425
+ "type": "\"complex\" | \"simple\"",
2426
+ "complexType": {
2427
+ "original": "IcPaginationControlTypes",
2428
+ "resolved": "\"complex\" | \"simple\"",
2429
+ "references": {
2430
+ "IcPaginationControlTypes": {
2431
+ "location": "import",
2432
+ "path": "../ic-pagination/ic-pagination.types",
2433
+ "id": "src/components/ic-pagination/ic-pagination.types.ts::IcPaginationControlTypes"
2434
+ }
2435
+ }
2436
+ },
2437
+ "mutable": false,
2438
+ "attr": "pagination-control",
2439
+ "reflectToAttr": false,
2440
+ "docs": "Whether the displayed pagination is simple or complex.",
2441
+ "docsTags": [],
2442
+ "default": "\"simple\"",
2443
+ "values": [
2444
+ {
2445
+ "value": "complex",
2446
+ "type": "string"
2447
+ },
2448
+ {
2449
+ "value": "simple",
2450
+ "type": "string"
2451
+ }
2452
+ ],
2453
+ "optional": true,
2454
+ "required": false
2455
+ },
2456
+ {
2457
+ "name": "paginationType",
2458
+ "type": "\"data\" | \"page\"",
2459
+ "complexType": {
2460
+ "original": "IcPaginationTypes",
2461
+ "resolved": "\"data\" | \"page\"",
2462
+ "references": {
2463
+ "IcPaginationTypes": {
2464
+ "location": "import",
2465
+ "path": "../ic-pagination/ic-pagination.types",
2466
+ "id": "src/components/ic-pagination/ic-pagination.types.ts::IcPaginationTypes"
2467
+ }
2468
+ }
2469
+ },
2470
+ "mutable": false,
2471
+ "attr": "pagination-type",
2472
+ "reflectToAttr": false,
2473
+ "docs": "Whether total number of items and current item range or total number of pages and current page is displayed.",
2474
+ "docsTags": [],
2475
+ "default": "\"page\"",
2476
+ "values": [
2477
+ {
2478
+ "value": "data",
2479
+ "type": "string"
2480
+ },
2481
+ {
2482
+ "value": "page",
2483
+ "type": "string"
2484
+ }
2485
+ ],
2486
+ "optional": true,
2487
+ "required": false
2488
+ },
2489
+ {
2490
+ "name": "showGoToPageControl",
2491
+ "type": "boolean",
2492
+ "complexType": {
2493
+ "original": "boolean",
2494
+ "resolved": "boolean",
2495
+ "references": {}
2496
+ },
2497
+ "mutable": false,
2498
+ "attr": "show-go-to-page-control",
2499
+ "reflectToAttr": false,
2500
+ "docs": "If `true`, the 'go to page' control should be displayed.",
2501
+ "docsTags": [],
2502
+ "default": "false",
2503
+ "values": [
2504
+ {
2505
+ "type": "boolean"
2506
+ }
2507
+ ],
2508
+ "optional": true,
2509
+ "required": false
2510
+ },
2511
+ {
2512
+ "name": "showItemsPerPage",
2513
+ "type": "boolean",
2514
+ "complexType": {
2515
+ "original": "boolean",
2516
+ "resolved": "boolean",
2517
+ "references": {}
2518
+ },
2519
+ "mutable": false,
2520
+ "attr": "show-items-per-page",
2521
+ "reflectToAttr": false,
2522
+ "docs": "If `true`, the number of total items and current item range or number of total pages and current page should be displayed.",
2523
+ "docsTags": [],
2524
+ "default": "true",
2525
+ "values": [
2526
+ {
2527
+ "type": "boolean"
2528
+ }
2529
+ ],
2530
+ "optional": true,
2531
+ "required": false
2532
+ },
2533
+ {
2534
+ "name": "showItemsPerPageControl",
2535
+ "type": "boolean",
2536
+ "complexType": {
2537
+ "original": "boolean",
2538
+ "resolved": "boolean",
2539
+ "references": {}
2540
+ },
2541
+ "mutable": false,
2542
+ "attr": "show-items-per-page-control",
2543
+ "reflectToAttr": false,
2544
+ "docs": "If `true`, the select input to control 'items per page' should be displayed.",
2545
+ "docsTags": [],
2546
+ "default": "false",
2547
+ "values": [
2548
+ {
2549
+ "type": "boolean"
2550
+ }
2551
+ ],
2552
+ "optional": true,
2553
+ "required": false
2554
+ },
2555
+ {
2556
+ "name": "totalItems",
2557
+ "type": "number",
2558
+ "complexType": {
2559
+ "original": "number",
2560
+ "resolved": "number",
2561
+ "references": {}
2562
+ },
2563
+ "mutable": false,
2564
+ "attr": "total-items",
2565
+ "reflectToAttr": false,
2566
+ "docs": "Total number of items to be displayed across all pages.",
2567
+ "docsTags": [],
2568
+ "values": [
2569
+ {
2570
+ "type": "number"
2571
+ }
2572
+ ],
2573
+ "optional": false,
2574
+ "required": true
2575
+ }
2576
+ ],
2577
+ "methods": [],
2578
+ "events": [
2579
+ {
2580
+ "event": "icItemsPerPageChange",
2581
+ "detail": "{ value: number; }",
2582
+ "bubbles": true,
2583
+ "complexType": {
2584
+ "original": "{ value: number }",
2585
+ "resolved": "{ value: number; }",
2586
+ "references": {}
2587
+ },
2588
+ "cancelable": true,
2589
+ "composed": true,
2590
+ "docs": "Emitted when the items per page option is changed.",
2591
+ "docsTags": []
2592
+ },
2593
+ {
2594
+ "event": "icPageChange",
2595
+ "detail": "{ value: number; }",
2596
+ "bubbles": true,
2597
+ "complexType": {
2598
+ "original": "{ value: number }",
2599
+ "resolved": "{ value: number; }",
2600
+ "references": {}
2601
+ },
2602
+ "cancelable": true,
2603
+ "composed": true,
2604
+ "docs": "Emitted when a page is navigated to via the 'go to' input.",
2605
+ "docsTags": []
2606
+ }
2607
+ ],
2608
+ "listeners": [
2609
+ {
2610
+ "event": "icPageChange",
2611
+ "capture": false,
2612
+ "passive": false
2613
+ }
2614
+ ],
2615
+ "styles": [],
2616
+ "slots": [],
2617
+ "parts": [],
2618
+ "dependents": [
2619
+ "ic-data-table"
2620
+ ],
2621
+ "dependencies": [
2622
+ "ic-typography",
2623
+ "ic-select",
2624
+ "ic-pagination",
2625
+ "ic-tooltip",
2626
+ "ic-text-field",
2627
+ "ic-button"
2628
+ ],
2629
+ "dependencyGraph": {
2630
+ "ic-pagination-bar": [
2631
+ "ic-typography",
2632
+ "ic-select",
2633
+ "ic-pagination",
2634
+ "ic-tooltip",
2635
+ "ic-text-field",
2636
+ "ic-button"
2637
+ ],
2638
+ "ic-select": [
2639
+ "ic-input-container",
2640
+ "ic-input-label",
2641
+ "ic-input-component-container",
2642
+ "ic-typography",
2643
+ "ic-button",
2644
+ "ic-menu",
2645
+ "ic-input-validation"
2646
+ ],
2647
+ "ic-input-label": [
2648
+ "ic-typography"
2649
+ ],
2650
+ "ic-button": [
2651
+ "ic-loading-indicator",
2652
+ "ic-tooltip"
2653
+ ],
2654
+ "ic-loading-indicator": [
2655
+ "ic-typography"
2656
+ ],
2657
+ "ic-tooltip": [
2658
+ "ic-typography"
2659
+ ],
2660
+ "ic-menu": [
2661
+ "ic-loading-indicator",
2662
+ "ic-typography",
2663
+ "ic-button"
2664
+ ],
2665
+ "ic-input-validation": [
2666
+ "ic-typography"
2667
+ ],
2668
+ "ic-pagination": [
2669
+ "ic-button",
2670
+ "ic-pagination-item"
2671
+ ],
2672
+ "ic-pagination-item": [
2673
+ "ic-typography"
2674
+ ],
2675
+ "ic-text-field": [
2676
+ "ic-input-container",
2677
+ "ic-input-label",
2678
+ "ic-input-component-container",
2679
+ "ic-input-validation",
2680
+ "ic-typography"
2681
+ ],
2682
+ "ic-data-table": [
2683
+ "ic-pagination-bar"
2684
+ ]
2685
+ }
2686
+ },
2687
+ {
2688
+ "filePath": "src/components/ic-select-with-multi/ic-select.tsx",
2689
+ "encapsulation": "shadow",
2690
+ "tag": "ic-select-with-multi",
2691
+ "readme": "# ic-select\n\n\n",
2692
+ "docs": "",
2693
+ "docsTags": [],
2694
+ "usage": {},
2695
+ "props": [
2696
+ {
2697
+ "name": "charactersUntilSuggestions",
2698
+ "type": "number",
2699
+ "complexType": {
2700
+ "original": "number",
2701
+ "resolved": "number",
2702
+ "references": {}
2703
+ },
2704
+ "mutable": false,
2705
+ "attr": "characters-until-suggestions",
2706
+ "reflectToAttr": false,
2707
+ "docs": "**[DEPRECATED]** This prop should not be used anymore.",
2708
+ "docsTags": [],
2709
+ "default": "0",
2710
+ "values": [
2711
+ {
2712
+ "type": "number"
2713
+ }
2714
+ ],
2715
+ "optional": true,
2716
+ "required": false
2717
+ },
2718
+ {
2719
+ "name": "debounce",
2720
+ "type": "number",
2721
+ "complexType": {
2722
+ "original": "number",
2723
+ "resolved": "number",
2724
+ "references": {}
2725
+ },
2726
+ "mutable": false,
2727
+ "attr": "debounce",
2728
+ "reflectToAttr": false,
2729
+ "docs": "The amount of time, in milliseconds, to wait to trigger the `icChange` event after each keystroke.",
2730
+ "docsTags": [],
2731
+ "default": "0",
2732
+ "values": [
2733
+ {
2734
+ "type": "number"
2735
+ }
2736
+ ],
2737
+ "optional": true,
2738
+ "required": false
2739
+ },
2740
+ {
2741
+ "name": "disableFilter",
2742
+ "type": "boolean",
2743
+ "complexType": {
2744
+ "original": "boolean",
2745
+ "resolved": "boolean",
2746
+ "references": {}
2747
+ },
2748
+ "mutable": false,
2749
+ "attr": "disable-filter",
2750
+ "reflectToAttr": false,
2751
+ "docs": "If `true`, the built in filtering will be disabled for a searchable variant. For example, if options will already be filtered from external source.",
2752
+ "docsTags": [],
2753
+ "default": "false",
2754
+ "values": [
2755
+ {
2756
+ "type": "boolean"
2757
+ }
2758
+ ],
2759
+ "optional": true,
2760
+ "required": false
2761
+ },
2762
+ {
2763
+ "name": "disabled",
2764
+ "type": "boolean",
2765
+ "complexType": {
2766
+ "original": "boolean",
2767
+ "resolved": "boolean",
2768
+ "references": {}
2769
+ },
2770
+ "mutable": false,
2771
+ "attr": "disabled",
2772
+ "reflectToAttr": true,
2773
+ "docs": "If `true`, the disabled state will be set.",
2774
+ "docsTags": [],
2775
+ "default": "false",
2776
+ "values": [
2777
+ {
2778
+ "type": "boolean"
2779
+ }
2780
+ ],
2781
+ "optional": true,
2782
+ "required": false
2783
+ },
2784
+ {
2785
+ "name": "emptyOptionListText",
2786
+ "type": "string",
2787
+ "complexType": {
2788
+ "original": "string",
2789
+ "resolved": "string",
2790
+ "references": {}
2791
+ },
2792
+ "mutable": false,
2793
+ "attr": "empty-option-list-text",
2794
+ "reflectToAttr": false,
2795
+ "docs": "The text displayed when there are no options in the option list.",
2796
+ "docsTags": [],
2797
+ "default": "\"No results found\"",
2798
+ "values": [
2799
+ {
2800
+ "type": "string"
2801
+ }
2802
+ ],
2803
+ "optional": false,
2804
+ "required": false
2805
+ },
2806
+ {
2807
+ "name": "form",
2808
+ "type": "string",
2809
+ "complexType": {
2810
+ "original": "string",
2811
+ "resolved": "string",
2812
+ "references": {}
2813
+ },
2814
+ "mutable": false,
2815
+ "attr": "form",
2816
+ "reflectToAttr": false,
2817
+ "docs": "The <form> element to associate the select with.",
2818
+ "docsTags": [],
2819
+ "values": [
2820
+ {
2821
+ "type": "string"
2822
+ }
2823
+ ],
2824
+ "optional": true,
2825
+ "required": false
2826
+ },
2827
+ {
2828
+ "name": "formaction",
2829
+ "type": "string",
2830
+ "complexType": {
2831
+ "original": "string",
2832
+ "resolved": "string",
2833
+ "references": {}
2834
+ },
2835
+ "mutable": false,
2836
+ "attr": "formaction",
2837
+ "reflectToAttr": false,
2838
+ "docs": "The URL that processes the information submitted by the select. It overrides the action attribute of the select's form owner. Does nothing if there is no form owner.\nThis prop should only be used with searchable select and will only be applied if searchable is true.",
2839
+ "docsTags": [],
2840
+ "values": [
2841
+ {
2842
+ "type": "string"
2843
+ }
2844
+ ],
2845
+ "optional": true,
2846
+ "required": false
2847
+ },
2848
+ {
2849
+ "name": "formenctype",
2850
+ "type": "string",
2851
+ "complexType": {
2852
+ "original": "string",
2853
+ "resolved": "string",
2854
+ "references": {}
2855
+ },
2856
+ "mutable": false,
2857
+ "attr": "formenctype",
2858
+ "reflectToAttr": false,
2859
+ "docs": "The way the submitted form data is encoded. This prop should only be used with searchable select and will only be applied if searchable is true.",
2860
+ "docsTags": [],
2861
+ "values": [
2862
+ {
2863
+ "type": "string"
2864
+ }
2865
+ ],
2866
+ "optional": true,
2867
+ "required": false
2868
+ },
2869
+ {
2870
+ "name": "formmethod",
2871
+ "type": "string",
2872
+ "complexType": {
2873
+ "original": "string",
2874
+ "resolved": "string",
2875
+ "references": {}
2876
+ },
2877
+ "mutable": false,
2878
+ "attr": "formmethod",
2879
+ "reflectToAttr": false,
2880
+ "docs": "The HTTP method used to submit the form. This prop should only be used with searchable select and will only be applied if searchable is true.",
2881
+ "docsTags": [],
2882
+ "values": [
2883
+ {
2884
+ "type": "string"
2885
+ }
2886
+ ],
2887
+ "optional": true,
2888
+ "required": false
2889
+ },
2890
+ {
2891
+ "name": "formnovalidate",
2892
+ "type": "boolean",
2893
+ "complexType": {
2894
+ "original": "boolean",
2895
+ "resolved": "boolean",
2896
+ "references": {}
2897
+ },
2898
+ "mutable": false,
2899
+ "attr": "formnovalidate",
2900
+ "reflectToAttr": false,
2901
+ "docs": "If `true`, the form will not be validated when submitted. This prop should only be used with searchable select and will only be applied if searchable is true.",
2902
+ "docsTags": [],
2903
+ "values": [
2904
+ {
2905
+ "type": "boolean"
2906
+ }
2907
+ ],
2908
+ "optional": true,
2909
+ "required": false
2910
+ },
2911
+ {
2912
+ "name": "formtarget",
2913
+ "type": "string",
2914
+ "complexType": {
2915
+ "original": "string",
2916
+ "resolved": "string",
2917
+ "references": {}
2918
+ },
2919
+ "mutable": false,
2920
+ "attr": "formtarget",
2921
+ "reflectToAttr": false,
2922
+ "docs": "The place to display the response from submitting the form. It overrides the target attribute of the select's form owner.\nThis prop should only be used with searchable select and will only be applied if searchable is true.",
2923
+ "docsTags": [],
2924
+ "values": [
2925
+ {
2926
+ "type": "string"
2927
+ }
2928
+ ],
2929
+ "optional": true,
2930
+ "required": false
2931
+ },
2932
+ {
2933
+ "name": "fullWidth",
2934
+ "type": "boolean",
2935
+ "complexType": {
2936
+ "original": "boolean",
2937
+ "resolved": "boolean",
2938
+ "references": {}
2939
+ },
2940
+ "mutable": false,
2941
+ "attr": "full-width",
2942
+ "reflectToAttr": false,
2943
+ "docs": "If `true`, the select element will fill the width of the container. This prop should only be used with searchable select and will only be applied if searchable is true.",
2944
+ "docsTags": [],
2945
+ "default": "false",
2946
+ "values": [
2947
+ {
2948
+ "type": "boolean"
2949
+ }
2950
+ ],
2951
+ "optional": false,
2952
+ "required": false
2953
+ },
2954
+ {
2955
+ "name": "helperText",
2956
+ "type": "string",
2957
+ "complexType": {
2958
+ "original": "string",
2959
+ "resolved": "string",
2960
+ "references": {}
2961
+ },
2962
+ "mutable": false,
2963
+ "attr": "helper-text",
2964
+ "reflectToAttr": false,
2965
+ "docs": "The helper text that will be displayed for additional field guidance.",
2966
+ "docsTags": [],
2967
+ "default": "\"\"",
2968
+ "values": [
2969
+ {
2970
+ "type": "string"
2971
+ }
2972
+ ],
2973
+ "optional": true,
2974
+ "required": false
2975
+ },
2976
+ {
2977
+ "name": "hideLabel",
2978
+ "type": "boolean",
2979
+ "complexType": {
2980
+ "original": "boolean",
2981
+ "resolved": "boolean",
2982
+ "references": {}
2983
+ },
2984
+ "mutable": false,
2985
+ "attr": "hide-label",
2986
+ "reflectToAttr": false,
2987
+ "docs": "If `true`, the label will be hidden and the required label value will be applied as an aria-label.",
2988
+ "docsTags": [],
2989
+ "default": "false",
2990
+ "values": [
2991
+ {
2992
+ "type": "boolean"
2993
+ }
2994
+ ],
2995
+ "optional": true,
2996
+ "required": false
2997
+ },
2998
+ {
2999
+ "name": "includeDescriptionsInSearch",
3000
+ "type": "boolean",
3001
+ "complexType": {
3002
+ "original": "boolean",
3003
+ "resolved": "boolean",
3004
+ "references": {}
3005
+ },
3006
+ "mutable": false,
3007
+ "attr": "include-descriptions-in-search",
3008
+ "reflectToAttr": false,
3009
+ "docs": "If `true`, descriptions of options will be included when filtering options in a searchable select. Only applies to built in filtering.",
3010
+ "docsTags": [],
3011
+ "default": "false",
3012
+ "values": [
3013
+ {
3014
+ "type": "boolean"
3015
+ }
3016
+ ],
3017
+ "optional": true,
3018
+ "required": false
3019
+ },
3020
+ {
3021
+ "name": "includeGroupTitlesInSearch",
3022
+ "type": "boolean",
3023
+ "complexType": {
3024
+ "original": "boolean",
3025
+ "resolved": "boolean",
3026
+ "references": {}
3027
+ },
3028
+ "mutable": false,
3029
+ "attr": "include-group-titles-in-search",
3030
+ "reflectToAttr": false,
3031
+ "docs": "If `true`, group titles of grouped options will be included when filtering options in a searchable select. Only applies to built in filtering.",
3032
+ "docsTags": [],
3033
+ "default": "false",
3034
+ "values": [
3035
+ {
3036
+ "type": "boolean"
3037
+ }
3038
+ ],
3039
+ "optional": true,
3040
+ "required": false
3041
+ },
3042
+ {
3043
+ "name": "label",
3044
+ "type": "string",
3045
+ "complexType": {
3046
+ "original": "string",
3047
+ "resolved": "string",
3048
+ "references": {}
3049
+ },
3050
+ "mutable": false,
3051
+ "attr": "label",
3052
+ "reflectToAttr": false,
3053
+ "docs": "The label for the select.",
3054
+ "docsTags": [],
3055
+ "values": [
3056
+ {
3057
+ "type": "string"
3058
+ }
3059
+ ],
3060
+ "optional": false,
3061
+ "required": true
3062
+ },
3063
+ {
3064
+ "name": "loading",
3065
+ "type": "boolean",
3066
+ "complexType": {
3067
+ "original": "boolean",
3068
+ "resolved": "boolean",
3069
+ "references": {}
3070
+ },
3071
+ "mutable": true,
3072
+ "attr": "loading",
3073
+ "reflectToAttr": false,
3074
+ "docs": "If `true`, the loading state will be triggered when fetching options asynchronously.",
3075
+ "docsTags": [],
3076
+ "default": "false",
3077
+ "values": [
3078
+ {
3079
+ "type": "boolean"
3080
+ }
3081
+ ],
3082
+ "optional": true,
3083
+ "required": false
3084
+ },
3085
+ {
3086
+ "name": "loadingErrorLabel",
3087
+ "type": "string",
3088
+ "complexType": {
3089
+ "original": "string",
3090
+ "resolved": "string",
3091
+ "references": {}
3092
+ },
3093
+ "mutable": false,
3094
+ "attr": "loading-error-label",
3095
+ "reflectToAttr": false,
3096
+ "docs": "The message displayed when external loading times out.",
3097
+ "docsTags": [],
3098
+ "default": "\"Loading Error\"",
3099
+ "values": [
3100
+ {
3101
+ "type": "string"
3102
+ }
3103
+ ],
3104
+ "optional": true,
3105
+ "required": false
3106
+ },
3107
+ {
3108
+ "name": "loadingLabel",
3109
+ "type": "string",
3110
+ "complexType": {
3111
+ "original": "string",
3112
+ "resolved": "string",
3113
+ "references": {}
3114
+ },
3115
+ "mutable": false,
3116
+ "attr": "loading-label",
3117
+ "reflectToAttr": false,
3118
+ "docs": "The message displayed whilst the options are being loaded externally.",
3119
+ "docsTags": [],
3120
+ "default": "\"Loading...\"",
3121
+ "values": [
3122
+ {
3123
+ "type": "string"
3124
+ }
3125
+ ],
3126
+ "optional": true,
3127
+ "required": false
3128
+ },
3129
+ {
3130
+ "name": "multiple",
3131
+ "type": "boolean",
3132
+ "complexType": {
3133
+ "original": "boolean",
3134
+ "resolved": "boolean",
3135
+ "references": {}
3136
+ },
3137
+ "mutable": false,
3138
+ "attr": "multiple",
3139
+ "reflectToAttr": false,
3140
+ "docs": "If `true`, multiple options can be selected.",
3141
+ "docsTags": [],
3142
+ "default": "false",
3143
+ "values": [
3144
+ {
3145
+ "type": "boolean"
3146
+ }
3147
+ ],
3148
+ "optional": true,
3149
+ "required": false
3150
+ },
3151
+ {
3152
+ "name": "name",
3153
+ "type": "string",
3154
+ "complexType": {
3155
+ "original": "string",
3156
+ "resolved": "string",
3157
+ "references": {}
3158
+ },
3159
+ "mutable": false,
3160
+ "attr": "name",
3161
+ "reflectToAttr": false,
3162
+ "docs": "The name of the control, which is submitted with the form data.",
3163
+ "docsTags": [],
3164
+ "default": "this.inputId",
3165
+ "values": [
3166
+ {
3167
+ "type": "string"
3168
+ }
3169
+ ],
3170
+ "optional": true,
3171
+ "required": false
3172
+ },
3173
+ {
3174
+ "name": "options",
3175
+ "type": "IcMenuOption[]",
3176
+ "complexType": {
3177
+ "original": "IcMenuOption[]",
3178
+ "resolved": "IcMenuOption[]",
3179
+ "references": {
3180
+ "IcMenuOption": {
3181
+ "location": "import",
3182
+ "path": "@ukic/web-components/dist/types/utils/types",
3183
+ "id": "../web-components/dist/types/utils/types.d.ts::IcMenuOption"
3184
+ }
3185
+ }
3186
+ },
3187
+ "mutable": false,
3188
+ "reflectToAttr": false,
3189
+ "docs": "The possible selection options.",
3190
+ "docsTags": [],
3191
+ "default": "[]",
3192
+ "values": [
3193
+ {
3194
+ "type": "IcMenuOption[]"
3195
+ }
3196
+ ],
3197
+ "optional": true,
3198
+ "required": false
3199
+ },
3200
+ {
3201
+ "name": "placeholder",
3202
+ "type": "string",
3203
+ "complexType": {
3204
+ "original": "string",
3205
+ "resolved": "string",
3206
+ "references": {}
3207
+ },
3208
+ "mutable": false,
3209
+ "attr": "placeholder",
3210
+ "reflectToAttr": false,
3211
+ "docs": "The placeholder value to be displayed.",
3212
+ "docsTags": [],
3213
+ "default": "\"Select an option\"",
3214
+ "values": [
3215
+ {
3216
+ "type": "string"
3217
+ }
3218
+ ],
3219
+ "optional": true,
3220
+ "required": false
3221
+ },
3222
+ {
3223
+ "name": "readonly",
3224
+ "type": "boolean",
3225
+ "complexType": {
3226
+ "original": "boolean",
3227
+ "resolved": "boolean",
3228
+ "references": {}
3229
+ },
3230
+ "mutable": false,
3231
+ "attr": "readonly",
3232
+ "reflectToAttr": false,
3233
+ "docs": "If `true`, the readonly state will be set.",
3234
+ "docsTags": [],
3235
+ "default": "false",
3236
+ "values": [
3237
+ {
3238
+ "type": "boolean"
3239
+ }
3240
+ ],
3241
+ "optional": true,
3242
+ "required": false
3243
+ },
3244
+ {
3245
+ "name": "required",
3246
+ "type": "boolean",
3247
+ "complexType": {
3248
+ "original": "boolean",
3249
+ "resolved": "boolean",
3250
+ "references": {}
3251
+ },
3252
+ "mutable": false,
3253
+ "attr": "required",
3254
+ "reflectToAttr": false,
3255
+ "docs": "If `true`, the select will require a value.",
3256
+ "docsTags": [],
3257
+ "default": "false",
3258
+ "values": [
3259
+ {
3260
+ "type": "boolean"
3261
+ }
3262
+ ],
3263
+ "optional": true,
3264
+ "required": false
3265
+ },
3266
+ {
3267
+ "name": "searchMatchPosition",
3268
+ "type": "\"anywhere\" | \"start\"",
3269
+ "complexType": {
3270
+ "original": "IcSearchMatchPositions",
3271
+ "resolved": "\"anywhere\" | \"start\"",
3272
+ "references": {
3273
+ "IcSearchMatchPositions": {
3274
+ "location": "import",
3275
+ "path": "../../utils/types",
3276
+ "id": "src/utils/types.ts::IcSearchMatchPositions"
3277
+ }
3278
+ }
3279
+ },
3280
+ "mutable": false,
3281
+ "attr": "search-match-position",
3282
+ "reflectToAttr": false,
3283
+ "docs": "Whether the search string of the searchable select should match the start of or anywhere in the options. Only applies to built in filtering.",
3284
+ "docsTags": [],
3285
+ "default": "\"anywhere\"",
3286
+ "values": [
3287
+ {
3288
+ "value": "anywhere",
3289
+ "type": "string"
3290
+ },
3291
+ {
3292
+ "value": "start",
3293
+ "type": "string"
3294
+ }
3295
+ ],
3296
+ "optional": true,
3297
+ "required": false
3298
+ },
3299
+ {
3300
+ "name": "searchable",
3301
+ "type": "boolean",
3302
+ "complexType": {
3303
+ "original": "boolean",
3304
+ "resolved": "boolean",
3305
+ "references": {}
3306
+ },
3307
+ "mutable": false,
3308
+ "attr": "searchable",
3309
+ "reflectToAttr": false,
3310
+ "docs": "If `true`, a searchable variant of the select will be displayed which can be typed in to filter options.",
3311
+ "docsTags": [],
3312
+ "default": "false",
3313
+ "values": [
3314
+ {
3315
+ "type": "boolean"
3316
+ }
3317
+ ],
3318
+ "optional": true,
3319
+ "required": false
3320
+ },
3321
+ {
3322
+ "name": "selectOnEnter",
3323
+ "type": "boolean",
3324
+ "complexType": {
3325
+ "original": "boolean",
3326
+ "resolved": "boolean",
3327
+ "references": {}
3328
+ },
3329
+ "mutable": false,
3330
+ "attr": "select-on-enter",
3331
+ "reflectToAttr": false,
3332
+ "docs": "If `true`, the icOptionSelect event will be fired on enter instead of ArrowUp and ArrowDown.",
3333
+ "docsTags": [],
3334
+ "default": "false",
3335
+ "values": [
3336
+ {
3337
+ "type": "boolean"
3338
+ }
3339
+ ],
3340
+ "optional": true,
3341
+ "required": false
3342
+ },
3343
+ {
3344
+ "name": "showClearButton",
3345
+ "type": "boolean",
3346
+ "complexType": {
3347
+ "original": "boolean",
3348
+ "resolved": "boolean",
3349
+ "references": {}
3350
+ },
3351
+ "mutable": false,
3352
+ "attr": "show-clear-button",
3353
+ "reflectToAttr": false,
3354
+ "docs": "If `true`, a button which clears the select input when clicked will be displayed. The button will always appear on the searchable select.",
3355
+ "docsTags": [],
3356
+ "default": "false",
3357
+ "values": [
3358
+ {
3359
+ "type": "boolean"
3360
+ }
3361
+ ],
3362
+ "optional": true,
3363
+ "required": false
3364
+ },
3365
+ {
3366
+ "name": "size",
3367
+ "type": "\"default\" | \"large\" | \"small\"",
3368
+ "complexType": {
3369
+ "original": "IcSizes",
3370
+ "resolved": "\"default\" | \"large\" | \"small\"",
3371
+ "references": {
3372
+ "IcSizes": {
3373
+ "location": "import",
3374
+ "path": "../../utils/types",
3375
+ "id": "src/utils/types.ts::IcSizes"
3376
+ }
3377
+ }
3378
+ },
3379
+ "mutable": false,
3380
+ "attr": "size",
3381
+ "reflectToAttr": false,
3382
+ "docs": "The size of the select.",
3383
+ "docsTags": [],
3384
+ "default": "\"default\"",
3385
+ "values": [
3386
+ {
3387
+ "value": "default",
3388
+ "type": "string"
3389
+ },
3390
+ {
3391
+ "value": "large",
3392
+ "type": "string"
3393
+ },
3394
+ {
3395
+ "value": "small",
3396
+ "type": "string"
3397
+ }
3398
+ ],
3399
+ "optional": true,
3400
+ "required": false
3401
+ },
3402
+ {
3403
+ "name": "small",
3404
+ "type": "boolean",
3405
+ "complexType": {
3406
+ "original": "boolean",
3407
+ "resolved": "boolean",
3408
+ "references": {}
3409
+ },
3410
+ "mutable": false,
3411
+ "attr": "small",
3412
+ "reflectToAttr": false,
3413
+ "docs": "**[DEPRECATED]** This prop should not be used anymore. Set prop `size` to \"small\" instead.",
3414
+ "docsTags": [],
3415
+ "default": "false",
3416
+ "values": [
3417
+ {
3418
+ "type": "boolean"
3419
+ }
3420
+ ],
3421
+ "optional": true,
3422
+ "required": false
3423
+ },
3424
+ {
3425
+ "name": "timeout",
3426
+ "type": "number",
3427
+ "complexType": {
3428
+ "original": "number",
3429
+ "resolved": "number",
3430
+ "references": {}
3431
+ },
3432
+ "mutable": false,
3433
+ "attr": "timeout",
3434
+ "reflectToAttr": false,
3435
+ "docs": "If using external filtering, set a timeout for when loading takes too long.",
3436
+ "docsTags": [],
3437
+ "values": [
3438
+ {
3439
+ "type": "number"
3440
+ }
3441
+ ],
3442
+ "optional": true,
3443
+ "required": false
3444
+ },
3445
+ {
3446
+ "name": "validationStatus",
3447
+ "type": "\"\" | \"error\" | \"success\" | \"warning\"",
3448
+ "complexType": {
3449
+ "original": "IcInformationStatusOrEmpty",
3450
+ "resolved": "\"\" | \"error\" | \"success\" | \"warning\"",
3451
+ "references": {
3452
+ "IcInformationStatusOrEmpty": {
3453
+ "location": "import",
3454
+ "path": "../../utils/types",
3455
+ "id": "src/utils/types.ts::IcInformationStatusOrEmpty"
3456
+ }
3457
+ }
3458
+ },
3459
+ "mutable": false,
3460
+ "attr": "validation-status",
3461
+ "reflectToAttr": false,
3462
+ "docs": "The validation status - e.g. 'error' | 'warning' | 'success'.",
3463
+ "docsTags": [],
3464
+ "default": "\"\"",
3465
+ "values": [
3466
+ {
3467
+ "type": "\"\""
3468
+ },
3469
+ {
3470
+ "value": "error",
3471
+ "type": "string"
3472
+ },
3473
+ {
3474
+ "value": "success",
3475
+ "type": "string"
3476
+ },
3477
+ {
3478
+ "value": "warning",
3479
+ "type": "string"
3480
+ }
3481
+ ],
3482
+ "optional": true,
3483
+ "required": false
3484
+ },
3485
+ {
3486
+ "name": "validationText",
3487
+ "type": "string",
3488
+ "complexType": {
3489
+ "original": "string",
3490
+ "resolved": "string",
3491
+ "references": {}
3492
+ },
3493
+ "mutable": false,
3494
+ "attr": "validation-text",
3495
+ "reflectToAttr": false,
3496
+ "docs": "The text to display as the validation message.",
3497
+ "docsTags": [],
3498
+ "default": "\"\"",
3499
+ "values": [
3500
+ {
3501
+ "type": "string"
3502
+ }
3503
+ ],
3504
+ "optional": true,
3505
+ "required": false
3506
+ },
3507
+ {
3508
+ "name": "value",
3509
+ "type": "string | string[]",
3510
+ "complexType": {
3511
+ "original": "string | string[]",
3512
+ "resolved": "string | string[]",
3513
+ "references": {}
3514
+ },
3515
+ "mutable": true,
3516
+ "attr": "value",
3517
+ "reflectToAttr": false,
3518
+ "docs": "The value of the select, reflected by the value of the currently selected option.\nFor the searchable variant, the value is also reflected by the user input.\nFor the multi-select variant, the value must be an array of option values.",
3519
+ "docsTags": [],
3520
+ "values": [
3521
+ {
3522
+ "type": "string"
3523
+ },
3524
+ {
3525
+ "type": "string[]"
3526
+ }
3527
+ ],
3528
+ "optional": true,
3529
+ "required": false
3530
+ }
3531
+ ],
3532
+ "methods": [
3533
+ {
3534
+ "name": "setFocus",
3535
+ "returns": {
3536
+ "type": "Promise<void>",
3537
+ "docs": ""
3538
+ },
3539
+ "complexType": {
3540
+ "signature": "() => Promise<void>",
3541
+ "parameters": [],
3542
+ "references": {
3543
+ "Promise": {
3544
+ "location": "global",
3545
+ "id": "global::Promise"
3546
+ }
3547
+ },
3548
+ "return": "Promise<void>"
3549
+ },
3550
+ "signature": "setFocus() => Promise<void>",
3551
+ "parameters": [],
3552
+ "docs": "Sets focus on the input box.",
3553
+ "docsTags": []
3554
+ }
3555
+ ],
3556
+ "events": [
3557
+ {
3558
+ "event": "icBlur",
3559
+ "detail": "void",
3560
+ "bubbles": true,
3561
+ "complexType": {
3562
+ "original": "void",
3563
+ "resolved": "void",
3564
+ "references": {}
3565
+ },
3566
+ "cancelable": true,
3567
+ "composed": true,
3568
+ "docs": "Emitted when the select loses focus.",
3569
+ "docsTags": []
3570
+ },
3571
+ {
3572
+ "event": "icChange",
3573
+ "detail": "IcValueEventDetail",
3574
+ "bubbles": true,
3575
+ "complexType": {
3576
+ "original": "IcValueEventDetail",
3577
+ "resolved": "IcValueEventDetail",
3578
+ "references": {
3579
+ "IcValueEventDetail": {
3580
+ "location": "import",
3581
+ "path": "../../utils/types",
3582
+ "id": "src/utils/types.ts::IcValueEventDetail"
3583
+ }
3584
+ }
3585
+ },
3586
+ "cancelable": true,
3587
+ "composed": true,
3588
+ "docs": "Emitted when the value changes.",
3589
+ "docsTags": []
3590
+ },
3591
+ {
3592
+ "event": "icClear",
3593
+ "detail": "void",
3594
+ "bubbles": true,
3595
+ "complexType": {
3596
+ "original": "void",
3597
+ "resolved": "void",
3598
+ "references": {}
3599
+ },
3600
+ "cancelable": true,
3601
+ "composed": true,
3602
+ "docs": "Emitted when the clear button is clicked.",
3603
+ "docsTags": []
3604
+ },
3605
+ {
3606
+ "event": "icFocus",
3607
+ "detail": "void",
3608
+ "bubbles": true,
3609
+ "complexType": {
3610
+ "original": "void",
3611
+ "resolved": "void",
3612
+ "references": {}
3613
+ },
3614
+ "cancelable": true,
3615
+ "composed": true,
3616
+ "docs": "Emitted when the select gains focus.",
3617
+ "docsTags": []
3618
+ },
3619
+ {
3620
+ "event": "icInput",
3621
+ "detail": "IcValueEventDetail",
3622
+ "bubbles": true,
3623
+ "complexType": {
3624
+ "original": "IcValueEventDetail",
3625
+ "resolved": "IcValueEventDetail",
3626
+ "references": {
3627
+ "IcValueEventDetail": {
3628
+ "location": "import",
3629
+ "path": "../../utils/types",
3630
+ "id": "src/utils/types.ts::IcValueEventDetail"
3631
+ }
3632
+ }
3633
+ },
3634
+ "cancelable": true,
3635
+ "composed": true,
3636
+ "docs": "Emitted when a keyboard input occurred.",
3637
+ "docsTags": []
3638
+ },
3639
+ {
3640
+ "event": "icOptionDeselect",
3641
+ "detail": "IcOptionSelectEventDetail",
3642
+ "bubbles": true,
3643
+ "complexType": {
3644
+ "original": "IcOptionSelectEventDetail",
3645
+ "resolved": "IcOptionSelectEventDetail",
3646
+ "references": {
3647
+ "IcOptionSelectEventDetail": {
3648
+ "location": "import",
3649
+ "path": "@ukic/web-components/dist/types/components",
3650
+ "id": "../web-components/dist/types/components.d.ts::IcOptionSelectEventDetail"
3651
+ }
3652
+ }
3653
+ },
3654
+ "cancelable": true,
3655
+ "composed": true,
3656
+ "docs": "Emitted when `multiple` is `true` and an option is deselected.",
3657
+ "docsTags": []
3658
+ },
3659
+ {
3660
+ "event": "icOptionSelect",
3661
+ "detail": "IcOptionSelectEventDetail",
3662
+ "bubbles": true,
3663
+ "complexType": {
3664
+ "original": "IcOptionSelectEventDetail",
3665
+ "resolved": "IcOptionSelectEventDetail",
3666
+ "references": {
3667
+ "IcOptionSelectEventDetail": {
3668
+ "location": "import",
3669
+ "path": "@ukic/web-components/dist/types/components",
3670
+ "id": "../web-components/dist/types/components.d.ts::IcOptionSelectEventDetail"
3671
+ }
3672
+ }
3673
+ },
3674
+ "cancelable": true,
3675
+ "composed": true,
3676
+ "docs": "Emitted when an option is selected.\nSelecting an option will also trigger an `icChange/onIcChange` due to the value being updated.",
3677
+ "docsTags": []
3678
+ },
3679
+ {
3680
+ "event": "icRetryLoad",
3681
+ "detail": "IcValueEventDetail",
3682
+ "bubbles": true,
3683
+ "complexType": {
3684
+ "original": "IcValueEventDetail",
3685
+ "resolved": "IcValueEventDetail",
3686
+ "references": {
3687
+ "IcValueEventDetail": {
3688
+ "location": "import",
3689
+ "path": "../../utils/types",
3690
+ "id": "src/utils/types.ts::IcValueEventDetail"
3691
+ }
3692
+ }
3693
+ },
3694
+ "cancelable": true,
3695
+ "composed": true,
3696
+ "docs": "Emitted when the 'retry loading' button is clicked for a searchable variant.",
3697
+ "docsTags": []
3698
+ }
3699
+ ],
3700
+ "listeners": [],
3701
+ "styles": [
3702
+ {
3703
+ "name": "--ic-z-index-menu",
3704
+ "annotation": "prop",
3705
+ "docs": "z-index of select menu"
3706
+ },
3707
+ {
3708
+ "name": "--input-width",
3709
+ "annotation": "prop",
3710
+ "docs": "Width of the input field"
3711
+ },
3712
+ {
3713
+ "name": "--menu-width",
3714
+ "annotation": "prop",
3715
+ "docs": "Width of the dropdown menu"
3716
+ }
3717
+ ],
3718
+ "slots": [],
3719
+ "parts": [],
3720
+ "dependents": [],
3721
+ "dependencies": [
3722
+ "ic-input-container",
3723
+ "ic-input-label",
3724
+ "ic-input-component-container",
3725
+ "ic-typography",
3726
+ "ic-button",
3727
+ "ic-menu-with-multi",
3728
+ "ic-input-validation"
3729
+ ],
3730
+ "dependencyGraph": {
3731
+ "ic-select-with-multi": [
3732
+ "ic-input-container",
3733
+ "ic-input-label",
3734
+ "ic-input-component-container",
3735
+ "ic-typography",
3736
+ "ic-button",
3737
+ "ic-menu-with-multi",
3738
+ "ic-input-validation"
3739
+ ],
3740
+ "ic-input-label": [
3741
+ "ic-typography"
3742
+ ],
3743
+ "ic-button": [
3744
+ "ic-loading-indicator",
3745
+ "ic-tooltip"
3746
+ ],
3747
+ "ic-loading-indicator": [
3748
+ "ic-typography"
3749
+ ],
3750
+ "ic-tooltip": [
3751
+ "ic-typography"
3752
+ ],
3753
+ "ic-menu-with-multi": [
3754
+ "ic-loading-indicator",
3755
+ "ic-typography",
3756
+ "ic-button"
3757
+ ],
3758
+ "ic-input-validation": [
3759
+ "ic-typography"
3760
+ ]
3761
+ }
3762
+ }
3763
+ ],
3764
+ "typeLibrary": {
3765
+ "src/components/ic-data-table/ic-data-table.types.tsx::IcDataTableColumnObject": {
3766
+ "declaration": "{\n key: string;\n title: string;\n dataType: IcDataTableColumnDataTypes;\n columnAlignment?: {\n horizontal?: string;\n vertical?: string;\n };\n cellAlignment?: string;\n emphasis?: string;\n colspan?: number;\n}",
3767
+ "docstring": "",
3768
+ "path": "src/components/ic-data-table/ic-data-table.types.tsx"
3769
+ },
3770
+ "src/components/ic-data-table/ic-data-table.types.tsx::IcDataTableDensityOptions": {
3771
+ "declaration": "export type IcDataTableDensityOptions = \"default\" | \"dense\" | \"spacious\";",
3772
+ "docstring": "",
3773
+ "path": "src/components/ic-data-table/ic-data-table.types.tsx"
3774
+ },
3775
+ "src/components/ic-pagination/ic-pagination.types.ts::IcPaginationTypes": {
3776
+ "declaration": "export type IcPaginationTypes = \"data\" | \"page\";",
3777
+ "docstring": "",
3778
+ "path": "src/components/ic-pagination/ic-pagination.types.ts"
3779
+ },
3780
+ "src/components/ic-pagination/ic-pagination.types.ts::IcPaginationControlTypes": {
3781
+ "declaration": "export type IcPaginationControlTypes = \"simple\" | \"complex\";",
3782
+ "docstring": "",
3783
+ "path": "src/components/ic-pagination/ic-pagination.types.ts"
3784
+ },
3785
+ "src/components/ic-pagination/ic-pagination.types.ts::IcPaginationAlignmentOptions": {
3786
+ "declaration": "export type IcPaginationAlignmentOptions = \"left\" | \"right\" | \"space-between\";",
3787
+ "docstring": "",
3788
+ "path": "src/components/ic-pagination/ic-pagination.types.ts"
3789
+ },
3790
+ "src/components/ic-data-table/ic-data-table.types.tsx::IcDataTableSortOrderOptions": {
3791
+ "declaration": "export type IcDataTableSortOrderOptions =\n | \"unsorted\"\n | \"ascending\"\n | \"descending\";",
3792
+ "docstring": "",
3793
+ "path": "src/components/ic-data-table/ic-data-table.types.tsx"
3794
+ },
3795
+ "../web-components/dist/types/interface.d.ts::IcThemeForeground": {
3796
+ "declaration": "any",
3797
+ "docstring": "",
3798
+ "path": "../web-components/dist/types/interface.d.ts"
3799
+ },
3800
+ "src/utils/types.ts::IcDateFormat": {
3801
+ "declaration": "export type IcDateFormat = \"DD/MM/YYYY\" | \"MM/DD/YYYY\" | \"YYYY/MM/DD\";",
3802
+ "docstring": "",
3803
+ "path": "src/utils/types.ts"
3804
+ },
3805
+ "src/utils/types.ts::IcWeekDays": {
3806
+ "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}",
3807
+ "docstring": "",
3808
+ "path": "src/utils/types.ts"
3809
+ },
3810
+ "src/utils/types.ts::IcSizes": {
3811
+ "declaration": "export type IcSizes = \"default\" | \"large\" | \"small\";",
3812
+ "docstring": "",
3813
+ "path": "src/utils/types.ts"
3814
+ },
3815
+ "src/utils/types.ts::IcInformationStatusOrEmpty": {
3816
+ "declaration": "export type IcInformationStatusOrEmpty = \"warning\" | \"error\" | \"success\" | \"\";",
3817
+ "docstring": "",
3818
+ "path": "src/utils/types.ts"
3819
+ },
3820
+ "../web-components/dist/types/utils/types.d.ts::IcActivationTypes": {
3821
+ "declaration": "export type IcActivationTypes = \"automatic\" | \"manual\";",
3822
+ "docstring": "",
3823
+ "path": "../web-components/dist/types/utils/types.d.ts"
3824
+ },
3825
+ "../web-components/dist/types/components.d.ts::IcSearchBarSearchModes": {
3826
+ "declaration": "any",
3827
+ "docstring": "",
3828
+ "path": "../web-components/dist/types/components.d.ts"
3829
+ },
3830
+ "../web-components/dist/types/utils/types.d.ts::IcMenuOption": {
3831
+ "declaration": "export interface IcMenuOption {\n description?: string;\n disabled?: boolean;\n recommended?: boolean;\n children?: IcMenuOption[];\n loading?: boolean;\n timedOut?: boolean;\n [key: string]: any;\n element?: {\n component: any;\n ariaLabel: string;\n };\n icon?: any;\n}",
3832
+ "docstring": "",
3833
+ "path": "../web-components/dist/types/utils/types.d.ts"
3834
+ },
3835
+ "../web-components/dist/types/components.d.ts::IcMenuOptionIdEventDetail": {
3836
+ "declaration": "any",
3837
+ "docstring": "",
3838
+ "path": "../web-components/dist/types/components.d.ts"
3839
+ },
3840
+ "../web-components/dist/types/components.d.ts::IcOptionSelectEventDetail": {
3841
+ "declaration": "any",
3842
+ "docstring": "",
3843
+ "path": "../web-components/dist/types/components.d.ts"
3844
+ },
3845
+ "../web-components/dist/types/components.d.ts::IcMenuChangeEventDetail": {
3846
+ "declaration": "any",
3847
+ "docstring": "",
3848
+ "path": "../web-components/dist/types/components.d.ts"
3849
+ },
3850
+ "src/utils/types.ts::IcValueEventDetail": {
3851
+ "declaration": "export interface IcValueEventDetail {\n value: string | string[];\n keyPressed?: string;\n}",
3852
+ "docstring": "",
3853
+ "path": "src/utils/types.ts"
3854
+ },
3855
+ "src/utils/types.ts::IcSearchMatchPositions": {
3856
+ "declaration": "export type IcSearchMatchPositions = \"start\" | \"anywhere\";",
3857
+ "docstring": "",
3858
+ "path": "src/utils/types.ts"
3859
+ }
3860
+ }
3861
+ }