@redsift/design-system 11.6.0-muiv5-alpha.0 → 11.6.0-muiv5-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/components/button-link/ButtonLink.js +1 -1
- package/index.d.ts +3 -3
- package/index.js +3 -3
- package/package.json +2 -9
|
@@ -3,10 +3,10 @@ import React__default, { forwardRef } from 'react';
|
|
|
3
3
|
import classNames from 'classnames';
|
|
4
4
|
import { StyledGradientBorder } from '../gradient-border/index.js';
|
|
5
5
|
import { ButtonVariant } from '../button/types.js';
|
|
6
|
+
import { StyledButton } from '../button/styles.js';
|
|
6
7
|
import { useTheme } from '../theme/useTheme.js';
|
|
7
8
|
import { ButtonsColorPalette } from '../../types/colors.js';
|
|
8
9
|
import { ConditionalWrapper } from '../conditional-wrapper/ConditionalWrapper.js';
|
|
9
|
-
import { StyledButton } from '../button/styles.js';
|
|
10
10
|
import { Icon } from '../icon/Icon.js';
|
|
11
11
|
|
|
12
12
|
const _excluded = ["as", "children", "className", "color", "href", "isActive", "isDisabled", "isHovered", "leftIcon", "leftIconProps", "rightIcon", "rightIconProps", "target", "theme", "variant"];
|
package/index.d.ts
CHANGED
|
@@ -1,3 +1,6 @@
|
|
|
1
|
+
export { Button } from './components/button/Button.js';
|
|
2
|
+
export { ButtonColor, ButtonProps, ButtonVariant, StyledButtonProps } from './components/button/types.js';
|
|
3
|
+
export { StyledButton } from './components/button/styles.js';
|
|
1
4
|
export { StyledGradientBorder } from './components/gradient-border/index.js';
|
|
2
5
|
export { Comp, Falsy, ValueOf } from './types/helpers.js';
|
|
3
6
|
export { FontFamily } from './types/fonts.js';
|
|
@@ -37,9 +40,6 @@ export { ButtonGroupColor, ButtonGroupProps, ButtonGroupVariant, StyledButtonGro
|
|
|
37
40
|
export { ButtonGroup } from './components/button-group/ButtonGroup.js';
|
|
38
41
|
export { ButtonLinkProps, StyledButtonLinkProps } from './components/button-link/types.js';
|
|
39
42
|
export { ButtonLink } from './components/button-link/ButtonLink.js';
|
|
40
|
-
export { ButtonColor, ButtonProps, ButtonVariant, StyledButtonProps } from './components/button/types.js';
|
|
41
|
-
export { StyledButton } from './components/button/styles.js';
|
|
42
|
-
export { Button } from './components/button/Button.js';
|
|
43
43
|
export { CardProps, StyledCardProps } from './components/card/types.js';
|
|
44
44
|
export { Card } from './components/card/Card.js';
|
|
45
45
|
export { CardActionsProps, StyledCardActionsProps } from './components/card-actions/types.js';
|
package/index.js
CHANGED
|
@@ -1,3 +1,6 @@
|
|
|
1
|
+
export { Button } from './components/button/Button.js';
|
|
2
|
+
export { ButtonVariant } from './components/button/types.js';
|
|
3
|
+
export { StyledButton } from './components/button/styles.js';
|
|
1
4
|
export { StyledGradientBorder } from './components/gradient-border/index.js';
|
|
2
5
|
export { FontFamily } from './types/fonts.js';
|
|
3
6
|
export { Product, ProductLogo, ProductName } from './types/products.js';
|
|
@@ -30,9 +33,6 @@ export { BaseBreadcrumbs, Breadcrumbs } from './components/breadcrumbs/Breadcrum
|
|
|
30
33
|
export { ButtonGroupVariant } from './components/button-group/types.js';
|
|
31
34
|
export { ButtonGroup } from './components/button-group/ButtonGroup.js';
|
|
32
35
|
export { ButtonLink } from './components/button-link/ButtonLink.js';
|
|
33
|
-
export { ButtonVariant } from './components/button/types.js';
|
|
34
|
-
export { StyledButton } from './components/button/styles.js';
|
|
35
|
-
export { Button } from './components/button/Button.js';
|
|
36
36
|
export { Card } from './components/card/Card.js';
|
|
37
37
|
export { CardActions } from './components/card-actions/CardActions.js';
|
|
38
38
|
export { CardBody } from './components/card-body/CardBody.js';
|
package/package.json
CHANGED
|
@@ -20,13 +20,6 @@
|
|
|
20
20
|
"url": "git+https://github.com/redsift/design-system"
|
|
21
21
|
},
|
|
22
22
|
"sideEffects": false,
|
|
23
|
-
"exports": {
|
|
24
|
-
".": {
|
|
25
|
-
"types": "./index.d.ts",
|
|
26
|
-
"import": "./index.js",
|
|
27
|
-
"require": "./index.js"
|
|
28
|
-
}
|
|
29
|
-
},
|
|
30
23
|
"scripts": {
|
|
31
24
|
"build:dictionary": "rm -rf ./style/redsift-design-tokens.css && style-dictionary build --config ./style-dictionary/config.json",
|
|
32
25
|
"build": "rollup -c",
|
|
@@ -41,7 +34,7 @@
|
|
|
41
34
|
"version": "version-changelog ../../CHANGELOG.md && changelog-verify ../../CHANGELOG.md && git add ../../CHANGELOG.md"
|
|
42
35
|
},
|
|
43
36
|
"types": "index.d.ts",
|
|
44
|
-
"version": "11.6.0-muiv5-alpha.
|
|
37
|
+
"version": "11.6.0-muiv5-alpha.1",
|
|
45
38
|
"dependencies": {
|
|
46
39
|
"@react-spring/web": "^9.7.1",
|
|
47
40
|
"classnames": "^2.3.1",
|
|
@@ -108,5 +101,5 @@
|
|
|
108
101
|
"react-dom": ">=17",
|
|
109
102
|
"styled-components": "^5.3.5"
|
|
110
103
|
},
|
|
111
|
-
"gitHead": "
|
|
104
|
+
"gitHead": "265f84947acdc61000aade206ad6416de168a8b4"
|
|
112
105
|
}
|