@momentum-design/components 0.120.23 → 0.120.24

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -4274,166 +4274,6 @@
4274
4274
  }
4275
4275
  ]
4276
4276
  },
4277
- {
4278
- "kind": "javascript-module",
4279
- "path": "components/banner/banner.component.js",
4280
- "declarations": [
4281
- {
4282
- "kind": "class",
4283
- "description": "`mdc-banner` is a component that allows applications to communicate important messages to users \nand requires user action to dismiss them. It supports different message types with appropriate styling \nand icons, and provides flexibility for customization through label, secondary label, icons, and actions.\n\nThey are designed to be noticeable yet non-intrusive, helping users stay informed without interrupting their workflow.\n\nThis component supports both structured content via properties and flexible customization via slots:\n- Use the properties (`label`, `secondaryLabel`, `variant`) for standard banner layouts with automatic icon selection.\n- Use slots for custom content and complete layout control.\n- Combine both approaches for maximum flexibility.\n- Create custom orientations and actions using CSS parts and slots.",
4284
- "name": "Banner",
4285
- "cssProperties": [
4286
- {
4287
- "description": "Background color of the banner.",
4288
- "name": "--mdc-banner-background-color"
4289
- },
4290
- {
4291
- "description": "Border color of the banner.",
4292
- "name": "--mdc-banner-border-color"
4293
- },
4294
- {
4295
- "description": "Color of the icon in the banner.",
4296
- "name": "--mdc-banner-icon-color"
4297
- },
4298
- {
4299
- "description": "Elevation/shadow of the banner.",
4300
- "name": "--mdc-banner-elevation"
4301
- },
4302
- {
4303
- "description": "Padding inside the banner.",
4304
- "name": "--mdc-banner-padding"
4305
- },
4306
- {
4307
- "description": "Gap between banner elements.",
4308
- "name": "--mdc-banner-gap"
4309
- }
4310
- ],
4311
- "cssParts": [
4312
- {
4313
- "description": "The leading section containing the icon and text.",
4314
- "name": "leading"
4315
- },
4316
- {
4317
- "description": "The icon displayed for variants or custom icon slot.",
4318
- "name": "leading-icon"
4319
- },
4320
- {
4321
- "description": "The leading section containing label and secondary label text.",
4322
- "name": "leading-text"
4323
- },
4324
- {
4325
- "description": "The trailing section containing action buttons and controls.",
4326
- "name": "trailing"
4327
- },
4328
- {
4329
- "description": "The label text of the banner.",
4330
- "name": "leading-label"
4331
- },
4332
- {
4333
- "description": "The secondary label text of the banner.",
4334
- "name": "leading-secondary-label"
4335
- }
4336
- ],
4337
- "slots": [
4338
- {
4339
- "description": "Complete content override. When used, it replaces all default banner content including icon, label, secondary label, and actions.",
4340
- "name": "content"
4341
- },
4342
- {
4343
- "description": "Custom icon content. Overrides the default variant-based icon.",
4344
- "name": "leading-icon"
4345
- },
4346
- {
4347
- "description": "Custom text content. Overrides the label and secondaryLabel properties.",
4348
- "name": "leading-text"
4349
- },
4350
- {
4351
- "description": "Custom action buttons and controls. Use this for dismiss buttons, reset buttons, or any other actions.",
4352
- "name": "trailing-actions"
4353
- }
4354
- ],
4355
- "members": [
4356
- {
4357
- "kind": "field",
4358
- "name": "variant",
4359
- "type": {
4360
- "text": "BannerVariant"
4361
- },
4362
- "description": "The type of banner variant.\n- Can be `custom`, `informational`, `warning`, `error`, or `success`.\n\nNote: When using the `custom` variant, provide your own icon via the `leading-icon` slot; otherwise, no icon will be shown.",
4363
- "default": "'custom'",
4364
- "attribute": "variant",
4365
- "reflects": true
4366
- },
4367
- {
4368
- "kind": "field",
4369
- "name": "label",
4370
- "type": {
4371
- "text": "string"
4372
- },
4373
- "default": "''",
4374
- "description": "Banner label text",
4375
- "attribute": "label",
4376
- "reflects": true
4377
- },
4378
- {
4379
- "kind": "field",
4380
- "name": "secondaryLabel",
4381
- "type": {
4382
- "text": "string | undefined"
4383
- },
4384
- "description": "Banner secondary label text\n\nNote: Optional supporting text that appears below the label. Only rendered when label is also provided.",
4385
- "attribute": "secondary-label",
4386
- "reflects": true
4387
- }
4388
- ],
4389
- "attributes": [
4390
- {
4391
- "name": "variant",
4392
- "type": {
4393
- "text": "BannerVariant"
4394
- },
4395
- "description": "The type of banner variant.\n- Can be `custom`, `informational`, `warning`, `error`, or `success`.\n\nNote: When using the `custom` variant, provide your own icon via the `leading-icon` slot; otherwise, no icon will be shown.",
4396
- "default": "'custom'",
4397
- "fieldName": "variant"
4398
- },
4399
- {
4400
- "name": "label",
4401
- "type": {
4402
- "text": "string"
4403
- },
4404
- "default": "''",
4405
- "description": "Banner label text",
4406
- "fieldName": "label"
4407
- },
4408
- {
4409
- "name": "secondary-label",
4410
- "type": {
4411
- "text": "string | undefined"
4412
- },
4413
- "description": "Banner secondary label text\n\nNote: Optional supporting text that appears below the label. Only rendered when label is also provided.",
4414
- "fieldName": "secondaryLabel"
4415
- }
4416
- ],
4417
- "superclass": {
4418
- "name": "Component",
4419
- "module": "/src/models"
4420
- },
4421
- "tagName": "mdc-banner",
4422
- "jsDoc": "/**\n * `mdc-banner` is a component that allows applications to communicate important messages to users \n * and requires user action to dismiss them. It supports different message types with appropriate styling \n * and icons, and provides flexibility for customization through label, secondary label, icons, and actions.\n * \n * They are designed to be noticeable yet non-intrusive, helping users stay informed without interrupting their workflow.\n *\n * This component supports both structured content via properties and flexible customization via slots:\n * - Use the properties (`label`, `secondaryLabel`, `variant`) for standard banner layouts with automatic icon selection.\n * - Use slots for custom content and complete layout control.\n * - Combine both approaches for maximum flexibility.\n * - Create custom orientations and actions using CSS parts and slots.\n * \n * @dependency mdc-icon\n * @dependency mdc-text\n *\n * @slot content - Complete content override. When used, it replaces all default banner content including icon, label, secondary label, and actions.\n * @slot leading-icon - Custom icon content. Overrides the default variant-based icon.\n * @slot leading-text - Custom text content. Overrides the label and secondaryLabel properties.\n * @slot trailing-actions - Custom action buttons and controls. Use this for dismiss buttons, reset buttons, or any other actions.\n *\n * @tagname mdc-banner\n *\n * @csspart leading - The leading section containing the icon and text.\n * @csspart leading-icon - The icon displayed for variants or custom icon slot.\n * @csspart leading-text - The leading section containing label and secondary label text.\n * @csspart trailing - The trailing section containing action buttons and controls.\n * @csspart leading-label - The label text of the banner.\n * @csspart leading-secondary-label - The secondary label text of the banner.\n *\n * @cssproperty --mdc-banner-background-color - Background color of the banner.\n * @cssproperty --mdc-banner-border-color - Border color of the banner.\n * @cssproperty --mdc-banner-icon-color - Color of the icon in the banner.\n * @cssproperty --mdc-banner-elevation - Elevation/shadow of the banner.\n * @cssproperty --mdc-banner-padding - Padding inside the banner.\n * @cssproperty --mdc-banner-gap - Gap between banner elements.\n */",
4423
- "customElement": true
4424
- }
4425
- ],
4426
- "exports": [
4427
- {
4428
- "kind": "js",
4429
- "name": "default",
4430
- "declaration": {
4431
- "name": "Banner",
4432
- "module": "components/banner/banner.component.js"
4433
- }
4434
- }
4435
- ]
4436
- },
4437
4277
  {
4438
4278
  "kind": "javascript-module",
4439
4279
  "path": "components/badge/badge.component.js",
@@ -4766,6 +4606,166 @@
4766
4606
  }
4767
4607
  ]
4768
4608
  },
4609
+ {
4610
+ "kind": "javascript-module",
4611
+ "path": "components/banner/banner.component.js",
4612
+ "declarations": [
4613
+ {
4614
+ "kind": "class",
4615
+ "description": "`mdc-banner` is a component that allows applications to communicate important messages to users \nand requires user action to dismiss them. It supports different message types with appropriate styling \nand icons, and provides flexibility for customization through label, secondary label, icons, and actions.\n\nThey are designed to be noticeable yet non-intrusive, helping users stay informed without interrupting their workflow.\n\nThis component supports both structured content via properties and flexible customization via slots:\n- Use the properties (`label`, `secondaryLabel`, `variant`) for standard banner layouts with automatic icon selection.\n- Use slots for custom content and complete layout control.\n- Combine both approaches for maximum flexibility.\n- Create custom orientations and actions using CSS parts and slots.",
4616
+ "name": "Banner",
4617
+ "cssProperties": [
4618
+ {
4619
+ "description": "Background color of the banner.",
4620
+ "name": "--mdc-banner-background-color"
4621
+ },
4622
+ {
4623
+ "description": "Border color of the banner.",
4624
+ "name": "--mdc-banner-border-color"
4625
+ },
4626
+ {
4627
+ "description": "Color of the icon in the banner.",
4628
+ "name": "--mdc-banner-icon-color"
4629
+ },
4630
+ {
4631
+ "description": "Elevation/shadow of the banner.",
4632
+ "name": "--mdc-banner-elevation"
4633
+ },
4634
+ {
4635
+ "description": "Padding inside the banner.",
4636
+ "name": "--mdc-banner-padding"
4637
+ },
4638
+ {
4639
+ "description": "Gap between banner elements.",
4640
+ "name": "--mdc-banner-gap"
4641
+ }
4642
+ ],
4643
+ "cssParts": [
4644
+ {
4645
+ "description": "The leading section containing the icon and text.",
4646
+ "name": "leading"
4647
+ },
4648
+ {
4649
+ "description": "The icon displayed for variants or custom icon slot.",
4650
+ "name": "leading-icon"
4651
+ },
4652
+ {
4653
+ "description": "The leading section containing label and secondary label text.",
4654
+ "name": "leading-text"
4655
+ },
4656
+ {
4657
+ "description": "The trailing section containing action buttons and controls.",
4658
+ "name": "trailing"
4659
+ },
4660
+ {
4661
+ "description": "The label text of the banner.",
4662
+ "name": "leading-label"
4663
+ },
4664
+ {
4665
+ "description": "The secondary label text of the banner.",
4666
+ "name": "leading-secondary-label"
4667
+ }
4668
+ ],
4669
+ "slots": [
4670
+ {
4671
+ "description": "Complete content override. When used, it replaces all default banner content including icon, label, secondary label, and actions.",
4672
+ "name": "content"
4673
+ },
4674
+ {
4675
+ "description": "Custom icon content. Overrides the default variant-based icon.",
4676
+ "name": "leading-icon"
4677
+ },
4678
+ {
4679
+ "description": "Custom text content. Overrides the label and secondaryLabel properties.",
4680
+ "name": "leading-text"
4681
+ },
4682
+ {
4683
+ "description": "Custom action buttons and controls. Use this for dismiss buttons, reset buttons, or any other actions.",
4684
+ "name": "trailing-actions"
4685
+ }
4686
+ ],
4687
+ "members": [
4688
+ {
4689
+ "kind": "field",
4690
+ "name": "variant",
4691
+ "type": {
4692
+ "text": "BannerVariant"
4693
+ },
4694
+ "description": "The type of banner variant.\n- Can be `custom`, `informational`, `warning`, `error`, or `success`.\n\nNote: When using the `custom` variant, provide your own icon via the `leading-icon` slot; otherwise, no icon will be shown.",
4695
+ "default": "'custom'",
4696
+ "attribute": "variant",
4697
+ "reflects": true
4698
+ },
4699
+ {
4700
+ "kind": "field",
4701
+ "name": "label",
4702
+ "type": {
4703
+ "text": "string"
4704
+ },
4705
+ "default": "''",
4706
+ "description": "Banner label text",
4707
+ "attribute": "label",
4708
+ "reflects": true
4709
+ },
4710
+ {
4711
+ "kind": "field",
4712
+ "name": "secondaryLabel",
4713
+ "type": {
4714
+ "text": "string | undefined"
4715
+ },
4716
+ "description": "Banner secondary label text\n\nNote: Optional supporting text that appears below the label. Only rendered when label is also provided.",
4717
+ "attribute": "secondary-label",
4718
+ "reflects": true
4719
+ }
4720
+ ],
4721
+ "attributes": [
4722
+ {
4723
+ "name": "variant",
4724
+ "type": {
4725
+ "text": "BannerVariant"
4726
+ },
4727
+ "description": "The type of banner variant.\n- Can be `custom`, `informational`, `warning`, `error`, or `success`.\n\nNote: When using the `custom` variant, provide your own icon via the `leading-icon` slot; otherwise, no icon will be shown.",
4728
+ "default": "'custom'",
4729
+ "fieldName": "variant"
4730
+ },
4731
+ {
4732
+ "name": "label",
4733
+ "type": {
4734
+ "text": "string"
4735
+ },
4736
+ "default": "''",
4737
+ "description": "Banner label text",
4738
+ "fieldName": "label"
4739
+ },
4740
+ {
4741
+ "name": "secondary-label",
4742
+ "type": {
4743
+ "text": "string | undefined"
4744
+ },
4745
+ "description": "Banner secondary label text\n\nNote: Optional supporting text that appears below the label. Only rendered when label is also provided.",
4746
+ "fieldName": "secondaryLabel"
4747
+ }
4748
+ ],
4749
+ "superclass": {
4750
+ "name": "Component",
4751
+ "module": "/src/models"
4752
+ },
4753
+ "tagName": "mdc-banner",
4754
+ "jsDoc": "/**\n * `mdc-banner` is a component that allows applications to communicate important messages to users \n * and requires user action to dismiss them. It supports different message types with appropriate styling \n * and icons, and provides flexibility for customization through label, secondary label, icons, and actions.\n * \n * They are designed to be noticeable yet non-intrusive, helping users stay informed without interrupting their workflow.\n *\n * This component supports both structured content via properties and flexible customization via slots:\n * - Use the properties (`label`, `secondaryLabel`, `variant`) for standard banner layouts with automatic icon selection.\n * - Use slots for custom content and complete layout control.\n * - Combine both approaches for maximum flexibility.\n * - Create custom orientations and actions using CSS parts and slots.\n * \n * @dependency mdc-icon\n * @dependency mdc-text\n *\n * @slot content - Complete content override. When used, it replaces all default banner content including icon, label, secondary label, and actions.\n * @slot leading-icon - Custom icon content. Overrides the default variant-based icon.\n * @slot leading-text - Custom text content. Overrides the label and secondaryLabel properties.\n * @slot trailing-actions - Custom action buttons and controls. Use this for dismiss buttons, reset buttons, or any other actions.\n *\n * @tagname mdc-banner\n *\n * @csspart leading - The leading section containing the icon and text.\n * @csspart leading-icon - The icon displayed for variants or custom icon slot.\n * @csspart leading-text - The leading section containing label and secondary label text.\n * @csspart trailing - The trailing section containing action buttons and controls.\n * @csspart leading-label - The label text of the banner.\n * @csspart leading-secondary-label - The secondary label text of the banner.\n *\n * @cssproperty --mdc-banner-background-color - Background color of the banner.\n * @cssproperty --mdc-banner-border-color - Border color of the banner.\n * @cssproperty --mdc-banner-icon-color - Color of the icon in the banner.\n * @cssproperty --mdc-banner-elevation - Elevation/shadow of the banner.\n * @cssproperty --mdc-banner-padding - Padding inside the banner.\n * @cssproperty --mdc-banner-gap - Gap between banner elements.\n */",
4755
+ "customElement": true
4756
+ }
4757
+ ],
4758
+ "exports": [
4759
+ {
4760
+ "kind": "js",
4761
+ "name": "default",
4762
+ "declaration": {
4763
+ "name": "Banner",
4764
+ "module": "components/banner/banner.component.js"
4765
+ }
4766
+ }
4767
+ ]
4768
+ },
4769
4769
  {
4770
4770
  "kind": "javascript-module",
4771
4771
  "path": "components/brandvisual/brandvisual.component.js",
@@ -30368,6 +30368,30 @@
30368
30368
  "attribute": "aria-label",
30369
30369
  "reflects": true
30370
30370
  },
30371
+ {
30372
+ "kind": "method",
30373
+ "name": "renderIcon",
30374
+ "privacy": "private",
30375
+ "return": {
30376
+ "type": {
30377
+ "text": "TemplateResult"
30378
+ }
30379
+ },
30380
+ "parameters": [
30381
+ {
30382
+ "name": "slotName",
30383
+ "type": {
30384
+ "text": "string"
30385
+ }
30386
+ },
30387
+ {
30388
+ "name": "iconName",
30389
+ "type": {
30390
+ "text": "string"
30391
+ }
30392
+ }
30393
+ ]
30394
+ },
30371
30395
  {
30372
30396
  "kind": "field",
30373
30397
  "name": "name",
@@ -37697,12 +37721,12 @@
37697
37721
  },
37698
37722
  {
37699
37723
  "kind": "javascript-module",
37700
- "path": "components/select/select.component.js",
37724
+ "path": "components/searchfield/searchfield.component.js",
37701
37725
  "declarations": [
37702
37726
  {
37703
37727
  "kind": "class",
37704
- "description": "The mdc-select component is a dropdown selection control that allows users to pick an option from a predefined list.\nIt is designed to work with `mdc-option` for individual options and `mdc-optgroup` for grouping related options.\n\nEvery mdc-option should have a `value` attribute set to ensure proper form submission.\n\nTo set a default option, use the `selected` attribute on the `mdc-option` element.\nYou can also set the `value` attribute on the `mdc-select` element to match the value of the desired option. The component will select the corresponding option automatically.\n\n**Note:** Make sure to add `mdc-selectlistbox` as a child of `mdc-select` and wrap options/optgroup in it to ensure proper accessibility functionality. Read more about it in SelectListBox documentation.\n\nIf you need to use `mdc-tooltip` with any options, make sure to place the tooltip component outside the `mdc-select` element.",
37705
- "name": "Select",
37728
+ "description": "`mdc-searchfield` component is used as an input field for search functionality.\n\nIt supports `mdc-inputchip` as filters.\n\nThis component is built by extending the `mdc-input` component.",
37729
+ "name": "Searchfield",
37706
37730
  "cssProperties": [
37707
37731
  {
37708
37732
  "description": "Font size for the label text.",
@@ -37769,28 +37793,52 @@
37769
37793
  }
37770
37794
  },
37771
37795
  {
37772
- "description": "The background color of the combobox of select.",
37773
- "name": "--mdc-select-background-color"
37796
+ "description": "Text color for the input field",
37797
+ "name": "--mdc-input-text-color",
37798
+ "inheritedFrom": {
37799
+ "name": "Input",
37800
+ "module": "src/components/input/input.component.ts"
37801
+ }
37774
37802
  },
37775
37803
  {
37776
- "description": "The text color of the select.",
37777
- "name": "--mdc-select-text-color"
37804
+ "description": "Border color for the input container",
37805
+ "name": "--mdc-input-border-color",
37806
+ "inheritedFrom": {
37807
+ "name": "Input",
37808
+ "module": "src/components/input/input.component.ts"
37809
+ }
37778
37810
  },
37779
37811
  {
37780
- "description": "The border color of the select.",
37781
- "name": "--mdc-select-border-color"
37812
+ "description": "Background color for the input field",
37813
+ "name": "--mdc-input-background-color",
37814
+ "inheritedFrom": {
37815
+ "name": "Input",
37816
+ "module": "src/components/input/input.component.ts"
37817
+ }
37782
37818
  },
37783
37819
  {
37784
- "description": "The width of the select.",
37785
- "name": "--mdc-select-width"
37820
+ "description": "Text color for the help text",
37821
+ "name": "--mdc-input-support-text-color",
37822
+ "inheritedFrom": {
37823
+ "name": "Input",
37824
+ "module": "src/components/input/input.component.ts"
37825
+ }
37786
37826
  },
37787
37827
  {
37788
- "description": "The height of the listbox inside the select.",
37789
- "name": "--mdc-select-listbox-height"
37828
+ "description": "Text color for the selected text",
37829
+ "name": "--mdc-input-selection-text-color",
37830
+ "inheritedFrom": {
37831
+ "name": "Input",
37832
+ "module": "src/components/input/input.component.ts"
37833
+ }
37790
37834
  },
37791
37835
  {
37792
- "description": "The width of the listbox inside the select (default: `--mdc-select-width`).",
37793
- "name": "--mdc-select-listbox-width"
37836
+ "description": "Background color for the selected text",
37837
+ "name": "--mdc-input-selection-background-color",
37838
+ "inheritedFrom": {
37839
+ "name": "Input",
37840
+ "module": "src/components/input/input.component.ts"
37841
+ }
37794
37842
  }
37795
37843
  ],
37796
37844
  "cssParts": [
@@ -37857,12 +37905,60 @@
37857
37905
  "name": "FormfieldWrapper",
37858
37906
  "module": "src/components/formfieldwrapper/formfieldwrapper.component.ts"
37859
37907
  }
37908
+ },
37909
+ {
37910
+ "description": "The leading icon element that is displayed before the input field.",
37911
+ "name": "leading-icon",
37912
+ "inheritedFrom": {
37913
+ "name": "Input",
37914
+ "module": "src/components/input/input.component.ts"
37915
+ }
37916
+ },
37917
+ {
37918
+ "description": "The prefix text element that is displayed before the input field.",
37919
+ "name": "prefix-text",
37920
+ "inheritedFrom": {
37921
+ "name": "Input",
37922
+ "module": "src/components/input/input.component.ts"
37923
+ }
37924
+ },
37925
+ {
37926
+ "description": "The container for the input field, leading icon, prefix text, and trailing button elements.",
37927
+ "name": "input-container",
37928
+ "inheritedFrom": {
37929
+ "name": "Input",
37930
+ "module": "src/components/input/input.component.ts"
37931
+ }
37932
+ },
37933
+ {
37934
+ "description": "The container for the input field, leading icon, and prefix text elements.",
37935
+ "name": "input-section",
37936
+ "inheritedFrom": {
37937
+ "name": "Input",
37938
+ "module": "src/components/input/input.component.ts"
37939
+ }
37940
+ },
37941
+ {
37942
+ "description": "The input field element.",
37943
+ "name": "input-text",
37944
+ "inheritedFrom": {
37945
+ "name": "Input",
37946
+ "module": "src/components/input/input.component.ts"
37947
+ }
37948
+ },
37949
+ {
37950
+ "description": "The trailing button element that is displayed to clear the input field when the `trailingButton` property is set to true.",
37951
+ "name": "trailing-button",
37952
+ "inheritedFrom": {
37953
+ "name": "Input",
37954
+ "module": "src/components/input/input.component.ts"
37955
+ }
37860
37956
  }
37861
37957
  ],
