@synerise/ds-banner 0.2.9 → 1.1.0
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/CHANGELOG.md
CHANGED
|
@@ -3,6 +3,17 @@
|
|
|
3
3
|
All notable changes to this project will be documented in this file.
|
|
4
4
|
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
|
|
5
5
|
|
|
6
|
+
# [1.1.0](https://github.com/Synerise/synerise-design/compare/@synerise/ds-banner@1.0.0...@synerise/ds-banner@1.1.0) (2025-03-18)
|
|
7
|
+
|
|
8
|
+
|
|
9
|
+
### Features
|
|
10
|
+
|
|
11
|
+
* **button:** add support for tag in button ([32b6956](https://github.com/Synerise/synerise-design/commit/32b6956d5e1f46df03abb4de8fbaf0a7d487043e))
|
|
12
|
+
|
|
13
|
+
|
|
14
|
+
|
|
15
|
+
|
|
16
|
+
|
|
6
17
|
## [0.2.9](https://github.com/Synerise/synerise-design/compare/@synerise/ds-banner@0.2.8...@synerise/ds-banner@0.2.9) (2025-03-10)
|
|
7
18
|
|
|
8
19
|
**Note:** Version bump only for package @synerise/ds-banner
|
package/dist/Banner.styles.d.ts
CHANGED
|
@@ -28,12 +28,7 @@ export declare const BannerSlideContentWrapper: import("styled-components").Styl
|
|
|
28
28
|
position: 'left' | 'right' | 'main';
|
|
29
29
|
}, never>;
|
|
30
30
|
export declare const BannerSlideTitlePrefix: import("styled-components").StyledComponent<"div", any, {}, never>;
|
|
31
|
-
export declare const BannerSlideTitleStatus: import("styled-components").StyledComponent<{
|
|
32
|
-
({ id, name, className, disabled, removable, image, shape, color, textColor, onRemove, onClick, prefixel, suffixel, texts, asPill, dashed, ...htmlAttributes }: import("@synerise/ds-tags/dist/Tag/Tag.types").TagProps): import("react").JSX.Element;
|
|
33
|
-
defaultProps: {
|
|
34
|
-
shape: import("@synerise/ds-tags").TagShape;
|
|
35
|
-
};
|
|
36
|
-
}, any, {}, never>;
|
|
31
|
+
export declare const BannerSlideTitleStatus: import("styled-components").StyledComponent<({ id, name, className, disabled, removable, image, shape, color, textColor, onRemove, onClick, prefixel, suffixel, texts, asPill, dashed, ...htmlAttributes }: import("@synerise/ds-tag").TagProps) => import("react").JSX.Element, any, {}, never>;
|
|
37
32
|
export declare const BannerSlideTitleText: import("styled-components").StyledComponent<({ level, withoutMargin, children, className, ellipsis, ...antdProps }: import("@synerise/ds-typography/dist/Title.types").Props) => import("react").JSX.Element, any, {}, never>;
|
|
38
33
|
export declare const BannerSlideDescription: import("styled-components").StyledComponent<"div", any, {}, never>;
|
|
39
34
|
export declare const BannerSlideMediaWrapper: import("styled-components").StyledComponent<"div", any, {}, never>;
|
package/dist/Banner.styles.js
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import styled, { css } from 'styled-components';
|
|
2
2
|
import { Carousel } from 'antd';
|
|
3
|
-
import
|
|
3
|
+
import Tag from '@synerise/ds-tag';
|
|
4
4
|
import { Text, Title } from '@synerise/ds-typography';
|
|
5
5
|
export var BannerWrapper = styled.div.withConfig({
|
|
6
6
|
displayName: "Bannerstyles__BannerWrapper",
|
package/dist/Banner.types.d.ts
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import type { ReactNode } from 'react';
|
|
2
2
|
import type { WithHTMLAttributes } from '@synerise/ds-utils';
|
|
3
|
-
import type { TagProps } from '@synerise/ds-
|
|
3
|
+
import type { TagProps } from '@synerise/ds-tag';
|
|
4
4
|
type Texts = 'expand' | 'collapse' | 'closeTooltip';
|
|
5
5
|
export type BannerTexts = {
|
|
6
6
|
[k in Texts]: ReactNode;
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
function _extends() { _extends = Object.assign ? Object.assign.bind() : function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends.apply(this, arguments); }
|
|
2
2
|
import React from 'react';
|
|
3
|
-
import { TagShape } from '@synerise/ds-
|
|
3
|
+
import { TagShape } from '@synerise/ds-tag';
|
|
4
4
|
import * as S from '../../Banner.styles';
|
|
5
5
|
import { DEFAULT_STATUS_COLOR, DEFAULT_STATUS_TEXT_COLOR } from '../../Banner.const';
|
|
6
6
|
export var BannerSlideTextContent = function BannerSlideTextContent(_ref) {
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@synerise/ds-banner",
|
|
3
|
-
"version": "
|
|
3
|
+
"version": "1.1.0",
|
|
4
4
|
"description": "Banner UI Component for the Synerise Design System",
|
|
5
5
|
"license": "ISC",
|
|
6
6
|
"repository": "Synerise/synerise-design",
|
|
@@ -34,12 +34,12 @@
|
|
|
34
34
|
],
|
|
35
35
|
"types": "dist/index.d.ts",
|
|
36
36
|
"dependencies": {
|
|
37
|
-
"@synerise/ds-button": "^
|
|
38
|
-
"@synerise/ds-icon": "^0.
|
|
39
|
-
"@synerise/ds-
|
|
40
|
-
"@synerise/ds-tooltip": "^
|
|
41
|
-
"@synerise/ds-typography": "^0.
|
|
42
|
-
"@synerise/ds-utils": "^0.
|
|
37
|
+
"@synerise/ds-button": "^1.1.0",
|
|
38
|
+
"@synerise/ds-icon": "^1.0.1",
|
|
39
|
+
"@synerise/ds-tag": "^1.1.0",
|
|
40
|
+
"@synerise/ds-tooltip": "^1.1.0",
|
|
41
|
+
"@synerise/ds-typography": "^1.0.1",
|
|
42
|
+
"@synerise/ds-utils": "^1.0.1",
|
|
43
43
|
"uuid": "^8.3.2"
|
|
44
44
|
},
|
|
45
45
|
"peerDependencies": {
|
|
@@ -49,5 +49,5 @@
|
|
|
49
49
|
"react-intl": ">= 3.12.0 <= 6.8",
|
|
50
50
|
"styled-components": "^5.3.3"
|
|
51
51
|
},
|
|
52
|
-
"gitHead": "
|
|
52
|
+
"gitHead": "218110f61f4371bc04d793b2b976b71d14e99e76"
|
|
53
53
|
}
|