@zealicsolutions/web-ui 0.4.93 → 0.4.94
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 +1 -1
- package/dist/cjs/index.js.map +1 -1
- package/dist/cjs/src/molecules/MenuNavigation/MenuNavigation.d.ts +2 -1
- package/dist/cjs/src/molecules/MenuNavigation/MenuNavigation.stories.d.ts +1 -1
- package/dist/cjs/src/molecules/TabGroup/TabGroup.d.ts +2 -1
- package/dist/cjs/src/molecules/TabGroup/TabGroup.stories.d.ts +1 -1
- package/dist/esm/index.js +1 -1
- package/dist/esm/index.js.map +1 -1
- package/dist/esm/src/molecules/MenuNavigation/MenuNavigation.d.ts +2 -1
- package/dist/esm/src/molecules/MenuNavigation/MenuNavigation.stories.d.ts +1 -1
- package/dist/esm/src/molecules/TabGroup/TabGroup.d.ts +2 -1
- package/dist/esm/src/molecules/TabGroup/TabGroup.stories.d.ts +1 -1
- package/dist/index.d.ts +4 -2
- package/package.json +2 -2
@@ -3,8 +3,9 @@ import { MenuItemsProps } from '../MenuItems/MenuItems';
|
|
3
3
|
export declare type MenuNavigationProps<T> = {
|
4
4
|
menuConfig: MenuItemsProps<T>;
|
5
5
|
customIconType?: IconNames;
|
6
|
+
menuIconColor?: string;
|
6
7
|
};
|
7
|
-
export declare const MenuNavigation: <T extends string | number>({ menuConfig, customIconType, }: MenuNavigationProps<T>) => JSX.Element;
|
8
|
+
export declare const MenuNavigation: <T extends string | number>({ menuConfig, customIconType, menuIconColor, }: MenuNavigationProps<T>) => JSX.Element;
|
8
9
|
export declare const CaretIconWrapper: import("styled-components").StyledComponent<"div", import("styled-components").DefaultTheme, {
|
9
10
|
isOpen: boolean;
|
10
11
|
}, never>;
|
@@ -3,7 +3,7 @@ import { MenuNavigation as MenuNavigationComponent } from 'molecules/MenuNavigat
|
|
3
3
|
import 'rc-dropdown/assets/index.css';
|
4
4
|
declare const _default: {
|
5
5
|
title: string;
|
6
|
-
component: <T extends string | number>({ menuConfig, customIconType, }: import("molecules/MenuNavigation/MenuNavigation").MenuNavigationProps<T>) => JSX.Element;
|
6
|
+
component: <T extends string | number>({ menuConfig, customIconType, menuIconColor, }: import("molecules/MenuNavigation/MenuNavigation").MenuNavigationProps<T>) => JSX.Element;
|
7
7
|
};
|
8
8
|
export default _default;
|
9
9
|
export declare const MenuNavigation: ComponentStory<typeof MenuNavigationComponent>;
|
@@ -26,6 +26,7 @@ export declare type TabGroupProps<T = string, K = string> = {
|
|
26
26
|
compact?: AdditionalTabContainerProps;
|
27
27
|
isMobile?: boolean;
|
28
28
|
htmlElementId?: string;
|
29
|
+
menuIconColor?: string;
|
29
30
|
configurationItemInfo?: ConfigurationItemInfo;
|
30
31
|
};
|
31
|
-
export declare const TabGroup: <T extends string, K extends string>({ tabs, vertical, activeTabKey, onTabChange, tabTheme, wide, compact, tabSpacing, isMobile, htmlElementId, configurationItemInfo, ...props }: TabGroupProps<T, K>) => JSX.Element;
|
32
|
+
export declare const TabGroup: <T extends string, K extends string>({ tabs, vertical, activeTabKey, onTabChange, tabTheme, wide, compact, tabSpacing, isMobile, htmlElementId, menuIconColor, configurationItemInfo, ...props }: TabGroupProps<T, K>) => JSX.Element;
|
@@ -2,7 +2,7 @@ import type { StoryFn } from '@storybook/react';
|
|
2
2
|
import { TabGroupProps } from './TabGroup';
|
3
3
|
declare const _default: {
|
4
4
|
title: string;
|
5
|
-
component: <T extends string, K extends string>({ tabs, vertical, activeTabKey, onTabChange, tabTheme, wide, compact, tabSpacing, isMobile, htmlElementId, configurationItemInfo, ...props }: TabGroupProps<T, K>) => JSX.Element;
|
5
|
+
component: <T extends string, K extends string>({ tabs, vertical, activeTabKey, onTabChange, tabTheme, wide, compact, tabSpacing, isMobile, htmlElementId, menuIconColor, configurationItemInfo, ...props }: TabGroupProps<T, K>) => JSX.Element;
|
6
6
|
};
|
7
7
|
export default _default;
|
8
8
|
export declare const TabGroup: StoryFn<TabGroupProps>;
|
package/dist/index.d.ts
CHANGED
@@ -1883,9 +1883,10 @@ declare type TabGroupProps<T = string, K = string> = {
|
|
1883
1883
|
compact?: AdditionalTabContainerProps;
|
1884
1884
|
isMobile?: boolean;
|
1885
1885
|
htmlElementId?: string;
|
1886
|
+
menuIconColor?: string;
|
1886
1887
|
configurationItemInfo?: ConfigurationItemInfo$1;
|
1887
1888
|
};
|
1888
|
-
declare const TabGroup: <T extends string, K extends string>({ tabs, vertical, activeTabKey, onTabChange, tabTheme, wide, compact, tabSpacing, isMobile, htmlElementId, configurationItemInfo, ...props }: TabGroupProps<T, K>) => JSX.Element;
|
1889
|
+
declare const TabGroup: <T extends string, K extends string>({ tabs, vertical, activeTabKey, onTabChange, tabTheme, wide, compact, tabSpacing, isMobile, htmlElementId, menuIconColor, configurationItemInfo, ...props }: TabGroupProps<T, K>) => JSX.Element;
|
1889
1890
|
|
1890
1891
|
declare type FieldSectionProps<T extends object> = {
|
1891
1892
|
label: string;
|
@@ -1898,8 +1899,9 @@ declare const FieldSection: <T extends object>({ fields, label, isEditMode, cont
|
|
1898
1899
|
declare type MenuNavigationProps<T> = {
|
1899
1900
|
menuConfig: MenuItemsProps<T>;
|
1900
1901
|
customIconType?: IconNames$2;
|
1902
|
+
menuIconColor?: string;
|
1901
1903
|
};
|
1902
|
-
declare const MenuNavigation: <T extends string | number>({ menuConfig, customIconType, }: MenuNavigationProps<T>) => JSX.Element;
|
1904
|
+
declare const MenuNavigation: <T extends string | number>({ menuConfig, customIconType, menuIconColor, }: MenuNavigationProps<T>) => JSX.Element;
|
1903
1905
|
declare const CaretIconWrapper: styled_components.StyledComponent<"div", styled_components.DefaultTheme, {
|
1904
1906
|
isOpen: boolean;
|
1905
1907
|
}, never>;
|
package/package.json
CHANGED
@@ -1,12 +1,12 @@
|
|
1
1
|
{
|
2
2
|
"name": "@zealicsolutions/web-ui",
|
3
|
-
"version": "0.4.
|
3
|
+
"version": "0.4.94",
|
4
4
|
"testVersion": "0.3.266",
|
5
5
|
"repository": {
|
6
6
|
"type": "git",
|
7
7
|
"url": "git+ssh://git@bitbucket.org/Zealic_Solutions/zeal-ui-web.git"
|
8
8
|
},
|
9
|
-
"author": "
|
9
|
+
"author": "Zealic Helth_Solutions",
|
10
10
|
"license": "UNLICENSED",
|
11
11
|
"main": "./dist/cjs/index.js",
|
12
12
|
"module": "./dist/esm/index.js",
|