37862
37958
  "slots": [
37863
37959
  {
37864
- "description": "This is a default/unnamed slot for Selectlistbox including options and/or option group.",
37865
- "name": "default"
37960
+ "description": "Slot for input chips",
37961
+ "name": "filters"
37866
37962
  },
37867
37963
  {
37868
37964
  "description": "Slot for the label element. If not provided, the `label` property will be used to render the label.",
@@ -37895,337 +37991,81 @@
37895
37991
  "name": "FormfieldWrapper",
37896
37992
  "module": "src/components/formfieldwrapper/formfieldwrapper.component.ts"
37897
37993
  }
37898
- }
37899
- ],
37900
- "members": [
37901
- {
37902
- "kind": "field",
37903
- "name": "placeholder",
37904
- "type": {
37905
- "text": "string | undefined"
37906
- },
37907
- "description": "The placeholder text which will be shown on the text if provided.",
37908
- "attribute": "placeholder"
37909
- },
37910
- {
37911
- "kind": "field",
37912
- "name": "placement",
37913
- "type": {
37914
- "text": "Placement"
37915
- },
37916
- "description": "The placement of the popover within Select component.\nThis defines the position of the popover relative to the select input field.\n\nPossible values:\n - 'top-start'\n - 'bottom-start'",
37917
- "default": "'bottom-start'",
37918
- "attribute": "placement",
37919
- "reflects": true
37920
- },
37921
- {
37922
- "kind": "field",
37923
- "name": "boundary",
37924
- "type": {
37925
- "text": "'clippingAncestors' | string"
37926
- },
37927
- "description": "This describes the clipping element(s) or area that overflow of the used popover will be checked relative to.\nThe default is 'clippingAncestors', which are the overflow ancestors which will cause the\nelement to be clipped.\n\nPossible values:\n - 'clippingAncestors'\n - any css selector",
37928
- "default": "'clippingAncestors'",
37929
- "attribute": "boundary",
37930
- "reflects": true
37931
- },
37932
- {
37933
- "kind": "field",
37934
- "name": "strategy",
37935
- "type": {
37936
- "text": "PopoverStrategy"
37937
- },
37938
- "description": "The strategy of the popover within Select.\nThis determines how the popover is positioned in the DOM.\n\nIn case `boundary` is set to something other than 'clippingAncestors',\nit might be necessary to set the `strategy` to 'fixed' to ensure that the popover\nis not getting clipped by scrollable containers enclosing the select.",
37939
- "default": "absolute",
37940
- "attribute": "strategy",
37941
- "reflects": true
37942
- },
37943
- {
37944
- "kind": "field",
37945
- "name": "popoverZIndex",
37946
- "type": {
37947
- "text": "number"
37948
- },
37949
- "description": "The z-index of the popover within Select.\n\nOverride this to make sure this stays on top of other components.",
37950
- "default": "1000",
37951
- "attribute": "popover-z-index",
37952
- "reflects": true
37953
- },
37954
- {
37955
- "kind": "field",
37956
- "name": "backdropAppendTo",
37957
- "type": {
37958
- "text": "string | undefined"
37959
- },
37960
- "description": "ID of the element where the backdrop will be appended to.\nThis is useful to ensure that the backdrop is appended to the correct element in the DOM.\nIf not set, the backdrop will be appended to the parent element of the select.",
37961
- "attribute": "backdrop-append-to",
37962
- "reflects": true
37963
- },
37964
- {
37965
- "kind": "method",
37966
- "name": "handleOptionsClick",
37967
- "privacy": "private",
37968
- "return": {
37969
- "type": {
37970
- "text": "void"
37971
- }
37972
- },
37973
- "parameters": [
37974
- {
37975
- "name": "event",
37976
- "type": {
37977
- "text": "MouseEvent"
37978
- },
37979
- "description": "The event which triggered this function."
37980
- }
37981
- ],
37982
- "description": "A private method which is called when an option is clicked.\nIt sets the selected option, removes selected from other options, updates the tabindex for all options,\ncloses the popover, and fires the change and input events."
37983
- },
37984
- {
37985
- "kind": "method",
37986
- "name": "setSelectedOption",
37987
- "privacy": "private",
37988
- "return": {
37989
- "type": {
37990
- "text": "void"
37991
- }
37992
- },
37993
- "parameters": [
37994
- {
37995
- "name": "option",
37996
- "type": {
37997
- "text": "Option | null"
37998
- },
37999
- "description": "The option element in DOM which gets selected."
38000
- }
38001
- ],
38002
- "description": "Sets the selected option in the component state and updates the input element's value.\nThis method ensures that only the selected option is marked as selected in the DOM,\nand updates the tabindex for all options accordingly.\nIt also updates the validity of the input element based on the selected option.\nThis method is called when an option is selected."
38003
- },
38004
- {
38005
- "kind": "method",
38006
- "name": "updateSelectedInChildOptions",
38007
- "privacy": "private",
38008
- "return": {
38009
- "type": {
38010
- "text": "void"
38011
- }
38012
- },
38013
- "parameters": [
38014
- {
38015
- "name": "selectedOption",
38016
- "type": {
38017
- "text": "Option | null"
38018
- },
38019
- "description": "The option which gets selected"
38020
- }
38021
- ],
38022
- "description": "Sets selected attribute on the selected option and removes it from all options"
38023
- },
38024
- {
38025
- "kind": "method",
38026
- "name": "fireEvents",
38027
- "privacy": "private",
38028
- "return": {
38029
- "type": {
38030
- "text": "void"
38031
- }
38032
- },
38033
- "description": "A private method which is called to fire the change and input events.\nIt dispatches the input and change events with the selected option's value and label."
38034
- },
38035
- {
38036
- "kind": "method",
38037
- "name": "dispatchChange",
38038
- "privacy": "private",
38039
- "return": {
38040
- "type": {
38041
- "text": "void"
38042
- }
38043
- },
38044
- "parameters": [
38045
- {
38046
- "name": "option",
38047
- "type": {
38048
- "text": "Option"
38049
- }
38050
- }
38051
- ]
38052
- },
38053
- {
38054
- "kind": "method",
38055
- "name": "dispatchInput",
38056
- "privacy": "private",
38057
- "return": {
38058
- "type": {
38059
- "text": "void"
38060
- }
38061
- },
38062
- "parameters": [
38063
- {
38064
- "name": "option",
38065
- "type": {
38066
- "text": "Option"
38067
- }
38068
- }
38069
- ]
38070
37994
  },
38071
37995
  {
38072
- "kind": "method",
38073
- "name": "handleClickCombobox",
38074
- "privacy": "private",
38075
- "return": {
38076
- "type": {
38077
- "text": "void"
38078
- }
38079
- },
38080
- "parameters": [
38081
- {
38082
- "name": "event",
38083
- "type": {
38084
- "text": "MouseEvent"
38085
- },
38086
- "description": "The mouse event which triggered this function."
38087
- }
38088
- ],
38089
- "description": "Handles the click event on the visual combobox.\nIf the select is disabled, soft-disabled or readonly, it does nothing.\nIf the popover is already open, it closes it.\nIf it is closed, it opens it."
37996
+ "description": "Slot for the input element. If not provided, the input field will be rendered.",
37997
+ "name": "input",
37998
+ "inheritedFrom": {
37999
+ "name": "Input",
38000
+ "module": "src/components/input/input.component.ts"
38001
+ }
38090
38002
  },
38091
38003
  {
38092
- "kind": "method",
38093
- "name": "handleKeydownCombobox",
38094
- "privacy": "private",
38095
- "return": {
38096
- "type": {
38097
- "text": "void"
38098
- }
38099
- },
38100
- "parameters": [
38101
- {
38102
- "name": "event",
38103
- "type": {
38104
- "text": "KeyboardEvent"
38105
- },
38106
- "description": "The keyboard event."
38107
- }
38108
- ],
38109
- "description": "Handles the keydown event on the select element when the popover is closed.\nThe options are as follows:\n- ARROW_DOWN, ARROW_UP, SPACE: Opens the popover and prevents the default scrolling behavior.\n- ENTER: Opens the popover, prevents default scrolling, and submits the form if the popover is closed.\n- HOME: Opens the popover and sets focus and tabindex on the first option.\n- END: Opens the popover and sets focus and tabindex on the last option."
38004
+ "description": "Slot for the leading icon before the input field. If not provided, the `leadingIcon` property will be used to render the leading icon.",
38005
+ "name": "input-leading-icon",
38006
+ "inheritedFrom": {
38007
+ "name": "Input",
38008
+ "module": "src/components/input/input.component.ts"
38009
+ }
38110
38010
  },
38111
38011
  {
38112
- "kind": "method",
38113
- "name": "getCurrentIndex",
38114
- "privacy": "private",
38115
- "return": {
38116
- "type": {
38117
- "text": ""
38118
- }
38119
- },
38120
- "parameters": [
38121
- {
38122
- "name": "target",
38123
- "type": {
38124
- "text": "HTMLElement | null"
38125
- },
38126
- "description": "The target element that triggered the event."
38127
- }
38128
- ],
38129
- "description": "Retrieves the current index of the item that triggered the event.",
38012
+ "description": "Slot for the prefix text before the input field. If not provided, the `prefixText` property will be used to render the prefix text.",
38013
+ "name": "input-prefix-text",
38130
38014
  "inheritedFrom": {
38131
- "name": "ListNavigationMixin",
38132
- "module": "utils/mixins/ListNavigationMixin.js"
38015
+ "name": "Input",
38016
+ "module": "src/components/input/input.component.ts"
38133
38017
  }
38134
38018
  },
38135
38019
  {
38136
- "kind": "method",
38137
- "name": "resetTabIndexes",
38138
- "privacy": "protected",
38139
- "parameters": [
38140
- {
38141
- "name": "index",
38142
- "type": {
38143
- "text": "number"
38144
- },
38145
- "description": "The index of the currently focused item."
38146
- }
38147
- ],
38148
- "description": "Reset all tabindex to -1 and set the tabindex of the current item to 0",
38020
+ "description": "Slot for the trailing button to clear the input field. If not provided, the clear button will be rendered when `trailingButton` property is set to true.",
38021
+ "name": "trailing-button",
38149
38022
  "inheritedFrom": {
38150
- "name": "ListNavigationMixin",
38151
- "module": "utils/mixins/ListNavigationMixin.js"
38023
+ "name": "Input",
38024
+ "module": "src/components/input/input.component.ts"
38025
+ }
38026
+ }
38027
+ ],
38028
+ "members": [
38029
+ {
38030
+ "kind": "field",
38031
+ "name": "inputChips",
38032
+ "type": {
38033
+ "text": "Array<HTMLElement> | undefined"
38152
38034
  }
38153
38035
  },
38154
38036
  {
38155
38037
  "kind": "method",
38156
- "name": "resetTabIndexAndSetFocus",
38038
+ "name": "handleKeyDown",
38157
38039
  "privacy": "protected",
38158
38040
  "parameters": [
38159
38041
  {
38160
- "name": "newIndex",
38161
- "type": {
38162
- "text": "number"
38163
- },
38164
- "description": "The index of the new item to focus."
38165
- },
38166
- {
38167
- "name": "oldIndex",
38168
- "optional": true,
38042
+ "name": "event",
38169
38043
  "type": {
38170
- "text": "number"
38044
+ "text": "KeyboardEvent"
38171
38045
  },
38172
- "description": "The index of the currently focused item."
38173
- },
38174
- {
38175
- "name": "focusNewItem",
38176
- "default": "true",
38177
- "description": "Call focus() on the new item or not. It should be false during firstUpdate"
38046
+ "description": "Keyboard event"
38178
38047
  }
38179
38048
  ],
38180
- "description": "Resets the tabindex of the currently focused item and sets focus to a new item.",
38181
- "return": {
38182
- "type": {
38183
- "text": ""
38184
- }
38185
- },
38049
+ "description": "Handles the keydown event of the search field.\nIf the key pressed is 'Enter', it submits the form.\nIf the key pressed is 'Escape', it clears the input text.",
38186
38050
  "inheritedFrom": {
38187
- "name": "ListNavigationMixin",
38188
- "module": "utils/mixins/ListNavigationMixin.js"
38051
+ "name": "Input",
38052
+ "module": "components/input/input.component.js"
38189
38053
  }
38190
38054
  },
38191
38055
  {
38192
38056
  "kind": "method",
38193
- "name": "resolveDirectionKey",
38057
+ "name": "renderInputChips",
38194
38058
  "privacy": "private",
38195
- "parameters": [
38196
- {
38197
- "name": "key",
38198
- "type": {
38199
- "text": "string"
38200
- },
38201
- "description": "The key pressed by the user."
38202
- },
38203
- {
38204
- "name": "isRtl",
38205
- "type": {
38206
- "text": "boolean"
38207
- },
38208
- "description": "A boolean indicating if the layout is right-to-left (RTL)."
38209
- }
38210
- ],
38211
- "description": "Resolves the key pressed by the user based on the direction of the layout.\nThis method is used to handle keyboard navigation in a right-to-left (RTL) layout.\nIt checks if the layout is RTL and adjusts the arrow keys accordingly.\nFor example, in RTL, the left arrow key behaves like the right arrow key and vice versa.",
38212
- "return": {
38213
- "type": {
38214
- "text": ""
38215
- }
38216
- },
38217
- "inheritedFrom": {
38218
- "name": "ListNavigationMixin",
38219
- "module": "utils/mixins/ListNavigationMixin.js"
38220
- }
38059
+ "description": "This method is used to render the input chips inside filters slot.\nIt will remove any elements that are not input chips."
38221
38060
  },
38222
38061
  {
38223
38062
  "kind": "method",
38224
- "name": "shouldLoop",
38225
- "privacy": "private",
38063
+ "name": "clearInputText",
38064
+ "privacy": "protected",
38065
+ "description": "Clears the input field.",
38226
38066
  "inheritedFrom": {
38227
- "name": "ListNavigationMixin",
38228
- "module": "utils/mixins/ListNavigationMixin.js"
38067
+ "name": "Input",
38068
+ "module": "components/input/input.component.js"
38229
38069
  }
38230
38070
  },
38231
38071
  {
@@ -38358,6 +38198,306 @@
38358
38198
  "module": "utils/mixins/DataAriaLabelMixin.js"
38359
38199
  }
38360
38200
  },
38201
+ {
38202
+ "kind": "field",
38203
+ "name": "placeholder",
38204
+ "type": {
38205
+ "text": "string"
38206
+ },
38207
+ "default": "''",
38208
+ "description": "The placeholder text that is displayed when the input field is empty.",
38209
+ "attribute": "placeholder",
38210
+ "inheritedFrom": {
38211
+ "name": "Input",
38212
+ "module": "components/input/input.component.js"
38213
+ }
38214
+ },
38215
+ {
38216
+ "kind": "field",
38217
+ "name": "prefixText",
38218
+ "type": {
38219
+ "text": "string | undefined"
38220
+ },
38221
+ "description": "The prefix text that is displayed before the input field. It has a max length of 10 characters.\nWhen the prefix text is set, make sure to set the 'data-aria-label'\nattribute with the appropriate value for accessibility.",
38222
+ "attribute": "prefix-text",
38223
+ "inheritedFrom": {
38224
+ "name": "Input",
38225
+ "module": "components/input/input.component.js"
38226
+ }
38227
+ },
38228
+ {
38229
+ "kind": "field",
38230
+ "name": "leadingIcon",
38231
+ "type": {
38232
+ "text": "IconNames | undefined"
38233
+ },
38234
+ "description": "The leading icon that is displayed before the input field.",
38235
+ "attribute": "leading-icon",
38236
+ "inheritedFrom": {
38237
+ "name": "Input",
38238
+ "module": "components/input/input.component.js"
38239
+ }
38240
+ },
38241
+ {
38242
+ "kind": "field",
38243
+ "name": "trailingButton",
38244
+ "type": {
38245
+ "text": "boolean"
38246
+ },
38247
+ "default": "false",
38248
+ "description": "The trailing button when set to true, shows a clear button that clears the input field.",
38249
+ "attribute": "trailing-button",
38250
+ "inheritedFrom": {
38251
+ "name": "Input",
38252
+ "module": "components/input/input.component.js"
38253
+ }
38254
+ },
38255
+ {
38256
+ "kind": "field",
38257
+ "name": "maxlength",
38258
+ "type": {
38259
+ "text": "number | undefined"
38260
+ },
38261
+ "description": "The maximum number of characters that the input field can accept.",
38262
+ "attribute": "maxlength",
38263
+ "inheritedFrom": {
38264
+ "name": "Input",
38265
+ "module": "components/input/input.component.js"
38266
+ }
38267
+ },
38268
+ {
38269
+ "kind": "field",
38270
+ "name": "minlength",
38271
+ "type": {
38272
+ "text": "number | undefined"
38273
+ },
38274
+ "description": "The minimum number of characters that the input field can accept.",
38275
+ "attribute": "minlength",
38276
+ "inheritedFrom": {
38277
+ "name": "Input",
38278
+ "module": "components/input/input.component.js"
38279
+ }
38280
+ },
38281
+ {
38282
+ "kind": "field",
38283
+ "name": "autocapitalize",
38284
+ "type": {
38285
+ "text": "AutoCapitalizeType"
38286
+ },
38287
+ "description": "The autocapitalize attribute of the input field.",
38288
+ "default": "'off'",
38289
+ "attribute": "autocapitalize",
38290
+ "inheritedFrom": {
38291
+ "name": "Input",
38292
+ "module": "components/input/input.component.js"
38293
+ }
38294
+ },
38295
+ {
38296
+ "kind": "field",
38297
+ "name": "autocomplete",
38298
+ "type": {
38299
+ "text": "AutoCompleteType"
38300
+ },
38301
+ "description": "The autocomplete attribute of the input field.",
38302
+ "default": "'off'",
38303
+ "attribute": "autocomplete",
38304
+ "inheritedFrom": {
38305
+ "name": "Input",
38306
+ "module": "components/input/input.component.js"
38307
+ }
38308
+ },
38309
+ {
38310
+ "kind": "field",
38311
+ "name": "dirname",
38312
+ "type": {
38313
+ "text": "string | undefined"
38314
+ },
38315
+ "description": "Specifies the name of the directionality of text for submission purposes (e.g., \"rtl\" for right-to-left).",
38316
+ "attribute": "dirname",
38317
+ "inheritedFrom": {
38318
+ "name": "Input",
38319
+ "module": "components/input/input.component.js"
38320
+ }
38321
+ },
38322
+ {
38323
+ "kind": "field",
38324
+ "name": "pattern",
38325
+ "type": {
38326
+ "text": "string | undefined"
38327
+ },
38328
+ "description": "The pattern attribute of the input field.\nSpecifies a regular expression that the input value must match for validation purposes.",
38329
+ "attribute": "pattern",
38330
+ "inheritedFrom": {
38331
+ "name": "Input",
38332
+ "module": "components/input/input.component.js"
38333
+ }
38334
+ },
38335
+ {
38336
+ "kind": "field",
38337
+ "name": "list",
38338
+ "type": {
38339
+ "text": "string | undefined"
38340
+ },
38341
+ "description": "The list attribute of the input field.\nIdentifies a list of pre-defined options to suggest to the user.",
38342
+ "attribute": "list",
38343
+ "inheritedFrom": {
38344
+ "name": "Input",
38345
+ "module": "components/input/input.component.js"
38346
+ }
38347
+ },
38348
+ {
38349
+ "kind": "field",
38350
+ "name": "size",
38351
+ "type": {
38352
+ "text": "number | undefined | undefined"
38353
+ },
38354
+ "description": "The size attribute of the input field.\nSpecifies the width of the input field.",
38355
+ "default": "undefined",
38356
+ "attribute": "size",
38357
+ "inheritedFrom": {
38358
+ "name": "Input",
38359
+ "module": "components/input/input.component.js"
38360
+ }
38361
+ },
38362
+ {
38363
+ "kind": "field",
38364
+ "name": "clearAriaLabel",
38365
+ "type": {
38366
+ "text": "string"
38367
+ },
38368
+ "default": "''",
38369
+ "description": "Aria label for the trailing button. If trailing button is set to true, this label is used for the clear button.",
38370
+ "attribute": "clear-aria-label",
38371
+ "inheritedFrom": {
38372
+ "name": "Input",
38373
+ "module": "components/input/input.component.js"
38374
+ }
38375
+ },
38376
+ {
38377
+ "kind": "method",
38378
+ "name": "setInputValidity",
38379
+ "privacy": "private",
38380
+ "inheritedFrom": {
38381
+ "name": "Input",
38382
+ "module": "components/input/input.component.js"
38383
+ }
38384
+ },
38385
+ {
38386
+ "kind": "method",
38387
+ "name": "updateValue",
38388
+ "privacy": "private",
38389
+ "description": "Updates the value of the input field.\nSets the form value.",
38390
+ "return": {
38391
+ "type": {
38392
+ "text": ""
38393
+ }
38394
+ },
38395
+ "inheritedFrom": {
38396
+ "name": "Input",
38397
+ "module": "components/input/input.component.js"
38398
+ }
38399
+ },
38400
+ {
38401
+ "kind": "method",
38402
+ "name": "onInput",
38403
+ "privacy": "private",
38404
+ "description": "Handles the input event of the input field.\nUpdates the value and sets the validity of the input field.",
38405
+ "inheritedFrom": {
38406
+ "name": "Input",
38407
+ "module": "components/input/input.component.js"
38408
+ }
38409
+ },
38410
+ {
38411
+ "kind": "method",
38412
+ "name": "onChange",
38413
+ "privacy": "private",
38414
+ "parameters": [
38415
+ {
38416
+ "name": "event",
38417
+ "type": {
38418
+ "text": "Event"
38419
+ },
38420
+ "description": "Event which contains information about the value change."
38421
+ }
38422
+ ],
38423
+ "description": "Handles the change event of the input field.\nUpdates the value and sets the validity of the input field.\n\nThe 'change' event does not bubble up through the shadow DOM as it was not composed.\nTherefore, we need to re-dispatch the same event to ensure it is propagated correctly.\nRead more: https://developer.mozilla.org/en-US/docs/Web/API/Event/composed",
38424
+ "inheritedFrom": {
38425
+ "name": "Input",
38426
+ "module": "components/input/input.component.js"
38427
+ }
38428
+ },
38429
+ {
38430
+ "kind": "method",
38431
+ "name": "renderLeadingIcon",
38432
+ "privacy": "protected",
38433
+ "description": "Renders the leading icon before the input field.\nIf the leading icon is not set, it will not be displayed.",
38434
+ "return": {
38435
+ "type": {
38436
+ "text": ""
38437
+ }
38438
+ },
38439
+ "inheritedFrom": {
38440
+ "name": "Input",
38441
+ "module": "components/input/input.component.js"
38442
+ }
38443
+ },
38444
+ {
38445
+ "kind": "method",
38446
+ "name": "renderPrefixText",
38447
+ "privacy": "protected",
38448
+ "description": "Renders the prefix text before the input field.\nIf the prefix text is more than 10 characters,\n- it will not be displayed.\n- the validation messsage will be displayed.\n\n Note: We are setting aria-hidden so that the screen reader does not read the prefix text.\n The consumers should set the appropriate aria-label for the input field using 'data-aria-label' attribute.",
38449
+ "return": {
38450
+ "type": {
38451
+ "text": ""
38452
+ }
38453
+ },
38454
+ "inheritedFrom": {
38455
+ "name": "Input",
38456
+ "module": "components/input/input.component.js"
38457
+ }
38458
+ },
38459
+ {
38460
+ "kind": "method",
38461
+ "name": "renderTrailingButton",
38462
+ "privacy": "protected",
38463
+ "parameters": [
38464
+ {
38465
+ "name": "show",
38466
+ "default": "false"
38467
+ }
38468
+ ],
38469
+ "description": "Renders the trailing button to clear the input field if the trailingButton is set to true.",
38470
+ "return": {
38471
+ "type": {
38472
+ "text": ""
38473
+ }
38474
+ },
38475
+ "inheritedFrom": {
38476
+ "name": "Input",
38477
+ "module": "components/input/input.component.js"
38478
+ }
38479
+ },
38480
+ {
38481
+ "kind": "method",
38482
+ "name": "renderInputElement",
38483
+ "privacy": "protected",
38484
+ "parameters": [
38485
+ {
38486
+ "name": "type",
38487
+ "type": {
38488
+ "text": "InputType"
38489
+ }
38490
+ },
38491
+ {
38492
+ "name": "hidePlaceholder",
38493
+ "default": "false"
38494
+ }
38495
+ ],
38496
+ "inheritedFrom": {
38497
+ "name": "Input",
38498
+ "module": "components/input/input.component.js"
38499
+ }
38500
+ },
38361
38501
  {
38362
38502
  "kind": "field",
38363
38503
  "name": "disabled",
@@ -38594,90 +38734,71 @@
38594
38734
  ],
