@momentum-design/components 0.75.2 → 0.75.4

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.
@@ -9059,7 +9059,7 @@
9059
9059
  "declarations": [
9060
9060
  {
9061
9061
  "kind": "class",
9062
- "description": "Dialog component is a modal dialog that can be used to display information or prompt the user for input.\nIt can be used to create custom dialogs where content for the body and footer actions is provided by the consumer.\nThe dialog is available in three sizes: small, medium, and large. It may also receive custom styling/sizing.\nThe dialog interrupts the user and will block interaction with the rest of the application until it is closed.\n\nDialog component have 2 variants: default and promotional.\n\n**Accessibility notes for consuming (have to be explicitly set when you consume the component)**\n\n- The dialog should have an aria-label or aria-labelledby attribute to provide a label for screen readers.\n- Use aria-labelledby to reference the ID of the element that labels the dialog when there is no visible title.\n\n**Note: Programmatic show/hide requires the ? prefix on the visible attribute**\n- Use `?visible=true/false` as an attribute instead of `visible=true/false`\n- Reference docs for more info: https://lit.dev/docs/templates/expressions/#boolean-attribute-expressions",
9062
+ "description": "Dialog component is a modal dialog that can be used to display information or prompt the user for input.\nIt can be used to create custom dialogs where content for the body and footer actions is provided by the consumer.\nThe dialog is available in three sizes: small, medium, and large. It may also receive custom styling/sizing.\nThe dialog interrupts the user and will block interaction with the rest of the application until it is closed.\n\nThe dialog can be controlled solely through the `visible` property, no trigger element is required.\nIf a `triggerId` is provided, the dialog will manage focus with that element, otherwise it will\nremember the previously focused element before the dialog was opened.\n\nDialog component have 2 variants: default and promotional.\n\n**Accessibility notes for consuming (have to be explicitly set when you consume the component)**\n\n- The dialog should have an aria-label or aria-labelledby attribute to provide a label for screen readers.\n- Use aria-labelledby to reference the ID of the element that labels the dialog when there is no visible title.\n\n**Note: Programmatic show/hide requires the ? prefix on the visible attribute**\n- Use `?visible=true/false` as an attribute instead of `visible=true/false`\n- Reference docs for more info: https://lit.dev/docs/templates/expressions/#boolean-attribute-expressions",
9063
9063
  "name": "Dialog",
9064
9064
  "cssProperties": [
9065
9065
  {
@@ -9088,6 +9088,10 @@
9088
9088
  }
9089
9089
  ],
9090
9090
  "slots": [
9091
+ {
9092
+ "description": "Slot for the dialog header content. This can be used to pass custom header content.",
9093
+ "name": "header-prefix"
9094
+ },
9091
9095
  {
9092
9096
  "description": "Slot for the dialog body content",
9093
9097
  "name": "dialog-body"
@@ -9964,7 +9968,7 @@
9964
9968
  "module": "/src/models"
9965
9969
  },
9966
9970
  "tagName": "mdc-dialog",
9967
- "jsDoc": "/**\n * Dialog component is a modal dialog that can be used to display information or prompt the user for input.\n * It can be used to create custom dialogs where content for the body and footer actions is provided by the consumer.\n * The dialog is available in three sizes: small, medium, and large. It may also receive custom styling/sizing.\n * The dialog interrupts the user and will block interaction with the rest of the application until it is closed.\n *\n * Dialog component have 2 variants: default and promotional.\n *\n * **Accessibility notes for consuming (have to be explicitly set when you consume the component)**\n *\n * - The dialog should have an aria-label or aria-labelledby attribute to provide a label for screen readers.\n * - Use aria-labelledby to reference the ID of the element that labels the dialog when there is no visible title.\n *\n * **Note: Programmatic show/hide requires the ? prefix on the visible attribute**\n * - Use `?visible=true/false` as an attribute instead of `visible=true/false`\n * - Reference docs for more info: https://lit.dev/docs/templates/expressions/#boolean-attribute-expressions\n *\n * @dependency mdc-button\n * @dependency mdc-text\n *\n * @tagname mdc-dialog\n *\n * @event shown - (React: onShown) Dispatched when the dialog is shown\n * @event hidden - (React: onHidden) Dispatched when the dialog is hidden\n * @event created - (React: onCreated) Dispatched when the dialog is created (added to the DOM)\n * @event destroyed - (React: onDestroyed) Dispatched when the dialog is destroyed (removed from the DOM)\n *\n * @cssproperty --mdc-dialog-primary-background-color - primary background color of the dialog\n * @cssproperty --mdc-dialog-border-color - border color of the dialog\n * @cssproperty --mdc-dialog-header-text-color - text color of the header/title of the dialog\n * @cssproperty --mdc-dialog-description-text-color - text color of the below header description of the dialog\n * @cssproperty --mdc-dialog-elevation-3 - elevation of the dialog\n * @cssproperty --mdc-dialog-width - width of the dialog\n *\n * @slot dialog-body - Slot for the dialog body content\n * @slot footer-link - This slot is for passing `mdc-link` component within the footer section.\n * @slot footer-button-secondary - This slot is for passing secondary variant of `mdc-button` component\n * within the footer section.\n * @slot footer-button-primary - This slot is for passing primary variant of\n * `mdc-button` component within the footer section.\n *\n */",
9971
+ "jsDoc": "/**\n * Dialog component is a modal dialog that can be used to display information or prompt the user for input.\n * It can be used to create custom dialogs where content for the body and footer actions is provided by the consumer.\n * The dialog is available in three sizes: small, medium, and large. It may also receive custom styling/sizing.\n * The dialog interrupts the user and will block interaction with the rest of the application until it is closed.\n *\n * The dialog can be controlled solely through the `visible` property, no trigger element is required.\n * If a `triggerId` is provided, the dialog will manage focus with that element, otherwise it will\n * remember the previously focused element before the dialog was opened.\n *\n * Dialog component have 2 variants: default and promotional.\n *\n * **Accessibility notes for consuming (have to be explicitly set when you consume the component)**\n *\n * - The dialog should have an aria-label or aria-labelledby attribute to provide a label for screen readers.\n * - Use aria-labelledby to reference the ID of the element that labels the dialog when there is no visible title.\n *\n * **Note: Programmatic show/hide requires the ? prefix on the visible attribute**\n * - Use `?visible=true/false` as an attribute instead of `visible=true/false`\n * - Reference docs for more info: https://lit.dev/docs/templates/expressions/#boolean-attribute-expressions\n *\n * @dependency mdc-button\n * @dependency mdc-text\n *\n * @tagname mdc-dialog\n *\n * @event shown - (React: onShown) Dispatched when the dialog is shown\n * @event hidden - (React: onHidden) Dispatched when the dialog is hidden\n * @event created - (React: onCreated) Dispatched when the dialog is created (added to the DOM)\n * @event destroyed - (React: onDestroyed) Dispatched when the dialog is destroyed (removed from the DOM)\n *\n * @cssproperty --mdc-dialog-primary-background-color - primary background color of the dialog\n * @cssproperty --mdc-dialog-border-color - border color of the dialog\n * @cssproperty --mdc-dialog-header-text-color - text color of the header/title of the dialog\n * @cssproperty --mdc-dialog-description-text-color - text color of the below header description of the dialog\n * @cssproperty --mdc-dialog-elevation-3 - elevation of the dialog\n * @cssproperty --mdc-dialog-width - width of the dialog\n *\n * @slot header-prefix - Slot for the dialog header content. This can be used to pass custom header content.\n * @slot dialog-body - Slot for the dialog body content\n * @slot footer-link - This slot is for passing `mdc-link` component within the footer section.\n * @slot footer-button-secondary - This slot is for passing secondary variant of `mdc-button` component\n * within the footer section.\n * @slot footer-button-primary - This slot is for passing primary variant of\n * `mdc-button` component within the footer section.\n *\n */",
9968
9972
  "customElement": true
9969
9973
  }
9970
9974
  ],
@@ -11608,202 +11612,6 @@
11608
11612
  }
11609
11613
  ]
11610
11614
  },
