@lglab/compose-ui 0.18.0 → 0.20.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.
@@ -0,0 +1,9 @@
1
+ import * as React from 'react';
2
+ type ArrowSvgProps = React.ComponentProps<'svg'> & {
3
+ fillClassName?: string;
4
+ strokeClassName?: string;
5
+ };
6
+ declare function ArrowSvg({ fillClassName, strokeClassName, className, ...props }: ArrowSvgProps): import("react/jsx-runtime").JSX.Element;
7
+ export { ArrowSvg };
8
+ export type { ArrowSvgProps };
9
+ //# sourceMappingURL=arrow-svg.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"arrow-svg.d.ts","sourceRoot":"","sources":["../../src/lib/arrow-svg.tsx"],"names":[],"mappings":"AAEA,OAAO,KAAK,KAAK,MAAM,OAAO,CAAA;AAI9B,KAAK,aAAa,GAAG,KAAK,CAAC,cAAc,CAAC,KAAK,CAAC,GAAG;IACjD,aAAa,CAAC,EAAE,MAAM,CAAA;IACtB,eAAe,CAAC,EAAE,MAAM,CAAA;CACzB,CAAA;AAED,iBAAS,QAAQ,CAAC,EAChB,aAAiC,EACjC,eAA+B,EAC/B,SAAS,EACT,GAAG,KAAK,EACT,EAAE,aAAa,2CAoBf;AAED,OAAO,EAAE,QAAQ,EAAE,CAAA;AACnB,YAAY,EAAE,aAAa,EAAE,CAAA"}
@@ -0,0 +1,9 @@
1
+ export type TooltipVariant = 'default' | 'secondary' | 'outline';
2
+ export declare const tooltipPopupVariants: (props?: ({
3
+ variant?: "default" | "secondary" | "outline" | null | undefined;
4
+ } & import('class-variance-authority/types').ClassProp) | undefined) => string;
5
+ export declare const tooltipArrowVariants: Record<TooltipVariant, {
6
+ fill: string;
7
+ stroke: string;
8
+ }>;
9
+ //# sourceMappingURL=tooltip-variants.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"tooltip-variants.d.ts","sourceRoot":"","sources":["../../src/lib/tooltip-variants.ts"],"names":[],"mappings":"AAEA,MAAM,MAAM,cAAc,GAAG,SAAS,GAAG,WAAW,GAAG,SAAS,CAAA;AAEhE,eAAO,MAAM,oBAAoB;;8EAqBhC,CAAA;AAED,eAAO,MAAM,oBAAoB,EAAE,MAAM,CACvC,cAAc,EACd;IAAE,IAAI,EAAE,MAAM,CAAC;IAAC,MAAM,EAAE,MAAM,CAAA;CAAE,CAcjC,CAAA"}
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@lglab/compose-ui",
3
- "version": "0.18.0",
3
+ "version": "0.20.0",
4
4
  "description": "A collection of components built with Base UI & Tailwind CSS",
5
5
  "author": "LGLab",
6
6
  "license": "MIT",
@@ -45,7 +45,8 @@
45
45
  "tailwindcss": "^4.0.0"
46
46
  },
47
47
  "devDependencies": {
48
- "@types/node": "^25.0.8",
48
+ "@base-ui/react": "^1.1.0",
49
+ "@types/node": "^25.0.9",
49
50
  "@types/react": "^19.2.8",
50
51
  "@types/react-dom": "^19.2.3",
51
52
  "@vitejs/plugin-react": "^5.1.2",