@ukic/docs 2.5.1 → 2.6.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (2) hide show
  1. package/docs.json +1351 -104
  2. package/package.json +2 -2
package/docs.json CHANGED
@@ -1,5 +1,5 @@
1
1
  {
2
- "timestamp": "2023-10-10T14:14:57",
2
+ "timestamp": "2023-11-06T14:24:06",
3
3
  "compiler": {
4
4
  "name": "@stencil/core",
5
5
  "version": "4.3.0",
@@ -960,6 +960,28 @@
960
960
  ],
961
961
  "optional": true,
962
962
  "required": false
963
+ },
964
+ {
965
+ "name": "visible",
966
+ "type": "boolean",
967
+ "complexType": {
968
+ "original": "boolean",
969
+ "resolved": "boolean",
970
+ "references": {}
971
+ },
972
+ "mutable": false,
973
+ "attr": "visible",
974
+ "reflectToAttr": false,
975
+ "docs": "If `true`, the badge will be displayed.",
976
+ "docsTags": [],
977
+ "default": "true",
978
+ "values": [
979
+ {
980
+ "type": "boolean"
981
+ }
982
+ ],
983
+ "optional": false,
984
+ "required": false
963
985
  }
964
986
  ],
965
987
  "methods": [
@@ -982,8 +1004,14 @@
982
1004
  },
983
1005
  "signature": "hideBadge() => Promise<void>",
984
1006
  "parameters": [],
985
- "docs": "Use to hide the badge.",
986
- "docsTags": []
1007
+ "docs": "",
1008
+ "docsTags": [
1009
+ {
1010
+ "name": "deprecated",
1011
+ "text": "This method should not be used anymore. Use visible prop to set badge visibility."
1012
+ }
1013
+ ],
1014
+ "deprecation": "This method should not be used anymore. Use visible prop to set badge visibility."
987
1015
  },
988
1016
  {
989
1017
  "name": "showBadge",
@@ -1004,8 +1032,14 @@
1004
1032
  },
1005
1033
  "signature": "showBadge() => Promise<void>",
1006
1034
  "parameters": [],
1007
- "docs": "Use to show the badge.",
1008
- "docsTags": []
1035
+ "docs": "",
1036
+ "docsTags": [
1037
+ {
1038
+ "name": "deprecated",
1039
+ "text": "This method should not be used anymore. Use visible prop to set badge visibility."
1040
+ }
1041
+ ],
1042
+ "deprecation": "This method should not be used anymore. Use visible prop to set badge visibility."
1009
1043
  }
1010
1044
  ],
1011
1045
  "events": [],
@@ -2052,6 +2086,10 @@
2052
2086
  {
2053
2087
  "name": "slot",
2054
2088
  "text": "expanded-content - Content will be placed below the interaction controls but will not initially be rendered."
2089
+ },
2090
+ {
2091
+ "name": "slot",
2092
+ "text": "badge - Badge component overlaying the top right of the card."
2055
2093
  }
2056
2094
  ],
2057
2095
  "usage": {},
@@ -2396,6 +2434,10 @@
2396
2434
  "name": "adornment",
2397
2435
  "docs": "Content will be placed below the card subheading."
2398
2436
  },
