@momentum-design/components 0.120.29 → 0.120.31

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.
@@ -3253,10 +3253,6 @@
3253
3253
  }
3254
3254
  ],
3255
3255
  "cssParts": [
3256
- {
3257
- "description": "The main content of the avatar.",
3258
- "name": "content"
3259
- },
3260
3256
  {
3261
3257
  "description": "The photo of the avatar.",
3262
3258
  "name": "photo"
@@ -3385,7 +3381,7 @@
3385
3381
  "module": "/src/models"
3386
3382
  },
3387
3383
  "tagName": "mdc-avatar",
3388
- "jsDoc": "/**\n * The `mdc-avatar` component is used to represent a person or a space.\n * An avatar can be an icon, initials, counter and photo.\n *\n * To set the photo of an avatar,\n * you need to set \"src\" attribute.\n *\n * While the avatar image is loading, as a placeholder,\n * we will show the initials text.\n * If the initials are not specified then,\n * we will show `user-regular` icon as a placeholder.\n *\n * By default, if there are no attributes specified,\n * then the default avatar will be an icon with `user-regular` name.\n *\n * The avatar component is non clickable and non interactive/focusable component.\n * If the avatar is typing, then the loading indicator will be displayed.\n * If the counter type avatar is set to a negative number, then we will display 0.\n * The presence indicator will be hidden when the counter property is set.\n *\n * @dependency mdc-icon\n * @dependency mdc-presence\n * @dependency mdc-text\n *\n * @tagname mdc-avatar\n *\n * @cssproperty --mdc-avatar-default-background-color - Allows customization of the default background color.\n * @cssproperty --mdc-avatar-default-foreground-color - Allows customization of the default foreground color.\n * @cssproperty --mdc-avatar-loading-indicator-background-color -\n * Allows customization of the loading indicator background color.\n * @cssproperty --mdc-avatar-loading-indicator-foreground-color -\n * Allows customization of the loading indicator foreground color.\n * @cssproperty --mdc-avatar-loading-overlay-background-color -\n * Allows customization of the loading overlay background color.\n *\n * @csspart content - The main content of the avatar.\n * @csspart photo - The photo of the avatar.\n * @csspart presence - The presence indicator of the avatar.\n * @csspart loading-wrapper - The wrapper for the loading indicator.\n * @csspart loader - The loading indicator of the avatar.\n */",
3384
+ "jsDoc": "/**\n * The `mdc-avatar` component is used to represent a person or a space.\n * An avatar can be an icon, initials, counter and photo.\n *\n * To set the photo of an avatar,\n * you need to set \"src\" attribute.\n *\n * While the avatar image is loading, as a placeholder,\n * we will show the initials text.\n * If the initials are not specified then,\n * we will show `user-regular` icon as a placeholder.\n *\n * By default, if there are no attributes specified,\n * then the default avatar will be an icon with `user-regular` name.\n *\n * The avatar component is non clickable and non interactive/focusable component.\n * If the avatar is typing, then the loading indicator will be displayed.\n * If the counter type avatar is set to a negative number, then we will display 0.\n * The presence indicator will be hidden when the counter property is set.\n *\n * @dependency mdc-icon\n * @dependency mdc-presence\n * @dependency mdc-text\n *\n * @tagname mdc-avatar\n *\n * @cssproperty --mdc-avatar-default-background-color - Allows customization of the default background color.\n * @cssproperty --mdc-avatar-default-foreground-color - Allows customization of the default foreground color.\n * @cssproperty --mdc-avatar-loading-indicator-background-color -\n * Allows customization of the loading indicator background color.\n * @cssproperty --mdc-avatar-loading-indicator-foreground-color -\n * Allows customization of the loading indicator foreground color.\n * @cssproperty --mdc-avatar-loading-overlay-background-color -\n * Allows customization of the loading overlay background color.\n *\n * @csspart photo - The photo of the avatar.\n * @csspart presence - The presence indicator of the avatar.\n * @csspart loading-wrapper - The wrapper for the loading indicator.\n * @csspart loader - The loading indicator of the avatar.\n */",
3389
3385
  "customElement": true,
3390
3386
  "attributes": [
3391
3387
  {
@@ -4766,182 +4762,6 @@
4766
4762
  }
4767
4763
  ]
4768
4764
  },
