@lglab/compose-ui 0.17.0 → 0.19.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.
- package/dist/components/menubar.d.ts +112 -0
- package/dist/components/menubar.d.ts.map +1 -0
- package/dist/components/slider.d.ts +35 -0
- package/dist/components/slider.d.ts.map +1 -0
- package/dist/components/toggle-group.d.ts +3 -3
- package/dist/components/toggle-group.d.ts.map +1 -1
- package/dist/components/toggle.d.ts +3 -3
- package/dist/components/toggle.d.ts.map +1 -1
- package/dist/index.d.ts +5 -1
- package/dist/index.d.ts.map +1 -1
- package/dist/index.es.js +863 -630
- package/dist/lib/control-variants.d.ts +7 -0
- package/dist/lib/control-variants.d.ts.map +1 -0
- package/package.json +4 -4
- package/dist/lib/toggle-variants.d.ts +0 -7
- package/dist/lib/toggle-variants.d.ts.map +0 -1
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
export type ControlSize = 'sm' | 'default' | 'lg' | 'icon' | 'icon-sm' | 'icon-lg';
|
|
2
|
+
export type ControlVariant = 'default' | 'ghost';
|
|
3
|
+
export declare const controlVariants: (props?: ({
|
|
4
|
+
variant?: "default" | "ghost" | null | undefined;
|
|
5
|
+
size?: "default" | "sm" | "lg" | "icon" | "icon-sm" | "icon-lg" | null | undefined;
|
|
6
|
+
} & import('class-variance-authority/types').ClassProp) | undefined) => string;
|
|
7
|
+
//# sourceMappingURL=control-variants.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"control-variants.d.ts","sourceRoot":"","sources":["../../src/lib/control-variants.ts"],"names":[],"mappings":"AAEA,MAAM,MAAM,WAAW,GAAG,IAAI,GAAG,SAAS,GAAG,IAAI,GAAG,MAAM,GAAG,SAAS,GAAG,SAAS,CAAA;AAClF,MAAM,MAAM,cAAc,GAAG,SAAS,GAAG,OAAO,CAAA;AAEhD,eAAO,MAAM,eAAe;;;8EAgC3B,CAAA"}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@lglab/compose-ui",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.19.0",
|
|
4
4
|
"description": "A collection of components built with Base UI & Tailwind CSS",
|
|
5
5
|
"author": "LGLab",
|
|
6
6
|
"license": "MIT",
|
|
@@ -45,8 +45,8 @@
|
|
|
45
45
|
"tailwindcss": "^4.0.0"
|
|
46
46
|
},
|
|
47
47
|
"devDependencies": {
|
|
48
|
-
"@types/node": "^25.0.
|
|
49
|
-
"@types/react": "^19.2.
|
|
48
|
+
"@types/node": "^25.0.8",
|
|
49
|
+
"@types/react": "^19.2.8",
|
|
50
50
|
"@types/react-dom": "^19.2.3",
|
|
51
51
|
"@vitejs/plugin-react": "^5.1.2",
|
|
52
52
|
"globals": "^17.0.0",
|
|
@@ -54,7 +54,7 @@
|
|
|
54
54
|
"react-dom": "^19.2.3",
|
|
55
55
|
"rollup-preserve-directives": "^1.1.3",
|
|
56
56
|
"typescript": "~5.9.3",
|
|
57
|
-
"typescript-eslint": "^8.
|
|
57
|
+
"typescript-eslint": "^8.53.0",
|
|
58
58
|
"vite": "^7.3.1",
|
|
59
59
|
"vite-plugin-dts": "^4.5.4",
|
|
60
60
|
"vite-plugin-static-copy": "^3.1.4"
|
|
@@ -1,7 +0,0 @@
|
|
|
1
|
-
export type ToggleSize = 'sm' | 'default' | 'lg' | 'icon' | 'icon-sm' | 'icon-lg';
|
|
2
|
-
export type ToggleVariant = 'default' | 'ghost';
|
|
3
|
-
export declare const toggleVariants: (props?: ({
|
|
4
|
-
variant?: "default" | "ghost" | null | undefined;
|
|
5
|
-
size?: "default" | "sm" | "lg" | "icon" | "icon-sm" | "icon-lg" | null | undefined;
|
|
6
|
-
} & import('class-variance-authority/types').ClassProp) | undefined) => string;
|
|
7
|
-
//# sourceMappingURL=toggle-variants.d.ts.map
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"toggle-variants.d.ts","sourceRoot":"","sources":["../../src/lib/toggle-variants.ts"],"names":[],"mappings":"AAEA,MAAM,MAAM,UAAU,GAAG,IAAI,GAAG,SAAS,GAAG,IAAI,GAAG,MAAM,GAAG,SAAS,GAAG,SAAS,CAAA;AACjF,MAAM,MAAM,aAAa,GAAG,SAAS,GAAG,OAAO,CAAA;AAE/C,eAAO,MAAM,cAAc;;;8EA+B1B,CAAA"}
|