@momentum-design/components 0.75.0 → 0.75.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -124,8 +124,10 @@ class Animation extends Component {
|
|
124
124
|
*/
|
125
125
|
getAnimationData() {
|
126
126
|
if (this.name && animationManifest[this.name]) {
|
127
|
-
|
128
|
-
|
127
|
+
// Make sure the path is point to a folder (and its sub-folders) that contains animation data only
|
128
|
+
// otherwise bundlers (eg. webpack) will try to process everything in this folder including the types.d.ts
|
129
|
+
const path = animationManifest[this.name].replace(/^\.\/lottie/, '');
|
130
|
+
import(`@momentum-design/animations/dist/lottie${path}`)
|
129
131
|
.then((result) => this.onLoadSuccessHandler(result.default))
|
130
132
|
.catch((error) => this.onLoadFailHandler(error));
|
131
133
|
}
|
@@ -1651,181 +1651,6 @@
|
|
1651
1651
|
}
|
1652
1652
|
]
|
1653
1653
|
},
|
1654
|
-
{
|
1655
|
-
"kind": "javascript-module",
|
1656
|
-
"path": "components/brandvisual/brandvisual.component.js",
|
1657
|
-
"declarations": [
|
1658
|
-
{
|
1659
|
-
"kind": "class",
|
1660
|
-
"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.",
|
1661
|
-
"name": "Brandvisual",
|
1662
|
-
"members": [
|
1663
|
-
{
|
1664
|
-
"kind": "field",
|
1665
|
-
"name": "brandVisualData",
|
1666
|
-
"type": {
|
1667
|
-
"text": "HTMLElement | undefined"
|
1668
|
-
},
|
1669
|
-
"privacy": "private"
|
1670
|
-
},
|
1671
|
-
{
|
1672
|
-
"kind": "field",
|
1673
|
-
"name": "name",
|
1674
|
-
"type": {
|
1675
|
-
"text": "BrandVisualNames | undefined"
|
1676
|
-
},
|
1677
|
-
"description": "Name of the brandVisual (= filename)",
|
1678
|
-
"attribute": "name",
|
1679
|
-
"reflects": true
|
1680
|
-
},
|
1681
|
-
{
|
1682
|
-
"kind": "method",
|
1683
|
-
"name": "getBrandVisualData",
|
1684
|
-
"privacy": "private"
|
1685
|
-
},
|
1686
|
-
{
|
1687
|
-
"kind": "method",
|
1688
|
-
"name": "handleBrandVisualLoadedSuccess",
|
1689
|
-
"privacy": "private",
|
1690
|
-
"parameters": [
|
1691
|
-
{
|
1692
|
-
"name": "brandVisualHtml",
|
1693
|
-
"type": {
|
1694
|
-
"text": "HTMLElement"
|
1695
|
-
},
|
1696
|
-
"description": "The brandvisual html element which has been fetched from the brandvisual provider."
|
1697
|
-
}
|
1698
|
-
],
|
1699
|
-
"description": "Sets the brandVisualData state to the fetched brandvisual.\nDispatches a 'load' event on the component once the brandvisual has been successfully loaded."
|
1700
|
-
},
|
1701
|
-
{
|
1702
|
-
"kind": "method",
|
1703
|
-
"name": "handleBrandVisualLoadedFailure",
|
1704
|
-
"privacy": "private",
|
1705
|
-
"parameters": [
|
1706
|
-
{
|
1707
|
-
"name": "error",
|
1708
|
-
"type": {
|
1709
|
-
"text": "unknown"
|
1710
|
-
}
|
1711
|
-
}
|
1712
|
-
],
|
1713
|
-
"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."
|
1714
|
-
}
|
1715
|
-
],
|
1716
|
-
"events": [
|
1717
|
-
{
|
1718
|
-
"description": "(React: onLoad) This event is dispatched when the brandvisual has been successfully loaded.",
|
1719
|
-
"name": "load",
|
1720
|
-
"reactName": "onLoad"
|
1721
|
-
},
|
1722
|
-
{
|
1723
|
-
"description": "(React: onError) This event is dispatched when the brandvisual fetching has failed.",
|
1724
|
-
"name": "error",
|
1725
|
-
"reactName": "onError"
|
1726
|
-
}
|
1727
|
-
],
|
1728
|
-
"attributes": [
|
1729
|
-
{
|
1730
|
-
"name": "name",
|
1731
|
-
"type": {
|
1732
|
-
"text": "BrandVisualNames | undefined"
|
1733
|
-
},
|
1734
|
-
"description": "Name of the brandVisual (= filename)",
|
1735
|
-
"fieldName": "name"
|
1736
|
-
}
|
1737
|
-
],
|
1738
|
-
"superclass": {
|
1739
|
-
"name": "Component",
|
1740
|
-
"module": "/src/models"
|
1741
|
-
},
|
1742
|
-
"tagName": "mdc-brandvisual",
|
1743
|
-
"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 */",
|
1744
|
-
"customElement": true
|
1745
|
-
}
|
1746
|
-
],
|
1747
|
-
"exports": [
|
1748
|
-
{
|
1749
|
-
"kind": "js",
|
1750
|
-
"name": "default",
|
1751
|
-
"declaration": {
|
1752
|
-
"name": "Brandvisual",
|
1753
|
-
"module": "components/brandvisual/brandvisual.component.js"
|
1754
|
-
}
|
1755
|
-
}
|
1756
|
-
]
|
1757
|
-
},
|
1758
|
-
{
|
1759
|
-
"kind": "javascript-module",
|
1760
|
-
"path": "components/bullet/bullet.component.js",
|
1761
|
-
"declarations": [
|
1762
|
-
{
|
1763
|
-
"kind": "class",
|
1764
|
-
"description": "Bullet component, which is a visual marker\nand be used to organize and present items in a list format.",
|
1765
|
-
"name": "Bullet",
|
1766
|
-
"cssProperties": [
|
1767
|
-
{
|
1768
|
-
"description": "background color of the bullet",
|
1769
|
-
"name": "--mdc-bullet-background-color"
|
1770
|
-
},
|
1771
|
-
{
|
1772
|
-
"description": "small size value of the bullet",
|
1773
|
-
"name": "--mdc-bullet-size-small"
|
1774
|
-
},
|
1775
|
-
{
|
1776
|
-
"description": "medium size value of the bullet",
|
1777
|
-
"name": "--mdc-bullet-size-medium"
|
1778
|
-
},
|
1779
|
-
{
|
1780
|
-
"description": "large size value of the bullet",
|
1781
|
-
"name": "--mdc-bullet-size-large"
|
1782
|
-
}
|
1783
|
-
],
|
1784
|
-
"members": [
|
1785
|
-
{
|
1786
|
-
"kind": "field",
|
1787
|
-
"name": "size",
|
1788
|
-
"type": {
|
1789
|
-
"text": "Size"
|
1790
|
-
},
|
1791
|
-
"privacy": "public",
|
1792
|
-
"description": "Size of the bullet\n\nPossible values: 'small', 'medium', 'large'",
|
1793
|
-
"default": "small",
|
1794
|
-
"attribute": "size",
|
1795
|
-
"reflects": true
|
1796
|
-
}
|
1797
|
-
],
|
1798
|
-
"attributes": [
|
1799
|
-
{
|
1800
|
-
"name": "size",
|
1801
|
-
"type": {
|
1802
|
-
"text": "Size"
|
1803
|
-
},
|
1804
|
-
"description": "Size of the bullet\n\nPossible values: 'small', 'medium', 'large'",
|
1805
|
-
"default": "small",
|
1806
|
-
"fieldName": "size"
|
1807
|
-
}
|
1808
|
-
],
|
1809
|
-
"superclass": {
|
1810
|
-
"name": "Component",
|
1811
|
-
"module": "/src/models"
|
1812
|
-
},
|
1813
|
-
"tagName": "mdc-bullet",
|
1814
|
-
"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*/",
|
1815
|
-
"customElement": true
|
1816
|
-
}
|
1817
|
-
],
|
1818
|
-
"exports": [
|
1819
|
-
{
|
1820
|
-
"kind": "js",
|
1821
|
-
"name": "default",
|
1822
|
-
"declaration": {
|
1823
|
-
"name": "Bullet",
|
1824
|
-
"module": "components/bullet/bullet.component.js"
|
1825
|
-
}
|
1826
|
-
}
|
1827
|
-
]
|
1828
|
-
},
|
1829
1654
|
{
|
1830
1655
|
"kind": "javascript-module",
|
1831
1656
|
"path": "components/badge/badge.component.js",
|
@@ -2147,6 +1972,181 @@
|
|
2147
1972
|
}
|
2148
1973
|
]
|
2149
1974
|
},
|
1975
|
+
{
|
1976
|
+
"kind": "javascript-module",
|
1977
|
+
"path": "components/brandvisual/brandvisual.component.js",
|
1978
|
+
"declarations": [
|
1979
|
+
{
|
1980
|
+
"kind": "class",
|
1981
|
+
"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.",
|
1982
|
+
"name": "Brandvisual",
|
1983
|
+
"members": [
|
1984
|
+
{
|
1985
|
+
"kind": "field",
|
1986
|
+
"name": "brandVisualData",
|
1987
|
+
"type": {
|
1988
|
+
"text": "HTMLElement | undefined"
|
1989
|
+
},
|
1990
|
+
"privacy": "private"
|
1991
|
+
},
|
1992
|
+
{
|
1993
|
+
"kind": "field",
|
1994
|
+
"name": "name",
|
1995
|
+
"type": {
|
1996
|
+
"text": "BrandVisualNames | undefined"
|
1997
|
+
},
|
1998
|
+
"description": "Name of the brandVisual (= filename)",
|
1999
|
+
"attribute": "name",
|
2000
|
+
"reflects": true
|
2001
|
+
},
|
2002
|
+
{
|
2003
|
+
"kind": "method",
|
2004
|
+
"name": "getBrandVisualData",
|
2005
|
+
"privacy": "private"
|
2006
|
+
},
|
2007
|
+
{
|
2008
|
+
"kind": "method",
|
2009
|
+
"name": "handleBrandVisualLoadedSuccess",
|
2010
|
+
"privacy": "private",
|
2011
|
+
"parameters": [
|
2012
|
+
{
|
2013
|
+
"name": "brandVisualHtml",
|
2014
|
+
"type": {
|
2015
|
+
"text": "HTMLElement"
|
2016
|
+
},
|
2017
|
+
"description": "The brandvisual html element which has been fetched from the brandvisual provider."
|
2018
|
+
}
|
2019
|
+
],
|
2020
|
+
"description": "Sets the brandVisualData state to the fetched brandvisual.\nDispatches a 'load' event on the component once the brandvisual has been successfully loaded."
|
2021
|
+
},
|
2022
|
+
{
|
2023
|
+
"kind": "method",
|
2024
|
+
"name": "handleBrandVisualLoadedFailure",
|
2025
|
+
"privacy": "private",
|
2026
|
+
"parameters": [
|
2027
|
+
{
|
2028
|
+
"name": "error",
|
2029
|
+
"type": {
|
2030
|
+
"text": "unknown"
|
2031
|
+
}
|
2032
|
+
}
|
2033
|
+
],
|
2034
|
+
"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."
|
2035
|
+
}
|
2036
|
+
],
|
2037
|
+
"events": [
|
2038
|
+
{
|
2039
|
+
"description": "(React: onLoad) This event is dispatched when the brandvisual has been successfully loaded.",
|
2040
|
+
"name": "load",
|
2041
|
+
"reactName": "onLoad"
|
2042
|
+
},
|
2043
|
+
{
|
2044
|
+
"description": "(React: onError) This event is dispatched when the brandvisual fetching has failed.",
|
2045
|
+
"name": "error",
|
2046
|
+
"reactName": "onError"
|
2047
|
+
}
|
2048
|
+
],
|
2049
|
+
"attributes": [
|
2050
|
+
{
|
2051
|
+
"name": "name",
|
2052
|
+
"type": {
|
2053
|
+
"text": "BrandVisualNames | undefined"
|
2054
|
+
},
|
2055
|
+
"description": "Name of the brandVisual (= filename)",
|
2056
|
+
"fieldName": "name"
|
2057
|
+
}
|
2058
|
+
],
|
2059
|
+
"superclass": {
|
2060
|
+
"name": "Component",
|
2061
|
+
"module": "/src/models"
|
2062
|
+
},
|
2063
|
+
"tagName": "mdc-brandvisual",
|
2064
|
+
"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 */",
|
2065
|
+
"customElement": true
|
2066
|
+
}
|
2067
|
+
],
|
2068
|
+
"exports": [
|
2069
|
+
{
|
2070
|
+
"kind": "js",
|
2071
|
+
"name": "default",
|
2072
|
+
"declaration": {
|
2073
|
+
"name": "Brandvisual",
|
2074
|
+
"module": "components/brandvisual/brandvisual.component.js"
|
2075
|
+
}
|
2076
|
+
}
|
2077
|
+
]
|
2078
|
+
},
|
2079
|
+
{
|
2080
|
+
"kind": "javascript-module",
|
2081
|
+
"path": "components/bullet/bullet.component.js",
|
2082
|
+
"declarations": [
|
2083
|
+
{
|
2084
|
+
"kind": "class",
|
2085
|
+
"description": "Bullet component, which is a visual marker\nand be used to organize and present items in a list format.",
|
2086
|
+
"name": "Bullet",
|
2087
|
+
"cssProperties": [
|
2088
|
+
{
|
2089
|
+
"description": "background color of the bullet",
|
2090
|
+
"name": "--mdc-bullet-background-color"
|
2091
|
+
},
|
2092
|
+
{
|
2093
|
+
"description": "small size value of the bullet",
|
2094
|
+
"name": "--mdc-bullet-size-small"
|
2095
|
+
},
|
2096
|
+
{
|
2097
|
+
"description": "medium size value of the bullet",
|
2098
|
+
"name": "--mdc-bullet-size-medium"
|
2099
|
+
},
|
2100
|
+
{
|
2101
|
+
"description": "large size value of the bullet",
|
2102
|
+
"name": "--mdc-bullet-size-large"
|
2103
|
+
}
|
2104
|
+
],
|
2105
|
+
"members": [
|
2106
|
+
{
|
2107
|
+
"kind": "field",
|
2108
|
+
"name": "size",
|
2109
|
+
"type": {
|
2110
|
+
"text": "Size"
|
2111
|
+
},
|
2112
|
+
"privacy": "public",
|
2113
|
+
"description": "Size of the bullet\n\nPossible values: 'small', 'medium', 'large'",
|
2114
|
+
"default": "small",
|
2115
|
+
"attribute": "size",
|
2116
|
+
"reflects": true
|
2117
|
+
}
|
2118
|
+
],
|
2119
|
+
"attributes": [
|
2120
|
+
{
|
2121
|
+
"name": "size",
|
2122
|
+
"type": {
|
2123
|
+
"text": "Size"
|
2124
|
+
},
|
2125
|
+
"description": "Size of the bullet\n\nPossible values: 'small', 'medium', 'large'",
|
2126
|
+
"default": "small",
|
2127
|
+
"fieldName": "size"
|
2128
|
+
}
|
2129
|
+
],
|
2130
|
+
"superclass": {
|
2131
|
+
"name": "Component",
|
2132
|
+
"module": "/src/models"
|
2133
|
+
},
|
2134
|
+
"tagName": "mdc-bullet",
|
2135
|
+
"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*/",
|
2136
|
+
"customElement": true
|
2137
|
+
}
|
2138
|
+
],
|
2139
|
+
"exports": [
|
2140
|
+
{
|
2141
|
+
"kind": "js",
|
2142
|
+
"name": "default",
|
2143
|
+
"declaration": {
|
2144
|
+
"name": "Bullet",
|
2145
|
+
"module": "components/bullet/bullet.component.js"
|
2146
|
+
}
|
2147
|
+
}
|
2148
|
+
]
|
2149
|
+
},
|
2150
2150
|
{
|
2151
2151
|
"kind": "javascript-module",
|
2152
2152
|
"path": "components/button/button.component.js",
|
@@ -19622,6 +19622,41 @@
|
|
19622
19622
|
}
|
19623
19623
|
]
|
19624
19624
|
},
|
19625
|
+
{
|
19626
|
+
"kind": "javascript-module",
|
19627
|
+
"path": "components/menusection/menusection.component.js",
|
19628
|
+
"declarations": [
|
19629
|
+
{
|
19630
|
+
"kind": "class",
|
19631
|
+
"description": "`mdc-menusection` is a container element used to group a set of menu items.\n\nThis component supports a mix of `menuitem`, `menuitemcheckbox`, and `menuitemradio` components.\n\n- If multiple `menuitemradio` components are slotted into the section, the group enforces a single-selection rule:\n only one radio item can be selected at a time.\n- If `menuitemcheckbox` components are included, their checked state can be toggled independently.",
|
19632
|
+
"name": "MenuSection",
|
19633
|
+
"slots": [
|
19634
|
+
{
|
19635
|
+
"description": "Default slot for inserting `menuitem`, `menuitemcheckbox`, or `menuitemradio`",
|
19636
|
+
"name": ""
|
19637
|
+
}
|
19638
|
+
],
|
19639
|
+
"members": [],
|
19640
|
+
"superclass": {
|
19641
|
+
"name": "Component",
|
19642
|
+
"module": "/src/models"
|
19643
|
+
},
|
19644
|
+
"tagName": "mdc-menusection",
|
19645
|
+
"jsDoc": "/**\n * `mdc-menusection` is a container element used to group a set of menu items.\n *\n * This component supports a mix of `menuitem`, `menuitemcheckbox`, and `menuitemradio` components.\n *\n * - If multiple `menuitemradio` components are slotted into the section, the group enforces a single-selection rule:\n * only one radio item can be selected at a time.\n * - If `menuitemcheckbox` components are included, their checked state can be toggled independently.\n *\n * @tagname mdc-menusection\n *\n * @slot - Default slot for inserting `menuitem`, `menuitemcheckbox`, or `menuitemradio`\n */",
|
19646
|
+
"customElement": true
|
19647
|
+
}
|
19648
|
+
],
|
19649
|
+
"exports": [
|
19650
|
+
{
|
19651
|
+
"kind": "js",
|
19652
|
+
"name": "default",
|
19653
|
+
"declaration": {
|
19654
|
+
"name": "MenuSection",
|
19655
|
+
"module": "components/menusection/menusection.component.js"
|
19656
|
+
}
|
19657
|
+
}
|
19658
|
+
]
|
19659
|
+
},
|
19625
19660
|
{
|
19626
19661
|
"kind": "javascript-module",
|
19627
19662
|
"path": "components/optgroup/optgroup.component.js",
|
@@ -19760,41 +19795,6 @@
|
|
19760
19795
|
}
|
19761
19796
|
]
|
19762
19797
|
},
|
19763
|
-
{
|
19764
|
-
"kind": "javascript-module",
|
19765
|
-
"path": "components/menusection/menusection.component.js",
|
19766
|
-
"declarations": [
|
19767
|
-
{
|
19768
|
-
"kind": "class",
|
19769
|
-
"description": "`mdc-menusection` is a container element used to group a set of menu items.\n\nThis component supports a mix of `menuitem`, `menuitemcheckbox`, and `menuitemradio` components.\n\n- If multiple `menuitemradio` components are slotted into the section, the group enforces a single-selection rule:\n only one radio item can be selected at a time.\n- If `menuitemcheckbox` components are included, their checked state can be toggled independently.",
|
19770
|
-
"name": "MenuSection",
|
19771
|
-
"slots": [
|
19772
|
-
{
|
19773
|
-
"description": "Default slot for inserting `menuitem`, `menuitemcheckbox`, or `menuitemradio`",
|
19774
|
-
"name": ""
|
19775
|
-
}
|
19776
|
-
],
|
19777
|
-
"members": [],
|
19778
|
-
"superclass": {
|
19779
|
-
"name": "Component",
|
19780
|
-
"module": "/src/models"
|
19781
|
-
},
|
19782
|
-
"tagName": "mdc-menusection",
|
19783
|
-
"jsDoc": "/**\n * `mdc-menusection` is a container element used to group a set of menu items.\n *\n * This component supports a mix of `menuitem`, `menuitemcheckbox`, and `menuitemradio` components.\n *\n * - If multiple `menuitemradio` components are slotted into the section, the group enforces a single-selection rule:\n * only one radio item can be selected at a time.\n * - If `menuitemcheckbox` components are included, their checked state can be toggled independently.\n *\n * @tagname mdc-menusection\n *\n * @slot - Default slot for inserting `menuitem`, `menuitemcheckbox`, or `menuitemradio`\n */",
|
19784
|
-
"customElement": true
|
19785
|
-
}
|
19786
|
-
],
|
19787
|
-
"exports": [
|
19788
|
-
{
|
19789
|
-
"kind": "js",
|
19790
|
-
"name": "default",
|
19791
|
-
"declaration": {
|
19792
|
-
"name": "MenuSection",
|
19793
|
-
"module": "components/menusection/menusection.component.js"
|
19794
|
-
}
|
19795
|
-
}
|
19796
|
-
]
|
19797
|
-
},
|
19798
19798
|
{
|
19799
19799
|
"kind": "javascript-module",
|
19800
19800
|
"path": "components/option/option.component.js",
|
package/dist/react/index.d.ts
CHANGED
@@ -3,9 +3,9 @@ export { default as Animation } from './animation';
|
|
3
3
|
export { default as Appheader } from './appheader';
|
4
4
|
export { default as Avatar } from './avatar';
|
5
5
|
export { default as AvatarButton } from './avatarbutton';
|
6
|
+
export { default as Badge } from './badge';
|
6
7
|
export { default as Brandvisual } from './brandvisual';
|
7
8
|
export { default as Bullet } from './bullet';
|
8
|
-
export { default as Badge } from './badge';
|
9
9
|
export { default as Button } from './button';
|
10
10
|
export { default as ButtonGroup } from './buttongroup';
|
11
11
|
export { default as ButtonLink } from './buttonlink';
|
@@ -37,8 +37,8 @@ export { default as MenuItem } from './menuitem';
|
|
37
37
|
export { default as MenuItemCheckbox } from './menuitemcheckbox';
|
38
38
|
export { default as MenuItemRadio } from './menuitemradio';
|
39
39
|
export { default as MenuPopover } from './menupopover';
|
40
|
-
export { default as OptGroup } from './optgroup';
|
41
40
|
export { default as MenuSection } from './menusection';
|
41
|
+
export { default as OptGroup } from './optgroup';
|
42
42
|
export { default as Option } from './option';
|
43
43
|
export { default as Popover } from './popover';
|
44
44
|
export { default as Presence } from './presence';
|
package/dist/react/index.js
CHANGED
@@ -3,9 +3,9 @@ export { default as Animation } from './animation';
|
|
3
3
|
export { default as Appheader } from './appheader';
|
4
4
|
export { default as Avatar } from './avatar';
|
5
5
|
export { default as AvatarButton } from './avatarbutton';
|
6
|
+
export { default as Badge } from './badge';
|
6
7
|
export { default as Brandvisual } from './brandvisual';
|
7
8
|
export { default as Bullet } from './bullet';
|
8
|
-
export { default as Badge } from './badge';
|
9
9
|
export { default as Button } from './button';
|
10
10
|
export { default as ButtonGroup } from './buttongroup';
|
11
11
|
export { default as ButtonLink } from './buttonlink';
|
@@ -37,8 +37,8 @@ export { default as MenuItem } from './menuitem';
|
|
37
37
|
export { default as MenuItemCheckbox } from './menuitemcheckbox';
|
38
38
|
export { default as MenuItemRadio } from './menuitemradio';
|
39
39
|
export { default as MenuPopover } from './menupopover';
|
40
|
-
export { default as OptGroup } from './optgroup';
|
41
40
|
export { default as MenuSection } from './menusection';
|
41
|
+
export { default as OptGroup } from './optgroup';
|
42
42
|
export { default as Option } from './option';
|
43
43
|
export { default as Popover } from './popover';
|
44
44
|
export { default as Presence } from './presence';
|
package/package.json
CHANGED