@synerise/ds-typography 2.0.2 → 2.0.4
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 +12 -0
- package/dist/index.d.ts +3 -3
- package/dist/index.js +5 -5
- package/package.json +4 -4
package/CHANGELOG.md
CHANGED
|
@@ -3,6 +3,18 @@
|
|
|
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
|
+
## [2.0.4](https://github.com/synerise/synerise-design/compare/@synerise/ds-typography@2.0.3...@synerise/ds-typography@2.0.4) (2026-09-18)
|
|
7
|
+
|
|
8
|
+
**Note:** Version bump only for package @synerise/ds-typography
|
|
9
|
+
|
|
10
|
+
|
|
11
|
+
|
|
12
|
+
|
|
13
|
+
|
|
14
|
+
## [2.0.3](https://github.com/synerise/synerise-design/compare/@synerise/ds-typography@2.0.2...@synerise/ds-typography@2.0.3) (2026-09-16)
|
|
15
|
+
|
|
16
|
+
**Note:** Version bump only for package @synerise/ds-typography
|
|
17
|
+
|
|
6
18
|
## [2.0.2](https://github.com/synerise/synerise-design/compare/@synerise/ds-typography@2.0.1...@synerise/ds-typography@2.0.2) (2026-09-08)
|
|
7
19
|
|
|
8
20
|
**Note:** Version bump only for package @synerise/ds-typography
|
package/dist/index.d.ts
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
|
-
export { default } from './Typography';
|
|
2
1
|
export { Description, ErrorText, Label } from './CommonElements';
|
|
3
|
-
export { default as Title } from './Title';
|
|
4
|
-
export * from './Text';
|
|
5
2
|
export * from './Paragraph';
|
|
6
3
|
export * as macro from './style/macro-utils';
|
|
4
|
+
export * from './Text';
|
|
5
|
+
export { default as Title } from './Title';
|
|
6
|
+
export { default } from './Typography';
|
package/dist/index.js
CHANGED
|
@@ -1,16 +1,16 @@
|
|
|
1
|
-
import { default as default2 } from "./Typography.js";
|
|
2
1
|
import { Description, ErrorText, Label } from "./CommonElements.js";
|
|
3
|
-
import { default as default3 } from "./Title.js";
|
|
4
|
-
import { Text } from "./Text.js";
|
|
5
2
|
import { Paragraph } from "./Paragraph.js";
|
|
6
3
|
import * as style_macroUtils from "./style/macro-utils.js";
|
|
4
|
+
import { Text } from "./Text.js";
|
|
5
|
+
import { default as default2 } from "./Title.js";
|
|
6
|
+
import { default as default3 } from "./Typography.js";
|
|
7
7
|
export {
|
|
8
8
|
Description,
|
|
9
9
|
ErrorText,
|
|
10
10
|
Label,
|
|
11
11
|
Paragraph,
|
|
12
12
|
Text,
|
|
13
|
-
|
|
14
|
-
|
|
13
|
+
default2 as Title,
|
|
14
|
+
default3 as default,
|
|
15
15
|
style_macroUtils as macro
|
|
16
16
|
};
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@synerise/ds-typography",
|
|
3
|
-
"version": "2.0.
|
|
3
|
+
"version": "2.0.4",
|
|
4
4
|
"description": "Typography UI Component for the Synerise Design System",
|
|
5
5
|
"license": "ISC",
|
|
6
6
|
"repository": "synerise/synerise-design",
|
|
@@ -42,8 +42,8 @@
|
|
|
42
42
|
],
|
|
43
43
|
"types": "dist/index.d.ts",
|
|
44
44
|
"dependencies": {
|
|
45
|
-
"@synerise/ds-tooltip": "^2.0.
|
|
46
|
-
"@synerise/ds-utils": "^2.
|
|
45
|
+
"@synerise/ds-tooltip": "^2.0.4",
|
|
46
|
+
"@synerise/ds-utils": "^2.1.1",
|
|
47
47
|
"classnames": "^2.5.1",
|
|
48
48
|
"lodash.debounce": "^4.0.8"
|
|
49
49
|
},
|
|
@@ -56,5 +56,5 @@
|
|
|
56
56
|
"styled-components": "^5.3.3",
|
|
57
57
|
"vitest": "4"
|
|
58
58
|
},
|
|
59
|
-
"gitHead": "
|
|
59
|
+
"gitHead": "b1d905617dfb186b5d80966d63ce55bf29df743d"
|
|
60
60
|
}
|