@synerise/ds-ordered-list 0.3.100 → 0.3.102
Sign up to get free protection for your applications and to get access to all the features.
package/CHANGELOG.md
CHANGED
@@ -3,6 +3,22 @@
|
|
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.3.102](https://github.com/Synerise/synerise-design/compare/@synerise/ds-ordered-list@0.3.101...@synerise/ds-ordered-list@0.3.102) (2024-09-26)
|
7
|
+
|
8
|
+
**Note:** Version bump only for package @synerise/ds-ordered-list
|
9
|
+
|
10
|
+
|
11
|
+
|
12
|
+
|
13
|
+
|
14
|
+
## [0.3.101](https://github.com/Synerise/synerise-design/compare/@synerise/ds-ordered-list@0.3.100...@synerise/ds-ordered-list@0.3.101) (2024-09-17)
|
15
|
+
|
16
|
+
**Note:** Version bump only for package @synerise/ds-ordered-list
|
17
|
+
|
18
|
+
|
19
|
+
|
20
|
+
|
21
|
+
|
6
22
|
## [0.3.100](https://github.com/Synerise/synerise-design/compare/@synerise/ds-ordered-list@0.3.99...@synerise/ds-ordered-list@0.3.100) (2024-09-13)
|
7
23
|
|
8
24
|
**Note:** Version bump only for package @synerise/ds-ordered-list
|
@@ -1,6 +1,6 @@
|
|
1
1
|
function _extends() { _extends = Object.assign || function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends.apply(this, arguments); }
|
2
2
|
|
3
|
-
import
|
3
|
+
import React from 'react';
|
4
4
|
import * as S from './Item.styles';
|
5
5
|
import OrderedList from '../../Ordered-list';
|
6
6
|
|
package/dist/Ordered-list.d.ts
CHANGED
package/dist/Ordered-list.js
CHANGED
@@ -4,7 +4,7 @@ function _extends() { _extends = Object.assign || function (target) { for (var i
|
|
4
4
|
|
5
5
|
function _objectWithoutPropertiesLoose(source, excluded) { if (source == null) return {}; var target = {}; var sourceKeys = Object.keys(source); var key, i; for (i = 0; i < sourceKeys.length; i++) { key = sourceKeys[i]; if (excluded.indexOf(key) >= 0) continue; target[key] = source[key]; } return target; }
|
6
6
|
|
7
|
-
import
|
7
|
+
import React from 'react';
|
8
8
|
import Label from '@synerise/ds-input/dist/Label/Label';
|
9
9
|
import * as S from './Ordered-list.styles';
|
10
10
|
import Item from './Elements/Item/Item';
|
package/package.json
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
{
|
2
2
|
"name": "@synerise/ds-ordered-list",
|
3
|
-
"version": "0.3.
|
3
|
+
"version": "0.3.102",
|
4
4
|
"description": "OrderedList UI Component for the Synerise Design System",
|
5
5
|
"license": "ISC",
|
6
6
|
"repository": "Synerise/synerise-design",
|
@@ -18,7 +18,8 @@
|
|
18
18
|
"prepublish": "npm run build",
|
19
19
|
"test": "jest",
|
20
20
|
"test:watch": "npm run test -- --watchAll",
|
21
|
-
"types": "tsc --noEmit"
|
21
|
+
"types": "tsc --noEmit",
|
22
|
+
"upgrade:ds": "ncu -f \"@synerise/ds-*\" -u"
|
22
23
|
},
|
23
24
|
"sideEffects": [
|
24
25
|
"dist/style/*",
|
@@ -26,14 +27,14 @@
|
|
26
27
|
],
|
27
28
|
"types": "dist/index.d.ts",
|
28
29
|
"dependencies": {
|
29
|
-
"@synerise/ds-icon": "^0.65.
|
30
|
-
"@synerise/ds-input": "^0.24.
|
31
|
-
"@synerise/ds-utils": "^0.29.
|
30
|
+
"@synerise/ds-icon": "^0.65.7",
|
31
|
+
"@synerise/ds-input": "^0.24.6",
|
32
|
+
"@synerise/ds-utils": "^0.29.4"
|
32
33
|
},
|
33
34
|
"peerDependencies": {
|
34
35
|
"@synerise/ds-core": "*",
|
35
36
|
"react": ">=16.9.0 <= 17.0.2",
|
36
37
|
"styled-components": "5.0.1"
|
37
38
|
},
|
38
|
-
"gitHead": "
|
39
|
+
"gitHead": "fc06bd0f13401a57329fb92985b735de33108dbc"
|
39
40
|
}
|