@momentum-design/components 0.107.1 → 0.108.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -3181,7 +3181,7 @@
3181
3181
  "kind": "field",
3182
3182
  "name": "brandVisualData",
3183
3183
  "type": {
3184
- "text": "HTMLElement | undefined"
3184
+ "text": "Element | TemplateResult | undefined"
3185
3185
  },
3186
3186
  "privacy": "private"
3187
3187
  },
@@ -3195,11 +3195,75 @@
3195
3195
  "attribute": "name",
3196
3196
  "reflects": true
3197
3197
  },
3198
+ {
3199
+ "kind": "field",
3200
+ "name": "altText",
3201
+ "type": {
3202
+ "text": "string | undefined"
3203
+ },
3204
+ "description": "Alt text for the brandvisual image for accessibility.\nThis will only be set if the brandvisual is an image (png).",
3205
+ "attribute": "altText",
3206
+ "reflects": true
3207
+ },
3198
3208
  {
3199
3209
  "kind": "method",
3200
3210
  "name": "getBrandVisualData",
3201
3211
  "privacy": "private"
3202
3212
  },
3213
+ {
3214
+ "kind": "method",
3215
+ "name": "injectTemplateAttributes",
3216
+ "privacy": "private",
3217
+ "return": {
3218
+ "type": {
3219
+ "text": "Element | TemplateResult"
3220
+ }
3221
+ },
3222
+ "parameters": [
3223
+ {
3224
+ "name": "litTemplate",
3225
+ "type": {
3226
+ "text": "TemplateResult"
3227
+ }
3228
+ },
3229
+ {
3230
+ "name": "tag",
3231
+ "type": {
3232
+ "text": "string"
3233
+ }
3234
+ },
3235
+ {
3236
+ "name": "props",
3237
+ "type": {
3238
+ "text": "any"
3239
+ }
3240
+ }
3241
+ ]
3242
+ },
3243
+ {
3244
+ "kind": "method",
3245
+ "name": "injectHtmlAttributes",
3246
+ "privacy": "private",
3247
+ "return": {
3248
+ "type": {
3249
+ "text": "Element"
3250
+ }
3251
+ },
3252
+ "parameters": [
3253
+ {
3254
+ "name": "html",
3255
+ "type": {
3256
+ "text": "Element"
3257
+ }
3258
+ },
3259
+ {
3260
+ "name": "props",
3261
+ "type": {
3262
+ "text": "imageProps"
3263
+ }
3264
+ }
3265
+ ]
3266
+ },
3203
3267
  {
3204
3268
  "kind": "method",
3205
3269
  "name": "handleBrandVisualLoadedSuccess",
@@ -3208,7 +3272,7 @@
3208
3272
  {
3209
3273
  "name": "brandVisualHtml",
3210
3274
  "type": {
3211
- "text": "HTMLElement"
3275
+ "text": "TemplateResult"
3212
3276
  },
3213
3277
  "description": "The brandvisual html element which has been fetched from the brandvisual provider."
3214
3278
  }
@@ -3250,6 +3314,14 @@
3250
3314
  },
3251
3315
  "description": "Name of the brandVisual (= filename)",
3252
3316
  "fieldName": "name"
3317
+ },
3318
+ {
3319
+ "name": "altText",
3320
+ "type": {
3321
+ "text": "string | undefined"
3322
+ },
3323
+ "description": "Alt text for the brandvisual image for accessibility.\nThis will only be set if the brandvisual is an image (png).",
3324
+ "fieldName": "altText"
3253
3325
  }
3254
3326
  ],
3255
3327
  "superclass": {
@@ -33577,416 +33649,6 @@
33577
33649
  }
33578
33650
  ]
33579
33651
  },
