@toptal/picasso-step 1.0.4 → 1.0.5

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.
@@ -1,8 +1,5 @@
1
- import { Stepper } from '../Stepper';
2
- import { StepperVertical } from '../StepperVertical';
3
- declare type StepperCompoundType = typeof Stepper & {
4
- Vertical: typeof StepperVertical;
1
+ /// <reference types="react" />
2
+ export declare const StepperCompound: import("react").ForwardRefExoticComponent<import("../Stepper/Stepper").Props & import("react").RefAttributes<HTMLDivElement>> & {
3
+ Vertical: import("react").ForwardRefExoticComponent<import("../Stepper").StepperBaseProps & import("react").RefAttributes<HTMLDivElement>>;
5
4
  };
6
- export declare const StepperCompound: StepperCompoundType;
7
- export {};
8
5
  //# sourceMappingURL=index.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../src/StepperCompound/index.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,OAAO,EAAE,MAAM,YAAY,CAAA;AACpC,OAAO,EAAE,eAAe,EAAE,MAAM,oBAAoB,CAAA;AAEpD,aAAK,mBAAmB,GAAG,OAAO,OAAO,GAAG;IAC1C,QAAQ,EAAE,OAAO,eAAe,CAAA;CACjC,CAAA;AAED,eAAO,MAAM,eAAe,EAAE,mBAE5B,CAAA"}
1
+ {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../src/StepperCompound/index.ts"],"names":[],"mappings":";AAGA,eAAO,MAAM,eAAe;;CAE1B,CAAA"}
@@ -1 +1 @@
1
- {"version":3,"file":"index.js","sourceRoot":"","sources":["../../../src/StepperCompound/index.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,OAAO,EAAE,MAAM,YAAY,CAAA;AACpC,OAAO,EAAE,eAAe,EAAE,MAAM,oBAAoB,CAAA;AAMpD,MAAM,CAAC,MAAM,eAAe,GAAwB,MAAM,CAAC,MAAM,CAAC,OAAO,EAAE;IACzE,QAAQ,EAAE,eAAe;CAC1B,CAAC,CAAA"}
1
+ {"version":3,"file":"index.js","sourceRoot":"","sources":["../../../src/StepperCompound/index.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,OAAO,EAAE,MAAM,YAAY,CAAA;AACpC,OAAO,EAAE,eAAe,EAAE,MAAM,oBAAoB,CAAA;AAEpD,MAAM,CAAC,MAAM,eAAe,GAAG,MAAM,CAAC,MAAM,CAAC,OAAO,EAAE;IACpD,QAAQ,EAAE,eAAe;CAC1B,CAAC,CAAA"}
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@toptal/picasso-step",
3
- "version": "1.0.4",
3
+ "version": "1.0.5",
4
4
  "description": "Toptal UI components library - Step",
5
5
  "publishConfig": {
6
6
  "access": "public"
@@ -1,10 +1,6 @@
1
1
  import { Stepper } from '../Stepper'
2
2
  import { StepperVertical } from '../StepperVertical'
3
3
 
4
- type StepperCompoundType = typeof Stepper & {
5
- Vertical: typeof StepperVertical
6
- }
7
-
8
- export const StepperCompound: StepperCompoundType = Object.assign(Stepper, {
4
+ export const StepperCompound = Object.assign(Stepper, {
9
5
  Vertical: StepperVertical,
10
6
  })