@momentum-design/components 0.118.4 → 0.118.6

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (30) hide show
  1. package/dist/browser/index.js +259 -263
  2. package/dist/browser/index.js.map +4 -4
  3. package/dist/components/checkbox/checkbox.component.js +2 -2
  4. package/dist/components/checkbox/checkbox.styles.js +13 -8
  5. package/dist/components/combobox/combobox.component.js +1 -1
  6. package/dist/components/formfieldgroup/formfieldgroup.styles.js +0 -4
  7. package/dist/components/formfieldwrapper/formfieldwrapper.component.d.ts +2 -2
  8. package/dist/components/formfieldwrapper/formfieldwrapper.component.js +5 -7
  9. package/dist/components/formfieldwrapper/formfieldwrapper.styles.js +22 -16
  10. package/dist/components/popover/index.js +2 -0
  11. package/dist/components/popover/popover.component.d.ts +44 -8
  12. package/dist/components/popover/popover.component.js +53 -11
  13. package/dist/components/popover/popover.portal.component.d.ts +29 -0
  14. package/dist/components/popover/popover.portal.component.js +37 -0
  15. package/dist/components/popover/popover.utils.d.ts +15 -0
  16. package/dist/components/popover/popover.utils.js +32 -3
  17. package/dist/components/progressbar/progressbar.styles.js +3 -5
  18. package/dist/components/radio/radio.component.js +2 -2
  19. package/dist/components/radio/radio.styles.js +8 -12
  20. package/dist/components/toggle/toggle.component.d.ts +0 -3
  21. package/dist/components/toggle/toggle.component.js +0 -3
  22. package/dist/components/toggle/toggle.styles.js +11 -14
  23. package/dist/custom-elements.json +355 -347
  24. package/dist/react/index.d.ts +2 -2
  25. package/dist/react/index.js +2 -2
  26. package/dist/react/popover/index.d.ts +43 -7
  27. package/dist/react/popover/index.js +43 -7
  28. package/dist/react/toggle/index.d.ts +0 -3
  29. package/dist/react/toggle/index.js +0 -3
  30. package/package.json +1 -1
@@ -4729,77 +4729,6 @@
4729
4729
  }
4730
4730
  ]
4731
4731
  },
4732
- {
4733
- "kind": "javascript-module",
4734
- "path": "components/bullet/bullet.component.js",
4735
- "declarations": [
4736
- {
4737
- "kind": "class",
4738
- "description": "Bullet component, which is a visual marker\nand be used to organize and present items in a list format.",
4739
- "name": "Bullet",
4740
- "cssProperties": [
4741
- {
4742
- "description": "background color of the bullet",
4743
- "name": "--mdc-bullet-background-color"
4744
- },
4745
- {
4746
- "description": "small size value of the bullet",
4747
- "name": "--mdc-bullet-size-small"
4748
- },
4749
- {
4750
- "description": "medium size value of the bullet",
4751
- "name": "--mdc-bullet-size-medium"
4752
- },
4753
- {
4754
- "description": "large size value of the bullet",
4755
- "name": "--mdc-bullet-size-large"
4756
- }
4757
- ],
4758
- "members": [
4759
- {
4760
- "kind": "field",
4761
- "name": "size",
4762
- "type": {
4763
- "text": "Size"
4764
- },
4765
- "privacy": "public",
4766
- "description": "Size of the bullet\n\nPossible values: 'small', 'medium', 'large'",
4767
- "default": "small",
4768
- "attribute": "size",
4769
- "reflects": true
4770
- }
4771
- ],
4772
- "attributes": [
4773
- {
4774
- "name": "size",
4775
- "type": {
4776
- "text": "Size"
4777
- },
4778
- "description": "Size of the bullet\n\nPossible values: 'small', 'medium', 'large'",
4779
- "default": "small",
4780
- "fieldName": "size"
4781
- }
4782
- ],
4783
- "superclass": {
4784
- "name": "Component",
4785
- "module": "/src/models"
4786
- },
4787
- "tagName": "mdc-bullet",
4788
- "jsDoc": "/**\n * Bullet component, which is a visual marker\n * and be used to organize and present items in a list format.\n *\n * @tagname mdc-bullet\n *\n * @cssproperty --mdc-bullet-background-color - background color of the bullet\n * @cssproperty --mdc-bullet-size-small - small size value of the bullet\n * @cssproperty --mdc-bullet-size-medium - medium size value of the bullet\n * @cssproperty --mdc-bullet-size-large - large size value of the bullet\n */",
4789
- "customElement": true
4790
- }
4791
- ],
4792
- "exports": [
4793
- {
4794
- "kind": "js",
4795
- "name": "default",
4796
- "declaration": {
4797
- "name": "Bullet",
4798
- "module": "components/bullet/bullet.component.js"
4799
- }
4800
- }
4801
- ]
4802
- },
4803
4732
  {
4804
4733
  "kind": "javascript-module",
4805
4734
  "path": "components/brandvisual/brandvisual.component.js",
@@ -4976,6 +4905,77 @@
4976
4905
  }
4977
4906
  ]
4978
4907
  },
