@synerise/ds-ordered-list 0.3.55 → 0.3.57

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.57](https://github.com/Synerise/synerise-design/compare/@synerise/ds-ordered-list@0.3.56...@synerise/ds-ordered-list@0.3.57) (2023-10-11)
7
+
8
+ **Note:** Version bump only for package @synerise/ds-ordered-list
9
+
10
+
11
+
12
+
13
+
14
+ ## [0.3.56](https://github.com/Synerise/synerise-design/compare/@synerise/ds-ordered-list@0.3.55...@synerise/ds-ordered-list@0.3.56) (2023-10-02)
15
+
16
+ **Note:** Version bump only for package @synerise/ds-ordered-list
17
+
18
+
19
+
20
+
21
+
6
22
  ## [0.3.55](https://github.com/Synerise/synerise-design/compare/@synerise/ds-ordered-list@0.3.54...@synerise/ds-ordered-list@0.3.55) (2023-09-26)
7
23
 
8
24
  **Note:** Version bump only for package @synerise/ds-ordered-list
@@ -1,5 +1,5 @@
1
1
  import * as React from 'react';
2
- export declare type OrderedListItem = {
2
+ export type OrderedListItem = {
3
3
  id: string;
4
4
  label: string;
5
5
  prefixel?: React.ReactNode;
@@ -10,7 +10,7 @@ export declare type OrderedListItem = {
10
10
  subMenuProps?: Omit<ListProps, 'data'>;
11
11
  text?: React.ReactNode | string;
12
12
  };
13
- export declare type ListProps = {
13
+ export type ListProps = {
14
14
  data: OrderedListItem[];
15
15
  indexFormatter?: (index: number) => React.ReactNode | string;
16
16
  listStyle?: string;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@synerise/ds-ordered-list",
3
- "version": "0.3.55",
3
+ "version": "0.3.57",
4
4
  "description": "OrderedList UI Component for the Synerise Design System",
5
5
  "license": "ISC",
6
6
  "repository": "Synerise/synerise-design",
@@ -14,6 +14,7 @@
14
14
  "build:js": "babel --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 ../../portal/storybook-static/static",
17
18
  "prepublish": "npm run build",
18
19
  "test": "jest",
19
20
  "test:watch": "npm run test -- --watchAll",
@@ -25,9 +26,9 @@
25
26
  ],
26
27
  "types": "dist/index.d.ts",
27
28
  "dependencies": {
28
- "@synerise/ds-icon": "^0.58.2",
29
- "@synerise/ds-input": "^0.19.2",
30
- "@synerise/ds-utils": "^0.24.16"
29
+ "@synerise/ds-icon": "^0.58.4",
30
+ "@synerise/ds-input": "^0.19.4",
31
+ "@synerise/ds-utils": "^0.24.18"
31
32
  },
32
33
  "peerDependencies": {
33
34
  "@synerise/ds-core": "*",
@@ -38,5 +39,5 @@
38
39
  "@testing-library/jest-dom": "5.1.1",
39
40
  "@testing-library/react": "10.0.1"
40
41
  },
41
- "gitHead": "f1f520c4c5ef9f90bacb5d5e0b2e778ceb8fdf79"
42
+ "gitHead": "8eb4a3e304406a8dbb9258803c48952461fc5a55"
42
43
  }