11611
- {
11612
- "kind": "javascript-module",
11613
- "path": "components/iconprovider/iconprovider.component.js",
11614
- "declarations": [
11615
- {
11616
- "kind": "class",
11617
- "description": "IconProvider component, which allows to be consumed from sub components\n(see `providerUtils.consume` for how to consume)\n\nAttribute `iconSet` can be set to either `momentum-icons` or `custom-icons`.\nIf `momentum-icons` is selected, the icons will be fetched from the\nMomentum Design System icon set per a dynamic JS Import (no need to provide a URL).\nThis requires the consumer to have the `@momentum-designs` package installed and the\nbuild tooling needs to support dynamic imports.\n\nIf `custom-icons` is selected, the icons will be fetched from the provided URL.\nThis requires the consumer to provide a URL from which the icons will be fetched and\nthe consumer needs to make sure to bundle the icons in the application.\n\nIf `cacheStrategy` is provided (only works with iconSet = `custom-icons`), the\nIconProvider will cache the icons in the selected cache (either web-api-cache or in-memory-cache),\nto avoid fetching the same icon multiple times over the network.\nThis is useful when the same icon is used multiple times in the application.\nTo consider:\n- The `in-memory-cache` is not persisted and will be lost when the\nIconProvider is removed from the DOM.\n- The `web-api-cache` is persisted, but only works in https environments\n(https://developer.mozilla.org/en-US/docs/Web/API/Cache).",
11618
- "name": "IconProvider",
11619
- "slots": [
11620
- {
11621
- "description": "children",
11622
- "name": ""
11623
- }
11624
- ],
11625
- "members": [
11626
- {
11627
- "kind": "field",
11628
- "name": "Context",
11629
- "privacy": "public",
11630
- "static": true,
11631
- "description": "Context object of the IconProvider, to be consumed by child components",
11632
- "readonly": true
11633
- },
11634
- {
11635
- "kind": "field",
11636
- "name": "iconSet",
11637
- "type": {
11638
- "text": "IconSet | undefined"
11639
- },
11640
- "description": "Icon set to be used\n\nIf `momentum-icons` is selected, the icons will be fetched from the\nMomentum Design System icon set per a dynamic JS Import (no need to provide a URL).\nThis requires the consumer to have the `@momentum-designs` package installed and the\nbuild tooling needs to support dynamic imports.\n\nIf `custom-icons` is selected, the icons will be fetched from the provided URL.\nThis requires the consumer to provide a URL from which the icons will be fetched and\nthe consumer needs to make sure to bundle the icons in the application.",
11641
- "default": "momentum-icons",
11642
- "attribute": "icon-set",
11643
- "reflects": true
11644
- },
11645
- {
11646
- "kind": "field",
11647
- "name": "url",
11648
- "type": {
11649
- "text": "string | undefined"
11650
- },
11651
- "description": "Url of where icons will be fetched from\n(if Icon set is `custom-icons`, this will be the base url)",
11652
- "attribute": "url"
11653
- },
11654
- {
11655
- "kind": "field",
11656
- "name": "fileExtension",
11657
- "type": {
11658
- "text": "string | undefined"
11659
- },
11660
- "description": "File extension of icons\n(if Icon set is `custom-icons`, this will be the file extension for icons)",
11661
- "default": "svg",
11662
- "attribute": "file-extension",
11663
- "reflects": true
11664
- },
11665
- {
11666
- "kind": "field",
11667
- "name": "lengthUnit",
11668
- "type": {
11669
- "text": "string"
11670
- },
11671
- "description": "Length unit used for sizing of icons",
11672
- "default": "em",
11673
- "attribute": "length-unit",
11674
- "reflects": true
11675
- },
11676
- {
11677
- "kind": "field",
11678
- "name": "size",
11679
- "type": {
11680
- "text": "number | undefined"
11681
- },
11682
- "description": "The default size of the icon.\nIf not set, it falls back to the size defined by the length unit.",
11683
- "default": "1",
11684
- "attribute": "size",
11685
- "reflects": true
11686
- },
11687
- {
11688
- "kind": "field",
11689
- "name": "cacheStrategy",
11690
- "type": {
11691
- "text": "CacheStrategy | undefined"
11692
- },
11693
- "description": "Icons Cache Strategy to use\n\n**Can only be used if Icon set is `custom-icons`**\n\nChoose `in-memory-cache` to cache icons in a JS cache (in-memory cache).\nChoose `web-cache-api` to cache icons using the Web Cache API.\n\nNOTE: `cache-name` must be provided if `cache-strategy` is provided.\n\nIf not provided or invalid value provided, the icons will not be cached.",
11694
- "default": "undefined",
11695
- "attribute": "cache-strategy"
11696
- },
11697
- {
11698
- "kind": "field",
11699
- "name": "cacheName",
11700
- "type": {
11701
- "text": "string | undefined"
11702
- },
11703
- "description": "Icons Cache Name to use (cache strategy must be provided)\n\nIf provided, Icons inside the provider will be cached in the\ncache (determined by `cache-strategy`) with the provided name.\n\nNOTE: `cache-name` requires `cache-strategy` to be set.\n\nIf not provided, the icons will not be cached.",
11704
- "default": "undefined",
11705
- "attribute": "cache-name"
11706
- },
11707
- {
11708
- "kind": "method",
11709
- "name": "updateValuesInContext",
11710
- "privacy": "private"
11711
- },
11712
- {
11713
- "kind": "method",
11714
- "name": "updateContext",
11715
- "privacy": "protected",
11716
- "return": {
11717
- "type": {
11718
- "text": "void"
11719
- }
11720
- }
11721
- }
11722
- ],
11723
- "attributes": [
11724
- {
11725
- "name": "icon-set",
11726
- "type": {
11727
- "text": "IconSet | undefined"
11728
- },
11729
- "description": "Icon set to be used\n\nIf `momentum-icons` is selected, the icons will be fetched from the\nMomentum Design System icon set per a dynamic JS Import (no need to provide a URL).\nThis requires the consumer to have the `@momentum-designs` package installed and the\nbuild tooling needs to support dynamic imports.\n\nIf `custom-icons` is selected, the icons will be fetched from the provided URL.\nThis requires the consumer to provide a URL from which the icons will be fetched and\nthe consumer needs to make sure to bundle the icons in the application.",
11730
- "default": "momentum-icons",
11731
- "fieldName": "iconSet"
11732
- },
11733
- {
11734
- "name": "url",
11735
- "type": {
11736
- "text": "string | undefined"
11737
- },
11738
- "description": "Url of where icons will be fetched from\n(if Icon set is `custom-icons`, this will be the base url)",
11739
- "fieldName": "url"
11740
- },
11741
- {
11742
- "name": "file-extension",
11743
- "type": {
11744
- "text": "string | undefined"
11745
- },
11746
- "description": "File extension of icons\n(if Icon set is `custom-icons`, this will be the file extension for icons)",
11747
- "default": "svg",
11748
- "fieldName": "fileExtension"
11749
- },
11750
- {
11751
- "name": "length-unit",
11752
- "type": {
11753
- "text": "string"
11754
- },
11755
- "description": "Length unit used for sizing of icons",
11756
- "default": "em",
11757
- "fieldName": "lengthUnit"
11758
- },
11759
- {
11760
- "name": "size",
11761
- "type": {
11762
- "text": "number | undefined"
11763
- },
11764
- "description": "The default size of the icon.\nIf not set, it falls back to the size defined by the length unit.",
11765
- "default": "1",
11766
- "fieldName": "size"
11767
- },
11768
- {
11769
- "name": "cache-strategy",
11770
- "type": {
11771
- "text": "CacheStrategy | undefined"
11772
- },
11773
- "description": "Icons Cache Strategy to use\n\n**Can only be used if Icon set is `custom-icons`**\n\nChoose `in-memory-cache` to cache icons in a JS cache (in-memory cache).\nChoose `web-cache-api` to cache icons using the Web Cache API.\n\nNOTE: `cache-name` must be provided if `cache-strategy` is provided.\n\nIf not provided or invalid value provided, the icons will not be cached.",
11774
- "default": "undefined",
11775
- "fieldName": "cacheStrategy"
11776
- },
11777
- {
11778
- "name": "cache-name",
11779
- "type": {
11780
- "text": "string | undefined"
11781
- },
11782
- "description": "Icons Cache Name to use (cache strategy must be provided)\n\nIf provided, Icons inside the provider will be cached in the\ncache (determined by `cache-strategy`) with the provided name.\n\nNOTE: `cache-name` requires `cache-strategy` to be set.\n\nIf not provided, the icons will not be cached.",
11783
- "default": "undefined",
11784
- "fieldName": "cacheName"
11785
- }
11786
- ],
11787
- "superclass": {
11788
- "name": "Provider",
11789
- "module": "/src/models"
11790
- },
11791
- "tagName": "mdc-iconprovider",
11792
- "jsDoc": "/**\n * IconProvider component, which allows to be consumed from sub components\n * (see `providerUtils.consume` for how to consume)\n *\n * Attribute `iconSet` can be set to either `momentum-icons` or `custom-icons`.\n * If `momentum-icons` is selected, the icons will be fetched from the\n * Momentum Design System icon set per a dynamic JS Import (no need to provide a URL).\n * This requires the consumer to have the `@momentum-designs` package installed and the\n * build tooling needs to support dynamic imports.\n *\n * If `custom-icons` is selected, the icons will be fetched from the provided URL.\n * This requires the consumer to provide a URL from which the icons will be fetched and\n * the consumer needs to make sure to bundle the icons in the application.\n *\n * If `cacheStrategy` is provided (only works with iconSet = `custom-icons`), the\n * IconProvider will cache the icons in the selected cache (either web-api-cache or in-memory-cache),\n * to avoid fetching the same icon multiple times over the network.\n * This is useful when the same icon is used multiple times in the application.\n * To consider:\n * - The `in-memory-cache` is not persisted and will be lost when the\n * IconProvider is removed from the DOM.\n * - The `web-api-cache` is persisted, but only works in https environments\n * (https://developer.mozilla.org/en-US/docs/Web/API/Cache).\n *\n * @tagname mdc-iconprovider\n *\n * @slot - children\n */",
11793
- "customElement": true
11794
- }
11795
- ],
11796
- "exports": [
11797
- {
11798
- "kind": "js",
11799
- "name": "default",
11800
- "declaration": {
11801
- "name": "IconProvider",
11802
- "module": "components/iconprovider/iconprovider.component.js"
11803
- }
11804
- }
11805
- ]
11806
- },
11807
11615
  {
11808
11616
  "kind": "javascript-module",
11809
11617
  "path": "components/input/input.component.js",
@@ -12755,64 +12563,260 @@
12755
12563
  },
