@zealicsolutions/web-ui 0.1.95 → 0.1.96
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/cjs/index.js +11 -11
- package/dist/cjs/index.js.map +1 -1
- package/dist/cjs/src/molecules/BottomNavBarItem/BottomNavBarItem.d.ts +11 -0
- package/dist/cjs/src/molecules/BottomNavBarItem/BottomNavBarItem.stories.d.ts +9 -0
- package/dist/cjs/src/molecules/index.d.ts +1 -0
- package/dist/cjs/src/organisms/BottomNavBarNavigation/BottomNavBarNavigation.d.ts +6 -0
- package/dist/cjs/src/organisms/BottomNavBarNavigation/BottomNavBarNavigation.stories.d.ts +9 -0
- package/dist/cjs/src/organisms/index.d.ts +1 -0
- package/dist/cjs/src/theme/types.d.ts +1 -1
- package/dist/esm/index.js +5 -5
- package/dist/esm/index.js.map +1 -1
- package/dist/esm/src/molecules/BottomNavBarItem/BottomNavBarItem.d.ts +11 -0
- package/dist/esm/src/molecules/BottomNavBarItem/BottomNavBarItem.stories.d.ts +9 -0
- package/dist/esm/src/molecules/index.d.ts +1 -0
- package/dist/esm/src/organisms/BottomNavBarNavigation/BottomNavBarNavigation.d.ts +6 -0
- package/dist/esm/src/organisms/BottomNavBarNavigation/BottomNavBarNavigation.stories.d.ts +9 -0
- package/dist/esm/src/organisms/index.d.ts +1 -0
- package/dist/esm/src/theme/types.d.ts +1 -1
- package/dist/index.d.ts +43 -27
- package/package.json +1 -1
@@ -0,0 +1,11 @@
|
|
1
|
+
import { ComponentType } from 'react';
|
2
|
+
import { IconProps } from 'atoms';
|
3
|
+
import { Callback } from '../../typescript';
|
4
|
+
export declare type BottomNaVBarItemProps = {
|
5
|
+
name: string;
|
6
|
+
icon: ComponentType<Omit<IconProps, 'name'>>;
|
7
|
+
active: boolean;
|
8
|
+
activeColor: string;
|
9
|
+
onNavigate: Callback;
|
10
|
+
};
|
11
|
+
export declare const BottomNavBarItem: ({ name, icon: IconComponent, active, activeColor, onNavigate, }: BottomNaVBarItemProps) => JSX.Element;
|
@@ -0,0 +1,9 @@
|
|
1
|
+
/// <reference types="react" />
|
2
|
+
import type { ComponentStory } from '@storybook/react';
|
3
|
+
import { BottomNavBarItem as BottomNavBarItemComponent } from './BottomNavBarItem';
|
4
|
+
declare const _default: {
|
5
|
+
title: string;
|
6
|
+
component: ({ name, icon: IconComponent, active, activeColor, onNavigate, }: import("./BottomNavBarItem").BottomNaVBarItemProps) => JSX.Element;
|
7
|
+
};
|
8
|
+
export default _default;
|
9
|
+
export declare const BottomNavBarItem: ComponentStory<typeof BottomNavBarItemComponent>;
|
@@ -0,0 +1,6 @@
|
|
1
|
+
/// <reference types="react" />
|
2
|
+
import { BottomNaVBarItemProps } from 'molecules';
|
3
|
+
export declare type BottomNavBarNavigationProps = {
|
4
|
+
navbarItems: BottomNaVBarItemProps[];
|
5
|
+
};
|
6
|
+
export declare const BottomNavBarNavigation: ({ navbarItems }: BottomNavBarNavigationProps) => JSX.Element;
|
@@ -0,0 +1,9 @@
|
|
1
|
+
/// <reference types="react" />
|
2
|
+
import { ComponentStory } from '@storybook/react';
|
3
|
+
import { BottomNavBarNavigation as BottomNavBarComponent } from './BottomNavBarNavigation';
|
4
|
+
declare const _default: {
|
5
|
+
title: string;
|
6
|
+
component: ({ navbarItems }: import("./BottomNavBarNavigation").BottomNavBarNavigationProps) => JSX.Element;
|
7
|
+
};
|
8
|
+
export default _default;
|
9
|
+
export declare const BottomNavBarNavigation: ComponentStory<typeof BottomNavBarComponent>;
|
@@ -14,3 +14,4 @@ export * from './Consent/Consent';
|
|
14
14
|
export * from './ProcessTracker/ProcessTracker';
|
15
15
|
export * from './FeedContentContainer/FeedContentContainer';
|
16
16
|
export * from './DynamicContentZone/DynamicContentZone';
|
17
|
+
export * from './BottomNavBarNavigation/BottomNavBarNavigation';
|
@@ -1,4 +1,4 @@
|
|
1
|
-
export declare type ThemeColors = 'primary' | 'secondary' | 'background' | 'gray1' | 'gray2' | 'gray3' | 'gray4' | 'gray5' | 'indigo' | 'blue' | 'white' | 'black' | 'indigoTint' | 'indigoTint2' | 'success' | 'error' | 'warning' | 'green';
|
1
|
+
export declare type ThemeColors = 'primary' | 'secondary' | 'background' | 'gray1' | 'gray2' | 'gray3' | 'gray4' | 'gray5' | 'indigo' | 'blue' | 'white' | 'black' | 'indigoTint' | 'indigoTint2' | 'success' | 'error' | 'warning' | 'green' | 'greenTint';
|
2
2
|
export declare type SizesTypes = '2XL' | 'XL' | 'L' | 'M' | 'S' | 'XS';
|
3
3
|
export declare type FontSizesTypes = SizesTypes | 'H2';
|
4
4
|
export declare type BreakpointSizesTypes = 'xs' | 'sm' | 'md' | 'lg' | 'xl';
|