@synerise/ds-ordered-list 0.3.100 → 0.3.101

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 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.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)
7
+
8
+ **Note:** Version bump only for package @synerise/ds-ordered-list
9
+
10
+
11
+
12
+
13
+
6
14
  ## [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
15
 
8
16
  **Note:** Version bump only for package @synerise/ds-ordered-list
@@ -1,4 +1,4 @@
1
- import * as React from 'react';
1
+ import React from 'react';
2
2
  import { ListProps, OrderedListItem } from '../../Ordered-list.types';
3
3
  declare const _default: React.NamedExoticComponent<OrderedListItem & Pick<ListProps, "indexFormatter">>;
4
4
  export default _default;
@@ -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 * as React from 'react';
3
+ import React from 'react';
4
4
  import * as S from './Item.styles';
5
5
  import OrderedList from '../../Ordered-list';
6
6
 
@@ -1,4 +1,4 @@
1
- import * as React from 'react';
1
+ import React from 'react';
2
2
  import { ListProps } from './Ordered-list.types';
3
3
  declare const OrderedList: React.FC<ListProps>;
4
4
  export default OrderedList;
@@ -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 * as React from 'react';
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';
@@ -1,4 +1,4 @@
1
- import * as React from 'react';
1
+ import React from 'react';
2
2
  export type OrderedListItem = {
3
3
  id: string;
4
4
  label: string;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@synerise/ds-ordered-list",
3
- "version": "0.3.100",
3
+ "version": "0.3.101",
4
4
  "description": "OrderedList UI Component for the Synerise Design System",
5
5
  "license": "ISC",
6
6
  "repository": "Synerise/synerise-design",
@@ -26,14 +26,14 @@
26
26
  ],
27
27
  "types": "dist/index.d.ts",
28
28
  "dependencies": {
29
- "@synerise/ds-icon": "^0.65.5",
30
- "@synerise/ds-input": "^0.24.4",
31
- "@synerise/ds-utils": "^0.29.2"
29
+ "@synerise/ds-icon": "^0.65.6",
30
+ "@synerise/ds-input": "^0.24.5",
31
+ "@synerise/ds-utils": "^0.29.3"
32
32
  },
33
33
  "peerDependencies": {
34
34
  "@synerise/ds-core": "*",
35
35
  "react": ">=16.9.0 <= 17.0.2",
36
36
  "styled-components": "5.0.1"
37
37
  },
38
- "gitHead": "6f3231e4a9e0720ffee61b748488cecd590da6e6"
38
+ "gitHead": "ae3c38b44ca0f9071cd55f7b82c182a99b5710e8"
39
39
  }