4769
- {
4770
- "kind": "javascript-module",
4771
- "path": "components/brandvisual/brandvisual.component.js",
4772
- "declarations": [
4773
- {
4774
- "kind": "class",
4775
- "description": "The `mdc-brandvisual` component is responsible for rendering logos dynamically & ensures they are\ndisplayed correctly within applications.\n\nFeatures:\n- Dynamically loads brandvisuals based on the `name` attribute.\n- Emits a `load` event when the brandvisual is successfully fetched.\n- Emits an `error` event when the brandvisual import fails.\n- Supports accessibility best practices.\n- Used for brand representation within the design system.",
4776
- "name": "Brandvisual",
4777
- "members": [
4778
- {
4779
- "kind": "field",
4780
- "name": "brandVisualData",
4781
- "type": {
4782
- "text": "Element | TemplateResult | undefined"
4783
- },
4784
- "privacy": "private"
4785
- },
4786
- {
4787
- "kind": "field",
4788
- "name": "name",
4789
- "type": {
4790
- "text": "BrandVisualNames | undefined"
4791
- },
4792
- "description": "Name of the brandVisual (= filename)",
4793
- "attribute": "name",
4794
- "reflects": true
4795
- },
4796
- {
4797
- "kind": "field",
4798
- "name": "altText",
4799
- "type": {
4800
- "text": "string | undefined"
4801
- },
4802
- "description": "Alt text for the brandvisual image for accessibility.\nThis will only be set if the brandvisual is an image (png).",
4803
- "attribute": "altText",
4804
- "reflects": true
4805
- },
4806
- {
4807
- "kind": "method",
4808
- "name": "getBrandVisualData",
4809
- "privacy": "private"
4810
- },
4811
- {
4812
- "kind": "method",
4813
- "name": "injectTemplateAttributes",
4814
- "privacy": "private",
4815
- "return": {
4816
- "type": {
4817
- "text": "Element | TemplateResult"
4818
- }
4819
- },
4820
- "parameters": [
4821
- {
4822
- "name": "litTemplate",
4823
- "type": {
4824
- "text": "TemplateResult"
4825
- }
4826
- },
4827
- {
4828
- "name": "tag",
4829
- "type": {
4830
- "text": "string"
4831
- }
4832
- },
4833
- {
4834
- "name": "props",
4835
- "type": {
4836
- "text": "any"
4837
- }
4838
- }
4839
- ]
4840
- },
4841
- {
4842
- "kind": "method",
4843
- "name": "injectHtmlAttributes",
4844
- "privacy": "private",
4845
- "return": {
4846
- "type": {
4847
- "text": "Element"
4848
- }
4849
- },
4850
- "parameters": [
4851
- {
4852
- "name": "html",
4853
- "type": {
4854
- "text": "Element"
4855
- }
4856
- },
4857
- {
4858
- "name": "props",
4859
- "type": {
4860
- "text": "imageProps"
4861
- }
4862
- }
4863
- ]
4864
- },
4865
- {
4866
- "kind": "method",
4867
- "name": "handleBrandVisualLoadedSuccess",
4868
- "privacy": "private",
4869
- "parameters": [
4870
- {
4871
- "name": "brandVisualHtml",
4872
- "type": {
4873
- "text": "TemplateResult"
4874
- },
4875
- "description": "The brandvisual html element which has been fetched from the brandvisual provider."
4876
- }
4877
- ],
4878
- "description": "Sets the brandVisualData state to the fetched brandvisual.\nDispatches a 'load' event on the component once the brandvisual has been successfully loaded."
4879
- },
4880
- {
4881
- "kind": "method",
4882
- "name": "handleBrandVisualLoadedFailure",
4883
- "privacy": "private",
4884
- "parameters": [
4885
- {
4886
- "name": "error",
4887
- "type": {
4888
- "text": "unknown"
4889
- }
4890
- }
4891
- ],
4892
- "description": "Dispatches an 'error' event on the component when the brandvisual import has failed.\nThis event bubbles and is cancelable.\nThe error detail is set to the error object."
4893
- }
4894
- ],
4895
- "events": [
4896
- {
4897
- "description": "(React: onLoad) This event is dispatched when the brandvisual has been successfully loaded.",
4898
- "name": "load",
4899
- "reactName": "onLoad"
4900
- },
4901
- {
4902
- "description": "(React: onError) This event is dispatched when the brandvisual fetching has failed.",
4903
- "name": "error",
4904
- "reactName": "onError"
4905
- }
4906
- ],
4907
- "attributes": [
4908
- {
4909
- "name": "name",
4910
- "type": {
4911
- "text": "BrandVisualNames | undefined"
4912
- },
4913
- "description": "Name of the brandVisual (= filename)",
4914
- "fieldName": "name"
4915
- },
4916
- {
4917
- "name": "altText",
4918
- "type": {
4919
- "text": "string | undefined"
4920
- },
4921
- "description": "Alt text for the brandvisual image for accessibility.\nThis will only be set if the brandvisual is an image (png).",
4922
- "fieldName": "altText"
4923
- }
4924
- ],
4925
- "superclass": {
4926
- "name": "Component",
4927
- "module": "/src/models"
4928
- },
4929
- "tagName": "mdc-brandvisual",
4930
- "jsDoc": "/**\n * The `mdc-brandvisual` component is responsible for rendering logos dynamically & ensures they are\n * displayed correctly within applications.\n *\n * Features:\n * - Dynamically loads brandvisuals based on the `name` attribute.\n * - Emits a `load` event when the brandvisual is successfully fetched.\n * - Emits an `error` event when the brandvisual import fails.\n * - Supports accessibility best practices.\n * - Used for brand representation within the design system.\n *\n * @tagname mdc-brandvisual\n *\n * @event load - (React: onLoad) This event is dispatched when the brandvisual has been successfully loaded.\n * @event error - (React: onError) This event is dispatched when the brandvisual fetching has failed.\n *\n */",
4931
- "customElement": true
4932
- }
4933
- ],
4934
- "exports": [
4935
- {
4936
- "kind": "js",
4937
- "name": "default",
4938
- "declaration": {
4939
- "name": "Brandvisual",
4940
- "module": "components/brandvisual/brandvisual.component.js"
4941
- }
4942
- }
4943
- ]
4944
- },
4945
4765
  {
4946
4766
  "kind": "javascript-module",
4947
4767
  "path": "components/bullet/bullet.component.js",
@@ -5828,6 +5648,182 @@
5828
5648
  }
5829
5649
  ]
5830
5650
  },
