@ztwoint/z-ui 0.1.143 → 0.1.145

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.
@@ -0,0 +1,8 @@
1
+ import { SVGProps } from 'react';
2
+ type IconProps = SVGProps<SVGSVGElement> & {
3
+ secondaryfill?: string;
4
+ strokewidth?: number;
5
+ title?: string;
6
+ };
7
+ declare function ArrowsThroughLineY({ fill, secondaryfill: _secondaryfill, strokewidth: _strokewidth, title, ...props }: IconProps): import("react/jsx-runtime").JSX.Element;
8
+ export default ArrowsThroughLineY;
@@ -15,4 +15,5 @@ export { default as CirclesIcon } from '../assets/icons/circles-icon';
15
15
  export { default as DatabaseCopy } from '../assets/icons/database-copy';
16
16
  export { default as WindowLeftCopy } from '../assets/icons/window-left-copy';
17
17
  export { default as SidebarLeftShowCopy } from '../assets/icons/sidebar-left-show-copy';
18
+ export { default as ArrowsThroughLineY } from '../assets/icons/arrows-through-line-y';
18
19
  export { SIDEBAR_WIDTH, SIDEBAR_WIDTH_COLLAPSED } from './constants';
@@ -2,10 +2,14 @@ import * as React from 'react';
2
2
  export interface Z2SideNavBarContextType {
3
3
  isCollapsed: boolean;
4
4
  toggleCollapsed: () => void;
5
+ enableEdit?: boolean;
6
+ onReorderClick?: () => void;
5
7
  }
6
8
  export interface Z2SideNavBarProviderProps {
7
9
  children: React.ReactNode;
8
10
  defaultCollapsed?: boolean;
11
+ enableEdit?: boolean;
12
+ onReorderClick?: () => void;
9
13
  style?: React.CSSProperties;
10
14
  className?: string;
11
15
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@ztwoint/z-ui",
3
- "version": "0.1.143",
3
+ "version": "0.1.145",
4
4
  "type": "module",
5
5
  "main": "./dist/index.js",
6
6
  "module": "./dist/index.js",