@mdtl/uikit 0.0.30 → 0.0.32
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/CustomSwitch/CustomSwitch.d.ts +1 -0
- package/dist/components/ExpandableText/ExpandableText.d.ts +7 -0
- package/dist/components/Menu/HierarchicalArrow.d.ts +2 -2
- package/dist/components/Menu/HierarchicalMenu.d.ts +2 -2
- package/dist/components/Menu/Menu.d.ts +1 -2
- package/dist/components/Menu/MenuItem.d.ts +2 -2
- package/dist/components/Toolbar/Toolbar.d.ts +1 -2
- package/dist/index.d.ts +6 -0
- package/dist/uikit.js +7196 -6117
- package/package.json +1 -1
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export declare const CustomSwitch: import('@emotion/styled').StyledComponent<import('@mui/material').SwitchProps & import('@mui/system').MUIStyledCommonProps<import('@mui/material').Theme>, {}, {}>;
|
|
@@ -3,5 +3,5 @@ import { MenuMutualProps } from './interfaces';
|
|
|
3
3
|
interface IHierarchicalArrowProps extends MenuMutualProps {
|
|
4
4
|
isHierarchical: boolean;
|
|
5
5
|
}
|
|
6
|
-
declare const HierarchicalArrow: FC<IHierarchicalArrowProps>;
|
|
7
|
-
export
|
|
6
|
+
export declare const HierarchicalArrow: FC<IHierarchicalArrowProps>;
|
|
7
|
+
export {};
|
|
@@ -16,5 +16,5 @@ interface IHierarchicalMenuProps extends MenuMutualProps {
|
|
|
16
16
|
*/
|
|
17
17
|
clickCallback: (value: NodeWithOptionalPayload) => void;
|
|
18
18
|
}
|
|
19
|
-
declare const HierarchicalMenu: FC<IHierarchicalMenuProps>;
|
|
20
|
-
export
|
|
19
|
+
export declare const HierarchicalMenu: FC<IHierarchicalMenuProps>;
|
|
20
|
+
export {};
|
|
@@ -9,5 +9,4 @@ export interface IMenuComponentProps extends MenuMutualProps {
|
|
|
9
9
|
setCurrentItemInfo?: (value: JSX.Element | null) => void;
|
|
10
10
|
setOpenInfo?: (value: boolean) => void;
|
|
11
11
|
}
|
|
12
|
-
declare const
|
|
13
|
-
export default MenuComponent;
|
|
12
|
+
export declare const Menu: FC<IMenuComponentProps>;
|
|
@@ -25,5 +25,5 @@ interface IMenuItemComponentProps extends MenuMutualProps {
|
|
|
25
25
|
*/
|
|
26
26
|
nestedSelectionElement?: TItemActionNestedSelectionElement;
|
|
27
27
|
}
|
|
28
|
-
declare const MenuItemComponent: FC<IMenuItemComponentProps>;
|
|
29
|
-
export
|
|
28
|
+
export declare const MenuItemComponent: FC<IMenuItemComponentProps>;
|
|
29
|
+
export {};
|
package/dist/index.d.ts
CHANGED
|
@@ -9,4 +9,10 @@ export { StackPanel } from './components/StackPanel/StackPanel';
|
|
|
9
9
|
export { DefaultHeaderTemplate } from './components/StackPanel/DefaultHeaderTemplate';
|
|
10
10
|
export { Sections } from './components/StackPanel/Sections';
|
|
11
11
|
export * from './components/StackPanel/interfaces';
|
|
12
|
+
export { Toolbar } from './components/Toolbar/Toolbar';
|
|
13
|
+
export * from './components/Toolbar/interfaces';
|
|
14
|
+
export { Menu } from './components/Menu/Menu';
|
|
15
|
+
export * from './components/Menu/interfaces';
|
|
16
|
+
export { ExpandableText } from './components/ExpandableText/ExpandableText';
|
|
17
|
+
export { CustomSwitch } from './components/CustomSwitch/CustomSwitch';
|
|
12
18
|
export { generateGuid } from './utils/generateGuid';
|