2437
+ {
2438
+ "name": "badge",
2439
+ "docs": "Badge component overlaying the top right of the card."
2440
+ },
2399
2441
  {
2400
2442
  "name": "expanded-content",
2401
2443
  "docs": "Content will be placed below the interaction controls but will not initially be rendered."
@@ -2462,7 +2504,12 @@
2462
2504
  "tag": "ic-checkbox",
2463
2505
  "readme": "# ic-checkbox\n\n\n",
2464
2506
  "docs": "",
2465
- "docsTags": [],
2507
+ "docsTags": [
2508
+ {
2509
+ "name": "slot",
2510
+ "text": "additional-field - Content to be displayed alongside a checkbox."
2511
+ }
2512
+ ],
2466
2513
  "usage": {},
2467
2514
  "props": [
2468
2515
  {
@@ -2564,6 +2611,132 @@
2564
2611
  "optional": false,
2565
2612
  "required": false
2566
2613
  },
2614
+ {
2615
+ "name": "form",
2616
+ "type": "string",
2617
+ "complexType": {
2618
+ "original": "string",
2619
+ "resolved": "string",
2620
+ "references": {}
2621
+ },
2622
+ "mutable": false,
2623
+ "attr": "form",
2624
+ "reflectToAttr": false,
2625
+ "docs": "The <form> element to associate the checkbox with.",
2626
+ "docsTags": [],
2627
+ "values": [
2628
+ {
2629
+ "type": "string"
2630
+ }
2631
+ ],
2632
+ "optional": true,
2633
+ "required": false
2634
+ },
2635
+ {
2636
+ "name": "formaction",
2637
+ "type": "string",
2638
+ "complexType": {
2639
+ "original": "string",
2640
+ "resolved": "string",
2641
+ "references": {}
2642
+ },
2643
+ "mutable": false,
2644
+ "attr": "formaction",
2645
+ "reflectToAttr": false,
2646
+ "docs": "The URL that processes the information submitted by the checkbox. It overrides the action attribute of the checkbox's form owner. Does nothing if there is no form owner.",
2647
+ "docsTags": [],
2648
+ "values": [
2649
+ {
2650
+ "type": "string"
2651
+ }
2652
+ ],
2653
+ "optional": true,
2654
+ "required": false
2655
+ },
2656
+ {
2657
+ "name": "formenctype",
2658
+ "type": "string",
2659
+ "complexType": {
2660
+ "original": "string",
2661
+ "resolved": "string",
2662
+ "references": {}
2663
+ },
2664
+ "mutable": false,
2665
+ "attr": "formenctype",
2666
+ "reflectToAttr": false,
2667
+ "docs": "The way the submitted form data is encoded.",
2668
+ "docsTags": [],
2669
+ "values": [
2670
+ {
2671
+ "type": "string"
2672
+ }
2673
+ ],
2674
+ "optional": true,
2675
+ "required": false
2676
+ },
2677
+ {
2678
+ "name": "formmethod",
2679
+ "type": "string",
2680
+ "complexType": {
2681
+ "original": "string",
2682
+ "resolved": "string",
2683
+ "references": {}
2684
+ },
2685
+ "mutable": false,
2686
+ "attr": "formmethod",
2687
+ "reflectToAttr": false,
2688
+ "docs": "The HTTP method used to submit the form.",
2689
+ "docsTags": [],
2690
+ "values": [
2691
+ {
2692
+ "type": "string"
2693
+ }
2694
+ ],
2695
+ "optional": true,
2696
+ "required": false
2697
+ },
2698
+ {
2699
+ "name": "formnovalidate",
2700
+ "type": "boolean",
2701
+ "complexType": {
2702
+ "original": "boolean",
2703
+ "resolved": "boolean",
2704
+ "references": {}
2705
+ },
2706
+ "mutable": false,
2707
+ "attr": "formnovalidate",
2708
+ "reflectToAttr": false,
2709
+ "docs": "If `true`, the form will not be validated when submitted.",
2710
+ "docsTags": [],
2711
+ "values": [
2712
+ {
2713
+ "type": "boolean"
2714
+ }
2715
+ ],
2716
+ "optional": true,
2717
+ "required": false
2718
+ },
2719
+ {
2720
+ "name": "formtarget",
2721
+ "type": "string",
2722
+ "complexType": {
2723
+ "original": "string",
2724
+ "resolved": "string",
2725
+ "references": {}
2726
+ },
2727
+ "mutable": false,
2728
+ "attr": "formtarget",
2729
+ "reflectToAttr": false,
2730
+ "docs": "The place to display the response from submitting the form. It overrides the target attribute of the checkbox's form owner.",
2731
+ "docsTags": [],
2732
+ "values": [
2733
+ {
2734
+ "type": "string"
2735
+ }
2736
+ ],
2737
+ "optional": true,
2738
+ "required": false
2739
+ },
2567
2740
  {
2568
2741
  "name": "groupLabel",
2569
2742
  "type": "string",
@@ -2801,7 +2974,12 @@
2801
2974
  ],
2802
2975
  "listeners": [],
2803
2976
  "styles": [],
2804
- "slots": [],
2977
+ "slots": [
2978
+ {
2979
+ "name": "additional-field",
2980
+ "docs": "Content to be displayed alongside a checkbox."
2981
+ }
2982
+ ],
2805
2983
  "parts": [],
2806
2984
  "dependents": [],
2807
2985
  "dependencies": [
@@ -3166,9 +3344,14 @@
3166
3344
  "mutable": false,
3167
3345
  "attr": "appearance",
3168
3346
  "reflectToAttr": false,
3169
- "docs": "The emphasis of the chip.",
3170
- "docsTags": [],
3171
- "default": "\"filled\"",
3347
+ "docs": "",
3348
+ "docsTags": [
3349
+ {
3350
+ "name": "deprecated",
3351
+ "text": "This prop should not be used anymore. Use variant prop instead."
3352
+ }
3353
+ ],
3354
+ "deprecation": "This prop should not be used anymore. Use variant prop instead.",
3172
3355
  "values": [
3173
3356
  {
3174
3357
  "value": "filled",
@@ -3283,6 +3466,39 @@
3283
3466
  ],
3284
3467
  "optional": true,
3285
3468
  "required": false
3469
+ },
3470
+ {
3471
+ "name": "variant",
3472
+ "type": "\"filled\" | \"outlined\"",
3473
+ "complexType": {
3474
+ "original": "IcEmphasisType",
3475
+ "resolved": "\"filled\" | \"outlined\"",
3476
+ "references": {
3477
+ "IcEmphasisType": {
3478
+ "location": "import",
3479
+ "path": "../../utils/types",
3480
+ "id": "src/utils/types.ts::IcEmphasisType"
3481
+ }
3482
+ }
3483
+ },
3484
+ "mutable": false,
3485
+ "attr": "variant",
3486
+ "reflectToAttr": false,
3487
+ "docs": "The emphasis of the chip.",
3488
+ "docsTags": [],
3489
+ "default": "\"filled\"",
3490
+ "values": [
3491
+ {
3492
+ "value": "filled",
3493
+ "type": "string"
3494
+ },
3495
+ {
3496
+ "value": "outlined",
3497
+ "type": "string"
3498
+ }
3499
+ ],
3500
+ "optional": true,
3501
+ "required": false
3286
3502
  }
3287
3503
  ],
3288
3504
  "methods": [
@@ -3550,7 +3766,12 @@
3550
3766
  "tag": "ic-data-entity",
3551
3767
  "readme": "# ic-data-entity\n\n\n",
3552
3768
  "docs": "",
3553
- "docsTags": [],
3769
+ "docsTags": [
3770
+ {
3771
+ "name": "slot",
3772
+ "text": "heading - Content will be placed at the top of the data entity."
3773
+ }
3774
+ ],
3554
3775
  "usage": {},
3555
3776
  "props": [
3556
3777
  {
@@ -3574,6 +3795,39 @@
3574
3795
  "optional": false,
3575
3796
  "required": false
3576
3797
  },
3798
+ {
3799
+ "name": "size",
3800
+ "type": "\"default\" | \"small\"",
3801
+ "complexType": {
3802
+ "original": "IcSizesNoLarge",
3803
+ "resolved": "\"default\" | \"small\"",
3804
+ "references": {
3805
+ "IcSizesNoLarge": {
3806
+ "location": "import",
3807
+ "path": "../../utils/types",
3808
+ "id": "src/utils/types.ts::IcSizesNoLarge"
3809
+ }
3810
+ }
3811
+ },
3812
+ "mutable": false,
3813
+ "attr": "size",
3814
+ "reflectToAttr": false,
3815
+ "docs": "The size of the data entity component.",
3816
+ "docsTags": [],
3817
+ "default": "\"default\"",
3818
+ "values": [
3819
+ {
3820
+ "value": "default",
3821
+ "type": "string"
3822
+ },
3823
+ {
3824
+ "value": "small",
3825
+ "type": "string"
3826
+ }
3827
+ ],
3828
+ "optional": true,
3829
+ "required": false
3830
+ },
3577
3831
  {
3578
3832
  "name": "small",
3579
3833
  "type": "boolean",
@@ -3585,15 +3839,21 @@
3585
3839
  "mutable": false,
3586
3840
  "attr": "small",
3587
3841
  "reflectToAttr": false,
3588
- "docs": "If `true`, the small styling will be applied to the data heading and all child data rows.",
3589
- "docsTags": [],
3842
+ "docs": "",
3843
+ "docsTags": [
3844
+ {
3845
+ "name": "deprecated",
3846
+ "text": "This prop should not be used anymore. Set prop `size` to \"small\" instead."
3847
+ }
3848
+ ],
3590
3849
  "default": "false",
3850
+ "deprecation": "This prop should not be used anymore. Set prop `size` to \"small\" instead.",
3591
3851
  "values": [
3592
3852
  {
3593
3853
  "type": "boolean"
3594
3854
  }
3595
3855
  ],
3596
- "optional": false,
3856
+ "optional": true,
3597
3857
  "required": false
3598
3858
  }
3599
3859
  ],
@@ -3601,7 +3861,12 @@
3601
3861
  "events": [],
3602
3862
  "listeners": [],
3603
3863
  "styles": [],
3604
- "slots": [],
3864
+ "slots": [
3865
+ {
3866
+ "name": "heading",
3867
+ "docs": "Content will be placed at the top of the data entity."
3868
+ }
3869
+ ],
3605
3870
  "parts": [],
3606
3871
  "dependents": [],
3607
3872
  "dependencies": [
@@ -3656,6 +3921,39 @@
3656
3921
  "optional": false,
3657
3922
  "required": false
3658
3923
  },
3924
+ {
3925
+ "name": "size",
3926
+ "type": "\"default\" | \"small\"",
3927
+ "complexType": {
3928
+ "original": "IcSizesNoLarge",
3929
+ "resolved": "\"default\" | \"small\"",
3930
+ "references": {
3931
+ "IcSizesNoLarge": {
3932
+ "location": "import",
3933
+ "path": "../../utils/types",
3934
+ "id": "src/utils/types.ts::IcSizesNoLarge"
3935
+ }
3936
+ }
3937
+ },
3938
+ "mutable": false,
3939
+ "attr": "size",
3940
+ "reflectToAttr": false,
3941
+ "docs": "The size of the data row component.",
3942
+ "docsTags": [],
3943
+ "default": "\"default\"",
3944
+ "values": [
3945
+ {
3946
+ "value": "default",
3947
+ "type": "string"
3948
+ },
3949
+ {
3950
+ "value": "small",
3951
+ "type": "string"
3952
+ }
3953
+ ],
3954
+ "optional": true,
3955
+ "required": false
3956
+ },
3659
3957
  {
3660
3958
  "name": "small",
3661
3959
  "type": "boolean",
@@ -3667,15 +3965,21 @@
3667
3965
  "mutable": false,
3668
3966
  "attr": "small",
3669
3967
  "reflectToAttr": false,
3670
- "docs": "If `true`, the small styling will be applied to the row. This is automatically applied if small is set on the parent data heading.",
3671
- "docsTags": [],
3968
+ "docs": "",
3969
+ "docsTags": [
3970
+ {
3971
+ "name": "deprecated",
3972
+ "text": "This prop should not be used anymore. Set prop `size` to \"small\" instead."
3973
+ }
3974
+ ],
3672
3975
  "default": "false",
3976
+ "deprecation": "This prop should not be used anymore. Set prop `size` to \"small\" instead.",
3673
3977
  "values": [
3674
3978
  {
3675
3979
  "type": "boolean"
3676
3980
  }
3677
3981
  ],
3678
- "optional": false,
3982
+ "optional": true,
3679
3983
  "required": false
3680
3984
  },
3681
3985
  {
@@ -3747,6 +4051,10 @@
3747
4051
  {
3748
4052
  "name": "slot",
3749
4053
  "text": "label - Content will be placed above the dialog heading."
4054
+ },
4055
+ {
4056
+ "name": "slot",
4057
+ "text": "alert - Content will be placed at the top of the content area of the dialog."
3750
4058
  }
3751
4059
  ],
3752
4060
  "usage": {},
@@ -3762,8 +4070,14 @@
3762
4070
  "mutable": false,
3763
4071
  "attr": "alert-heading",
3764
4072
  "reflectToAttr": false,
3765
- "docs": "If a status is set, sets the heading for the displayed alert.",
3766
- "docsTags": [],
4073
+ "docs": "",
4074
+ "docsTags": [
4075
+ {
4076
+ "name": "deprecated",
4077
+ "text": "This prop should not be used anymore. Use an ic-alert/IcAlert component within an alert slot with a heading instead."
4078
+ }
4079
+ ],
4080
+ "deprecation": "This prop should not be used anymore. Use an ic-alert/IcAlert component within an alert slot with a heading instead.",
3767
4081
  "values": [
3768
4082
  {
3769
4083
  "type": "string"
@@ -3783,8 +4097,14 @@
3783
4097
  "mutable": false,
3784
4098
  "attr": "alert-message",
3785
4099
  "reflectToAttr": false,
3786
- "docs": "If a status is set, sets the message for the displayed alert.",
3787
- "docsTags": [],
4100
+ "docs": "",
4101
+ "docsTags": [
4102
+ {
4103
+ "name": "deprecated",
4104
+ "text": "This prop should not be used anymore. Use an ic-alert/IcAlert component within an alert slot with a message instead."
4105
+ }
4106
+ ],
4107
+ "deprecation": "This prop should not be used anymore. Use an ic-alert/IcAlert component within an alert slot with a message instead.",
3788
4108
  "values": [
3789
4109
  {
3790
4110
  "type": "string"
@@ -3944,6 +4264,28 @@
3944
4264
  "optional": true,
3945
4265
  "required": false
3946
4266
  },
4267
+ {
4268
+ "name": "open",
4269
+ "type": "boolean",
4270
+ "complexType": {
4271
+ "original": "boolean",
4272
+ "resolved": "boolean",
4273
+ "references": {}
4274
+ },
4275
+ "mutable": true,
4276
+ "attr": "open",
4277
+ "reflectToAttr": true,
4278
+ "docs": "If `true`, the dialog will be displayed.",
4279
+ "docsTags": [],
4280
+ "default": "undefined",
4281
+ "values": [
4282
+ {
4283
+ "type": "boolean"
4284
+ }
4285
+ ],
4286
+ "optional": false,
4287
+ "required": false
4288
+ },
3947
4289
  {
3948
4290
  "name": "size",
3949
4291
  "type": "\"large\" | \"medium\" | \"small\"",
@@ -3986,8 +4328,14 @@
3986
4328
  "mutable": false,
3987
4329
  "attr": "status",
3988
4330
  "reflectToAttr": false,
3989
- "docs": "If set, displays an alert of the corresponding variant below the heading.",
3990
- "docsTags": [],
4331
+ "docs": "",
4332
+ "docsTags": [
4333
+ {
4334
+ "name": "deprecated",
4335
+ "text": "This prop should not be used anymore. Use an ic-alert/IcAlert component within an alert slot with a variant instead."
4336
+ }
4337
+ ],
4338
+ "deprecation": "This prop should not be used anymore. Use an ic-alert/IcAlert component within an alert slot with a variant instead.",
3991
4339
  "values": [
3992
4340
  {
3993
4341
  "value": "error",
@@ -4078,8 +4426,14 @@
4078
4426
  },
4079
4427
  "signature": "hideDialog() => Promise<void>",
4080
4428
  "parameters": [],
4081
- "docs": "Use to hide the dialog.",
4082
- "docsTags": []
4429
+ "docs": "",
4430
+ "docsTags": [
4431
+ {
4432
+ "name": "deprecated",
4433
+ "text": "This method should not be used anymore. Use open prop to set dialog visibility."
4434
+ }
4435
+ ],
4436
+ "deprecation": "This method should not be used anymore. Use open prop to set dialog visibility."
4083
4437
  },
4084
4438
  {
4085
4439
  "name": "showDialog",
@@ -4100,8 +4454,14 @@
4100
4454
  },
4101
4455
  "signature": "showDialog() => Promise<void>",
4102
4456
  "parameters": [],
4103
- "docs": "Use to show the dialog.",
4104
- "docsTags": []
4457
+ "docs": "",
4458
+ "docsTags": [
4459
+ {
4460
+ "name": "deprecated",
4461
+ "text": "This method should not be used anymore. Use open prop to set dialog visibility."
4462
+ }
4463
+ ],
4464
+ "deprecation": "This method should not be used anymore. Use open prop to set dialog visibility."
4105
4465
  }
4106
4466
  ],
4107
4467
  "events": [
@@ -4183,6 +4543,10 @@
4183
4543
  }
4184
4544
  ],
4185
4545
  "slots": [
4546
+ {
4547
+ "name": "alert",
4548
+ "docs": "Content will be placed at the top of the content area of the dialog."
4549
+ },
4186
4550
  {
4187
4551
  "name": "dialog-controls",
4188
4552
  "docs": "Content will be place at the bottom of the dialog."
@@ -4271,6 +4635,18 @@
4271
4635
  {
4272
4636
  "name": "slot",
4273
4637
  "text": "actions - Content is placed at the bottom below all other content."
4638
+ },
4639
+ {
4640
+ "name": "slot",
4641
+ "text": "heading - Content will be rendered in place of the heading prop."
4642
+ },
4643
+ {
4644
+ "name": "slot",
4645
+ "text": "subheading - Content will be rendered in place of the subheading prop."
4646
+ },
4647
+ {
4648
+ "name": "slot",
4649
+ "text": "body - Content will be rendered in place of the body prop."
4274
4650
  }
4275
4651
  ],
4276
4652
  "usage": {},
@@ -4372,8 +4748,8 @@
4372
4748
  "type": "string"
4373
4749
  }
4374
4750
  ],
4375
- "optional": false,
4376
- "required": true
4751
+ "optional": true,
4752
+ "required": false
4377
4753
  },
4378
4754
  {
4379
4755
  "name": "imageSize",
@@ -4443,9 +4819,21 @@
4443
4819
  "name": "actions",
4444
4820
  "docs": "Content is placed at the bottom below all other content."
4445
4821
  },
4822
+ {
4823
+ "name": "body",
4824
+ "docs": "Content will be rendered in place of the body prop."
4825
+ },
4826
+ {
4827
+ "name": "heading",
4828
+ "docs": "Content will be rendered in place of the heading prop."
4829
+ },
4446
4830
  {
4447
4831
  "name": "image",
4448
4832
  "docs": "Content is placed at the top above all other content."
4833
+ },
4834
+ {
4835
+ "name": "subheading",
4836
+ "docs": "Content will be rendered in place of the subheading prop."
4449
4837
  }
4450
4838
  ],
4451
4839
  "parts": [],
@@ -5161,6 +5549,39 @@
5161
5549
  "optional": true,
5162
5550
  "required": false
5163
5551
  },