38595
38735
  "events": [
38596
38736
  {
38597
- "name": "change",
38598
- "type": {
38599
- "text": "CustomEvent"
38600
- },
38601
- "description": "(React: onChange) This event is dispatched when the select is changed.",
38602
- "reactName": "onChange"
38603
- },
38604
- {
38737
+ "description": "(React: onInput) This event is dispatched when the value of the input field changes (every press).",
38605
38738
  "name": "input",
38606
- "type": {
38607
- "text": "CustomEvent"
38608
- },
38609
- "description": "(React: onInput) This event is dispatched when the select is changed.",
38610
- "reactName": "onInput"
38611
- },
38612
- {
38613
- "description": "(React: onClick) This event is dispatched when the select is clicked.",
38614
- "name": "click",
38615
- "reactName": "onClick"
38739
+ "reactName": "onInput",
38740
+ "inheritedFrom": {
38741
+ "name": "Input",
38742
+ "module": "src/components/input/input.component.ts"
38743
+ }
38616
38744
  },
38617
38745
  {
38618
- "description": "(React: onKeyDown) This event is dispatched when a key is pressed down on the select.",
38619
- "name": "keydown",
38620
- "reactName": "onKeyDown"
38746
+ "description": "(React: onChange) This event is dispatched when the value of the input field changes (on blur).",
38747
+ "name": "change",
38748
+ "reactName": "onChange",
38749
+ "inheritedFrom": {
38750
+ "name": "Input",
38751
+ "module": "src/components/input/input.component.ts"
38752
+ }
38621
38753
  },
38622
38754
  {
38623
- "description": "(React: onFocus) This event is dispatched when the select receives focus.",
38755
+ "description": "(React: onFocus) This event is dispatched when the input receives focus.",
38624
38756
  "name": "focus",
38625
- "reactName": "onFocus"
38626
- }
38627
- ],
38628
- "attributes": [
38629
- {
38630
- "name": "placeholder",
38631
- "type": {
38632
- "text": "string | undefined"
38633
- },
38634
- "description": "The placeholder text which will be shown on the text if provided.",
38635
- "fieldName": "placeholder"
38636
- },
38637
- {
38638
- "name": "placement",
38639
- "type": {
38640
- "text": "Placement"
38641
- },
38642
- "description": "The placement of the popover within Select component.\nThis defines the position of the popover relative to the select input field.\n\nPossible values:\n - 'top-start'\n - 'bottom-start'",
38643
- "default": "'bottom-start'",
38644
- "fieldName": "placement"
38645
- },
38646
- {
38647
- "name": "boundary",
38648
- "type": {
38649
- "text": "'clippingAncestors' | string"
38650
- },
38651
- "description": "This describes the clipping element(s) or area that overflow of the used popover will be checked relative to.\nThe default is 'clippingAncestors', which are the overflow ancestors which will cause the\nelement to be clipped.\n\nPossible values:\n - 'clippingAncestors'\n - any css selector",
38652
- "default": "'clippingAncestors'",
38653
- "fieldName": "boundary"
38757
+ "reactName": "onFocus",
38758
+ "inheritedFrom": {
38759
+ "name": "Input",
38760
+ "module": "src/components/input/input.component.ts"
38761
+ }
38654
38762
  },
38655
38763
  {
38656
- "name": "strategy",
38657
- "type": {
38658
- "text": "PopoverStrategy"
38659
- },
38660
- "description": "The strategy of the popover within Select.\nThis determines how the popover is positioned in the DOM.\n\nIn case `boundary` is set to something other than 'clippingAncestors',\nit might be necessary to set the `strategy` to 'fixed' to ensure that the popover\nis not getting clipped by scrollable containers enclosing the select.",
38661
- "default": "absolute",
38662
- "fieldName": "strategy"
38764
+ "description": "(React: onBlur) This event is dispatched when the input loses focus.",
38765
+ "name": "blur",
38766
+ "reactName": "onBlur",
38767
+ "inheritedFrom": {
38768
+ "name": "Input",
38769
+ "module": "src/components/input/input.component.ts"
38770
+ }
38663
38771
  },
38664
38772
  {
38665
- "name": "popover-z-index",
38773
+ "name": "clear",
38666
38774
  "type": {
38667
- "text": "number"
38775
+ "text": "CustomEvent"
38668
38776
  },
38669
- "description": "The z-index of the popover within Select.\n\nOverride this to make sure this stays on top of other components.",
38670
- "default": "1000",
38671
- "fieldName": "popoverZIndex"
38777
+ "description": "(React: onClear) This event is dispatched when the input text is cleared.",
38778
+ "reactName": "onClear",
38779
+ "inheritedFrom": {
38780
+ "name": "Input",
38781
+ "module": "src/components/input/input.component.ts"
38782
+ }
38672
38783
  },
38673
38784
  {
38674
- "name": "backdrop-append-to",
38675
38785
  "type": {
38676
- "text": "string | undefined"
38786
+ "text": "EventConstructor"
38677
38787
  },
38678
- "description": "ID of the element where the backdrop will be appended to.\nThis is useful to ensure that the backdrop is appended to the correct element in the DOM.\nIf not set, the backdrop will be appended to the parent element of the select.",
38679
- "fieldName": "backdropAppendTo"
38680
- },
38788
+ "inheritedFrom": {
38789
+ "name": "Input",
38790
+ "module": "src/components/input/input.component.ts"
38791
+ }
38792
+ }
38793
+ ],
38794
+ "superclass": {
38795
+ "name": "Input",
38796
+ "module": "/src/components/input/input.component"
38797
+ },
38798
+ "tagName": "mdc-searchfield",
38799
+ "jsDoc": "/**\n * `mdc-searchfield` component is used as an input field for search functionality.\n *\n * It supports `mdc-inputchip` as filters.\n *\n * This component is built by extending the `mdc-input` component.\n *\n * @tagname mdc-searchfield\n *\n * @event input - (React: onInput) This event is dispatched when the value of the input field changes (every press).\n * @event change - (React: onChange) This event is dispatched when the value of the input field changes (on blur).\n * @event focus - (React: onFocus) This event is dispatched when the input receives focus.\n * @event blur - (React: onBlur) This event is dispatched when the input loses focus.\n * @event clear - (React: onClear) This event is dispatched when the input text is cleared.\n *\n * @slot filters - Slot for input chips\n * @slot label - Slot for the label element. If not provided, the `label` property will be used to render the label.\n * @slot toggletip - Slot for the toggletip info icon button. If not provided, the `toggletip-text` property will be used to render the info icon button and toggletip.\n * @slot help-icon - Slot for the helper/validation icon. If not provided, the icon will be rendered based on the `helpTextType` property.\n * @slot help-text - Slot for the helper/validation text. If not provided, the `helpText` property will be used to render the helper/validation text.\n * @slot input - Slot for the input element. If not provided, the input field will be rendered.\n * @slot input-leading-icon - Slot for the leading icon before the input field. If not provided, the `leadingIcon` property will be used to render the leading icon.\n * @slot input-prefix-text - Slot for the prefix text before the input field. If not provided, the `prefixText` property will be used to render the prefix text.\n * @slot trailing-button - Slot for the trailing button to clear the input field. If not provided, the clear button will be rendered when `trailingButton` property is set to true.\n *\n * @cssproperty --mdc-label-font-size - Font size for the label text.\n * @cssproperty --mdc-label-font-weight - Font weight for the label text.\n * @cssproperty --mdc-label-line-height - Line height for the label text.\n * @cssproperty --mdc-label-color - Color for the label text.\n * @cssproperty --mdc-help-text-font-size - Font size for the help text.\n * @cssproperty --mdc-help-text-font-weight - Font weight for the help text.\n * @cssproperty --mdc-help-text-line-height - Line height for the help text.\n * @cssproperty --mdc-help-text-color - Color for the help text.\n * @cssproperty --mdc-input-text-color - Text color for the input field\n * @cssproperty --mdc-input-border-color - Border color for the input container\n * @cssproperty --mdc-input-background-color - Background color for the input field\n * @cssproperty --mdc-input-support-text-color - Text color for the help text\n * @cssproperty --mdc-input-selection-text-color - Text color for the selected text\n * @cssproperty --mdc-input-selection-background-color - Background color for the selected text\n *\n * @csspart label - The label element.\n * @csspart label-text - The container for the label and required indicator elements.\n * @csspart required-indicator - The required indicator element that is displayed next to the label when the `required` property is set to true.\n * @csspart info-icon-btn - The info icon button element that is displayed next to the label when the `toggletip-text` property is set.\n * @csspart label-toggletip - The toggletip element that is displayed when the info icon button is clicked.\n * @csspart help-text - The helper/validation text element.\n * @csspart helper-icon - The helper/validation icon element that is displayed next to the helper/validation text.\n * @csspart help-text-container - The container for the helper/validation icon and text elements.\n * @csspart leading-icon - The leading icon element that is displayed before the input field.\n * @csspart prefix-text - The prefix text element that is displayed before the input field.\n * @csspart input-container - The container for the input field, leading icon, prefix text, and trailing button elements.\n * @csspart input-section - The container for the input field, leading icon, and prefix text elements.\n * @csspart input-text - The input field element.\n * @csspart trailing-button - The trailing button element that is displayed to clear the input field when the `trailingButton` property is set to true.\n */",
38800
+ "customElement": true,
38801
+ "attributes": [
38681
38802
  {
38682
38803
  "name": "auto-focus-on-mount",
38683
38804
  "type": {
@@ -38743,429 +38864,304 @@
38743
38864
  }
38744
38865
  },
38745
38866
  {
38746
- "name": "disabled",
38867
+ "name": "placeholder",
38747
38868
  "type": {
38748
- "text": "boolean | undefined"
38869
+ "text": "string"
38749
38870
  },
38750
- "description": "Indicates whether the component is disabled.\nWhen the component is disabled for user interaction; it is not focusable or clickable.",
38751
- "default": "undefined",
38752
- "fieldName": "disabled",
38871
+ "default": "''",
38872
+ "description": "The placeholder text that is displayed when the input field is empty.",
38873
+ "fieldName": "placeholder",
38753
38874
  "inheritedFrom": {
38754
- "name": "FormfieldWrapper",
38755
- "module": "src/components/formfieldwrapper/formfieldwrapper.component.ts"
38875
+ "name": "Input",
38876
+ "module": "src/components/input/input.component.ts"
38756
38877
  }
38757
38878
  },
38758
38879
  {
38759
- "name": "label",
38880
+ "name": "prefix-text",
38760
38881
  "type": {
38761
38882
  "text": "string | undefined"
38762
38883
  },
38763
- "description": "The label of the input field. It is linked to the input field using the `for` attribute.",
38764
- "fieldName": "label",
38884
+ "description": "The prefix text that is displayed before the input field. It has a max length of 10 characters.\nWhen the prefix text is set, make sure to set the 'data-aria-label'\nattribute with the appropriate value for accessibility.",
38885
+ "fieldName": "prefixText",
38765
38886
  "inheritedFrom": {
38766
- "name": "FormfieldWrapper",
38767
- "module": "src/components/formfieldwrapper/formfieldwrapper.component.ts"
38887
+ "name": "Input",
38888
+ "module": "src/components/input/input.component.ts"
38768
38889
  }
38769
38890
  },
38770
38891
  {
38771
- "name": "required",
38892
+ "name": "leading-icon",
38772
38893
  "type": {
38773
- "text": "boolean"
38894
+ "text": "IconNames | undefined"
38774
38895
  },
38775
- "default": "false",
38776
- "description": "The required attribute to indicate that the input field is required.\nIt is used to append a required indicator (*) to the label.",
38777
- "fieldName": "required",
38896
+ "description": "The leading icon that is displayed before the input field.",
38897
+ "fieldName": "leadingIcon",
38778
38898
  "inheritedFrom": {
38779
- "name": "FormfieldWrapper",
38780
- "module": "src/components/formfieldwrapper/formfieldwrapper.component.ts"
38899
+ "name": "Input",
38900
+ "module": "src/components/input/input.component.ts"
38781
38901
  }
38782
38902
  },
38783
38903
  {
38784
- "name": "help-text-type",
38904
+ "name": "trailing-button",
38785
38905
  "type": {
38786
- "text": "ValidationType"
38906
+ "text": "boolean"
38787
38907
  },
38788
- "description": "The type of help text. It can be 'default', 'error', 'warning', 'success', 'priority'.",
38789
- "fieldName": "helpTextType",
38908
+ "default": "false",
38909
+ "description": "The trailing button when set to true, shows a clear button that clears the input field.",
38910
+ "fieldName": "trailingButton",
38790
38911
  "inheritedFrom": {
38791
- "name": "FormfieldWrapper",
38792
- "module": "src/components/formfieldwrapper/formfieldwrapper.component.ts"
38912
+ "name": "Input",
38913
+ "module": "src/components/input/input.component.ts"
38793
38914
  }
38794
38915
  },
38795
38916
  {
38796
- "name": "help-text",
38917
+ "name": "maxlength",
38797
38918
  "type": {
38798
- "text": "string | undefined"
38919
+ "text": "number | undefined"
38799
38920
  },
38800
- "description": "The help text that is displayed below the input field.",
38801
- "fieldName": "helpText",
38921
+ "description": "The maximum number of characters that the input field can accept.",
38922
+ "fieldName": "maxlength",
38802
38923
  "inheritedFrom": {
38803
- "name": "FormfieldWrapper",
38804
- "module": "src/components/formfieldwrapper/formfieldwrapper.component.ts"
38924
+ "name": "Input",
38925
+ "module": "src/components/input/input.component.ts"
38805
38926
  }
38806
38927
  },
38807
38928
  {
38808
- "name": "toggletip-text",
38929
+ "name": "minlength",
38809
38930
  "type": {
38810
- "text": "string | undefined"
38931
+ "text": "number | undefined"
38811
38932
  },
38812
- "description": "The toggletip text that is displayed when the label is hovered.\nIt is used to provide additional information about the label.",
38813
- "fieldName": "toggletipText",
38933
+ "description": "The minimum number of characters that the input field can accept.",
38934
+ "fieldName": "minlength",
38814
38935
  "inheritedFrom": {
38815
- "name": "FormfieldWrapper",
38816
- "module": "src/components/formfieldwrapper/formfieldwrapper.component.ts"
38936
+ "name": "Input",
38937
+ "module": "src/components/input/input.component.ts"
38817
38938
  }
38818
38939
  },
38819
38940
  {
38820
- "name": "toggletip-placement",
38941
+ "name": "autocapitalize",
38821
38942
  "type": {
38822
- "text": "PopoverPlacement"
38943
+ "text": "AutoCapitalizeType"
38823
38944
  },
38824
- "description": "The placement of the toggletip that is displayed when the info icon is hovered.",
38825
- "default": "'top'",
38826
- "fieldName": "toggletipPlacement",
38945
+ "description": "The autocapitalize attribute of the input field.",
38946
+ "default": "'off'",
38947
+ "fieldName": "autocapitalize",
38827
38948
  "inheritedFrom": {
38828
- "name": "FormfieldWrapper",
38829
- "module": "src/components/formfieldwrapper/formfieldwrapper.component.ts"
38949
+ "name": "Input",
38950
+ "module": "src/components/input/input.component.ts"
38830
38951
  }
38831
38952
  },
38832
38953
  {
38833
- "name": "toggletip-strategy",
38954
+ "name": "autocomplete",
38834
38955
  "type": {
38835
- "text": "PopoverStrategy"
38956
+ "text": "AutoCompleteType"
38836
38957
  },
38837
- "fieldName": "toggletipStrategy",
38838
- "inheritedFrom": {
38839
- "name": "FormfieldWrapper",
38840
- "module": "src/components/formfieldwrapper/formfieldwrapper.component.ts"
38958
+ "description": "The autocomplete attribute of the input field.",
38959
+ "default": "'off'",
38960
+ "fieldName": "autocomplete",
38961
+ "inheritedFrom": {
38962
+ "name": "Input",
38963
+ "module": "src/components/input/input.component.ts"
38841
38964
  }
38842
38965
  },
38843
38966
  {
38844
- "name": "info-icon-aria-label",
38967
+ "name": "dirname",
38845
38968
  "type": {
38846
38969
  "text": "string | undefined"
38847
38970
  },
38848
- "description": "Aria label for the info icon that is displayed next to the label when `toggletipText` is set.\nThis is used for accessibility purposes to provide a description of the icon.",
38849
- "fieldName": "infoIconAriaLabel",
38971
+ "description": "Specifies the name of the directionality of text for submission purposes (e.g., \"rtl\" for right-to-left).",
38972
+ "fieldName": "dirname",
38850
38973
  "inheritedFrom": {
38851
- "name": "FormfieldWrapper",
38852
- "module": "src/components/formfieldwrapper/formfieldwrapper.component.ts"
38974
+ "name": "Input",
38975
+ "module": "src/components/input/input.component.ts"
38853
38976
  }
38854
38977
  },
38855
38978
  {
38856
- "name": "readonly",
38979
+ "name": "pattern",
38857
38980
  "type": {
38858
- "text": "boolean"
38981
+ "text": "string | undefined"
38859
38982
  },
38860
- "default": "false",
38861
- "description": "Determines whether the form field is read-only.",
38862
- "fieldName": "readonly",
38983
+ "description": "The pattern attribute of the input field.\nSpecifies a regular expression that the input value must match for validation purposes.",
38984
+ "fieldName": "pattern",
38863
38985
  "inheritedFrom": {
38864
- "name": "FormfieldWrapper",
38865
- "module": "src/components/formfieldwrapper/formfieldwrapper.component.ts"
38986
+ "name": "Input",
38987
+ "module": "src/components/input/input.component.ts"
38866
38988
  }
38867
38989
  },
38868
38990
  {
38869
- "name": "soft-disabled",
38991
+ "name": "list",
38870
38992
  "type": {
38871
- "text": "boolean"
38993
+ "text": "string | undefined"
38872
38994
  },
38873
- "default": "false",
38874
- "description": "Determines whether the form field is soft-disabled.",
38875
- "fieldName": "softDisabled",
38995
+ "description": "The list attribute of the input field.\nIdentifies a list of pre-defined options to suggest to the user.",
38996
+ "fieldName": "list",
38876
38997
  "inheritedFrom": {
38877
- "name": "FormfieldWrapper",
38878
- "module": "src/components/formfieldwrapper/formfieldwrapper.component.ts"
38998
+ "name": "Input",
38999
+ "module": "src/components/input/input.component.ts"
38879
39000
  }
38880
- }
38881
- ],
38882
- "mixins": [
38883
- {
38884
- "name": "ListNavigationMixin",
38885
- "module": "/src/utils/mixins/ListNavigationMixin"
38886
- },
38887
- {
38888
- "name": "CaptureDestroyEventForChildElement",
38889
- "module": "/src/utils/mixins/lifecycle/CaptureDestroyEventForChildElement"
38890
- },
38891
- {
38892
- "name": "AutoFocusOnMountMixin",
38893
- "module": "/src/utils/mixins/AutoFocusOnMountMixin"
38894
- },
38895
- {
38896
- "name": "FormInternalsMixin",
38897
- "module": "/src/utils/mixins/FormInternalsMixin"
38898
- },
38899
- {
38900
- "name": "DataAriaLabelMixin",
38901
- "module": "/src/utils/mixins/DataAriaLabelMixin"
38902
- }
38903
- ],
38904
- "superclass": {
38905
- "name": "FormfieldWrapper",
38906
- "module": "/src/components/formfieldwrapper/formfieldwrapper.component"
38907
- },
38908
- "tagName": "mdc-select",
38909
- "jsDoc": "/**\n * The mdc-select component is a dropdown selection control that allows users to pick an option from a predefined list.\n * It is designed to work with `mdc-option` for individual options and `mdc-optgroup` for grouping related options.\n *\n * Every mdc-option should have a `value` attribute set to ensure proper form submission.\n *\n * To set a default option, use the `selected` attribute on the `mdc-option` element.\n * You can also set the `value` attribute on the `mdc-select` element to match the value of the desired option. The component will select the corresponding option automatically.\n *\n * **Note:** Make sure to add `mdc-selectlistbox` as a child of `mdc-select` and wrap options/optgroup in it to ensure proper accessibility functionality. Read more about it in SelectListBox documentation.\n *\n * If you need to use `mdc-tooltip` with any options, make sure to place the tooltip component outside the `mdc-select` element.\n *\n * @dependency mdc-button\n * @dependency mdc-icon\n * @dependency mdc-popover\n * @dependency mdc-text\n * @dependency mdc-toggletip\n *\n * @tagname mdc-select\n *\n * @slot default - This is a default/unnamed slot for Selectlistbox including options and/or option group.\n *\n * @event click - (React: onClick) This event is dispatched when the select is clicked.\n * @event change - (React: onChange) This event is dispatched when the select is changed.\n * @event input - (React: onInput) This event is dispatched when the select is changed.\n * @event keydown - (React: onKeyDown) This event is dispatched when a key is pressed down on the select.\n * @event focus - (React: onFocus) This event is dispatched when the select receives focus.\n *\n * @slot label - Slot for the label element. If not provided, the `label` property will be used to render the label.\n * @slot toggletip - Slot for the toggletip info icon button. If not provided, the `toggletip-text` property will be used to render the info icon button and toggletip.\n * @slot help-icon - Slot for the helper/validation icon. If not provided, the icon will be rendered based on the `helpTextType` property.\n * @slot help-text - Slot for the helper/validation text. If not provided, the `helpText` property will be used to render the helper/validation text.\n *\n * @csspart label - The label element.\n * @csspart label-text - The container for the label and required indicator elements.\n * @csspart required-indicator - The required indicator element that is displayed next to the label when the `required` property is set to true.\n * @csspart info-icon-btn - The info icon button element that is displayed next to the label when the `toggletip-text` property is set.\n * @csspart label-toggletip - The toggletip element that is displayed when the info icon button is clicked.\n * @csspart help-text - The helper/validation text element.\n * @csspart helper-icon - The helper/validation icon element that is displayed next to the helper/validation text.\n * @csspart help-text-container - The container for the helper/validation icon and text elements.\n *\n * @cssproperty --mdc-label-font-size - Font size for the label text.\n * @cssproperty --mdc-label-font-weight - Font weight for the label text.\n * @cssproperty --mdc-label-line-height - Line height for the label text.\n * @cssproperty --mdc-label-color - Color for the label text.\n * @cssproperty --mdc-help-text-font-size - Font size for the help text.\n * @cssproperty --mdc-help-text-font-weight - Font weight for the help text.\n * @cssproperty --mdc-help-text-line-height - Line height for the help text.\n * @cssproperty --mdc-help-text-color - Color for the help text.\n * @cssproperty --mdc-select-background-color - The background color of the combobox of select.\n * @cssproperty --mdc-select-text-color - The text color of the select.\n * @cssproperty --mdc-select-border-color - The border color of the select.\n * @cssproperty --mdc-select-width - The width of the select.\n * @cssproperty --mdc-select-listbox-height - The height of the listbox inside the select.\n * @cssproperty --mdc-select-listbox-width - The width of the listbox inside the select (default: `--mdc-select-width`).\n */",
38910
- "customElement": true
38911
- }
38912
- ],
38913
- "exports": [
38914
- {
38915
- "kind": "js",
38916
- "name": "default",
38917
- "declaration": {
38918
- "name": "Select",
38919
- "module": "components/select/select.component.js"
38920
- }
38921
- }
38922
- ]
38923
- },
38924
- {
38925
- "kind": "javascript-module",
38926
- "path": "components/selectlistbox/selectlistbox.component.js",
38927
- "declarations": [
38928
- {
38929
- "kind": "class",
38930
- "description": "Selectlistbox component as Light DOM component to act as a simple wrapper\nfor mdc-option components to ensure accessibility and proper role assignment.\n\nOnce [ariaOwnsElements](https://developer.mozilla.org/en-US/docs/Web/API/ElementInternals/ariaOwnsElements) is supported in browsers, this component can be removed\nand mdc-option can be used directly in the select component with a listbox in a different\nshadow root and aria-owns attribute to connect them.",
38931
- "name": "Selectlistbox",
38932
- "slots": [
38933
- {
38934
- "description": "This is a default/unnamed slot, which can be used to insert mdc-option components.",
38935
- "name": "default"
38936
- }
38937
- ],
38938
- "members": [],
38939
- "superclass": {
38940
- "name": "Component",
38941
- "module": "/src/models"
38942
- },
38943
- "tagName": "mdc-selectlistbox",
38944
- "jsDoc": "/**\n * Selectlistbox component as Light DOM component to act as a simple wrapper\n * for mdc-option components to ensure accessibility and proper role assignment.\n *\n * Once [ariaOwnsElements](https://developer.mozilla.org/en-US/docs/Web/API/ElementInternals/ariaOwnsElements) is supported in browsers, this component can be removed\n * and mdc-option can be used directly in the select component with a listbox in a different\n * shadow root and aria-owns attribute to connect them.\n *\n * @tagname mdc-selectlistbox\n *\n * @slot default - This is a default/unnamed slot, which can be used to insert mdc-option components.\n */",
38945
- "customElement": true
38946
- }
38947
- ],
38948
- "exports": [
38949
- {
38950
- "kind": "js",
38951
- "name": "default",
38952
- "declaration": {
38953
- "name": "Selectlistbox",
38954
- "module": "components/selectlistbox/selectlistbox.component.js"
38955
- }
38956
- }
38957
- ]
38958
- },
38959
- {
38960
- "kind": "javascript-module",
38961
- "path": "components/sidenavigation/sidenavigation.component.js",
38962
- "declarations": [
38963
- {
38964
- "kind": "class",
38965
- "description": "The `mdc-sidenavigation` component provides a vertically stacked navigation experience,\ntypically used in layouts with persistent or collapsible sidebars.\n\n## Features:\n- Supports four layout variants: `fixed-collapsed`, `fixed-expanded`, `flexible`, and `hidden`\n- Toggleable expand/collapse behavior\n- Displays brand logo and customer name\n- Serves as a context provider for descendant components - `mdc-menubar` and `mdc-navmenuitem`\n\n### Usage:\nIn a sidenavigation, navmenuitems can be used in the following ways:\n\n1. **Simple navmenuitem** – No submenu or interaction beyond selection.\n\n2. **NavMenuItem with submenu**:\n - Provide an `id` on the `mdc-navmenuitem`\n - Set the `triggerId` on the corresponding `mdc-menupopover` to match the navmenuitem's `id`\n - Set `parent-nav-tooltip-text` with appropriate text that will display when a child menu item\n inside the nested menupopover is active, conveying which submenu item is currently selected\n\n3. **Actionable navmenuitem (no submenu)**:\n - Performs an action such as navigation or alert trigger\n - Set `disable-aria-current=\"true\"` to maintain visual active state without navigation behavior\n\n### Recommendations:\n- Use `mdc-text` for section headers\n- Use `mdc-divider` with the attribute `variant=\"gradient\"` for section dividers\n- For the brand logo, use an informative icon. Refer to `Momentum Informative Icons`\n\n#### Accessibility Notes:\n- Always provide meaningful `aria-label` attributes for both `mdc-navmenuitem` and `mdc-menubar`\nto ensure screen reader support\n- Set `grabber-btn-aria-label` to provide accessible labels for the expand/collapse grabber button",
38966
- "name": "SideNavigation",
38967
- "cssProperties": [
38968
- {
38969
- "description": "width of the sideNavigation when expanded",
38970
- "name": "--mdc-sidenavigation-expanded-width"
38971
- },
38972
- {
38973
- "description": "width of the sideNavigation when collapsed",
38974
- "name": "--mdc-sidenavigation-collapsed-width"
38975
- },
38976
- {
38977
- "description": "z-index of the vertical divider button",
38978
- "name": "--mdc-sidenavigation-vertical-divider-button-z-index"
38979
- }
38980
- ],
38981
- "cssParts": [
38982
- {
38983
- "description": "The main container wrapping the entire side navigation.",
38984
- "name": "side-navigation-container"
38985
- },
38986
- {
38987
- "description": "The scrollable section of the side navigation.",
38988
- "name": "scrollable-section"
38989
- },
38990
- {
38991
- "description": "The fixed section of the side navigation.",
38992
- "name": "fixed-section"
38993
- },
38994
- {
38995
- "description": "The divider between the scrollable and fixed sections.",
38996
- "name": "separator"
38997
39001
  },
38998
39002
  {
38999
- "description": "The container wrapping the brand logo and footer text.",
39000
- "name": "brand-logo-container"
39001
- },
39002
- {
39003
- "description": "The footer text label in the fixed section.",
39004
- "name": "footer-text"
39005
- },
39006
- {
39007
- "description": "The vertical divider between the scrollable and fixed sections.",
39008
- "name": "vertical-divider"
39009
- },
39010
- {
39011
- "description": "The button inside the vertical divider used to toggle expand/collapse.",
39012
- "name": "vertical-divider-button"
39013
- }
39014
- ],
39015
- "slots": [
39016
- {
39017
- "description": "Slot for the scrollable content area of the side navigation.",
39018
- "name": "scrollable-section"
39019
- },
39020
- {
39021
- "description": "Slot for the fixed content area of the side navigation.",
39022
- "name": "fixed-section"
39023
- },
39024
- {
39025
- "description": "Slot for the brand logo (e.g., icon or img).",
39026
- "name": "brand-logo"
39027
- }
39028
- ],
39029
- "members": [
39030
- {
39031
- "kind": "field",
39032
- "name": "variant",
39003
+ "name": "size",
39033
39004
  "type": {
39034
- "text": "SideNavigationVariant"
39005
+ "text": "number | undefined | undefined"
39035
39006
  },
39036
- "description": "Four variants of the sideNavigation\n- **fixed-collapsed**: Shows icons without labels and has fixed width, 4.5rem.\n- **fixed-expanded**: Shows icons with labels and has fixed width, 15rem.\n- **flexible**: Toggles between collapsed/expanded states.\n- **hidden**: Removes the sidenavigation from the DOM.",
39037
- "default": "flexible",
39038
- "attribute": "variant",
39039
- "reflects": true
39007
+ "description": "The size attribute of the input field.\nSpecifies the width of the input field.",
39008
+ "default": "undefined",
39009
+ "fieldName": "size",
39010
+ "inheritedFrom": {
39011
+ "name": "Input",
39012
+ "module": "src/components/input/input.component.ts"
39013
+ }
39040
39014
  },
39041
39015
  {
39042
- "kind": "field",
39043
- "name": "footerText",
39016
+ "name": "clear-aria-label",
39044
39017
  "type": {
39045
39018
  "text": "string"
39046
39019
  },
39047
39020
  "default": "''",
39048
- "description": "Displays footer text in the bottom section of the sidenavigation.",
39049
- "attribute": "footer-text",
39050
- "reflects": true
39021
+ "description": "Aria label for the trailing button. If trailing button is set to true, this label is used for the clear button.",
39022
+ "fieldName": "clearAriaLabel",
39023
+ "inheritedFrom": {
39024
+ "name": "Input",
39025
+ "module": "src/components/input/input.component.ts"
39026
+ }
39051
39027
  },
39052
39028
  {
39053
- "kind": "field",
39054
- "name": "grabberBtnAriaLabel",
39029
+ "name": "disabled",
39055
39030
  "type": {
39056
- "text": "string | undefined"
39031
+ "text": "boolean | undefined"
39057
39032
  },
39058
- "description": "Provides an accessible label for the grabber button.\nThis value is used to set the `aria-label` attribute for the button.",
39059
- "default": "''",
39060
- "attribute": "grabber-btn-aria-label",
39061
- "reflects": true
39033
+ "description": "Indicates whether the component is disabled.\nWhen the component is disabled for user interaction; it is not focusable or clickable.",
39034
+ "default": "undefined",
39035
+ "fieldName": "disabled",
39036
+ "inheritedFrom": {
39037
+ "name": "FormfieldWrapper",
39038
+ "module": "src/components/formfieldwrapper/formfieldwrapper.component.ts"
39039
+ }
39062
39040
  },
39063
39041
  {
39064
- "kind": "field",
39065
- "name": "parentNavTooltipText",
39042
+ "name": "label",
39066
39043
  "type": {
39067
39044
  "text": "string | undefined"
39068
39045
  },
39069
- "description": "Tooltip text shown on parent nav items when a child is active.",
39070
- "attribute": "parent-nav-tooltip-text",
39071
- "reflects": true
39046
+ "description": "The label of the input field. It is linked to the input field using the `for` attribute.",
39047
+ "fieldName": "label",
39048
+ "inheritedFrom": {
39049
+ "name": "FormfieldWrapper",
39050
+ "module": "src/components/formfieldwrapper/formfieldwrapper.component.ts"
39051
+ }
39072
39052
  },
39073
39053
  {
39074
- "kind": "field",
39075
- "name": "Context",
39076
- "privacy": "public",
39077
- "static": true,
39078
- "readonly": true
39054
+ "name": "required",
39055
+ "type": {
39056
+ "text": "boolean"
39057
+ },
39058
+ "default": "false",
39059
+ "description": "The required attribute to indicate that the input field is required.\nIt is used to append a required indicator (*) to the label.",
39060
+ "fieldName": "required",
39061
+ "inheritedFrom": {
39062
+ "name": "FormfieldWrapper",
39063
+ "module": "src/components/formfieldwrapper/formfieldwrapper.component.ts"
39064
+ }
39079
39065
  },
39080
39066
  {
39081
- "kind": "method",
39082
- "name": "updateContext",
39083
- "privacy": "protected",
39084
- "return": {
39085
- "type": {
39086
- "text": "void"
39087
- }
39067
+ "name": "help-text-type",
39068
+ "type": {
39069
+ "text": "ValidationType"
39088
39070
  },
39089
- "description": "Update all observing components of this\nprovider to update the values\n\nIs called on every re-render, see Provider class"
39071
+ "description": "The type of help text. It can be 'default', 'error', 'warning', 'success', 'priority'.",
39072
+ "fieldName": "helpTextType",
39073
+ "inheritedFrom": {
39074
+ "name": "FormfieldWrapper",
39075
+ "module": "src/components/formfieldwrapper/formfieldwrapper.component.ts"
39076
+ }
39090
39077
  },
39091
39078
  {
39092
- "kind": "method",
39093
- "name": "preventScrollOnSpace",
39094
- "privacy": "private",
39095
- "return": {
39096
- "type": {
39097
- "text": "void"
39098
- }
39079
+ "name": "help-text",
39080
+ "type": {
39081
+ "text": "string | undefined"
39099
39082
  },
39100
- "parameters": [
39101
- {
39102
- "name": "event",
39103
- "type": {
39104
- "text": "KeyboardEvent"
39105
- }
39106
- }
39107
- ]
39108
- }
39109
- ],
39110
- "events": [
39083
+ "description": "The help text that is displayed below the input field.",
39084
+ "fieldName": "helpText",
39085
+ "inheritedFrom": {
39086
+ "name": "FormfieldWrapper",
39087
+ "module": "src/components/formfieldwrapper/formfieldwrapper.component.ts"
39088
+ }
39089
+ },
39111
39090
  {
39112
- "name": "toggle",
39091
+ "name": "toggletip-text",
39113
39092
  "type": {
39114
- "text": "CustomEvent"
39093
+ "text": "string | undefined"
39115
39094
  },
39116
- "description": "(React: onToggle) Dispatched when the grabber button is clicked to expand/collapse the sidenavigation.",
39117
- "reactName": "onToggle"
39095
+ "description": "The toggletip text that is displayed when the label is hovered.\nIt is used to provide additional information about the label.",
39096
+ "fieldName": "toggletipText",
39097
+ "inheritedFrom": {
39098
+ "name": "FormfieldWrapper",
39099
+ "module": "src/components/formfieldwrapper/formfieldwrapper.component.ts"
39100
+ }
39118
39101
  },
39119
39102
  {
39120
- "description": "(React: onActiveChange) Dispatched when the active state of a nested navmenuitem changes.",
39121
- "name": "activechange",
39122
- "reactName": "onActiveChange"
39123
- }
39124
- ],
39125
- "attributes": [
39126
- {
39127
- "name": "variant",
39103
+ "name": "toggletip-placement",
39128
39104
  "type": {
39129
- "text": "SideNavigationVariant"
39105
+ "text": "PopoverPlacement"
39130
39106
  },
39131
- "description": "Four variants of the sideNavigation\n- **fixed-collapsed**: Shows icons without labels and has fixed width, 4.5rem.\n- **fixed-expanded**: Shows icons with labels and has fixed width, 15rem.\n- **flexible**: Toggles between collapsed/expanded states.\n- **hidden**: Removes the sidenavigation from the DOM.",
39132
- "default": "flexible",
39133
- "fieldName": "variant"
39107
+ "description": "The placement of the toggletip that is displayed when the info icon is hovered.",
39108
+ "default": "'top'",
39109
+ "fieldName": "toggletipPlacement",
39110
+ "inheritedFrom": {
39111
+ "name": "FormfieldWrapper",
39112
+ "module": "src/components/formfieldwrapper/formfieldwrapper.component.ts"
39113
+ }
39134
39114
  },
39135
39115
  {
39136
- "name": "footer-text",
39116
+ "name": "toggletip-strategy",
39137
39117
  "type": {
39138
- "text": "string"
39118
+ "text": "PopoverStrategy"
39139
39119
  },
39140
- "default": "''",
39141
- "description": "Displays footer text in the bottom section of the sidenavigation.",
39142
- "fieldName": "footerText"
39120
+ "fieldName": "toggletipStrategy",
39121
+ "inheritedFrom": {
39122
+ "name": "FormfieldWrapper",
39123
+ "module": "src/components/formfieldwrapper/formfieldwrapper.component.ts"
39124
+ }
39143
39125
  },
39144
39126
  {
39145
- "name": "grabber-btn-aria-label",
39127
+ "name": "info-icon-aria-label",
39146
39128
  "type": {
39147
39129
  "text": "string | undefined"
39148
39130
  },
39149
- "description": "Provides an accessible label for the grabber button.\nThis value is used to set the `aria-label` attribute for the button.",
39150
- "default": "''",
39151
- "fieldName": "grabberBtnAriaLabel"
39131
+ "description": "Aria label for the info icon that is displayed next to the label when `toggletipText` is set.\nThis is used for accessibility purposes to provide a description of the icon.",
39132
+ "fieldName": "infoIconAriaLabel",
39133
+ "inheritedFrom": {
39134
+ "name": "FormfieldWrapper",
39135
+ "module": "src/components/formfieldwrapper/formfieldwrapper.component.ts"
39136
+ }
39152
39137
  },
39153
39138
  {
39154
- "name": "parent-nav-tooltip-text",
39139
+ "name": "readonly",
39155
39140
  "type": {
39156
- "text": "string | undefined"
39141
+ "text": "boolean"
39157
39142
  },
39158
- "description": "Tooltip text shown on parent nav items when a child is active.",
39159
- "fieldName": "parentNavTooltipText"
39143
+ "default": "false",
39144
+ "description": "Determines whether the form field is read-only.",
39145
+ "fieldName": "readonly",
39146
+ "inheritedFrom": {
39147
+ "name": "FormfieldWrapper",
39148
+ "module": "src/components/formfieldwrapper/formfieldwrapper.component.ts"
39149
+ }
39150
+ },
39151
+ {
39152
+ "name": "soft-disabled",
39153
+ "type": {
39154
+ "text": "boolean"
39155
+ },
39156
+ "default": "false",
39157
+ "description": "Determines whether the form field is soft-disabled.",
39158
+ "fieldName": "softDisabled",
39159
+ "inheritedFrom": {
39160
+ "name": "FormfieldWrapper",
39161
+ "module": "src/components/formfieldwrapper/formfieldwrapper.component.ts"
39162
+ }
39160
39163
  }
39161
- ],
39162
- "superclass": {
39163
- "name": "Provider",
39164
- "module": "/src/models"
39165
- },
39166
- "tagName": "mdc-sidenavigation",
39167
- "jsDoc": "/**\n * The `mdc-sidenavigation` component provides a vertically stacked navigation experience,\n * typically used in layouts with persistent or collapsible sidebars.\n *\n * ## Features:\n * - Supports four layout variants: `fixed-collapsed`, `fixed-expanded`, `flexible`, and `hidden`\n * - Toggleable expand/collapse behavior\n * - Displays brand logo and customer name\n * - Serves as a context provider for descendant components - `mdc-menubar` and `mdc-navmenuitem`\n *\n * ### Usage:\n * In a sidenavigation, navmenuitems can be used in the following ways:\n *\n * 1. **Simple navmenuitem** – No submenu or interaction beyond selection.\n *\n * 2. **NavMenuItem with submenu**:\n * - Provide an `id` on the `mdc-navmenuitem`\n * - Set the `triggerId` on the corresponding `mdc-menupopover` to match the navmenuitem's `id`\n * - Set `parent-nav-tooltip-text` with appropriate text that will display when a child menu item\n * inside the nested menupopover is active, conveying which submenu item is currently selected\n *\n * 3. **Actionable navmenuitem (no submenu)**:\n * - Performs an action such as navigation or alert trigger\n * - Set `disable-aria-current=\"true\"` to maintain visual active state without navigation behavior\n *\n * ### Recommendations:\n * - Use `mdc-text` for section headers\n * - Use `mdc-divider` with the attribute `variant=\"gradient\"` for section dividers\n * - For the brand logo, use an informative icon. Refer to `Momentum Informative Icons`\n *\n * #### Accessibility Notes:\n * - Always provide meaningful `aria-label` attributes for both `mdc-navmenuitem` and `mdc-menubar`\n * to ensure screen reader support\n * - Set `grabber-btn-aria-label` to provide accessible labels for the expand/collapse grabber button\n *\n * @dependency mdc-text\n * @dependency mdc-button\n * @dependency mdc-divider\n * @dependency mdc-menubar\n *\n * @event activechange - (React: onActiveChange) Dispatched when the active state of the navmenuitem changes.\n *\n * @tagname mdc-sidenavigation\n *\n * @slot scrollable-section - Slot for the scrollable content area of the side navigation.\n * @slot fixed-section - Slot for the fixed content area of the side navigation.\n * @slot brand-logo - Slot for the brand logo (e.g., icon or img).\n *\n * @csspart side-navigation-container - The main container wrapping the entire side navigation.\n * @csspart scrollable-section - The scrollable section of the side navigation.\n * @csspart fixed-section - The fixed section of the side navigation.\n * @csspart separator - The divider between the scrollable and fixed sections.\n * @csspart brand-logo-container - The container wrapping the brand logo and footer text.\n * @csspart footer-text - The footer text label in the fixed section.\n * @csspart vertical-divider - The vertical divider between the scrollable and fixed sections.\n * @csspart vertical-divider-button - The button inside the vertical divider used to toggle expand/collapse.\n *\n * @event toggle - (React: onToggle) Dispatched when the grabber button is clicked to expand/collapse the sidenavigation.\n * @event activechange - (React: onActiveChange) Dispatched when the active state of a nested navmenuitem changes.\n *\n * @cssproperty --mdc-sidenavigation-expanded-width - width of the sideNavigation when expanded\n * @cssproperty --mdc-sidenavigation-collapsed-width - width of the sideNavigation when collapsed\n * @cssproperty --mdc-sidenavigation-vertical-divider-button-z-index - z-index of the vertical divider button\n */",
39168
- "customElement": true
39164
+ ]
39169
39165
  }
39170
39166
  ],
39171
39167
  "exports": [
@@ -39173,20 +39169,20 @@
39173
39169
  "kind": "js",
39174
39170
  "name": "default",
39175
39171
  "declaration": {
39176
- "name": "SideNavigation",
39177
- "module": "components/sidenavigation/sidenavigation.component.js"
39172
+ "name": "Searchfield",
39173
+ "module": "components/searchfield/searchfield.component.js"
39178
39174
  }
39179
39175
  }
39180
39176
  ]
