elseware-ui 2.3.1 → 2.4.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/build/components/navigation/header-nav/HeaderNavItem.d.ts +1 -1
- package/build/components/navigation/header-nav/HeaderNavItemTitle.d.ts +1 -1
- package/build/components/navigation/menu/MenuGroup.d.ts +1 -1
- package/build/components/navigation/menu/MenuItem.d.ts +1 -1
- package/build/components/navigation/menu/MenuItemTitle.d.ts +1 -1
- package/build/components/surfaces/accordion/Accordion.d.ts +2 -1
- package/build/index.es.js +123 -111
- package/build/index.js +123 -111
- package/package.json +1 -1
- package/build/components/data-display/typography/link/Link.d.ts +0 -13
- package/build/components/general/header-navbar/HeaderNavbar.d.ts +0 -9
- package/build/components/general/sidebar/SidebarToggler.d.ts +0 -5
- package/build/components/layout/layout/Sider.d.ts +0 -9
- package/build/utils/hooks/components/useSider.d.ts +0 -7
- package/build/utils/useClickOutside.d.ts +0 -5
package/package.json
CHANGED
|
@@ -1,13 +0,0 @@
|
|
|
1
|
-
import { TextVariant, Decoration, Target } from "../../../../data/enums";
|
|
2
|
-
export interface LinkProps {
|
|
3
|
-
children?: string;
|
|
4
|
-
href?: string;
|
|
5
|
-
target?: keyof typeof Target;
|
|
6
|
-
variant?: keyof typeof TextVariant;
|
|
7
|
-
styles?: string;
|
|
8
|
-
decoration?: keyof typeof Decoration;
|
|
9
|
-
bold?: boolean;
|
|
10
|
-
italic?: boolean;
|
|
11
|
-
onClick?: () => void;
|
|
12
|
-
}
|
|
13
|
-
export declare const Link: ({ children, href, target, variant, decoration, bold, italic, styles, onClick, }: LinkProps) => import("react/jsx-runtime").JSX.Element;
|
|
@@ -1,9 +0,0 @@
|
|
|
1
|
-
/// <reference types="@types/react" />
|
|
2
|
-
import { ReactNode } from "react";
|
|
3
|
-
export interface HeaderNavbarProps {
|
|
4
|
-
left?: ReactNode;
|
|
5
|
-
middle?: ReactNode;
|
|
6
|
-
right?: ReactNode;
|
|
7
|
-
}
|
|
8
|
-
declare function HeaderNavbar({ left, middle, right }: HeaderNavbarProps): import("react/jsx-runtime").JSX.Element;
|
|
9
|
-
export default HeaderNavbar;
|
|
@@ -1,9 +0,0 @@
|
|
|
1
|
-
/// <reference types="@types/react" />
|
|
2
|
-
import React from "react";
|
|
3
|
-
export interface SiderProps {
|
|
4
|
-
children?: React.ReactNode;
|
|
5
|
-
visibility: boolean;
|
|
6
|
-
isMobile: boolean;
|
|
7
|
-
handleClose: () => void;
|
|
8
|
-
}
|
|
9
|
-
export declare const Sider: ({ children, visibility, isMobile, handleClose }: SiderProps) => import("react/jsx-runtime").JSX.Element;
|