5552
+ {
5553
+ "name": "size",
5554
+ "type": "\"default\" | \"small\"",
5555
+ "complexType": {
5556
+ "original": "IcSizesNoLarge",
5557
+ "resolved": "\"default\" | \"small\"",
5558
+ "references": {
5559
+ "IcSizesNoLarge": {
5560
+ "location": "import",
5561
+ "path": "../../utils/types",
5562
+ "id": "src/utils/types.ts::IcSizesNoLarge"
5563
+ }
5564
+ }
5565
+ },
5566
+ "mutable": false,
5567
+ "attr": "size",
5568
+ "reflectToAttr": false,
5569
+ "docs": "The size of the hero component.",
5570
+ "docsTags": [],
5571
+ "default": "\"default\"",
5572
+ "values": [
5573
+ {
5574
+ "value": "default",
5575
+ "type": "string"
5576
+ },
5577
+ {
5578
+ "value": "small",
5579
+ "type": "string"
5580
+ }
5581
+ ],
5582
+ "optional": true,
5583
+ "required": false
5584
+ },
5164
5585
  {
5165
5586
  "name": "small",
5166
5587
  "type": "boolean",
@@ -5172,15 +5593,21 @@
5172
5593
  "mutable": false,
5173
5594
  "attr": "small",
5174
5595
  "reflectToAttr": false,
5175
- "docs": "If `true`, the small styling will be applied to the hero.",
5176
- "docsTags": [],
5596
+ "docs": "",
5597
+ "docsTags": [
5598
+ {
5599
+ "name": "deprecated",
5600
+ "text": "This prop should not be used anymore. Set prop `size` to \"small\" instead."
5601
+ }
5602
+ ],
5177
5603
  "default": "false",
5604
+ "deprecation": "This prop should not be used anymore. Set prop `size` to \"small\" instead.",
5178
5605
  "values": [
5179
5606
  {
5180
5607
  "type": "boolean"
5181
5608
  }
5182
5609
  ],
5183
- "optional": false,
5610
+ "optional": true,
5184
5611
  "required": false
5185
5612
  },
5186
5613
  {
@@ -5353,6 +5780,33 @@
5353
5780
  ],
5354
5781
  "usage": {},
