@synerise/ds-typography 0.15.0 → 0.15.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/CHANGELOG.md +8 -0
- package/dist/Ellipsis.d.ts +2 -2
- package/dist/Text.d.ts +2 -2
- package/dist/Title.d.ts +2 -1
- package/package.json +3 -6
package/CHANGELOG.md
CHANGED
|
@@ -3,6 +3,14 @@
|
|
|
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
|
+
## [0.15.1](https://github.com/synerise/synerise-design/compare/@synerise/ds-typography@0.15.0...@synerise/ds-typography@0.15.1) (2024-07-05)
|
|
7
|
+
|
|
8
|
+
**Note:** Version bump only for package @synerise/ds-typography
|
|
9
|
+
|
|
10
|
+
|
|
11
|
+
|
|
12
|
+
|
|
13
|
+
|
|
6
14
|
# [0.15.0](https://github.com/synerise/synerise-design/compare/@synerise/ds-typography@0.14.3...@synerise/ds-typography@0.15.0) (2024-04-29)
|
|
7
15
|
|
|
8
16
|
|
package/dist/Ellipsis.d.ts
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
|
-
import { ReactNode } from 'react';
|
|
1
|
+
import React, { ReactNode } from 'react';
|
|
2
2
|
export type EllipsisProps = {
|
|
3
3
|
tooltip?: ReactNode;
|
|
4
4
|
children?: ReactNode;
|
|
5
5
|
className?: string;
|
|
6
6
|
};
|
|
7
|
-
export declare const Ellipsis: ({ tooltip, children, className }: EllipsisProps) => JSX.Element;
|
|
7
|
+
export declare const Ellipsis: ({ tooltip, children, className }: EllipsisProps) => React.JSX.Element;
|
package/dist/Text.d.ts
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { ReactNode } from 'react';
|
|
1
|
+
import React, { ReactNode } from 'react';
|
|
2
2
|
import '@synerise/ds-core/dist/js/style';
|
|
3
3
|
import './style/index.less';
|
|
4
4
|
import { EllipsisProps } from './Ellipsis';
|
|
@@ -9,5 +9,5 @@ type TextProps = {
|
|
|
9
9
|
children?: ReactNode;
|
|
10
10
|
className?: string;
|
|
11
11
|
};
|
|
12
|
-
export declare const Text: ({ size, className, children, ellipsis }: TextProps) => JSX.Element;
|
|
12
|
+
export declare const Text: ({ size, className, children, ellipsis }: TextProps) => React.JSX.Element;
|
|
13
13
|
export default Text;
|
package/dist/Title.d.ts
CHANGED
|
@@ -1,3 +1,4 @@
|
|
|
1
|
+
import * as React from 'react';
|
|
1
2
|
import { Props } from './Title.types';
|
|
2
|
-
declare const Title: ({ level, withoutMargin, children, className, ellipsis, ...antdProps }: Props) => JSX.Element;
|
|
3
|
+
declare const Title: ({ level, withoutMargin, children, className, ellipsis, ...antdProps }: Props) => React.JSX.Element;
|
|
3
4
|
export default Title;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@synerise/ds-typography",
|
|
3
|
-
"version": "0.15.
|
|
3
|
+
"version": "0.15.1",
|
|
4
4
|
"description": "Typography UI Component for the Synerise Design System",
|
|
5
5
|
"license": "ISC",
|
|
6
6
|
"repository": "synerise/synerise-design",
|
|
@@ -40,11 +40,8 @@
|
|
|
40
40
|
"peerDependencies": {
|
|
41
41
|
"@synerise/ds-core": "*",
|
|
42
42
|
"antd": "4.7.0",
|
|
43
|
-
"react": ">=16.9.0
|
|
43
|
+
"react": ">=16.9.0 <= 17.0.2",
|
|
44
44
|
"styled-components": "5.0.1"
|
|
45
45
|
},
|
|
46
|
-
"
|
|
47
|
-
"enzyme": "3.11.0"
|
|
48
|
-
},
|
|
49
|
-
"gitHead": "6f0dc42ae79cea009e60fdb1f91ef72dcc82998e"
|
|
46
|
+
"gitHead": "6e5e5202d6c6f1c2caf6bfef799009813b437b3d"
|
|
50
47
|
}
|