@lumx/react 3.9.8 → 3.9.9-alpha.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.
package/package.json
CHANGED
|
@@ -6,8 +6,8 @@
|
|
|
6
6
|
"url": "https://github.com/lumapps/design-system/issues"
|
|
7
7
|
},
|
|
8
8
|
"dependencies": {
|
|
9
|
-
"@lumx/core": "^3.9.
|
|
10
|
-
"@lumx/icons": "^3.9.
|
|
9
|
+
"@lumx/core": "^3.9.9-alpha.1",
|
|
10
|
+
"@lumx/icons": "^3.9.9-alpha.1",
|
|
11
11
|
"@popperjs/core": "^2.5.4",
|
|
12
12
|
"body-scroll-lock": "^3.1.5",
|
|
13
13
|
"classnames": "^2.3.2",
|
|
@@ -110,5 +110,5 @@
|
|
|
110
110
|
"build:storybook": "storybook build"
|
|
111
111
|
},
|
|
112
112
|
"sideEffects": false,
|
|
113
|
-
"version": "3.9.
|
|
113
|
+
"version": "3.9.9-alpha.1"
|
|
114
114
|
}
|
|
@@ -14,12 +14,10 @@ export default {
|
|
|
14
14
|
export const Variants = {
|
|
15
15
|
render: ({ size, emphasis, theme }: any) => (
|
|
16
16
|
<ButtonGroup>
|
|
17
|
-
<span className="visually-hidden">Ignore me</span>
|
|
18
17
|
<Button size={size} emphasis={emphasis} theme={theme}>
|
|
19
18
|
Button
|
|
20
19
|
</Button>
|
|
21
20
|
<IconButton size={size} emphasis={emphasis} theme={theme} label="IconButton" icon={mdiMenuDown} />
|
|
22
|
-
<span className="visually-hidden">Ignore me</span>
|
|
23
21
|
</ButtonGroup>
|
|
24
22
|
),
|
|
25
23
|
decorators: [
|
|
@@ -42,13 +40,13 @@ export const ManyButtons = {
|
|
|
42
40
|
children: (
|
|
43
41
|
<>
|
|
44
42
|
<span className="visually-hidden">Ignore me</span>
|
|
45
|
-
<Button>Button 1</Button>
|
|
43
|
+
<Button emphasis="medium">Button 1</Button>
|
|
46
44
|
<span className="visually-hidden">Ignore me</span>
|
|
47
|
-
<IconButton label="IconButton" icon={mdiFoodApple} />
|
|
45
|
+
<IconButton emphasis="medium" label="IconButton" icon={mdiFoodApple} />
|
|
48
46
|
<span className="visually-hidden">Ignore me</span>
|
|
49
|
-
<IconButton label="IconButton" icon={mdiAbjadArabic} />
|
|
47
|
+
<IconButton emphasis="medium" isSelected label="IconButton" icon={mdiAbjadArabic} />
|
|
50
48
|
<span className="visually-hidden">Ignore me</span>
|
|
51
|
-
<Button>Button 2</Button>
|
|
49
|
+
<Button emphasis="medium">Button 2</Button>
|
|
52
50
|
<span className="visually-hidden">Ignore me</span>
|
|
53
51
|
</>
|
|
54
52
|
),
|