@flikk/ui 1.0.0-beta.5 → 1.0.0-beta.6
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/ai/PromptInput/PromptInput.js +123 -4
- package/dist/components/forms/FileUpload/FileUpload.js +78 -0
- package/dist/components/forms/TimePicker/TimePickerContent.js +78 -1
- package/dist/components/forms/index.js +78 -0
- package/dist/components/layout/FormLayout/FormLayoutBody.js +79 -1
- package/dist/index.js +197 -191
- package/dist/styles.css +1 -1
- package/package.json +1 -1
- package/src/global.scss +1 -2
- package/src/theme-plugin.css +9 -0
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@flikk/ui",
|
|
3
|
-
"version": "1.0.0-beta.
|
|
3
|
+
"version": "1.0.0-beta.6",
|
|
4
4
|
"description": "A modern React component library built with TypeScript, Tailwind CSS v4, and Framer Motion. Follows the shadcn philosophy with complete className override support.",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "dist/index.js",
|
package/src/global.scss
CHANGED
|
@@ -1,8 +1,7 @@
|
|
|
1
1
|
/* src/global.css */
|
|
2
2
|
/* NOTE: Tailwind imports are in tailwind-config.css to prevent Sass mangling */
|
|
3
|
+
/* NOTE: Font @import url() moved to tailwind-config.css to fix CSS ordering warnings */
|
|
3
4
|
|
|
4
|
-
@import url("https://fonts.googleapis.com/css2?family=Geist:wght@100..900&display=swap");
|
|
5
|
-
@import url("https://fonts.googleapis.com/css2?family=Birthstone&display=swap");
|
|
6
5
|
@import "./styles/theme.css";
|
|
7
6
|
|
|
8
7
|
/* Glass effect */
|
package/src/theme-plugin.css
CHANGED