@synerise/ds-divider 1.3.0 → 1.3.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 +4 -0
- package/README.md +6 -6
- package/package.json +6 -6
package/CHANGELOG.md
CHANGED
|
@@ -3,6 +3,10 @@
|
|
|
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.3.1](https://github.com/Synerise/synerise-design/compare/@synerise/ds-divider@1.3.0...@synerise/ds-divider@1.3.1) (2026-03-20)
|
|
7
|
+
|
|
8
|
+
**Note:** Version bump only for package @synerise/ds-divider
|
|
9
|
+
|
|
6
10
|
# [1.3.0](https://github.com/Synerise/synerise-design/compare/@synerise/ds-divider@1.2.17...@synerise/ds-divider@1.3.0) (2026-03-09)
|
|
7
11
|
|
|
8
12
|
### Features
|
package/README.md
CHANGED
|
@@ -29,9 +29,9 @@ import Divider from '@synerise/ds-divider';
|
|
|
29
29
|
| marginBottom | Value for bottom margin | number | 0 |
|
|
30
30
|
| labelAbove | Label to display above divider | ReactNode | |
|
|
31
31
|
| labelBelow | Label to display below divider | ReactNode | |
|
|
32
|
-
| className
|
|
33
|
-
| dashed
|
|
34
|
-
|
|
|
35
|
-
|
|
|
36
|
-
|
|
|
37
|
-
|
|
|
32
|
+
| className | ClassName of container | string | - |
|
|
33
|
+
| dashed | Whether line is dashed | boolean | `false` |
|
|
34
|
+
| style | Style object of container | React.CSSProperties | - |
|
|
35
|
+
| type | Direction type of divider | enum: horizontal vertical | horizontal |
|
|
36
|
+
| hiddenLine | Show only labels, hide the line | boolean | `false` |
|
|
37
|
+
| withSideMargin | Add 12px left/right margin to horizontal dividers | boolean | - |
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@synerise/ds-divider",
|
|
3
|
-
"version": "1.3.
|
|
3
|
+
"version": "1.3.1",
|
|
4
4
|
"description": "Divider UI Component for the Synerise Design System",
|
|
5
5
|
"license": "ISC",
|
|
6
6
|
"repository": "Synerise/synerise-design",
|
|
@@ -23,8 +23,8 @@
|
|
|
23
23
|
"defs": "tsc --declaration --outDir dist/ --emitDeclarationOnly",
|
|
24
24
|
"pack:ci": "pnpm pack --pack-destination ../../storybook/storybook-static/static",
|
|
25
25
|
"prepublish": "pnpm run build",
|
|
26
|
-
"test": "vitest",
|
|
27
|
-
"test:watch": "
|
|
26
|
+
"test": "vitest run",
|
|
27
|
+
"test:watch": "vitest",
|
|
28
28
|
"types": "tsc --noEmit",
|
|
29
29
|
"check:circular-dependencies": "madge --circular --extensions ts,tsx,js,jsx --ts-config tsconfig.json src/ --exclude '/dist/'",
|
|
30
30
|
"upgrade:ds": "ncu -f \"@synerise/ds-*\" -u"
|
|
@@ -35,8 +35,8 @@
|
|
|
35
35
|
],
|
|
36
36
|
"types": "dist/index.d.ts",
|
|
37
37
|
"dependencies": {
|
|
38
|
-
"@synerise/ds-typography": "^1.1.
|
|
39
|
-
"@synerise/ds-utils": "^1.
|
|
38
|
+
"@synerise/ds-typography": "^1.1.12",
|
|
39
|
+
"@synerise/ds-utils": "^1.7.0"
|
|
40
40
|
},
|
|
41
41
|
"devDependencies": {
|
|
42
42
|
"vitest": "4"
|
|
@@ -46,5 +46,5 @@
|
|
|
46
46
|
"react": ">=16.9.0 <= 18.3.1",
|
|
47
47
|
"styled-components": "^5.3.3"
|
|
48
48
|
},
|
|
49
|
-
"gitHead": "
|
|
49
|
+
"gitHead": "8efc031fa688c0b87c7b3915bae93546bb63bcac"
|
|
50
50
|
}
|