39181
39177
  },
39182
39178
  {
39183
39179
  "kind": "javascript-module",
39184
- "path": "components/searchfield/searchfield.component.js",
39180
+ "path": "components/select/select.component.js",
39185
39181
  "declarations": [
39186
39182
  {
39187
39183
  "kind": "class",
39188
- "description": "`mdc-searchfield` component is used as an input field for search functionality.\n\nIt supports `mdc-inputchip` as filters.\n\nThis component is built by extending the `mdc-input` component.",
39189
- "name": "Searchfield",
39184
+ "description": "The mdc-select component is a dropdown selection control that allows users to pick an option from a predefined list.\nIt is designed to work with `mdc-option` for individual options and `mdc-optgroup` for grouping related options.\n\nEvery mdc-option should have a `value` attribute set to ensure proper form submission.\n\nTo set a default option, use the `selected` attribute on the `mdc-option` element.\nYou can also set the `value` attribute on the `mdc-select` element to match the value of the desired option. The component will select the corresponding option automatically.\n\n**Note:** Make sure to add `mdc-selectlistbox` as a child of `mdc-select` and wrap options/optgroup in it to ensure proper accessibility functionality. Read more about it in SelectListBox documentation.\n\nIf you need to use `mdc-tooltip` with any options, make sure to place the tooltip component outside the `mdc-select` element.",
39185
+ "name": "Select",
39190
39186
  "cssProperties": [
39191
39187
  {
39192
39188
  "description": "Font size for the label text.",
@@ -39253,52 +39249,28 @@
39253
39249
  }
39254
39250
  },
39255
39251
  {
39256
- "description": "Text color for the input field",
39257
- "name": "--mdc-input-text-color",
39258
- "inheritedFrom": {
39259
- "name": "Input",
39260
- "module": "src/components/input/input.component.ts"
39261
- }
39252
+ "description": "The background color of the combobox of select.",
39253
+ "name": "--mdc-select-background-color"
39262
39254
  },
39263
39255
  {
39264
- "description": "Border color for the input container",
39265
- "name": "--mdc-input-border-color",
39266
- "inheritedFrom": {
39267
- "name": "Input",
39268
- "module": "src/components/input/input.component.ts"
39269
- }
39256
+ "description": "The text color of the select.",
39257
+ "name": "--mdc-select-text-color"
39270
39258
  },
39271
39259
  {
39272
- "description": "Background color for the input field",
39273
- "name": "--mdc-input-background-color",
39274
- "inheritedFrom": {
39275
- "name": "Input",
39276
- "module": "src/components/input/input.component.ts"
39277
- }
39260
+ "description": "The border color of the select.",
39261
+ "name": "--mdc-select-border-color"
39278
39262
  },
39279
39263
  {
39280
- "description": "Text color for the help text",
39281
- "name": "--mdc-input-support-text-color",
39282
- "inheritedFrom": {
39283
- "name": "Input",
39284
- "module": "src/components/input/input.component.ts"
39285
- }
39264
+ "description": "The width of the select.",
39265
+ "name": "--mdc-select-width"
39286
39266
  },
39287
39267
  {
39288
- "description": "Text color for the selected text",
39289
- "name": "--mdc-input-selection-text-color",
39290
- "inheritedFrom": {
39291
- "name": "Input",
39292
- "module": "src/components/input/input.component.ts"
39293
- }
39268
+ "description": "The height of the listbox inside the select.",
39269
+ "name": "--mdc-select-listbox-height"
39294
39270
  },
39295
39271
  {
39296
- "description": "Background color for the selected text",
39297
- "name": "--mdc-input-selection-background-color",
39298
- "inheritedFrom": {
39299
- "name": "Input",
39300
- "module": "src/components/input/input.component.ts"
39301
- }
39272
+ "description": "The width of the listbox inside the select (default: `--mdc-select-width`).",
39273
+ "name": "--mdc-select-listbox-width"
39302
39274
  }
39303
39275
  ],
39304
39276
  "cssParts": [
@@ -39365,60 +39337,12 @@
39365
39337
  "name": "FormfieldWrapper",
39366
39338
  "module": "src/components/formfieldwrapper/formfieldwrapper.component.ts"
39367
39339
  }
39368
- },
39369
- {
39370
- "description": "The leading icon element that is displayed before the input field.",
39371
- "name": "leading-icon",
39372
- "inheritedFrom": {
39373
- "name": "Input",
39374
- "module": "src/components/input/input.component.ts"
39375
- }
39376
- },
39377
- {
39378
- "description": "The prefix text element that is displayed before the input field.",
39379
- "name": "prefix-text",
39380
- "inheritedFrom": {
39381
- "name": "Input",
39382
- "module": "src/components/input/input.component.ts"
39383
- }
39384
- },
39385
- {
39386
- "description": "The container for the input field, leading icon, prefix text, and trailing button elements.",
39387
- "name": "input-container",
39388
- "inheritedFrom": {
39389
- "name": "Input",
39390
- "module": "src/components/input/input.component.ts"
39391
- }
39392
- },
39393
- {
39394
- "description": "The container for the input field, leading icon, and prefix text elements.",
39395
- "name": "input-section",
39396
- "inheritedFrom": {
39397
- "name": "Input",
39398
- "module": "src/components/input/input.component.ts"
39399
- }
39400
- },
39401
- {
39402
- "description": "The input field element.",
39403
- "name": "input-text",
39404
- "inheritedFrom": {
39405
- "name": "Input",
39406
- "module": "src/components/input/input.component.ts"
39407
- }
39408
- },
39409
- {
39410
- "description": "The trailing button element that is displayed to clear the input field when the `trailingButton` property is set to true.",
39411
- "name": "trailing-button",
39412
- "inheritedFrom": {
39413
- "name": "Input",
39414
- "module": "src/components/input/input.component.ts"
39415
- }
39416
39340
  }
39417
39341
  ],
