@synerise/ds-ordered-list 0.4.8 → 0.4.9
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/Ordered-list.styles.js +3 -3
- package/package.json +6 -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.4.9](https://github.com/Synerise/synerise-design/compare/@synerise/ds-ordered-list@0.4.8...@synerise/ds-ordered-list@0.4.9) (2025-03-10)
|
7
|
+
|
8
|
+
**Note:** Version bump only for package @synerise/ds-ordered-list
|
9
|
+
|
10
|
+
|
11
|
+
|
12
|
+
|
13
|
+
|
6
14
|
## [0.4.8](https://github.com/Synerise/synerise-design/compare/@synerise/ds-ordered-list@0.4.7...@synerise/ds-ordered-list@0.4.8) (2025-03-04)
|
7
15
|
|
8
16
|
**Note:** Version bump only for package @synerise/ds-ordered-list
|
@@ -1,7 +1,7 @@
|
|
1
1
|
import styled from 'styled-components';
|
2
2
|
export var OrderedList = styled.ol.withConfig({
|
3
3
|
displayName: "Ordered-liststyles__OrderedList",
|
4
|
-
componentId: "smxtrj-0"
|
4
|
+
componentId: "sc-smxtrj-0"
|
5
5
|
})(["display:flex;flex-direction:column;padding:0;list-style-type:", ";list-style-position:inside;ol{margin-left:10px;padding:5px 0 5px 12px;list-style-type:", ";}li{margin-right:4px;list-style-type:", ";}"], function (props) {
|
6
6
|
return props.listStyle ? props.listStyle : 'none';
|
7
7
|
}, function (props) {
|
@@ -11,11 +11,11 @@ export var OrderedList = styled.ol.withConfig({
|
|
11
11
|
});
|
12
12
|
export var Label = styled.label.withConfig({
|
13
13
|
displayName: "Ordered-liststyles__Label",
|
14
|
-
componentId: "smxtrj-1"
|
14
|
+
componentId: "sc-smxtrj-1"
|
15
15
|
})(["color:", ";font-weight:500;display:block;"], function (props) {
|
16
16
|
return props.theme.palette['grey-800'];
|
17
17
|
});
|
18
18
|
export var ContentAbove = styled.div.withConfig({
|
19
19
|
displayName: "Ordered-liststyles__ContentAbove",
|
20
|
-
componentId: "smxtrj-2"
|
20
|
+
componentId: "sc-smxtrj-2"
|
21
21
|
})(["margin-bottom:8px;min-height:18px;"]);
|
package/package.json
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
{
|
2
2
|
"name": "@synerise/ds-ordered-list",
|
3
|
-
"version": "0.4.
|
3
|
+
"version": "0.4.9",
|
4
4
|
"description": "OrderedList UI Component for the Synerise Design System",
|
5
5
|
"license": "ISC",
|
6
6
|
"repository": "Synerise/synerise-design",
|
@@ -14,7 +14,7 @@
|
|
14
14
|
"build:js": "babel --delete-dir-on-start --root-mode upward src --out-dir dist --extensions '.js,.ts,.tsx'",
|
15
15
|
"build:watch": "npm run build:js -- --watch",
|
16
16
|
"defs": "tsc --declaration --outDir dist/ --emitDeclarationOnly",
|
17
|
-
"pack:ci": "npm pack --pack-destination ../../
|
17
|
+
"pack:ci": "npm pack --pack-destination ../../storybook/storybook-static/static",
|
18
18
|
"prepublish": "npm run build",
|
19
19
|
"test": "jest",
|
20
20
|
"test:watch": "npm run test -- --watchAll",
|
@@ -27,14 +27,14 @@
|
|
27
27
|
],
|
28
28
|
"types": "dist/index.d.ts",
|
29
29
|
"dependencies": {
|
30
|
-
"@synerise/ds-icon": "^0.72.
|
31
|
-
"@synerise/ds-input": "^0.25.
|
32
|
-
"@synerise/ds-utils": "^0.32.
|
30
|
+
"@synerise/ds-icon": "^0.72.1",
|
31
|
+
"@synerise/ds-input": "^0.25.9",
|
32
|
+
"@synerise/ds-utils": "^0.32.3"
|
33
33
|
},
|
34
34
|
"peerDependencies": {
|
35
35
|
"@synerise/ds-core": "*",
|
36
36
|
"react": ">=16.9.0 <= 18.3.1",
|
37
37
|
"styled-components": "^5.3.3"
|
38
38
|
},
|
39
|
-
"gitHead": "
|
39
|
+
"gitHead": "a176b46dab123cd503247ae57022f8e808772d68"
|
40
40
|
}
|