@momentum-design/components 0.53.5 → 0.53.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.
- package/dist/browser/index.js +62 -34
- package/dist/browser/index.js.map +2 -2
- package/dist/components/button/button.styles.js +62 -34
- package/dist/custom-elements.json +336 -336
- package/dist/react/index.d.ts +2 -2
- package/dist/react/index.js +2 -2
- package/package.json +1 -1
@@ -1425,6 +1425,110 @@
|
|
1425
1425
|
}
|
1426
1426
|
]
|
1427
1427
|
},
|
1428
|
+
{
|
1429
|
+
"kind": "javascript-module",
|
1430
|
+
"path": "components/brandvisual/brandvisual.component.js",
|
1431
|
+
"declarations": [
|
1432
|
+
{
|
1433
|
+
"kind": "class",
|
1434
|
+
"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.",
|
1435
|
+
"name": "Brandvisual",
|
1436
|
+
"members": [
|
1437
|
+
{
|
1438
|
+
"kind": "field",
|
1439
|
+
"name": "brandVisualData",
|
1440
|
+
"type": {
|
1441
|
+
"text": "HTMLElement | undefined"
|
1442
|
+
},
|
1443
|
+
"privacy": "private"
|
1444
|
+
},
|
1445
|
+
{
|
1446
|
+
"kind": "field",
|
1447
|
+
"name": "name",
|
1448
|
+
"type": {
|
1449
|
+
"text": "BrandVisualNames | undefined"
|
1450
|
+
},
|
1451
|
+
"description": "Name of the brandVisual (= filename)",
|
1452
|
+
"attribute": "name",
|
1453
|
+
"reflects": true
|
1454
|
+
},
|
1455
|
+
{
|
1456
|
+
"kind": "method",
|
1457
|
+
"name": "getBrandVisualData",
|
1458
|
+
"privacy": "private"
|
1459
|
+
},
|
1460
|
+
{
|
1461
|
+
"kind": "method",
|
1462
|
+
"name": "handleBrandVisualLoadedSuccess",
|
1463
|
+
"privacy": "private",
|
1464
|
+
"parameters": [
|
1465
|
+
{
|
1466
|
+
"name": "brandVisualHtml",
|
1467
|
+
"type": {
|
1468
|
+
"text": "HTMLElement"
|
1469
|
+
},
|
1470
|
+
"description": "The brandvisual html element which has been fetched from the brandvisual provider."
|
1471
|
+
}
|
1472
|
+
],
|
1473
|
+
"description": "Sets the brandVisualData state to the fetched brandvisual.\nDispatches a 'load' event on the component once the brandvisual has been successfully loaded."
|
1474
|
+
},
|
1475
|
+
{
|
1476
|
+
"kind": "method",
|
1477
|
+
"name": "handleBrandVisualLoadedFailure",
|
1478
|
+
"privacy": "private",
|
1479
|
+
"parameters": [
|
1480
|
+
{
|
1481
|
+
"name": "error",
|
1482
|
+
"type": {
|
1483
|
+
"text": "unknown"
|
1484
|
+
}
|
1485
|
+
}
|
1486
|
+
],
|
1487
|
+
"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."
|
1488
|
+
}
|
1489
|
+
],
|
1490
|
+
"events": [
|
1491
|
+
{
|
1492
|
+
"description": "(React: onLoad) This event is dispatched when the brandvisual has been successfully loaded.",
|
1493
|
+
"name": "load",
|
1494
|
+
"reactName": "onLoad"
|
1495
|
+
},
|
1496
|
+
{
|
1497
|
+
"description": "(React: onError) This event is dispatched when the brandvisual fetching has failed.",
|
1498
|
+
"name": "error",
|
1499
|
+
"reactName": "onError"
|
1500
|
+
}
|
1501
|
+
],
|
1502
|
+
"attributes": [
|
1503
|
+
{
|
1504
|
+
"name": "name",
|
1505
|
+
"type": {
|
1506
|
+
"text": "BrandVisualNames | undefined"
|
1507
|
+
},
|
1508
|
+
"description": "Name of the brandVisual (= filename)",
|
1509
|
+
"fieldName": "name"
|
1510
|
+
}
|
1511
|
+
],
|
1512
|
+
"superclass": {
|
1513
|
+
"name": "Component",
|
1514
|
+
"module": "/src/models"
|
1515
|
+
},
|
1516
|
+
"tagName": "mdc-brandvisual",
|
1517
|
+
"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 */",
|
1518
|
+
"customElement": true
|
1519
|
+
}
|
1520
|
+
],
|
1521
|
+
"exports": [
|
1522
|
+
{
|
1523
|
+
"kind": "js",
|
1524
|
+
"name": "default",
|
1525
|
+
"declaration": {
|
1526
|
+
"name": "Brandvisual",
|
1527
|
+
"module": "components/brandvisual/brandvisual.component.js"
|
1528
|
+
}
|
1529
|
+
}
|
1530
|
+
]
|
1531
|
+
},
|
1428
1532
|
{
|
1429
1533
|
"kind": "javascript-module",
|
1430
1534
|
"path": "components/badge/badge.component.js",
|
@@ -1746,110 +1850,6 @@
|
|
1746
1850
|
}
|
1747
1851
|
]
|
1748
1852
|
},
|
1749
|
-
{
|
1750
|
-
"kind": "javascript-module",
|
1751
|
-
"path": "components/brandvisual/brandvisual.component.js",
|
1752
|
-
"declarations": [
|
1753
|
-
{
|
1754
|
-
"kind": "class",
|
1755
|
-
"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.",
|
1756
|
-
"name": "Brandvisual",
|
1757
|
-
"members": [
|
1758
|
-
{
|
1759
|
-
"kind": "field",
|
1760
|
-
"name": "brandVisualData",
|
1761
|
-
"type": {
|
1762
|
-
"text": "HTMLElement | undefined"
|
1763
|
-
},
|
1764
|
-
"privacy": "private"
|
1765
|
-
},
|
1766
|
-
{
|
1767
|
-
"kind": "field",
|
1768
|
-
"name": "name",
|
1769
|
-
"type": {
|
1770
|
-
"text": "BrandVisualNames | undefined"
|
1771
|
-
},
|
1772
|
-
"description": "Name of the brandVisual (= filename)",
|
1773
|
-
"attribute": "name",
|
1774
|
-
"reflects": true
|
1775
|
-
},
|
1776
|
-
{
|
1777
|
-
"kind": "method",
|
1778
|
-
"name": "getBrandVisualData",
|
1779
|
-
"privacy": "private"
|
1780
|
-
},
|
1781
|
-
{
|
1782
|
-
"kind": "method",
|
1783
|
-
"name": "handleBrandVisualLoadedSuccess",
|
1784
|
-
"privacy": "private",
|
1785
|
-
"parameters": [
|
1786
|
-
{
|
1787
|
-
"name": "brandVisualHtml",
|
1788
|
-
"type": {
|
1789
|
-
"text": "HTMLElement"
|
1790
|
-
},
|
1791
|
-
"description": "The brandvisual html element which has been fetched from the brandvisual provider."
|
1792
|
-
}
|
1793
|
-
],
|
1794
|
-
"description": "Sets the brandVisualData state to the fetched brandvisual.\nDispatches a 'load' event on the component once the brandvisual has been successfully loaded."
|
1795
|
-
},
|
1796
|
-
{
|
1797
|
-
"kind": "method",
|
1798
|
-
"name": "handleBrandVisualLoadedFailure",
|
1799
|
-
"privacy": "private",
|
1800
|
-
"parameters": [
|
1801
|
-
{
|
1802
|
-
"name": "error",
|
1803
|
-
"type": {
|
1804
|
-
"text": "unknown"
|
1805
|
-
}
|
1806
|
-
}
|
1807
|
-
],
|
1808
|
-
"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."
|
1809
|
-
}
|
1810
|
-
],
|
1811
|
-
"events": [
|
1812
|
-
{
|
1813
|
-
"description": "(React: onLoad) This event is dispatched when the brandvisual has been successfully loaded.",
|
1814
|
-
"name": "load",
|
1815
|
-
"reactName": "onLoad"
|
1816
|
-
},
|
1817
|
-
{
|
1818
|
-
"description": "(React: onError) This event is dispatched when the brandvisual fetching has failed.",
|
1819
|
-
"name": "error",
|
1820
|
-
"reactName": "onError"
|
1821
|
-
}
|
1822
|
-
],
|
1823
|
-
"attributes": [
|
1824
|
-
{
|
1825
|
-
"name": "name",
|
1826
|
-
"type": {
|
1827
|
-
"text": "BrandVisualNames | undefined"
|
1828
|
-
},
|
1829
|
-
"description": "Name of the brandVisual (= filename)",
|
1830
|
-
"fieldName": "name"
|
1831
|
-
}
|
1832
|
-
],
|
1833
|
-
"superclass": {
|
1834
|
-
"name": "Component",
|
1835
|
-
"module": "/src/models"
|
1836
|
-
},
|
1837
|
-
"tagName": "mdc-brandvisual",
|
1838
|
-
"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 */",
|
1839
|
-
"customElement": true
|
1840
|
-
}
|
1841
|
-
],
|
1842
|
-
"exports": [
|
1843
|
-
{
|
1844
|
-
"kind": "js",
|
1845
|
-
"name": "default",
|
1846
|
-
"declaration": {
|
1847
|
-
"name": "Brandvisual",
|
1848
|
-
"module": "components/brandvisual/brandvisual.component.js"
|
1849
|
-
}
|
1850
|
-
}
|
1851
|
-
]
|
1852
|
-
},
|
1853
1853
|
{
|
1854
1854
|
"kind": "javascript-module",
|
1855
1855
|
"path": "components/bullet/bullet.component.js",
|
@@ -9043,252 +9043,43 @@
|
|
9043
9043
|
},
|
9044
9044
|
{
|
9045
9045
|
"kind": "javascript-module",
|
9046
|
-
"path": "components/
|
9046
|
+
"path": "components/listitem/listitem.component.js",
|
9047
9047
|
"declarations": [
|
9048
9048
|
{
|
9049
9049
|
"kind": "class",
|
9050
|
-
"description": "
|
9051
|
-
"name": "
|
9050
|
+
"description": "mdc-listitem component is used to display a label with different types of controls.\nThere can be three types of controls, a radio button, a checkbox on the\nleading side and a toggle on the trailing side.\nThe list item can contain an avatar on the leading side and a badge on the trailing side.\nAdditionally, the list item can contain a side header and a subline text.\n\nThe leading and trailing slots can be used to display controls and text. <br/>\nBased on the leading/trailing slot, the position of the controls and text can be adjusted. <br/>\nPlease use mdc-list as a parent element even when there is only listitem for a11y purpose.",
|
9051
|
+
"name": "ListItem",
|
9052
9052
|
"cssProperties": [
|
9053
9053
|
{
|
9054
|
-
"description": "Allows customization of the default background color
|
9055
|
-
"name": "--mdc-
|
9054
|
+
"description": "Allows customization of the default background color.",
|
9055
|
+
"name": "--mdc-listitem-default-background-color"
|
9056
9056
|
},
|
9057
9057
|
{
|
9058
|
-
"description": "Allows customization of the
|
9059
|
-
"name": "--mdc-
|
9058
|
+
"description": "Allows customization of the background color on hover.",
|
9059
|
+
"name": "--mdc-listitem-background-color-hover"
|
9060
9060
|
},
|
9061
9061
|
{
|
9062
|
-
"description": "Allows customization of the
|
9063
|
-
"name": "--mdc-
|
9062
|
+
"description": "Allows customization of the background color when pressed.",
|
9063
|
+
"name": "--mdc-listitem-background-color-active"
|
9064
9064
|
},
|
9065
9065
|
{
|
9066
|
-
"description": "Allows customization of the
|
9067
|
-
"name": "--mdc-
|
9068
|
-
}
|
9069
|
-
],
|
9070
|
-
"members": [
|
9066
|
+
"description": "Allows customization of the primary label, side header and subline text slot color.",
|
9067
|
+
"name": "--mdc-listitem-primary-label-color"
|
9068
|
+
},
|
9071
9069
|
{
|
9072
|
-
"
|
9073
|
-
"name": "
|
9074
|
-
|
9075
|
-
|
9076
|
-
|
9077
|
-
"
|
9078
|
-
|
9079
|
-
|
9080
|
-
"
|
9081
|
-
"
|
9070
|
+
"description": "Allows customization of the secondary and tertiary label text slot color.",
|
9071
|
+
"name": "--mdc-listitem-secondary-label-color"
|
9072
|
+
},
|
9073
|
+
{
|
9074
|
+
"description": "Allows customization of the disabled color.",
|
9075
|
+
"name": "--mdc-listitem-disabled-color"
|
9076
|
+
},
|
9077
|
+
{
|
9078
|
+
"description": "Allows customization of column gap.",
|
9079
|
+
"name": "--mdc-listitem-column-gap"
|
9082
9080
|
}
|
9083
9081
|
],
|
9084
|
-
"
|
9085
|
-
{
|
9086
|
-
"name": "variant",
|
9087
|
-
"type": {
|
9088
|
-
"text": "MarkerVariants"
|
9089
|
-
},
|
9090
|
-
"description": "There are two variants of markers, each with a width of 0.25rem:\n- **solid**: Solid marker.\n- **striped**: Striped marker.",
|
9091
|
-
"default": "solid",
|
9092
|
-
"fieldName": "variant"
|
9093
|
-
}
|
9094
|
-
],
|
9095
|
-
"superclass": {
|
9096
|
-
"name": "Component",
|
9097
|
-
"module": "/src/models"
|
9098
|
-
},
|
9099
|
-
"tagName": "mdc-marker",
|
9100
|
-
"jsDoc": "/**\n * `mdc-marker`, which is a vertical line and\n * used to draw attention to specific parts of\n * the content or to signify important information.\n *\n * **Marker Variants**:\n * - **solid**: Solid marker.\n * - **striped**: Striped marker.\n *\n * @tagname mdc-marker\n *\n * @cssproperty --mdc-marker-solid-background-color - Allows customization of the default background color\n * in solid variant.\n * @cssproperty --mdc-marker-striped-color - Allows customization of the default stripes in striped variant.\n * @cssproperty --mdc-marker-striped-background-color - Allows customization of the default background color\n * in striped variant.\n * @cssproperty --mdc-marker-width - Allows customization of the default width.\n */",
|
9101
|
-
"customElement": true
|
9102
|
-
}
|
9103
|
-
],
|
9104
|
-
"exports": [
|
9105
|
-
{
|
9106
|
-
"kind": "js",
|
9107
|
-
"name": "default",
|
9108
|
-
"declaration": {
|
9109
|
-
"name": "Marker",
|
9110
|
-
"module": "components/marker/marker.component.js"
|
9111
|
-
}
|
9112
|
-
}
|
9113
|
-
]
|
9114
|
-
},
|
9115
|
-
{
|
9116
|
-
"kind": "javascript-module",
|
9117
|
-
"path": "components/optgroup/optgroup.component.js",
|
9118
|
-
"declarations": [
|
9119
|
-
{
|
9120
|
-
"kind": "class",
|
9121
|
-
"description": "optgroup component, which creates a grouping of mdc-option within a listbox element.",
|
9122
|
-
"name": "OptGroup",
|
9123
|
-
"cssProperties": [
|
9124
|
-
{
|
9125
|
-
"description": "Allows customization of the disabled option color.",
|
9126
|
-
"name": "--mdc-optgroup-disabled-color"
|
9127
|
-
}
|
9128
|
-
],
|
9129
|
-
"slots": [
|
9130
|
-
{
|
9131
|
-
"description": "This is a default slot for mdc-option elements.",
|
9132
|
-
"name": "default"
|
9133
|
-
}
|
9134
|
-
],
|
9135
|
-
"members": [
|
9136
|
-
{
|
9137
|
-
"kind": "field",
|
9138
|
-
"name": "label",
|
9139
|
-
"type": {
|
9140
|
-
"text": "string | undefined"
|
9141
|
-
},
|
9142
|
-
"description": "The header text to be displayed on the top of the options list.",
|
9143
|
-
"attribute": "label",
|
9144
|
-
"reflects": true
|
9145
|
-
},
|
9146
|
-
{
|
9147
|
-
"kind": "method",
|
9148
|
-
"name": "setDisabledForAllOptions",
|
9149
|
-
"privacy": "private",
|
9150
|
-
"return": {
|
9151
|
-
"type": {
|
9152
|
-
"text": "void"
|
9153
|
-
}
|
9154
|
-
}
|
9155
|
-
},
|
9156
|
-
{
|
9157
|
-
"kind": "field",
|
9158
|
-
"name": "dataAriaLabel",
|
9159
|
-
"type": {
|
9160
|
-
"text": "string | null"
|
9161
|
-
},
|
9162
|
-
"default": "null",
|
9163
|
-
"description": "Defines a string value that labels the current element.\nThe Aria-Label attribute to be set for accessibility.",
|
9164
|
-
"attribute": "data-aria-label",
|
9165
|
-
"reflects": true,
|
9166
|
-
"inheritedFrom": {
|
9167
|
-
"name": "DataAriaLabelMixin",
|
9168
|
-
"module": "utils/mixins/DataAriaLabelMixin.js"
|
9169
|
-
}
|
9170
|
-
},
|
9171
|
-
{
|
9172
|
-
"kind": "field",
|
9173
|
-
"name": "disabled",
|
9174
|
-
"type": {
|
9175
|
-
"text": "boolean | undefined"
|
9176
|
-
},
|
9177
|
-
"description": "Indicates whether the component is disabled.\nWhen the component is disabled for user interaction; it is not focusable or clickable.",
|
9178
|
-
"default": "undefined",
|
9179
|
-
"attribute": "disabled",
|
9180
|
-
"reflects": true,
|
9181
|
-
"inheritedFrom": {
|
9182
|
-
"name": "DisabledMixin",
|
9183
|
-
"module": "utils/mixins/DisabledMixin.js"
|
9184
|
-
}
|
9185
|
-
}
|
9186
|
-
],
|
9187
|
-
"attributes": [
|
9188
|
-
{
|
9189
|
-
"name": "label",
|
9190
|
-
"type": {
|
9191
|
-
"text": "string | undefined"
|
9192
|
-
},
|
9193
|
-
"description": "The header text to be displayed on the top of the options list.",
|
9194
|
-
"fieldName": "label"
|
9195
|
-
},
|
9196
|
-
{
|
9197
|
-
"name": "data-aria-label",
|
9198
|
-
"type": {
|
9199
|
-
"text": "string | null"
|
9200
|
-
},
|
9201
|
-
"default": "null",
|
9202
|
-
"description": "Defines a string value that labels the current element.\nThe Aria-Label attribute to be set for accessibility.",
|
9203
|
-
"fieldName": "dataAriaLabel",
|
9204
|
-
"inheritedFrom": {
|
9205
|
-
"name": "DataAriaLabelMixin",
|
9206
|
-
"module": "src/utils/mixins/DataAriaLabelMixin.ts"
|
9207
|
-
}
|
9208
|
-
},
|
9209
|
-
{
|
9210
|
-
"name": "disabled",
|
9211
|
-
"type": {
|
9212
|
-
"text": "boolean | undefined"
|
9213
|
-
},
|
9214
|
-
"description": "Indicates whether the component is disabled.\nWhen the component is disabled for user interaction; it is not focusable or clickable.",
|
9215
|
-
"default": "undefined",
|
9216
|
-
"fieldName": "disabled",
|
9217
|
-
"inheritedFrom": {
|
9218
|
-
"name": "DisabledMixin",
|
9219
|
-
"module": "src/utils/mixins/DisabledMixin.ts"
|
9220
|
-
}
|
9221
|
-
}
|
9222
|
-
],
|
9223
|
-
"mixins": [
|
9224
|
-
{
|
9225
|
-
"name": "DataAriaLabelMixin",
|
9226
|
-
"module": "/src/utils/mixins/DataAriaLabelMixin"
|
9227
|
-
},
|
9228
|
-
{
|
9229
|
-
"name": "DisabledMixin",
|
9230
|
-
"module": "/src/utils/mixins/DisabledMixin"
|
9231
|
-
}
|
9232
|
-
],
|
9233
|
-
"superclass": {
|
9234
|
-
"name": "Component",
|
9235
|
-
"module": "/src/models"
|
9236
|
-
},
|
9237
|
-
"tagName": "mdc-optgroup",
|
9238
|
-
"jsDoc": "/**\n * optgroup component, which creates a grouping of mdc-option within a listbox element.\n *\n * @dependency mdc-text\n *\n * @tagname mdc-optgroup\n *\n * @slot default - This is a default slot for mdc-option elements.\n *\n * @cssproperty --mdc-optgroup-disabled-color - Allows customization of the disabled option color.\n */",
|
9239
|
-
"customElement": true
|
9240
|
-
}
|
9241
|
-
],
|
9242
|
-
"exports": [
|
9243
|
-
{
|
9244
|
-
"kind": "js",
|
9245
|
-
"name": "default",
|
9246
|
-
"declaration": {
|
9247
|
-
"name": "OptGroup",
|
9248
|
-
"module": "components/optgroup/optgroup.component.js"
|
9249
|
-
}
|
9250
|
-
}
|
9251
|
-
]
|
9252
|
-
},
|
9253
|
-
{
|
9254
|
-
"kind": "javascript-module",
|
9255
|
-
"path": "components/listitem/listitem.component.js",
|
9256
|
-
"declarations": [
|
9257
|
-
{
|
9258
|
-
"kind": "class",
|
9259
|
-
"description": "mdc-listitem component is used to display a label with different types of controls.\nThere can be three types of controls, a radio button, a checkbox on the\nleading side and a toggle on the trailing side.\nThe list item can contain an avatar on the leading side and a badge on the trailing side.\nAdditionally, the list item can contain a side header and a subline text.\n\nThe leading and trailing slots can be used to display controls and text. <br/>\nBased on the leading/trailing slot, the position of the controls and text can be adjusted. <br/>\nPlease use mdc-list as a parent element even when there is only listitem for a11y purpose.",
|
9260
|
-
"name": "ListItem",
|
9261
|
-
"cssProperties": [
|
9262
|
-
{
|
9263
|
-
"description": "Allows customization of the default background color.",
|
9264
|
-
"name": "--mdc-listitem-default-background-color"
|
9265
|
-
},
|
9266
|
-
{
|
9267
|
-
"description": "Allows customization of the background color on hover.",
|
9268
|
-
"name": "--mdc-listitem-background-color-hover"
|
9269
|
-
},
|
9270
|
-
{
|
9271
|
-
"description": "Allows customization of the background color when pressed.",
|
9272
|
-
"name": "--mdc-listitem-background-color-active"
|
9273
|
-
},
|
9274
|
-
{
|
9275
|
-
"description": "Allows customization of the primary label, side header and subline text slot color.",
|
9276
|
-
"name": "--mdc-listitem-primary-label-color"
|
9277
|
-
},
|
9278
|
-
{
|
9279
|
-
"description": "Allows customization of the secondary and tertiary label text slot color.",
|
9280
|
-
"name": "--mdc-listitem-secondary-label-color"
|
9281
|
-
},
|
9282
|
-
{
|
9283
|
-
"description": "Allows customization of the disabled color.",
|
9284
|
-
"name": "--mdc-listitem-disabled-color"
|
9285
|
-
},
|
9286
|
-
{
|
9287
|
-
"description": "Allows customization of column gap.",
|
9288
|
-
"name": "--mdc-listitem-column-gap"
|
9289
|
-
}
|
9290
|
-
],
|
9291
|
-
"slots": [
|
9082
|
+
"slots": [
|
9292
9083
|
{
|
9293
9084
|
"description": "slot for list item controls to appear of leading end.",
|
9294
9085
|
"name": "leading-controls"
|
@@ -9627,6 +9418,215 @@
|
|
9627
9418
|
}
|
9628
9419
|
]
|
9629
9420
|
},
|
9421
|
+
{
|
9422
|
+
"kind": "javascript-module",
|
9423
|
+
"path": "components/marker/marker.component.js",
|
9424
|
+
"declarations": [
|
9425
|
+
{
|
9426
|
+
"kind": "class",
|
9427
|
+
"description": "`mdc-marker`, which is a vertical line and\nused to draw attention to specific parts of\nthe content or to signify important information.\n\n**Marker Variants**:\n- **solid**: Solid marker.\n- **striped**: Striped marker.",
|
9428
|
+
"name": "Marker",
|
9429
|
+
"cssProperties": [
|
9430
|
+
{
|
9431
|
+
"description": "Allows customization of the default background color in solid variant.",
|
9432
|
+
"name": "--mdc-marker-solid-background-color"
|
9433
|
+
},
|
9434
|
+
{
|
9435
|
+
"description": "Allows customization of the default stripes in striped variant.",
|
9436
|
+
"name": "--mdc-marker-striped-color"
|
9437
|
+
},
|
9438
|
+
{
|
9439
|
+
"description": "Allows customization of the default background color in striped variant.",
|
9440
|
+
"name": "--mdc-marker-striped-background-color"
|
9441
|
+
},
|
9442
|
+
{
|
9443
|
+
"description": "Allows customization of the default width.",
|
9444
|
+
"name": "--mdc-marker-width"
|
9445
|
+
}
|
9446
|
+
],
|
9447
|
+
"members": [
|
9448
|
+
{
|
9449
|
+
"kind": "field",
|
9450
|
+
"name": "variant",
|
9451
|
+
"type": {
|
9452
|
+
"text": "MarkerVariants"
|
9453
|
+
},
|
9454
|
+
"privacy": "public",
|
9455
|
+
"description": "There are two variants of markers, each with a width of 0.25rem:\n- **solid**: Solid marker.\n- **striped**: Striped marker.",
|
9456
|
+
"default": "solid",
|
9457
|
+
"attribute": "variant",
|
9458
|
+
"reflects": true
|
9459
|
+
}
|
9460
|
+
],
|
9461
|
+
"attributes": [
|
9462
|
+
{
|
9463
|
+
"name": "variant",
|
9464
|
+
"type": {
|
9465
|
+
"text": "MarkerVariants"
|
9466
|
+
},
|
9467
|
+
"description": "There are two variants of markers, each with a width of 0.25rem:\n- **solid**: Solid marker.\n- **striped**: Striped marker.",
|
9468
|
+
"default": "solid",
|
9469
|
+
"fieldName": "variant"
|
9470
|
+
}
|
9471
|
+
],
|
9472
|
+
"superclass": {
|
9473
|
+
"name": "Component",
|
9474
|
+
"module": "/src/models"
|
9475
|
+
},
|
9476
|
+
"tagName": "mdc-marker",
|
9477
|
+
"jsDoc": "/**\n * `mdc-marker`, which is a vertical line and\n * used to draw attention to specific parts of\n * the content or to signify important information.\n *\n * **Marker Variants**:\n * - **solid**: Solid marker.\n * - **striped**: Striped marker.\n *\n * @tagname mdc-marker\n *\n * @cssproperty --mdc-marker-solid-background-color - Allows customization of the default background color\n * in solid variant.\n * @cssproperty --mdc-marker-striped-color - Allows customization of the default stripes in striped variant.\n * @cssproperty --mdc-marker-striped-background-color - Allows customization of the default background color\n * in striped variant.\n * @cssproperty --mdc-marker-width - Allows customization of the default width.\n */",
|
9478
|
+
"customElement": true
|
9479
|
+
}
|
9480
|
+
],
|
9481
|
+
"exports": [
|
9482
|
+
{
|
9483
|
+
"kind": "js",
|
9484
|
+
"name": "default",
|
9485
|
+
"declaration": {
|
9486
|
+
"name": "Marker",
|
9487
|
+
"module": "components/marker/marker.component.js"
|
9488
|
+
}
|
9489
|
+
}
|
9490
|
+
]
|
9491
|
+
},
|
9492
|
+
{
|
9493
|
+
"kind": "javascript-module",
|
9494
|
+
"path": "components/optgroup/optgroup.component.js",
|
9495
|
+
"declarations": [
|
9496
|
+
{
|
9497
|
+
"kind": "class",
|
9498
|
+
"description": "optgroup component, which creates a grouping of mdc-option within a listbox element.",
|
9499
|
+
"name": "OptGroup",
|
9500
|
+
"cssProperties": [
|
9501
|
+
{
|
9502
|
+
"description": "Allows customization of the disabled option color.",
|
9503
|
+
"name": "--mdc-optgroup-disabled-color"
|
9504
|
+
}
|
9505
|
+
],
|
9506
|
+
"slots": [
|
9507
|
+
{
|
9508
|
+
"description": "This is a default slot for mdc-option elements.",
|
9509
|
+
"name": "default"
|
9510
|
+
}
|
9511
|
+
],
|
9512
|
+
"members": [
|
9513
|
+
{
|
9514
|
+
"kind": "field",
|
9515
|
+
"name": "label",
|
9516
|
+
"type": {
|
9517
|
+
"text": "string | undefined"
|
9518
|
+
},
|
9519
|
+
"description": "The header text to be displayed on the top of the options list.",
|
9520
|
+
"attribute": "label",
|
9521
|
+
"reflects": true
|
9522
|
+
},
|
9523
|
+
{
|
9524
|
+
"kind": "method",
|
9525
|
+
"name": "setDisabledForAllOptions",
|
9526
|
+
"privacy": "private",
|
9527
|
+
"return": {
|
9528
|
+
"type": {
|
9529
|
+
"text": "void"
|
9530
|
+
}
|
9531
|
+
}
|
9532
|
+
},
|
9533
|
+
{
|
9534
|
+
"kind": "field",
|
9535
|
+
"name": "dataAriaLabel",
|
9536
|
+
"type": {
|
9537
|
+
"text": "string | null"
|
9538
|
+
},
|
9539
|
+
"default": "null",
|
9540
|
+
"description": "Defines a string value that labels the current element.\nThe Aria-Label attribute to be set for accessibility.",
|
9541
|
+
"attribute": "data-aria-label",
|
9542
|
+
"reflects": true,
|
9543
|
+
"inheritedFrom": {
|
9544
|
+
"name": "DataAriaLabelMixin",
|
9545
|
+
"module": "utils/mixins/DataAriaLabelMixin.js"
|
9546
|
+
}
|
9547
|
+
},
|
9548
|
+
{
|
9549
|
+
"kind": "field",
|
9550
|
+
"name": "disabled",
|
9551
|
+
"type": {
|
9552
|
+
"text": "boolean | undefined"
|
9553
|
+
},
|
9554
|
+
"description": "Indicates whether the component is disabled.\nWhen the component is disabled for user interaction; it is not focusable or clickable.",
|
9555
|
+
"default": "undefined",
|
9556
|
+
"attribute": "disabled",
|
9557
|
+
"reflects": true,
|
9558
|
+
"inheritedFrom": {
|
9559
|
+
"name": "DisabledMixin",
|
9560
|
+
"module": "utils/mixins/DisabledMixin.js"
|
9561
|
+
}
|
9562
|
+
}
|
9563
|
+
],
|
9564
|
+
"attributes": [
|
9565
|
+
{
|
9566
|
+
"name": "label",
|
9567
|
+
"type": {
|
9568
|
+
"text": "string | undefined"
|
9569
|
+
},
|
9570
|
+
"description": "The header text to be displayed on the top of the options list.",
|
9571
|
+
"fieldName": "label"
|
9572
|
+
},
|
9573
|
+
{
|
9574
|
+
"name": "data-aria-label",
|
9575
|
+
"type": {
|
9576
|
+
"text": "string | null"
|
9577
|
+
},
|
9578
|
+
"default": "null",
|
9579
|
+
"description": "Defines a string value that labels the current element.\nThe Aria-Label attribute to be set for accessibility.",
|
9580
|
+
"fieldName": "dataAriaLabel",
|
9581
|
+
"inheritedFrom": {
|
9582
|
+
"name": "DataAriaLabelMixin",
|
9583
|
+
"module": "src/utils/mixins/DataAriaLabelMixin.ts"
|
9584
|
+
}
|
9585
|
+
},
|
9586
|
+
{
|
9587
|
+
"name": "disabled",
|
9588
|
+
"type": {
|
9589
|
+
"text": "boolean | undefined"
|
9590
|
+
},
|
9591
|
+
"description": "Indicates whether the component is disabled.\nWhen the component is disabled for user interaction; it is not focusable or clickable.",
|
9592
|
+
"default": "undefined",
|
9593
|
+
"fieldName": "disabled",
|
9594
|
+
"inheritedFrom": {
|
9595
|
+
"name": "DisabledMixin",
|
9596
|
+
"module": "src/utils/mixins/DisabledMixin.ts"
|
9597
|
+
}
|
9598
|
+
}
|
9599
|
+
],
|
9600
|
+
"mixins": [
|
9601
|
+
{
|
9602
|
+
"name": "DataAriaLabelMixin",
|
9603
|
+
"module": "/src/utils/mixins/DataAriaLabelMixin"
|
9604
|
+
},
|
9605
|
+
{
|
9606
|
+
"name": "DisabledMixin",
|
9607
|
+
"module": "/src/utils/mixins/DisabledMixin"
|
9608
|
+
}
|
9609
|
+
],
|
9610
|
+
"superclass": {
|
9611
|
+
"name": "Component",
|
9612
|
+
"module": "/src/models"
|
9613
|
+
},
|
9614
|
+
"tagName": "mdc-optgroup",
|
9615
|
+
"jsDoc": "/**\n * optgroup component, which creates a grouping of mdc-option within a listbox element.\n *\n * @dependency mdc-text\n *\n * @tagname mdc-optgroup\n *\n * @slot default - This is a default slot for mdc-option elements.\n *\n * @cssproperty --mdc-optgroup-disabled-color - Allows customization of the disabled option color.\n */",
|
9616
|
+
"customElement": true
|
9617
|
+
}
|
9618
|
+
],
|
9619
|
+
"exports": [
|
9620
|
+
{
|
9621
|
+
"kind": "js",
|
9622
|
+
"name": "default",
|
9623
|
+
"declaration": {
|
9624
|
+
"name": "OptGroup",
|
9625
|
+
"module": "components/optgroup/optgroup.component.js"
|
9626
|
+
}
|
9627
|
+
}
|
9628
|
+
]
|
9629
|
+
},
|
9630
9630
|
{
|
9631
9631
|
"kind": "javascript-module",
|
9632
9632
|
"path": "components/option/option.component.js",
|