33580
- {
33581
- "kind": "javascript-module",
33582
- "path": "components/spinner/spinner.component.js",
33583
- "declarations": [
33584
- {
33585
- "kind": "class",
33586
- "description": "`mdc-spinner` is loading spinner which is an indeterminate progress indicator, meaning\nit's best for cases where the progress or duration of a process is variable or unknown.\n\nSpinner Variants:\n- **Standalone (Default)**: Track has a blue color.\n- **Button**: To be used when placed in a button to show that the button’s action is currently in progress.\nTo ensure a minimum 3:1 contrast ratio, the color is changed internally to be the same color as the button’s\nicon or label text.\n\nSpinner Sizes:\n- **Large (96px)**: Use when replacing entire regions or pages that are still loading\n- **MidSize (48px) (Default)**: Use for most use cases.\n- **Small (24px)**: Use for inline with loading text.\n\nCustomisation of the spinner size is allowed by setting the size to undefined and using the --mdc-spinner-size\nCSS property.\n\nSpinner Colors:\n- **Default**: Use for most use cases.\n- **Inverted**: Only to be used within inverted components, such as coachmarks.\n\nRegarding accessibility, if an aria-label is provided, the role will be set to 'img'; if it is absent, the role\nwill be unset\nand aria-hidden will be set to 'true' so the spinner will be ignored by screen readers.",
33587
- "name": "Spinner",
33588
- "cssProperties": [
33589
- {
33590
- "description": "Allows customization of the default spinner color.",
33591
- "name": "--mdc-spinner-default-color"
33592
- },
33593
- {
33594
- "description": "Allows customization of the inverted spinner color.",
33595
- "name": "--mdc-spinner-inverted-color"
33596
- },
33597
- {
33598
- "description": "Allows customization of the spinner Button variant color.",
33599
- "name": "--mdc-spinner-button-variant-color"
33600
- },
33601
- {
33602
- "description": "Allows customization of the spinner size.",
33603
- "name": "--mdc-spinner-size"
33604
- }
33605
- ],
33606
- "cssParts": [
33607
- {
33608
- "description": "The svg which contains the circle spinner.",
33609
- "name": "container"
33610
- },
33611
- {
33612
- "description": "The circle of the spinner.",
33613
- "name": "circle"
33614
- }
33615
- ],
33616
- "members": [
33617
- {
33618
- "kind": "field",
33619
- "name": "inverted",
33620
- "type": {
33621
- "text": "boolean | undefined"
33622
- },
33623
- "description": "The spinner color can be inverted by setting the inverted attribute to true.",
33624
- "default": "false",
33625
- "attribute": "inverted",
33626
- "reflects": true
33627
- },
33628
- {
33629
- "kind": "field",
33630
- "name": "size",
33631
- "type": {
33632
- "text": "SpinnerSize | undefined"
33633
- },
33634
- "description": "Size of the spinner.\nAcceptable values include:\n\n- 'small'\n- 'midsize'\n- 'large'\n- 'undefined'",
33635
- "default": "midsize",
33636
- "attribute": "size",
33637
- "reflects": true
33638
- },
33639
- {
33640
- "kind": "field",
33641
- "name": "ariaLabel",
33642
- "type": {
33643
- "text": "string | null"
33644
- },
33645
- "default": "null",
33646
- "description": "Aria-label attribute to be set for accessibility",
33647
- "attribute": "aria-label"
33648
- },
33649
- {
33650
- "kind": "field",
33651
- "name": "variant",
33652
- "type": {
33653
- "text": "SpinnerVariant"
33654
- },
33655
- "description": "There are 2 variants of spinner: default and button. Their coloring is different.\n- **Standalone (Default)**: Track has a blue color.\n- **Button**: To be used when placed in a button to show that the button’s action is currently in progress.\nTo ensure a minimum 3:1 contrast ratio, change the active indicator color to be the same color as the button’s\nicon or label text.",
33656
- "default": "standalone",
33657
- "attribute": "variant",
33658
- "reflects": true
33659
- }
33660
- ],
33661
- "attributes": [
33662
- {
33663
- "name": "inverted",
33664
- "type": {
33665
- "text": "boolean | undefined"
33666
- },
33667
- "description": "The spinner color can be inverted by setting the inverted attribute to true.",
33668
- "default": "false",
33669
- "fieldName": "inverted"
33670
- },
33671
- {
33672
- "name": "size",
33673
- "type": {
33674
- "text": "SpinnerSize | undefined"
33675
- },
33676
- "description": "Size of the spinner.\nAcceptable values include:\n\n- 'small'\n- 'midsize'\n- 'large'\n- 'undefined'",
33677
- "default": "midsize",
33678
- "fieldName": "size"
33679
- },
33680
- {
33681
- "name": "aria-label",
33682
- "type": {
33683
- "text": "string | null"
33684
- },
33685
- "default": "null",
33686
- "description": "Aria-label attribute to be set for accessibility",
33687
- "fieldName": "ariaLabel"
33688
- },
33689
- {
33690
- "name": "variant",
33691
- "type": {
33692
- "text": "SpinnerVariant"
33693
- },
33694
- "description": "There are 2 variants of spinner: default and button. Their coloring is different.\n- **Standalone (Default)**: Track has a blue color.\n- **Button**: To be used when placed in a button to show that the button’s action is currently in progress.\nTo ensure a minimum 3:1 contrast ratio, change the active indicator color to be the same color as the button’s\nicon or label text.",
33695
- "default": "standalone",
33696
- "fieldName": "variant"
33697
- }
33698
- ],
33699
- "superclass": {
33700
- "name": "Component",
33701
- "module": "/src/models"
33702
- },
33703
- "tagName": "mdc-spinner",
33704
- "jsDoc": "/**\n * `mdc-spinner` is loading spinner which is an indeterminate progress indicator, meaning\n * it's best for cases where the progress or duration of a process is variable or unknown.\n *\n * Spinner Variants:\n * - **Standalone (Default)**: Track has a blue color.\n * - **Button**: To be used when placed in a button to show that the button’s action is currently in progress.\n * To ensure a minimum 3:1 contrast ratio, the color is changed internally to be the same color as the button’s\n * icon or label text.\n *\n * Spinner Sizes:\n * - **Large (96px)**: Use when replacing entire regions or pages that are still loading\n * - **MidSize (48px) (Default)**: Use for most use cases.\n * - **Small (24px)**: Use for inline with loading text.\n *\n * Customisation of the spinner size is allowed by setting the size to undefined and using the --mdc-spinner-size\n * CSS property.\n *\n * Spinner Colors:\n * - **Default**: Use for most use cases.\n * - **Inverted**: Only to be used within inverted components, such as coachmarks.\n *\n * Regarding accessibility, if an aria-label is provided, the role will be set to 'img'; if it is absent, the role\n * will be unset\n * and aria-hidden will be set to 'true' so the spinner will be ignored by screen readers.\n *\n * @tagname mdc-spinner\n *\n * @cssproperty --mdc-spinner-default-color - Allows customization of the default spinner color.\n * @cssproperty --mdc-spinner-inverted-color - Allows customization of the inverted spinner color.\n * @cssproperty --mdc-spinner-button-variant-color - Allows customization of the spinner Button variant color.\n * @cssproperty --mdc-spinner-size - Allows customization of the spinner size.\n *\n * @csspart container - The svg which contains the circle spinner.\n * @csspart circle - The circle of the spinner.\n */",
33705
- "customElement": true
33706
- }
33707
- ],
33708
- "exports": [
33709
- {
33710
- "kind": "js",
33711
- "name": "default",
33712
- "declaration": {
33713
- "name": "Spinner",
33714
- "module": "components/spinner/spinner.component.js"
33715
- }
33716
- }
33717
- ]
33718
- },
33719
- {
33720
- "kind": "javascript-module",
33721
- "path": "components/staticcheckbox/staticcheckbox.component.js",
33722
- "declarations": [
33723
- {
33724
- "kind": "class",
33725
- "description": "This is a decorative component that is styled to look as a checkbox.\n\nIt has 3 properties - checked, indeterminate and disabled.\n\nWe are using the same styling that has been created for the `mdc-checkbox` component.",
33726
- "name": "StaticCheckbox",
33727
- "cssProperties": [
33728
- {
33729
- "description": "Border color in high contrast.",
33730
- "name": "--mdc-staticcheckbox-border-color"
33731
- },
33732
- {
33733
- "description": "Background color for a selected checkbox.",
33734
- "name": "--mdc-staticcheckbox-checked-background-color"
33735
- },
33736
- {
33737
- "description": "Background color for a disabled checkbox.",
33738
- "name": "--mdc-staticcheckbox-disabled-background-color"
33739
- },
33740
- {
33741
- "description": "Border color for a disabled checkbox.",
33742
- "name": "--mdc-checkbox-disabled-border-color"
33743
- },
33744
- {
33745
- "description": "Background color for a disabled, selected checkbox.",
33746
- "name": "--mdc-checkbox-disabled-checked-icon-color"
33747
- },
33748
- {
33749
- "description": "Icon color for a disabled checkbox.",
33750
- "name": "--mdc-staticcheckbox-disabled-icon-color"
33751
- },
33752
- {
33753
- "description": "Background color for an unselected checkbox.",
33754
- "name": "--mdc-staticcheckbox-icon-background-color"
33755
- },
33756
- {
33757
- "description": "Default background color for an unselected checkbox.",
33758
- "name": "--mdc-staticcheckbox-icon-border-color"
33759
- },
33760
- {
33761
- "description": "Icon color for an unselected checkbox.",
33762
- "name": "--mdc-staticcheckbox-icon-color"
33763
- }
33764
- ],
33765
- "members": [
33766
- {
33767
- "kind": "field",
33768
- "name": "checked",
33769
- "type": {
33770
- "text": "boolean"
33771
- },
33772
- "default": "false",
33773
- "description": "Determines whether the checkbox is selected or unselected.",
33774
- "attribute": "checked",
33775
- "reflects": true
33776
- },
33777
- {
33778
- "kind": "field",
33779
- "name": "indeterminate",
33780
- "type": {
33781
- "text": "boolean"
33782
- },
33783
- "default": "false",
33784
- "description": "Determines whether the checkbox is in an indeterminate state.",
33785
- "attribute": "indeterminate",
33786
- "reflects": true
33787
- },
33788
- {
33789
- "kind": "field",
33790
- "name": "disabled",
33791
- "type": {
33792
- "text": "boolean | undefined"
33793
- },
33794
- "description": "Indicates whether the component is disabled.\nWhen the component is disabled for user interaction; it is not focusable or clickable.",
33795
- "default": "undefined",
33796
- "attribute": "disabled",
33797
- "reflects": true,
33798
- "inheritedFrom": {
33799
- "name": "DisabledMixin",
33800
- "module": "utils/mixins/DisabledMixin.js"
33801
- }
33802
- }
33803
- ],
33804
- "attributes": [
33805
- {
33806
- "name": "checked",
33807
- "type": {
33808
- "text": "boolean"
33809
- },
33810
- "default": "false",
33811
- "description": "Determines whether the checkbox is selected or unselected.",
33812
- "fieldName": "checked"
33813
- },
33814
- {
33815
- "name": "indeterminate",
33816
- "type": {
33817
- "text": "boolean"
33818
- },
33819
- "default": "false",
33820
- "description": "Determines whether the checkbox is in an indeterminate state.",
33821
- "fieldName": "indeterminate"
33822
- },
33823
- {
33824
- "name": "disabled",
33825
- "type": {
33826
- "text": "boolean | undefined"
33827
- },
33828
- "description": "Indicates whether the component is disabled.\nWhen the component is disabled for user interaction; it is not focusable or clickable.",
33829
- "default": "undefined",
33830
- "fieldName": "disabled",
33831
- "inheritedFrom": {
33832
- "name": "DisabledMixin",
33833
- "module": "src/utils/mixins/DisabledMixin.ts"
33834
- }
33835
- }
33836
- ],
33837
- "mixins": [
33838
- {
33839
- "name": "DisabledMixin",
33840
- "module": "/src/utils/mixins/DisabledMixin"
33841
- }
33842
- ],
33843
- "superclass": {
33844
- "name": "Component",
33845
- "module": "/src/models"
33846
- },
33847
- "tagName": "mdc-staticcheckbox",
33848
- "jsDoc": "/**\n * This is a decorative component that is styled to look as a checkbox.\n *\n * It has 3 properties - checked, indeterminate and disabled.\n *\n * We are using the same styling that has been created for the `mdc-checkbox` component.\n *\n * @tagname mdc-staticcheckbox\n *\n * @dependency mdc-icon\n *\n * @cssproperty --mdc-staticcheckbox-border-color - Border color in high contrast.\n * @cssproperty --mdc-staticcheckbox-checked-background-color - Background color for a selected checkbox.\n * @cssproperty --mdc-staticcheckbox-disabled-background-color - Background color for a disabled checkbox.\n * @cssproperty --mdc-checkbox-disabled-border-color - Border color for a disabled checkbox.\n * @cssproperty --mdc-checkbox-disabled-checked-icon-color - Background color for a disabled, selected checkbox.\n * @cssproperty --mdc-staticcheckbox-disabled-icon-color - Icon color for a disabled checkbox.\n * @cssproperty --mdc-staticcheckbox-icon-background-color - Background color for an unselected checkbox.\n * @cssproperty --mdc-staticcheckbox-icon-border-color - Default background color for an unselected checkbox.\n * @cssproperty --mdc-staticcheckbox-icon-color - Icon color for an unselected checkbox.\n *\n */",
33849
- "customElement": true
33850
- }
33851
- ],
33852
- "exports": [
33853
- {
33854
- "kind": "js",
33855
- "name": "default",
33856
- "declaration": {
33857
- "name": "StaticCheckbox",
33858
- "module": "components/staticcheckbox/staticcheckbox.component.js"
33859
- }
33860
- }
33861
- ]
33862
- },
33863
- {
33864
- "kind": "javascript-module",
33865
- "path": "components/staticchip/staticchip.component.js",
33866
- "declarations": [
33867
- {
33868
- "kind": "class",
33869
- "description": "mdc-staticchip is an static element that can be used to represent a chip. It supports a leading icon along with label.\n\nIt is recommended to keep the label text for the chip component concise and compact.\nFor best results, we recommend limiting the <b>maximum length of the label text to 20 characters</b>, including empty spaces to split words.",
33870
- "name": "StaticChip",
33871
- "cssProperties": [
33872
- {
33873
- "description": "The color of the static chip.",
33874
- "name": "--mdc-chip-color"
33875
- },
33876
- {
33877
- "description": "The border color of the static chip.",
33878
- "name": "--mdc-chip-border-color"
33879
- },
33880
- {
33881
- "description": "The background color of the static chip.",
33882
- "name": "--mdc-chip-background-color"
33883
- }
33884
- ],
33885
- "members": [
33886
- {
33887
- "kind": "field",
33888
- "name": "color",
33889
- "type": {
33890
- "text": "ColorType"
33891
- },
33892
- "description": "The color of the chip. It supports the following colors\n- default\n- cobalt\n- gold\n- lime\n- mint\n- orange\n- pink\n- purple\n- slate\n- violet",
33893
- "default": "default",
33894
- "attribute": "color",
33895
- "reflects": true
33896
- },
33897
- {
33898
- "kind": "field",
33899
- "name": "label",
33900
- "type": {
33901
- "text": "string"
33902
- },
33903
- "default": "''",
33904
- "description": "The visible label text of the chip.\n\nWe recommend limiting the <b>maximum length of the label text to 20 characters</b>,\nincluding empty spaces to split words.",
33905
- "attribute": "label"
33906
- },
33907
- {
33908
- "kind": "method",
33909
- "name": "renderIcon",
33910
- "privacy": "private",
33911
- "description": "Renders the icon element if available.",
33912
- "return": {
33913
- "type": {
33914
- "text": ""
33915
- }
33916
- }
33917
- },
33918
- {
33919
- "kind": "field",
33920
- "name": "iconName",
33921
- "type": {
33922
- "text": "IconNames | undefined"
33923
- },
33924
- "description": "Name of the icon (= filename).\n\nIf no `icon-name` is provided, no icon will be rendered.",
33925
- "attribute": "icon-name",
33926
- "inheritedFrom": {
33927
- "name": "IconNameMixin",
33928
- "module": "utils/mixins/IconNameMixin.js"
33929
- }
33930
- }
33931
- ],
33932
- "attributes": [
33933
- {
33934
- "name": "color",
33935
- "type": {
33936
- "text": "ColorType"
33937
- },
33938
- "description": "The color of the chip. It supports the following colors\n- default\n- cobalt\n- gold\n- lime\n- mint\n- orange\n- pink\n- purple\n- slate\n- violet",
33939
- "default": "default",
33940
- "fieldName": "color"
33941
- },
33942
- {
33943
- "name": "label",
33944
- "type": {
33945
- "text": "string"
33946
- },
33947
- "default": "''",
33948
- "description": "The visible label text of the chip.\n\nWe recommend limiting the <b>maximum length of the label text to 20 characters</b>,\nincluding empty spaces to split words.",
33949
- "fieldName": "label"
33950
- },
33951
- {
33952
- "name": "icon-name",
33953
- "type": {
33954
- "text": "IconNames | undefined"
33955
- },
33956
- "description": "Name of the icon (= filename).\n\nIf no `icon-name` is provided, no icon will be rendered.",
33957
- "fieldName": "iconName",
33958
- "inheritedFrom": {
33959
- "name": "IconNameMixin",
33960
- "module": "src/utils/mixins/IconNameMixin.ts"
33961
- }
33962
- }
33963
- ],
33964
- "mixins": [
33965
- {
33966
- "name": "IconNameMixin",
33967
- "module": "/src/utils/mixins/IconNameMixin"
33968
- }
33969
- ],
33970
- "superclass": {
33971
- "name": "Component",
33972
- "module": "/src/models"
33973
- },
33974
- "tagName": "mdc-staticchip",
33975
- "jsDoc": "/**\n * mdc-staticchip is an static element that can be used to represent a chip. It supports a leading icon along with label.\n *\n * It is recommended to keep the label text for the chip component concise and compact.\n * For best results, we recommend limiting the <b>maximum length of the label text to 20 characters</b>, including empty spaces to split words.\n *\n *\n * @tagname mdc-staticchip\n *\n * @dependency mdc-icon\n * @dependency mdc-text\n *\n * @cssproperty --mdc-chip-color - The color of the static chip.\n * @cssproperty --mdc-chip-border-color - The border color of the static chip.\n * @cssproperty --mdc-chip-background-color - The background color of the static chip.\n *\n */",
33976
- "customElement": true
33977
- }
33978
- ],
33979
- "exports": [
33980
- {
33981
- "kind": "js",
33982
- "name": "default",
33983
- "declaration": {
33984
- "name": "StaticChip",
33985
- "module": "components/staticchip/staticchip.component.js"
33986
- }
33987
- }
33988
- ]
33989
- },
33990
33652
  {
33991
33653
  "kind": "javascript-module",
33992
33654
  "path": "components/slider/slider.component.js",
@@ -34499,6 +34161,416 @@
34499
34161
  }