12756
12564
  {
12757
12565
  "kind": "javascript-module",
12758
- "path": "components/inputchip/inputchip.component.js",
12566
+ "path": "components/iconprovider/iconprovider.component.js",
12759
12567
  "declarations": [
12760
12568
  {
12761
12569
  "kind": "class",
12762
- "description": "mdc-inputchip component is an interactive chip that consumers can use to represent an input.\n\n- It supports a leading icon along with label.\n- It supports an error state for validation.\n- It supports a close button to remove the chip.",
12763
- "name": "InputChip",
12764
- "cssProperties": [
12765
- {
12766
- "description": "The color of the chip.",
12767
- "name": "--mdc-chip-color"
12768
- },
12769
- {
12770
- "description": "The border color of the chip.",
12771
- "name": "--mdc-chip-border-color"
12772
- },
12570
+ "description": "IconProvider component, which allows to be consumed from sub components\n(see `providerUtils.consume` for how to consume)\n\nAttribute `iconSet` can be set to either `momentum-icons` or `custom-icons`.\nIf `momentum-icons` is selected, the icons will be fetched from the\nMomentum Design System icon set per a dynamic JS Import (no need to provide a URL).\nThis requires the consumer to have the `@momentum-designs` package installed and the\nbuild tooling needs to support dynamic imports.\n\nIf `custom-icons` is selected, the icons will be fetched from the provided URL.\nThis requires the consumer to provide a URL from which the icons will be fetched and\nthe consumer needs to make sure to bundle the icons in the application.\n\nIf `cacheStrategy` is provided (only works with iconSet = `custom-icons`), the\nIconProvider will cache the icons in the selected cache (either web-api-cache or in-memory-cache),\nto avoid fetching the same icon multiple times over the network.\nThis is useful when the same icon is used multiple times in the application.\nTo consider:\n- The `in-memory-cache` is not persisted and will be lost when the\nIconProvider is removed from the DOM.\n- The `web-api-cache` is persisted, but only works in https environments\n(https://developer.mozilla.org/en-US/docs/Web/API/Cache).",
12571
+ "name": "IconProvider",
12572
+ "slots": [
12773
12573
  {
12774
- "description": "The background color of the chip.",
12775
- "name": "--mdc-chip-background-color"
12574
+ "description": "children",
12575
+ "name": ""
12776
12576
  }
12777
12577
  ],
12778
12578
  "members": [
12779
12579
  {
12780
12580
  "kind": "field",
12781
- "name": "label",
12782
- "type": {
12783
- "text": "string"
12784
- },
12785
- "default": "''",
12786
- "description": "The label of the inputchip.\n\nWe recommend limiting the <b>maximum length of the label text to 20 characters</b>,\nincluding empty spaces to split words.",
12787
- "attribute": "label"
12581
+ "name": "Context",
12582
+ "privacy": "public",
12583
+ "static": true,
12584
+ "description": "Context object of the IconProvider, to be consumed by child components",
12585
+ "readonly": true
12788
12586
  },
12789
12587
  {
12790
12588
  "kind": "field",
12791
- "name": "error",
12589
+ "name": "iconSet",
12792
12590
  "type": {
12793
- "text": "boolean"
12591
+ "text": "IconSet | undefined"
12794
12592
  },
12795
- "default": "false",
12796
- "description": "The error state of the inputchip.",
12797
- "attribute": "error"
12593
+ "description": "Icon set to be used\n\nIf `momentum-icons` is selected, the icons will be fetched from the\nMomentum Design System icon set per a dynamic JS Import (no need to provide a URL).\nThis requires the consumer to have the `@momentum-designs` package installed and the\nbuild tooling needs to support dynamic imports.\n\nIf `custom-icons` is selected, the icons will be fetched from the provided URL.\nThis requires the consumer to provide a URL from which the icons will be fetched and\nthe consumer needs to make sure to bundle the icons in the application.",
12594
+ "default": "momentum-icons",
12595
+ "attribute": "icon-set",
12596
+ "reflects": true
12798
12597
  },
12799
12598
  {
12800
12599
  "kind": "field",
12801
- "name": "clearAriaLabel",
12600
+ "name": "url",
12802
12601
  "type": {
12803
- "text": "string"
12602
+ "text": "string | undefined"
12804
12603
  },
12805
- "default": "''",
12806
- "description": "The aria-label of the close button.",
12807
- "attribute": "clear-aria-label"
12604
+ "description": "Url of where icons will be fetched from\n(if Icon set is `custom-icons`, this will be the base url)",
12605
+ "attribute": "url"
12808
12606
  },
12809
12607
  {
12810
- "kind": "method",
12811
- "name": "renderIcon",
12812
- "privacy": "private",
12813
- "description": "Renders the icon element if available.",
12814
- "return": {
12815
- "type": {
12608
+ "kind": "field",
12609
+ "name": "fileExtension",
12610
+ "type": {
12611
+ "text": "string | undefined"
12612
+ },
12613
+ "description": "File extension of icons\n(if Icon set is `custom-icons`, this will be the file extension for icons)",
12614
+ "default": "svg",
12615
+ "attribute": "file-extension",
12616
+ "reflects": true
12617
+ },
12618
+ {
12619
+ "kind": "field",
12620
+ "name": "lengthUnit",
12621
+ "type": {
12622
+ "text": "string"
12623
+ },
12624
+ "description": "Length unit used for sizing of icons",
12625
+ "default": "em",
12626
+ "attribute": "length-unit",
12627
+ "reflects": true
12628
+ },
12629
+ {
12630
+ "kind": "field",
12631
+ "name": "size",
12632
+ "type": {
12633
+ "text": "number | undefined"
12634
+ },
12635
+ "description": "The default size of the icon.\nIf not set, it falls back to the size defined by the length unit.",
12636
+ "default": "1",
12637
+ "attribute": "size",
12638
+ "reflects": true
12639
+ },
12640
+ {
12641
+ "kind": "field",
12642
+ "name": "cacheStrategy",
12643
+ "type": {
12644
+ "text": "CacheStrategy | undefined"
12645
+ },
12646
+ "description": "Icons Cache Strategy to use\n\n**Can only be used if Icon set is `custom-icons`**\n\nChoose `in-memory-cache` to cache icons in a JS cache (in-memory cache).\nChoose `web-cache-api` to cache icons using the Web Cache API.\n\nNOTE: `cache-name` must be provided if `cache-strategy` is provided.\n\nIf not provided or invalid value provided, the icons will not be cached.",
12647
+ "default": "undefined",
12648
+ "attribute": "cache-strategy"
12649
+ },
12650
+ {
12651
+ "kind": "field",
12652
+ "name": "cacheName",
12653
+ "type": {
12654
+ "text": "string | undefined"
12655
+ },
12656
+ "description": "Icons Cache Name to use (cache strategy must be provided)\n\nIf provided, Icons inside the provider will be cached in the\ncache (determined by `cache-strategy`) with the provided name.\n\nNOTE: `cache-name` requires `cache-strategy` to be set.\n\nIf not provided, the icons will not be cached.",
12657
+ "default": "undefined",
12658
+ "attribute": "cache-name"
12659
+ },
12660
+ {
12661
+ "kind": "method",
12662
+ "name": "updateValuesInContext",
12663
+ "privacy": "private"
12664
+ },
12665
+ {
12666
+ "kind": "method",
12667
+ "name": "updateContext",
12668
+ "privacy": "protected",
12669
+ "return": {
12670
+ "type": {
12671
+ "text": "void"
12672
+ }
12673
+ }
12674
+ }
12675
+ ],
12676
+ "attributes": [
12677
+ {
12678
+ "name": "icon-set",
12679
+ "type": {
12680
+ "text": "IconSet | undefined"
12681
+ },
12682
+ "description": "Icon set to be used\n\nIf `momentum-icons` is selected, the icons will be fetched from the\nMomentum Design System icon set per a dynamic JS Import (no need to provide a URL).\nThis requires the consumer to have the `@momentum-designs` package installed and the\nbuild tooling needs to support dynamic imports.\n\nIf `custom-icons` is selected, the icons will be fetched from the provided URL.\nThis requires the consumer to provide a URL from which the icons will be fetched and\nthe consumer needs to make sure to bundle the icons in the application.",
12683
+ "default": "momentum-icons",
12684
+ "fieldName": "iconSet"
12685
+ },
12686
+ {
12687
+ "name": "url",
12688
+ "type": {
12689
+ "text": "string | undefined"
12690
+ },
12691
+ "description": "Url of where icons will be fetched from\n(if Icon set is `custom-icons`, this will be the base url)",
12692
+ "fieldName": "url"
12693
+ },
12694
+ {
12695
+ "name": "file-extension",
12696
+ "type": {
12697
+ "text": "string | undefined"
12698
+ },
12699
+ "description": "File extension of icons\n(if Icon set is `custom-icons`, this will be the file extension for icons)",
12700
+ "default": "svg",
12701
+ "fieldName": "fileExtension"
12702
+ },
12703
+ {
12704
+ "name": "length-unit",
12705
+ "type": {
12706
+ "text": "string"
12707
+ },
12708
+ "description": "Length unit used for sizing of icons",
12709
+ "default": "em",
12710
+ "fieldName": "lengthUnit"
12711
+ },
12712
+ {
12713
+ "name": "size",
12714
+ "type": {
12715
+ "text": "number | undefined"
12716
+ },
12717
+ "description": "The default size of the icon.\nIf not set, it falls back to the size defined by the length unit.",
12718
+ "default": "1",
12719
+ "fieldName": "size"
12720
+ },
12721
+ {
12722
+ "name": "cache-strategy",
12723
+ "type": {
12724
+ "text": "CacheStrategy | undefined"
12725
+ },
12726
+ "description": "Icons Cache Strategy to use\n\n**Can only be used if Icon set is `custom-icons`**\n\nChoose `in-memory-cache` to cache icons in a JS cache (in-memory cache).\nChoose `web-cache-api` to cache icons using the Web Cache API.\n\nNOTE: `cache-name` must be provided if `cache-strategy` is provided.\n\nIf not provided or invalid value provided, the icons will not be cached.",
12727
+ "default": "undefined",
12728
+ "fieldName": "cacheStrategy"
12729
+ },
12730
+ {
12731
+ "name": "cache-name",
12732
+ "type": {
12733
+ "text": "string | undefined"
12734
+ },
12735
+ "description": "Icons Cache Name to use (cache strategy must be provided)\n\nIf provided, Icons inside the provider will be cached in the\ncache (determined by `cache-strategy`) with the provided name.\n\nNOTE: `cache-name` requires `cache-strategy` to be set.\n\nIf not provided, the icons will not be cached.",
12736
+ "default": "undefined",
12737
+ "fieldName": "cacheName"
12738
+ }
12739
+ ],
12740
+ "superclass": {
12741
+ "name": "Provider",
12742
+ "module": "/src/models"
12743
+ },
12744
+ "tagName": "mdc-iconprovider",
12745
+ "jsDoc": "/**\n * IconProvider component, which allows to be consumed from sub components\n * (see `providerUtils.consume` for how to consume)\n *\n * Attribute `iconSet` can be set to either `momentum-icons` or `custom-icons`.\n * If `momentum-icons` is selected, the icons will be fetched from the\n * Momentum Design System icon set per a dynamic JS Import (no need to provide a URL).\n * This requires the consumer to have the `@momentum-designs` package installed and the\n * build tooling needs to support dynamic imports.\n *\n * If `custom-icons` is selected, the icons will be fetched from the provided URL.\n * This requires the consumer to provide a URL from which the icons will be fetched and\n * the consumer needs to make sure to bundle the icons in the application.\n *\n * If `cacheStrategy` is provided (only works with iconSet = `custom-icons`), the\n * IconProvider will cache the icons in the selected cache (either web-api-cache or in-memory-cache),\n * to avoid fetching the same icon multiple times over the network.\n * This is useful when the same icon is used multiple times in the application.\n * To consider:\n * - The `in-memory-cache` is not persisted and will be lost when the\n * IconProvider is removed from the DOM.\n * - The `web-api-cache` is persisted, but only works in https environments\n * (https://developer.mozilla.org/en-US/docs/Web/API/Cache).\n *\n * @tagname mdc-iconprovider\n *\n * @slot - children\n */",
12746
+ "customElement": true
12747
+ }
12748
+ ],
12749
+ "exports": [
12750
+ {
12751
+ "kind": "js",
12752
+ "name": "default",
12753
+ "declaration": {
12754
+ "name": "IconProvider",
12755
+ "module": "components/iconprovider/iconprovider.component.js"
12756
+ }
12757
+ }
12758
+ ]
12759
+ },
12760
+ {
12761
+ "kind": "javascript-module",
12762
+ "path": "components/inputchip/inputchip.component.js",
12763
+ "declarations": [
12764
+ {
12765
+ "kind": "class",
12766
+ "description": "mdc-inputchip component is an interactive chip that consumers can use to represent an input.\n\n- It supports a leading icon along with label.\n- It supports an error state for validation.\n- It supports a close button to remove the chip.",
12767
+ "name": "InputChip",
12768
+ "cssProperties": [
12769
+ {
12770
+ "description": "The color of the chip.",
12771
+ "name": "--mdc-chip-color"
12772
+ },
12773
+ {
12774
+ "description": "The border color of the chip.",
12775
+ "name": "--mdc-chip-border-color"
12776
+ },
12777
+ {
12778
+ "description": "The background color of the chip.",
12779
+ "name": "--mdc-chip-background-color"
12780
+ }
12781
+ ],
12782
+ "members": [
12783
+ {
12784
+ "kind": "field",
12785
+ "name": "label",
12786
+ "type": {
12787
+ "text": "string"
12788
+ },
12789
+ "default": "''",
12790
+ "description": "The label of the inputchip.\n\nWe recommend limiting the <b>maximum length of the label text to 20 characters</b>,\nincluding empty spaces to split words.",
12791
+ "attribute": "label"
12792
+ },
12793
+ {
12794
+ "kind": "field",
12795
+ "name": "error",
12796
+ "type": {
12797
+ "text": "boolean"
12798
+ },
12799
+ "default": "false",
12800
+ "description": "The error state of the inputchip.",
12801
+ "attribute": "error"
12802
+ },
12803
+ {
12804
+ "kind": "field",
12805
+ "name": "clearAriaLabel",
12806
+ "type": {
12807
+ "text": "string"
12808
+ },
12809
+ "default": "''",
12810
+ "description": "The aria-label of the close button.",
12811
+ "attribute": "clear-aria-label"
12812
+ },
12813
+ {
12814
+ "kind": "method",
12815
+ "name": "renderIcon",
12816
+ "privacy": "private",
12817
+ "description": "Renders the icon element if available.",
12818
+ "return": {
12819
+ "type": {
12816
12820
  "text": ""
12817
12821
  }
12818
12822
  }
@@ -13857,51 +13861,122 @@
13857
13861
  },
13858
13862
  {
13859
13863
  "kind": "javascript-module",
13860
- "path": "components/listitem/listitem.component.js",
13864
+ "path": "components/marker/marker.component.js",
13861
13865
  "declarations": [
13862
13866
  {
13863
13867
  "kind": "class",
13864
- "description": "mdc-listitem component is used to display a label with different types of controls.\nThere can be three types of controls, a radio button, a checkbox on the\nleading side and a toggle on the trailing side.\nThe list item can contain an avatar on the leading side and a badge on the trailing side.\nAdditionally, the list item can contain a side header and a subline text.\n\nThe leading and trailing slots can be used to display controls and text. <br/>\nBased on the leading/trailing slot, the position of the controls and text can be adjusted. <br/>\nPlease use mdc-list as a parent element even when there is only listitem for a11y purpose.\n\nBy providing the tooltip-text attribute, a tooltip will be displayed on hover of the listitem.\nThe placement of the tooltip can be adjusted using the tooltip-placement attribute.\nThis will be helpful when the listitem text is truncated or\nwhen you want to display additional information about the listitem.",
13865
- "name": "ListItem",
13868
+ "description": "`mdc-marker`, which is a vertical line and\nused to draw attention to specific parts of\nthe content or to signify important information.\n\n**Marker Variants**:\n- **solid**: Solid marker.\n- **striped**: Striped marker.",
13869
+ "name": "Marker",
13866
13870
  "cssProperties": [
13867
13871
  {
13868
- "description": "Allows customization of the default background color.",
13869
- "name": "--mdc-listitem-default-background-color"
13870
- },
13871
- {
13872
- "description": "Allows customization of the background color on hover.",
13873
- "name": "--mdc-listitem-background-color-hover"
13874
- },
13875
- {
13876
- "description": "Allows customization of the background color when pressed.",
13877
- "name": "--mdc-listitem-background-color-active"
13878
- },
13879
- {
13880
- "description": "Allows customization of the primary label, side header and subline text slot color.",
13881
- "name": "--mdc-listitem-primary-label-color"
13882
- },
13883
- {
13884
- "description": "Allows customization of the secondary and tertiary label text slot color.",
13885
- "name": "--mdc-listitem-secondary-label-color"
13872
+ "description": "Allows customization of the default background color in solid variant.",
13873
+ "name": "--mdc-marker-solid-background-color"
13886
13874
  },
13887
13875
  {
13888
- "description": "Allows customization of the disabled color.",
13889
- "name": "--mdc-listitem-disabled-color"
13876
+ "description": "Allows customization of the default stripes in striped variant.",
13877
+ "name": "--mdc-marker-striped-color"
13890
13878
  },
13891
13879
  {
13892
- "description": "Allows customization of column gap.",
13893
- "name": "--mdc-listitem-column-gap"
13880
+ "description": "Allows customization of the default background color in striped variant.",
13881
+ "name": "--mdc-marker-striped-background-color"
13894
13882
  },
13895
13883
  {
13896
- "description": "Allows customization of padding left and right.",
13897
- "name": "--mdc-listitem-padding-left-and-right"
13884
+ "description": "Allows customization of the default width.",
13885
+ "name": "--mdc-marker-width"
13898
13886
  }
13899
13887
  ],
13900
- "slots": [
13901
- {
13902
- "description": "slot for list item controls to appear of leading end.",
13903
- "name": "leading-controls"
13904
- },
13888
+ "members": [
13889
+ {
13890
+ "kind": "field",
13891
+ "name": "variant",
13892
+ "type": {
13893
+ "text": "MarkerVariants"
13894
+ },
13895
+ "privacy": "public",
13896
+ "description": "There are two variants of markers, each with a width of 0.25rem:\n- **solid**: Solid marker.\n- **striped**: Striped marker.",
13897
+ "default": "solid",
13898
+ "attribute": "variant",
13899
+ "reflects": true
13900
+ }
13901
+ ],
13902
+ "attributes": [
13903
+ {
13904
+ "name": "variant",
13905
+ "type": {
13906
+ "text": "MarkerVariants"
13907
+ },
13908
+ "description": "There are two variants of markers, each with a width of 0.25rem:\n- **solid**: Solid marker.\n- **striped**: Striped marker.",
13909
+ "default": "solid",
13910
+ "fieldName": "variant"
13911
+ }
13912
+ ],
13913
+ "superclass": {
13914
+ "name": "Component",
13915
+ "module": "/src/models"
13916
+ },
13917
+ "tagName": "mdc-marker",
13918
+ "jsDoc": "/**\n * `mdc-marker`, which is a vertical line and\n * used to draw attention to specific parts of\n * the content or to signify important information.\n *\n * **Marker Variants**:\n * - **solid**: Solid marker.\n * - **striped**: Striped marker.\n *\n * @tagname mdc-marker\n *\n * @cssproperty --mdc-marker-solid-background-color - Allows customization of the default background color\n * in solid variant.\n * @cssproperty --mdc-marker-striped-color - Allows customization of the default stripes in striped variant.\n * @cssproperty --mdc-marker-striped-background-color - Allows customization of the default background color\n * in striped variant.\n * @cssproperty --mdc-marker-width - Allows customization of the default width.\n */",
13919
+ "customElement": true
13920
+ }
13921
+ ],
13922
+ "exports": [
13923
+ {
13924
+ "kind": "js",
13925
+ "name": "default",
13926
+ "declaration": {
13927
+ "name": "Marker",
13928
+ "module": "components/marker/marker.component.js"
13929
+ }
13930
+ }
13931
+ ]
13932
+ },
13933
+ {
13934
+ "kind": "javascript-module",
13935
+ "path": "components/listitem/listitem.component.js",
13936
+ "declarations": [
13937
+ {
13938
+ "kind": "class",
13939
+ "description": "mdc-listitem component is used to display a label with different types of controls.\nThere can be three types of controls, a radio button, a checkbox on the\nleading side and a toggle on the trailing side.\nThe list item can contain an avatar on the leading side and a badge on the trailing side.\nAdditionally, the list item can contain a side header and a subline text.\n\nThe leading and trailing slots can be used to display controls and text. <br/>\nBased on the leading/trailing slot, the position of the controls and text can be adjusted. <br/>\nPlease use mdc-list as a parent element even when there is only listitem for a11y purpose.\n\nBy providing the tooltip-text attribute, a tooltip will be displayed on hover of the listitem.\nThe placement of the tooltip can be adjusted using the tooltip-placement attribute.\nThis will be helpful when the listitem text is truncated or\nwhen you want to display additional information about the listitem.",
13940
+ "name": "ListItem",
13941
+ "cssProperties": [
13942
+ {
13943
+ "description": "Allows customization of the default background color.",
13944
+ "name": "--mdc-listitem-default-background-color"
13945
+ },
13946
+ {
13947
+ "description": "Allows customization of the background color on hover.",
13948
+ "name": "--mdc-listitem-background-color-hover"
13949
+ },
13950
+ {
13951
+ "description": "Allows customization of the background color when pressed.",
13952
+ "name": "--mdc-listitem-background-color-active"
13953
+ },
13954
+ {
13955
+ "description": "Allows customization of the primary label, side header and subline text slot color.",
13956
+ "name": "--mdc-listitem-primary-label-color"
13957
+ },
13958
+ {
13959
+ "description": "Allows customization of the secondary and tertiary label text slot color.",
13960
+ "name": "--mdc-listitem-secondary-label-color"
13961
+ },
13962
+ {
13963
+ "description": "Allows customization of the disabled color.",
13964
+ "name": "--mdc-listitem-disabled-color"
13965
+ },
13966
+ {
13967
+ "description": "Allows customization of column gap.",
13968
+ "name": "--mdc-listitem-column-gap"
13969
+ },
13970
+ {
13971
+ "description": "Allows customization of padding left and right.",
13972
+ "name": "--mdc-listitem-padding-left-and-right"
13973
+ }
13974
+ ],
13975
+ "slots": [
13976
+ {
13977
+ "description": "slot for list item controls to appear of leading end.",
13978
+ "name": "leading-controls"
13979
+ },
13905
13980
  {
13906
13981
  "description": "slot for list item primary label.",
13907
13982
  "name": "leading-text-primary-label"
@@ -14307,77 +14382,6 @@
14307
14382
  }
14308
14383
  ]
14309
14384
  },
14310
- {
14311
- "kind": "javascript-module",
14312
- "path": "components/marker/marker.component.js",
14313
- "declarations": [
14314
- {
14315
- "kind": "class",
14316
- "description": "`mdc-marker`, which is a vertical line and\nused to draw attention to specific parts of\nthe content or to signify important information.\n\n**Marker Variants**:\n- **solid**: Solid marker.\n- **striped**: Striped marker.",
14317
- "name": "Marker",
14318
- "cssProperties": [
14319
- {
14320
- "description": "Allows customization of the default background color in solid variant.",
14321
- "name": "--mdc-marker-solid-background-color"
14322
- },
14323
- {
14324
- "description": "Allows customization of the default stripes in striped variant.",
14325
- "name": "--mdc-marker-striped-color"
14326
- },
14327
- {
14328
- "description": "Allows customization of the default background color in striped variant.",
14329
- "name": "--mdc-marker-striped-background-color"
14330
- },
14331
- {
14332
- "description": "Allows customization of the default width.",
14333
- "name": "--mdc-marker-width"
14334
- }
14335
- ],
14336
- "members": [
14337
- {
14338
- "kind": "field",
14339
- "name": "variant",
14340
- "type": {
14341
- "text": "MarkerVariants"
14342
- },
14343
- "privacy": "public",
14344
- "description": "There are two variants of markers, each with a width of 0.25rem:\n- **solid**: Solid marker.\n- **striped**: Striped marker.",
14345
- "default": "solid",
14346
- "attribute": "variant",
14347
- "reflects": true
14348
- }
14349
- ],
14350
- "attributes": [
14351
- {
14352
- "name": "variant",
14353
- "type": {
14354
- "text": "MarkerVariants"
14355
- },
14356
- "description": "There are two variants of markers, each with a width of 0.25rem:\n- **solid**: Solid marker.\n- **striped**: Striped marker.",
14357
- "default": "solid",
14358
- "fieldName": "variant"
14359
- }
14360
- ],
14361
- "superclass": {
14362
- "name": "Component",
14363
- "module": "/src/models"
14364
- },
14365
- "tagName": "mdc-marker",
14366
- "jsDoc": "/**\n * `mdc-marker`, which is a vertical line and\n * used to draw attention to specific parts of\n * the content or to signify important information.\n *\n * **Marker Variants**:\n * - **solid**: Solid marker.\n * - **striped**: Striped marker.\n *\n * @tagname mdc-marker\n *\n * @cssproperty --mdc-marker-solid-background-color - Allows customization of the default background color\n * in solid variant.\n * @cssproperty --mdc-marker-striped-color - Allows customization of the default stripes in striped variant.\n * @cssproperty --mdc-marker-striped-background-color - Allows customization of the default background color\n * in striped variant.\n * @cssproperty --mdc-marker-width - Allows customization of the default width.\n */",
14367
- "customElement": true
14368
- }
14369
- ],
14370
- "exports": [
14371
- {
14372
- "kind": "js",
14373
- "name": "default",
14374
- "declaration": {
14375
- "name": "Marker",
14376
- "module": "components/marker/marker.component.js"
14377
- }
14378
- }
14379
- ]
14380
- },
14381
14385
  {
14382
14386
  "kind": "javascript-module",
14383
14387
  "path": "components/menu/menu.component.js",
@@ -22532,244 +22536,356 @@
22532
22536
  },
22533
22537
  {
22534
22538
  "kind": "javascript-module",
22535
- "path": "components/progressspinner/progressspinner.component.js",
22539
+ "path": "components/radio/radio.component.js",
22536
22540
  "declarations": [
22537
22541
  {
22538
22542
  "kind": "class",
22539
- "description": "`mdc-progressspinner` is a customizable, circular progress indicator component.\nIt visually represents the current completion state of a process, such as loading,\nsyncing, uploading, or any ongoing task that has a measurable percentage.\n\nThe spinner is built using SVG with two concentric `<circle>` elements:\n- The `progress` arc represents the portion of work completed.\n- The `track` arc represents the remaining part.\n\nA visual gap is maintained between the progress and track arcs to clearly\ndistinguish the two segments. The component smoothly animates arc length\nand respects accessibility best practices with ARIA attributes.\n\nThe component supports different states:\n- **Default**: Circular spinner shows the progress.\n- **Success**: Displays a checkmark icon when progress reaches 100%.\n- **Error**: Displays an error icon when in an error state.",
22540
- "name": "Progressspinner",
22543
+ "description": "Radio allow users to select single options from a list or turn an item/feature on or off.\nThese are often used in forms, settings, and selection in lists.\n\nA radio component contains an optional label, optional info icon and an optional helper text.",
22544
+ "name": "Radio",
22541
22545
  "cssProperties": [
22542
22546
  {
22543
- "description": "The size of the spinner.",
22544
- "name": "--mdc-spinner-size"
22547
+ "description": "color of the label when disabled",
22548
+ "name": "--mdc-radio-text-disabled-color"
22545
22549
  },
22546
22550
  {
22547
- "description": "The color of the spinner track.",
22548
- "name": "--mdc-track-color"
22551
+ "description": "color of the radio button when inactive and hovered",
22552
+ "name": "--mdc-radio-control-inactive-hover"
22549
22553
  },
22550
22554
  {
22551
- "description": "The color of the spinner progress.",
22552
- "name": "--mdc-progress-color"
22555
+ "description": "color of the radio button when inactive and pressed",
22556
+ "name": "--mdc-radio-control-inactive-pressed-color"
22553
22557
  },
22554
22558
  {
22555
- "description": "The color of the spinner when in success state.",
22556
- "name": "--mdc-progress-success-color"
22559
+ "description": "color of the radio button when active and hovered",
22560
+ "name": "--mdc-radio-control-active-hover-color"
22557
22561
  },
22558
22562
  {
22559
- "description": "The color of the spinner when in error state.",
22560
- "name": "--mdc-progress-error-color"
22563
+ "description": "color of the radio button when active and pressed",
22564
+ "name": "--mdc-radio-control-active-pressed-color"
22561
22565
  },
22562
22566
  {
22563
- "description": "Background color of the progressbar when inactive.",
22564
- "name": "--mdc-progressbar-default-background-color",
22565
- "inheritedFrom": {
22566
- "name": "Progressbar",
22567
- "module": "src/components/progressbar/progressbar.component.ts"
22568
- }
22567
+ "description": "color of the radio button when disabled",
22568
+ "name": "--mdc-radio-disabled-border-color"
22569
22569
  },
22570
22570
  {
22571
- "description": "Background color of the progressbar when active.",
22572
- "name": "--mdc-progressbar-default-active-background-color",
22573
- "inheritedFrom": {
22574
- "name": "Progressbar",
22575
- "module": "src/components/progressbar/progressbar.component.ts"
22576
- }
22571
+ "description": "color of the radio button when active and disabled",
22572
+ "name": "--mdc-radio-control-active-disabled-background"
22577
22573
  },
22578
22574
  {
22579
- "description": "Background color of the progressbar when in success state.",
22580
- "name": "--mdc-progressbar-success-background-color",
22581
- "inheritedFrom": {
22582
- "name": "Progressbar",
22583
- "module": "src/components/progressbar/progressbar.component.ts"
22584
- }
22575
+ "description": "color of the radio button when inactive and disabled",
22576
+ "name": "--mdc-radio-control-inactive-disabled-background"
22577
+ }
22578
+ ],
22579
+ "members": [
22580
+ {
22581
+ "kind": "field",
22582
+ "name": "checked",
22583
+ "type": {
22584
+ "text": "boolean"
22585
+ },
22586
+ "default": "false",
22587
+ "description": "Determines whether the radio is selected or unselected.",
22588
+ "attribute": "checked",
22589
+ "reflects": true
22585
22590
  },
22586
22591
  {
22587
- "description": "Background color of the progressbar when in error state.",
22588
- "name": "--mdc-progressbar-error-background-color",
22589
- "inheritedFrom": {
22590
- "name": "Progressbar",
22591
- "module": "src/components/progressbar/progressbar.component.ts"
22592
- }
22592
+ "kind": "field",
22593
+ "name": "readonly",
22594
+ "type": {
22595
+ "text": "boolean"
22596
+ },
22597
+ "default": "false",
22598
+ "description": "Determines whether the radio is read-only.",
22599
+ "attribute": "readonly",
22600
+ "reflects": true
22593
22601
  },
22594
22602
  {
22595
- "description": "The height of the progressbar.",
22596
- "name": "--mdc-progressbar-height",
22597
- "inheritedFrom": {
22598
- "name": "Progressbar",
22599
- "module": "src/components/progressbar/progressbar.component.ts"
22600
- }
22603
+ "kind": "field",
22604
+ "name": "autofocus",
22605
+ "type": {
22606
+ "text": "boolean"
22607
+ },
22608
+ "default": "false",
22609
+ "description": "Automatically focus on the element when the page loads.\n[MDN Reference](https://developer.mozilla.org/en-US/docs/Web/HTML/Global_attributes/autofocus)",
22610
+ "attribute": "autofocus",
22611
+ "reflects": true
22601
22612
  },
22602
22613
  {
22603
- "description": "The border radius of the progressbar.",
22604
- "name": "--mdc-progressbar-border-radius",
22605
- "inheritedFrom": {
22606
- "name": "Progressbar",
22607
- "module": "src/components/progressbar/progressbar.component.ts"
22608
- }
22614
+ "kind": "method",
22615
+ "name": "getAllRadiosWithinSameGroup",
22616
+ "privacy": "private",
22617
+ "return": {
22618
+ "type": {
22619
+ "text": "Radio[]"
22620
+ }
22621
+ },
22622
+ "description": "Returns all radios within the same group (name)."
22609
22623
  },
22610
22624
  {
22611
- "description": "Color of the progressbar label text.",
22612
- "name": "--mdc-progressbar-label-color",
22613
- "inheritedFrom": {
22614
- "name": "Progressbar",
22615
- "module": "src/components/progressbar/progressbar.component.ts"
22616
- }
22625
+ "kind": "method",
22626
+ "name": "dispatchChangeEvent",
22627
+ "privacy": "private",
22628
+ "return": {
22629
+ "type": {
22630
+ "text": "void"
22631
+ }
22632
+ },
22633
+ "parameters": [
22634
+ {
22635
+ "name": "event",
22636
+ "type": {
22637
+ "text": "Event"
22638
+ }
22639
+ }
22640
+ ],
22641
+ "description": "The '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"
22617
22642
  },
22618
22643
  {
22619
- "description": "Line height of the label text.",
22620
- "name": "--mdc-progressbar-label-lineheight",
22621
- "inheritedFrom": {
22622
- "name": "Progressbar",
22623
- "module": "src/components/progressbar/progressbar.component.ts"
22624
- }
22644
+ "kind": "method",
22645
+ "name": "setGroupValidity",
22646
+ "privacy": "private",
22647
+ "parameters": [
22648
+ {
22649
+ "name": "radios",
22650
+ "type": {
22651
+ "text": "Radio[]"
22652
+ },
22653
+ "description": "Array of radios of the same group"
22654
+ },
22655
+ {
22656
+ "name": "isValid",
22657
+ "type": {
22658
+ "text": "boolean"
22659
+ },
22660
+ "description": "Boolean value to set the validity of the group"
22661
+ }
22662
+ ],
22663
+ "description": "Sets the validity of the group of radios."
22625
22664
  },
22626
22665
  {
22627
- "description": "Font size of the label text.",
22628
- "name": "--mdc-progressbar-label-fontsize",
22629
- "inheritedFrom": {
22630
- "name": "Progressbar",
22631
- "module": "src/components/progressbar/progressbar.component.ts"
22632
- }
22666
+ "kind": "method",
22667
+ "name": "setActualFormValue",
22668
+ "privacy": "private",
22669
+ "description": "Updates the form value to reflect the current state of the radio.\nIf checked, the value is set to the user-provided value.\nIf unchecked, the value is set to null."
22633
22670
  },
22634
22671
  {
22635
- "description": "Font weight of the label text.",
22636
- "name": "--mdc-progressbar-label-fontweight",
22637
- "inheritedFrom": {
22638
- "name": "Progressbar",
22639
- "module": "src/components/progressbar/progressbar.component.ts"
22640
- }
22672
+ "kind": "method",
22673
+ "name": "handleChange",
22674
+ "privacy": "private",
22675
+ "return": {
22676
+ "type": {
22677
+ "text": "void"
22678
+ }
22679
+ },
22680
+ "parameters": [
22681
+ {
22682
+ "name": "event",
22683
+ "type": {
22684
+ "text": "Event"
22685
+ }
22686
+ }
22687
+ ],
22688
+ "description": "Handles the change event on the radio element.\nThis will toggle the state of the radio element.\nDispatches the change event."
22641
22689
  },
22642
- {
22643
- "description": "Color of the help text.",
22644
- "name": "--mdc-progressbar-help-text-color",
22645
- "inheritedFrom": {
22646
- "name": "Progressbar",
22647
- "module": "src/components/progressbar/progressbar.component.ts"
22648
- }
22649
- }
22650
- ],
22651
- "members": [
22652
22690
  {
22653
22691
  "kind": "method",
22654
- "name": "renderProgressSpinner",
22655
- "privacy": "private"
22692
+ "name": "updateRadio",
22693
+ "privacy": "private",
22694
+ "parameters": [
22695
+ {
22696
+ "name": "enabledRadios",
22697
+ "type": {
22698
+ "text": "Radio[]"
22699
+ },
22700
+ "description": "An array of enabled radio buttons within the same group."
22701
+ },
22702
+ {
22703
+ "name": "index",
22704
+ "type": {
22705
+ "text": "number"
22706
+ },
22707
+ "description": "The index of the radio button to be updated within the enabled radios array."
22708
+ },
22709
+ {
22710
+ "name": "event",
22711
+ "type": {
22712
+ "text": "Event"
22713
+ },
22714
+ "description": "The event that triggered the update."
22715
+ }
22716
+ ],
22717
+ "description": "Updates the state of the radio button at the specified index within the enabled radios.\nFocuses the radio button and triggers the change event if the radio button is not read-only."
22656
22718
  },
22657
22719
  {
22658
22720
  "kind": "method",
22659
- "name": "renderErrorState",
22721
+ "name": "handleKeyDown",
22660
22722
  "privacy": "private",
22661
- "description": "Renders the error state of the progress spinner.",
22662
22723
  "return": {
22663
22724
  "type": {
22664
- "text": ""
22725
+ "text": "void"
22665
22726
  }
22666
- }
22727
+ },
22728
+ "parameters": [
22729
+ {
22730
+ "name": "event",
22731
+ "type": {
22732
+ "text": "KeyboardEvent"
22733
+ }
22734
+ }
22735
+ ],
22736
+ "description": "Handles the keydown event (Arrow Up/Down/Left/Right) on the radio element."
22667
22737
  },
22668
22738
  {
22669
22739
  "kind": "method",
22670
- "name": "renderSuccessState",
22740
+ "name": "updateTabIndex",
22671
22741
  "privacy": "private",
22672
- "description": "Renders the success state of the progress spinner.",
22673
22742
  "return": {
22674
22743
  "type": {
22675
- "text": ""
22744
+ "text": "void"
22676
22745
  }
22677
- }
22746
+ },
22747
+ "description": "Update tab index for all radios in the same group (name)\nIf any radio group is checked, it will have a tab index of 0\nIf no radio group is checked, the first enabled radio will have a tab index of 0"
22678
22748
  },
22679
22749
  {
22680
22750
  "kind": "field",
22681
- "name": "dataAriaLabel",
22751
+ "name": "renderLabelAndHelperText",
22752
+ "privacy": "private"
22753
+ },
22754
+ {
22755
+ "kind": "field",
22756
+ "name": "name",
22682
22757
  "type": {
22683
- "text": "string | null"
22758
+ "text": "string"
22684
22759
  },
22685
- "default": "null",
22686
- "description": "Defines a string value that labels the current element.\nThe Aria-Label attribute to be set for accessibility.",
22687
- "attribute": "data-aria-label",
22760
+ "default": "''",
22761
+ "description": "Indicates the name of the component group.\nThey are used to group elements in a form together.",
22762
+ "attribute": "name",
22688
22763
  "reflects": true,
22689
22764
  "inheritedFrom": {
22690
- "name": "DataAriaLabelMixin",
22691
- "module": "utils/mixins/DataAriaLabelMixin.js"
22765
+ "name": "FormInternalsMixin",
22766
+ "module": "utils/mixins/FormInternalsMixin.js"
22692
22767
  }
22693
22768
  },
22694
22769
  {
22695
22770
  "kind": "field",
22696
- "name": "variant",
22771
+ "name": "value",
22697
22772
  "type": {
22698
- "text": "Variant"
22773
+ "text": "string"
22699
22774
  },
22700
- "description": "Types of the progressbar\n- **Default**\n- **Inline**",
22701
- "default": "default",
22702
- "attribute": "variant",
22775
+ "default": "''",
22776
+ "description": "Indicates the value of the component group (ex: input, checkbox, radio, select etc...)",
22777
+ "attribute": "value",
22703
22778
  "reflects": true,
22704
22779
  "inheritedFrom": {
22705
- "name": "Progressbar",
22706
- "module": "components/progressbar/progressbar.component.js"
22780
+ "name": "FormInternalsMixin",
22781
+ "module": "utils/mixins/FormInternalsMixin.js"
22707
22782
  }
22708
22783
  },
22709
22784
  {
22710
22785
  "kind": "field",
22711
- "name": "value",
22786
+ "name": "validationMessage",
22712
22787
  "type": {
22713
- "text": "string"
22788
+ "text": "string | undefined"
22714
22789
  },
22715
- "default": "'0'",
22716
- "description": "The current progress as a percentage, 0 to 100.\nThe value will be clamped between 0 and 100.",
22717
- "attribute": "value",
22790
+ "description": "Custom validation message that will override the default message and displayed when the input is invalid.",
22791
+ "attribute": "validation-message",
22718
22792
  "reflects": true,
22719
22793
  "inheritedFrom": {
22720
- "name": "Progressbar",
22721
- "module": "components/progressbar/progressbar.component.js"
22794
+ "name": "FormInternalsMixin",
22795
+ "module": "utils/mixins/FormInternalsMixin.js"
22722
22796
  }
22723
22797
  },
22724
22798
  {
22725
22799
  "kind": "field",
22726
- "name": "error",
22800
+ "name": "validity",
22727
22801
  "type": {
22728
- "text": "boolean"
22802
+ "text": "ValidityState"
22729
22803
  },
22730
- "default": "false",
22731
- "description": "Define error state of the progressbar\n- **true**\n- **false**",
22732
- "attribute": "error",
22804
+ "readonly": true,
22733
22805
  "inheritedFrom": {
22734
- "name": "Progressbar",
22735
- "module": "components/progressbar/progressbar.component.js"
22806
+ "name": "FormInternalsMixin",
22807
+ "module": "utils/mixins/FormInternalsMixin.js"
22808
+ }
22809
+ },
22810
+ {
22811
+ "kind": "field",
22812
+ "name": "willValidate",
22813
+ "readonly": true,
22814
+ "inheritedFrom": {
22815
+ "name": "FormInternalsMixin",
22816
+ "module": "utils/mixins/FormInternalsMixin.js"
22736
22817
  }
22737
22818
  },
22738
22819
  {
22739
22820
  "kind": "method",
22740
- "name": "getValidationVariant",
22741
- "privacy": "private",
22742
- "description": "Determines the validation state (success, error, or default) based on progress value and error state.",
22821
+ "name": "setValidity",
22822
+ "description": "Sets the validity of the input field based on the input field's validity.",
22743
22823
  "return": {
22744
22824
  "type": {
22745
22825
  "text": ""
22746
22826
  }
22747
22827
  },
22748
22828
  "inheritedFrom": {
22749
- "name": "Progressbar",
22750
- "module": "components/progressbar/progressbar.component.js"
22829
+ "name": "FormInternalsMixin",
22830
+ "module": "utils/mixins/FormInternalsMixin.js"
22751
22831
  }
22752
22832
  },
22753
22833
  {
22754
- "kind": "field",
22755
- "name": "disabled",
22756
- "type": {
22757
- "text": "boolean | undefined"
22834
+ "kind": "method",
22835
+ "name": "checkValidity",
22836
+ "return": {
22837
+ "type": {
22838
+ "text": "boolean"
22839
+ }
22758
22840
  },
22759
- "description": "Indicates whether the component is disabled.\nWhen the component is disabled for user interaction; it is not focusable or clickable.",
22760
- "default": "undefined",
22761
- "attribute": "disabled",
22762
- "reflects": true,
22763
22841
  "inheritedFrom": {
22764
- "name": "FormfieldWrapper",
22765
- "module": "components/formfieldwrapper/formfieldwrapper.component.js"
22842
+ "name": "FormInternalsMixin",
22843
+ "module": "utils/mixins/FormInternalsMixin.js"
22766
22844
  }
22767
22845
  },
22768
22846
  {
22769
- "kind": "field",
22770
- "name": "label",
22771
- "type": {
22772
- "text": "string | undefined"
22847
+ "kind": "method",
22848
+ "name": "reportValidity",
22849
+ "inheritedFrom": {
22850
+ "name": "FormInternalsMixin",
22851
+ "module": "utils/mixins/FormInternalsMixin.js"
22852
+ }
22853
+ },
22854
+ {
22855
+ "kind": "field",
22856
+ "name": "dataAriaLabel",
22857
+ "type": {
22858
+ "text": "string | null"
22859
+ },
22860
+ "default": "null",
22861
+ "description": "Defines a string value that labels the current element.\nThe Aria-Label attribute to be set for accessibility.",
22862
+ "attribute": "data-aria-label",
22863
+ "reflects": true,
22864
+ "inheritedFrom": {
22865
+ "name": "DataAriaLabelMixin",
22866
+ "module": "utils/mixins/DataAriaLabelMixin.js"
22867
+ }
22868
+ },
22869
+ {
22870
+ "kind": "field",
22871
+ "name": "disabled",
22872
+ "type": {
22873
+ "text": "boolean | undefined"
22874
+ },
22875
+ "description": "Indicates whether the component is disabled.\nWhen the component is disabled for user interaction; it is not focusable or clickable.",
22876
+ "default": "undefined",
22877
+ "attribute": "disabled",
22878
+ "reflects": true,
22879
+ "inheritedFrom": {
22880
+ "name": "FormfieldWrapper",
22881
+ "module": "components/formfieldwrapper/formfieldwrapper.component.js"
22882
+ }
22883
+ },
22884
+ {
22885
+ "kind": "field",
22886
+ "name": "label",
22887
+ "type": {
22888
+ "text": "string | undefined"
22773
22889
  },
22774
22890
  "description": "The label of the input field. It is linked to the input field using the `for` attribute.",
22775
22891
  "attribute": "label",
@@ -22920,38 +23036,62 @@
22920
23036
  }
22921
23037
  }
22922
23038
  ],
22923
- "superclass": {
22924
- "name": "Progressbar",
22925
- "module": "/src/components/progressbar/progressbar.component"
22926
- },
22927
- "tagName": "mdc-progressspinner",
22928
- "jsDoc": "/**\n * `mdc-progressspinner` is a customizable, circular progress indicator component.\n * It visually represents the current completion state of a process, such as loading,\n * syncing, uploading, or any ongoing task that has a measurable percentage.\n *\n * The spinner is built using SVG with two concentric `<circle>` elements:\n * - The `progress` arc represents the portion of work completed.\n * - The `track` arc represents the remaining part.\n *\n * A visual gap is maintained between the progress and track arcs to clearly\n * distinguish the two segments. The component smoothly animates arc length\n * and respects accessibility best practices with ARIA attributes.\n *\n * The component supports different states:\n * - **Default**: Circular spinner shows the progress.\n * - **Success**: Displays a checkmark icon when progress reaches 100%.\n * - **Error**: Displays an error icon when in an error state.\n *\n * @tagname mdc-progressspinner\n *\n * @cssproperty --mdc-spinner-size - The size of the spinner.\n * @cssproperty --mdc-track-color - The color of the spinner track.\n * @cssproperty --mdc-progress-color - The color of the spinner progress.\n * @cssproperty --mdc-progress-success-color - The color of the spinner when in success state.\n * @cssproperty --mdc-progress-error-color - The color of the spinner when in error state.\n *\n */",
22929
- "customElement": true,
23039
+ "events": [
23040
+ {
23041
+ "type": {
23042
+ "text": "EventConstructor"
23043
+ }
23044
+ },
23045
+ {
23046
+ "description": "(React: onChange) Event that gets dispatched when the radio state changes.",
23047
+ "name": "change",
23048
+ "reactName": "onChange"
23049
+ },
23050
+ {
23051
+ "description": "(React: onFocus) Event that gets dispatched when the radio receives focus.",
23052
+ "name": "focus",
23053
+ "reactName": "onFocus"
23054
+ }
23055
+ ],
22930
23056
  "attributes": [
22931
23057
  {
22932
- "name": "data-aria-label",
23058
+ "name": "checked",
22933
23059
  "type": {
22934
- "text": "string | null"
23060
+ "text": "boolean"
22935
23061
  },
22936
- "default": "null",
22937
- "description": "Defines a string value that labels the current element.\nThe Aria-Label attribute to be set for accessibility.",
22938
- "fieldName": "dataAriaLabel",
22939
- "inheritedFrom": {
22940
- "name": "DataAriaLabelMixin",
22941
- "module": "src/utils/mixins/DataAriaLabelMixin.ts"
22942
- }
23062
+ "default": "false",
23063
+ "description": "Determines whether the radio is selected or unselected.",
23064
+ "fieldName": "checked"
22943
23065
  },
22944
23066
  {
22945
- "name": "variant",
23067
+ "name": "readonly",
22946
23068
  "type": {
22947
- "text": "Variant"
23069
+ "text": "boolean"
22948
23070
  },
22949
- "description": "Types of the progressbar\n- **Default**\n- **Inline**",
22950
- "default": "default",
22951
- "fieldName": "variant",
23071
+ "default": "false",
23072
+ "description": "Determines whether the radio is read-only.",
23073
+ "fieldName": "readonly"
23074
+ },
23075
+ {
23076
+ "name": "autofocus",
23077
+ "type": {
23078
+ "text": "boolean"
23079
+ },
23080
+ "default": "false",
23081
+ "description": "Automatically focus on the element when the page loads.\n[MDN Reference](https://developer.mozilla.org/en-US/docs/Web/HTML/Global_attributes/autofocus)",
23082
+ "fieldName": "autofocus"
23083
+ },
23084
+ {
23085
+ "name": "name",
23086
+ "type": {
23087
+ "text": "string"
23088
+ },
23089
+ "default": "''",
23090
+ "description": "Indicates the name of the component group.\nThey are used to group elements in a form together.",
23091
+ "fieldName": "name",
22952
23092
  "inheritedFrom": {
22953
- "name": "Progressbar",
22954
- "module": "src/components/progressbar/progressbar.component.ts"
23093
+ "name": "FormInternalsMixin",
23094
+ "module": "src/utils/mixins/FormInternalsMixin.ts"
22955
23095
  }
22956
23096
  },
22957
23097
  {
@@ -22959,25 +23099,37 @@
22959
23099
  "type": {
22960
23100
  "text": "string"
22961
23101
  },
22962
- "default": "'0'",
22963
- "description": "The current progress as a percentage, 0 to 100.\nThe value will be clamped between 0 and 100.",
23102
+ "default": "''",
23103
+ "description": "Indicates the value of the component group (ex: input, checkbox, radio, select etc...)",
22964
23104
  "fieldName": "value",
22965
23105
  "inheritedFrom": {
22966
- "name": "Progressbar",
22967
- "module": "src/components/progressbar/progressbar.component.ts"
23106
+ "name": "FormInternalsMixin",
23107
+ "module": "src/utils/mixins/FormInternalsMixin.ts"
22968
23108
  }
22969
23109
  },
22970
23110
  {
22971
- "name": "error",
23111
+ "name": "validation-message",
22972
23112
  "type": {
22973
- "text": "boolean"
23113
+ "text": "string | undefined"
22974
23114
  },
22975
- "default": "false",
22976
- "description": "Define error state of the progressbar\n- **true**\n- **false**",
22977
- "fieldName": "error",
23115
+ "description": "Custom validation message that will override the default message and displayed when the input is invalid.",
23116
+ "fieldName": "validationMessage",
22978
23117
  "inheritedFrom": {
22979
- "name": "Progressbar",
22980
- "module": "src/components/progressbar/progressbar.component.ts"
23118
+ "name": "FormInternalsMixin",
23119
+ "module": "src/utils/mixins/FormInternalsMixin.ts"
23120
+ }
23121
+ },
23122
+ {
23123
+ "name": "data-aria-label",
23124
+ "type": {
23125
+ "text": "string | null"
23126
+ },
23127
+ "default": "null",
23128
+ "description": "Defines a string value that labels the current element.\nThe Aria-Label attribute to be set for accessibility.",
23129
+ "fieldName": "dataAriaLabel",
23130
+ "inheritedFrom": {
23131
+ "name": "DataAriaLabelMixin",
23132
+ "module": "src/utils/mixins/DataAriaLabelMixin.ts"
22981
23133
  }
22982
23134
  },
22983
23135
  {
@@ -23055,6 +23207,23 @@
23055
23207
  }
23056
23208
  }
23057
23209
  ],
23210
+ "mixins": [
23211
+ {
23212
+ "name": "FormInternalsMixin",
23213
+ "module": "/src/utils/mixins/FormInternalsMixin"
23214
+ },
23215
+ {
23216
+ "name": "DataAriaLabelMixin",
23217
+ "module": "/src/utils/mixins/DataAriaLabelMixin"
23218
+ }
23219
+ ],
23220
+ "superclass": {
23221
+ "name": "FormfieldWrapper",
23222
+ "module": "/src/components/formfieldwrapper/formfieldwrapper.component"
23223
+ },
23224
+ "tagName": "mdc-radio",
23225
+ "jsDoc": "/**\n * Radio allow users to select single options from a list or turn an item/feature on or off.\n * These are often used in forms, settings, and selection in lists.\n *\n * A radio component contains an optional label, optional info icon and an optional helper text.\n * @dependency mdc-formfieldwrapper\n *\n * @tagname mdc-radio\n *\n * @event change - (React: onChange) Event that gets dispatched when the radio state changes.\n * @event focus - (React: onFocus) Event that gets dispatched when the radio receives focus.\n *\n * @cssproperty --mdc-radio-text-disabled-color - color of the label when disabled\n * @cssproperty --mdc-radio-control-inactive-hover - color of the radio button when inactive and hovered\n * @cssproperty --mdc-radio-control-inactive-pressed-color - color of the radio button when inactive and pressed\n * @cssproperty --mdc-radio-control-active-hover-color - color of the radio button when active and hovered\n * @cssproperty --mdc-radio-control-active-pressed-color - color of the radio button when active and pressed\n * @cssproperty --mdc-radio-disabled-border-color - color of the radio button when disabled\n * @cssproperty --mdc-radio-control-active-disabled-background - color of the radio button when active and disabled\n * @cssproperty --mdc-radio-control-inactive-disabled-background - color of the radio button when inactive and disabled\n *\n */",
23226
+ "customElement": true,
23058
23227
  "slots": [
23059
23228
  {
23060
23229
  "description": "slot to add the label info icon",
@@ -23072,342 +23241,230 @@
23072
23241
  "kind": "js",
23073
23242
  "name": "default",
23074
23243
  "declaration": {
23075
- "name": "Progressspinner",
23076
- "module": "components/progressspinner/progressspinner.component.js"
23244
+ "name": "Radio",
23245
+ "module": "components/radio/radio.component.js"
23077
23246
  }
23078
23247
  }
23079
23248
  ]
23080
23249
  },
23081
23250
  {
23082
23251
  "kind": "javascript-module",
23083
- "path": "components/radio/radio.component.js",
23252
+ "path": "components/progressspinner/progressspinner.component.js",
23084
23253
  "declarations": [
23085
23254
  {
23086
23255
  "kind": "class",
23087
- "description": "Radio allow users to select single options from a list or turn an item/feature on or off.\nThese are often used in forms, settings, and selection in lists.\n\nA radio component contains an optional label, optional info icon and an optional helper text.",
23088
- "name": "Radio",
23256
+ "description": "`mdc-progressspinner` is a customizable, circular progress indicator component.\nIt visually represents the current completion state of a process, such as loading,\nsyncing, uploading, or any ongoing task that has a measurable percentage.\n\nThe spinner is built using SVG with two concentric `<circle>` elements:\n- The `progress` arc represents the portion of work completed.\n- The `track` arc represents the remaining part.\n\nA visual gap is maintained between the progress and track arcs to clearly\ndistinguish the two segments. The component smoothly animates arc length\nand respects accessibility best practices with ARIA attributes.\n\nThe component supports different states:\n- **Default**: Circular spinner shows the progress.\n- **Success**: Displays a checkmark icon when progress reaches 100%.\n- **Error**: Displays an error icon when in an error state.",
23257
+ "name": "Progressspinner",
23089
23258
  "cssProperties": [
23090
23259
  {
23091
- "description": "color of the label when disabled",
23092
- "name": "--mdc-radio-text-disabled-color"
23093
- },
23094
- {
23095
- "description": "color of the radio button when inactive and hovered",
23096
- "name": "--mdc-radio-control-inactive-hover"
23260
+ "description": "The size of the spinner.",
23261
+ "name": "--mdc-spinner-size"
23097
23262
  },
23098
23263
  {
23099
- "description": "color of the radio button when inactive and pressed",
23100
- "name": "--mdc-radio-control-inactive-pressed-color"
23264
+ "description": "The color of the spinner track.",
23265
+ "name": "--mdc-track-color"
23101
23266
  },
23102
23267
  {
23103
- "description": "color of the radio button when active and hovered",
23104
- "name": "--mdc-radio-control-active-hover-color"
23268
+ "description": "The color of the spinner progress.",
23269
+ "name": "--mdc-progress-color"
23105
23270
  },
23106
23271
  {
23107
- "description": "color of the radio button when active and pressed",
23108
- "name": "--mdc-radio-control-active-pressed-color"
23272
+ "description": "The color of the spinner when in success state.",
23273
+ "name": "--mdc-progress-success-color"
23109
23274
  },
23110
23275
  {
23111
- "description": "color of the radio button when disabled",
23112
- "name": "--mdc-radio-disabled-border-color"
23276
+ "description": "The color of the spinner when in error state.",
23277
+ "name": "--mdc-progress-error-color"
23113
23278
  },
23114
23279
  {
23115
- "description": "color of the radio button when active and disabled",
23116
- "name": "--mdc-radio-control-active-disabled-background"
23280
+ "description": "Background color of the progressbar when inactive.",
23281
+ "name": "--mdc-progressbar-default-background-color",
23282
+ "inheritedFrom": {
23283
+ "name": "Progressbar",
23284
+ "module": "src/components/progressbar/progressbar.component.ts"
23285
+ }
23117
23286
  },
23118
23287
  {
23119
- "description": "color of the radio button when inactive and disabled",
23120
- "name": "--mdc-radio-control-inactive-disabled-background"
23121
- }
23122
- ],
23123
- "members": [
23124
- {
23125
- "kind": "field",
23126
- "name": "checked",
23127
- "type": {
23128
- "text": "boolean"
23129
- },
23130
- "default": "false",
23131
- "description": "Determines whether the radio is selected or unselected.",
23132
- "attribute": "checked",
23133
- "reflects": true
23288
+ "description": "Background color of the progressbar when active.",
23289
+ "name": "--mdc-progressbar-default-active-background-color",
23290
+ "inheritedFrom": {
23291
+ "name": "Progressbar",
23292
+ "module": "src/components/progressbar/progressbar.component.ts"
23293
+ }
23134
23294
  },
23135
23295
  {
23136
- "kind": "field",
23137
- "name": "readonly",
23138
- "type": {
23139
- "text": "boolean"
23140
- },
23141
- "default": "false",
23142
- "description": "Determines whether the radio is read-only.",
23143
- "attribute": "readonly",
23144
- "reflects": true
23296
+ "description": "Background color of the progressbar when in success state.",
23297
+ "name": "--mdc-progressbar-success-background-color",
23298
+ "inheritedFrom": {
23299
+ "name": "Progressbar",
23300
+ "module": "src/components/progressbar/progressbar.component.ts"
23301
+ }
23145
23302
  },
23146
23303
  {
23147
- "kind": "field",
23148
- "name": "autofocus",
23149
- "type": {
23150
- "text": "boolean"
23151
- },
23152
- "default": "false",
23153
- "description": "Automatically focus on the element when the page loads.\n[MDN Reference](https://developer.mozilla.org/en-US/docs/Web/HTML/Global_attributes/autofocus)",
23154
- "attribute": "autofocus",
23155
- "reflects": true
23304
+ "description": "Background color of the progressbar when in error state.",
23305
+ "name": "--mdc-progressbar-error-background-color",
23306
+ "inheritedFrom": {
23307
+ "name": "Progressbar",
23308
+ "module": "src/components/progressbar/progressbar.component.ts"
23309
+ }
23156
23310
  },
23157
23311
  {
23158
- "kind": "method",
23159
- "name": "getAllRadiosWithinSameGroup",
23160
- "privacy": "private",
23161
- "return": {
23162
- "type": {
23163
- "text": "Radio[]"
23164
- }
23165
- },
23166
- "description": "Returns all radios within the same group (name)."
23312
+ "description": "The height of the progressbar.",
23313
+ "name": "--mdc-progressbar-height",
23314
+ "inheritedFrom": {
23315
+ "name": "Progressbar",
23316
+ "module": "src/components/progressbar/progressbar.component.ts"
23317
+ }
23167
23318
  },
23168
23319
  {
23169
- "kind": "method",
23170
- "name": "dispatchChangeEvent",
23171
- "privacy": "private",
23172
- "return": {
23173
- "type": {
23174
- "text": "void"
23175
- }
23176
- },
23177
- "parameters": [
23178
- {
23179
- "name": "event",
23180
- "type": {
23181
- "text": "Event"
23182
- }
23183
- }
23184
- ],
23185
- "description": "The '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"
23320
+ "description": "The border radius of the progressbar.",
23321
+ "name": "--mdc-progressbar-border-radius",
23322
+ "inheritedFrom": {
23323
+ "name": "Progressbar",
23324
+ "module": "src/components/progressbar/progressbar.component.ts"
23325
+ }
23186
23326
  },
23187
23327
  {
23188
- "kind": "method",
23189
- "name": "setGroupValidity",
23190
- "privacy": "private",
23191
- "parameters": [
23192
- {
23193
- "name": "radios",
23194
- "type": {
23195
- "text": "Radio[]"
23196
- },
23197
- "description": "Array of radios of the same group"
23198
- },
23199
- {
23200
- "name": "isValid",
23201
- "type": {
23202
- "text": "boolean"
23203
- },
23204
- "description": "Boolean value to set the validity of the group"
23205
- }
23206
- ],
23207
- "description": "Sets the validity of the group of radios."
23328
+ "description": "Color of the progressbar label text.",
23329
+ "name": "--mdc-progressbar-label-color",
23330
+ "inheritedFrom": {
23331
+ "name": "Progressbar",
23332
+ "module": "src/components/progressbar/progressbar.component.ts"
23333
+ }
23208
23334
  },
23209
23335
  {
23210
- "kind": "method",
23211
- "name": "setActualFormValue",
23212
- "privacy": "private",
23213
- "description": "Updates the form value to reflect the current state of the radio.\nIf checked, the value is set to the user-provided value.\nIf unchecked, the value is set to null."
23336
+ "description": "Line height of the label text.",
23337
+ "name": "--mdc-progressbar-label-lineheight",
23338
+ "inheritedFrom": {
23339
+ "name": "Progressbar",
23340
+ "module": "src/components/progressbar/progressbar.component.ts"
23341
+ }
23214
23342
  },
23215
23343
  {
23216
- "kind": "method",
23217
- "name": "handleChange",
23218
- "privacy": "private",
23219
- "return": {
23220
- "type": {
23221
- "text": "void"
23222
- }
23223
- },
23224
- "parameters": [
23225
- {
23226
- "name": "event",
23227
- "type": {
23228
- "text": "Event"
23229
- }
23230
- }
23231
- ],
23232
- "description": "Handles the change event on the radio element.\nThis will toggle the state of the radio element.\nDispatches the change event."
23344
+ "description": "Font size of the label text.",
23345
+ "name": "--mdc-progressbar-label-fontsize",
23346
+ "inheritedFrom": {
23347
+ "name": "Progressbar",
23348
+ "module": "src/components/progressbar/progressbar.component.ts"
23349
+ }
23233
23350
  },
23234
23351
  {
23235
- "kind": "method",
23236
- "name": "updateRadio",
23237
- "privacy": "private",
23238
- "parameters": [
23239
- {
23240
- "name": "enabledRadios",
23241
- "type": {
23242
- "text": "Radio[]"
23243
- },
23244
- "description": "An array of enabled radio buttons within the same group."
23245
- },
23246
- {
23247
- "name": "index",
23248
- "type": {
23249
- "text": "number"
23250
- },
23251
- "description": "The index of the radio button to be updated within the enabled radios array."
23252
- },
23253
- {
23254
- "name": "event",
23255
- "type": {
23256
- "text": "Event"
23257
- },
23258
- "description": "The event that triggered the update."
23259
- }
23260
- ],
23261
- "description": "Updates the state of the radio button at the specified index within the enabled radios.\nFocuses the radio button and triggers the change event if the radio button is not read-only."
23352
+ "description": "Font weight of the label text.",
23353
+ "name": "--mdc-progressbar-label-fontweight",
23354
+ "inheritedFrom": {
23355
+ "name": "Progressbar",
23356
+ "module": "src/components/progressbar/progressbar.component.ts"
23357
+ }
23262
23358
  },
23263
23359
  {
23264
- "kind": "method",
23265
- "name": "handleKeyDown",
23266
- "privacy": "private",
23267
- "return": {
23268
- "type": {
23269
- "text": "void"
23270
- }
23271
- },
23272
- "parameters": [
23273
- {
23274
- "name": "event",
23275
- "type": {
23276
- "text": "KeyboardEvent"
23277
- }
23278
- }
23279
- ],
23280
- "description": "Handles the keydown event (Arrow Up/Down/Left/Right) on the radio element."
23360
+ "description": "Color of the help text.",
23361
+ "name": "--mdc-progressbar-help-text-color",
23362
+ "inheritedFrom": {
23363
+ "name": "Progressbar",
23364
+ "module": "src/components/progressbar/progressbar.component.ts"
23365
+ }
23366
+ }
23367
+ ],
23368
+ "members": [
23369
+ {
23370
+ "kind": "method",
23371
+ "name": "renderProgressSpinner",
23372
+ "privacy": "private"
23281
23373
  },
23282
23374
  {
23283
23375
  "kind": "method",
23284
- "name": "updateTabIndex",
23376
+ "name": "renderErrorState",
23285
23377
  "privacy": "private",
23378
+ "description": "Renders the error state of the progress spinner.",
23286
23379
  "return": {
23287
23380
  "type": {
23288
- "text": "void"
23381
+ "text": ""
23289
23382
  }
23290
- },
23291
- "description": "Update tab index for all radios in the same group (name)\nIf any radio group is checked, it will have a tab index of 0\nIf no radio group is checked, the first enabled radio will have a tab index of 0"
23383
+ }
23292
23384
  },
23293
23385
  {
23294
- "kind": "field",
23295
- "name": "renderLabelAndHelperText",
23296
- "privacy": "private"
23386
+ "kind": "method",
23387
+ "name": "renderSuccessState",
23388
+ "privacy": "private",
23389
+ "description": "Renders the success state of the progress spinner.",
23390
+ "return": {
23391
+ "type": {
23392
+ "text": ""
23393
+ }
23394
+ }
23297
23395
  },
23298
23396
  {
23299
23397
  "kind": "field",
23300
- "name": "name",
23398
+ "name": "dataAriaLabel",
23301
23399
  "type": {
23302
- "text": "string"
23400
+ "text": "string | null"
23303
23401
  },
23304
- "default": "''",
23305
- "description": "Indicates the name of the component group.\nThey are used to group elements in a form together.",
23306
- "attribute": "name",
23402
+ "default": "null",
23403
+ "description": "Defines a string value that labels the current element.\nThe Aria-Label attribute to be set for accessibility.",
23404
+ "attribute": "data-aria-label",
23307
23405
  "reflects": true,
23308
23406
  "inheritedFrom": {
23309
- "name": "FormInternalsMixin",
23310
- "module": "utils/mixins/FormInternalsMixin.js"
23407
+ "name": "DataAriaLabelMixin",
23408
+ "module": "utils/mixins/DataAriaLabelMixin.js"
23311
23409
  }
23312
23410
  },
23313
23411
  {
23314
23412
  "kind": "field",
23315
- "name": "value",
23413
+ "name": "variant",
23316
23414
  "type": {
23317
- "text": "string"
23415
+ "text": "Variant"
23318
23416
  },
23319
- "default": "''",
23320
- "description": "Indicates the value of the component group (ex: input, checkbox, radio, select etc...)",
23321
- "attribute": "value",
23417
+ "description": "Types of the progressbar\n- **Default**\n- **Inline**",
23418
+ "default": "default",
23419
+ "attribute": "variant",
23322
23420
  "reflects": true,
23323
23421
  "inheritedFrom": {
23324
- "name": "FormInternalsMixin",
23325
- "module": "utils/mixins/FormInternalsMixin.js"
23422
+ "name": "Progressbar",
23423
+ "module": "components/progressbar/progressbar.component.js"
23326
23424
  }
23327
23425
  },
23328
23426
  {
23329
23427
  "kind": "field",
23330
- "name": "validationMessage",
23428
+ "name": "value",
23331
23429
  "type": {
23332
- "text": "string | undefined"
23430
+ "text": "string"
23333
23431
  },
23334
- "description": "Custom validation message that will override the default message and displayed when the input is invalid.",
23335
- "attribute": "validation-message",
23432
+ "default": "'0'",
23433
+ "description": "The current progress as a percentage, 0 to 100.\nThe value will be clamped between 0 and 100.",
23434
+ "attribute": "value",
23336
23435
  "reflects": true,
23337
23436
  "inheritedFrom": {
23338
- "name": "FormInternalsMixin",
23339
- "module": "utils/mixins/FormInternalsMixin.js"
23437
+ "name": "Progressbar",
23438
+ "module": "components/progressbar/progressbar.component.js"
23340
23439
  }
23341
23440
  },
23342
23441
  {
23343
23442
  "kind": "field",
23344
- "name": "validity",
23443
+ "name": "error",
23345
23444
  "type": {
23346
- "text": "ValidityState"
23445
+ "text": "boolean"
23347
23446
  },
23348
- "readonly": true,
23349
- "inheritedFrom": {
23350
- "name": "FormInternalsMixin",
23351
- "module": "utils/mixins/FormInternalsMixin.js"
23352
- }
23353
- },
23354
- {
23355
- "kind": "field",
23356
- "name": "willValidate",
23357
- "readonly": true,
23447
+ "default": "false",
23448
+ "description": "Define error state of the progressbar\n- **true**\n- **false**",
23449
+ "attribute": "error",
23358
23450
  "inheritedFrom": {
23359
- "name": "FormInternalsMixin",
23360
- "module": "utils/mixins/FormInternalsMixin.js"
23451
+ "name": "Progressbar",
23452
+ "module": "components/progressbar/progressbar.component.js"
23361
23453
  }
23362
23454
  },
23363
23455
  {
23364
23456
  "kind": "method",
23365
- "name": "setValidity",
23366
- "description": "Sets the validity of the input field based on the input field's validity.",
23457
+ "name": "getValidationVariant",
23458
+ "privacy": "private",
23459
+ "description": "Determines the validation state (success, error, or default) based on progress value and error state.",
23367
23460
  "return": {
23368
23461
  "type": {
23369
23462
  "text": ""
23370
23463
  }
23371
23464
  },
23372
23465
  "inheritedFrom": {
23373
- "name": "FormInternalsMixin",
23374
- "module": "utils/mixins/FormInternalsMixin.js"
23375
- }
23376
- },
23377
- {
23378
- "kind": "method",
23379
- "name": "checkValidity",
23380
- "return": {
23381
- "type": {
23382
- "text": "boolean"
23383
- }
23384
- },
23385
- "inheritedFrom": {
23386
- "name": "FormInternalsMixin",
23387
- "module": "utils/mixins/FormInternalsMixin.js"
23388
- }
23389
- },
23390
- {
23391
- "kind": "method",
23392
- "name": "reportValidity",
23393
- "inheritedFrom": {
23394
- "name": "FormInternalsMixin",
23395
- "module": "utils/mixins/FormInternalsMixin.js"
23396
- }
23397
- },
23398
- {
23399
- "kind": "field",
23400
- "name": "dataAriaLabel",
23401
- "type": {
23402
- "text": "string | null"
23403
- },
23404
- "default": "null",
23405
- "description": "Defines a string value that labels the current element.\nThe Aria-Label attribute to be set for accessibility.",
23406
- "attribute": "data-aria-label",
23407
- "reflects": true,
23408
- "inheritedFrom": {
23409
- "name": "DataAriaLabelMixin",
23410
- "module": "utils/mixins/DataAriaLabelMixin.js"
23466
+ "name": "Progressbar",
23467
+ "module": "components/progressbar/progressbar.component.js"
23411
23468
  }
23412
23469
  },
23413
23470
  {
@@ -23580,62 +23637,38 @@
23580
23637
  }
23581
23638
  }
23582
23639
  ],
23583
- "events": [
23584
- {
23585
- "type": {
23586
- "text": "EventConstructor"
23587
- }
23588
- },
23589
- {
23590
- "description": "(React: onChange) Event that gets dispatched when the radio state changes.",
23591
- "name": "change",
23592
- "reactName": "onChange"
23593
- },
23594
- {
23595
- "description": "(React: onFocus) Event that gets dispatched when the radio receives focus.",
23596
- "name": "focus",
23597
- "reactName": "onFocus"
23598
- }
23599
- ],
23640
+ "superclass": {
23641
+ "name": "Progressbar",
23642
+ "module": "/src/components/progressbar/progressbar.component"
23643
+ },
23644
+ "tagName": "mdc-progressspinner",
23645
+ "jsDoc": "/**\n * `mdc-progressspinner` is a customizable, circular progress indicator component.\n * It visually represents the current completion state of a process, such as loading,\n * syncing, uploading, or any ongoing task that has a measurable percentage.\n *\n * The spinner is built using SVG with two concentric `<circle>` elements:\n * - The `progress` arc represents the portion of work completed.\n * - The `track` arc represents the remaining part.\n *\n * A visual gap is maintained between the progress and track arcs to clearly\n * distinguish the two segments. The component smoothly animates arc length\n * and respects accessibility best practices with ARIA attributes.\n *\n * The component supports different states:\n * - **Default**: Circular spinner shows the progress.\n * - **Success**: Displays a checkmark icon when progress reaches 100%.\n * - **Error**: Displays an error icon when in an error state.\n *\n * @tagname mdc-progressspinner\n *\n * @cssproperty --mdc-spinner-size - The size of the spinner.\n * @cssproperty --mdc-track-color - The color of the spinner track.\n * @cssproperty --mdc-progress-color - The color of the spinner progress.\n * @cssproperty --mdc-progress-success-color - The color of the spinner when in success state.\n * @cssproperty --mdc-progress-error-color - The color of the spinner when in error state.\n *\n */",
23646
+ "customElement": true,
23600
23647
  "attributes": [
23601
23648
  {
23602
- "name": "checked",
23603
- "type": {
23604
- "text": "boolean"
23605
- },
23606
- "default": "false",
23607
- "description": "Determines whether the radio is selected or unselected.",
23608
- "fieldName": "checked"
23609
- },
23610
- {
23611
- "name": "readonly",
23612
- "type": {
23613
- "text": "boolean"
23614
- },
23615
- "default": "false",
23616
- "description": "Determines whether the radio is read-only.",
23617
- "fieldName": "readonly"
23618
- },
23619
- {
23620
- "name": "autofocus",
23649
+ "name": "data-aria-label",
23621
23650
  "type": {
23622
- "text": "boolean"
23651
+ "text": "string | null"
23623
23652
  },
23624
- "default": "false",
23625
- "description": "Automatically focus on the element when the page loads.\n[MDN Reference](https://developer.mozilla.org/en-US/docs/Web/HTML/Global_attributes/autofocus)",
23626
- "fieldName": "autofocus"
23653
+ "default": "null",
23654
+ "description": "Defines a string value that labels the current element.\nThe Aria-Label attribute to be set for accessibility.",
23655
+ "fieldName": "dataAriaLabel",
23656
+ "inheritedFrom": {
23657
+ "name": "DataAriaLabelMixin",
23658
+ "module": "src/utils/mixins/DataAriaLabelMixin.ts"
23659
+ }
23627
23660
  },
23628
23661
  {
23629
- "name": "name",
23662
+ "name": "variant",
23630
23663
  "type": {
23631
- "text": "string"
23664
+ "text": "Variant"
23632
23665
  },
23633
- "default": "''",
23634
- "description": "Indicates the name of the component group.\nThey are used to group elements in a form together.",
23635
- "fieldName": "name",
23666
+ "description": "Types of the progressbar\n- **Default**\n- **Inline**",
23667
+ "default": "default",
23668
+ "fieldName": "variant",
23636
23669
  "inheritedFrom": {
23637
- "name": "FormInternalsMixin",
23638
- "module": "src/utils/mixins/FormInternalsMixin.ts"
23670
+ "name": "Progressbar",
23671
+ "module": "src/components/progressbar/progressbar.component.ts"
23639
23672
  }
23640
23673
  },
23641
23674
  {
@@ -23643,37 +23676,25 @@
23643
23676
  "type": {
23644
23677
  "text": "string"
23645
23678
  },
23646
- "default": "''",
23647
- "description": "Indicates the value of the component group (ex: input, checkbox, radio, select etc...)",
23679
+ "default": "'0'",
23680
+ "description": "The current progress as a percentage, 0 to 100.\nThe value will be clamped between 0 and 100.",
23648
23681
  "fieldName": "value",
23649
23682
  "inheritedFrom": {
23650
- "name": "FormInternalsMixin",
23651
- "module": "src/utils/mixins/FormInternalsMixin.ts"
23652
- }
23653
- },
23654
- {
23655
- "name": "validation-message",
23656
- "type": {
23657
- "text": "string | undefined"
23658
- },
23659
- "description": "Custom validation message that will override the default message and displayed when the input is invalid.",
23660
- "fieldName": "validationMessage",
23661
- "inheritedFrom": {
23662
- "name": "FormInternalsMixin",
23663
- "module": "src/utils/mixins/FormInternalsMixin.ts"
23683
+ "name": "Progressbar",
23684
+ "module": "src/components/progressbar/progressbar.component.ts"
23664
23685
  }
23665
23686
  },
23666
23687
  {
23667
- "name": "data-aria-label",
23688
+ "name": "error",
23668
23689
  "type": {
23669
- "text": "string | null"
23690
+ "text": "boolean"
23670
23691
  },
23671
- "default": "null",
23672
- "description": "Defines a string value that labels the current element.\nThe Aria-Label attribute to be set for accessibility.",
23673
- "fieldName": "dataAriaLabel",
23692
+ "default": "false",
23693
+ "description": "Define error state of the progressbar\n- **true**\n- **false**",
23694
+ "fieldName": "error",
23674
23695
  "inheritedFrom": {
23675
- "name": "DataAriaLabelMixin",
23676
- "module": "src/utils/mixins/DataAriaLabelMixin.ts"
23696
+ "name": "Progressbar",
23697
+ "module": "src/components/progressbar/progressbar.component.ts"
23677
23698
  }
23678
23699
  },
23679
23700
  {
@@ -23751,23 +23772,6 @@
23751
23772
  }
23752
23773
  }
23753
23774
  ],
23754
- "mixins": [
23755
- {
23756
- "name": "FormInternalsMixin",
23757
- "module": "/src/utils/mixins/FormInternalsMixin"
23758
- },
23759
- {
23760
- "name": "DataAriaLabelMixin",
23761
- "module": "/src/utils/mixins/DataAriaLabelMixin"
23762
- }
23763
- ],
23764
- "superclass": {
23765
- "name": "FormfieldWrapper",
23766
- "module": "/src/components/formfieldwrapper/formfieldwrapper.component"
23767
- },
23768
- "tagName": "mdc-radio",
23769
- "jsDoc": "/**\n * Radio allow users to select single options from a list or turn an item/feature on or off.\n * These are often used in forms, settings, and selection in lists.\n *\n * A radio component contains an optional label, optional info icon and an optional helper text.\n * @dependency mdc-formfieldwrapper\n *\n * @tagname mdc-radio\n *\n * @event change - (React: onChange) Event that gets dispatched when the radio state changes.\n * @event focus - (React: onFocus) Event that gets dispatched when the radio receives focus.\n *\n * @cssproperty --mdc-radio-text-disabled-color - color of the label when disabled\n * @cssproperty --mdc-radio-control-inactive-hover - color of the radio button when inactive and hovered\n * @cssproperty --mdc-radio-control-inactive-pressed-color - color of the radio button when inactive and pressed\n * @cssproperty --mdc-radio-control-active-hover-color - color of the radio button when active and hovered\n * @cssproperty --mdc-radio-control-active-pressed-color - color of the radio button when active and pressed\n * @cssproperty --mdc-radio-disabled-border-color - color of the radio button when disabled\n * @cssproperty --mdc-radio-control-active-disabled-background - color of the radio button when active and disabled\n * @cssproperty --mdc-radio-control-inactive-disabled-background - color of the radio button when inactive and disabled\n *\n */",
23770
- "customElement": true,
23771
23775
  "slots": [
23772
23776
  {
23773
23777
  "description": "slot to add the label info icon",
@@ -23785,8 +23789,8 @@
23785
23789
  "kind": "js",
23786
23790
  "name": "default",
23787
23791
  "declaration": {
23788
- "name": "Radio",
23789
- "module": "components/radio/radio.component.js"
23792
+ "name": "Progressspinner",
23793
+ "module": "components/progressspinner/progressspinner.component.js"
23790
23794
  }
23791
23795
  }
23792
23796
  ]