39418
39342
  "slots": [
39419
39343
  {
39420
- "description": "Slot for input chips",
39421
- "name": "filters"
39344
+ "description": "This is a default/unnamed slot for Selectlistbox including options and/or option group.",
39345
+ "name": "default"
39422
39346
  },
39423
39347
  {
39424
39348
  "description": "Slot for the label element. If not provided, the `label` property will be used to render the label.",
@@ -39451,81 +39375,337 @@
39451
39375
  "name": "FormfieldWrapper",
39452
39376
  "module": "src/components/formfieldwrapper/formfieldwrapper.component.ts"
39453
39377
  }
39378
+ }
39379
+ ],
39380
+ "members": [
39381
+ {
39382
+ "kind": "field",
39383
+ "name": "placeholder",
39384
+ "type": {
39385
+ "text": "string | undefined"
39386
+ },
39387
+ "description": "The placeholder text which will be shown on the text if provided.",
39388
+ "attribute": "placeholder"
39454
39389
  },
39455
39390
  {
39456
- "description": "Slot for the input element. If not provided, the input field will be rendered.",
39457
- "name": "input",
39458
- "inheritedFrom": {
39459
- "name": "Input",
39460
- "module": "src/components/input/input.component.ts"
39461
- }
39462
- },
39463
- {
39464
- "description": "Slot for the leading icon before the input field. If not provided, the `leadingIcon` property will be used to render the leading icon.",
39465
- "name": "input-leading-icon",
39466
- "inheritedFrom": {
39467
- "name": "Input",
39468
- "module": "src/components/input/input.component.ts"
39469
- }
39391
+ "kind": "field",
39392
+ "name": "placement",
39393
+ "type": {
39394
+ "text": "Placement"
39395
+ },
39396
+ "description": "The placement of the popover within Select component.\nThis defines the position of the popover relative to the select input field.\n\nPossible values:\n - 'top-start'\n - 'bottom-start'",
39397
+ "default": "'bottom-start'",
39398
+ "attribute": "placement",
39399
+ "reflects": true
39470
39400
  },
39471
39401
  {
39472
- "description": "Slot for the prefix text before the input field. If not provided, the `prefixText` property will be used to render the prefix text.",
39473
- "name": "input-prefix-text",
39474
- "inheritedFrom": {
39475
- "name": "Input",
39476
- "module": "src/components/input/input.component.ts"
39477
- }
39402
+ "kind": "field",
39403
+ "name": "boundary",
39404
+ "type": {
39405
+ "text": "'clippingAncestors' | string"
39406
+ },
39407
+ "description": "This describes the clipping element(s) or area that overflow of the used popover will be checked relative to.\nThe default is 'clippingAncestors', which are the overflow ancestors which will cause the\nelement to be clipped.\n\nPossible values:\n - 'clippingAncestors'\n - any css selector",
39408
+ "default": "'clippingAncestors'",
39409
+ "attribute": "boundary",
39410
+ "reflects": true
39478
39411
  },
39479
39412
  {
39480
- "description": "Slot for the trailing button to clear the input field. If not provided, the clear button will be rendered when `trailingButton` property is set to true.",
39481
- "name": "trailing-button",
39482
- "inheritedFrom": {
39483
- "name": "Input",
39484
- "module": "src/components/input/input.component.ts"
39485
- }
39486
- }
39487
- ],
39488
- "members": [
39413
+ "kind": "field",
39414
+ "name": "strategy",
39415
+ "type": {
39416
+ "text": "PopoverStrategy"
39417
+ },
39418
+ "description": "The strategy of the popover within Select.\nThis determines how the popover is positioned in the DOM.\n\nIn case `boundary` is set to something other than 'clippingAncestors',\nit might be necessary to set the `strategy` to 'fixed' to ensure that the popover\nis not getting clipped by scrollable containers enclosing the select.",
39419
+ "default": "absolute",
39420
+ "attribute": "strategy",
39421
+ "reflects": true
39422
+ },
39489
39423
  {
39490
39424
  "kind": "field",
39491
- "name": "inputChips",
39425
+ "name": "popoverZIndex",
39492
39426
  "type": {
39493
- "text": "Array<HTMLElement> | undefined"
39494
- }
39427
+ "text": "number"
39428
+ },
39429
+ "description": "The z-index of the popover within Select.\n\nOverride this to make sure this stays on top of other components.",
39430
+ "default": "1000",
39431
+ "attribute": "popover-z-index",
39432
+ "reflects": true
39433
+ },
39434
+ {
39435
+ "kind": "field",
39436
+ "name": "backdropAppendTo",
39437
+ "type": {
39438
+ "text": "string | undefined"
39439
+ },
39440
+ "description": "ID of the element where the backdrop will be appended to.\nThis is useful to ensure that the backdrop is appended to the correct element in the DOM.\nIf not set, the backdrop will be appended to the parent element of the select.",
39441
+ "attribute": "backdrop-append-to",
39442
+ "reflects": true
39495
39443
  },
39496
39444
  {
39497
39445
  "kind": "method",
39498
- "name": "handleKeyDown",
39499
- "privacy": "protected",
39446
+ "name": "handleOptionsClick",
39447
+ "privacy": "private",
39448
+ "return": {
39449
+ "type": {
39450
+ "text": "void"
39451
+ }
39452
+ },
39453
+ "parameters": [
39454
+ {
39455
+ "name": "event",
39456
+ "type": {
39457
+ "text": "MouseEvent"
39458
+ },
39459
+ "description": "The event which triggered this function."
39460
+ }
39461
+ ],
39462
+ "description": "A private method which is called when an option is clicked.\nIt sets the selected option, removes selected from other options, updates the tabindex for all options,\ncloses the popover, and fires the change and input events."
39463
+ },
39464
+ {
39465
+ "kind": "method",
39466
+ "name": "setSelectedOption",
39467
+ "privacy": "private",
39468
+ "return": {
39469
+ "type": {
39470
+ "text": "void"
39471
+ }
39472
+ },
39473
+ "parameters": [
39474
+ {
39475
+ "name": "option",
39476
+ "type": {
39477
+ "text": "Option | null"
39478
+ },
39479
+ "description": "The option element in DOM which gets selected."
39480
+ }
39481
+ ],
39482
+ "description": "Sets the selected option in the component state and updates the input element's value.\nThis method ensures that only the selected option is marked as selected in the DOM,\nand updates the tabindex for all options accordingly.\nIt also updates the validity of the input element based on the selected option.\nThis method is called when an option is selected."
39483
+ },
39484
+ {
39485
+ "kind": "method",
39486
+ "name": "updateSelectedInChildOptions",
39487
+ "privacy": "private",
39488
+ "return": {
39489
+ "type": {
39490
+ "text": "void"
39491
+ }
39492
+ },
39493
+ "parameters": [
39494
+ {
39495
+ "name": "selectedOption",
39496
+ "type": {
39497
+ "text": "Option | null"
39498
+ },
39499
+ "description": "The option which gets selected"
39500
+ }
39501
+ ],
39502
+ "description": "Sets selected attribute on the selected option and removes it from all options"
39503
+ },
39504
+ {
39505
+ "kind": "method",
39506
+ "name": "fireEvents",
39507
+ "privacy": "private",
39508
+ "return": {
39509
+ "type": {
39510
+ "text": "void"
39511
+ }
39512
+ },
39513
+ "description": "A private method which is called to fire the change and input events.\nIt dispatches the input and change events with the selected option's value and label."
39514
+ },
39515
+ {
39516
+ "kind": "method",
39517
+ "name": "dispatchChange",
39518
+ "privacy": "private",
39519
+ "return": {
39520
+ "type": {
39521
+ "text": "void"
39522
+ }
39523
+ },
39524
+ "parameters": [
39525
+ {
39526
+ "name": "option",
39527
+ "type": {
39528
+ "text": "Option"
39529
+ }
39530
+ }
39531
+ ]
39532
+ },
39533
+ {
39534
+ "kind": "method",
39535
+ "name": "dispatchInput",
39536
+ "privacy": "private",
39537
+ "return": {
39538
+ "type": {
39539
+ "text": "void"
39540
+ }
39541
+ },
39542
+ "parameters": [
39543
+ {
39544
+ "name": "option",
39545
+ "type": {
39546
+ "text": "Option"
39547
+ }
39548
+ }
39549
+ ]
39550
+ },
39551
+ {
39552
+ "kind": "method",
39553
+ "name": "handleClickCombobox",
39554
+ "privacy": "private",
39555
+ "return": {
39556
+ "type": {
39557
+ "text": "void"
39558
+ }
39559
+ },
39560
+ "parameters": [
39561
+ {
39562
+ "name": "event",
39563
+ "type": {
39564
+ "text": "MouseEvent"
39565
+ },
39566
+ "description": "The mouse event which triggered this function."
39567
+ }
39568
+ ],
39569
+ "description": "Handles the click event on the visual combobox.\nIf the select is disabled, soft-disabled or readonly, it does nothing.\nIf the popover is already open, it closes it.\nIf it is closed, it opens it."
39570
+ },
39571
+ {
39572
+ "kind": "method",
39573
+ "name": "handleKeydownCombobox",
39574
+ "privacy": "private",
39575
+ "return": {
39576
+ "type": {
39577
+ "text": "void"
39578
+ }
39579
+ },
39500
39580
  "parameters": [
39501
39581
  {
39502
39582
  "name": "event",
39503
39583
  "type": {
39504
39584
  "text": "KeyboardEvent"
39505
39585
  },
39506
- "description": "Keyboard event"
39586
+ "description": "The keyboard event."
39507
39587
  }
39508
39588
  ],
39509
- "description": "Handles the keydown event of the search field.\nIf the key pressed is 'Enter', it submits the form.\nIf the key pressed is 'Escape', it clears the input text.",
39589
+ "description": "Handles the keydown event on the select element when the popover is closed.\nThe options are as follows:\n- ARROW_DOWN, ARROW_UP, SPACE: Opens the popover and prevents the default scrolling behavior.\n- ENTER: Opens the popover, prevents default scrolling, and submits the form if the popover is closed.\n- HOME: Opens the popover and sets focus and tabindex on the first option.\n- END: Opens the popover and sets focus and tabindex on the last option."
39590
+ },
39591
+ {
39592
+ "kind": "method",
39593
+ "name": "getCurrentIndex",
39594
+ "privacy": "private",
39595
+ "return": {
39596
+ "type": {
39597
+ "text": ""
39598
+ }
39599
+ },
39600
+ "parameters": [
39601
+ {
39602
+ "name": "target",
39603
+ "type": {
39604
+ "text": "HTMLElement | null"
39605
+ },
39606
+ "description": "The target element that triggered the event."
39607
+ }
39608
+ ],
39609
+ "description": "Retrieves the current index of the item that triggered the event.",
39510
39610
  "inheritedFrom": {
39511
- "name": "Input",
39512
- "module": "components/input/input.component.js"
39611
+ "name": "ListNavigationMixin",
39612
+ "module": "utils/mixins/ListNavigationMixin.js"
39513
39613
  }
39514
39614
  },
39515
39615
  {
39516
39616
  "kind": "method",
39517
- "name": "renderInputChips",
39518
- "privacy": "private",
39519
- "description": "This method is used to render the input chips inside filters slot.\nIt will remove any elements that are not input chips."
39617
+ "name": "resetTabIndexes",
39618
+ "privacy": "protected",
39619
+ "parameters": [
39620
+ {
39621
+ "name": "index",
39622
+ "type": {
39623
+ "text": "number"
39624
+ },
39625
+ "description": "The index of the currently focused item."
39626
+ }
39627
+ ],
39628
+ "description": "Reset all tabindex to -1 and set the tabindex of the current item to 0",
39629
+ "inheritedFrom": {
39630
+ "name": "ListNavigationMixin",
39631
+ "module": "utils/mixins/ListNavigationMixin.js"
39632
+ }
39520
39633
  },
39521
39634
  {
39522
39635
  "kind": "method",
39523
- "name": "clearInputText",
39636
+ "name": "resetTabIndexAndSetFocus",
39524
39637
  "privacy": "protected",
39525
- "description": "Clears the input field.",
39638
+ "parameters": [
39639
+ {
39640
+ "name": "newIndex",
39641
+ "type": {
39642
+ "text": "number"
39643
+ },
39644
+ "description": "The index of the new item to focus."
39645
+ },
39646
+ {
39647
+ "name": "oldIndex",
39648
+ "optional": true,
39649
+ "type": {
39650
+ "text": "number"
39651
+ },
39652
+ "description": "The index of the currently focused item."
39653
+ },
39654
+ {
39655
+ "name": "focusNewItem",
39656
+ "default": "true",
39657
+ "description": "Call focus() on the new item or not. It should be false during firstUpdate"
39658
+ }
39659
+ ],
39660
+ "description": "Resets the tabindex of the currently focused item and sets focus to a new item.",
39661
+ "return": {
39662
+ "type": {
39663
+ "text": ""
39664
+ }
39665
+ },
39526
39666
  "inheritedFrom": {
39527
- "name": "Input",
39528
- "module": "components/input/input.component.js"
39667
+ "name": "ListNavigationMixin",
39668
+ "module": "utils/mixins/ListNavigationMixin.js"
39669
+ }
39670
+ },
39671
+ {
39672
+ "kind": "method",
39673
+ "name": "resolveDirectionKey",
39674
+ "privacy": "private",
39675
+ "parameters": [
39676
+ {
39677
+ "name": "key",
39678
+ "type": {
39679
+ "text": "string"
39680
+ },
39681
+ "description": "The key pressed by the user."
39682
+ },
39683
+ {
39684
+ "name": "isRtl",
39685
+ "type": {
39686
+ "text": "boolean"
39687
+ },
39688
+ "description": "A boolean indicating if the layout is right-to-left (RTL)."
39689
+ }
39690
+ ],
39691
+ "description": "Resolves the key pressed by the user based on the direction of the layout.\nThis method is used to handle keyboard navigation in a right-to-left (RTL) layout.\nIt checks if the layout is RTL and adjusts the arrow keys accordingly.\nFor example, in RTL, the left arrow key behaves like the right arrow key and vice versa.",
39692
+ "return": {
39693
+ "type": {
39694
+ "text": ""
39695
+ }
39696
+ },
39697
+ "inheritedFrom": {
39698
+ "name": "ListNavigationMixin",
39699
+ "module": "utils/mixins/ListNavigationMixin.js"
39700
+ }
39701
+ },
39702
+ {
39703
+ "kind": "method",
39704
+ "name": "shouldLoop",
39705
+ "privacy": "private",
39706
+ "inheritedFrom": {
39707
+ "name": "ListNavigationMixin",
39708
+ "module": "utils/mixins/ListNavigationMixin.js"
39529
39709
  }
39530
39710
  },
39531
39711
  {
@@ -39660,605 +39840,324 @@
39660
39840
  },
39661
39841
  {
39662
39842
  "kind": "field",
39663
- "name": "placeholder",
39843
+ "name": "disabled",
39664
39844
  "type": {
39665
- "text": "string"
39845
+ "text": "boolean | undefined"
39666
39846
  },
39667
- "default": "''",
39668
- "description": "The placeholder text that is displayed when the input field is empty.",
39669
- "attribute": "placeholder",
39847
+ "description": "Indicates whether the component is disabled.\nWhen the component is disabled for user interaction; it is not focusable or clickable.",
39848
+ "default": "undefined",
39849
+ "attribute": "disabled",
39850
+ "reflects": true,
39670
39851
  "inheritedFrom": {
39671
- "name": "Input",
39672
- "module": "components/input/input.component.js"
39852
+ "name": "FormfieldWrapper",
39853
+ "module": "components/formfieldwrapper/formfieldwrapper.component.js"
39673
39854
  }
39674
39855
  },
39675
39856
  {
39676
39857
  "kind": "field",
39677
- "name": "prefixText",
39858
+ "name": "label",
39678
39859
  "type": {
39679
39860
  "text": "string | undefined"
39680
39861
  },
39681
- "description": "The prefix text that is displayed before the input field. It has a max length of 10 characters.\nWhen the prefix text is set, make sure to set the 'data-aria-label'\nattribute with the appropriate value for accessibility.",
39682
- "attribute": "prefix-text",
39862
+ "description": "The label of the input field. It is linked to the input field using the `for` attribute.",
39863
+ "attribute": "label",
39864
+ "reflects": true,
39683
39865
  "inheritedFrom": {
39684
- "name": "Input",
39685
- "module": "components/input/input.component.js"
39866
+ "name": "FormfieldWrapper",
39867
+ "module": "components/formfieldwrapper/formfieldwrapper.component.js"
39686
39868
  }
39687
39869
  },
39688
39870
  {
39689
39871
  "kind": "field",
39690
- "name": "leadingIcon",
39872
+ "name": "required",
39691
39873
  "type": {
39692
- "text": "IconNames | undefined"
39874
+ "text": "boolean"
39693
39875
  },
39694
- "description": "The leading icon that is displayed before the input field.",
39695
- "attribute": "leading-icon",
39876
+ "default": "false",
39877
+ "description": "The required attribute to indicate that the input field is required.\nIt is used to append a required indicator (*) to the label.",
39878
+ "attribute": "required",
39879
+ "reflects": true,
39696
39880
  "inheritedFrom": {
39697
- "name": "Input",
39698
- "module": "components/input/input.component.js"
39881
+ "name": "FormfieldWrapper",
39882
+ "module": "components/formfieldwrapper/formfieldwrapper.component.js"
39699
39883
  }
39700
39884
  },
