@codezee/sixtify-brahma 0.2.308 → 0.2.310

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@codezee/sixtify-brahma",
3
- "version": "0.2.308",
3
+ "version": "0.2.310",
4
4
  "repository": {
5
5
  "type": "git",
6
6
  "url": "git+https://github.com/hardikranpariya/sixtify-brahma.git"
@@ -0,0 +1,8 @@
1
+ import type { StackProps } from "@mui/material/Stack";
2
+ import type { PropsWithChildren } from "react";
3
+ type BreadcrumbButtonWrapperProps = PropsWithChildren<StackProps> & {
4
+ breakpoint?: "xs" | "sm" | "md" | "lg" | "xl";
5
+ };
6
+ export declare const BreadcrumbButtonWrapper: ({ children, breakpoint, ...props }: BreadcrumbButtonWrapperProps) => import("react/jsx-runtime").JSX.Element;
7
+ export {};
8
+ //# sourceMappingURL=BreadcrumbButtonWrapper.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"BreadcrumbButtonWrapper.d.ts","sourceRoot":"","sources":["../../src/Breadcrumbs/BreadcrumbButtonWrapper.tsx"],"names":[],"mappings":"AAEA,OAAO,KAAK,EAAE,UAAU,EAAE,MAAM,qBAAqB,CAAC;AACtD,OAAO,KAAK,EAAE,iBAAiB,EAAE,MAAM,OAAO,CAAC;AAE/C,KAAK,4BAA4B,GAAG,iBAAiB,CAAC,UAAU,CAAC,GAAG;IAClE,UAAU,CAAC,EAAE,IAAI,GAAG,IAAI,GAAG,IAAI,GAAG,IAAI,GAAG,IAAI,CAAC;CAC/C,CAAC;AAEF,eAAO,MAAM,uBAAuB,GAAI,oCAIrC,4BAA4B,4CAyB9B,CAAC"}
@@ -1,2 +1,3 @@
1
+ export * from "./BreadcrumbButtonWrapper";
1
2
  export * from "./Breadcrumbs";
2
3
  //# sourceMappingURL=index.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../src/Breadcrumbs/index.ts"],"names":[],"mappings":"AAAA,cAAc,eAAe,CAAC"}
1
+ {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../src/Breadcrumbs/index.ts"],"names":[],"mappings":"AAAA,cAAc,2BAA2B,CAAC;AAC1C,cAAc,eAAe,CAAC"}
@@ -0,0 +1,15 @@
1
+ import { type ReactNode } from "react";
2
+ import { type OnAction } from "../utils";
3
+ import { type ButtonProps } from "./Button";
4
+ type ButtonLayoutProviderProps = {
5
+ isLabelCollapsed?: boolean;
6
+ label: string;
7
+ icon?: ReactNode;
8
+ shortcutKey?: string;
9
+ enableKeyboardShortcut?: boolean;
10
+ onClick?: OnAction;
11
+ isIconVisible?: boolean;
12
+ } & Omit<ButtonProps, "onClick">;
13
+ export declare const ButtonLayoutProvider: import("react").ForwardRefExoticComponent<Omit<ButtonLayoutProviderProps, "ref"> & import("react").RefAttributes<HTMLButtonElement>>;
14
+ export {};
15
+ //# sourceMappingURL=ButtonLayoutProvider.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"ButtonLayoutProvider.d.ts","sourceRoot":"","sources":["../../src/Button/ButtonLayoutProvider.tsx"],"names":[],"mappings":"AACA,OAAO,EAAc,KAAK,SAAS,EAAE,MAAM,OAAO,CAAC;AAEnD,OAAO,EAAoB,KAAK,QAAQ,EAAE,MAAM,UAAU,CAAC;AAE3D,OAAO,EAAU,KAAK,WAAW,EAAE,MAAM,UAAU,CAAC;AAEpD,KAAK,yBAAyB,GAAG;IAC/B,gBAAgB,CAAC,EAAE,OAAO,CAAC;IAC3B,KAAK,EAAE,MAAM,CAAC;IACd,IAAI,CAAC,EAAE,SAAS,CAAC;IACjB,WAAW,CAAC,EAAE,MAAM,CAAC;IACrB,sBAAsB,CAAC,EAAE,OAAO,CAAC;IACjC,OAAO,CAAC,EAAE,QAAQ,CAAC;IACnB,aAAa,CAAC,EAAE,OAAO,CAAC;CACzB,GAAG,IAAI,CAAC,WAAW,EAAE,SAAS,CAAC,CAAC;AAEjC,eAAO,MAAM,oBAAoB,sIAmDhC,CAAC"}
@@ -1,5 +1,6 @@
1
1
  export * from "./ActionButton";
2
2
  export * from "./Button";
3
3
  export * from "./ButtonGroup";
4
+ export * from "./ButtonLayoutProvider";
4
5
  export * from "./SplitButton";
5
6
  //# sourceMappingURL=index.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../src/Button/index.ts"],"names":[],"mappings":"AAAA,cAAc,gBAAgB,CAAC;AAC/B,cAAc,UAAU,CAAC;AACzB,cAAc,eAAe,CAAC;AAC9B,cAAc,eAAe,CAAC"}
1
+ {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../src/Button/index.ts"],"names":[],"mappings":"AAAA,cAAc,gBAAgB,CAAC;AAC/B,cAAc,UAAU,CAAC;AACzB,cAAc,eAAe,CAAC;AAC9B,cAAc,wBAAwB,CAAC;AACvC,cAAc,eAAe,CAAC"}