@synerise/ds-typography 1.1.20 → 1.1.21
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 +6 -0
- package/dist/Typography.d.ts +1 -1
- package/dist/Typography.js +2 -2
- package/dist/index.d.ts +1 -1
- package/dist/index.js +4 -4
- package/package.json +12 -3
package/CHANGELOG.md
CHANGED
|
@@ -3,6 +3,12 @@
|
|
|
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.21](https://github.com/synerise/synerise-design/compare/@synerise/ds-typography@1.1.20...@synerise/ds-typography@1.1.21) (2026-05-04)
|
|
7
|
+
|
|
8
|
+
### Bug Fixes
|
|
9
|
+
|
|
10
|
+
- add exports field to all component packages for correct ESM detection ([6eccfde](https://github.com/synerise/synerise-design/commit/6eccfde8f2dd73c59860793231fbd7bcd61813b4))
|
|
11
|
+
|
|
6
12
|
## [1.1.20](https://github.com/synerise/synerise-design/compare/@synerise/ds-typography@1.1.19...@synerise/ds-typography@1.1.20) (2026-04-29)
|
|
7
13
|
|
|
8
14
|
**Note:** Version bump only for package @synerise/ds-typography
|
package/dist/Typography.d.ts
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
export { default } from 'antd
|
|
1
|
+
export { Typography as default } from 'antd';
|
package/dist/Typography.js
CHANGED
package/dist/index.d.ts
CHANGED
package/dist/index.js
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
|
-
import {
|
|
1
|
+
import { Typography } from "antd";
|
|
2
2
|
import { Description, ErrorText, Label } from "./CommonElements.js";
|
|
3
|
-
import { default as
|
|
3
|
+
import { default as default2 } from "./Title.js";
|
|
4
4
|
import { Text } from "./Text.js";
|
|
5
5
|
import { Paragraph } from "./Paragraph.js";
|
|
6
6
|
import * as style_macroUtils from "./style/macro-utils.js";
|
|
@@ -10,7 +10,7 @@ export {
|
|
|
10
10
|
Label,
|
|
11
11
|
Paragraph,
|
|
12
12
|
Text,
|
|
13
|
-
|
|
14
|
-
|
|
13
|
+
default2 as Title,
|
|
14
|
+
Typography as default,
|
|
15
15
|
style_macroUtils as macro
|
|
16
16
|
};
|
package/package.json
CHANGED
|
@@ -1,10 +1,19 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@synerise/ds-typography",
|
|
3
|
-
"version": "1.1.
|
|
3
|
+
"version": "1.1.21",
|
|
4
4
|
"description": "Typography UI Component for the Synerise Design System",
|
|
5
5
|
"license": "ISC",
|
|
6
6
|
"repository": "synerise/synerise-design",
|
|
7
7
|
"main": "dist/index.js",
|
|
8
|
+
"exports": {
|
|
9
|
+
".": {
|
|
10
|
+
"types": "./dist/index.d.ts",
|
|
11
|
+
"import": "./dist/index.js",
|
|
12
|
+
"default": "./dist/index.js"
|
|
13
|
+
},
|
|
14
|
+
"./dist/*.js": "./dist/*.js",
|
|
15
|
+
"./dist/*": "./dist/*.js"
|
|
16
|
+
},
|
|
8
17
|
"files": [
|
|
9
18
|
"/dist",
|
|
10
19
|
"CHANGELOG.md",
|
|
@@ -32,7 +41,7 @@
|
|
|
32
41
|
],
|
|
33
42
|
"types": "dist/index.d.ts",
|
|
34
43
|
"dependencies": {
|
|
35
|
-
"@synerise/ds-tooltip": "^1.4.
|
|
44
|
+
"@synerise/ds-tooltip": "^1.4.18",
|
|
36
45
|
"classnames": "^2.5.1",
|
|
37
46
|
"lodash.debounce": "^4.0.8"
|
|
38
47
|
},
|
|
@@ -46,5 +55,5 @@
|
|
|
46
55
|
"styled-components": "^5.3.3",
|
|
47
56
|
"vitest": "4"
|
|
48
57
|
},
|
|
49
|
-
"gitHead": "
|
|
58
|
+
"gitHead": "c5eee882509cbeb4544cb45939620881b829d4d9"
|
|
50
59
|
}
|