39701
39885
  {
39702
39886
  "kind": "field",
39703
- "name": "trailingButton",
39887
+ "name": "helpTextType",
39704
39888
  "type": {
39705
- "text": "boolean"
39889
+ "text": "ValidationType"
39706
39890
  },
39707
- "default": "false",
39708
- "description": "The trailing button when set to true, shows a clear button that clears the input field.",
39709
- "attribute": "trailing-button",
39891
+ "description": "The type of help text. It can be 'default', 'error', 'warning', 'success', 'priority'.",
39892
+ "attribute": "help-text-type",
39893
+ "reflects": true,
39710
39894
  "inheritedFrom": {
39711
- "name": "Input",
39712
- "module": "components/input/input.component.js"
39895
+ "name": "FormfieldWrapper",
39896
+ "module": "components/formfieldwrapper/formfieldwrapper.component.js"
39713
39897
  }
39714
39898
  },
39715
39899
  {
39716
39900
  "kind": "field",
39717
- "name": "maxlength",
39901
+ "name": "helpText",
39718
39902
  "type": {
39719
- "text": "number | undefined"
39903
+ "text": "string | undefined"
39720
39904
  },
39721
- "description": "The maximum number of characters that the input field can accept.",
39722
- "attribute": "maxlength",
39905
+ "description": "The help text that is displayed below the input field.",
39906
+ "attribute": "help-text",
39907
+ "reflects": true,
39723
39908
  "inheritedFrom": {
39724
- "name": "Input",
39725
- "module": "components/input/input.component.js"
39909
+ "name": "FormfieldWrapper",
39910
+ "module": "components/formfieldwrapper/formfieldwrapper.component.js"
39726
39911
  }
39727
39912
  },
39728
39913
  {
39729
39914
  "kind": "field",
39730
- "name": "minlength",
39915
+ "name": "toggletipText",
39731
39916
  "type": {
39732
- "text": "number | undefined"
39917
+ "text": "string | undefined"
39733
39918
  },
39734
- "description": "The minimum number of characters that the input field can accept.",
39735
- "attribute": "minlength",
39919
+ "description": "The toggletip text that is displayed when the label is hovered.\nIt is used to provide additional information about the label.",
39920
+ "attribute": "toggletip-text",
39921
+ "reflects": true,
39736
39922
  "inheritedFrom": {
39737
- "name": "Input",
39738
- "module": "components/input/input.component.js"
39923
+ "name": "FormfieldWrapper",
39924
+ "module": "components/formfieldwrapper/formfieldwrapper.component.js"
39739
39925
  }
39740
39926
  },
39741
39927
  {
39742
39928
  "kind": "field",
39743
- "name": "autocapitalize",
39929
+ "name": "toggletipPlacement",
39744
39930
  "type": {
39745
- "text": "AutoCapitalizeType"
39931
+ "text": "PopoverPlacement"
39746
39932
  },
39747
- "description": "The autocapitalize attribute of the input field.",
39748
- "default": "'off'",
39749
- "attribute": "autocapitalize",
39933
+ "description": "The placement of the toggletip that is displayed when the info icon is hovered.",
39934
+ "default": "'top'",
39935
+ "attribute": "toggletip-placement",
39936
+ "reflects": true,
39750
39937
  "inheritedFrom": {
39751
- "name": "Input",
39752
- "module": "components/input/input.component.js"
39938
+ "name": "FormfieldWrapper",
39939
+ "module": "components/formfieldwrapper/formfieldwrapper.component.js"
39753
39940
  }
39754
39941
  },
39755
39942
  {
39756
39943
  "kind": "field",
39757
- "name": "autocomplete",
39944
+ "name": "toggletipStrategy",
39758
39945
  "type": {
39759
- "text": "AutoCompleteType"
39946
+ "text": "PopoverStrategy"
39760
39947
  },
39761
- "description": "The autocomplete attribute of the input field.",
39762
- "default": "'off'",
39763
- "attribute": "autocomplete",
39948
+ "attribute": "toggletip-strategy",
39949
+ "reflects": true,
39764
39950
  "inheritedFrom": {
39765
- "name": "Input",
39766
- "module": "components/input/input.component.js"
39951
+ "name": "FormfieldWrapper",
39952
+ "module": "components/formfieldwrapper/formfieldwrapper.component.js"
39767
39953
  }
39768
39954
  },
39769
39955
  {
39770
39956
  "kind": "field",
39771
- "name": "dirname",
39957
+ "name": "infoIconAriaLabel",
39772
39958
  "type": {
39773
39959
  "text": "string | undefined"
39774
39960
  },
39775
- "description": "Specifies the name of the directionality of text for submission purposes (e.g., \"rtl\" for right-to-left).",
39776
- "attribute": "dirname",
39961
+ "description": "Aria label for the info icon that is displayed next to the label when `toggletipText` is set.\nThis is used for accessibility purposes to provide a description of the icon.",
39962
+ "attribute": "info-icon-aria-label",
39963
+ "reflects": true,
39777
39964
  "inheritedFrom": {
39778
- "name": "Input",
39779
- "module": "components/input/input.component.js"
39965
+ "name": "FormfieldWrapper",
39966
+ "module": "components/formfieldwrapper/formfieldwrapper.component.js"
39780
39967
  }
39781
39968
  },
39782
39969
  {
39783
39970
  "kind": "field",
39784
- "name": "pattern",
39971
+ "name": "readonly",
39785
39972
  "type": {
39786
- "text": "string | undefined"
39973
+ "text": "boolean"
39787
39974
  },
39788
- "description": "The pattern attribute of the input field.\nSpecifies a regular expression that the input value must match for validation purposes.",
39789
- "attribute": "pattern",
39975
+ "default": "false",
39976
+ "description": "Determines whether the form field is read-only.",
39977
+ "attribute": "readonly",
39978
+ "reflects": true,
39790
39979
  "inheritedFrom": {
39791
- "name": "Input",
39792
- "module": "components/input/input.component.js"
39980
+ "name": "FormfieldWrapper",
39981
+ "module": "components/formfieldwrapper/formfieldwrapper.component.js"
39793
39982
  }
39794
39983
  },
39795
39984
  {
39796
39985
  "kind": "field",
39797
- "name": "list",
39986
+ "name": "softDisabled",
39798
39987
  "type": {
39799
- "text": "string | undefined"
39988
+ "text": "boolean"
39800
39989
  },
39801
- "description": "The list attribute of the input field.\nIdentifies a list of pre-defined options to suggest to the user.",
39802
- "attribute": "list",
39990
+ "default": "false",
39991
+ "description": "Determines whether the form field is soft-disabled.",
39992
+ "attribute": "soft-disabled",
39993
+ "reflects": true,
39803
39994
  "inheritedFrom": {
39804
- "name": "Input",
39805
- "module": "components/input/input.component.js"
39995
+ "name": "FormfieldWrapper",
39996
+ "module": "components/formfieldwrapper/formfieldwrapper.component.js"
39806
39997
  }
39807
39998
  },
