@lumx/react 4.3.2-alpha.3 → 4.3.2-alpha.5
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/index.d.ts +3 -3
- package/index.js +1 -1
- package/package.json +3 -3
package/index.d.ts
CHANGED
|
@@ -673,7 +673,7 @@ interface ButtonProps extends GenericProps, ButtonProps$1 {
|
|
|
673
673
|
* @param ref Component ref.
|
|
674
674
|
* @return React element.
|
|
675
675
|
*/
|
|
676
|
-
declare const Button: Comp<ButtonProps,
|
|
676
|
+
declare const Button: Comp<ButtonProps, HTMLButtonElement | HTMLAnchorElement>;
|
|
677
677
|
|
|
678
678
|
interface IconButtonProps$1 extends BaseButtonProps {
|
|
679
679
|
/**
|
|
@@ -1488,7 +1488,7 @@ declare const GenericBlockGapSize: Pick<{
|
|
|
1488
1488
|
readonly medium: "medium";
|
|
1489
1489
|
readonly big: "big";
|
|
1490
1490
|
readonly huge: "huge";
|
|
1491
|
-
}, "
|
|
1491
|
+
}, "medium" | "tiny" | "regular" | "big" | "huge">;
|
|
1492
1492
|
type GenericBlockGapSize = ValueOf$1<typeof GenericBlockGapSize>;
|
|
1493
1493
|
|
|
1494
1494
|
interface GenericBlockProps extends FlexBoxProps {
|
|
@@ -2161,7 +2161,7 @@ interface LinkProps extends GenericProps, Omit<LinkProps$1, 'label'> {
|
|
|
2161
2161
|
* @param ref Component ref.
|
|
2162
2162
|
* @return React element.
|
|
2163
2163
|
*/
|
|
2164
|
-
declare const Link: Comp<LinkProps,
|
|
2164
|
+
declare const Link: Comp<LinkProps, HTMLButtonElement | HTMLAnchorElement>;
|
|
2165
2165
|
|
|
2166
2166
|
/**
|
|
2167
2167
|
* Defines the props of the component.
|
package/index.js
CHANGED
|
@@ -47,7 +47,7 @@ import take from 'lodash/take';
|
|
|
47
47
|
import { mdiRadioboxBlank } from '@lumx/icons/esm/radiobox-blank.js';
|
|
48
48
|
import { mdiRadioboxMarked } from '@lumx/icons/esm/radiobox-marked.js';
|
|
49
49
|
import { mdiMenuDown } from '@lumx/icons/esm/menu-down.js';
|
|
50
|
-
import { getWithSelector } from '@lumx/core/js/utils/selectors/getWithSelector
|
|
50
|
+
import { getWithSelector } from '@lumx/core/js/utils/selectors/getWithSelector.js';
|
|
51
51
|
import { mdiArrowDown } from '@lumx/icons/esm/arrow-down.js';
|
|
52
52
|
import { mdiArrowUp } from '@lumx/icons/esm/arrow-up.js';
|
|
53
53
|
import set from 'lodash/set';
|
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": "^4.3.2-alpha.
|
|
10
|
-
"@lumx/icons": "^4.3.2-alpha.
|
|
9
|
+
"@lumx/core": "^4.3.2-alpha.5",
|
|
10
|
+
"@lumx/icons": "^4.3.2-alpha.5",
|
|
11
11
|
"@popperjs/core": "^2.5.4",
|
|
12
12
|
"body-scroll-lock": "^3.1.5",
|
|
13
13
|
"react-popper": "^2.2.4"
|
|
@@ -92,6 +92,6 @@
|
|
|
92
92
|
"build:storybook": "storybook build"
|
|
93
93
|
},
|
|
94
94
|
"sideEffects": false,
|
|
95
|
-
"version": "4.3.2-alpha.
|
|
95
|
+
"version": "4.3.2-alpha.5",
|
|
96
96
|
"stableVersion": "4.3.1"
|
|
97
97
|
}
|