34500
34162
  ]
34501
34163
  },
34164
+ {
34165
+ "kind": "javascript-module",
34166
+ "path": "components/spinner/spinner.component.js",
34167
+ "declarations": [
34168
+ {
34169
+ "kind": "class",
34170
+ "description": "`mdc-spinner` is loading spinner which is an indeterminate progress indicator, meaning\nit's best for cases where the progress or duration of a process is variable or unknown.\n\nSpinner Variants:\n- **Standalone (Default)**: Track has a blue color.\n- **Button**: To be used when placed in a button to show that the button’s action is currently in progress.\nTo ensure a minimum 3:1 contrast ratio, the color is changed internally to be the same color as the button’s\nicon or label text.\n\nSpinner Sizes:\n- **Large (96px)**: Use when replacing entire regions or pages that are still loading\n- **MidSize (48px) (Default)**: Use for most use cases.\n- **Small (24px)**: Use for inline with loading text.\n\nCustomisation of the spinner size is allowed by setting the size to undefined and using the --mdc-spinner-size\nCSS property.\n\nSpinner Colors:\n- **Default**: Use for most use cases.\n- **Inverted**: Only to be used within inverted components, such as coachmarks.\n\nRegarding accessibility, if an aria-label is provided, the role will be set to 'img'; if it is absent, the role\nwill be unset\nand aria-hidden will be set to 'true' so the spinner will be ignored by screen readers.",
34171
+ "name": "Spinner",
34172
+ "cssProperties": [
34173
+ {
34174
+ "description": "Allows customization of the default spinner color.",
34175
+ "name": "--mdc-spinner-default-color"
34176
+ },
34177
+ {
34178
+ "description": "Allows customization of the inverted spinner color.",
34179
+ "name": "--mdc-spinner-inverted-color"
34180
+ },
34181
+ {
34182
+ "description": "Allows customization of the spinner Button variant color.",
34183
+ "name": "--mdc-spinner-button-variant-color"
34184
+ },
34185
+ {
34186
+ "description": "Allows customization of the spinner size.",
34187
+ "name": "--mdc-spinner-size"
34188
+ }
34189
+ ],
34190
+ "cssParts": [
34191
+ {
34192
+ "description": "The svg which contains the circle spinner.",
34193
+ "name": "container"
34194
+ },
34195
+ {
34196
+ "description": "The circle of the spinner.",
34197
+ "name": "circle"
34198
+ }
34199
+ ],
34200
+ "members": [
34201
+ {
34202
+ "kind": "field",
34203
+ "name": "inverted",
34204
+ "type": {
34205
+ "text": "boolean | undefined"
34206
+ },
34207
+ "description": "The spinner color can be inverted by setting the inverted attribute to true.",
34208
+ "default": "false",
34209
+ "attribute": "inverted",
34210
+ "reflects": true
34211
+ },
34212
+ {
34213
+ "kind": "field",
34214
+ "name": "size",
34215
+ "type": {
34216
+ "text": "SpinnerSize | undefined"
34217
+ },
34218
+ "description": "Size of the spinner.\nAcceptable values include:\n\n- 'small'\n- 'midsize'\n- 'large'\n- 'undefined'",
34219
+ "default": "midsize",
34220
+ "attribute": "size",
34221
+ "reflects": true
34222
+ },
34223
+ {
34224
+ "kind": "field",
34225
+ "name": "ariaLabel",
34226
+ "type": {
34227
+ "text": "string | null"
34228
+ },
34229
+ "default": "null",
34230
+ "description": "Aria-label attribute to be set for accessibility",
34231
+ "attribute": "aria-label"
34232
+ },
34233
+ {
34234
+ "kind": "field",
34235
+ "name": "variant",
34236
+ "type": {
34237
+ "text": "SpinnerVariant"
34238
+ },
34239
+ "description": "There are 2 variants of spinner: default and button. Their coloring is different.\n- **Standalone (Default)**: Track has a blue color.\n- **Button**: To be used when placed in a button to show that the button’s action is currently in progress.\nTo ensure a minimum 3:1 contrast ratio, change the active indicator color to be the same color as the button’s\nicon or label text.",
34240
+ "default": "standalone",
34241
+ "attribute": "variant",
34242
+ "reflects": true
34243
+ }
34244
+ ],
34245
+ "attributes": [
34246
+ {
34247
+ "name": "inverted",
34248
+ "type": {
34249
+ "text": "boolean | undefined"
34250
+ },
34251
+ "description": "The spinner color can be inverted by setting the inverted attribute to true.",
34252
+ "default": "false",
34253
+ "fieldName": "inverted"
34254
+ },
34255
+ {
34256
+ "name": "size",
34257
+ "type": {
34258
+ "text": "SpinnerSize | undefined"
34259
+ },
34260
+ "description": "Size of the spinner.\nAcceptable values include:\n\n- 'small'\n- 'midsize'\n- 'large'\n- 'undefined'",
34261
+ "default": "midsize",
34262
+ "fieldName": "size"
34263
+ },
34264
+ {
34265
+ "name": "aria-label",
34266
+ "type": {
34267
+ "text": "string | null"
34268
+ },
34269
+ "default": "null",
34270
+ "description": "Aria-label attribute to be set for accessibility",
34271
+ "fieldName": "ariaLabel"
34272
+ },
34273
+ {
34274
+ "name": "variant",
34275
+ "type": {
34276
+ "text": "SpinnerVariant"
34277
+ },
34278
+ "description": "There are 2 variants of spinner: default and button. Their coloring is different.\n- **Standalone (Default)**: Track has a blue color.\n- **Button**: To be used when placed in a button to show that the button’s action is currently in progress.\nTo ensure a minimum 3:1 contrast ratio, change the active indicator color to be the same color as the button’s\nicon or label text.",
34279
+ "default": "standalone",
34280
+ "fieldName": "variant"
34281
+ }
34282
+ ],
34283
+ "superclass": {
34284
+ "name": "Component",
34285
+ "module": "/src/models"
34286
+ },
34287
+ "tagName": "mdc-spinner",
34288
+ "jsDoc": "/**\n * `mdc-spinner` is loading spinner which is an indeterminate progress indicator, meaning\n * it's best for cases where the progress or duration of a process is variable or unknown.\n *\n * Spinner Variants:\n * - **Standalone (Default)**: Track has a blue color.\n * - **Button**: To be used when placed in a button to show that the button’s action is currently in progress.\n * To ensure a minimum 3:1 contrast ratio, the color is changed internally to be the same color as the button’s\n * icon or label text.\n *\n * Spinner Sizes:\n * - **Large (96px)**: Use when replacing entire regions or pages that are still loading\n * - **MidSize (48px) (Default)**: Use for most use cases.\n * - **Small (24px)**: Use for inline with loading text.\n *\n * Customisation of the spinner size is allowed by setting the size to undefined and using the --mdc-spinner-size\n * CSS property.\n *\n * Spinner Colors:\n * - **Default**: Use for most use cases.\n * - **Inverted**: Only to be used within inverted components, such as coachmarks.\n *\n * Regarding accessibility, if an aria-label is provided, the role will be set to 'img'; if it is absent, the role\n * will be unset\n * and aria-hidden will be set to 'true' so the spinner will be ignored by screen readers.\n *\n * @tagname mdc-spinner\n *\n * @cssproperty --mdc-spinner-default-color - Allows customization of the default spinner color.\n * @cssproperty --mdc-spinner-inverted-color - Allows customization of the inverted spinner color.\n * @cssproperty --mdc-spinner-button-variant-color - Allows customization of the spinner Button variant color.\n * @cssproperty --mdc-spinner-size - Allows customization of the spinner size.\n *\n * @csspart container - The svg which contains the circle spinner.\n * @csspart circle - The circle of the spinner.\n */",
34289
+ "customElement": true
34290
+ }
34291
+ ],
34292
+ "exports": [
34293
+ {
34294
+ "kind": "js",
34295
+ "name": "default",
34296
+ "declaration": {
34297
+ "name": "Spinner",
34298
+ "module": "components/spinner/spinner.component.js"
34299
+ }
34300
+ }
34301
+ ]
34302
+ },
34303
+ {
34304
+ "kind": "javascript-module",
34305
+ "path": "components/staticcheckbox/staticcheckbox.component.js",
34306
+ "declarations": [
34307
+ {
34308
+ "kind": "class",
34309
+ "description": "This is a decorative component that is styled to look as a checkbox.\n\nIt has 3 properties - checked, indeterminate and disabled.\n\nWe are using the same styling that has been created for the `mdc-checkbox` component.",
34310
+ "name": "StaticCheckbox",
34311
+ "cssProperties": [
34312
+ {
34313
+ "description": "Border color in high contrast.",
34314
+ "name": "--mdc-staticcheckbox-border-color"
34315
+ },
34316
+ {
34317
+ "description": "Background color for a selected checkbox.",
34318
+ "name": "--mdc-staticcheckbox-checked-background-color"
34319
+ },
34320
+ {
34321
+ "description": "Background color for a disabled checkbox.",
34322
+ "name": "--mdc-staticcheckbox-disabled-background-color"
34323
+ },
34324
+ {
34325
+ "description": "Border color for a disabled checkbox.",
34326
+ "name": "--mdc-checkbox-disabled-border-color"
34327
+ },
34328
+ {
34329
+ "description": "Background color for a disabled, selected checkbox.",
34330
+ "name": "--mdc-checkbox-disabled-checked-icon-color"
34331
+ },
34332
+ {
34333
+ "description": "Icon color for a disabled checkbox.",
34334
+ "name": "--mdc-staticcheckbox-disabled-icon-color"
34335
+ },
34336
+ {
34337
+ "description": "Background color for an unselected checkbox.",
34338
+ "name": "--mdc-staticcheckbox-icon-background-color"
34339
+ },
34340
+ {
34341
+ "description": "Default background color for an unselected checkbox.",
34342
+ "name": "--mdc-staticcheckbox-icon-border-color"
34343
+ },
34344
+ {
34345
+ "description": "Icon color for an unselected checkbox.",
34346
+ "name": "--mdc-staticcheckbox-icon-color"
34347
+ }
34348
+ ],
34349
+ "members": [
34350
+ {
34351
+ "kind": "field",
34352
+ "name": "checked",
34353
+ "type": {
34354
+ "text": "boolean"
34355
+ },
34356
+ "default": "false",
34357
+ "description": "Determines whether the checkbox is selected or unselected.",
34358
+ "attribute": "checked",
34359
+ "reflects": true
34360
+ },
34361
+ {
34362
+ "kind": "field",
34363
+ "name": "indeterminate",
34364
+ "type": {
34365
+ "text": "boolean"
34366
+ },
34367
+ "default": "false",
34368
+ "description": "Determines whether the checkbox is in an indeterminate state.",
34369
+ "attribute": "indeterminate",
34370
+ "reflects": true
34371
+ },
34372
+ {
34373
+ "kind": "field",
34374
+ "name": "disabled",
34375
+ "type": {
34376
+ "text": "boolean | undefined"
34377
+ },
34378
+ "description": "Indicates whether the component is disabled.\nWhen the component is disabled for user interaction; it is not focusable or clickable.",
34379
+ "default": "undefined",
34380
+ "attribute": "disabled",
34381
+ "reflects": true,
34382
+ "inheritedFrom": {
34383
+ "name": "DisabledMixin",
34384
+ "module": "utils/mixins/DisabledMixin.js"
34385
+ }
34386
+ }
34387
+ ],
34388
+ "attributes": [
34389
+ {
34390
+ "name": "checked",
34391
+ "type": {
34392
+ "text": "boolean"
34393
+ },
34394
+ "default": "false",
34395
+ "description": "Determines whether the checkbox is selected or unselected.",
34396
+ "fieldName": "checked"
34397
+ },
34398
+ {
34399
+ "name": "indeterminate",
34400
+ "type": {
34401
+ "text": "boolean"
34402
+ },
34403
+ "default": "false",
34404
+ "description": "Determines whether the checkbox is in an indeterminate state.",
34405
+ "fieldName": "indeterminate"
34406
+ },
34407
+ {
34408
+ "name": "disabled",
34409
+ "type": {
34410
+ "text": "boolean | undefined"
34411
+ },
34412
+ "description": "Indicates whether the component is disabled.\nWhen the component is disabled for user interaction; it is not focusable or clickable.",
34413
+ "default": "undefined",
34414
+ "fieldName": "disabled",
34415
+ "inheritedFrom": {
34416
+ "name": "DisabledMixin",
34417
+ "module": "src/utils/mixins/DisabledMixin.ts"
34418
+ }
34419
+ }
34420
+ ],
34421
+ "mixins": [
34422
+ {
34423
+ "name": "DisabledMixin",
34424
+ "module": "/src/utils/mixins/DisabledMixin"
34425
+ }
34426
+ ],
34427
+ "superclass": {
34428
+ "name": "Component",
34429
+ "module": "/src/models"
34430
+ },
34431
+ "tagName": "mdc-staticcheckbox",
34432
+ "jsDoc": "/**\n * This is a decorative component that is styled to look as a checkbox.\n *\n * It has 3 properties - checked, indeterminate and disabled.\n *\n * We are using the same styling that has been created for the `mdc-checkbox` component.\n *\n * @tagname mdc-staticcheckbox\n *\n * @dependency mdc-icon\n *\n * @cssproperty --mdc-staticcheckbox-border-color - Border color in high contrast.\n * @cssproperty --mdc-staticcheckbox-checked-background-color - Background color for a selected checkbox.\n * @cssproperty --mdc-staticcheckbox-disabled-background-color - Background color for a disabled checkbox.\n * @cssproperty --mdc-checkbox-disabled-border-color - Border color for a disabled checkbox.\n * @cssproperty --mdc-checkbox-disabled-checked-icon-color - Background color for a disabled, selected checkbox.\n * @cssproperty --mdc-staticcheckbox-disabled-icon-color - Icon color for a disabled checkbox.\n * @cssproperty --mdc-staticcheckbox-icon-background-color - Background color for an unselected checkbox.\n * @cssproperty --mdc-staticcheckbox-icon-border-color - Default background color for an unselected checkbox.\n * @cssproperty --mdc-staticcheckbox-icon-color - Icon color for an unselected checkbox.\n *\n */",
34433
+ "customElement": true
34434
+ }
34435
+ ],
34436
+ "exports": [
34437
+ {
34438
+ "kind": "js",
34439
+ "name": "default",
34440
+ "declaration": {
34441
+ "name": "StaticCheckbox",
34442
+ "module": "components/staticcheckbox/staticcheckbox.component.js"
34443
+ }
34444
+ }
34445
+ ]
34446
+ },
34447
+ {
34448
+ "kind": "javascript-module",
34449
+ "path": "components/staticchip/staticchip.component.js",
34450
+ "declarations": [
34451
+ {
34452
+ "kind": "class",
34453
+ "description": "mdc-staticchip is an static element that can be used to represent a chip. It supports a leading icon along with label.\n\nIt is recommended to keep the label text for the chip component concise and compact.\nFor best results, we recommend limiting the <b>maximum length of the label text to 20 characters</b>, including empty spaces to split words.",
34454
+ "name": "StaticChip",
34455
+ "cssProperties": [
34456
+ {
34457
+ "description": "The color of the static chip.",
34458
+ "name": "--mdc-chip-color"
34459
+ },
34460
+ {
34461
+ "description": "The border color of the static chip.",
34462
+ "name": "--mdc-chip-border-color"
34463
+ },
34464
+ {
34465
+ "description": "The background color of the static chip.",
34466
+ "name": "--mdc-chip-background-color"
34467
+ }
34468
+ ],
34469
+ "members": [
34470
+ {
34471
+ "kind": "field",
34472
+ "name": "color",
34473
+ "type": {
34474
+ "text": "ColorType"
34475
+ },
34476
+ "description": "The color of the chip. It supports the following colors\n- default\n- cobalt\n- gold\n- lime\n- mint\n- orange\n- pink\n- purple\n- slate\n- violet",
34477
+ "default": "default",
34478
+ "attribute": "color",
34479
+ "reflects": true
34480
+ },
34481
+ {
34482
+ "kind": "field",
34483
+ "name": "label",
34484
+ "type": {
34485
+ "text": "string"
34486
+ },
34487
+ "default": "''",
34488
+ "description": "The visible label text of the chip.\n\nWe recommend limiting the <b>maximum length of the label text to 20 characters</b>,\nincluding empty spaces to split words.",
34489
+ "attribute": "label"
34490
+ },
34491
+ {
34492
+ "kind": "method",
34493
+ "name": "renderIcon",
34494
+ "privacy": "private",
34495
+ "description": "Renders the icon element if available.",
34496
+ "return": {
34497
+ "type": {
34498
+ "text": ""
34499
+ }
34500
+ }
34501
+ },
34502
+ {
34503
+ "kind": "field",
34504
+ "name": "iconName",
34505
+ "type": {
34506
+ "text": "IconNames | undefined"
34507
+ },
34508
+ "description": "Name of the icon (= filename).\n\nIf no `icon-name` is provided, no icon will be rendered.",
34509
+ "attribute": "icon-name",
34510
+ "inheritedFrom": {
34511
+ "name": "IconNameMixin",
34512
+ "module": "utils/mixins/IconNameMixin.js"
34513
+ }
34514
+ }
34515
+ ],
34516
+ "attributes": [
34517
+ {
34518
+ "name": "color",
34519
+ "type": {
34520
+ "text": "ColorType"
34521
+ },
34522
+ "description": "The color of the chip. It supports the following colors\n- default\n- cobalt\n- gold\n- lime\n- mint\n- orange\n- pink\n- purple\n- slate\n- violet",
34523
+ "default": "default",
34524
+ "fieldName": "color"
34525
+ },
34526
+ {
34527
+ "name": "label",
34528
+ "type": {
34529
+ "text": "string"
34530
+ },
34531
+ "default": "''",
34532
+ "description": "The visible label text of the chip.\n\nWe recommend limiting the <b>maximum length of the label text to 20 characters</b>,\nincluding empty spaces to split words.",
34533
+ "fieldName": "label"
34534
+ },
34535
+ {
34536
+ "name": "icon-name",
34537
+ "type": {
34538
+ "text": "IconNames | undefined"
34539
+ },
34540
+ "description": "Name of the icon (= filename).\n\nIf no `icon-name` is provided, no icon will be rendered.",
34541
+ "fieldName": "iconName",
34542
+ "inheritedFrom": {
34543
+ "name": "IconNameMixin",
34544
+ "module": "src/utils/mixins/IconNameMixin.ts"
34545
+ }
34546
+ }
34547
+ ],
34548
+ "mixins": [
34549
+ {
34550
+ "name": "IconNameMixin",
34551
+ "module": "/src/utils/mixins/IconNameMixin"
34552
+ }
34553
+ ],
34554
+ "superclass": {
34555
+ "name": "Component",
34556
+ "module": "/src/models"
34557
+ },
34558
+ "tagName": "mdc-staticchip",
34559
+ "jsDoc": "/**\n * mdc-staticchip is an static element that can be used to represent a chip. It supports a leading icon along with label.\n *\n * It is recommended to keep the label text for the chip component concise and compact.\n * For best results, we recommend limiting the <b>maximum length of the label text to 20 characters</b>, including empty spaces to split words.\n *\n *\n * @tagname mdc-staticchip\n *\n * @dependency mdc-icon\n * @dependency mdc-text\n *\n * @cssproperty --mdc-chip-color - The color of the static chip.\n * @cssproperty --mdc-chip-border-color - The border color of the static chip.\n * @cssproperty --mdc-chip-background-color - The background color of the static chip.\n *\n */",
34560
+ "customElement": true
34561
+ }
34562
+ ],
34563
+ "exports": [
34564
+ {
34565
+ "kind": "js",
34566
+ "name": "default",
34567
+ "declaration": {
34568
+ "name": "StaticChip",
34569
+ "module": "components/staticchip/staticchip.component.js"
34570
+ }
34571
+ }
34572
+ ]
34573
+ },
34502
34574
  {
34503
34575
  "kind": "javascript-module",
34504
34576
  "path": "components/staticradio/staticradio.component.js",
@@ -35303,6 +35375,184 @@
35303
35375
  }