39808
39999
  {
39809
- "kind": "field",
39810
- "name": "size",
39811
- "type": {
39812
- "text": "number | undefined | undefined"
40000
+ "kind": "method",
40001
+ "name": "renderLabelElement",
40002
+ "privacy": "protected",
40003
+ "description": "creates the label element when the label property is set.\nid is used to link the label with the input field.",
40004
+ "return": {
40005
+ "type": {
40006
+ "text": ""
40007
+ }
39813
40008
  },
39814
- "description": "The size attribute of the input field.\nSpecifies the width of the input field.",
39815
- "default": "undefined",
39816
- "attribute": "size",
39817
40009
  "inheritedFrom": {
39818
- "name": "Input",
39819
- "module": "components/input/input.component.js"
39820
- }
39821
- },
39822
- {
39823
- "kind": "field",
39824
- "name": "clearAriaLabel",
39825
- "type": {
39826
- "text": "string"
39827
- },
39828
- "default": "''",
39829
- "description": "Aria label for the trailing button. If trailing button is set to true, this label is used for the clear button.",
39830
- "attribute": "clear-aria-label",
39831
- "inheritedFrom": {
39832
- "name": "Input",
39833
- "module": "components/input/input.component.js"
39834
- }
39835
- },
39836
- {
39837
- "kind": "method",
39838
- "name": "setInputValidity",
39839
- "privacy": "private",
39840
- "inheritedFrom": {
39841
- "name": "Input",
39842
- "module": "components/input/input.component.js"
40010
+ "name": "FormfieldWrapper",
40011
+ "module": "components/formfieldwrapper/formfieldwrapper.component.js"
39843
40012
  }
39844
40013
  },
39845
40014
  {
39846
40015
  "kind": "method",
39847
- "name": "updateValue",
39848
- "privacy": "private",
39849
- "description": "Updates the value of the input field.\nSets the form value.",
40016
+ "name": "renderHelpTextIcon",
40017
+ "privacy": "protected",
40018
+ "description": "creates the helpertext icon based on the helpTextType for validation.\nIf the helpTextType is not set, it defaults to 'default' and it doesn't display any icon.",
39850
40019
  "return": {
39851
40020
  "type": {
39852
40021
  "text": ""
39853
40022
  }
39854
40023
  },
39855
40024
  "inheritedFrom": {
39856
- "name": "Input",
39857
- "module": "components/input/input.component.js"
39858
- }
39859
- },
39860
- {
39861
- "kind": "method",
39862
- "name": "onInput",
39863
- "privacy": "private",
39864
- "description": "Handles the input event of the input field.\nUpdates the value and sets the validity of the input field.",
39865
- "inheritedFrom": {
39866
- "name": "Input",
39867
- "module": "components/input/input.component.js"
39868
- }
39869
- },
39870
- {
39871
- "kind": "method",
39872
- "name": "onChange",
39873
- "privacy": "private",
39874
- "parameters": [
39875
- {
39876
- "name": "event",
39877
- "type": {
39878
- "text": "Event"
39879
- },
39880
- "description": "Event which contains information about the value change."
39881
- }
39882
- ],
39883
- "description": "Handles the change event of the input field.\nUpdates the value and sets the validity of the input field.\n\nThe 'change' event does not bubble up through the shadow DOM as it was not composed.\nTherefore, we need to re-dispatch the same event to ensure it is propagated correctly.\nRead more: https://developer.mozilla.org/en-US/docs/Web/API/Event/composed",
39884
- "inheritedFrom": {
39885
- "name": "Input",
39886
- "module": "components/input/input.component.js"
40025
+ "name": "FormfieldWrapper",
40026
+ "module": "components/formfieldwrapper/formfieldwrapper.component.js"
39887
40027
  }
39888
40028
  },
39889
40029
  {
39890
40030
  "kind": "method",
39891
- "name": "renderLeadingIcon",
40031
+ "name": "renderHelpText",
39892
40032
  "privacy": "protected",
39893
- "description": "Renders the leading icon before the input field.\nIf the leading icon is not set, it will not be displayed.",
40033
+ "description": "creates the helper text component when the helpertext value is set.\nIt is also used to display the validation message based on the helpTextType.",
39894
40034
  "return": {
39895
40035
  "type": {
39896
40036
  "text": ""
39897
40037
  }
39898
40038
  },
39899
40039
  "inheritedFrom": {
39900
- "name": "Input",
39901
- "module": "components/input/input.component.js"
40040
+ "name": "FormfieldWrapper",
40041
+ "module": "components/formfieldwrapper/formfieldwrapper.component.js"
39902
40042
  }
39903
40043
  },
39904
40044
  {
39905
40045
  "kind": "method",
39906
- "name": "renderPrefixText",
40046
+ "name": "renderLabel",
39907
40047
  "privacy": "protected",
39908
- "description": "Renders the prefix text before the input field.\nIf the prefix text is more than 10 characters,\n- it will not be displayed.\n- the validation messsage will be displayed.\n\n Note: We are setting aria-hidden so that the screen reader does not read the prefix text.\n The consumers should set the appropriate aria-label for the input field using 'data-aria-label' attribute.",
40048
+ "description": "renders the label container that contains the label and labelInfoToggleTip.",
39909
40049
  "return": {
39910
40050
  "type": {
39911
40051
  "text": ""
39912
40052
  }
39913
40053
  },
39914
40054
  "inheritedFrom": {
39915
- "name": "Input",
39916
- "module": "components/input/input.component.js"
40055
+ "name": "FormfieldWrapper",
40056
+ "module": "components/formfieldwrapper/formfieldwrapper.component.js"
39917
40057
  }
39918
40058
  },
39919
40059
  {
39920
40060
  "kind": "method",
39921
- "name": "renderTrailingButton",
40061
+ "name": "renderHelperText",
39922
40062
  "privacy": "protected",
39923
- "parameters": [
39924
- {
39925
- "name": "show",
39926
- "default": "false"
39927
- }
39928
- ],
39929
- "description": "Renders the trailing button to clear the input field if the trailingButton is set to true.",
40063
+ "description": "renders the help-text container that contains the helpertext icon and helpertext.",
39930
40064
  "return": {
39931
40065
  "type": {
39932
40066
  "text": ""
39933
40067
  }
39934
40068
  },
39935
- "inheritedFrom": {
39936
- "name": "Input",
39937
- "module": "components/input/input.component.js"
39938
- }
39939
- },
39940
- {
39941
- "kind": "method",
39942
- "name": "renderInputElement",
39943
- "privacy": "protected",
39944
- "parameters": [
39945
- {
39946
- "name": "type",
39947
- "type": {
39948
- "text": "InputType"
39949
- }
39950
- },
39951
- {
39952
- "name": "hidePlaceholder",
39953
- "default": "false"
39954
- }
39955
- ],
39956
- "inheritedFrom": {
39957
- "name": "Input",
39958
- "module": "components/input/input.component.js"
39959
- }
39960
- },
39961
- {
39962
- "kind": "field",
39963
- "name": "disabled",
39964
- "type": {
39965
- "text": "boolean | undefined"
39966
- },
39967
- "description": "Indicates whether the component is disabled.\nWhen the component is disabled for user interaction; it is not focusable or clickable.",
39968
- "default": "undefined",
39969
- "attribute": "disabled",
39970
- "reflects": true,
39971
40069
  "inheritedFrom": {
39972
40070
  "name": "FormfieldWrapper",
39973
40071
  "module": "components/formfieldwrapper/formfieldwrapper.component.js"
39974
40072
  }
39975
- },
40073
+ }
40074
+ ],
40075
+ "events": [
39976
40076
  {
39977
- "kind": "field",
39978
- "name": "label",
40077
+ "name": "change",
39979
40078
  "type": {
39980
- "text": "string | undefined"
40079
+ "text": "CustomEvent"
39981
40080
  },
39982
- "description": "The label of the input field. It is linked to the input field using the `for` attribute.",
39983
- "attribute": "label",
39984
- "reflects": true,
39985
- "inheritedFrom": {
39986
- "name": "FormfieldWrapper",
39987
- "module": "components/formfieldwrapper/formfieldwrapper.component.js"
39988
- }
40081
+ "description": "(React: onChange) This event is dispatched when the select is changed.",
40082
+ "reactName": "onChange"
39989
40083
  },
39990
40084
  {
39991
- "kind": "field",
39992
- "name": "required",
40085
+ "name": "input",
39993
40086
  "type": {
39994
- "text": "boolean"
40087
+ "text": "CustomEvent"
39995
40088
  },
39996
- "default": "false",
39997
- "description": "The required attribute to indicate that the input field is required.\nIt is used to append a required indicator (*) to the label.",
39998
- "attribute": "required",
39999
- "reflects": true,
40000
- "inheritedFrom": {
40001
- "name": "FormfieldWrapper",
40002
- "module": "components/formfieldwrapper/formfieldwrapper.component.js"
40003
- }
40089
+ "description": "(React: onInput) This event is dispatched when the select is changed.",
40090
+ "reactName": "onInput"
40004
40091
  },
40005
40092
  {
40006
- "kind": "field",
40007
- "name": "helpTextType",
40008
- "type": {
40009
- "text": "ValidationType"
40010
- },
40011
- "description": "The type of help text. It can be 'default', 'error', 'warning', 'success', 'priority'.",
40012
- "attribute": "help-text-type",
40013
- "reflects": true,
40014
- "inheritedFrom": {
40015
- "name": "FormfieldWrapper",
40016
- "module": "components/formfieldwrapper/formfieldwrapper.component.js"
40017
- }
40093
+ "description": "(React: onClick) This event is dispatched when the select is clicked.",
40094
+ "name": "click",
40095
+ "reactName": "onClick"
40018
40096
  },
40019
40097
  {
40020
- "kind": "field",
40021
- "name": "helpText",
40022
- "type": {
40023
- "text": "string | undefined"
40024
- },
40025
- "description": "The help text that is displayed below the input field.",
40026
- "attribute": "help-text",
40027
- "reflects": true,
40028
- "inheritedFrom": {
40029
- "name": "FormfieldWrapper",
40030
- "module": "components/formfieldwrapper/formfieldwrapper.component.js"
40031
- }
40098
+ "description": "(React: onKeyDown) This event is dispatched when a key is pressed down on the select.",
40099
+ "name": "keydown",
40100
+ "reactName": "onKeyDown"
40032
40101
  },
40033
40102
  {
40034
- "kind": "field",
40035
- "name": "toggletipText",
40036
- "type": {
40037
- "text": "string | undefined"
40038
- },
40039
- "description": "The toggletip text that is displayed when the label is hovered.\nIt is used to provide additional information about the label.",
40040
- "attribute": "toggletip-text",
40041
- "reflects": true,
40042
- "inheritedFrom": {
40043
- "name": "FormfieldWrapper",
40044
- "module": "components/formfieldwrapper/formfieldwrapper.component.js"
40045
- }
40046
- },
40103
+ "description": "(React: onFocus) This event is dispatched when the select receives focus.",
40104
+ "name": "focus",
40105
+ "reactName": "onFocus"
40106
+ }
40107
+ ],
40108
+ "attributes": [
40047
40109
  {
40048
- "kind": "field",
40049
- "name": "toggletipPlacement",
40110
+ "name": "placeholder",
40050
40111
  "type": {
40051
- "text": "PopoverPlacement"
40112
+ "text": "string | undefined"
40052
40113
  },
40053
- "description": "The placement of the toggletip that is displayed when the info icon is hovered.",
40054
- "default": "'top'",
40055
- "attribute": "toggletip-placement",
40056
- "reflects": true,
40057
- "inheritedFrom": {
40058
- "name": "FormfieldWrapper",
40059
- "module": "components/formfieldwrapper/formfieldwrapper.component.js"
40060
- }
40114
+ "description": "The placeholder text which will be shown on the text if provided.",
40115
+ "fieldName": "placeholder"
40061
40116
  },
40062
40117
  {
40063
- "kind": "field",
40064
- "name": "toggletipStrategy",
40118
+ "name": "placement",
40065
40119
  "type": {
40066
- "text": "PopoverStrategy"
40120
+ "text": "Placement"
40067
40121
  },
40068
- "attribute": "toggletip-strategy",
40069
- "reflects": true,
40070
- "inheritedFrom": {
40071
- "name": "FormfieldWrapper",
40072
- "module": "components/formfieldwrapper/formfieldwrapper.component.js"
40073
- }
40122
+ "description": "The placement of the popover within Select component.\nThis defines the position of the popover relative to the select input field.\n\nPossible values:\n - 'top-start'\n - 'bottom-start'",
40123
+ "default": "'bottom-start'",
40124
+ "fieldName": "placement"
40074
40125
  },
40075
40126
  {
40076
- "kind": "field",
40077
- "name": "infoIconAriaLabel",
40127
+ "name": "boundary",
40078
40128
  "type": {
40079
- "text": "string | undefined"
40129
+ "text": "'clippingAncestors' | string"
40080
40130
  },
40081
- "description": "Aria label for the info icon that is displayed next to the label when `toggletipText` is set.\nThis is used for accessibility purposes to provide a description of the icon.",
40082
- "attribute": "info-icon-aria-label",
40083
- "reflects": true,
40084
- "inheritedFrom": {
40085
- "name": "FormfieldWrapper",
40086
- "module": "components/formfieldwrapper/formfieldwrapper.component.js"
40087
- }
40131
+ "description": "This describes the clipping element(s) or area that overflow of the used popover will be checked relative to.\nThe default is 'clippingAncestors', which are the overflow ancestors which will cause the\nelement to be clipped.\n\nPossible values:\n - 'clippingAncestors'\n - any css selector",
40132
+ "default": "'clippingAncestors'",
40133
+ "fieldName": "boundary"
40088
40134
  },
40089
40135
  {
40090
- "kind": "field",
40091
- "name": "readonly",
40136
+ "name": "strategy",
40092
40137
  "type": {
40093
- "text": "boolean"
40138
+ "text": "PopoverStrategy"
40094
40139
  },
40095
- "default": "false",
40096
- "description": "Determines whether the form field is read-only.",
40097
- "attribute": "readonly",
40098
- "reflects": true,
40099
- "inheritedFrom": {
40100
- "name": "FormfieldWrapper",
40101
- "module": "components/formfieldwrapper/formfieldwrapper.component.js"
40102
- }
40140
+ "description": "The strategy of the popover within Select.\nThis determines how the popover is positioned in the DOM.\n\nIn case `boundary` is set to something other than 'clippingAncestors',\nit might be necessary to set the `strategy` to 'fixed' to ensure that the popover\nis not getting clipped by scrollable containers enclosing the select.",
40141
+ "default": "absolute",
40142
+ "fieldName": "strategy"
40103
40143
  },
40104
40144
  {
40105
- "kind": "field",
40106
- "name": "softDisabled",
40145
+ "name": "popover-z-index",
40107
40146
  "type": {
40108
- "text": "boolean"
40109
- },
40110
- "default": "false",
40111
- "description": "Determines whether the form field is soft-disabled.",
40112
- "attribute": "soft-disabled",
40113
- "reflects": true,
40114
- "inheritedFrom": {
40115
- "name": "FormfieldWrapper",
40116
- "module": "components/formfieldwrapper/formfieldwrapper.component.js"
40117
- }
40118
- },
40119
- {
40120
- "kind": "method",
40121
- "name": "renderLabelElement",
40122
- "privacy": "protected",
40123
- "description": "creates the label element when the label property is set.\nid is used to link the label with the input field.",
40124
- "return": {
40125
- "type": {
40126
- "text": ""
40127
- }
40128
- },
40129
- "inheritedFrom": {
40130
- "name": "FormfieldWrapper",
40131
- "module": "components/formfieldwrapper/formfieldwrapper.component.js"
40132
- }
40133
- },
40134
- {
40135
- "kind": "method",
40136
- "name": "renderHelpTextIcon",
40137
- "privacy": "protected",
40138
- "description": "creates the helpertext icon based on the helpTextType for validation.\nIf the helpTextType is not set, it defaults to 'default' and it doesn't display any icon.",
40139
- "return": {
40140
- "type": {
40141
- "text": ""
40142
- }
40143
- },
40144
- "inheritedFrom": {
40145
- "name": "FormfieldWrapper",
40146
- "module": "components/formfieldwrapper/formfieldwrapper.component.js"
40147
- }
40148
- },
40149
- {
40150
- "kind": "method",
40151
- "name": "renderHelpText",
40152
- "privacy": "protected",
40153
- "description": "creates the helper text component when the helpertext value is set.\nIt is also used to display the validation message based on the helpTextType.",
40154
- "return": {
40155
- "type": {
40156
- "text": ""
40157
- }
40158
- },
40159
- "inheritedFrom": {
40160
- "name": "FormfieldWrapper",
40161
- "module": "components/formfieldwrapper/formfieldwrapper.component.js"
40162
- }
40163
- },
40164
- {
40165
- "kind": "method",
40166
- "name": "renderLabel",
40167
- "privacy": "protected",
40168
- "description": "renders the label container that contains the label and labelInfoToggleTip.",
40169
- "return": {
40170
- "type": {
40171
- "text": ""
40172
- }
40173
- },
40174
- "inheritedFrom": {
40175
- "name": "FormfieldWrapper",
40176
- "module": "components/formfieldwrapper/formfieldwrapper.component.js"
40177
- }
40178
- },
40179
- {
40180
- "kind": "method",
40181
- "name": "renderHelperText",
40182
- "privacy": "protected",
40183
- "description": "renders the help-text container that contains the helpertext icon and helpertext.",
40184
- "return": {
40185
- "type": {
40186
- "text": ""
40187
- }
40147
+ "text": "number"
40188
40148
  },
40189
- "inheritedFrom": {
40190
- "name": "FormfieldWrapper",
40191
- "module": "components/formfieldwrapper/formfieldwrapper.component.js"
40192
- }
40193
- }
40194
- ],
40195
- "events": [
40196
- {
40197
- "description": "(React: onInput) This event is dispatched when the value of the input field changes (every press).",
40198
- "name": "input",
40199
- "reactName": "onInput",
40200
- "inheritedFrom": {
40201
- "name": "Input",
40202
- "module": "src/components/input/input.component.ts"
40203
- }
40204
- },
40205
- {
40206
- "description": "(React: onChange) This event is dispatched when the value of the input field changes (on blur).",
40207
- "name": "change",
40208
- "reactName": "onChange",
40209
- "inheritedFrom": {
40210
- "name": "Input",
40211
- "module": "src/components/input/input.component.ts"
40212
- }
40213
- },
40214
- {
40215
- "description": "(React: onFocus) This event is dispatched when the input receives focus.",
40216
- "name": "focus",
40217
- "reactName": "onFocus",
40218
- "inheritedFrom": {
40219
- "name": "Input",
40220
- "module": "src/components/input/input.component.ts"
40221
- }
40222
- },
40223
- {
40224
- "description": "(React: onBlur) This event is dispatched when the input loses focus.",
40225
- "name": "blur",
40226
- "reactName": "onBlur",
40227
- "inheritedFrom": {
40228
- "name": "Input",
40229
- "module": "src/components/input/input.component.ts"
40230
- }
40149
+ "description": "The z-index of the popover within Select.\n\nOverride this to make sure this stays on top of other components.",
40150
+ "default": "1000",
40151
+ "fieldName": "popoverZIndex"
40231
40152
  },
40232
40153
  {
40233
- "name": "clear",
40154
+ "name": "backdrop-append-to",
40234
40155
  "type": {
40235
- "text": "CustomEvent"
40156
+ "text": "string | undefined"
40236
40157
  },
40237
- "description": "(React: onClear) This event is dispatched when the input text is cleared.",
40238
- "reactName": "onClear",
40239
- "inheritedFrom": {
40240
- "name": "Input",
40241
- "module": "src/components/input/input.component.ts"
40242
- }
40158
+ "description": "ID of the element where the backdrop will be appended to.\nThis is useful to ensure that the backdrop is appended to the correct element in the DOM.\nIf not set, the backdrop will be appended to the parent element of the select.",
40159
+ "fieldName": "backdropAppendTo"
40243
40160
  },
40244
- {
40245
- "type": {
40246
- "text": "EventConstructor"
40247
- },
40248
- "inheritedFrom": {
40249
- "name": "Input",
40250
- "module": "src/components/input/input.component.ts"
40251
- }
40252
- }
40253
- ],
40254
- "superclass": {
40255
- "name": "Input",
40256
- "module": "/src/components/input/input.component"
40257
- },
40258
- "tagName": "mdc-searchfield",
40259
- "jsDoc": "/**\n * `mdc-searchfield` component is used as an input field for search functionality.\n *\n * It supports `mdc-inputchip` as filters.\n *\n * This component is built by extending the `mdc-input` component.\n *\n * @tagname mdc-searchfield\n *\n * @event input - (React: onInput) This event is dispatched when the value of the input field changes (every press).\n * @event change - (React: onChange) This event is dispatched when the value of the input field changes (on blur).\n * @event focus - (React: onFocus) This event is dispatched when the input receives focus.\n * @event blur - (React: onBlur) This event is dispatched when the input loses focus.\n * @event clear - (React: onClear) This event is dispatched when the input text is cleared.\n *\n * @slot filters - Slot for input chips\n * @slot label - Slot for the label element. If not provided, the `label` property will be used to render the label.\n * @slot toggletip - Slot for the toggletip info icon button. If not provided, the `toggletip-text` property will be used to render the info icon button and toggletip.\n * @slot help-icon - Slot for the helper/validation icon. If not provided, the icon will be rendered based on the `helpTextType` property.\n * @slot help-text - Slot for the helper/validation text. If not provided, the `helpText` property will be used to render the helper/validation text.\n * @slot input - Slot for the input element. If not provided, the input field will be rendered.\n * @slot input-leading-icon - Slot for the leading icon before the input field. If not provided, the `leadingIcon` property will be used to render the leading icon.\n * @slot input-prefix-text - Slot for the prefix text before the input field. If not provided, the `prefixText` property will be used to render the prefix text.\n * @slot trailing-button - Slot for the trailing button to clear the input field. If not provided, the clear button will be rendered when `trailingButton` property is set to true.\n *\n * @cssproperty --mdc-label-font-size - Font size for the label text.\n * @cssproperty --mdc-label-font-weight - Font weight for the label text.\n * @cssproperty --mdc-label-line-height - Line height for the label text.\n * @cssproperty --mdc-label-color - Color for the label text.\n * @cssproperty --mdc-help-text-font-size - Font size for the help text.\n * @cssproperty --mdc-help-text-font-weight - Font weight for the help text.\n * @cssproperty --mdc-help-text-line-height - Line height for the help text.\n * @cssproperty --mdc-help-text-color - Color for the help text.\n * @cssproperty --mdc-input-text-color - Text color for the input field\n * @cssproperty --mdc-input-border-color - Border color for the input container\n * @cssproperty --mdc-input-background-color - Background color for the input field\n * @cssproperty --mdc-input-support-text-color - Text color for the help text\n * @cssproperty --mdc-input-selection-text-color - Text color for the selected text\n * @cssproperty --mdc-input-selection-background-color - Background color for the selected text\n *\n * @csspart label - The label element.\n * @csspart label-text - The container for the label and required indicator elements.\n * @csspart required-indicator - The required indicator element that is displayed next to the label when the `required` property is set to true.\n * @csspart info-icon-btn - The info icon button element that is displayed next to the label when the `toggletip-text` property is set.\n * @csspart label-toggletip - The toggletip element that is displayed when the info icon button is clicked.\n * @csspart help-text - The helper/validation text element.\n * @csspart helper-icon - The helper/validation icon element that is displayed next to the helper/validation text.\n * @csspart help-text-container - The container for the helper/validation icon and text elements.\n * @csspart leading-icon - The leading icon element that is displayed before the input field.\n * @csspart prefix-text - The prefix text element that is displayed before the input field.\n * @csspart input-container - The container for the input field, leading icon, prefix text, and trailing button elements.\n * @csspart input-section - The container for the input field, leading icon, and prefix text elements.\n * @csspart input-text - The input field element.\n * @csspart trailing-button - The trailing button element that is displayed to clear the input field when the `trailingButton` property is set to true.\n */",
40260
- "customElement": true,
40261
- "attributes": [
40262
40161
  {
40263
40162
  "name": "auto-focus-on-mount",
40264
40163
  "type": {
@@ -40323,168 +40222,6 @@
40323
40222
  "module": "src/utils/mixins/DataAriaLabelMixin.ts"
40324
40223
  }
40325
40224
  },
40326
- {
40327
- "name": "placeholder",
40328
- "type": {
40329
- "text": "string"
40330
- },
40331
- "default": "''",
40332
- "description": "The placeholder text that is displayed when the input field is empty.",
40333
- "fieldName": "placeholder",
40334
- "inheritedFrom": {
40335
- "name": "Input",
40336
- "module": "src/components/input/input.component.ts"
40337
- }
40338
- },
40339
- {
40340
- "name": "prefix-text",
40341
- "type": {
40342
- "text": "string | undefined"
40343
- },
40344
- "description": "The prefix text that is displayed before the input field. It has a max length of 10 characters.\nWhen the prefix text is set, make sure to set the 'data-aria-label'\nattribute with the appropriate value for accessibility.",
40345
- "fieldName": "prefixText",
40346
- "inheritedFrom": {
40347
- "name": "Input",
40348
- "module": "src/components/input/input.component.ts"
40349
- }
40350
- },
40351
- {
40352
- "name": "leading-icon",
40353
- "type": {
40354
- "text": "IconNames | undefined"
40355
- },
40356
- "description": "The leading icon that is displayed before the input field.",
40357
- "fieldName": "leadingIcon",
40358
- "inheritedFrom": {
40359
- "name": "Input",
40360
- "module": "src/components/input/input.component.ts"
40361
- }
40362
- },
40363
- {
40364
- "name": "trailing-button",
40365
- "type": {
40366
- "text": "boolean"
40367
- },
40368
- "default": "false",
40369
- "description": "The trailing button when set to true, shows a clear button that clears the input field.",
40370
- "fieldName": "trailingButton",
40371
- "inheritedFrom": {
40372
- "name": "Input",
40373
- "module": "src/components/input/input.component.ts"
40374
- }
40375
- },
40376
- {
40377
- "name": "maxlength",
40378
- "type": {
40379
- "text": "number | undefined"
40380
- },
40381
- "description": "The maximum number of characters that the input field can accept.",
40382
- "fieldName": "maxlength",
40383
- "inheritedFrom": {
40384
- "name": "Input",
40385
- "module": "src/components/input/input.component.ts"
40386
- }
40387
- },
40388
- {
40389
- "name": "minlength",
40390
- "type": {
40391
- "text": "number | undefined"
40392
- },
40393
- "description": "The minimum number of characters that the input field can accept.",
40394
- "fieldName": "minlength",
40395
- "inheritedFrom": {
40396
- "name": "Input",
40397
- "module": "src/components/input/input.component.ts"
40398
- }
40399
- },
40400
- {
40401
- "name": "autocapitalize",
40402
- "type": {
40403
- "text": "AutoCapitalizeType"
40404
- },
40405
- "description": "The autocapitalize attribute of the input field.",
40406
- "default": "'off'",
40407
- "fieldName": "autocapitalize",
40408
- "inheritedFrom": {
40409
- "name": "Input",
40410
- "module": "src/components/input/input.component.ts"
40411
- }
40412
- },
40413
- {
40414
- "name": "autocomplete",
40415
- "type": {
40416
- "text": "AutoCompleteType"
40417
- },
40418
- "description": "The autocomplete attribute of the input field.",
40419
- "default": "'off'",
40420
- "fieldName": "autocomplete",
40421
- "inheritedFrom": {
40422
- "name": "Input",
40423
- "module": "src/components/input/input.component.ts"
40424
- }
40425
- },
40426
- {
40427
- "name": "dirname",
40428
- "type": {
40429
- "text": "string | undefined"
40430
- },
40431
- "description": "Specifies the name of the directionality of text for submission purposes (e.g., \"rtl\" for right-to-left).",
40432
- "fieldName": "dirname",
40433
- "inheritedFrom": {
40434
- "name": "Input",
40435
- "module": "src/components/input/input.component.ts"
40436
- }
40437
- },
40438
- {
40439
- "name": "pattern",
40440
- "type": {
40441
- "text": "string | undefined"
40442
- },
40443
- "description": "The pattern attribute of the input field.\nSpecifies a regular expression that the input value must match for validation purposes.",
40444
- "fieldName": "pattern",
40445
- "inheritedFrom": {
40446
- "name": "Input",
40447
- "module": "src/components/input/input.component.ts"
40448
- }
40449
- },
40450
- {
40451
- "name": "list",
40452
- "type": {
40453
- "text": "string | undefined"
40454
- },
40455
- "description": "The list attribute of the input field.\nIdentifies a list of pre-defined options to suggest to the user.",
40456
- "fieldName": "list",
40457
- "inheritedFrom": {
40458
- "name": "Input",
40459
- "module": "src/components/input/input.component.ts"
40460
- }
40461
- },
40462
- {
40463
- "name": "size",
40464
- "type": {
40465
- "text": "number | undefined | undefined"
40466
- },
40467
- "description": "The size attribute of the input field.\nSpecifies the width of the input field.",
40468
- "default": "undefined",
40469
- "fieldName": "size",
40470
- "inheritedFrom": {
40471
- "name": "Input",
40472
- "module": "src/components/input/input.component.ts"
40473
- }
40474
- },
40475
- {
40476
- "name": "clear-aria-label",
40477
- "type": {
40478
- "text": "string"
40479
- },
40480
- "default": "''",
40481
- "description": "Aria label for the trailing button. If trailing button is set to true, this label is used for the clear button.",
40482
- "fieldName": "clearAriaLabel",
40483
- "inheritedFrom": {
40484
- "name": "Input",
40485
- "module": "src/components/input/input.component.ts"
40486
- }
40487
- },
40488
40225
  {
40489
40226
  "name": "disabled",
40490
40227
  "type": {
@@ -40621,7 +40358,36 @@
40621
40358
  "module": "src/components/formfieldwrapper/formfieldwrapper.component.ts"
40622
40359
  }
40623
40360
  }
40624
- ]
40361
+ ],
40362
+ "mixins": [
40363
+ {
40364
+ "name": "ListNavigationMixin",
40365
+ "module": "/src/utils/mixins/ListNavigationMixin"
40366
+ },
40367
+ {
40368
+ "name": "CaptureDestroyEventForChildElement",
40369
+ "module": "/src/utils/mixins/lifecycle/CaptureDestroyEventForChildElement"
40370
+ },
40371
+ {
40372
+ "name": "AutoFocusOnMountMixin",
40373
+ "module": "/src/utils/mixins/AutoFocusOnMountMixin"
40374
+ },
40375
+ {
40376
+ "name": "FormInternalsMixin",
40377
+ "module": "/src/utils/mixins/FormInternalsMixin"
40378
+ },
40379
+ {
40380
+ "name": "DataAriaLabelMixin",
40381
+ "module": "/src/utils/mixins/DataAriaLabelMixin"
40382
+ }
40383
+ ],
40384
+ "superclass": {
40385
+ "name": "FormfieldWrapper",
40386
+ "module": "/src/components/formfieldwrapper/formfieldwrapper.component"
40387
+ },
40388
+ "tagName": "mdc-select",
40389
+ "jsDoc": "/**\n * The mdc-select component is a dropdown selection control that allows users to pick an option from a predefined list.\n * It is designed to work with `mdc-option` for individual options and `mdc-optgroup` for grouping related options.\n *\n * Every mdc-option should have a `value` attribute set to ensure proper form submission.\n *\n * To set a default option, use the `selected` attribute on the `mdc-option` element.\n * You can also set the `value` attribute on the `mdc-select` element to match the value of the desired option. The component will select the corresponding option automatically.\n *\n * **Note:** Make sure to add `mdc-selectlistbox` as a child of `mdc-select` and wrap options/optgroup in it to ensure proper accessibility functionality. Read more about it in SelectListBox documentation.\n *\n * If you need to use `mdc-tooltip` with any options, make sure to place the tooltip component outside the `mdc-select` element.\n *\n * @dependency mdc-button\n * @dependency mdc-icon\n * @dependency mdc-popover\n * @dependency mdc-text\n * @dependency mdc-toggletip\n *\n * @tagname mdc-select\n *\n * @slot default - This is a default/unnamed slot for Selectlistbox including options and/or option group.\n *\n * @event click - (React: onClick) This event is dispatched when the select is clicked.\n * @event change - (React: onChange) This event is dispatched when the select is changed.\n * @event input - (React: onInput) This event is dispatched when the select is changed.\n * @event keydown - (React: onKeyDown) This event is dispatched when a key is pressed down on the select.\n * @event focus - (React: onFocus) This event is dispatched when the select receives focus.\n *\n * @slot label - Slot for the label element. If not provided, the `label` property will be used to render the label.\n * @slot toggletip - Slot for the toggletip info icon button. If not provided, the `toggletip-text` property will be used to render the info icon button and toggletip.\n * @slot help-icon - Slot for the helper/validation icon. If not provided, the icon will be rendered based on the `helpTextType` property.\n * @slot help-text - Slot for the helper/validation text. If not provided, the `helpText` property will be used to render the helper/validation text.\n *\n * @csspart label - The label element.\n * @csspart label-text - The container for the label and required indicator elements.\n * @csspart required-indicator - The required indicator element that is displayed next to the label when the `required` property is set to true.\n * @csspart info-icon-btn - The info icon button element that is displayed next to the label when the `toggletip-text` property is set.\n * @csspart label-toggletip - The toggletip element that is displayed when the info icon button is clicked.\n * @csspart help-text - The helper/validation text element.\n * @csspart helper-icon - The helper/validation icon element that is displayed next to the helper/validation text.\n * @csspart help-text-container - The container for the helper/validation icon and text elements.\n *\n * @cssproperty --mdc-label-font-size - Font size for the label text.\n * @cssproperty --mdc-label-font-weight - Font weight for the label text.\n * @cssproperty --mdc-label-line-height - Line height for the label text.\n * @cssproperty --mdc-label-color - Color for the label text.\n * @cssproperty --mdc-help-text-font-size - Font size for the help text.\n * @cssproperty --mdc-help-text-font-weight - Font weight for the help text.\n * @cssproperty --mdc-help-text-line-height - Line height for the help text.\n * @cssproperty --mdc-help-text-color - Color for the help text.\n * @cssproperty --mdc-select-background-color - The background color of the combobox of select.\n * @cssproperty --mdc-select-text-color - The text color of the select.\n * @cssproperty --mdc-select-border-color - The border color of the select.\n * @cssproperty --mdc-select-width - The width of the select.\n * @cssproperty --mdc-select-listbox-height - The height of the listbox inside the select.\n * @cssproperty --mdc-select-listbox-width - The width of the listbox inside the select (default: `--mdc-select-width`).\n */",
40390
+ "customElement": true
40625
40391
  }
40626
40392
  ],