5651
+ {
5652
+ "kind": "javascript-module",
5653
+ "path": "components/brandvisual/brandvisual.component.js",
5654
+ "declarations": [
5655
+ {
5656
+ "kind": "class",
5657
+ "description": "The `mdc-brandvisual` component is responsible for rendering logos dynamically & ensures they are\ndisplayed correctly within applications.\n\nFeatures:\n- Dynamically loads brandvisuals based on the `name` attribute.\n- Emits a `load` event when the brandvisual is successfully fetched.\n- Emits an `error` event when the brandvisual import fails.\n- Supports accessibility best practices.\n- Used for brand representation within the design system.",
5658
+ "name": "Brandvisual",
5659
+ "members": [
5660
+ {
5661
+ "kind": "field",
5662
+ "name": "brandVisualData",
5663
+ "type": {
5664
+ "text": "Element | TemplateResult | undefined"
5665
+ },
5666
+ "privacy": "private"
5667
+ },
5668
+ {
5669
+ "kind": "field",
5670
+ "name": "name",
5671
+ "type": {
5672
+ "text": "BrandVisualNames | undefined"
5673
+ },
5674
+ "description": "Name of the brandVisual (= filename)",
5675
+ "attribute": "name",
5676
+ "reflects": true
5677
+ },
5678
+ {
5679
+ "kind": "field",
5680
+ "name": "altText",
5681
+ "type": {
5682
+ "text": "string | undefined"
5683
+ },
5684
+ "description": "Alt text for the brandvisual image for accessibility.\nThis will only be set if the brandvisual is an image (png).",
5685
+ "attribute": "altText",
5686
+ "reflects": true
5687
+ },
5688
+ {
5689
+ "kind": "method",
5690
+ "name": "getBrandVisualData",
5691
+ "privacy": "private"
5692
+ },
5693
+ {
5694
+ "kind": "method",
5695
+ "name": "injectTemplateAttributes",
5696
+ "privacy": "private",
5697
+ "return": {
5698
+ "type": {
5699
+ "text": "Element | TemplateResult"
5700
+ }
5701
+ },
5702
+ "parameters": [
5703
+ {
5704
+ "name": "litTemplate",
5705
+ "type": {
5706
+ "text": "TemplateResult"
5707
+ }
5708
+ },
5709
+ {
5710
+ "name": "tag",
5711
+ "type": {
5712
+ "text": "string"
5713
+ }
5714
+ },
5715
+ {
5716
+ "name": "props",
5717
+ "type": {
5718
+ "text": "any"
5719
+ }
5720
+ }
5721
+ ]
5722
+ },
5723
+ {
5724
+ "kind": "method",
5725
+ "name": "injectHtmlAttributes",
5726
+ "privacy": "private",
5727
+ "return": {
5728
+ "type": {
5729
+ "text": "Element"
5730
+ }
5731
+ },
5732
+ "parameters": [
5733
+ {
5734
+ "name": "html",
5735
+ "type": {
5736
+ "text": "Element"
5737
+ }
5738
+ },
5739
+ {
5740
+ "name": "props",
5741
+ "type": {
5742
+ "text": "imageProps"
5743
+ }
5744
+ }
5745
+ ]
5746
+ },
5747
+ {
5748
+ "kind": "method",
5749
+ "name": "handleBrandVisualLoadedSuccess",
5750
+ "privacy": "private",
5751
+ "parameters": [
5752
+ {
5753
+ "name": "brandVisualHtml",
5754
+ "type": {
5755
+ "text": "TemplateResult"
5756
+ },
5757
+ "description": "The brandvisual html element which has been fetched from the brandvisual provider."
5758
+ }
5759
+ ],
5760
+ "description": "Sets the brandVisualData state to the fetched brandvisual.\nDispatches a 'load' event on the component once the brandvisual has been successfully loaded."
5761
+ },
5762
+ {
5763
+ "kind": "method",
5764
+ "name": "handleBrandVisualLoadedFailure",
5765
+ "privacy": "private",
5766
+ "parameters": [
5767
+ {
5768
+ "name": "error",
5769
+ "type": {
5770
+ "text": "unknown"
5771
+ }
5772
+ }
5773
+ ],
5774
+ "description": "Dispatches an 'error' event on the component when the brandvisual import has failed.\nThis event bubbles and is cancelable.\nThe error detail is set to the error object."
5775
+ }
5776
+ ],
5777
+ "events": [
5778
+ {
5779
+ "description": "(React: onLoad) This event is dispatched when the brandvisual has been successfully loaded.",
5780
+ "name": "load",
5781
+ "reactName": "onLoad"
5782
+ },
5783
+ {
5784
+ "description": "(React: onError) This event is dispatched when the brandvisual fetching has failed.",
5785
+ "name": "error",
5786
+ "reactName": "onError"
5787
+ }
5788
+ ],
5789
+ "attributes": [
5790
+ {
5791
+ "name": "name",
5792
+ "type": {
5793
+ "text": "BrandVisualNames | undefined"
5794
+ },
5795
+ "description": "Name of the brandVisual (= filename)",
5796
+ "fieldName": "name"
5797
+ },
5798
+ {
5799
+ "name": "altText",
5800
+ "type": {
5801
+ "text": "string | undefined"
5802
+ },
5803
+ "description": "Alt text for the brandvisual image for accessibility.\nThis will only be set if the brandvisual is an image (png).",
5804
+ "fieldName": "altText"
5805
+ }
5806
+ ],
5807
+ "superclass": {
5808
+ "name": "Component",
5809
+ "module": "/src/models"
5810
+ },
5811
+ "tagName": "mdc-brandvisual",
5812
+ "jsDoc": "/**\n * The `mdc-brandvisual` component is responsible for rendering logos dynamically & ensures they are\n * displayed correctly within applications.\n *\n * Features:\n * - Dynamically loads brandvisuals based on the `name` attribute.\n * - Emits a `load` event when the brandvisual is successfully fetched.\n * - Emits an `error` event when the brandvisual import fails.\n * - Supports accessibility best practices.\n * - Used for brand representation within the design system.\n *\n * @tagname mdc-brandvisual\n *\n * @event load - (React: onLoad) This event is dispatched when the brandvisual has been successfully loaded.\n * @event error - (React: onError) This event is dispatched when the brandvisual fetching has failed.\n *\n */",
5813
+ "customElement": true
5814
+ }
5815
+ ],
5816
+ "exports": [
5817
+ {
5818
+ "kind": "js",
5819
+ "name": "default",
5820
+ "declaration": {
5821
+ "name": "Brandvisual",
5822
+ "module": "components/brandvisual/brandvisual.component.js"
5823
+ }
5824
+ }
5825
+ ]
5826
+ },
5831
5827
  {
5832
5828
  "kind": "javascript-module",
5833
5829
  "path": "components/buttongroup/buttongroup.component.js",
@@ -46588,24 +46584,28 @@
46588
46584
  },
