mainstack-design-system 0.2.7 → 0.2.8

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.
@@ -1,10 +1,12 @@
1
1
  /** @format */
2
2
  /// <reference types="react" />
3
+ import { PlacementWithLogical } from "@chakra-ui/react";
3
4
  export interface ICustomTooltip {
4
5
  triggerComponent: JSX.Element;
5
6
  body: string;
6
7
  label: string;
7
8
  hasSpecialArrow?: boolean;
9
+ placement?: PlacementWithLogical;
8
10
  }
9
- declare const ClickTooltip: ({ label, body, hasSpecialArrow, triggerComponent, ...props }: ICustomTooltip) => import("react/jsx-runtime").JSX.Element;
11
+ declare const ClickTooltip: ({ label, body, hasSpecialArrow, triggerComponent, placement, ...props }: ICustomTooltip) => import("react/jsx-runtime").JSX.Element;
10
12
  export default ClickTooltip;
@@ -0,0 +1,4 @@
1
+ /** @format */
2
+ import { IconProps } from "@chakra-ui/icons";
3
+ declare const LabelIcon: (props: IconProps) => import("react/jsx-runtime").JSX.Element;
4
+ export default LabelIcon;
@@ -172,6 +172,7 @@ export { default as InsertChartIcon } from "./InsertChartIcon";
172
172
  export { default as InventoryIcon } from "./InventoryIcon";
173
173
  export { default as IosShareIcon } from "./IosShareIcon";
174
174
  export { default as KeyboardBackspaceIcon } from "./KeyboardBackspaceIcon";
175
+ export { default as LabelIcon } from "./LabelIcon";
175
176
  export { default as LanguageIcon } from "./LanguageIcon";
176
177
  export { default as LibraryMusicIcon } from "./LibraryMusicIcon";
177
178
  export { default as LinkIcon } from "./LinkIcon";
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "mainstack-design-system",
3
- "version": "0.2.7",
3
+ "version": "0.2.8",
4
4
  "type": "module",
5
5
  "main": "build/mainstack-design-system.js",
6
6
  "types": "build/src/index.d.ts",