@loadsmart/loadsmart-ui 7.3.0 → 7.3.2
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/Steps/Steps.d.ts +0 -3
- package/dist/components/Tabs/Tabs.d.ts +0 -5
- package/dist/index.js +227 -227
- package/dist/index.js.map +1 -1
- package/package.json +184 -184
- package/src/components/Steps/Steps.tsx +0 -4
- package/src/components/Tabs/Tabs.tsx +1 -5
|
@@ -11,9 +11,6 @@ export interface StepsProps {
|
|
|
11
11
|
}
|
|
12
12
|
declare function Steps({ id, children, current, steps, ...others }: PropsWithChildren<StepsProps>): JSX.Element;
|
|
13
13
|
declare namespace Steps {
|
|
14
|
-
var defaultProps: {
|
|
15
|
-
scheme: string;
|
|
16
|
-
};
|
|
17
14
|
var Step: typeof StepsStep;
|
|
18
15
|
}
|
|
19
16
|
export default Steps;
|
|
@@ -20,11 +20,6 @@ interface PanelsItemProps extends HTMLAttributes<HTMLElement> {
|
|
|
20
20
|
lazy?: boolean;
|
|
21
21
|
}
|
|
22
22
|
declare function PanelsItem({ children, name, lazy, ...props }: PanelsItemProps): React.JSX.Element;
|
|
23
|
-
declare namespace PanelsItem {
|
|
24
|
-
var defaultProps: {
|
|
25
|
-
lazy: boolean;
|
|
26
|
-
};
|
|
27
|
-
}
|
|
28
23
|
export interface TabsProps extends HTMLAttributes<HTMLElement>, WithDirectionProps {
|
|
29
24
|
activeTab?: string;
|
|
30
25
|
onTabChange?: (tab: string) => void;
|