40627
40393
  "exports": [
@@ -40629,8 +40395,266 @@
40629
40395
  "kind": "js",
40630
40396
  "name": "default",
40631
40397
  "declaration": {
40632
- "name": "Searchfield",
40633
- "module": "components/searchfield/searchfield.component.js"
40398
+ "name": "Select",
40399
+ "module": "components/select/select.component.js"
40400
+ }
40401
+ }
40402
+ ]
40403
+ },
40404
+ {
40405
+ "kind": "javascript-module",
40406
+ "path": "components/selectlistbox/selectlistbox.component.js",
40407
+ "declarations": [
40408
+ {
40409
+ "kind": "class",
40410
+ "description": "Selectlistbox component as Light DOM component to act as a simple wrapper\nfor mdc-option components to ensure accessibility and proper role assignment.\n\nOnce [ariaOwnsElements](https://developer.mozilla.org/en-US/docs/Web/API/ElementInternals/ariaOwnsElements) is supported in browsers, this component can be removed\nand mdc-option can be used directly in the select component with a listbox in a different\nshadow root and aria-owns attribute to connect them.",
40411
+ "name": "Selectlistbox",
40412
+ "slots": [
40413
+ {
40414
+ "description": "This is a default/unnamed slot, which can be used to insert mdc-option components.",
40415
+ "name": "default"
40416
+ }
40417
+ ],
40418
+ "members": [],
40419
+ "superclass": {
40420
+ "name": "Component",
40421
+ "module": "/src/models"
40422
+ },
40423
+ "tagName": "mdc-selectlistbox",
40424
+ "jsDoc": "/**\n * Selectlistbox component as Light DOM component to act as a simple wrapper\n * for mdc-option components to ensure accessibility and proper role assignment.\n *\n * Once [ariaOwnsElements](https://developer.mozilla.org/en-US/docs/Web/API/ElementInternals/ariaOwnsElements) is supported in browsers, this component can be removed\n * and mdc-option can be used directly in the select component with a listbox in a different\n * shadow root and aria-owns attribute to connect them.\n *\n * @tagname mdc-selectlistbox\n *\n * @slot default - This is a default/unnamed slot, which can be used to insert mdc-option components.\n */",
40425
+ "customElement": true
40426
+ }
40427
+ ],
40428
+ "exports": [
40429
+ {
40430
+ "kind": "js",
40431
+ "name": "default",
40432
+ "declaration": {
40433
+ "name": "Selectlistbox",
40434
+ "module": "components/selectlistbox/selectlistbox.component.js"
40435
+ }
40436
+ }
40437
+ ]
40438
+ },
40439
+ {
40440
+ "kind": "javascript-module",
40441
+ "path": "components/sidenavigation/sidenavigation.component.js",
40442
+ "declarations": [
40443
+ {
40444
+ "kind": "class",
40445
+ "description": "The `mdc-sidenavigation` component provides a vertically stacked navigation experience,\ntypically used in layouts with persistent or collapsible sidebars.\n\n## Features:\n- Supports four layout variants: `fixed-collapsed`, `fixed-expanded`, `flexible`, and `hidden`\n- Toggleable expand/collapse behavior\n- Displays brand logo and customer name\n- Serves as a context provider for descendant components - `mdc-menubar` and `mdc-navmenuitem`\n\n### Usage:\nIn a sidenavigation, navmenuitems can be used in the following ways:\n\n1. **Simple navmenuitem** – No submenu or interaction beyond selection.\n\n2. **NavMenuItem with submenu**:\n - Provide an `id` on the `mdc-navmenuitem`\n - Set the `triggerId` on the corresponding `mdc-menupopover` to match the navmenuitem's `id`\n - Set `parent-nav-tooltip-text` with appropriate text that will display when a child menu item\n inside the nested menupopover is active, conveying which submenu item is currently selected\n\n3. **Actionable navmenuitem (no submenu)**:\n - Performs an action such as navigation or alert trigger\n - Set `disable-aria-current=\"true\"` to maintain visual active state without navigation behavior\n\n### Recommendations:\n- Use `mdc-text` for section headers\n- Use `mdc-divider` with the attribute `variant=\"gradient\"` for section dividers\n- For the brand logo, use an informative icon. Refer to `Momentum Informative Icons`\n\n#### Accessibility Notes:\n- Always provide meaningful `aria-label` attributes for both `mdc-navmenuitem` and `mdc-menubar`\nto ensure screen reader support\n- Set `grabber-btn-aria-label` to provide accessible labels for the expand/collapse grabber button",
40446
+ "name": "SideNavigation",
40447
+ "cssProperties": [
40448
+ {
40449
+ "description": "width of the sideNavigation when expanded",
40450
+ "name": "--mdc-sidenavigation-expanded-width"
40451
+ },
40452
+ {
40453
+ "description": "width of the sideNavigation when collapsed",
40454
+ "name": "--mdc-sidenavigation-collapsed-width"
40455
+ },
40456
+ {
40457
+ "description": "z-index of the vertical divider button",
40458
+ "name": "--mdc-sidenavigation-vertical-divider-button-z-index"
40459
+ }
40460
+ ],
40461
+ "cssParts": [
40462
+ {
40463
+ "description": "The main container wrapping the entire side navigation.",
40464
+ "name": "side-navigation-container"
40465
+ },
40466
+ {
40467
+ "description": "The scrollable section of the side navigation.",
40468
+ "name": "scrollable-section"
40469
+ },
40470
+ {
40471
+ "description": "The fixed section of the side navigation.",
40472
+ "name": "fixed-section"
40473
+ },
40474
+ {
40475
+ "description": "The divider between the scrollable and fixed sections.",
40476
+ "name": "separator"
40477
+ },
40478
+ {
40479
+ "description": "The container wrapping the brand logo and footer text.",
40480
+ "name": "brand-logo-container"
40481
+ },
40482
+ {
40483
+ "description": "The footer text label in the fixed section.",
40484
+ "name": "footer-text"
40485
+ },
40486
+ {
40487
+ "description": "The vertical divider between the scrollable and fixed sections.",
40488
+ "name": "vertical-divider"
40489
+ },
40490
+ {
40491
+ "description": "The button inside the vertical divider used to toggle expand/collapse.",
40492
+ "name": "vertical-divider-button"
40493
+ }
40494
+ ],
40495
+ "slots": [
40496
+ {
40497
+ "description": "Slot for the scrollable content area of the side navigation.",
40498
+ "name": "scrollable-section"
40499
+ },
40500
+ {
40501
+ "description": "Slot for the fixed content area of the side navigation.",
40502
+ "name": "fixed-section"
40503
+ },
40504
+ {
40505
+ "description": "Slot for the brand logo (e.g., icon or img).",
40506
+ "name": "brand-logo"
40507
+ }
40508
+ ],
40509
+ "members": [
40510
+ {
40511
+ "kind": "field",
40512
+ "name": "variant",
40513
+ "type": {
40514
+ "text": "SideNavigationVariant"
40515
+ },
40516
+ "description": "Four variants of the sideNavigation\n- **fixed-collapsed**: Shows icons without labels and has fixed width, 4.5rem.\n- **fixed-expanded**: Shows icons with labels and has fixed width, 15rem.\n- **flexible**: Toggles between collapsed/expanded states.\n- **hidden**: Removes the sidenavigation from the DOM.",
40517
+ "default": "flexible",
40518
+ "attribute": "variant",
40519
+ "reflects": true
40520
+ },
40521
+ {
40522
+ "kind": "field",
40523
+ "name": "footerText",
40524
+ "type": {
40525
+ "text": "string"
40526
+ },
40527
+ "default": "''",
40528
+ "description": "Displays footer text in the bottom section of the sidenavigation.",
40529
+ "attribute": "footer-text",
40530
+ "reflects": true
40531
+ },
40532
+ {
40533
+ "kind": "field",
40534
+ "name": "grabberBtnAriaLabel",
40535
+ "type": {
40536
+ "text": "string | undefined"
40537
+ },
40538
+ "description": "Provides an accessible label for the grabber button.\nThis value is used to set the `aria-label` attribute for the button.",
40539
+ "default": "''",
40540
+ "attribute": "grabber-btn-aria-label",
40541
+ "reflects": true
40542
+ },
40543
+ {
40544
+ "kind": "field",
40545
+ "name": "parentNavTooltipText",
40546
+ "type": {
40547
+ "text": "string | undefined"
40548
+ },
40549
+ "description": "Tooltip text shown on parent nav items when a child is active.",
40550
+ "attribute": "parent-nav-tooltip-text",
40551
+ "reflects": true
40552
+ },
40553
+ {
40554
+ "kind": "field",
40555
+ "name": "Context",
40556
+ "privacy": "public",
40557
+ "static": true,
40558
+ "readonly": true
40559
+ },
40560
+ {
40561
+ "kind": "method",
40562
+ "name": "updateContext",
40563
+ "privacy": "protected",
40564
+ "return": {
40565
+ "type": {
40566
+ "text": "void"
40567
+ }
40568
+ },
40569
+ "description": "Update all observing components of this\nprovider to update the values\n\nIs called on every re-render, see Provider class"
40570
+ },
40571
+ {
40572
+ "kind": "method",
40573
+ "name": "preventScrollOnSpace",
40574
+ "privacy": "private",
40575
+ "return": {
40576
+ "type": {
40577
+ "text": "void"
40578
+ }
40579
+ },
40580
+ "parameters": [
40581
+ {
40582
+ "name": "event",
40583
+ "type": {
40584
+ "text": "KeyboardEvent"
40585
+ }
40586
+ }
40587
+ ]
40588
+ }
40589
+ ],
40590
+ "events": [
40591
+ {
40592
+ "name": "toggle",
40593
+ "type": {
40594
+ "text": "CustomEvent"
40595
+ },
40596
+ "description": "(React: onToggle) Dispatched when the grabber button is clicked to expand/collapse the sidenavigation.",
40597
+ "reactName": "onToggle"
40598
+ },
40599
+ {
40600
+ "description": "(React: onActiveChange) Dispatched when the active state of a nested navmenuitem changes.",
40601
+ "name": "activechange",
40602
+ "reactName": "onActiveChange"
40603
+ }
40604
+ ],
40605
+ "attributes": [
40606
+ {
40607
+ "name": "variant",
40608
+ "type": {
40609
+ "text": "SideNavigationVariant"
40610
+ },
40611
+ "description": "Four variants of the sideNavigation\n- **fixed-collapsed**: Shows icons without labels and has fixed width, 4.5rem.\n- **fixed-expanded**: Shows icons with labels and has fixed width, 15rem.\n- **flexible**: Toggles between collapsed/expanded states.\n- **hidden**: Removes the sidenavigation from the DOM.",
40612
+ "default": "flexible",
40613
+ "fieldName": "variant"
40614
+ },
40615
+ {
40616
+ "name": "footer-text",
40617
+ "type": {
40618
+ "text": "string"
40619
+ },
40620
+ "default": "''",
40621
+ "description": "Displays footer text in the bottom section of the sidenavigation.",
40622
+ "fieldName": "footerText"
40623
+ },
40624
+ {
40625
+ "name": "grabber-btn-aria-label",
40626
+ "type": {
40627
+ "text": "string | undefined"
40628
+ },
40629
+ "description": "Provides an accessible label for the grabber button.\nThis value is used to set the `aria-label` attribute for the button.",
40630
+ "default": "''",
40631
+ "fieldName": "grabberBtnAriaLabel"
40632
+ },
40633
+ {
40634
+ "name": "parent-nav-tooltip-text",
40635
+ "type": {
40636
+ "text": "string | undefined"
40637
+ },
40638
+ "description": "Tooltip text shown on parent nav items when a child is active.",
40639
+ "fieldName": "parentNavTooltipText"
40640
+ }
40641
+ ],
40642
+ "superclass": {
40643
+ "name": "Provider",
40644
+ "module": "/src/models"
40645
+ },
40646
+ "tagName": "mdc-sidenavigation",
40647
+ "jsDoc": "/**\n * The `mdc-sidenavigation` component provides a vertically stacked navigation experience,\n * typically used in layouts with persistent or collapsible sidebars.\n *\n * ## Features:\n * - Supports four layout variants: `fixed-collapsed`, `fixed-expanded`, `flexible`, and `hidden`\n * - Toggleable expand/collapse behavior\n * - Displays brand logo and customer name\n * - Serves as a context provider for descendant components - `mdc-menubar` and `mdc-navmenuitem`\n *\n * ### Usage:\n * In a sidenavigation, navmenuitems can be used in the following ways:\n *\n * 1. **Simple navmenuitem** – No submenu or interaction beyond selection.\n *\n * 2. **NavMenuItem with submenu**:\n * - Provide an `id` on the `mdc-navmenuitem`\n * - Set the `triggerId` on the corresponding `mdc-menupopover` to match the navmenuitem's `id`\n * - Set `parent-nav-tooltip-text` with appropriate text that will display when a child menu item\n * inside the nested menupopover is active, conveying which submenu item is currently selected\n *\n * 3. **Actionable navmenuitem (no submenu)**:\n * - Performs an action such as navigation or alert trigger\n * - Set `disable-aria-current=\"true\"` to maintain visual active state without navigation behavior\n *\n * ### Recommendations:\n * - Use `mdc-text` for section headers\n * - Use `mdc-divider` with the attribute `variant=\"gradient\"` for section dividers\n * - For the brand logo, use an informative icon. Refer to `Momentum Informative Icons`\n *\n * #### Accessibility Notes:\n * - Always provide meaningful `aria-label` attributes for both `mdc-navmenuitem` and `mdc-menubar`\n * to ensure screen reader support\n * - Set `grabber-btn-aria-label` to provide accessible labels for the expand/collapse grabber button\n *\n * @dependency mdc-text\n * @dependency mdc-button\n * @dependency mdc-divider\n * @dependency mdc-menubar\n *\n * @event activechange - (React: onActiveChange) Dispatched when the active state of the navmenuitem changes.\n *\n * @tagname mdc-sidenavigation\n *\n * @slot scrollable-section - Slot for the scrollable content area of the side navigation.\n * @slot fixed-section - Slot for the fixed content area of the side navigation.\n * @slot brand-logo - Slot for the brand logo (e.g., icon or img).\n *\n * @csspart side-navigation-container - The main container wrapping the entire side navigation.\n * @csspart scrollable-section - The scrollable section of the side navigation.\n * @csspart fixed-section - The fixed section of the side navigation.\n * @csspart separator - The divider between the scrollable and fixed sections.\n * @csspart brand-logo-container - The container wrapping the brand logo and footer text.\n * @csspart footer-text - The footer text label in the fixed section.\n * @csspart vertical-divider - The vertical divider between the scrollable and fixed sections.\n * @csspart vertical-divider-button - The button inside the vertical divider used to toggle expand/collapse.\n *\n * @event toggle - (React: onToggle) Dispatched when the grabber button is clicked to expand/collapse the sidenavigation.\n * @event activechange - (React: onActiveChange) Dispatched when the active state of a nested navmenuitem changes.\n *\n * @cssproperty --mdc-sidenavigation-expanded-width - width of the sideNavigation when expanded\n * @cssproperty --mdc-sidenavigation-collapsed-width - width of the sideNavigation when collapsed\n * @cssproperty --mdc-sidenavigation-vertical-divider-button-z-index - z-index of the vertical divider button\n */",
40648
+ "customElement": true
40649
+ }
40650
+ ],
40651
+ "exports": [
40652
+ {
40653
+ "kind": "js",
40654
+ "name": "default",
40655
+ "declaration": {
40656
+ "name": "SideNavigation",
40657
+ "module": "components/sidenavigation/sidenavigation.component.js"
40634
40658
  }
40635
40659
  }
40636
40660
  ]
@@ -41837,139 +41861,6 @@
41837
41861
  }
41838
41862
  ]
41839
41863
  },
41840
- {
41841
- "kind": "javascript-module",
41842
- "path": "components/staticchip/staticchip.component.js",
41843
- "declarations": [
41844
- {
41845
- "kind": "class",
41846
- "description": "mdc-staticchip is an static element that can be used to represent a chip. It supports a leading icon along with label.\n\nIt is recommended to keep the label text for the chip component concise and compact.\nFor best results, we recommend limiting the <b>maximum length of the label text to 20 characters</b>, including empty spaces to split words.",
41847
- "name": "StaticChip",
41848
- "cssProperties": [
41849
- {
41850
- "description": "The color of the static chip.",
41851
- "name": "--mdc-chip-color"
41852
- },
41853
- {
41854
- "description": "The border color of the static chip.",
41855
- "name": "--mdc-chip-border-color"
41856
- },
41857
- {
41858
- "description": "The background color of the static chip.",
41859
- "name": "--mdc-chip-background-color"
41860
- }
41861
- ],
41862
- "cssParts": [
41863
- {
41864
- "description": "The label of the static chip.",
41865
- "name": "label"
41866
- }
41867
- ],
41868
- "members": [
41869
- {
41870
- "kind": "field",
41871
- "name": "color",
41872
- "type": {
41873
- "text": "ColorType"
41874
- },
41875
- "description": "The color of the chip. It supports the following colors\n- default\n- cobalt\n- gold\n- lime\n- mint\n- orange\n- pink\n- purple\n- slate\n- violet",
41876
- "default": "default",
41877
- "attribute": "color",
41878
- "reflects": true
41879
- },
41880
- {
41881
- "kind": "field",
41882
- "name": "label",
41883
- "type": {
41884
- "text": "string"
41885
- },
41886
- "default": "''",
41887
- "description": "The visible label text of the chip.\n\nWe recommend limiting the <b>maximum length of the label text to 20 characters</b>,\nincluding empty spaces to split words.",
41888
- "attribute": "label"
41889
- },
41890
- {
41891
- "kind": "method",
41892
- "name": "renderIcon",
41893
- "privacy": "private",
41894
- "description": "Renders the icon element if available.",
41895
- "return": {
41896
- "type": {
41897
- "text": ""
41898
- }
41899
- }
41900
- },
41901
- {
41902
- "kind": "field",
41903
- "name": "iconName",
41904
- "type": {
41905
- "text": "IconNames | undefined"
41906
- },
41907
- "description": "Name of the icon (= filename).\n\nIf no `icon-name` is provided, no icon will be rendered.",
41908
- "attribute": "icon-name",
41909
- "inheritedFrom": {
41910
- "name": "IconNameMixin",
41911
- "module": "utils/mixins/IconNameMixin.js"
41912
- }
41913
- }
41914
- ],
41915
- "attributes": [
41916
- {
41917
- "name": "color",
41918
- "type": {
41919
- "text": "ColorType"
41920
- },
41921
- "description": "The color of the chip. It supports the following colors\n- default\n- cobalt\n- gold\n- lime\n- mint\n- orange\n- pink\n- purple\n- slate\n- violet",
41922
- "default": "default",
41923
- "fieldName": "color"
41924
- },
41925
- {
41926
- "name": "label",
41927
- "type": {
41928
- "text": "string"
41929
- },
41930
- "default": "''",
41931
- "description": "The visible label text of the chip.\n\nWe recommend limiting the <b>maximum length of the label text to 20 characters</b>,\nincluding empty spaces to split words.",
41932
- "fieldName": "label"
41933
- },
41934
- {
41935
- "name": "icon-name",
41936
- "type": {
41937
- "text": "IconNames | undefined"
41938
- },
41939
- "description": "Name of the icon (= filename).\n\nIf no `icon-name` is provided, no icon will be rendered.",
41940
- "fieldName": "iconName",
41941
- "inheritedFrom": {
41942
- "name": "IconNameMixin",
41943
- "module": "src/utils/mixins/IconNameMixin.ts"
41944
- }
41945
- }
41946
- ],
41947
- "mixins": [
41948
- {
41949
- "name": "IconNameMixin",
41950
- "module": "/src/utils/mixins/IconNameMixin"
41951
- }
41952
- ],
41953
- "superclass": {
41954
- "name": "Component",
41955
- "module": "/src/models"
41956
- },
41957
- "tagName": "mdc-staticchip",
41958
- "jsDoc": "/**\n * mdc-staticchip is an static element that can be used to represent a chip. It supports a leading icon along with label.\n *\n * It is recommended to keep the label text for the chip component concise and compact.\n * For best results, we recommend limiting the <b>maximum length of the label text to 20 characters</b>, including empty spaces to split words.\n *\n *\n * @tagname mdc-staticchip\n *\n * @dependency mdc-icon\n * @dependency mdc-text\n *\n * @cssproperty --mdc-chip-color - The color of the static chip.\n * @cssproperty --mdc-chip-border-color - The border color of the static chip.\n * @cssproperty --mdc-chip-background-color - The background color of the static chip.\n *\n * @csspart label - The label of the static chip.\n */",
41959
- "customElement": true
41960
- }
41961
- ],
41962
- "exports": [
41963
- {
41964
- "kind": "js",
41965
- "name": "default",
41966
- "declaration": {
41967
- "name": "StaticChip",
41968
- "module": "components/staticchip/staticchip.component.js"
41969
- }
41970
- }
41971
- ]
41972
- },
41973
41864
  {
41974
41865
  "kind": "javascript-module",
41975
41866
  "path": "components/staticradio/staticradio.component.js",
@@ -42150,6 +42041,139 @@
42150
42041
  }
42151
42042
  ]
42152
42043
  },
42044
+ {
42045
+ "kind": "javascript-module",
42046
+ "path": "components/staticchip/staticchip.component.js",
42047
+ "declarations": [
42048
+ {
42049
+ "kind": "class",
42050
+ "description": "mdc-staticchip is an static element that can be used to represent a chip. It supports a leading icon along with label.\n\nIt is recommended to keep the label text for the chip component concise and compact.\nFor best results, we recommend limiting the <b>maximum length of the label text to 20 characters</b>, including empty spaces to split words.",
42051
+ "name": "StaticChip",
42052
+ "cssProperties": [
42053
+ {
42054
+ "description": "The color of the static chip.",
42055
+ "name": "--mdc-chip-color"
42056
+ },
42057
+ {
42058
+ "description": "The border color of the static chip.",
42059
+ "name": "--mdc-chip-border-color"
42060
+ },
42061
+ {
42062
+ "description": "The background color of the static chip.",
42063
+ "name": "--mdc-chip-background-color"
42064
+ }
42065
+ ],
42066
+ "cssParts": [
42067
+ {
42068
+ "description": "The label of the static chip.",
42069
+ "name": "label"
42070
+ }
42071
+ ],
42072
+ "members": [
42073
+ {
42074
+ "kind": "field",
42075
+ "name": "color",
42076
+ "type": {
42077
+ "text": "ColorType"
42078
+ },
42079
+ "description": "The color of the chip. It supports the following colors\n- default\n- cobalt\n- gold\n- lime\n- mint\n- orange\n- pink\n- purple\n- slate\n- violet",
42080
+ "default": "default",
42081
+ "attribute": "color",
42082
+ "reflects": true
42083
+ },
42084
+ {
42085
+ "kind": "field",
42086
+ "name": "label",
42087
+ "type": {
42088
+ "text": "string"
42089
+ },
42090
+ "default": "''",
42091
+ "description": "The visible label text of the chip.\n\nWe recommend limiting the <b>maximum length of the label text to 20 characters</b>,\nincluding empty spaces to split words.",
42092
+ "attribute": "label"
42093
+ },
42094
+ {
42095
+ "kind": "method",
42096
+ "name": "renderIcon",
42097
+ "privacy": "private",
42098
+ "description": "Renders the icon element if available.",
42099
+ "return": {
42100
+ "type": {
42101
+ "text": ""
42102
+ }
42103
+ }
42104
+ },
42105
+ {
42106
+ "kind": "field",
42107
+ "name": "iconName",
42108
+ "type": {
42109
+ "text": "IconNames | undefined"
42110
+ },
42111
+ "description": "Name of the icon (= filename).\n\nIf no `icon-name` is provided, no icon will be rendered.",
42112
+ "attribute": "icon-name",
42113
+ "inheritedFrom": {
42114
+ "name": "IconNameMixin",
42115
+ "module": "utils/mixins/IconNameMixin.js"
42116
+ }
42117
+ }
42118
+ ],
42119
+ "attributes": [
42120
+ {
42121
+ "name": "color",
42122
+ "type": {
42123
+ "text": "ColorType"
42124
+ },
42125
+ "description": "The color of the chip. It supports the following colors\n- default\n- cobalt\n- gold\n- lime\n- mint\n- orange\n- pink\n- purple\n- slate\n- violet",
42126
+ "default": "default",
42127
+ "fieldName": "color"
42128
+ },
42129
+ {
42130
+ "name": "label",
42131
+ "type": {
42132
+ "text": "string"
42133
+ },
42134
+ "default": "''",
42135
+ "description": "The visible label text of the chip.\n\nWe recommend limiting the <b>maximum length of the label text to 20 characters</b>,\nincluding empty spaces to split words.",
42136
+ "fieldName": "label"
42137
+ },
42138
+ {
42139
+ "name": "icon-name",
42140
+ "type": {
42141
+ "text": "IconNames | undefined"
42142
+ },
42143
+ "description": "Name of the icon (= filename).\n\nIf no `icon-name` is provided, no icon will be rendered.",
42144
+ "fieldName": "iconName",
42145
+ "inheritedFrom": {
42146
+ "name": "IconNameMixin",
42147
+ "module": "src/utils/mixins/IconNameMixin.ts"
42148
+ }
42149
+ }
42150
+ ],
42151
+ "mixins": [
42152
+ {
42153
+ "name": "IconNameMixin",
42154
+ "module": "/src/utils/mixins/IconNameMixin"
42155
+ }
42156
+ ],
42157
+ "superclass": {
42158
+ "name": "Component",
42159
+ "module": "/src/models"
42160
+ },
42161
+ "tagName": "mdc-staticchip",
42162
+ "jsDoc": "/**\n * mdc-staticchip is an static element that can be used to represent a chip. It supports a leading icon along with label.\n *\n * It is recommended to keep the label text for the chip component concise and compact.\n * For best results, we recommend limiting the <b>maximum length of the label text to 20 characters</b>, including empty spaces to split words.\n *\n *\n * @tagname mdc-staticchip\n *\n * @dependency mdc-icon\n * @dependency mdc-text\n *\n * @cssproperty --mdc-chip-color - The color of the static chip.\n * @cssproperty --mdc-chip-border-color - The border color of the static chip.\n * @cssproperty --mdc-chip-background-color - The background color of the static chip.\n *\n * @csspart label - The label of the static chip.\n */",
42163
+ "customElement": true
42164
+ }
42165
+ ],
42166
+ "exports": [
42167
+ {
42168
+ "kind": "js",
42169
+ "name": "default",
42170
+ "declaration": {
42171
+ "name": "StaticChip",
42172
+ "module": "components/staticchip/staticchip.component.js"
42173
+ }
42174
+ }
42175
+ ]
42176
+ },
42153
42177
  {
42154
42178
  "kind": "javascript-module",
42155
42179
  "path": "components/statictoggle/statictoggle.component.js",