4908
+ {
4909
+ "kind": "javascript-module",
4910
+ "path": "components/bullet/bullet.component.js",
4911
+ "declarations": [
4912
+ {
4913
+ "kind": "class",
4914
+ "description": "Bullet component, which is a visual marker\nand be used to organize and present items in a list format.",
4915
+ "name": "Bullet",
4916
+ "cssProperties": [
4917
+ {
4918
+ "description": "background color of the bullet",
4919
+ "name": "--mdc-bullet-background-color"
4920
+ },
4921
+ {
4922
+ "description": "small size value of the bullet",
4923
+ "name": "--mdc-bullet-size-small"
4924
+ },
4925
+ {
4926
+ "description": "medium size value of the bullet",
4927
+ "name": "--mdc-bullet-size-medium"
4928
+ },
4929
+ {
4930
+ "description": "large size value of the bullet",
4931
+ "name": "--mdc-bullet-size-large"
4932
+ }
4933
+ ],
4934
+ "members": [
4935
+ {
4936
+ "kind": "field",
4937
+ "name": "size",
4938
+ "type": {
4939
+ "text": "Size"
4940
+ },
4941
+ "privacy": "public",
4942
+ "description": "Size of the bullet\n\nPossible values: 'small', 'medium', 'large'",
4943
+ "default": "small",
4944
+ "attribute": "size",
4945
+ "reflects": true
4946
+ }
4947
+ ],
4948
+ "attributes": [
4949
+ {
4950
+ "name": "size",
4951
+ "type": {
4952
+ "text": "Size"
4953
+ },
4954
+ "description": "Size of the bullet\n\nPossible values: 'small', 'medium', 'large'",
4955
+ "default": "small",
4956
+ "fieldName": "size"
4957
+ }
4958
+ ],
4959
+ "superclass": {
4960
+ "name": "Component",
4961
+ "module": "/src/models"
4962
+ },
4963
+ "tagName": "mdc-bullet",
4964
+ "jsDoc": "/**\n * Bullet component, which is a visual marker\n * and be used to organize and present items in a list format.\n *\n * @tagname mdc-bullet\n *\n * @cssproperty --mdc-bullet-background-color - background color of the bullet\n * @cssproperty --mdc-bullet-size-small - small size value of the bullet\n * @cssproperty --mdc-bullet-size-medium - medium size value of the bullet\n * @cssproperty --mdc-bullet-size-large - large size value of the bullet\n */",
4965
+ "customElement": true
4966
+ }
4967
+ ],
4968
+ "exports": [
4969
+ {
4970
+ "kind": "js",
4971
+ "name": "default",
4972
+ "declaration": {
4973
+ "name": "Bullet",
4974
+ "module": "components/bullet/bullet.component.js"
4975
+ }
4976
+ }
4977
+ ]
4978
+ },
4979
4979
  {
4980
4980
  "kind": "javascript-module",
4981
4981
  "path": "components/button/button.component.js",
@@ -10351,7 +10351,7 @@
10351
10351
  "kind": "method",
10352
10352
  "name": "renderLabel",
10353
10353
  "privacy": "protected",
10354
- "description": "renders the mdc-label-text container that contains the label and labelInfoToggleTip.",
10354
+ "description": "renders the label container that contains the label and labelInfoToggleTip.",
10355
10355
  "return": {
10356
10356
  "type": {
10357
10357
  "text": ""
@@ -10366,7 +10366,7 @@
10366
10366
  "kind": "method",
10367
10367
  "name": "renderHelperText",
10368
10368
  "privacy": "protected",
10369
- "description": "renders the mdc-help-text container that contains the helpertext icon and helpertext.",
10369
+ "description": "renders the help-text container that contains the helpertext icon and helpertext.",
10370
10370
  "return": {
10371
10371
  "type": {
10372
10372
  "text": ""
@@ -14120,7 +14120,7 @@
14120
14120
  "kind": "method",
14121
14121
  "name": "renderLabel",
14122
14122
  "privacy": "protected",
14123
- "description": "renders the mdc-label-text container that contains the label and labelInfoToggleTip.",
14123
+ "description": "renders the label container that contains the label and labelInfoToggleTip.",
14124
14124
  "return": {
14125
14125
  "type": {
14126
14126
  "text": ""
@@ -14135,7 +14135,7 @@
14135
14135
  "kind": "method",
14136
14136
  "name": "renderHelperText",
14137
14137
  "privacy": "protected",
14138
- "description": "renders the mdc-help-text container that contains the helpertext icon and helpertext.",
14138
+ "description": "renders the help-text container that contains the helpertext icon and helpertext.",
14139
14139
  "return": {
14140
14140
  "type": {
14141
14141
  "text": ""
@@ -16732,7 +16732,7 @@
16732
16732
  "kind": "method",
16733
16733
  "name": "renderLabel",
16734
16734
  "privacy": "protected",
16735
- "description": "renders the mdc-label-text container that contains the label and labelInfoToggleTip.",
16735
+ "description": "renders the label container that contains the label and labelInfoToggleTip.",
16736
16736
  "return": {
16737
16737
  "type": {
16738
16738
  "text": ""
@@ -16747,7 +16747,7 @@
16747
16747
  "kind": "method",
16748
16748
  "name": "renderHelperText",
16749
16749
  "privacy": "protected",
16750
- "description": "renders the mdc-help-text container that contains the helpertext icon and helpertext.",
16750
+ "description": "renders the help-text container that contains the helpertext icon and helpertext.",
16751
16751
  "return": {
16752
16752
  "type": {
16753
16753
  "text": ""
@@ -17055,7 +17055,7 @@
17055
17055
  "kind": "method",
17056
17056
  "name": "renderLabel",
17057
17057
  "privacy": "protected",
17058
- "description": "renders the mdc-label-text container that contains the label and labelInfoToggleTip.",
17058
+ "description": "renders the label container that contains the label and labelInfoToggleTip.",
17059
17059
  "return": {
17060
17060
  "type": {
17061
17061
  "text": ""
@@ -17066,7 +17066,7 @@
17066
17066
  "kind": "method",
17067
17067
  "name": "renderHelperText",
17068
17068
  "privacy": "protected",
17069
- "description": "renders the mdc-help-text container that contains the helpertext icon and helpertext.",
17069
+ "description": "renders the help-text container that contains the helpertext icon and helpertext.",
17070
17070
  "return": {
17071
17071
  "type": {
17072
17072
  "text": ""
@@ -18652,7 +18652,7 @@
18652
18652
  "kind": "method",
18653
18653
  "name": "renderLabel",
18654
18654
  "privacy": "protected",
18655
- "description": "renders the mdc-label-text container that contains the label and labelInfoToggleTip.",
18655
+ "description": "renders the label container that contains the label and labelInfoToggleTip.",
18656
18656
  "return": {
18657
18657
  "type": {
18658
18658
  "text": ""
@@ -18667,7 +18667,7 @@
18667
18667
  "kind": "method",
18668
18668
  "name": "renderHelperText",
18669
18669
  "privacy": "protected",
18670
- "description": "renders the mdc-help-text container that contains the helpertext icon and helpertext.",
18670
+ "description": "renders the help-text container that contains the helpertext icon and helpertext.",
18671
18671
  "return": {
18672
18672
  "type": {
18673
18673
  "text": ""
@@ -30738,7 +30738,7 @@
30738
30738
  "kind": "method",
30739
30739
  "name": "renderLabel",
30740
30740
  "privacy": "protected",
30741
- "description": "renders the mdc-label-text container that contains the label and labelInfoToggleTip.",
30741
+ "description": "renders the label container that contains the label and labelInfoToggleTip.",
30742
30742
  "return": {
30743
30743
  "type": {
30744
30744
  "text": ""
@@ -30753,7 +30753,7 @@
30753
30753
  "kind": "method",
30754
30754
  "name": "renderHelperText",
30755
30755
  "privacy": "protected",
30756
- "description": "renders the mdc-help-text container that contains the helpertext icon and helpertext.",
30756
+ "description": "renders the help-text container that contains the helpertext icon and helpertext.",
30757
30757
  "return": {
30758
30758
  "type": {
30759
30759
  "text": ""
@@ -31270,13 +31270,260 @@
31270
31270
  }
31271
31271
  ]
31272
31272
  },
31273
+ {
31274
+ "kind": "javascript-module",
31275
+ "path": "components/presence/presence.component.js",
31276
+ "declarations": [
31277
+ {
31278
+ "kind": "class",
31279
+ "description": "The `mdc-presence` component is a versatile UI element used to\ndisplay the presence status of a user or entity within an avatar component.\n\nThis component is ideal for use within avatar UIs where the presence status\nneeds to be visually represented.",
31280
+ "name": "Presence",
31281
+ "cssProperties": [
31282
+ {
31283
+ "description": "The background color of the presence type active.",
31284
+ "name": "--mdc-presence-active-background-color"
31285
+ },
31286
+ {
31287
+ "description": "The background color of the presence type away.",
31288
+ "name": "--mdc-presence-away-background-color"
31289
+ },
31290
+ {
31291
+ "description": "The background color of the presence type away-calling.",
31292
+ "name": "--mdc-presence-away-calling-background-color"
31293
+ },
31294
+ {
31295
+ "description": "The background color of the presence type busy.",
31296
+ "name": "--mdc-presence-busy-background-color"
31297
+ },
31298
+ {
31299
+ "description": "The background color of the presence type dnd.",
31300
+ "name": "--mdc-presence-dnd-background-color"
31301
+ },
31302
+ {
31303
+ "description": "The background color of the presence type meeting.",
31304
+ "name": "--mdc-presence-meeting-background-color"
31305
+ },
31306
+ {
31307
+ "description": "The background color of the presence type on-call.",
31308
+ "name": "--mdc-presence-on-call-background-color"
31309
+ },
31310
+ {
31311
+ "description": "The background color of the presence type on-device.",
31312
+ "name": "--mdc-presence-on-device-background-color"
31313
+ },
31314
+ {
31315
+ "description": "The background color of the presence type on-mobile.",
31316
+ "name": "--mdc-presence-on-mobile-background-color"
31317
+ },
31318
+ {
31319
+ "description": "The background color of the presence type pause.",
31320
+ "name": "--mdc-presence-pause-background-color"
31321
+ },
31322
+ {
31323
+ "description": "The background color of the presence type pto.",
31324
+ "name": "--mdc-presence-pto-background-color"
31325
+ },
31326
+ {
31327
+ "description": "The background color of the presence type presenting.",
31328
+ "name": "--mdc-presence-presenting-background-color"
31329
+ },
31330
+ {
31331
+ "description": "The background color of the presence type quiet.",
31332
+ "name": "--mdc-presence-quiet-background-color"
31333
+ },
31334
+ {
31335
+ "description": "The background color of the presence type scheduled.",
31336
+ "name": "--mdc-presence-scheduled-background-color"
31337
+ },
31338
+ {
31339
+ "description": "The background color of the presence type overlay.",
31340
+ "name": "--mdc-presence-overlay-background-color"
31341
+ }
31342
+ ],
31343
+ "cssParts": [
31344
+ {
31345
+ "description": "The presence content.",
31346
+ "name": "presence-content"
31347
+ },
31348
+ {
31349
+ "description": "The presence icon.",
31350
+ "name": "mdc-presence-icon"
31351
+ },
31352
+ {
31353
+ "description": "The presence icon for active.",
31354
+ "name": "mdc-presence-icon__active"
31355
+ },
31356
+ {
31357
+ "description": "The presence icon for away.",
31358
+ "name": "mdc-presence-icon__away"
31359
+ },
31360
+ {
31361
+ "description": "The presence icon for away-calling.",
31362
+ "name": "mdc-presence-icon__away-calling"
31363
+ },
31364
+ {
31365
+ "description": "The presence icon for busy.",
31366
+ "name": "mdc-presence-icon__busy"
31367
+ },
31368
+ {
31369
+ "description": "The presence icon for dnd.",
31370
+ "name": "mdc-presence-icon__dnd"
31371
+ },
31372
+ {
31373
+ "description": "The presence icon for meeting.",
31374
+ "name": "mdc-presence-icon__meeting"
31375
+ },
31376
+ {
31377
+ "description": "The presence icon for on-call.",
31378
+ "name": "mdc-presence-icon__on-call"
31379
+ },
31380
+ {
31381
+ "description": "The presence icon for on-device.",
31382
+ "name": "mdc-presence-icon__on-device"
31383
+ },
31384
+ {
31385
+ "description": "The presence icon for on-mobile.",
31386
+ "name": "mdc-presence-icon__on-mobile"
31387
+ },
31388
+ {
31389
+ "description": "The presence icon for pause.",
31390
+ "name": "mdc-presence-icon__pause"
31391
+ },
31392
+ {
31393
+ "description": "The presence icon for pto.",
31394
+ "name": "mdc-presence-icon__pto"
31395
+ },
31396
+ {
31397
+ "description": "The presence icon for presenting.",
31398
+ "name": "mdc-presence-icon__presenting"
31399
+ },
31400
+ {
31401
+ "description": "The presence icon for quiet.",
31402
+ "name": "mdc-presence-icon__quiet"
31403
+ },
31404
+ {
31405
+ "description": "The presence icon for scheduled.",
31406
+ "name": "mdc-presence-icon__scheduled"
31407
+ }
31408
+ ],
31409
+ "members": [
31410
+ {
31411
+ "kind": "field",
31412
+ "name": "type",
31413
+ "type": {
31414
+ "text": "PresenceType"
31415
+ },
31416
+ "description": "Supported presence types:\n- `active`\n- `away`\n- `away-calling`\n- `busy`\n- `dnd`\n- `meeting`\n- `on-call`\n- `on-device`\n- `on-mobile`\n- `pause`\n- `pto`\n- `presenting`\n- `quiet`\n- `scheduled`",
31417
+ "default": "active",
31418
+ "attribute": "type",
31419
+ "reflects": true
31420
+ },
31421
+ {
31422
+ "kind": "field",
31423
+ "name": "size",
31424
+ "type": {
31425
+ "text": "PresenceSize"
31426
+ },
31427
+ "description": "Acceptable numeric values include:\n- 24\n- 32\n- 48\n- 64\n- 72\n- 88\n- 124\n\nPresence icons are minimum 14px in size, meaning 24, 32, and 48 presence\nicons will be no smaller than 14px (for sizes 24, 32, 48).",
31428
+ "default": "32",
31429
+ "attribute": "size",
31430
+ "reflects": true
31431
+ },
31432
+ {
31433
+ "kind": "method",
31434
+ "name": "setSize",
31435
+ "privacy": "private",
31436
+ "return": {
31437
+ "type": {
31438
+ "text": "void"
31439
+ }
31440
+ },
31441
+ "parameters": [
31442
+ {
31443
+ "name": "size",
31444
+ "type": {
31445
+ "text": "PresenceSize"
31446
+ }
31447
+ }
31448
+ ]
31449
+ },
31450
+ {
31451
+ "kind": "field",
31452
+ "name": "icon",
31453
+ "privacy": "private",
31454
+ "description": "Get the icon name based on the presence type",
31455
+ "readonly": true
31456
+ },
31457
+ {
31458
+ "kind": "method",
31459
+ "name": "handleOnLoad",
31460
+ "privacy": "private",
31461
+ "return": {
31462
+ "type": {
31463
+ "text": "void"
31464
+ }
31465
+ },
31466
+ "description": "Handles the successful load of an icon.\nSets the `currentIconType` property to match the `type` property."
31467
+ },
31468
+ {
31469
+ "kind": "method",
31470
+ "name": "handleOnError",
31471
+ "privacy": "private",
31472
+ "return": {
31473
+ "type": {
31474
+ "text": "void"
31475
+ }
31476
+ },
31477
+ "description": "Handles an error that occurs when loading an icon."
31478
+ }
31479
+ ],
31480
+ "attributes": [
31481
+ {
31482
+ "name": "type",
31483
+ "type": {
31484
+ "text": "PresenceType"
31485
+ },
31486
+ "description": "Supported presence types:\n- `active`\n- `away`\n- `away-calling`\n- `busy`\n- `dnd`\n- `meeting`\n- `on-call`\n- `on-device`\n- `on-mobile`\n- `pause`\n- `pto`\n- `presenting`\n- `quiet`\n- `scheduled`",
31487
+ "default": "active",
31488
+ "fieldName": "type"
31489
+ },
31490
+ {
31491
+ "name": "size",
31492
+ "type": {
31493
+ "text": "PresenceSize"
31494
+ },
31495
+ "description": "Acceptable numeric values include:\n- 24\n- 32\n- 48\n- 64\n- 72\n- 88\n- 124\n\nPresence icons are minimum 14px in size, meaning 24, 32, and 48 presence\nicons will be no smaller than 14px (for sizes 24, 32, 48).",
31496
+ "default": "32",
31497
+ "fieldName": "size"
31498
+ }
31499
+ ],
31500
+ "superclass": {
31501
+ "name": "Component",
31502
+ "module": "/src/models"
31503
+ },
31504
+ "tagName": "mdc-presence",
31505
+ "jsDoc": "/**\n * The `mdc-presence` component is a versatile UI element used to\n * display the presence status of a user or entity within an avatar component.\n *\n * This component is ideal for use within avatar UIs where the presence status\n * needs to be visually represented.\n *\n * @dependency mdc-icon\n *\n * @tagname mdc-presence\n *\n * @cssproperty --mdc-presence-active-background-color - The background color of the presence type active.\n * @cssproperty --mdc-presence-away-background-color - The background color of the presence type away.\n * @cssproperty --mdc-presence-away-calling-background-color - The background color of the presence type away-calling.\n * @cssproperty --mdc-presence-busy-background-color - The background color of the presence type busy.\n * @cssproperty --mdc-presence-dnd-background-color - The background color of the presence type dnd.\n * @cssproperty --mdc-presence-meeting-background-color - The background color of the presence type meeting.\n * @cssproperty --mdc-presence-on-call-background-color - The background color of the presence type on-call.\n * @cssproperty --mdc-presence-on-device-background-color - The background color of the presence type on-device.\n * @cssproperty --mdc-presence-on-mobile-background-color - The background color of the presence type on-mobile.\n * @cssproperty --mdc-presence-pause-background-color - The background color of the presence type pause.\n * @cssproperty --mdc-presence-pto-background-color - The background color of the presence type pto.\n * @cssproperty --mdc-presence-presenting-background-color - The background color of the presence type presenting.\n * @cssproperty --mdc-presence-quiet-background-color - The background color of the presence type quiet.\n * @cssproperty --mdc-presence-scheduled-background-color - The background color of the presence type scheduled.\n * @cssproperty --mdc-presence-overlay-background-color - The background color of the presence type overlay.\n *\n * @csspart presence-content - The presence content.\n * @csspart mdc-presence-icon - The presence icon.\n * @csspart mdc-presence-icon__active - The presence icon for active.\n * @csspart mdc-presence-icon__away - The presence icon for away.\n * @csspart mdc-presence-icon__away-calling - The presence icon for away-calling.\n * @csspart mdc-presence-icon__busy - The presence icon for busy.\n * @csspart mdc-presence-icon__dnd - The presence icon for dnd.\n * @csspart mdc-presence-icon__meeting - The presence icon for meeting.\n * @csspart mdc-presence-icon__on-call - The presence icon for on-call.\n * @csspart mdc-presence-icon__on-device - The presence icon for on-device.\n * @csspart mdc-presence-icon__on-mobile - The presence icon for on-mobile.\n * @csspart mdc-presence-icon__pause - The presence icon for pause.\n * @csspart mdc-presence-icon__pto - The presence icon for pto.\n * @csspart mdc-presence-icon__presenting - The presence icon for presenting.\n * @csspart mdc-presence-icon__quiet - The presence icon for quiet.\n * @csspart mdc-presence-icon__scheduled - The presence icon for scheduled.\n */",
31506
+ "customElement": true
31507
+ }
31508
+ ],
31509
+ "exports": [
31510
+ {
31511
+ "kind": "js",
31512
+ "name": "default",
31513
+ "declaration": {
31514
+ "name": "Presence",
31515
+ "module": "components/presence/presence.component.js"
31516
+ }
31517
+ }
31518
+ ]
31519
+ },
31273
31520
  {
31274
31521
  "kind": "javascript-module",
31275
31522
  "path": "components/popover/popover.component.js",
31276
31523
  "declarations": [
31277
31524
  {
31278
31525
  "kind": "class",
31279
- "description": "Popover component is a lightweight floating UI element that displays additional content when triggered.\nIt can be used for tooltips, dropdowns, or contextual menus.\nThe popover automatically positions itself based on available space and\nsupports dynamic height adjustments with scrollable content when needed。\n\nNote:\n - A component (button) can trigger more than one popover, but only one of them should change the\n aria-expanded and aria-haspopup, the rest of the popovers must have `disable-aria-expanded` attribute.",
31526
+ "description": "Popover is genric overlay which can be trigered by any actinable element.\n\nIt can be used for tooltips, dropdowns, menus or any showing any other contextual content.\n\nThe popover automatically positions itself based on available space and\nsupports dynamic height adjustments with scrollable content when needed.\nIt uses [Floating UI](https://floating-ui.com/) for maintaining the position of the popover.\n\n## Limitations\n\n### On trigger for multiple popovers\n\nA component (button, etc.) can trigger more than one popover, but only one of them should change the\naria-expanded and aria-haspopup attributes on the trigger.\n\nTo prevent unexpected attribute changes on the trigger `disable-aria-expanded` attribute must be set on all linked\nPopoers except one.\n\n### React Popover with append-to attribute\n\nReact mounts the popover based on the virtual DOM, but when the append-to attribute is set, the popover removes itself\nand mounts to the specified element. React will not know about the move and will not know about the\nnewly created mdc-popoverportal element either. This throws a `NotFoundError` error when the Popover is directly\nadded/removed by React, for example:\n\n```tsx\nconst SomeComponent = () => {\n const [isOpen, setIsOpen] = useState(false);\n return (<div>\n {isOpen && <Popover append-to=\"some-element-id\">...</mdc-popover>}\n </div>);\n}\n```\nAs a workaround Popover need to wrap with any other element/component, for example:\n```tsx\nconst SomeComponent = () => {\n const [isOpen, setIsOpen] = useState(false);\n return (<div>\n {isOpen && <div>\n <Popover append-to=\"some-element-id\">...</mdc-popover>\n <div>}\n </div>);\n}\n```\nNote the wrapper <div> around the Popover component (React.Fragment does not work).",
31280
31527
  "name": "Popover",
31281
31528
  "cssProperties": [
31282
31529
  {
@@ -32799,7 +33046,7 @@
32799
33046
  "module": "/src/models"
32800
33047
  },
32801
33048
  "tagName": "mdc-popover",
32802
- "jsDoc": "/**\n * Popover component is a lightweight floating UI element that displays additional content when triggered.\n * It can be used for tooltips, dropdowns, or contextual menus.\n * The popover automatically positions itself based on available space and\n * supports dynamic height adjustments with scrollable content when needed。\n *\n * Note:\n * - A component (button) can trigger more than one popover, but only one of them should change the\n * aria-expanded and aria-haspopup, the rest of the popovers must have `disable-aria-expanded` attribute.\n *\n * @dependency mdc-button\n *\n * @tagname mdc-popover\n *\n *\n * @event shown - (React: onShown) This event is dispatched when the popover is shown\n * @event hidden - (React: onHidden) This event is dispatched when the popover is hidden\n * @event created - (React: onCreated) This event is dispatched when the popover is created (added to the DOM)\n * @event destroyed - (React: onDestroyed) This event is dispatched when the popover is destroyed (removed from the DOM)\n *\n * @cssproperty --mdc-popover-arrow-border-radius - radius of the arrow border\n * @cssproperty --mdc-popover-arrow-border - border of the arrow\n * @cssproperty --mdc-popover-primary-background-color - primary background color of the popover\n * @cssproperty --mdc-popover-border-color - border color of the popover\n * @cssproperty --mdc-popover-inverted-background-color - inverted background color of the popover\n * @cssproperty --mdc-popover-inverted-border-color - inverted border color of the popover\n * @cssproperty --mdc-popover-inverted-text-color - inverted text color of the popover\n * @cssproperty --mdc-popover-elevation-3 - elevation of the popover\n * @cssproperty --mdc-popover-max-width - max width of the popover\n * @cssproperty --mdc-popover-max-height - max height of the popover\n * @cssproperty --mdc-popover-width - width of the popover\n *\n * @slot - Default slot for the popover content\n *\n * @csspart popover-close - The close button of the popover.\n * @csspart popover-content - The content of the popover.\n * @csspart popover-hover-bridge - The hover bridge of the popover.\n */",
33049
+ "jsDoc": "/**\n * Popover is genric overlay which can be trigered by any actinable element.\n *\n * It can be used for tooltips, dropdowns, menus or any showing any other contextual content.\n *\n * The popover automatically positions itself based on available space and\n * supports dynamic height adjustments with scrollable content when needed.\n * It uses [Floating UI](https://floating-ui.com/) for maintaining the position of the popover.\n *\n * ## Limitations\n *\n * ### On trigger for multiple popovers\n *\n * A component (button, etc.) can trigger more than one popover, but only one of them should change the\n * aria-expanded and aria-haspopup attributes on the trigger.\n *\n * To prevent unexpected attribute changes on the trigger `disable-aria-expanded` attribute must be set on all linked\n * Popoers except one.\n *\n * ### React Popover with append-to attribute\n *\n * React mounts the popover based on the virtual DOM, but when the append-to attribute is set, the popover removes itself\n * and mounts to the specified element. React will not know about the move and will not know about the\n * newly created mdc-popoverportal element either. This throws a `NotFoundError` error when the Popover is directly\n * added/removed by React, for example:\n *\n * ```tsx\n * const SomeComponent = () => {\n * const [isOpen, setIsOpen] = useState(false);\n * return (<div>\n * {isOpen && <Popover append-to=\"some-element-id\">...</mdc-popover>}\n * </div>);\n * }\n * ```\n * As a workaround Popover need to wrap with any other element/component, for example:\n * ```tsx\n * const SomeComponent = () => {\n * const [isOpen, setIsOpen] = useState(false);\n * return (<div>\n * {isOpen && <div>\n * <Popover append-to=\"some-element-id\">...</mdc-popover>\n * <div>}\n * </div>);\n * }\n * ```\n * Note the wrapper <div> around the Popover component (React.Fragment does not work).\n *\n * @dependency mdc-button\n *\n * @tagname mdc-popover\n *\n * @event shown - (React: onShown) This event is dispatched when the popover is shown\n * @event hidden - (React: onHidden) This event is dispatched when the popover is hidden\n * @event created - (React: onCreated) This event is dispatched when the popover is created (added to the DOM)\n * @event destroyed - (React: onDestroyed) This event is dispatched when the popover is destroyed (removed from the DOM)\n *\n * @cssproperty --mdc-popover-arrow-border-radius - radius of the arrow border\n * @cssproperty --mdc-popover-arrow-border - border of the arrow\n * @cssproperty --mdc-popover-primary-background-color - primary background color of the popover\n * @cssproperty --mdc-popover-border-color - border color of the popover\n * @cssproperty --mdc-popover-inverted-background-color - inverted background color of the popover\n * @cssproperty --mdc-popover-inverted-border-color - inverted border color of the popover\n * @cssproperty --mdc-popover-inverted-text-color - inverted text color of the popover\n * @cssproperty --mdc-popover-elevation-3 - elevation of the popover\n * @cssproperty --mdc-popover-max-width - max width of the popover\n * @cssproperty --mdc-popover-max-height - max height of the popover\n * @cssproperty --mdc-popover-width - width of the popover\n *\n * @slot - Default slot for the popover content\n *\n * @csspart popover-close - The close button of the popover.\n * @csspart popover-content - The content of the popover.\n * @csspart popover-hover-bridge - The hover bridge of the popover.\n */",
32803
33050
  "customElement": true
32804
33051
  }
32805
33052
  ],
@@ -32816,247 +33063,20 @@
32816
33063
  },
32817
33064
  {
32818
33065
  "kind": "javascript-module",
32819
- "path": "components/presence/presence.component.js",
33066
+ "path": "components/popover/popover.portal.component.js",
32820
33067
  "declarations": [
32821
33068
  {
32822
- "kind": "class",
32823
- "description": "The `mdc-presence` component is a versatile UI element used to\ndisplay the presence status of a user or entity within an avatar component.\n\nThis component is ideal for use within avatar UIs where the presence status\nneeds to be visually represented.",
32824
- "name": "Presence",
32825
- "cssProperties": [
32826
- {
32827
- "description": "The background color of the presence type active.",
32828
- "name": "--mdc-presence-active-background-color"
32829
- },
32830
- {
32831
- "description": "The background color of the presence type away.",
32832
- "name": "--mdc-presence-away-background-color"
32833
- },
32834
- {
32835
- "description": "The background color of the presence type away-calling.",
32836
- "name": "--mdc-presence-away-calling-background-color"
32837
- },
32838
- {
32839
- "description": "The background color of the presence type busy.",
32840
- "name": "--mdc-presence-busy-background-color"
32841
- },
32842
- {
32843
- "description": "The background color of the presence type dnd.",
32844
- "name": "--mdc-presence-dnd-background-color"
32845
- },
32846
- {
32847
- "description": "The background color of the presence type meeting.",
32848
- "name": "--mdc-presence-meeting-background-color"
32849
- },
32850
- {
32851
- "description": "The background color of the presence type on-call.",
32852
- "name": "--mdc-presence-on-call-background-color"
32853
- },
32854
- {
32855
- "description": "The background color of the presence type on-device.",
32856
- "name": "--mdc-presence-on-device-background-color"
32857
- },
32858
- {
32859
- "description": "The background color of the presence type on-mobile.",
32860
- "name": "--mdc-presence-on-mobile-background-color"
32861
- },
32862
- {
32863
- "description": "The background color of the presence type pause.",
32864
- "name": "--mdc-presence-pause-background-color"
32865
- },
32866
- {
32867
- "description": "The background color of the presence type pto.",
32868
- "name": "--mdc-presence-pto-background-color"
32869
- },
32870
- {
32871
- "description": "The background color of the presence type presenting.",
32872
- "name": "--mdc-presence-presenting-background-color"
32873
- },
32874
- {
32875
- "description": "The background color of the presence type quiet.",
32876
- "name": "--mdc-presence-quiet-background-color"
32877
- },
32878
- {
32879
- "description": "The background color of the presence type scheduled.",
32880
- "name": "--mdc-presence-scheduled-background-color"
32881
- },
32882
- {
32883
- "description": "The background color of the presence type overlay.",
32884
- "name": "--mdc-presence-overlay-background-color"
32885
- }
32886
- ],
32887
- "cssParts": [
32888
- {
32889
- "description": "The presence content.",
32890
- "name": "presence-content"
32891
- },
32892
- {
32893
- "description": "The presence icon.",
32894
- "name": "mdc-presence-icon"
32895
- },
32896
- {
32897
- "description": "The presence icon for active.",
32898
- "name": "mdc-presence-icon__active"
32899
- },
32900
- {
32901
- "description": "The presence icon for away.",
32902
- "name": "mdc-presence-icon__away"
32903
- },
32904
- {
32905
- "description": "The presence icon for away-calling.",
32906
- "name": "mdc-presence-icon__away-calling"
32907
- },
32908
- {
32909
- "description": "The presence icon for busy.",
32910
- "name": "mdc-presence-icon__busy"
32911
- },
32912
- {
32913
- "description": "The presence icon for dnd.",
32914
- "name": "mdc-presence-icon__dnd"
32915
- },
32916
- {
32917
- "description": "The presence icon for meeting.",
32918
- "name": "mdc-presence-icon__meeting"
32919
- },
32920
- {
32921
- "description": "The presence icon for on-call.",
32922
- "name": "mdc-presence-icon__on-call"
32923
- },
32924
- {
32925
- "description": "The presence icon for on-device.",
32926
- "name": "mdc-presence-icon__on-device"
32927
- },
32928
- {
32929
- "description": "The presence icon for on-mobile.",
32930
- "name": "mdc-presence-icon__on-mobile"
32931
- },
32932
- {
32933
- "description": "The presence icon for pause.",
32934
- "name": "mdc-presence-icon__pause"
32935
- },
32936
- {
32937
- "description": "The presence icon for pto.",
32938
- "name": "mdc-presence-icon__pto"
32939
- },
32940
- {
32941
- "description": "The presence icon for presenting.",
32942
- "name": "mdc-presence-icon__presenting"
32943
- },
32944
- {
32945
- "description": "The presence icon for quiet.",
32946
- "name": "mdc-presence-icon__quiet"
32947
- },
32948
- {
32949
- "description": "The presence icon for scheduled.",
32950
- "name": "mdc-presence-icon__scheduled"
32951
- }
32952
- ],
32953
- "members": [
32954
- {
32955
- "kind": "field",
32956
- "name": "type",
32957
- "type": {
32958
- "text": "PresenceType"
32959
- },
32960
- "description": "Supported presence types:\n- `active`\n- `away`\n- `away-calling`\n- `busy`\n- `dnd`\n- `meeting`\n- `on-call`\n- `on-device`\n- `on-mobile`\n- `pause`\n- `pto`\n- `presenting`\n- `quiet`\n- `scheduled`",
32961
- "default": "active",
32962
- "attribute": "type",
32963
- "reflects": true
32964
- },
32965
- {
32966
- "kind": "field",
32967
- "name": "size",
32968
- "type": {
32969
- "text": "PresenceSize"
32970
- },
32971
- "description": "Acceptable numeric values include:\n- 24\n- 32\n- 48\n- 64\n- 72\n- 88\n- 124\n\nPresence icons are minimum 14px in size, meaning 24, 32, and 48 presence\nicons will be no smaller than 14px (for sizes 24, 32, 48).",
32972
- "default": "32",
32973
- "attribute": "size",
32974
- "reflects": true
32975
- },
32976
- {
32977
- "kind": "method",
32978
- "name": "setSize",
32979
- "privacy": "private",
32980
- "return": {
32981
- "type": {
32982
- "text": "void"
32983
- }
32984
- },
32985
- "parameters": [
32986
- {
32987
- "name": "size",
32988
- "type": {
32989
- "text": "PresenceSize"
32990
- }
32991
- }
32992
- ]
32993
- },
32994
- {
32995
- "kind": "field",
32996
- "name": "icon",
32997
- "privacy": "private",
32998
- "description": "Get the icon name based on the presence type",
32999
- "readonly": true
33000
- },
33001
- {
33002
- "kind": "method",
33003
- "name": "handleOnLoad",
33004
- "privacy": "private",
33005
- "return": {
33006
- "type": {
33007
- "text": "void"
33008
- }
33009
- },
33010
- "description": "Handles the successful load of an icon.\nSets the `currentIconType` property to match the `type` property."
33011
- },
33012
- {
33013
- "kind": "method",
33014
- "name": "handleOnError",
33015
- "privacy": "private",
33016
- "return": {
33017
- "type": {
33018
- "text": "void"
33019
- }
33020
- },
33021
- "description": "Handles an error that occurs when loading an icon."
33022
- }
33023
- ],
33024
- "attributes": [
33025
- {
33026
- "name": "type",
33027
- "type": {
33028
- "text": "PresenceType"
33029
- },
33030
- "description": "Supported presence types:\n- `active`\n- `away`\n- `away-calling`\n- `busy`\n- `dnd`\n- `meeting`\n- `on-call`\n- `on-device`\n- `on-mobile`\n- `pause`\n- `pto`\n- `presenting`\n- `quiet`\n- `scheduled`",
33031
- "default": "active",
33032
- "fieldName": "type"
33033
- },
33034
- {
33035
- "name": "size",
33036
- "type": {
33037
- "text": "PresenceSize"
33038
- },
33039
- "description": "Acceptable numeric values include:\n- 24\n- 32\n- 48\n- 64\n- 72\n- 88\n- 124\n\nPresence icons are minimum 14px in size, meaning 24, 32, and 48 presence\nicons will be no smaller than 14px (for sizes 24, 32, 48).",
33040
- "default": "32",
33041
- "fieldName": "size"
33042
- }
33043
- ],
33044
- "superclass": {
33045
- "name": "Component",
33046
- "module": "/src/models"
33047
- },
33048
- "tagName": "mdc-presence",
33049
- "jsDoc": "/**\n * The `mdc-presence` component is a versatile UI element used to\n * display the presence status of a user or entity within an avatar component.\n *\n * This component is ideal for use within avatar UIs where the presence status\n * needs to be visually represented.\n *\n * @dependency mdc-icon\n *\n * @tagname mdc-presence\n *\n * @cssproperty --mdc-presence-active-background-color - The background color of the presence type active.\n * @cssproperty --mdc-presence-away-background-color - The background color of the presence type away.\n * @cssproperty --mdc-presence-away-calling-background-color - The background color of the presence type away-calling.\n * @cssproperty --mdc-presence-busy-background-color - The background color of the presence type busy.\n * @cssproperty --mdc-presence-dnd-background-color - The background color of the presence type dnd.\n * @cssproperty --mdc-presence-meeting-background-color - The background color of the presence type meeting.\n * @cssproperty --mdc-presence-on-call-background-color - The background color of the presence type on-call.\n * @cssproperty --mdc-presence-on-device-background-color - The background color of the presence type on-device.\n * @cssproperty --mdc-presence-on-mobile-background-color - The background color of the presence type on-mobile.\n * @cssproperty --mdc-presence-pause-background-color - The background color of the presence type pause.\n * @cssproperty --mdc-presence-pto-background-color - The background color of the presence type pto.\n * @cssproperty --mdc-presence-presenting-background-color - The background color of the presence type presenting.\n * @cssproperty --mdc-presence-quiet-background-color - The background color of the presence type quiet.\n * @cssproperty --mdc-presence-scheduled-background-color - The background color of the presence type scheduled.\n * @cssproperty --mdc-presence-overlay-background-color - The background color of the presence type overlay.\n *\n * @csspart presence-content - The presence content.\n * @csspart mdc-presence-icon - The presence icon.\n * @csspart mdc-presence-icon__active - The presence icon for active.\n * @csspart mdc-presence-icon__away - The presence icon for away.\n * @csspart mdc-presence-icon__away-calling - The presence icon for away-calling.\n * @csspart mdc-presence-icon__busy - The presence icon for busy.\n * @csspart mdc-presence-icon__dnd - The presence icon for dnd.\n * @csspart mdc-presence-icon__meeting - The presence icon for meeting.\n * @csspart mdc-presence-icon__on-call - The presence icon for on-call.\n * @csspart mdc-presence-icon__on-device - The presence icon for on-device.\n * @csspart mdc-presence-icon__on-mobile - The presence icon for on-mobile.\n * @csspart mdc-presence-icon__pause - The presence icon for pause.\n * @csspart mdc-presence-icon__pto - The presence icon for pto.\n * @csspart mdc-presence-icon__presenting - The presence icon for presenting.\n * @csspart mdc-presence-icon__quiet - The presence icon for quiet.\n * @csspart mdc-presence-icon__scheduled - The presence icon for scheduled.\n */",
33050
- "customElement": true
33069
+ "kind": "variable",
33070
+ "name": "TAG_NAME"
33051
33071
  }
33052
33072
  ],
33053
33073
  "exports": [
33054
33074
  {
33055
33075
  "kind": "js",
33056
- "name": "default",
33076
+ "name": "TAG_NAME",
33057
33077
  "declaration": {
33058
- "name": "Presence",
33059
- "module": "components/presence/presence.component.js"
33078
+ "name": "TAG_NAME",
33079
+ "module": "components/popover/popover.portal.component.js"
33060
33080
  }
33061
33081
  }
33062
33082
  ]
@@ -33381,7 +33401,7 @@
33381
33401
  "kind": "method",
33382
33402
  "name": "renderLabel",
33383
33403
  "privacy": "protected",
33384
- "description": "renders the mdc-label-text container that contains the label and labelInfoToggleTip.",
33404
+ "description": "renders the label container that contains the label and labelInfoToggleTip.",
33385
33405
  "return": {
33386
33406
  "type": {
33387
33407
  "text": ""
@@ -33396,7 +33416,7 @@
33396
33416
  "kind": "method",
33397
33417
  "name": "renderHelperText",
33398
33418
  "privacy": "protected",
33399
- "description": "renders the mdc-help-text container that contains the helpertext icon and helpertext.",
33419
+ "description": "renders the help-text container that contains the helpertext icon and helpertext.",
33400
33420
  "return": {
33401
33421
  "type": {
33402
33422
  "text": ""
@@ -34099,7 +34119,7 @@
34099
34119
  "kind": "method",
34100
34120
  "name": "renderLabel",
34101
34121
  "privacy": "protected",
34102
- "description": "renders the mdc-label-text container that contains the label and labelInfoToggleTip.",
34122
+ "description": "renders the label container that contains the label and labelInfoToggleTip.",
34103
34123
  "return": {
34104
34124
  "type": {
34105
34125
  "text": ""
@@ -34114,7 +34134,7 @@
34114
34134
  "kind": "method",
34115
34135
  "name": "renderHelperText",
34116
34136
  "privacy": "protected",
34117
- "description": "renders the mdc-help-text container that contains the helpertext icon and helpertext.",
34137
+ "description": "renders the help-text container that contains the helpertext icon and helpertext.",
34118
34138
  "return": {
34119
34139
  "type": {
34120
34140
  "text": ""
@@ -34823,7 +34843,7 @@
34823
34843
  "kind": "method",
34824
34844
  "name": "renderLabel",
34825
34845
  "privacy": "protected",
34826
- "description": "renders the mdc-label-text container that contains the label and labelInfoToggleTip.",
34846
+ "description": "renders the label container that contains the label and labelInfoToggleTip.",
34827
34847
  "return": {
34828
34848
  "type": {
34829
34849
  "text": ""
@@ -34838,7 +34858,7 @@
34838
34858
  "kind": "method",
34839
34859
  "name": "renderHelperText",
34840
34860
  "privacy": "protected",
34841
- "description": "renders the mdc-help-text container that contains the helpertext icon and helpertext.",
34861
+ "description": "renders the help-text container that contains the helpertext icon and helpertext.",
34842
34862
  "return": {
34843
34863
  "type": {
34844
34864
  "text": ""
@@ -35344,7 +35364,7 @@
35344
35364
  "kind": "method",
35345
35365
  "name": "renderLabel",
35346
35366
  "privacy": "protected",
35347
- "description": "renders the mdc-label-text container that contains the label and labelInfoToggleTip.",
35367
+ "description": "renders the label container that contains the label and labelInfoToggleTip.",
35348
35368
  "return": {
35349
35369
  "type": {
35350
35370
  "text": ""
@@ -35359,7 +35379,7 @@
35359
35379
  "kind": "method",
35360
35380
  "name": "renderHelperText",
35361
35381
  "privacy": "protected",
35362
- "description": "renders the mdc-help-text container that contains the helpertext icon and helpertext.",
35382
+ "description": "renders the help-text container that contains the helpertext icon and helpertext.",
35363
35383
  "return": {
35364
35384
  "type": {
35365
35385
  "text": ""
@@ -36488,7 +36508,7 @@
36488
36508
  "kind": "method",
36489
36509
  "name": "renderLabel",
36490
36510
  "privacy": "protected",
36491
- "description": "renders the mdc-label-text container that contains the label and labelInfoToggleTip.",
36511
+ "description": "renders the label container that contains the label and labelInfoToggleTip.",
36492
36512
  "return": {
36493
36513
  "type": {
36494
36514
  "text": ""
@@ -36503,7 +36523,7 @@
36503
36523
  "kind": "method",
36504
36524
  "name": "renderHelperText",
36505
36525
  "privacy": "protected",
36506
- "description": "renders the mdc-help-text container that contains the helpertext icon and helpertext.",
36526
+ "description": "renders the help-text container that contains the helpertext icon and helpertext.",
36507
36527
  "return": {
36508
36528
  "type": {
36509
36529
  "text": ""
@@ -37842,7 +37862,7 @@
37842
37862
  "kind": "method",
37843
37863
  "name": "renderLabel",
37844
37864
  "privacy": "protected",
37845
- "description": "renders the mdc-label-text container that contains the label and labelInfoToggleTip.",
37865
+ "description": "renders the label container that contains the label and labelInfoToggleTip.",
37846
37866
  "return": {
37847
37867
  "type": {
37848
37868
  "text": ""
@@ -37857,7 +37877,7 @@
37857
37877
  "kind": "method",
37858
37878
  "name": "renderHelperText",
37859
37879
  "privacy": "protected",
37860
- "description": "renders the mdc-help-text container that contains the helpertext icon and helpertext.",
37880
+ "description": "renders the help-text container that contains the helpertext icon and helpertext.",
37861
37881
  "return": {
37862
37882
  "type": {
37863
37883
  "text": ""
@@ -42182,7 +42202,7 @@
42182
42202
  "kind": "method",
42183
42203
  "name": "renderLabel",
42184
42204
  "privacy": "protected",
42185
- "description": "renders the mdc-label-text container that contains the label and labelInfoToggleTip.",
42205
+ "description": "renders the label container that contains the label and labelInfoToggleTip.",
42186
42206
  "return": {
42187
42207
  "type": {
42188
42208
  "text": ""
@@ -42197,7 +42217,7 @@
42197
42217
  "kind": "method",
42198
42218
  "name": "renderHelperText",
42199
42219
  "privacy": "protected",
42200
- "description": "renders the mdc-help-text container that contains the helpertext icon and helpertext.",
42220
+ "description": "renders the help-text container that contains the helpertext icon and helpertext.",
42201
42221
  "return": {
42202
42222
  "type": {
42203
42223
  "text": ""
@@ -43103,18 +43123,6 @@
43103
43123
  "description": "Height of the toggle when it's size is compact",
43104
43124
  "name": "--mdc-toggle-height-compact"
43105
43125
  },
43106
- {
43107
- "description": "Line height of the toggle label",
43108
- "name": "--mdc-toggle-label-lineheight"
43109
- },
43110
- {
43111
- "description": "Font size of the toggle label",
43112
- "name": "--mdc-toggle-label-fontsize"
43113
- },
43114
- {
43115
- "description": "Font weight of the toggle label",
43116
- "name": "--mdc-toggle-label-fontweight"
43117
- },
43118
43126
  {
43119
43127
  "description": "Color of the toggle label and help text in disabled state",
43120
43128
  "name": "--mdc-toggle-label-color-disabled"
@@ -43542,7 +43550,7 @@
43542
43550
  "kind": "method",
43543
43551
  "name": "renderLabel",
43544
43552
  "privacy": "protected",
43545
- "description": "renders the mdc-label-text container that contains the label and labelInfoToggleTip.",
43553
+ "description": "renders the label container that contains the label and labelInfoToggleTip.",
43546
43554
  "return": {
43547
43555
  "type": {
43548
43556
  "text": ""
@@ -43557,7 +43565,7 @@
43557
43565
  "kind": "method",
43558
43566
  "name": "renderHelperText",
43559
43567
  "privacy": "protected",
43560
- "description": "renders the mdc-help-text container that contains the helpertext icon and helpertext.",
43568
+ "description": "renders the help-text container that contains the helpertext icon and helpertext.",
43561
43569
  "return": {
43562
43570
  "type": {
43563
43571
  "text": ""
@@ -43799,7 +43807,7 @@
43799
43807
  "module": "/src/components/formfieldwrapper"
43800
43808
  },
43801
43809
  "tagName": "mdc-toggle",
43802
- "jsDoc": "/**\n * Toggle Component is an interactive control used to switch between two mutually exclusive options,\n * such as On/Off, Active/Inactive. These are commonly used in settings panels, forms, and preference selections\n * where users need to enable or disable a feature.\n * It contains an optional label and an optional helper text.\n *\n * To create a group of toggles, use the FormFieldGroup component.\n *\n * Note: It internally renders a checkbox styled as a toggle switch.\n *\n * @dependency mdc-button\n * @dependency mdc-icon\n * @dependency mdc-statictoggle\n * @dependency mdc-text\n * @dependency mdc-toggletip\n *\n * @tagname mdc-toggle\n *\n * @event change - (React: onChange) Event that gets dispatched when the toggle state changes.\n * @event focus - (React: onFocus) Event that gets dispatched when the toggle receives focus.\n *\n * @cssproperty --mdc-toggle-width - Width of the toggle\n * @cssproperty --mdc-toggle-height - Height of the toggle\n * @cssproperty --mdc-toggle-width-compact - Width of the toggle when it's size is compact\n * @cssproperty --mdc-toggle-height-compact - Height of the toggle when it's size is compact\n * @cssproperty --mdc-toggle-label-lineheight - Line height of the toggle label\n * @cssproperty --mdc-toggle-label-fontsize - Font size of the toggle label\n * @cssproperty --mdc-toggle-label-fontweight - Font weight of the toggle label\n * @cssproperty --mdc-toggle-label-color-disabled - Color of the toggle label and help text in disabled state\n * @cssproperty --mdc-toggle-help-text-color - Color of the help text label\n * @cssproperty --mdc-toggle-active-hover-color - Background color of the active toggle in hover state\n * @cssproperty --mdc-toggle-active-pressed-color - Background color of the active toggle in pressed state\n * @cssproperty --mdc-toggle-inactive-hover-color - Background color of the inactive toggle in hover state\n * @cssproperty --mdc-toggle-inactive-pressed-color - Background color of the inactive toggle in pressed state\n */",
43810
+ "jsDoc": "/**\n * Toggle Component is an interactive control used to switch between two mutually exclusive options,\n * such as On/Off, Active/Inactive. These are commonly used in settings panels, forms, and preference selections\n * where users need to enable or disable a feature.\n * It contains an optional label and an optional helper text.\n *\n * To create a group of toggles, use the FormFieldGroup component.\n *\n * Note: It internally renders a checkbox styled as a toggle switch.\n *\n * @dependency mdc-button\n * @dependency mdc-icon\n * @dependency mdc-statictoggle\n * @dependency mdc-text\n * @dependency mdc-toggletip\n *\n * @tagname mdc-toggle\n *\n * @event change - (React: onChange) Event that gets dispatched when the toggle state changes.\n * @event focus - (React: onFocus) Event that gets dispatched when the toggle receives focus.\n *\n * @cssproperty --mdc-toggle-width - Width of the toggle\n * @cssproperty --mdc-toggle-height - Height of the toggle\n * @cssproperty --mdc-toggle-width-compact - Width of the toggle when it's size is compact\n * @cssproperty --mdc-toggle-height-compact - Height of the toggle when it's size is compact\n * @cssproperty --mdc-toggle-label-color-disabled - Color of the toggle label and help text in disabled state\n * @cssproperty --mdc-toggle-help-text-color - Color of the help text label\n * @cssproperty --mdc-toggle-active-hover-color - Background color of the active toggle in hover state\n * @cssproperty --mdc-toggle-active-pressed-color - Background color of the active toggle in pressed state\n * @cssproperty --mdc-toggle-inactive-hover-color - Background color of the inactive toggle in hover state\n * @cssproperty --mdc-toggle-inactive-pressed-color - Background color of the inactive toggle in pressed state\n */",
43803
43811
  "customElement": true,
43804
43812
  "slots": [
43805
43813
  {