35304
35376
  ]
35305
35377
  },
35378
+ {
35379
+ "kind": "javascript-module",
35380
+ "path": "components/tablist/tablist.component.js",
35381
+ "declarations": [
35382
+ {
35383
+ "kind": "class",
35384
+ "description": "Tab list organizes tabs into a container.\n\nChildren of the tab list are `mdc-tab` elements, sent to the default slot.\n\nThe tabs can be navigated using the left/right arrow keys, and selected by clicking,\n or pressing the Enter and Space keys.\n\n**Implicit accessibility rules**\n\n- The element that serves as the container for the set of tabs has role `tablist`.\n- Each element that serves as a tab has role `tab` and is contained within the element with role `tablist`.\n- The active tab element has the state `aria-selected` set to `true`\n and all other tab elements have it set to `false`.\n\n\n**Accessibility notes for consuming (have to be explicitly set when you consume the component)**\n\n- Each element that contains the `content panel` for a `tab` has role `tabpanel`.\n- The `tablist` element needs to have a label provided by `data-aria-label`.\n- Each element with role `tab` has the property `aria-controls`\n that should refer to its associated `tabpanel` element.\n- Each element with role `tabpanel` has the property `aria-labelledby` referring to its associated `tab` element.\n- If a `tab` element has a popup menu, it needs to have the property `aria-haspopup` set to either `menu` or `true`.",
35385
+ "name": "TabList",
35386
+ "cssProperties": [
35387
+ {
35388
+ "description": "Gap between tabs",
35389
+ "name": "--mdc-tablist-gap"
35390
+ },
35391
+ {
35392
+ "description": "Width of the tablist",
35393
+ "name": "--mdc-tablist-width"
35394
+ },
35395
+ {
35396
+ "description": "Margin value for the arrow button",
35397
+ "name": "--mdc-tablist-arrow-button-margin"
35398
+ }
35399
+ ],
35400
+ "slots": [
35401
+ {
35402
+ "description": "slot for mdc-tab elements.",
35403
+ "name": "Default"
35404
+ }
35405
+ ],
35406
+ "members": [
35407
+ {
35408
+ "kind": "field",
35409
+ "name": "activeTabId",
35410
+ "type": {
35411
+ "text": "string | undefined"
35412
+ },
35413
+ "description": "ID of the active tab, defaults to the first tab if not provided",
35414
+ "attribute": "active-tab-id",
35415
+ "reflects": true
35416
+ },
35417
+ {
35418
+ "kind": "field",
35419
+ "name": "dataAriaLabel",
35420
+ "type": {
35421
+ "text": "string | undefined"
35422
+ },
35423
+ "description": "Label for the tablist.\nThis is used when the tablist does not have a visible label.",
35424
+ "attribute": "data-aria-label"
35425
+ }
35426
+ ],
35427
+ "events": [
35428
+ {
35429
+ "description": "(React: onChange) This event is dispatched when the tab is selected. Event that fires when user changes the active tab. The function sent as the argument will receive the fired event and the new tab id can be fetched from event.detail.tabId. `(event: CustomEvent) => handleTabChange(event.detail.tabId);`",
35430
+ "name": "change",
35431
+ "reactName": "onChange"
35432
+ }
35433
+ ],
35434
+ "attributes": [
35435
+ {
35436
+ "name": "active-tab-id",
35437
+ "type": {
35438
+ "text": "string | undefined"
35439
+ },
35440
+ "description": "ID of the active tab, defaults to the first tab if not provided",
35441
+ "fieldName": "activeTabId"
35442
+ },
35443
+ {
35444
+ "name": "data-aria-label",
35445
+ "type": {
35446
+ "text": "string | undefined"
35447
+ },
35448
+ "description": "Label for the tablist.\nThis is used when the tablist does not have a visible label.",
35449
+ "fieldName": "dataAriaLabel"
35450
+ }
35451
+ ],
35452
+ "superclass": {
35453
+ "name": "Component",
35454
+ "module": "/src/models"
35455
+ },
35456
+ "tagName": "mdc-tablist",
35457
+ "jsDoc": "/**\n * Tab list organizes tabs into a container.\n *\n * Children of the tab list are `mdc-tab` elements, sent to the default slot.\n *\n * The tabs can be navigated using the left/right arrow keys, and selected by clicking,\n * or pressing the Enter and Space keys.\n *\n * **Implicit accessibility rules**\n *\n * - The element that serves as the container for the set of tabs has role `tablist`.\n * - Each element that serves as a tab has role `tab` and is contained within the element with role `tablist`.\n * - The active tab element has the state `aria-selected` set to `true`\n * and all other tab elements have it set to `false`.\n *\n *\n * **Accessibility notes for consuming (have to be explicitly set when you consume the component)**\n *\n * - Each element that contains the `content panel` for a `tab` has role `tabpanel`.\n * - The `tablist` element needs to have a label provided by `data-aria-label`.\n * - Each element with role `tab` has the property `aria-controls`\n * that should refer to its associated `tabpanel` element.\n * - Each element with role `tabpanel` has the property `aria-labelledby` referring to its associated `tab` element.\n * - If a `tab` element has a popup menu, it needs to have the property `aria-haspopup` set to either `menu` or `true`.\n *\n * @tagname mdc-tablist\n *\n * @dependency mdc-tab\n * @dependency mdc-button\n *\n * @event change - (React: onChange) This event is dispatched when the tab is selected.\n * Event that fires when user changes the active tab.\n * The function sent as the argument will receive the fired event\n * and the new tab id can be fetched from event.detail.tabId.\n *\n * `(event: CustomEvent) => handleTabChange(event.detail.tabId);`\n *\n * @slot Default slot for mdc-tab elements.\n *\n * @cssproperty --mdc-tablist-gap - Gap between tabs\n * @cssproperty --mdc-tablist-width - Width of the tablist\n * @cssproperty --mdc-tablist-arrow-button-margin - Margin value for the arrow button\n */",
35458
+ "customElement": true
35459
+ }
35460
+ ],
35461
+ "exports": [
35462
+ {
35463
+ "kind": "js",
35464
+ "name": "default",
35465
+ "declaration": {
35466
+ "name": "TabList",
35467
+ "module": "components/tablist/tablist.component.js"
35468
+ }
35469
+ }
35470
+ ]
35471
+ },
35472
+ {
35473
+ "kind": "javascript-module",
35474
+ "path": "components/text/text.component.js",
35475
+ "declarations": [
35476
+ {
35477
+ "kind": "class",
35478
+ "description": "Text component for creating styled text elements.\nIt has to be mounted within the ThemeProvider to access color and font tokens.\n\nThe `type` attribute allows changing the text style.\nThe `tagname` attribute allows changing the tag name of the text element.\nThe default tag name is `p`.\n\nThe `tagname` attribute should be a valid HTML tag name.\nIf the `tagname` attribute is not a valid HTML tag name, the default tag name will be used.\n\nThe styling is applied based on the `type` attribute.",
35479
+ "name": "Text",
35480
+ "cssParts": [
35481
+ {
35482
+ "description": "The text element",
35483
+ "name": "text"
35484
+ }
35485
+ ],
35486
+ "slots": [
35487
+ {
35488
+ "description": "Default slot for text content",
35489
+ "name": ""
35490
+ }
35491
+ ],
35492
+ "members": [
35493
+ {
35494
+ "kind": "field",
35495
+ "name": "type",
35496
+ "type": {
35497
+ "text": "TextType"
35498
+ },
35499
+ "privacy": "public",
35500
+ "description": "Specifies the text style to be applied.\n\nAcceptable values include:\n\n- 'body-small-regular'\n- 'body-small-medium'\n- 'body-small-bold'\n- 'body-midsize-regular'\n- 'body-midsize-medium'\n- 'body-midsize-bold'\n- 'body-large-regular'\n- 'body-large-medium'\n- 'body-large-bold'\n- 'body-small-regular-underline'\n- 'body-small-medium-underline'\n- 'body-midsize-regular-underline'\n- 'body-midsize-medium-underline'\n- 'body-large-regular-underline'\n- 'body-large-medium-underline'\n- 'heading-small-regular'\n- 'heading-small-medium'\n- 'heading-small-bold'\n- 'heading-midsize-regular'\n- 'heading-midsize-medium'\n- 'heading-midsize-bold'\n- 'heading-large-regular'\n- 'heading-large-medium'\n- 'heading-large-bold'\n- 'heading-xlarge-regular'\n- 'heading-xlarge-medium'\n- 'heading-xlarge-bold'\n- 'headline-small-light'\n- 'headline-small-regular'",
35501
+ "default": "body-midsize-medium",
35502
+ "attribute": "type",
35503
+ "reflects": true
35504
+ },
35505
+ {
35506
+ "kind": "field",
35507
+ "name": "tagname",
35508
+ "type": {
35509
+ "text": "TagName | undefined"
35510
+ },
35511
+ "privacy": "public",
35512
+ "description": "Specifies the HTML tag name for the text element. The default tag name is `p`.\nThis attribute is optional. When set, it changes the tag name of the text element.\n\nAcceptable values include:\n\n- 'h1'\n- 'h2'\n- 'h3'\n- 'h4'\n- 'h5'\n- 'h6'\n- 'p'\n- 'small'\n- 'span'\n- 'div'\n\nFor instance, setting this attribute to `h2` will render the text element as an `h2` element.\nNote that the styling is determined by the `type` attribute.",
35513
+ "attribute": "tagname",
35514
+ "reflects": true
35515
+ }
35516
+ ],
35517
+ "attributes": [
35518
+ {
35519
+ "name": "type",
35520
+ "type": {
35521
+ "text": "TextType"
35522
+ },
35523
+ "description": "Specifies the text style to be applied.\n\nAcceptable values include:\n\n- 'body-small-regular'\n- 'body-small-medium'\n- 'body-small-bold'\n- 'body-midsize-regular'\n- 'body-midsize-medium'\n- 'body-midsize-bold'\n- 'body-large-regular'\n- 'body-large-medium'\n- 'body-large-bold'\n- 'body-small-regular-underline'\n- 'body-small-medium-underline'\n- 'body-midsize-regular-underline'\n- 'body-midsize-medium-underline'\n- 'body-large-regular-underline'\n- 'body-large-medium-underline'\n- 'heading-small-regular'\n- 'heading-small-medium'\n- 'heading-small-bold'\n- 'heading-midsize-regular'\n- 'heading-midsize-medium'\n- 'heading-midsize-bold'\n- 'heading-large-regular'\n- 'heading-large-medium'\n- 'heading-large-bold'\n- 'heading-xlarge-regular'\n- 'heading-xlarge-medium'\n- 'heading-xlarge-bold'\n- 'headline-small-light'\n- 'headline-small-regular'",
35524
+ "default": "body-midsize-medium",
35525
+ "fieldName": "type"
35526
+ },
35527
+ {
35528
+ "name": "tagname",
35529
+ "type": {
35530
+ "text": "TagName | undefined"
35531
+ },
35532
+ "description": "Specifies the HTML tag name for the text element. The default tag name is `p`.\nThis attribute is optional. When set, it changes the tag name of the text element.\n\nAcceptable values include:\n\n- 'h1'\n- 'h2'\n- 'h3'\n- 'h4'\n- 'h5'\n- 'h6'\n- 'p'\n- 'small'\n- 'span'\n- 'div'\n\nFor instance, setting this attribute to `h2` will render the text element as an `h2` element.\nNote that the styling is determined by the `type` attribute.",
35533
+ "fieldName": "tagname"
35534
+ }
35535
+ ],
35536
+ "superclass": {
35537
+ "name": "Component",
35538
+ "module": "/src/models"
35539
+ },
35540
+ "tagName": "mdc-text",
35541
+ "jsDoc": "/**\n * Text component for creating styled text elements.\n * It has to be mounted within the ThemeProvider to access color and font tokens.\n *\n * The `type` attribute allows changing the text style.\n * The `tagname` attribute allows changing the tag name of the text element.\n * The default tag name is `p`.\n *\n * The `tagname` attribute should be a valid HTML tag name.\n * If the `tagname` attribute is not a valid HTML tag name, the default tag name will be used.\n *\n * The styling is applied based on the `type` attribute.\n *\n * @tagname mdc-text\n * @slot - Default slot for text content\n *\n * @csspart text - The text element\n */",
35542
+ "customElement": true
35543
+ }
35544
+ ],
35545
+ "exports": [
35546
+ {
35547
+ "kind": "js",
35548
+ "name": "default",
35549
+ "declaration": {
35550
+ "name": "Text",
35551
+ "module": "components/text/text.component.js"
35552
+ }
35553
+ }
35554
+ ]
35555
+ },
35306
35556
  {
35307
35557
  "kind": "javascript-module",
35308
35558
  "path": "components/tab/tab.component.js",
@@ -36170,184 +36420,6 @@
36170
36420
  }
