kwant-ui 3.38.1-dev.10 → 3.38.1-dev.12
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/dist/components/Calendar/CalendarStyled.d.ts +1 -1
- package/dist/components/HorizontalStepper/index.d.ts +2 -1
- package/dist/components/Selector/Selector.d.ts +1 -1
- package/dist/components/Selector/types.d.ts +2 -1
- package/dist/index.es.js +160 -160
- package/dist/index.js +160 -160
- package/dist/package.json +1 -1
- package/package.json +1 -1
|
@@ -30,7 +30,7 @@ export declare const StyledInput: import("styled-components").StyledComponent<im
|
|
|
30
30
|
} & import("react").RefAttributes<HTMLInputElement>>, any, {}, never>;
|
|
31
31
|
export declare const Colon: import("styled-components").StyledComponent<"div", any, {}, never>;
|
|
32
32
|
export declare const InputGroup: import("styled-components").StyledComponent<"div", any, {}, never>;
|
|
33
|
-
export declare const SelectorStyled: import("styled-components").StyledComponent<({ content, activeKey, onClick, height }: import("../Selector/types").SelectorComponent.Props) => import("react/jsx-runtime").JSX.Element, any, {}, never>;
|
|
33
|
+
export declare const SelectorStyled: import("styled-components").StyledComponent<({ content, activeKey, onClick, height, multiple }: import("../Selector/types").SelectorComponent.Props) => import("react/jsx-runtime").JSX.Element, any, {}, never>;
|
|
34
34
|
export declare const TimeBarContainer: import("styled-components").StyledComponent<"div", any, {}, never>;
|
|
35
35
|
export declare const TopLabel: import("styled-components").StyledComponent<"label", any, import("../Label/types").LabelComponent.Label, never>;
|
|
36
36
|
export declare const TimeBarStyled: import("styled-components").StyledComponent<"div", any, {}, never>;
|
|
@@ -7,6 +7,7 @@ type HorizontalStepperType = {
|
|
|
7
7
|
activeStep?: any;
|
|
8
8
|
setActiveStep?: any;
|
|
9
9
|
navigateOnStepClick?: boolean;
|
|
10
|
+
onStepChange?: (value: any) => void;
|
|
10
11
|
};
|
|
11
|
-
declare const HorizontalStepper: ({ activeStep, setActiveStep, navigateOnStepClick, ...props }: HorizontalStepperType) => import("react/jsx-runtime").JSX.Element;
|
|
12
|
+
declare const HorizontalStepper: ({ activeStep, setActiveStep, navigateOnStepClick, onStepChange, ...props }: HorizontalStepperType) => import("react/jsx-runtime").JSX.Element;
|
|
12
13
|
export { HorizontalStepper };
|
|
@@ -1,3 +1,3 @@
|
|
|
1
1
|
import { SelectorComponent } from './types';
|
|
2
|
-
declare const Selector: ({ content, activeKey, onClick, height }: SelectorComponent.Props) => import("react/jsx-runtime").JSX.Element;
|
|
2
|
+
declare const Selector: ({ content, activeKey, onClick, height, multiple }: SelectorComponent.Props) => import("react/jsx-runtime").JSX.Element;
|
|
3
3
|
export default Selector;
|