46589
46585
  {
46590
46586
  "kind": "javascript-module",
46591
- "path": "components/toggletip/toggletip.component.js",
46587
+ "path": "components/tooltip/tooltip.component.js",
46592
46588
  "declarations": [
46593
46589
  {
46594
46590
  "kind": "class",
46595
- "description": "A toggletip is triggered by clicking a trigger element.\n\nIt can contain interactive content and can be closed by\nclicking outside the toggletip or pressing the escape key.\n\nIt can have optional close button to close the toggletip.\n\nToggletip component uses `mdc-screenreaderannouncer` internally to\nannounce the toggletip text content with screen readers when the toggletip is shown.\n\n`screenreader-announcer-identity` attribute can be used to provide ID of an element\nin DOM to which announcement elements are added. If not set, a visually hidden\ndiv element is created in DOM to which announcement elements are added.\n\nPlease refer to the `mdc-screenreaderannouncer` component for more details.",
46596
- "name": "ToggleTip",
46591
+ "description": "A tooltip is triggered by mouse hover or by keyboard focus\nand will disappear upon mouse exit or focus change.\n\nNote: Tooltips cannot contain content that can be focused or interacted with.",
46592
+ "name": "Tooltip",
46597
46593
  "cssProperties": [
46598
46594
  {
46599
- "description": "The maximum width of the toggletip.",
46600
- "name": "--mdc-toggletip-max-width"
46595
+ "description": "The maximum width of the tooltip.",
46596
+ "name": "--mdc-tooltip-max-width"
46601
46597
  },
46602
46598
  {
46603
- "description": "The text color of the toggletip.",
46604
- "name": "--mdc-toggletip-text-color"
46599
+ "description": "The padding of the tooltip.",
46600
+ "name": "--mdc-tooltip-padding"
46605
46601
  },
46606
46602
  {
46607
- "description": "The text color of the toggletip when the color is contrast.",
46608
- "name": "--mdc-toggletip-text-color-contrast"
46603
+ "description": "The text color of the tooltip.",
46604
+ "name": "--mdc-tooltip-text-color"
46605
+ },
46606
+ {
46607
+ "description": "The text color of the tooltip when the color is contrast.",
46608
+ "name": "--mdc-tooltip-text-color-contrast"
46609
46609
  },
46610
46610
  {
46611
46611
  "description": "radius of the arrow border",
@@ -46696,53 +46696,29 @@
46696
46696
  }
46697
46697
  }
46698
46698
  ],
46699
- "slots": [
46700
- {
46701
- "description": "Default slot for the toggletip content",
46702
- "name": "",
46703
- "inheritedFrom": {
46704
- "name": "Popover",
46705
- "module": "src/components/popover/popover.component.ts"
46706
- }
46707
- }
46708
- ],
46709
46699
  "members": [
46710
46700
  {
46711
46701
  "kind": "field",
46712
- "name": "defaultSlotNodes",
46713
- "type": {
46714
- "text": "Array<Node>"
46715
- },
46716
- "privacy": "private"
46717
- },
46718
- {
46719
- "kind": "field",
46720
- "name": "screenreaderAnnouncerIdentity",
46702
+ "name": "tooltipType",
46721
46703
  "type": {
46722
- "text": "string | undefined"
46704
+ "text": "TooltipType"
46723
46705
  },
46724
- "description": "Set this attribute with the id of the element in the DOM, to which announcement\nelements will be appended.\nIf an id is provided, the announcement elements will be appended to this element.\nIf id is not provided, a visually hidden div element will be created in the DOM.\n\nPlease refer to the `mdc-screenreaderannouncer` component for more details.",
46725
- "attribute": "screenreader-announcer-identity",
46706
+ "description": "The type of tooltip.\n- **description** sets aria-describedby on the trigger component which refers to the tooltip id.\n- **label** sets aria-labelledby on the trigger component which refers to the tooltip id.\n- **none** no aria props set on trigger component referring to the tooltip id.",
46707
+ "default": "'description'",
46708
+ "attribute": "tooltip-type",
46726
46709
  "reflects": true
46727
46710
  },
46728
46711
  {
46729
46712
  "kind": "field",
46730
- "name": "placement",
46713
+ "name": "defaultSlotNodes",
46731
46714
  "type": {
46732
- "text": "PopoverPlacement"
46715
+ "text": "Array<Node>"
46733
46716
  },
46734
- "description": "The placement of the popover.\n- **top**\n- **top-start**\n- **top-end**\n- **bottom**\n- **bottom-start**\n- **bottom-end**\n- **left**\n- **left-start**\n- **left-end**\n- **right**\n- **right-start**\n- **right-end**",
46735
- "default": "bottom",
46736
- "attribute": "placement",
46737
- "reflects": true,
46738
- "inheritedFrom": {
46739
- "name": "Popover",
46740
- "module": "components/popover/popover.component.js"
46741
- }
46717
+ "privacy": "private"
46742
46718
  },
46743
46719
  {
46744
46720
  "kind": "method",
46745
- "name": "getToggleTipText",
46721
+ "name": "getTooltipText",
46746
46722
  "privacy": "private",
46747
46723
  "return": {
46748
46724
  "type": {
@@ -46750,6 +46726,37 @@
46750
46726
  }
46751
46727
  }
46752
46728
  },
46729
+ {
46730
+ "kind": "method",
46731
+ "name": "setTooltipType",
46732
+ "privacy": "private",
46733
+ "return": {
46734
+ "type": {
46735
+ "text": "void"
46736
+ }
46737
+ },
46738
+ "parameters": [
46739
+ {
46740
+ "name": "type",
46741
+ "type": {
46742
+ "text": "TooltipType"
46743
+ },
46744
+ "description": "The type to set."
46745
+ }
46746
+ ],
46747
+ "description": "Sets the type attribute for the tooltip component.\nIf the provided type is not included in the TOOLTIP_TYPES,\nit defaults to the value specified in DEFAULTS.TOOLTIP_TYPE."
46748
+ },
46749
+ {
46750
+ "kind": "method",
46751
+ "name": "onIdUpdated",
46752
+ "privacy": "private",
46753
+ "return": {
46754
+ "type": {
46755
+ "text": "Promise<void>"
46756
+ }
46757
+ },
46758
+ "description": "Updates the tooltip id if it is empty."
46759
+ },
46753
46760
  {
46754
46761
  "kind": "method",
46755
46762
  "name": "onPlacementUpdated",
@@ -46759,7 +46766,27 @@
46759
46766
  "text": "void"
46760
46767
  }
46761
46768
  },
46762
- "description": "Updates the placement attribute if it is not a valid placement.\nDefault placement for toggle tip is top."
46769
+ "description": "Updates the placement attribute if it is not a valid placement.\nOverriding the default from Popover"
46770
+ },
46771
+ {
46772
+ "kind": "method",
46773
+ "name": "onTooltipTypeUpdated",
46774
+ "privacy": "private",
46775
+ "return": {
46776
+ "type": {
46777
+ "text": "void"
46778
+ }
46779
+ },
46780
+ "parameters": [
46781
+ {
46782
+ "name": "changedProperties",
46783
+ "type": {
46784
+ "text": "PropertyValues"
46785
+ },
46786
+ "description": "The changed properties."
46787
+ }
46788
+ ],
46789
+ "description": "Updates the tooltip type attribute and sets the appropriate aria props on the trigger component."
46763
46790
  },
46764
46791
  {
46765
46792
  "kind": "field",
@@ -47351,6 +47378,21 @@
47351
47378
  "module": "components/popover/popover.component.js"
47352
47379
  }
47353
47380
  },