5355
5782
  "props": [
5783
+ {
5784
+ "name": "appearance",
5785
+ "type": "\"dark\" | \"default\"",
5786
+ "complexType": {
5787
+ "original": "\"dark\" | \"default\"",
5788
+ "resolved": "\"dark\" | \"default\"",
5789
+ "references": {}
5790
+ },
5791
+ "mutable": false,
5792
+ "attr": "appearance",
5793
+ "reflectToAttr": false,
5794
+ "docs": "The appearance of the input component container.",
5795
+ "docsTags": [],
5796
+ "default": "\"default\"",
5797
+ "values": [
5798
+ {
5799
+ "value": "dark",
5800
+ "type": "string"
5801
+ },
5802
+ {
5803
+ "value": "default",
5804
+ "type": "string"
5805
+ }
5806
+ ],
5807
+ "optional": true,
5808
+ "required": false
5809
+ },
5356
5810
  {
5357
5811
  "name": "dark",
5358
5812
  "type": "boolean",
@@ -5364,9 +5818,15 @@
5364
5818
  "mutable": false,
5365
5819
  "attr": "dark",
5366
5820
  "reflectToAttr": false,
5367
- "docs": "If `true`, the dark variant of the input component container will be displayed.",
5368
- "docsTags": [],
5821
+ "docs": "",
5822
+ "docsTags": [
5823
+ {
5824
+ "name": "deprecated",
5825
+ "text": "This prop should not be used anymore. Set prop `appearance` to \"dark\" instead."
5826
+ }
5827
+ ],
5369
5828
  "default": "false",
5829
+ "deprecation": "This prop should not be used anymore. Set prop `appearance` to \"dark\" instead.",
5370
5830
  "values": [
5371
5831
  {
5372
5832
  "type": "boolean"
@@ -5463,6 +5923,39 @@
5463
5923
  "optional": false,
5464
5924
  "required": false
5465
5925
  },
5926
+ {
5927
+ "name": "size",
5928
+ "type": "\"default\" | \"small\"",
5929
+ "complexType": {
5930
+ "original": "IcSizesNoLarge",
5931
+ "resolved": "\"default\" | \"small\"",
5932
+ "references": {
5933
+ "IcSizesNoLarge": {
5934
+ "location": "import",
5935
+ "path": "../../utils/types",
5936
+ "id": "src/utils/types.ts::IcSizesNoLarge"
5937
+ }
5938
+ }
5939
+ },
5940
+ "mutable": false,
5941
+ "attr": "size",
5942
+ "reflectToAttr": false,
5943
+ "docs": "The size of the input component container component.",
5944
+ "docsTags": [],
5945
+ "default": "\"default\"",
5946
+ "values": [
5947
+ {
5948
+ "value": "default",
5949
+ "type": "string"
5950
+ },
5951
+ {
5952
+ "value": "small",
5953
+ "type": "string"
5954
+ }
5955
+ ],
5956
+ "optional": true,
5957
+ "required": false
5958
+ },
5466
5959
  {
5467
5960
  "name": "small",
5468
5961
  "type": "boolean",
@@ -5474,15 +5967,21 @@
5474
5967
  "mutable": false,
5475
5968
  "attr": "small",
5476
5969
  "reflectToAttr": false,
5477
- "docs": "If `true`, the small styling will be applied to the input component container.",
5478
- "docsTags": [],
5970
+ "docs": "",
5971
+ "docsTags": [
5972
+ {
5973
+ "name": "deprecated",
5974
+ "text": "This prop should not be used anymore. Set prop `size` to \"small\" instead."
5975
+ }
5976
+ ],
5479
5977
  "default": "false",
5978
+ "deprecation": "This prop should not be used anymore. Set prop `size` to \"small\" instead.",
5480
5979
  "values": [
5481
5980
  {
5482
5981
  "type": "boolean"
5483
5982
  }
5484
5983
  ],
5485
- "optional": false,
5984
+ "optional": true,
5486
5985
  "required": false
5487
5986
  },
5488
5987
  {
@@ -5662,6 +6161,33 @@
5662
6161
  "docsTags": [],
5663
6162
  "usage": {},
5664
6163
  "props": [
6164
+ {
6165
+ "name": "appearance",
6166
+ "type": "\"dark\" | \"default\"",
6167
+ "complexType": {
6168
+ "original": "\"dark\" | \"default\"",
6169
+ "resolved": "\"dark\" | \"default\"",
6170
+ "references": {}
6171
+ },
6172
+ "mutable": false,
6173
+ "attr": "appearance",
6174
+ "reflectToAttr": false,
6175
+ "docs": "The appearance of the input label.",
6176
+ "docsTags": [],
6177
+ "default": "\"default\"",
6178
+ "values": [
6179
+ {
6180
+ "value": "dark",
6181
+ "type": "string"
6182
+ },
6183
+ {
6184
+ "value": "default",
6185
+ "type": "string"
6186
+ }
6187
+ ],
6188
+ "optional": true,
6189
+ "required": false
6190
+ },
5665
6191
  {
5666
6192
  "name": "dark",
5667
6193
  "type": "boolean",
@@ -5673,9 +6199,15 @@
5673
6199
  "mutable": false,
5674
6200
  "attr": "dark",
5675
6201
  "reflectToAttr": false,
5676
- "docs": "If `true`, the dark variant of the input label will be displayed.",
5677
- "docsTags": [],
6202
+ "docs": "",
6203
+ "docsTags": [
6204
+ {
6205
+ "name": "deprecated",
6206
+ "text": "This prop should not be used anymore. Set prop `appearance` to \"dark\" instead."
6207
+ }
6208
+ ],
5678
6209
  "default": "false",
6210
+ "deprecation": "This prop should not be used anymore. Set prop `appearance` to \"dark\" instead.",
5679
6211
  "values": [
5680
6212
  {
5681
6213
  "type": "boolean"
@@ -6928,6 +7460,39 @@
6928
7460
  "optional": true,
6929
7461
  "required": false
6930
7462
  },
7463
+ {
7464
+ "name": "size",
7465
+ "type": "\"default\" | \"small\"",
7466
+ "complexType": {
7467
+ "original": "IcSizesNoLarge",
7468
+ "resolved": "\"default\" | \"small\"",
7469
+ "references": {
7470
+ "IcSizesNoLarge": {
7471
+ "location": "import",
7472
+ "path": "../../utils/types",
7473
+ "id": "src/utils/types.ts::IcSizesNoLarge"
7474
+ }
7475
+ }
7476
+ },
7477
+ "mutable": false,
7478
+ "attr": "size",
7479
+ "reflectToAttr": false,
7480
+ "docs": "The size of the menu component.",
7481
+ "docsTags": [],
7482
+ "default": "\"default\"",
7483
+ "values": [
7484
+ {
7485
+ "value": "default",
7486
+ "type": "string"
7487
+ },
7488
+ {
7489
+ "value": "small",
7490
+ "type": "string"
7491
+ }
7492
+ ],
7493
+ "optional": true,
7494
+ "required": false
7495
+ },
6931
7496
  {
6932
7497
  "name": "small",
6933
7498
  "type": "boolean",
@@ -6938,10 +7503,16 @@
6938
7503
  },
6939
7504
  "mutable": false,
6940
7505
  "attr": "small",
6941
- "reflectToAttr": true,
6942
- "docs": "If `true`, the small styling will be applied to the menu.",
6943
- "docsTags": [],
7506
+ "reflectToAttr": false,
7507
+ "docs": "",
7508
+ "docsTags": [
7509
+ {
7510
+ "name": "deprecated",
7511
+ "text": "This prop should not be used anymore. Set prop `size` to \"small\" instead."
7512
+ }
7513
+ ],
6944
7514
  "default": "false",
7515
+ "deprecation": "This prop should not be used anymore. Set prop `size` to \"small\" instead.",
6945
7516
  "values": [
6946
7517
  {
6947
7518
  "type": "boolean"
@@ -7482,6 +8053,10 @@
7482
8053
  {
7483
8054
  "name": "slot",
7484
8055
  "text": "icon - Content will be placed to the left of the button label."
8056
+ },
8057
+ {
8058
+ "name": "slot",
8059
+ "text": "badge - Badge component overlaying the top right of the button."
7485
8060
  }
7486
8061
  ],
7487
8062
  "usage": {},
@@ -7722,6 +8297,10 @@
7722
8297
  ],
7723
8298
  "styles": [],
7724
8299
  "slots": [
8300
+ {
8301
+ "name": "badge",
8302
+ "docs": "Badge component overlaying the top right of the button."
8303
+ },
7725
8304
  {
7726
8305
  "name": "icon",
7727
8306
  "docs": "Content will be placed to the left of the button label."
@@ -7873,6 +8452,10 @@
7873
8452
  {
7874
8453
  "name": "part",
7875
8454
  "text": "link - The `<a>` within ic-navigation-item"
8455
+ },
8456
+ {
8457
+ "name": "slot",
8458
+ "text": "badge - Badge component overlaying the top right of the icon."
7876
8459
  }
7877
8460
  ],
7878
8461
  "usage": {},
@@ -8129,7 +8712,12 @@
8129
8712
  "docs": "z-index of navigation item"
8130
8713
  }
8131
8714
  ],
8132
- "slots": [],
8715
+ "slots": [
8716
+ {
8717
+ "name": "badge",
8718
+ "docs": "Badge component overlaying the top right of the icon."
8719
+ }
8720
+ ],
8133
8721
  "parts": [
8134
8722
  {
8135
8723
  "name": "link",
@@ -8418,6 +9006,39 @@
8418
9006
  "optional": true,
8419
9007
  "required": false
8420
9008
  },
9009
+ {
9010
+ "name": "size",
9011
+ "type": "\"default\" | \"small\"",
9012
+ "complexType": {
9013
+ "original": "IcSizesNoLarge",
9014
+ "resolved": "\"default\" | \"small\"",
9015
+ "references": {
9016
+ "IcSizesNoLarge": {
9017
+ "location": "import",
9018
+ "path": "../../utils/types",
9019
+ "id": "src/utils/types.ts::IcSizesNoLarge"
9020
+ }
9021
+ }
9022
+ },
9023
+ "mutable": false,
9024
+ "attr": "size",
9025
+ "reflectToAttr": false,
9026
+ "docs": "The size of the page header component.",
9027
+ "docsTags": [],
9028
+ "default": "\"default\"",
9029
+ "values": [
9030
+ {
9031
+ "value": "default",
9032
+ "type": "string"
9033
+ },
9034
+ {
9035
+ "value": "small",
9036
+ "type": "string"
9037
+ }
9038
+ ],
9039
+ "optional": true,
9040
+ "required": false
9041
+ },
8421
9042
  {
8422
9043
  "name": "small",
8423
9044
  "type": "boolean",
@@ -8429,9 +9050,15 @@
8429
9050
  "mutable": false,
8430
9051
  "attr": "small",
8431
9052
  "reflectToAttr": false,
8432
- "docs": "If `true`, the small styling will be applied to the page header.",
8433
- "docsTags": [],
9053
+ "docs": "",
9054
+ "docsTags": [
9055
+ {
9056
+ "name": "deprecated",
9057
+ "text": "This prop should not be used anymore. Set prop `size` to \"small\" instead."
9058
+ }
9059
+ ],
8434
9060
  "default": "false",
9061
+ "deprecation": "This prop should not be used anymore. Set prop `size` to \"small\" instead.",
8435
9062
  "values": [
8436
9063
  {
8437
9064
  "type": "boolean"
@@ -9490,6 +10117,39 @@
9490
10117
  "optional": false,
9491
10118
  "required": false
9492
10119
  },
10120
+ {
10121
+ "name": "size",
10122
+ "type": "\"default\" | \"small\"",
10123
+ "complexType": {
10124
+ "original": "IcSizesNoLarge",
10125
+ "resolved": "\"default\" | \"small\"",
10126
+ "references": {
10127
+ "IcSizesNoLarge": {
10128
+ "location": "import",
10129
+ "path": "../../utils/types",
10130
+ "id": "src/utils/types.ts::IcSizesNoLarge"
10131
+ }
10132
+ }
10133
+ },
10134
+ "mutable": false,
10135
+ "attr": "size",
10136
+ "reflectToAttr": false,
10137
+ "docs": "The size of the radio group component.",
10138
+ "docsTags": [],
10139
+ "default": "\"default\"",
10140
+ "values": [
10141
+ {
10142
+ "value": "default",
10143
+ "type": "string"
10144
+ },
10145
+ {
10146
+ "value": "small",
10147
+ "type": "string"
10148
+ }
10149
+ ],
10150
+ "optional": true,
10151
+ "required": false
10152
+ },
9493
10153
  {
9494
10154
  "name": "small",
9495
10155
  "type": "boolean",
@@ -9501,15 +10161,21 @@
9501
10161
  "mutable": false,
9502
10162
  "attr": "small",
9503
10163
  "reflectToAttr": false,
9504
- "docs": "If `true`, the small styling will be applied to the radio group.",
9505
- "docsTags": [],
10164
+ "docs": "",
10165
+ "docsTags": [
10166
+ {
10167
+ "name": "deprecated",
10168
+ "text": "This prop should not be used anymore. Set prop `size` to \"small\" instead."
10169
+ }
10170
+ ],
9506
10171
  "default": "false",
10172
+ "deprecation": "This prop should not be used anymore. Set prop `size` to \"small\" instead.",
9507
10173
  "values": [
9508
10174
  {
9509
10175
  "type": "boolean"
9510
10176
  }
9511
10177
  ],
9512
- "optional": false,
10178
+ "optional": true,
9513
10179
  "required": false
9514
10180
  },
9515
10181
  {
@@ -9637,44 +10303,177 @@
9637
10303
  "tag": "ic-radio-option",
9638
10304
  "readme": "# ic-radio-option\n\n\n",
9639
10305
  "docs": "",
9640
- "docsTags": [],
10306
+ "docsTags": [
10307
+ {
10308
+ "name": "slot",
10309
+ "text": "additional-field - Content to displayed alongside a radio option."
10310
+ }
10311
+ ],
9641
10312
  "usage": {},
9642
10313
  "props": [
9643
10314
  {
9644
- "name": "additionalFieldDisplay",
9645
- "type": "\"dynamic\" | \"static\"",
10315
+ "name": "additionalFieldDisplay",
10316
+ "type": "\"dynamic\" | \"static\"",
10317
+ "complexType": {
10318
+ "original": "IcAdditionalFieldTypes",
10319
+ "resolved": "\"dynamic\" | \"static\"",
10320
+ "references": {
10321
+ "IcAdditionalFieldTypes": {
10322
+ "location": "import",
10323
+ "path": "../../utils/types",
10324
+ "id": "src/utils/types.ts::IcAdditionalFieldTypes"
10325
+ }
10326
+ }
10327
+ },
10328
+ "mutable": false,
10329
+ "attr": "additional-field-display",
10330
+ "reflectToAttr": true,
10331
+ "docs": "The style of additionalField that will be displayed if used.",
10332
+ "docsTags": [],
10333
+ "default": "\"static\"",
10334
+ "values": [
10335
+ {
10336
+ "value": "dynamic",
10337
+ "type": "string"
10338
+ },
10339
+ {
10340
+ "value": "static",
10341
+ "type": "string"
10342
+ }
10343
+ ],
10344
+ "optional": false,
10345
+ "required": false
10346
+ },
10347
+ {
10348
+ "name": "disabled",
10349
+ "type": "boolean",
10350
+ "complexType": {
10351
+ "original": "boolean",
10352
+ "resolved": "boolean",
10353
+ "references": {}
10354
+ },
10355
+ "mutable": false,
10356
+ "attr": "disabled",
10357
+ "reflectToAttr": false,
10358
+ "docs": "If `true`, the disabled state will be set.",
10359
+ "docsTags": [],
10360
+ "default": "false",
10361
+ "values": [
10362
+ {
10363
+ "type": "boolean"
10364
+ }
10365
+ ],
10366
+ "optional": true,
10367
+ "required": false
10368
+ },
10369
+ {
10370
+ "name": "dynamicText",
10371
+ "type": "string",
10372
+ "complexType": {
10373
+ "original": "string",
10374
+ "resolved": "string",
10375
+ "references": {}
10376
+ },
10377
+ "mutable": false,
10378
+ "attr": "dynamic-text",
10379
+ "reflectToAttr": false,
10380
+ "docs": "The text to be displayed when dynamic.",
10381
+ "docsTags": [],
10382
+ "default": "\"This selection requires additional answers\"",
10383
+ "values": [
10384
+ {
10385
+ "type": "string"
10386
+ }
10387
+ ],
10388
+ "optional": false,
10389
+ "required": false
10390
+ },
10391
+ {
10392
+ "name": "form",
10393
+ "type": "string",
10394
+ "complexType": {
10395
+ "original": "string",
10396
+ "resolved": "string",
10397
+ "references": {}
10398
+ },
10399
+ "mutable": false,
10400
+ "attr": "form",
10401
+ "reflectToAttr": false,
10402
+ "docs": "The <form> element to associate the radio with.",
10403
+ "docsTags": [],
10404
+ "values": [
10405
+ {
10406
+ "type": "string"
10407
+ }
10408
+ ],
10409
+ "optional": true,
10410
+ "required": false
10411
+ },
10412
+ {
10413
+ "name": "formaction",
10414
+ "type": "string",
10415
+ "complexType": {
10416
+ "original": "string",
10417
+ "resolved": "string",
10418
+ "references": {}
10419
+ },
10420
+ "mutable": false,
10421
+ "attr": "formaction",
10422
+ "reflectToAttr": false,
10423
+ "docs": "The URL that processes the information submitted by the radio. It overrides the action attribute of the radio's form owner. Does nothing if there is no form owner.",
10424
+ "docsTags": [],
10425
+ "values": [
10426
+ {
10427
+ "type": "string"
10428
+ }
10429
+ ],
10430
+ "optional": true,
10431
+ "required": false
10432
+ },
10433
+ {
10434
+ "name": "formenctype",
10435
+ "type": "string",
9646
10436
  "complexType": {
9647
- "original": "IcAdditionalFieldTypes",
9648
- "resolved": "\"dynamic\" | \"static\"",
9649
- "references": {
9650
- "IcAdditionalFieldTypes": {
9651
- "location": "import",
9652
- "path": "../../utils/types",
9653
- "id": "src/utils/types.ts::IcAdditionalFieldTypes"
9654
- }
9655
- }
10437
+ "original": "string",
10438
+ "resolved": "string",
10439
+ "references": {}
9656
10440
  },
9657
10441
  "mutable": false,
9658
- "attr": "additional-field-display",
9659
- "reflectToAttr": true,
9660
- "docs": "The style of additionalField that will be displayed if used.",
10442
+ "attr": "formenctype",
10443
+ "reflectToAttr": false,
10444
+ "docs": "The way the submitted form data is encoded.",
9661
10445
  "docsTags": [],
9662
- "default": "\"static\"",
9663
10446
  "values": [
9664
10447
  {
9665
- "value": "dynamic",
9666
10448
  "type": "string"
9667
- },
10449
+ }
10450
+ ],
10451
+ "optional": true,
10452
+ "required": false
10453
+ },
10454
+ {
10455
+ "name": "formmethod",
10456
+ "type": "string",
10457
+ "complexType": {
10458
+ "original": "string",
10459
+ "resolved": "string",
10460
+ "references": {}
10461
+ },
10462
+ "mutable": false,
10463
+ "attr": "formmethod",
10464
+ "reflectToAttr": false,
10465
+ "docs": "The HTTP method used to submit the form.",
10466
+ "docsTags": [],
10467
+ "values": [
9668
10468
  {
9669
- "value": "static",
9670
10469
  "type": "string"
9671
10470
  }
9672
10471
  ],
9673
- "optional": false,
10472
+ "optional": true,
9674
10473
  "required": false
9675
10474
  },
9676
10475
  {
9677
- "name": "disabled",
10476
+ "name": "formnovalidate",
9678
10477
  "type": "boolean",
9679
10478
  "complexType": {
9680
10479
  "original": "boolean",
@@ -9682,11 +10481,10 @@
9682
10481
  "references": {}
9683
10482
  },
9684
10483
  "mutable": false,
9685
- "attr": "disabled",
10484
+ "attr": "formnovalidate",
9686
10485
  "reflectToAttr": false,
9687
- "docs": "If `true`, the disabled state will be set.",
10486
+ "docs": "If `true`, the form will not be validated when submitted.",
9688
10487
  "docsTags": [],
9689
- "default": "false",
9690
10488
  "values": [
9691
10489
  {
9692
10490
  "type": "boolean"
@@ -9696,7 +10494,7 @@
9696
10494
  "required": false
9697
10495
  },
9698
10496
  {
9699
- "name": "dynamicText",
10497
+ "name": "formtarget",
9700
10498
  "type": "string",
9701
10499
  "complexType": {
9702
10500
  "original": "string",
@@ -9704,17 +10502,16 @@
9704
10502
  "references": {}
9705
10503
  },
9706
10504
  "mutable": false,
9707
- "attr": "dynamic-text",
10505
+ "attr": "formtarget",
9708
10506
  "reflectToAttr": false,
9709
- "docs": "The text to be displayed when dynamic.",
10507
+ "docs": "The place to display the response from submitting the form. It overrides the target attribute of the radio's form owner.",
9710
10508
  "docsTags": [],
9711
- "default": "\"This selection requires additional answers\"",
9712
10509
  "values": [
9713
10510
  {
9714
10511
  "type": "string"
9715
10512
  }
9716
10513
  ],
9717
- "optional": false,
10514
+ "optional": true,
9718
10515
  "required": false
9719
10516
  },
9720
10517
  {
@@ -9918,7 +10715,12 @@
9918
10715
  }
9919
10716
  ],
9920
10717
  "styles": [],
9921
- "slots": [],
10718
+ "slots": [
10719
+ {
10720
+ "name": "additional-field",
10721
+ "docs": "Content to displayed alongside a radio option."
10722
+ }
10723
+ ],
9922
10724
  "parts": [],
9923
10725
  "dependents": [],
9924
10726
  "dependencies": [
@@ -10734,6 +11536,39 @@
10734
11536
  "optional": true,
10735
11537
  "required": false
10736
11538
  },
11539
+ {
11540
+ "name": "size",
11541
+ "type": "\"default\" | \"small\"",
11542
+ "complexType": {
11543
+ "original": "IcSizesNoLarge",
11544
+ "resolved": "\"default\" | \"small\"",
11545
+ "references": {
11546
+ "IcSizesNoLarge": {
11547
+ "location": "import",
11548
+ "path": "../../utils/types",
11549
+ "id": "src/utils/types.ts::IcSizesNoLarge"
11550
+ }
11551
+ }
11552
+ },
11553
+ "mutable": false,
11554
+ "attr": "size",
11555
+ "reflectToAttr": false,
11556
+ "docs": "The size of the search bar component.",
11557
+ "docsTags": [],
11558
+ "default": "\"default\"",
11559
+ "values": [
11560
+ {
11561
+ "value": "default",
11562
+ "type": "string"
11563
+ },
11564
+ {
11565
+ "value": "small",
11566
+ "type": "string"
11567
+ }
11568
+ ],
11569
+ "optional": true,
11570
+ "required": false
11571
+ },
10737
11572
  {
10738
11573
  "name": "small",
10739
11574
  "type": "boolean",
@@ -10745,9 +11580,15 @@
10745
11580
  "mutable": false,
10746
11581
  "attr": "small",
10747
11582
  "reflectToAttr": false,
10748
- "docs": "If `true`, the small styling will be applied to the search bar.",
10749
- "docsTags": [],
11583
+ "docs": "",
11584
+ "docsTags": [
11585
+ {
11586
+ "name": "deprecated",
11587
+ "text": "This prop should not be used anymore. Set prop `size` to \"small\" instead."
11588
+ }
11589
+ ],
10750
11590
  "default": "false",
11591
+ "deprecation": "This prop should not be used anymore. Set prop `size` to \"small\" instead.",
10751
11592
  "values": [
10752
11593
  {
10753
11594
  "type": "boolean"
@@ -11379,6 +12220,132 @@
11379
12220
  "optional": false,
11380
12221
  "required": false
11381
12222
  },
12223
+ {
12224
+ "name": "form",
12225
+ "type": "string",
12226
+ "complexType": {
12227
+ "original": "string",
12228
+ "resolved": "string",
12229
+ "references": {}
12230
+ },
12231
+ "mutable": false,
12232
+ "attr": "form",
12233
+ "reflectToAttr": false,
12234
+ "docs": "The <form> element to associate the select with.",
12235
+ "docsTags": [],
12236
+ "values": [
12237
+ {
12238
+ "type": "string"
12239
+ }
12240
+ ],
12241
+ "optional": true,
12242
+ "required": false
12243
+ },
12244
+ {
12245
+ "name": "formaction",
12246
+ "type": "string",
12247
+ "complexType": {
12248
+ "original": "string",
12249
+ "resolved": "string",
12250
+ "references": {}
12251
+ },
12252
+ "mutable": false,
12253
+ "attr": "formaction",
12254
+ "reflectToAttr": false,
12255
+ "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.",
12256
+ "docsTags": [],
12257
+ "values": [
12258
+ {
12259
+ "type": "string"
12260
+ }
12261
+ ],
12262
+ "optional": true,
12263
+ "required": false
12264
+ },
12265
+ {
12266
+ "name": "formenctype",
12267
+ "type": "string",
12268
+ "complexType": {
12269
+ "original": "string",
12270
+ "resolved": "string",
12271
+ "references": {}
12272
+ },
12273
+ "mutable": false,
12274
+ "attr": "formenctype",
12275
+ "reflectToAttr": false,
12276
+ "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.",
12277
+ "docsTags": [],
12278
+ "values": [
12279
+ {
12280
+ "type": "string"
12281
+ }
12282
+ ],
12283
+ "optional": true,
12284
+ "required": false
12285
+ },
12286
+ {
12287
+ "name": "formmethod",
12288
+ "type": "string",
12289
+ "complexType": {
12290
+ "original": "string",
12291
+ "resolved": "string",
12292
+ "references": {}
12293
+ },
12294
+ "mutable": false,
12295
+ "attr": "formmethod",
12296
+ "reflectToAttr": false,
12297
+ "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.",
12298
+ "docsTags": [],
12299
+ "values": [
12300
+ {
12301
+ "type": "string"
12302
+ }
12303
+ ],
12304
+ "optional": true,
12305
+ "required": false
12306
+ },
12307
+ {
12308
+ "name": "formnovalidate",
12309
+ "type": "boolean",
12310
+ "complexType": {
12311
+ "original": "boolean",
12312
+ "resolved": "boolean",
12313
+ "references": {}
12314
+ },
12315
+ "mutable": false,
12316
+ "attr": "formnovalidate",
12317
+ "reflectToAttr": false,
12318
+ "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.",
12319
+ "docsTags": [],
12320
+ "values": [
12321
+ {
12322
+ "type": "boolean"
12323
+ }
12324
+ ],
12325
+ "optional": true,
12326
+ "required": false
12327
+ },
12328
+ {
12329
+ "name": "formtarget",
12330
+ "type": "string",
12331
+ "complexType": {
12332
+ "original": "string",
12333
+ "resolved": "string",
12334
+ "references": {}
12335
+ },
12336
+ "mutable": false,
12337
+ "attr": "formtarget",
12338
+ "reflectToAttr": false,
12339
+ "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.",
12340
+ "docsTags": [],
12341
+ "values": [
12342
+ {
12343
+ "type": "string"
12344
+ }
12345
+ ],
12346
+ "optional": true,
12347
+ "required": false
12348
+ },
11382
12349
  {
11383
12350
  "name": "fullWidth",
11384
12351
  "type": "boolean",
@@ -11390,7 +12357,7 @@
11390
12357
  "mutable": false,
11391
12358
  "attr": "full-width",
11392
12359
  "reflectToAttr": false,
11393
- "docs": "If `true`, the select element will fill the width of the container.",
12360
+ "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.",
11394
12361
  "docsTags": [],
11395
12362
  "default": "false",
11396
12363
  "values": [
@@ -11750,19 +12717,52 @@
11750
12717
  "name": "showClearButton",
11751
12718
  "type": "boolean",
11752
12719
  "complexType": {
11753
- "original": "boolean",
11754
- "resolved": "boolean",
11755
- "references": {}
12720
+ "original": "boolean",
12721
+ "resolved": "boolean",
12722
+ "references": {}
12723
+ },
12724
+ "mutable": false,
12725
+ "attr": "show-clear-button",
12726
+ "reflectToAttr": false,
12727
+ "docs": "If `true`, a button which clears the select input when clicked will be displayed. The button will always appear on the searchable select.",
12728
+ "docsTags": [],
12729
+ "default": "false",
12730
+ "values": [
12731
+ {
12732
+ "type": "boolean"
12733
+ }
12734
+ ],
12735
+ "optional": true,
12736
+ "required": false
12737
+ },
12738
+ {
12739
+ "name": "size",
12740
+ "type": "\"default\" | \"small\"",
12741
+ "complexType": {
12742
+ "original": "IcSizesNoLarge",
12743
+ "resolved": "\"default\" | \"small\"",
12744
+ "references": {
12745
+ "IcSizesNoLarge": {
12746
+ "location": "import",
12747
+ "path": "../../utils/types",
12748
+ "id": "src/utils/types.ts::IcSizesNoLarge"
12749
+ }
12750
+ }
11756
12751
  },
11757
12752
  "mutable": false,
11758
- "attr": "show-clear-button",
12753
+ "attr": "size",
11759
12754
  "reflectToAttr": false,
11760
- "docs": "If `true`, a button which clears the select input when clicked will be displayed. The button will always appear on the searchable select.",
12755
+ "docs": "The size of the select component.",
11761
12756
  "docsTags": [],
11762
- "default": "false",
12757
+ "default": "\"default\"",
11763
12758
  "values": [
11764
12759
  {
11765
- "type": "boolean"
12760
+ "value": "default",
12761
+ "type": "string"
12762
+ },
12763
+ {
12764
+ "value": "small",
12765
+ "type": "string"
11766
12766
  }
11767
12767
  ],
11768
12768
  "optional": true,
@@ -11779,9 +12779,15 @@
11779
12779
  "mutable": false,
11780
12780
  "attr": "small",
11781
12781
  "reflectToAttr": false,
11782
- "docs": "If `true`, the small styling will be applied to the select.",
11783
- "docsTags": [],
12782
+ "docs": "",
12783
+ "docsTags": [
12784
+ {
12785
+ "name": "deprecated",
12786
+ "text": "This prop should not be used anymore. Set prop `size` to \"small\" instead."
12787
+ }
12788
+ ],
11784
12789
  "default": "false",
12790
+ "deprecation": "This prop should not be used anymore. Set prop `size` to \"small\" instead.",
11785
12791
  "values": [
11786
12792
  {
11787
12793
  "type": "boolean"
@@ -12192,6 +13198,28 @@
12192
13198
  "optional": false,
12193
13199
  "required": false
12194
13200
  },
13201
+ {
13202
+ "name": "disableTopBarBehaviour",
13203
+ "type": "boolean",
13204
+ "complexType": {
13205
+ "original": "boolean",
13206
+ "resolved": "boolean",
13207
+ "references": {}
13208
+ },
13209
+ "mutable": false,
13210
+ "attr": "disable-top-bar-behaviour",
13211
+ "reflectToAttr": false,
13212
+ "docs": "If `true`, the side navigation will not display as a top bar on small devices.",
13213
+ "docsTags": [],
13214
+ "default": "false",
13215
+ "values": [
13216
+ {
13217
+ "type": "boolean"
13218
+ }
13219
+ ],
13220
+ "optional": false,
13221
+ "required": false
13222
+ },
12195
13223
  {
12196
13224
  "name": "expanded",
12197
13225
  "type": "boolean",
@@ -12392,6 +13420,33 @@
12392
13420
  "docsTags": [],
12393
13421
  "usage": {},
12394
13422
  "props": [
13423
+ {
13424
+ "name": "appearance",
13425
+ "type": "\"default\" | \"light\"",
13426
+ "complexType": {
13427
+ "original": "\"light\" | \"default\"",
13428
+ "resolved": "\"default\" | \"light\"",
13429
+ "references": {}
13430
+ },
13431
+ "mutable": false,
13432
+ "attr": "appearance",
13433
+ "reflectToAttr": false,
13434
+ "docs": "The appearance of the skeleton.",
13435
+ "docsTags": [],
13436
+ "default": "\"default\"",
13437
+ "values": [
13438
+ {
13439
+ "value": "default",
13440
+ "type": "string"
13441
+ },
13442
+ {
13443
+ "value": "light",
13444
+ "type": "string"
13445
+ }
13446
+ ],
13447
+ "optional": true,
13448
+ "required": false
13449
+ },
12395
13450
  {
12396
13451
  "name": "light",
12397
13452
  "type": "boolean",
@@ -12403,9 +13458,15 @@
12403
13458
  "mutable": false,
12404
13459
  "attr": "light",
12405
13460
  "reflectToAttr": false,
12406
- "docs": "If `true`, the skeleton will be set to the light variant.",
12407
- "docsTags": [],
13461
+ "docs": "",
13462
+ "docsTags": [
13463
+ {
13464
+ "name": "deprecated",
13465
+ "text": "This prop should not be used anymore. Set prop `appearance` to \"light\" instead."
13466
+ }
13467
+ ],
12408
13468
  "default": "false",
13469
+ "deprecation": "This prop should not be used anymore. Set prop `appearance` to \"light\" instead.",
12409
13470
  "values": [
12410
13471
  {
12411
13472
  "type": "boolean"
@@ -12510,9 +13571,14 @@
12510
13571
  "mutable": false,
12511
13572
  "attr": "appearance",
12512
13573
  "reflectToAttr": false,
12513
- "docs": "The emphasis of the status tag.",
12514
- "docsTags": [],
12515
- "default": "\"filled\"",
13574
+ "docs": "",
13575
+ "docsTags": [
13576
+ {
13577
+ "name": "deprecated",
13578
+ "text": "This prop should not be used anymore. Use variant prop instead."
13579
+ }
13580
+ ],
13581
+ "deprecation": "This prop should not be used anymore. Use variant prop instead.",
12516
13582
  "values": [
12517
13583
  {
12518
13584
  "value": "filled",
@@ -12547,6 +13613,39 @@
12547
13613
  "optional": false,
12548
13614
  "required": true
12549
13615
  },
13616
+ {
13617
+ "name": "size",
13618
+ "type": "\"default\" | \"small\"",
13619
+ "complexType": {
13620
+ "original": "IcSizesNoLarge",
13621
+ "resolved": "\"default\" | \"small\"",
13622
+ "references": {
13623
+ "IcSizesNoLarge": {
13624
+ "location": "import",
13625
+ "path": "../../utils/types",
13626
+ "id": "src/utils/types.ts::IcSizesNoLarge"
13627
+ }
13628
+ }
13629
+ },
13630
+ "mutable": false,
13631
+ "attr": "size",
13632
+ "reflectToAttr": false,
13633
+ "docs": "The size of the status tag component.",
13634
+ "docsTags": [],
13635
+ "default": "\"default\"",
13636
+ "values": [
13637
+ {
13638
+ "value": "default",
13639
+ "type": "string"
13640
+ },
13641
+ {
13642
+ "value": "small",
13643
+ "type": "string"
13644
+ }
13645
+ ],
13646
+ "optional": true,
13647
+ "required": false
13648
+ },
12550
13649
  {
12551
13650
  "name": "small",
12552
13651
  "type": "boolean",
@@ -12558,9 +13657,15 @@
12558
13657
  "mutable": false,
12559
13658
  "attr": "small",
12560
13659
  "reflectToAttr": false,
12561
- "docs": "If `true`, the small styling will be applied to the status tag.",
12562
- "docsTags": [],
13660
+ "docs": "",
13661
+ "docsTags": [
13662
+ {
13663
+ "name": "deprecated",
13664
+ "text": "This prop should not be used anymore. Set prop `size` to \"small\" instead."
13665
+ }
13666
+ ],
12563
13667
  "default": "false",
13668
+ "deprecation": "This prop should not be used anymore. Set prop `size` to \"small\" instead.",
12564
13669
  "values": [
12565
13670
  {
12566
13671
  "type": "boolean"
@@ -12609,6 +13714,39 @@
12609
13714
  ],
12610
13715
  "optional": true,
12611
13716
  "required": false
13717
+ },
13718
+ {
13719
+ "name": "variant",
13720
+ "type": "\"filled\" | \"outlined\"",
13721
+ "complexType": {
13722
+ "original": "IcEmphasisType",
13723
+ "resolved": "\"filled\" | \"outlined\"",
13724
+ "references": {
13725
+ "IcEmphasisType": {
13726
+ "location": "import",
13727
+ "path": "../../utils/types",
13728
+ "id": "src/utils/types.ts::IcEmphasisType"
13729
+ }
13730
+ }
13731
+ },
13732
+ "mutable": false,
13733
+ "attr": "variant",
13734
+ "reflectToAttr": false,
13735
+ "docs": "The emphasis of the status tag.",
13736
+ "docsTags": [],
13737
+ "default": "\"filled\"",
13738
+ "values": [
13739
+ {
13740
+ "value": "filled",
13741
+ "type": "string"
13742
+ },
13743
+ {
13744
+ "value": "outlined",
13745
+ "type": "string"
13746
+ }
13747
+ ],
13748
+ "optional": true,
13749
+ "required": false
12612
13750
  }
12613
13751
  ],
12614
13752
  "methods": [],
@@ -13070,6 +14208,39 @@
13070
14208
  "optional": true,
13071
14209
  "required": false
13072
14210
  },
14211
+ {
14212
+ "name": "size",
14213
+ "type": "\"default\" | \"small\"",
14214
+ "complexType": {
14215
+ "original": "IcSizesNoLarge",
14216
+ "resolved": "\"default\" | \"small\"",
14217
+ "references": {
14218
+ "IcSizesNoLarge": {
14219
+ "location": "import",
14220
+ "path": "../../utils/types",
14221
+ "id": "src/utils/types.ts::IcSizesNoLarge"
14222
+ }
14223
+ }
14224
+ },
14225
+ "mutable": false,
14226
+ "attr": "size",
14227
+ "reflectToAttr": false,
14228
+ "docs": "The size of the switch component.",
14229
+ "docsTags": [],
14230
+ "default": "\"default\"",
14231
+ "values": [
14232
+ {
14233
+ "value": "default",
14234
+ "type": "string"
14235
+ },
14236
+ {
14237
+ "value": "small",
14238
+ "type": "string"
14239
+ }
14240
+ ],
14241
+ "optional": true,
14242
+ "required": false
14243
+ },
13073
14244
  {
13074
14245
  "name": "small",
13075
14246
  "type": "boolean",
@@ -13081,9 +14252,15 @@
13081
14252
  "mutable": false,
13082
14253
  "attr": "small",
13083
14254
  "reflectToAttr": false,
13084
- "docs": "If `true`, the small styling will be applied to the switch.",
13085
- "docsTags": [],
14255
+ "docs": "",
14256
+ "docsTags": [
14257
+ {
14258
+ "name": "deprecated",
14259
+ "text": "This prop should not be used anymore. Set prop `size` to \"small\" instead."
14260
+ }
14261
+ ],
13086
14262
  "default": "false",
14263
+ "deprecation": "This prop should not be used anymore. Set prop `size` to \"small\" instead.",
13087
14264
  "values": [
13088
14265
  {
13089
14266
  "type": "boolean"
@@ -14403,6 +15580,39 @@
14403
15580
  "optional": false,
14404
15581
  "required": false
14405
15582
  },
15583
+ {
15584
+ "name": "size",
15585
+ "type": "\"default\" | \"small\"",
15586
+ "complexType": {
15587
+ "original": "IcSizesNoLarge",
15588
+ "resolved": "\"default\" | \"small\"",
15589
+ "references": {
15590
+ "IcSizesNoLarge": {
15591
+ "location": "import",
15592
+ "path": "../../utils/types",
15593
+ "id": "src/utils/types.ts::IcSizesNoLarge"
15594
+ }
15595
+ }
15596
+ },
15597
+ "mutable": false,
15598
+ "attr": "size",
15599
+ "reflectToAttr": false,
15600
+ "docs": "The size of the text field component.",
15601
+ "docsTags": [],
15602
+ "default": "\"default\"",
15603
+ "values": [
15604
+ {
15605
+ "value": "default",
15606
+ "type": "string"
15607
+ },
15608
+ {
15609
+ "value": "small",
15610
+ "type": "string"
15611
+ }
15612
+ ],
15613
+ "optional": true,
15614
+ "required": false
15615
+ },
14406
15616
  {
14407
15617
  "name": "small",
14408
15618
  "type": "boolean",
@@ -14413,16 +15623,22 @@
14413
15623
  },
14414
15624
  "mutable": false,
14415
15625
  "attr": "small",
14416
- "reflectToAttr": true,
14417
- "docs": "If `true`, the small styling will be applied to the text field.",
14418
- "docsTags": [],
15626
+ "reflectToAttr": false,
15627
+ "docs": "",
15628
+ "docsTags": [
15629
+ {
15630
+ "name": "deprecated",
15631
+ "text": "This prop should not be used anymore. Set prop `size` to \"small\" instead."
15632
+ }
15633
+ ],
14419
15634
  "default": "false",
15635
+ "deprecation": "This prop should not be used anymore. Set prop `size` to \"small\" instead.",
14420
15636
  "values": [
14421
15637
  {
14422
15638
  "type": "boolean"
14423
15639
  }
14424
15640
  ],
14425
- "optional": false,
15641
+ "optional": true,
14426
15642
  "required": false
14427
15643
  },
14428
15644
  {
@@ -15260,6 +16476,27 @@
15260
16476
  "optional": false,
15261
16477
  "required": true
15262
16478
  },
16479
+ {
16480
+ "name": "maxLines",
16481
+ "type": "number",
16482
+ "complexType": {
16483
+ "original": "number",
16484
+ "resolved": "number",
16485
+ "references": {}
16486
+ },
16487
+ "mutable": false,
16488
+ "attr": "max-lines",
16489
+ "reflectToAttr": false,
16490
+ "docs": "The number of lines to display before truncating the text.",
16491
+ "docsTags": [],
16492
+ "values": [
16493
+ {
16494
+ "type": "number"
16495
+ }
16496
+ ],
16497
+ "optional": true,
16498
+ "required": false
16499
+ },
15263
16500
  {
15264
16501
  "name": "placement",
15265
16502
  "type": "\"bottom\" | \"bottom-end\" | \"bottom-start\" | \"left\" | \"left-end\" | \"left-start\" | \"right\" | \"right-end\" | \"right-start\" | \"top\" | \"top-end\" | \"top-start\"",
@@ -16202,6 +17439,11 @@
16202
17439
  "docstring": "",
16203
17440
  "path": "src/components/ic-chip/ic-chip.types.ts"
16204
17441
  },
17442
+ "src/utils/types.ts::IcEmphasisType": {
17443
+ "declaration": "export type IcEmphasisType = \"filled\" | \"outlined\";",
17444
+ "docstring": "",
17445
+ "path": "src/utils/types.ts"
17446
+ },
16205
17447
  "src/utils/types.ts::IcThemeForegroundNoDefault": {
16206
17448
  "declaration": "export type IcThemeForegroundNoDefault = \"dark\" | \"light\";",
16207
17449
  "docstring": "",
@@ -16247,6 +17489,11 @@
16247
17489
  "docstring": "",
16248
17490
  "path": "src/components/ic-text-field/ic-text-field.types.ts"
16249
17491
  },
17492
+ "src/utils/types.ts::IcSizesNoLarge": {
17493
+ "declaration": "export type IcSizesNoLarge = \"default\" | \"small\";",
17494
+ "docstring": "",
17495
+ "path": "src/utils/types.ts"
17496
+ },
16250
17497
  "src/components/ic-text-field/ic-text-field.types.ts::IcTextFieldTypes": {
16251
17498
  "declaration": "export type IcTextFieldTypes =\n | \"email\"\n | \"password\"\n | \"tel\"\n | \"text\"\n | \"url\"\n | \"number\"\n | \"search\";",
16252
17499
  "docstring": "",