36171
36421
  ]
36172
36422
  },
36173
- {
36174
- "kind": "javascript-module",
36175
- "path": "components/tablist/tablist.component.js",
36176
- "declarations": [
36177
- {
36178
- "kind": "class",
36179
- "description": "Tab list organizes tabs into a container.\n\nChildren of the tab list are `mdc-tab` elements, sent to the default slot.\n\nThe tabs can be navigated using the left/right arrow keys, and selected by clicking,\n or pressing the Enter and Space keys.\n\n**Implicit accessibility rules**\n\n- The element that serves as the container for the set of tabs has role `tablist`.\n- Each element that serves as a tab has role `tab` and is contained within the element with role `tablist`.\n- The active tab element has the state `aria-selected` set to `true`\n and all other tab elements have it set to `false`.\n\n\n**Accessibility notes for consuming (have to be explicitly set when you consume the component)**\n\n- Each element that contains the `content panel` for a `tab` has role `tabpanel`.\n- The `tablist` element needs to have a label provided by `data-aria-label`.\n- Each element with role `tab` has the property `aria-controls`\n that should refer to its associated `tabpanel` element.\n- Each element with role `tabpanel` has the property `aria-labelledby` referring to its associated `tab` element.\n- If a `tab` element has a popup menu, it needs to have the property `aria-haspopup` set to either `menu` or `true`.",
36180
- "name": "TabList",
36181
- "cssProperties": [
36182
- {
36183
- "description": "Gap between tabs",
36184
- "name": "--mdc-tablist-gap"
36185
- },
36186
- {
36187
- "description": "Width of the tablist",
36188
- "name": "--mdc-tablist-width"
36189
- },
36190
- {
36191
- "description": "Margin value for the arrow button",
36192
- "name": "--mdc-tablist-arrow-button-margin"
36193
- }
36194
- ],
36195
- "slots": [
36196
- {
36197
- "description": "slot for mdc-tab elements.",
36198
- "name": "Default"
36199
- }
36200
- ],
36201
- "members": [
36202
- {
36203
- "kind": "field",
36204
- "name": "activeTabId",
36205
- "type": {
36206
- "text": "string | undefined"
36207
- },
36208
- "description": "ID of the active tab, defaults to the first tab if not provided",
36209
- "attribute": "active-tab-id",
36210
- "reflects": true
36211
- },
36212
- {
36213
- "kind": "field",
36214
- "name": "dataAriaLabel",
36215
- "type": {
36216
- "text": "string | undefined"
36217
- },
36218
- "description": "Label for the tablist.\nThis is used when the tablist does not have a visible label.",
36219
- "attribute": "data-aria-label"
36220
- }
36221
- ],
36222
- "events": [
36223
- {
36224
- "description": "(React: onChange) This event is dispatched when the tab is selected. Event that fires when user changes the active tab. The function sent as the argument will receive the fired event and the new tab id can be fetched from event.detail.tabId. `(event: CustomEvent) => handleTabChange(event.detail.tabId);`",
36225
- "name": "change",
36226
- "reactName": "onChange"
36227
- }
36228
- ],
36229
- "attributes": [
36230
- {
36231
- "name": "active-tab-id",
36232
- "type": {
36233
- "text": "string | undefined"
36234
- },
36235
- "description": "ID of the active tab, defaults to the first tab if not provided",
36236
- "fieldName": "activeTabId"
36237
- },
36238
- {
36239
- "name": "data-aria-label",
36240
- "type": {
36241
- "text": "string | undefined"
36242
- },
36243
- "description": "Label for the tablist.\nThis is used when the tablist does not have a visible label.",
36244
- "fieldName": "dataAriaLabel"
36245
- }
36246
- ],
36247
- "superclass": {
36248
- "name": "Component",
36249
- "module": "/src/models"
36250
- },
36251
- "tagName": "mdc-tablist",
36252
- "jsDoc": "/**\n * Tab list organizes tabs into a container.\n *\n * Children of the tab list are `mdc-tab` elements, sent to the default slot.\n *\n * The tabs can be navigated using the left/right arrow keys, and selected by clicking,\n * or pressing the Enter and Space keys.\n *\n * **Implicit accessibility rules**\n *\n * - The element that serves as the container for the set of tabs has role `tablist`.\n * - Each element that serves as a tab has role `tab` and is contained within the element with role `tablist`.\n * - The active tab element has the state `aria-selected` set to `true`\n * and all other tab elements have it set to `false`.\n *\n *\n * **Accessibility notes for consuming (have to be explicitly set when you consume the component)**\n *\n * - Each element that contains the `content panel` for a `tab` has role `tabpanel`.\n * - The `tablist` element needs to have a label provided by `data-aria-label`.\n * - Each element with role `tab` has the property `aria-controls`\n * that should refer to its associated `tabpanel` element.\n * - Each element with role `tabpanel` has the property `aria-labelledby` referring to its associated `tab` element.\n * - If a `tab` element has a popup menu, it needs to have the property `aria-haspopup` set to either `menu` or `true`.\n *\n * @tagname mdc-tablist\n *\n * @dependency mdc-tab\n * @dependency mdc-button\n *\n * @event change - (React: onChange) This event is dispatched when the tab is selected.\n * Event that fires when user changes the active tab.\n * The function sent as the argument will receive the fired event\n * and the new tab id can be fetched from event.detail.tabId.\n *\n * `(event: CustomEvent) => handleTabChange(event.detail.tabId);`\n *\n * @slot Default slot for mdc-tab elements.\n *\n * @cssproperty --mdc-tablist-gap - Gap between tabs\n * @cssproperty --mdc-tablist-width - Width of the tablist\n * @cssproperty --mdc-tablist-arrow-button-margin - Margin value for the arrow button\n */",
36253
- "customElement": true
36254
- }
36255
- ],
36256
- "exports": [
36257
- {
36258
- "kind": "js",
36259
- "name": "default",
36260
- "declaration": {
36261
- "name": "TabList",
36262
- "module": "components/tablist/tablist.component.js"
36263
- }
36264
- }
36265
- ]
36266
- },
36267
- {
36268
- "kind": "javascript-module",
36269
- "path": "components/text/text.component.js",
36270
- "declarations": [
36271
- {
36272
- "kind": "class",
36273
- "description": "Text component for creating styled text elements.\nIt has to be mounted within the ThemeProvider to access color and font tokens.\n\nThe `type` attribute allows changing the text style.\nThe `tagname` attribute allows changing the tag name of the text element.\nThe default tag name is `p`.\n\nThe `tagname` attribute should be a valid HTML tag name.\nIf the `tagname` attribute is not a valid HTML tag name, the default tag name will be used.\n\nThe styling is applied based on the `type` attribute.",
36274
- "name": "Text",
36275
- "cssParts": [
36276
- {
36277
- "description": "The text element",
36278
- "name": "text"
36279
- }
36280
- ],
36281
- "slots": [
36282
- {
36283
- "description": "Default slot for text content",
36284
- "name": ""
36285
- }
36286
- ],
36287
- "members": [
36288
- {
36289
- "kind": "field",
36290
- "name": "type",
36291
- "type": {
36292
- "text": "TextType"
36293
- },
36294
- "privacy": "public",
36295
- "description": "Specifies the text style to be applied.\n\nAcceptable values include:\n\n- 'body-small-regular'\n- 'body-small-medium'\n- 'body-small-bold'\n- 'body-midsize-regular'\n- 'body-midsize-medium'\n- 'body-midsize-bold'\n- 'body-large-regular'\n- 'body-large-medium'\n- 'body-large-bold'\n- 'body-small-regular-underline'\n- 'body-small-medium-underline'\n- 'body-midsize-regular-underline'\n- 'body-midsize-medium-underline'\n- 'body-large-regular-underline'\n- 'body-large-medium-underline'\n- 'heading-small-regular'\n- 'heading-small-medium'\n- 'heading-small-bold'\n- 'heading-midsize-regular'\n- 'heading-midsize-medium'\n- 'heading-midsize-bold'\n- 'heading-large-regular'\n- 'heading-large-medium'\n- 'heading-large-bold'\n- 'heading-xlarge-regular'\n- 'heading-xlarge-medium'\n- 'heading-xlarge-bold'\n- 'headline-small-light'\n- 'headline-small-regular'",
36296
- "default": "body-midsize-medium",
36297
- "attribute": "type",
36298
- "reflects": true
36299
- },
36300
- {
36301
- "kind": "field",
36302
- "name": "tagname",
36303
- "type": {
36304
- "text": "TagName | undefined"
36305
- },
36306
- "privacy": "public",
36307
- "description": "Specifies the HTML tag name for the text element. The default tag name is `p`.\nThis attribute is optional. When set, it changes the tag name of the text element.\n\nAcceptable values include:\n\n- 'h1'\n- 'h2'\n- 'h3'\n- 'h4'\n- 'h5'\n- 'h6'\n- 'p'\n- 'small'\n- 'span'\n- 'div'\n\nFor instance, setting this attribute to `h2` will render the text element as an `h2` element.\nNote that the styling is determined by the `type` attribute.",
36308
- "attribute": "tagname",
36309
- "reflects": true
36310
- }
36311
- ],
36312
- "attributes": [
36313
- {
36314
- "name": "type",
36315
- "type": {
36316
- "text": "TextType"
36317
- },
36318
- "description": "Specifies the text style to be applied.\n\nAcceptable values include:\n\n- 'body-small-regular'\n- 'body-small-medium'\n- 'body-small-bold'\n- 'body-midsize-regular'\n- 'body-midsize-medium'\n- 'body-midsize-bold'\n- 'body-large-regular'\n- 'body-large-medium'\n- 'body-large-bold'\n- 'body-small-regular-underline'\n- 'body-small-medium-underline'\n- 'body-midsize-regular-underline'\n- 'body-midsize-medium-underline'\n- 'body-large-regular-underline'\n- 'body-large-medium-underline'\n- 'heading-small-regular'\n- 'heading-small-medium'\n- 'heading-small-bold'\n- 'heading-midsize-regular'\n- 'heading-midsize-medium'\n- 'heading-midsize-bold'\n- 'heading-large-regular'\n- 'heading-large-medium'\n- 'heading-large-bold'\n- 'heading-xlarge-regular'\n- 'heading-xlarge-medium'\n- 'heading-xlarge-bold'\n- 'headline-small-light'\n- 'headline-small-regular'",
36319
- "default": "body-midsize-medium",
36320
- "fieldName": "type"
36321
- },
36322
- {
36323
- "name": "tagname",
36324
- "type": {
36325
- "text": "TagName | undefined"
36326
- },
36327
- "description": "Specifies the HTML tag name for the text element. The default tag name is `p`.\nThis attribute is optional. When set, it changes the tag name of the text element.\n\nAcceptable values include:\n\n- 'h1'\n- 'h2'\n- 'h3'\n- 'h4'\n- 'h5'\n- 'h6'\n- 'p'\n- 'small'\n- 'span'\n- 'div'\n\nFor instance, setting this attribute to `h2` will render the text element as an `h2` element.\nNote that the styling is determined by the `type` attribute.",
36328
- "fieldName": "tagname"
36329
- }
36330
- ],
36331
- "superclass": {
36332
- "name": "Component",
36333
- "module": "/src/models"
36334
- },
36335
- "tagName": "mdc-text",
36336
- "jsDoc": "/**\n * Text component for creating styled text elements.\n * It has to be mounted within the ThemeProvider to access color and font tokens.\n *\n * The `type` attribute allows changing the text style.\n * The `tagname` attribute allows changing the tag name of the text element.\n * The default tag name is `p`.\n *\n * The `tagname` attribute should be a valid HTML tag name.\n * If the `tagname` attribute is not a valid HTML tag name, the default tag name will be used.\n *\n * The styling is applied based on the `type` attribute.\n *\n * @tagname mdc-text\n * @slot - Default slot for text content\n *\n * @csspart text - The text element\n */",
36337
- "customElement": true
36338
- }
36339
- ],
36340
- "exports": [
36341
- {
36342
- "kind": "js",
36343
- "name": "default",
36344
- "declaration": {
36345
- "name": "Text",
36346
- "module": "components/text/text.component.js"
36347
- }
36348
- }
36349
- ]
36350
- },
36351
36423
  {
36352
36424
  "kind": "javascript-module",
36353
36425
  "path": "components/textarea/textarea.component.js",