47381
+ {
47382
+ "kind": "field",
47383
+ "name": "placement",
47384
+ "type": {
47385
+ "text": "PopoverPlacement"
47386
+ },
47387
+ "description": "The placement of the popover.\n- **top**\n- **top-start**\n- **top-end**\n- **bottom**\n- **bottom-start**\n- **bottom-end**\n- **left**\n- **left-start**\n- **left-end**\n- **right**\n- **right-start**\n- **right-end**",
47388
+ "default": "bottom",
47389
+ "attribute": "placement",
47390
+ "reflects": true,
47391
+ "inheritedFrom": {
47392
+ "name": "Popover",
47393
+ "module": "components/popover/popover.component.js"
47394
+ }
47395
+ },
47354
47396
  {
47355
47397
  "kind": "field",
47356
47398
  "name": "color",
@@ -48052,7 +48094,7 @@
48052
48094
  ],
48053
48095
  "events": [
48054
48096
  {
48055
- "description": "(React: onShown) This event is dispatched when the toggletip is shown",
48097
+ "description": "(React: onShown) This event is dispatched when the tooltip is shown",
48056
48098
  "name": "shown",
48057
48099
  "reactName": "onShown",
48058
48100
  "inheritedFrom": {
@@ -48061,7 +48103,7 @@
48061
48103
  }
48062
48104
  },
48063
48105
  {
48064
- "description": "(React: onHidden) This event is dispatched when the toggletip is hidden",
48106
+ "description": "(React: onHidden) This event is dispatched when the tooltip is hidden",
48065
48107
  "name": "hidden",
48066
48108
  "reactName": "onHidden",
48067
48109
  "inheritedFrom": {
@@ -48070,7 +48112,7 @@
48070
48112
  }
48071
48113
  },
48072
48114
  {
48073
- "description": "(React: onCreated) This event is dispatched when the toggletip is created (added to the DOM)",
48115
+ "description": "(React: onCreated) This event is dispatched when the tooltip is created (added to the DOM)",
48074
48116
  "name": "created",
48075
48117
  "reactName": "onCreated",
48076
48118
  "inheritedFrom": {
@@ -48079,7 +48121,7 @@
48079
48121
  }
48080
48122
  },
48081
48123
  {
48082
- "description": "(React: onDestroyed) This event is dispatched when the toggletip is destroyed (removed from the DOM)",
48124
+ "description": "(React: onDestroyed) This event is dispatched when the tooltip is destroyed (removed from the DOM)",
48083
48125
  "name": "destroyed",
48084
48126
  "reactName": "onDestroyed",
48085
48127
  "inheritedFrom": {
@@ -48090,25 +48132,13 @@
48090
48132
  ],
48091
48133
  "attributes": [
48092
48134
  {
48093
- "name": "screenreader-announcer-identity",
48094
- "type": {
48095
- "text": "string | undefined"
48096
- },
48097
- "description": "Set this attribute with the id of the element in the DOM, to which announcement\nelements will be appended.\nIf an id is provided, the announcement elements will be appended to this element.\nIf id is not provided, a visually hidden div element will be created in the DOM.\n\nPlease refer to the `mdc-screenreaderannouncer` component for more details.",
48098
- "fieldName": "screenreaderAnnouncerIdentity"
48099
- },
48100
- {
48101
- "name": "placement",
48135
+ "name": "tooltip-type",
48102
48136
  "type": {
48103
- "text": "PopoverPlacement"
48137
+ "text": "TooltipType"
48104
48138
  },
48105
- "description": "The placement of the popover.\n- **top**\n- **top-start**\n- **top-end**\n- **bottom**\n- **bottom-start**\n- **bottom-end**\n- **left**\n- **left-start**\n- **left-end**\n- **right**\n- **right-start**\n- **right-end**",
48106
- "default": "bottom",
48107
- "fieldName": "placement",
48108
- "inheritedFrom": {
48109
- "name": "Popover",
48110
- "module": "src/components/popover/popover.component.ts"
48111
- }
48139
+ "description": "The type of tooltip.\n- **description** sets aria-describedby on the trigger component which refers to the tooltip id.\n- **label** sets aria-labelledby on the trigger component which refers to the tooltip id.\n- **none** no aria props set on trigger component referring to the tooltip id.",
48140
+ "default": "'description'",
48141
+ "fieldName": "tooltipType"
48112
48142
  },
48113
48143
  {
48114
48144
  "name": "should-focus-trap-wrap",
@@ -48162,6 +48192,19 @@
48162
48192
  "module": "src/components/popover/popover.component.ts"
48163
48193
  }
48164
48194
  },
48195
+ {
48196
+ "name": "placement",
48197
+ "type": {
48198
+ "text": "PopoverPlacement"
48199
+ },
48200
+ "description": "The placement of the popover.\n- **top**\n- **top-start**\n- **top-end**\n- **bottom**\n- **bottom-start**\n- **bottom-end**\n- **left**\n- **left-start**\n- **left-end**\n- **right**\n- **right-start**\n- **right-end**",
48201
+ "default": "bottom",
48202
+ "fieldName": "placement",
48203
+ "inheritedFrom": {
48204
+ "name": "Popover",
48205
+ "module": "src/components/popover/popover.component.ts"
48206
+ }
48207
+ },
48165
48208
  {
48166
48209
  "name": "color",
48167
48210
  "type": {
@@ -48569,9 +48612,19 @@
48569
48612
  "name": "Popover",
48570
48613
  "module": "/src/components/popover/popover.component"
48571
48614
  },
48572
- "tagName": "mdc-toggletip",
48573
- "jsDoc": "/**\n * A toggletip is triggered by clicking a trigger element.\n *\n * It can contain interactive content and can be closed by\n * clicking outside the toggletip or pressing the escape key.\n *\n * It can have optional close button to close the toggletip.\n *\n * Toggletip component uses `mdc-screenreaderannouncer` internally to\n * announce the toggletip text content with screen readers when the toggletip is shown.\n *\n * `screenreader-announcer-identity` attribute can be used to provide ID of an element\n * in DOM to which announcement elements are added. If not set, a visually hidden\n * div element is created in DOM to which announcement elements are added.\n *\n * Please refer to the `mdc-screenreaderannouncer` component for more details.\n *\n * @dependency mdc-screenreaderannouncer\n * @dependency mdc-button\n *\n * @tagname mdc-toggletip\n *\n * @event shown - (React: onShown) This event is dispatched when the toggletip is shown\n * @event hidden - (React: onHidden) This event is dispatched when the toggletip is hidden\n * @event created - (React: onCreated) This event is dispatched when the toggletip is created (added to the DOM)\n * @event destroyed - (React: onDestroyed) This event is dispatched when the toggletip\n * is destroyed (removed from the DOM)\n *\n * @cssproperty --mdc-toggletip-max-width - The maximum width of the toggletip.\n * @cssproperty --mdc-toggletip-text-color - The text color of the toggletip.\n * @cssproperty --mdc-toggletip-text-color-contrast - The text color of the toggletip\n * when the color is contrast.\n *\n * @slot - Default slot for the toggletip content\n */",
48615
+ "tagName": "mdc-tooltip",
48616
+ "jsDoc": "/**\n * A tooltip is triggered by mouse hover or by keyboard focus\n * and will disappear upon mouse exit or focus change.\n *\n * Note: Tooltips cannot contain content that can be focused or interacted with.\n *\n * @tagname mdc-tooltip\n *\n * @event shown - (React: onShown) This event is dispatched when the tooltip is shown\n * @event hidden - (React: onHidden) This event is dispatched when the tooltip is hidden\n * @event created - (React: onCreated) This event is dispatched when the tooltip is created (added to the DOM)\n * @event destroyed - (React: onDestroyed) This event is dispatched when the tooltip is destroyed (removed from the DOM)\n *\n * @cssproperty --mdc-tooltip-max-width - The maximum width of the tooltip.\n * @cssproperty --mdc-tooltip-padding - The padding of the tooltip.\n * @cssproperty --mdc-tooltip-text-color - The text color of the tooltip.\n * @cssproperty --mdc-tooltip-text-color-contrast - The text color of the tooltip when the color is contrast.\n *\n */",
48574
48617
  "customElement": true,
48618
+ "slots": [
48619
+ {
48620
+ "description": "Default slot for the popover content",
48621
+ "name": "",
48622
+ "inheritedFrom": {
48623
+ "name": "Popover",
48624
+ "module": "src/components/popover/popover.component.ts"
48625
+ }
48626
+ }
48627
+ ],
48575
48628
  "cssParts": [
48576
48629
  {
48577
48630
  "description": "The close button of the popover.",
@@ -48605,36 +48658,32 @@
48605
48658
  "kind": "js",
48606
48659
  "name": "default",
48607
48660
  "declaration": {
48608
- "name": "ToggleTip",
48609
- "module": "components/toggletip/toggletip.component.js"
48661
+ "name": "Tooltip",
48662
+ "module": "components/tooltip/tooltip.component.js"
48610
48663
  }
48611
48664
  }
48612
48665
  ]
48613
48666
  },
48614
48667
  {
48615
48668
  "kind": "javascript-module",
48616
- "path": "components/tooltip/tooltip.component.js",
48669
+ "path": "components/toggletip/toggletip.component.js",
48617
48670
  "declarations": [
48618
48671
  {
48619
48672
  "kind": "class",
48620
- "description": "A tooltip is triggered by mouse hover or by keyboard focus\nand will disappear upon mouse exit or focus change.\n\nNote: Tooltips cannot contain content that can be focused or interacted with.",
48621
- "name": "Tooltip",
48673
+ "description": "A toggletip is triggered by clicking a trigger element.\n\nIt can contain interactive content and can be closed by\nclicking outside the toggletip or pressing the escape key.\n\nIt can have optional close button to close the toggletip.\n\nToggletip component uses `mdc-screenreaderannouncer` internally to\nannounce the toggletip text content with screen readers when the toggletip is shown.\n\n`screenreader-announcer-identity` attribute can be used to provide ID of an element\nin DOM to which announcement elements are added. If not set, a visually hidden\ndiv element is created in DOM to which announcement elements are added.\n\nPlease refer to the `mdc-screenreaderannouncer` component for more details.",
48674
+ "name": "ToggleTip",
48622
48675
  "cssProperties": [
48623
48676
  {
48624
- "description": "The maximum width of the tooltip.",
48625
- "name": "--mdc-tooltip-max-width"
48626
- },
48627
- {
48628
- "description": "The padding of the tooltip.",
48629
- "name": "--mdc-tooltip-padding"
48677
+ "description": "The maximum width of the toggletip.",
48678
+ "name": "--mdc-toggletip-max-width"
48630
48679
  },
48631
48680
  {
48632
- "description": "The text color of the tooltip.",
48633
- "name": "--mdc-tooltip-text-color"
48681
+ "description": "The text color of the toggletip.",
48682
+ "name": "--mdc-toggletip-text-color"
48634
48683
  },
48635
48684
  {
48636
- "description": "The text color of the tooltip when the color is contrast.",
48637
- "name": "--mdc-tooltip-text-color-contrast"
48685
+ "description": "The text color of the toggletip when the color is contrast.",
48686
+ "name": "--mdc-toggletip-text-color-contrast"
48638
48687
  },
48639
48688
  {
48640
48689
  "description": "radius of the arrow border",
@@ -48725,18 +48774,17 @@
48725
48774
  }
48726
48775
  }
48727
48776
  ],
48728
- "members": [
48777
+ "slots": [
48729
48778
  {
48730
- "kind": "field",
48731
- "name": "tooltipType",
48732
- "type": {
48733
- "text": "TooltipType"
48734
- },
48735
- "description": "The type of tooltip.\n- **description** sets aria-describedby on the trigger component which refers to the tooltip id.\n- **label** sets aria-labelledby on the trigger component which refers to the tooltip id.\n- **none** no aria props set on trigger component referring to the tooltip id.",
48736
- "default": "'description'",
48737
- "attribute": "tooltip-type",
48738
- "reflects": true
48739
- },
48779
+ "description": "Default slot for the toggletip content",
48780
+ "name": "",
48781
+ "inheritedFrom": {
48782
+ "name": "Popover",
48783
+ "module": "src/components/popover/popover.component.ts"
48784
+ }
48785
+ }
48786
+ ],
48787
+ "members": [
48740
48788
  {
48741
48789
  "kind": "field",
48742
48790
  "name": "defaultSlotNodes",
@@ -48746,76 +48794,50 @@
48746
48794
  "privacy": "private"
48747
48795
  },
48748
48796
  {
48749
- "kind": "method",
48750
- "name": "getTooltipText",
48751
- "privacy": "private",
48752
- "return": {
48753
- "type": {
48754
- "text": ""
48755
- }
48756
- }
48757
- },
48758
- {
48759
- "kind": "method",
48760
- "name": "setTooltipType",
48761
- "privacy": "private",
48762
- "return": {
48763
- "type": {
48764
- "text": "void"
48765
- }
48797
+ "kind": "field",
48798
+ "name": "screenreaderAnnouncerIdentity",
48799
+ "type": {
48800
+ "text": "string | undefined"
48766
48801
  },
48767
- "parameters": [
48768
- {
48769
- "name": "type",
48770
- "type": {
48771
- "text": "TooltipType"
48772
- },
48773
- "description": "The type to set."
48774
- }
48775
- ],
48776
- "description": "Sets the type attribute for the tooltip component.\nIf the provided type is not included in the TOOLTIP_TYPES,\nit defaults to the value specified in DEFAULTS.TOOLTIP_TYPE."
48802
+ "description": "Set this attribute with the id of the element in the DOM, to which announcement\nelements will be appended.\nIf an id is provided, the announcement elements will be appended to this element.\nIf id is not provided, a visually hidden div element will be created in the DOM.\n\nPlease refer to the `mdc-screenreaderannouncer` component for more details.",
48803
+ "attribute": "screenreader-announcer-identity",
48804
+ "reflects": true
48777
48805
  },
48778
48806
  {
48779
- "kind": "method",
48780
- "name": "onIdUpdated",
48781
- "privacy": "private",
48782
- "return": {
48783
- "type": {
48784
- "text": "Promise<void>"
48785
- }
48807
+ "kind": "field",
48808
+ "name": "placement",
48809
+ "type": {
48810
+ "text": "PopoverPlacement"
48786
48811
  },
48787
- "description": "Updates the tooltip id if it is empty."
48812
+ "description": "The placement of the popover.\n- **top**\n- **top-start**\n- **top-end**\n- **bottom**\n- **bottom-start**\n- **bottom-end**\n- **left**\n- **left-start**\n- **left-end**\n- **right**\n- **right-start**\n- **right-end**",
48813
+ "default": "bottom",
48814
+ "attribute": "placement",
48815
+ "reflects": true,
48816
+ "inheritedFrom": {
48817
+ "name": "Popover",
48818
+ "module": "components/popover/popover.component.js"
48819
+ }
48788
48820
  },
48789
48821
  {
48790
48822
  "kind": "method",
48791
- "name": "onPlacementUpdated",
48823
+ "name": "getToggleTipText",
48792
48824
  "privacy": "private",
48793
48825
  "return": {
48794
48826
  "type": {
48795
- "text": "void"
48827
+ "text": ""
48796
48828
  }
48797
- },
48798
- "description": "Updates the placement attribute if it is not a valid placement.\nOverriding the default from Popover"
48829
+ }
48799
48830
  },
48800
48831
  {
48801
48832
  "kind": "method",
48802
- "name": "onTooltipTypeUpdated",
48833
+ "name": "onPlacementUpdated",
48803
48834
  "privacy": "private",
48804
48835
  "return": {
48805
48836
  "type": {
48806
48837
  "text": "void"
48807
48838
  }
48808
48839
  },
48809
- "parameters": [
48810
- {
48811
- "name": "changedProperties",
48812
- "type": {
48813
- "text": "PropertyValues"
48814
- },
48815
- "description": "The changed properties."
48816
- }
48817
- ],
48818
- "description": "Updates the tooltip type attribute and sets the appropriate aria props on the trigger component."
48840
+ "description": "Updates the placement attribute if it is not a valid placement.\nDefault placement for toggle tip is top."
48819
48841
  },
48820
48842
  {
48821
48843
  "kind": "field",
@@ -49407,21 +49429,6 @@
49407
49429
  "module": "components/popover/popover.component.js"
49408
49430
  }
49409
49431
  },
49410
- {
49411
- "kind": "field",
49412
- "name": "placement",
49413
- "type": {
49414
- "text": "PopoverPlacement"
49415
- },
49416
- "description": "The placement of the popover.\n- **top**\n- **top-start**\n- **top-end**\n- **bottom**\n- **bottom-start**\n- **bottom-end**\n- **left**\n- **left-start**\n- **left-end**\n- **right**\n- **right-start**\n- **right-end**",
49417
- "default": "bottom",
49418
- "attribute": "placement",
49419
- "reflects": true,
49420
- "inheritedFrom": {
49421
- "name": "Popover",
49422
- "module": "components/popover/popover.component.js"
49423
- }
49424
- },
49425
49432
  {
49426
49433
  "kind": "field",
49427
49434
  "name": "color",
@@ -50123,7 +50130,7 @@
50123
50130
  ],
50124
50131
  "events": [
50125
50132
  {
50126
- "description": "(React: onShown) This event is dispatched when the tooltip is shown",
50133
+ "description": "(React: onShown) This event is dispatched when the toggletip is shown",
50127
50134
  "name": "shown",
50128
50135
  "reactName": "onShown",
50129
50136
  "inheritedFrom": {
@@ -50132,7 +50139,7 @@
50132
50139
  }
50133
50140
  },
50134
50141
  {
50135
- "description": "(React: onHidden) This event is dispatched when the tooltip is hidden",
50142
+ "description": "(React: onHidden) This event is dispatched when the toggletip is hidden",
50136
50143
  "name": "hidden",
50137
50144
  "reactName": "onHidden",
50138
50145
  "inheritedFrom": {
@@ -50141,7 +50148,7 @@
50141
50148
  }
50142
50149
  },
50143
50150
  {
50144
- "description": "(React: onCreated) This event is dispatched when the tooltip is created (added to the DOM)",
50151
+ "description": "(React: onCreated) This event is dispatched when the toggletip is created (added to the DOM)",
50145
50152
  "name": "created",
50146
50153
  "reactName": "onCreated",
50147
50154
  "inheritedFrom": {
@@ -50150,7 +50157,7 @@
50150
50157
  }
50151
50158
  },
50152
50159
  {
50153
- "description": "(React: onDestroyed) This event is dispatched when the tooltip is destroyed (removed from the DOM)",
50160
+ "description": "(React: onDestroyed) This event is dispatched when the toggletip is destroyed (removed from the DOM)",
50154
50161
  "name": "destroyed",
50155
50162
  "reactName": "onDestroyed",
50156
50163
  "inheritedFrom": {
@@ -50161,13 +50168,25 @@
50161
50168
  ],
50162
50169
  "attributes": [
50163
50170
  {
50164
- "name": "tooltip-type",
50171
+ "name": "screenreader-announcer-identity",
50165
50172
  "type": {
50166
- "text": "TooltipType"
50173
+ "text": "string | undefined"
50167
50174
  },
50168
- "description": "The type of tooltip.\n- **description** sets aria-describedby on the trigger component which refers to the tooltip id.\n- **label** sets aria-labelledby on the trigger component which refers to the tooltip id.\n- **none** no aria props set on trigger component referring to the tooltip id.",
50169
- "default": "'description'",
50170
- "fieldName": "tooltipType"
50175
+ "description": "Set this attribute with the id of the element in the DOM, to which announcement\nelements will be appended.\nIf an id is provided, the announcement elements will be appended to this element.\nIf id is not provided, a visually hidden div element will be created in the DOM.\n\nPlease refer to the `mdc-screenreaderannouncer` component for more details.",
50176
+ "fieldName": "screenreaderAnnouncerIdentity"
50177
+ },
50178
+ {
50179
+ "name": "placement",
50180
+ "type": {
50181
+ "text": "PopoverPlacement"
50182
+ },
50183
+ "description": "The placement of the popover.\n- **top**\n- **top-start**\n- **top-end**\n- **bottom**\n- **bottom-start**\n- **bottom-end**\n- **left**\n- **left-start**\n- **left-end**\n- **right**\n- **right-start**\n- **right-end**",
50184
+ "default": "bottom",
50185
+ "fieldName": "placement",
50186
+ "inheritedFrom": {
50187
+ "name": "Popover",
50188
+ "module": "src/components/popover/popover.component.ts"
50189
+ }
50171
50190
  },
50172
50191
  {
50173
50192
  "name": "should-focus-trap-wrap",
@@ -50221,19 +50240,6 @@
50221
50240
  "module": "src/components/popover/popover.component.ts"
50222
50241
  }
50223
50242
  },
50224
- {
50225
- "name": "placement",
50226
- "type": {
50227
- "text": "PopoverPlacement"
50228
- },
50229
- "description": "The placement of the popover.\n- **top**\n- **top-start**\n- **top-end**\n- **bottom**\n- **bottom-start**\n- **bottom-end**\n- **left**\n- **left-start**\n- **left-end**\n- **right**\n- **right-start**\n- **right-end**",
50230
- "default": "bottom",
50231
- "fieldName": "placement",
50232
- "inheritedFrom": {
50233
- "name": "Popover",
50234
- "module": "src/components/popover/popover.component.ts"
50235
- }
50236
- },
50237
50243
  {
50238
50244
  "name": "color",
50239
50245
  "type": {
@@ -50641,19 +50647,9 @@
50641
50647
  "name": "Popover",
50642
50648
  "module": "/src/components/popover/popover.component"
50643
50649
  },
50644
- "tagName": "mdc-tooltip",
50645
- "jsDoc": "/**\n * A tooltip is triggered by mouse hover or by keyboard focus\n * and will disappear upon mouse exit or focus change.\n *\n * Note: Tooltips cannot contain content that can be focused or interacted with.\n *\n * @tagname mdc-tooltip\n *\n * @event shown - (React: onShown) This event is dispatched when the tooltip is shown\n * @event hidden - (React: onHidden) This event is dispatched when the tooltip is hidden\n * @event created - (React: onCreated) This event is dispatched when the tooltip is created (added to the DOM)\n * @event destroyed - (React: onDestroyed) This event is dispatched when the tooltip is destroyed (removed from the DOM)\n *\n * @cssproperty --mdc-tooltip-max-width - The maximum width of the tooltip.\n * @cssproperty --mdc-tooltip-padding - The padding of the tooltip.\n * @cssproperty --mdc-tooltip-text-color - The text color of the tooltip.\n * @cssproperty --mdc-tooltip-text-color-contrast - The text color of the tooltip when the color is contrast.\n *\n */",
50650
+ "tagName": "mdc-toggletip",
50651
+ "jsDoc": "/**\n * A toggletip is triggered by clicking a trigger element.\n *\n * It can contain interactive content and can be closed by\n * clicking outside the toggletip or pressing the escape key.\n *\n * It can have optional close button to close the toggletip.\n *\n * Toggletip component uses `mdc-screenreaderannouncer` internally to\n * announce the toggletip text content with screen readers when the toggletip is shown.\n *\n * `screenreader-announcer-identity` attribute can be used to provide ID of an element\n * in DOM to which announcement elements are added. If not set, a visually hidden\n * div element is created in DOM to which announcement elements are added.\n *\n * Please refer to the `mdc-screenreaderannouncer` component for more details.\n *\n * @dependency mdc-screenreaderannouncer\n * @dependency mdc-button\n *\n * @tagname mdc-toggletip\n *\n * @event shown - (React: onShown) This event is dispatched when the toggletip is shown\n * @event hidden - (React: onHidden) This event is dispatched when the toggletip is hidden\n * @event created - (React: onCreated) This event is dispatched when the toggletip is created (added to the DOM)\n * @event destroyed - (React: onDestroyed) This event is dispatched when the toggletip\n * is destroyed (removed from the DOM)\n *\n * @cssproperty --mdc-toggletip-max-width - The maximum width of the toggletip.\n * @cssproperty --mdc-toggletip-text-color - The text color of the toggletip.\n * @cssproperty --mdc-toggletip-text-color-contrast - The text color of the toggletip\n * when the color is contrast.\n *\n * @slot - Default slot for the toggletip content\n */",
50646
50652
  "customElement": true,
50647
- "slots": [
50648
- {
50649
- "description": "Default slot for the popover content",
50650
- "name": "",
50651
- "inheritedFrom": {
50652
- "name": "Popover",
50653
- "module": "src/components/popover/popover.component.ts"
50654
- }
50655
- }
50656
- ],
50657
50653
  "cssParts": [
50658
50654
  {
50659
50655
  "description": "The close button of the popover.",
@@ -50687,8 +50683,8 @@
50687
50683
  "kind": "js",
50688
50684
  "name": "default",
50689
50685
  "declaration": {
50690
- "name": "Tooltip",
50691
- "module": "components/tooltip/tooltip.component.js"
50686
+ "name": "ToggleTip",
50687
+ "module": "components/toggletip/toggletip.component.js"
50692
50688
  }
50693
50689
  }
50694
50690
  ]