@woovi/ui 6.0.2 → 6.1.0
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/index.cjs +3 -3
- package/dist/index.d.ts +1 -3
- package/dist/index.js +3 -3
- package/package.json +1 -1
- package/dist/routedTemp/RoutedTabsTempGreen.d.ts +0 -19
- package/dist/routedTemp/RoutedTabsTempWhite.d.ts +0 -19
- package/dist/screenHeaderTemp/ScreenHeaderUITempGreen.d.ts +0 -14
- package/dist/screenHeaderTemp/ScreenHeaderUITempWhite.d.ts +0 -14
- package/dist/screenHeaderTemp/components/ScreenHeaderSubtitle.d.ts +0 -3
- package/dist/screenHeaderTemp/components/ScreenHeaderTitle.d.ts +0 -6
package/package.json
CHANGED
|
@@ -1,19 +0,0 @@
|
|
|
1
|
-
import type { ReactNode } from "react";
|
|
2
|
-
import type { RouteParamsType, RouteType } from "../router/types";
|
|
3
|
-
export declare const hasTemp: (requiredFeatures?: any) => any;
|
|
4
|
-
type LabelParams = {
|
|
5
|
-
t: any;
|
|
6
|
-
};
|
|
7
|
-
type TabDefinitionType = {
|
|
8
|
-
route: string;
|
|
9
|
-
name: string;
|
|
10
|
-
label: ({ t }: LabelParams) => string | string;
|
|
11
|
-
component: React.ReactNode;
|
|
12
|
-
};
|
|
13
|
-
export type RoutedTabsProps = {
|
|
14
|
-
routeTo: (routeName: string, params?: RouteParamsType) => string;
|
|
15
|
-
tabs?: TabDefinitionType[];
|
|
16
|
-
routes: RouteType[];
|
|
17
|
-
};
|
|
18
|
-
declare const RoutedTabsTempGreen: (props: RoutedTabsProps) => ReactNode;
|
|
19
|
-
export default RoutedTabsTempGreen;
|
|
@@ -1,19 +0,0 @@
|
|
|
1
|
-
import type { ReactNode } from "react";
|
|
2
|
-
import type { RouteParamsType, RouteType } from "../router/types";
|
|
3
|
-
export declare const hasTemp: (requiredFeatures?: any) => any;
|
|
4
|
-
type LabelParams = {
|
|
5
|
-
t: any;
|
|
6
|
-
};
|
|
7
|
-
type TabDefinitionType = {
|
|
8
|
-
route: string;
|
|
9
|
-
name: string;
|
|
10
|
-
label: ({ t }: LabelParams) => string | string;
|
|
11
|
-
component: React.ReactNode;
|
|
12
|
-
};
|
|
13
|
-
export type RoutedTabsProps = {
|
|
14
|
-
routeTo: (routeName: string, params?: RouteParamsType) => string;
|
|
15
|
-
tabs?: TabDefinitionType[];
|
|
16
|
-
routes: RouteType[];
|
|
17
|
-
};
|
|
18
|
-
declare const RoutedTabsTempWhite: (props: RoutedTabsProps) => ReactNode;
|
|
19
|
-
export default RoutedTabsTempWhite;
|
|
@@ -1,14 +0,0 @@
|
|
|
1
|
-
import type { ReactNode } from "react";
|
|
2
|
-
import type { RouteType } from "../router/types";
|
|
3
|
-
export type ScreenHeaderUITempProps = {
|
|
4
|
-
routedTabs?: RouteType[];
|
|
5
|
-
children?: React.ReactNode;
|
|
6
|
-
tagsArray?: [];
|
|
7
|
-
title?: string;
|
|
8
|
-
titleLabel?: string;
|
|
9
|
-
subTitle?: string | React.ReactNode;
|
|
10
|
-
rightComponent?: React.ReactNode;
|
|
11
|
-
middleRightComponent?: React.ReactNode;
|
|
12
|
-
routeTo: (routeName: string) => string;
|
|
13
|
-
};
|
|
14
|
-
export declare const ScreenHeaderUITempGreen: ({ title, titleLabel, subTitle, routedTabs, routeTo, children, tagsArray, rightComponent, middleRightComponent, }: ScreenHeaderUITempProps) => ReactNode;
|
|
@@ -1,14 +0,0 @@
|
|
|
1
|
-
import type { ReactNode } from "react";
|
|
2
|
-
import type { RouteType } from "../router/types";
|
|
3
|
-
export type ScreenHeaderUITempProps = {
|
|
4
|
-
routedTabs?: RouteType[];
|
|
5
|
-
children?: React.ReactNode;
|
|
6
|
-
tagsArray?: [];
|
|
7
|
-
title?: string;
|
|
8
|
-
titleLabel?: string;
|
|
9
|
-
subTitle?: string | React.ReactNode;
|
|
10
|
-
rightComponent?: React.ReactNode;
|
|
11
|
-
middleRightComponent?: React.ReactNode;
|
|
12
|
-
routeTo: (routeName: string) => string;
|
|
13
|
-
};
|
|
14
|
-
export declare const ScreenHeaderUITempWhite: ({ title, titleLabel, subTitle, routedTabs, routeTo, children, tagsArray, rightComponent, middleRightComponent, }: ScreenHeaderUITempProps) => ReactNode;
|