@abdellatifui/react 3.1.57 → 3.1.59
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/nextgen.d.ts +2 -4
- package/dist/nextgen.js +591 -591
- package/dist/types/components/Buttons/Button.d.ts +17 -0
- package/dist/types/components/Buttons/Button.d.ts.map +1 -0
- package/dist/types/stories/Help/tooltip.stories.d.ts +8 -0
- package/dist/types/stories/Help/tooltip.stories.d.ts.map +1 -0
- package/package.json +1 -1
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
import React from 'react';
|
|
2
|
+
import '../global.css';
|
|
3
|
+
import { type VariantProps } from "class-variance-authority";
|
|
4
|
+
import './styles.css';
|
|
5
|
+
export declare const StyledTooltip: React.ComponentType<any>;
|
|
6
|
+
declare const extrabuttonVariants: (props?: {
|
|
7
|
+
variant?: "secondary" | "ghost" | "primary" | "transparent" | "danger" | "danger2" | "green" | "dangerghost";
|
|
8
|
+
border?: boolean | "ghost";
|
|
9
|
+
disable?: boolean;
|
|
10
|
+
hover?: boolean | "ghost";
|
|
11
|
+
} & import("class-variance-authority/types").ClassProp) => string;
|
|
12
|
+
export interface ButtonProps extends React.ButtonHTMLAttributes<HTMLButtonElement>, VariantProps<typeof extrabuttonVariants> {
|
|
13
|
+
asChild?: boolean;
|
|
14
|
+
}
|
|
15
|
+
export declare const TestButton: React.MemoExoticComponent<React.ForwardRefExoticComponent<React.RefAttributes<unknown>>>;
|
|
16
|
+
export {};
|
|
17
|
+
//# sourceMappingURL=Button.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"Button.d.ts","sourceRoot":"","sources":["../../../../src/components/Buttons/Button.tsx"],"names":[],"mappings":"AACA,OAAO,KAA+D,MAAM,OAAO,CAAA;AAEnF,OAAO,eAAe,CAAA;AACtB,OAAO,EAAO,KAAK,YAAY,EAAE,MAAM,0BAA0B,CAAA;AAIjE,OAAO,cAAc,CAAA;AAMrB,eAAO,MAAM,aAAa,EAAE,KAAK,CAAC,aAAa,CAAC,GAAG,CAK9C,CAAC;AAEN,QAAA,MAAM,mBAAmB;;;;;iEAgCxB,CAAA;AAED,MAAM,WAAW,WACf,SAAQ,KAAK,CAAC,oBAAoB,CAAC,iBAAiB,CAAC,EACnD,YAAY,CAAC,OAAO,mBAAmB,CAAC;IAC1C,OAAO,CAAC,EAAE,OAAO,CAAA;CAClB;AA6FD,eAAO,MAAM,UAAU,0FAA4B,CAAA"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"tooltip.stories.d.ts","sourceRoot":"","sources":["../../../../src/stories/Help/tooltip.stories.tsx"],"names":[],"mappings":"AACA,OAAO,KAAqC,MAAM,OAAO,CAAC;;;;;AAG1D,wBAGC;AAkBD,eAAO,MAAM,OAAO,KAAoB,CAAC"}
|