@synerise/ds-stepper 0.3.36 → 0.3.37

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.37](https://github.com/Synerise/synerise-design/compare/@synerise/ds-stepper@0.3.36...@synerise/ds-stepper@0.3.37) (2023-10-02)
7
+
8
+ **Note:** Version bump only for package @synerise/ds-stepper
9
+
10
+
11
+
12
+
13
+
6
14
  ## [0.3.36](https://github.com/Synerise/synerise-design/compare/@synerise/ds-stepper@0.3.35...@synerise/ds-stepper@0.3.36) (2023-09-26)
7
15
 
8
16
  **Note:** Version bump only for package @synerise/ds-stepper
@@ -1,4 +1,3 @@
1
- /// <reference types="react" />
2
1
  import { StepProps } from './Step.types';
3
2
  declare const Step: ({ stepNumber, label, active, done, warning, validated, tooltip, onClick, children, size, orientation, }: StepProps) => JSX.Element;
4
3
  export default Step;
@@ -1,6 +1,6 @@
1
1
  import { ReactNode } from 'react';
2
2
  import { StepperOrientation, StepperSize } from '../Stepper.types';
3
- export declare type StepProps = {
3
+ export type StepProps = {
4
4
  label: string | ReactNode;
5
5
  stepNumber: number;
6
6
  active?: boolean;
@@ -1,16 +1,16 @@
1
- import { CSSProperties } from 'styled-components';
1
+ import { CSSProperties } from 'react';
2
2
  import Step from './Step/Step';
3
- export declare type StepperOrientation = 'vertical' | 'horizontal' | string;
4
- export declare type StepperSize = 'small' | 'default' | string;
3
+ export type StepperOrientation = 'vertical' | 'horizontal' | string;
4
+ export type StepperSize = 'small' | 'default' | string;
5
5
  export declare const ORIENTATIONS: {
6
6
  VERTICAL: StepperOrientation;
7
7
  HORIZONTAL: StepperOrientation;
8
8
  };
9
- export declare type StepperProps = {
9
+ export type StepperProps = {
10
10
  orientation?: StepperOrientation;
11
11
  style?: CSSProperties;
12
12
  size?: StepperSize;
13
13
  };
14
- export declare type StepperSubComponents = {
14
+ export type StepperSubComponents = {
15
15
  Step: typeof Step;
16
16
  };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@synerise/ds-stepper",
3
- "version": "0.3.36",
3
+ "version": "0.3.37",
4
4
  "description": "Stepper UI Component for the Synerise Design System",
5
5
  "license": "ISC",
6
6
  "repository": "Synerise/synerise-design",
@@ -32,9 +32,9 @@
32
32
  ],
33
33
  "types": "dist/index.d.ts",
34
34
  "dependencies": {
35
- "@synerise/ds-icon": "^0.58.2",
36
- "@synerise/ds-tooltip": "^0.14.4",
37
- "@synerise/ds-utils": "^0.24.16",
35
+ "@synerise/ds-icon": "^0.58.3",
36
+ "@synerise/ds-tooltip": "^0.14.5",
37
+ "@synerise/ds-utils": "^0.24.17",
38
38
  "react-animate-height": "^2.0.23"
39
39
  },
40
40
  "peerDependencies": {
@@ -46,5 +46,5 @@
46
46
  "@testing-library/jest-dom": "5.1.1",
47
47
  "@testing-library/user-event": "^10.3.1"
48
48
  },
49
- "gitHead": "f1f520c4c5ef9f90bacb5d5e0b2e778ceb8fdf79"
49
+ "gitHead": "1c1adf344f447e404a1d6320ad1d3f8486f29f67"
50
50
  }