@codefast/ui 0.2.12 → 0.2.13
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/CHANGELOG.md +13 -0
- package/dist/components/alert-dialog.d.cts +1 -1
- package/dist/components/alert-dialog.d.ts +1 -1
- package/dist/components/breadcrumb.d.cts +1 -1
- package/dist/components/breadcrumb.d.ts +1 -1
- package/dist/components/chart.d.cts +1 -1
- package/dist/components/chart.d.ts +1 -1
- package/dist/components/command.d.cts +1 -1
- package/dist/components/command.d.ts +1 -1
- package/dist/components/context-menu.d.cts +1 -1
- package/dist/components/context-menu.d.ts +1 -1
- package/dist/components/data-table.d.cts +1 -1
- package/dist/components/data-table.d.ts +1 -1
- package/dist/components/dialog.d.cts +1 -1
- package/dist/components/dialog.d.ts +1 -1
- package/dist/components/drawer.d.cts +1 -1
- package/dist/components/drawer.d.ts +1 -1
- package/dist/components/dropdown-menu.d.cts +1 -1
- package/dist/components/dropdown-menu.d.ts +1 -1
- package/dist/components/form.d.cts +2 -2
- package/dist/components/form.d.ts +2 -2
- package/dist/components/hover-card.d.cts +1 -1
- package/dist/components/hover-card.d.ts +1 -1
- package/dist/components/input-otp.d.cts +1 -1
- package/dist/components/input-otp.d.ts +1 -1
- package/dist/components/menubar.d.cts +1 -1
- package/dist/components/menubar.d.ts +1 -1
- package/dist/components/pagination.d.cts +1 -1
- package/dist/components/pagination.d.ts +1 -1
- package/dist/components/popover.d.cts +1 -1
- package/dist/components/popover.d.ts +1 -1
- package/dist/components/select.d.cts +1 -1
- package/dist/components/select.d.ts +1 -1
- package/dist/components/sheet.d.cts +1 -1
- package/dist/components/sheet.d.ts +1 -1
- package/dist/components/table.d.cts +1 -1
- package/dist/components/table.d.ts +1 -1
- package/dist/components/tooltip.d.cts +1 -1
- package/dist/components/tooltip.d.ts +1 -1
- package/dist/tailwindcss/animate.cjs.map +1 -1
- package/dist/tailwindcss/animate.js.map +1 -1
- package/package.json +27 -27
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,18 @@
|
|
|
1
1
|
# @codefast/ui
|
|
2
2
|
|
|
3
|
+
## 0.2.13
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- [`d777c70`](https://github.com/codefastlabs/codefast/commit/d777c70b7a3dcbe5a68da9fe4d23e944c207b47d) Thanks [@thevuong](https://github.com/thevuong)! - update package dependencies
|
|
8
|
+
|
|
9
|
+
- Updated dependencies [[`d777c70`](https://github.com/codefastlabs/codefast/commit/d777c70b7a3dcbe5a68da9fe4d23e944c207b47d)]:
|
|
10
|
+
- @codefast-ui/checkbox-group@0.2.13
|
|
11
|
+
- @codefast-ui/number-input@0.2.13
|
|
12
|
+
- @codefast-ui/day-picker@0.2.13
|
|
13
|
+
- @codefast-ui/input@0.2.13
|
|
14
|
+
- @codefast/hooks@0.2.13
|
|
15
|
+
|
|
3
16
|
## 0.2.12
|
|
4
17
|
|
|
5
18
|
### Patch Changes
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import * as react from 'react';
|
|
2
|
-
import {
|
|
2
|
+
import { ComponentPropsWithoutRef, HTMLAttributes, ComponentProps, JSX } from 'react';
|
|
3
3
|
import * as AlertDialogPrimitive from '@radix-ui/react-alert-dialog';
|
|
4
4
|
import { ButtonVariantsProps } from '../variants/button.variants.cjs';
|
|
5
5
|
import 'tailwind-variants';
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import * as react from 'react';
|
|
2
|
-
import {
|
|
2
|
+
import { ComponentPropsWithoutRef, HTMLAttributes, ComponentProps, JSX } from 'react';
|
|
3
3
|
import * as AlertDialogPrimitive from '@radix-ui/react-alert-dialog';
|
|
4
4
|
import { ButtonVariantsProps } from '../variants/button.variants.js';
|
|
5
5
|
import 'tailwind-variants';
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import * as react from 'react';
|
|
2
|
-
import { HTMLAttributes,
|
|
2
|
+
import { HTMLAttributes, LiHTMLAttributes, AnchorHTMLAttributes, OlHTMLAttributes, ReactNode, JSX } from 'react';
|
|
3
3
|
|
|
4
4
|
interface BreadcrumbProps extends HTMLAttributes<HTMLElement> {
|
|
5
5
|
separator?: ReactNode;
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import * as react from 'react';
|
|
2
|
-
import { HTMLAttributes,
|
|
2
|
+
import { HTMLAttributes, LiHTMLAttributes, AnchorHTMLAttributes, OlHTMLAttributes, ReactNode, JSX } from 'react';
|
|
3
3
|
|
|
4
4
|
interface BreadcrumbProps extends HTMLAttributes<HTMLElement> {
|
|
5
5
|
separator?: ReactNode;
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import * as react from 'react';
|
|
2
|
-
import { ComponentPropsWithoutRef, HTMLAttributes,
|
|
2
|
+
import { ComponentProps, ComponentPropsWithoutRef, HTMLAttributes, JSX } from 'react';
|
|
3
3
|
import { Command as Command$1 } from 'cmdk';
|
|
4
4
|
import { Dialog } from './dialog.cjs';
|
|
5
5
|
import '@radix-ui/react-dialog';
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import * as react from 'react';
|
|
2
|
-
import { ComponentPropsWithoutRef, HTMLAttributes,
|
|
2
|
+
import { ComponentProps, ComponentPropsWithoutRef, HTMLAttributes, JSX } from 'react';
|
|
3
3
|
import { Command as Command$1 } from 'cmdk';
|
|
4
4
|
import { Dialog } from './dialog.js';
|
|
5
5
|
import '@radix-ui/react-dialog';
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import * as react from 'react';
|
|
2
|
-
import {
|
|
2
|
+
import { ComponentPropsWithoutRef, ComponentProps, HTMLAttributes, JSX } from 'react';
|
|
3
3
|
import * as ContextMenuPrimitive from '@radix-ui/react-context-menu';
|
|
4
4
|
|
|
5
5
|
type ContextMenuProps = ComponentProps<typeof ContextMenuPrimitive.Root>;
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import * as react from 'react';
|
|
2
|
-
import {
|
|
2
|
+
import { ComponentPropsWithoutRef, ComponentProps, HTMLAttributes, JSX } from 'react';
|
|
3
3
|
import * as ContextMenuPrimitive from '@radix-ui/react-context-menu';
|
|
4
4
|
|
|
5
5
|
type ContextMenuProps = ComponentProps<typeof ContextMenuPrimitive.Root>;
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import * as react from 'react';
|
|
2
|
-
import {
|
|
2
|
+
import { HTMLAttributes, ComponentPropsWithoutRef, ComponentProps, JSX } from 'react';
|
|
3
3
|
import * as DialogPrimitive from '@radix-ui/react-dialog';
|
|
4
4
|
import { ButtonVariantsProps } from '../variants/button.variants.cjs';
|
|
5
5
|
import 'tailwind-variants';
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import * as react from 'react';
|
|
2
|
-
import {
|
|
2
|
+
import { HTMLAttributes, ComponentPropsWithoutRef, ComponentProps, JSX } from 'react';
|
|
3
3
|
import * as DialogPrimitive from '@radix-ui/react-dialog';
|
|
4
4
|
import { ButtonVariantsProps } from '../variants/button.variants.js';
|
|
5
5
|
import 'tailwind-variants';
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import * as react from 'react';
|
|
2
|
-
import {
|
|
2
|
+
import { HTMLAttributes, ComponentPropsWithoutRef, ComponentProps, JSX } from 'react';
|
|
3
3
|
import * as DialogPrimitive from '@radix-ui/react-dialog';
|
|
4
4
|
import { Drawer as Drawer$1 } from 'vaul';
|
|
5
5
|
import { ButtonVariantsProps } from '../variants/button.variants.cjs';
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import * as react from 'react';
|
|
2
|
-
import {
|
|
2
|
+
import { HTMLAttributes, ComponentPropsWithoutRef, ComponentProps, JSX } from 'react';
|
|
3
3
|
import * as DialogPrimitive from '@radix-ui/react-dialog';
|
|
4
4
|
import { Drawer as Drawer$1 } from 'vaul';
|
|
5
5
|
import { ButtonVariantsProps } from '../variants/button.variants.js';
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import * as react from 'react';
|
|
2
|
-
import {
|
|
2
|
+
import { ComponentPropsWithoutRef, ComponentProps, HTMLAttributes, JSX } from 'react';
|
|
3
3
|
import * as DropdownMenuPrimitive from '@radix-ui/react-dropdown-menu';
|
|
4
4
|
|
|
5
5
|
type DropdownMenuProps = ComponentProps<typeof DropdownMenuPrimitive.Root>;
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import * as react from 'react';
|
|
2
|
-
import {
|
|
2
|
+
import { ComponentPropsWithoutRef, ComponentProps, HTMLAttributes, JSX } from 'react';
|
|
3
3
|
import * as DropdownMenuPrimitive from '@radix-ui/react-dropdown-menu';
|
|
4
4
|
|
|
5
5
|
type DropdownMenuProps = ComponentProps<typeof DropdownMenuPrimitive.Root>;
|
|
@@ -1,10 +1,10 @@
|
|
|
1
1
|
import * as _radix_ui_react_slot from '@radix-ui/react-slot';
|
|
2
2
|
import { Slot } from '@radix-ui/react-slot';
|
|
3
3
|
import * as react from 'react';
|
|
4
|
-
import {
|
|
4
|
+
import { ComponentPropsWithoutRef, HTMLAttributes, ComponentProps, JSX } from 'react';
|
|
5
5
|
import * as _radix_ui_react_context from '@radix-ui/react-context';
|
|
6
6
|
import * as react_hook_form from 'react-hook-form';
|
|
7
|
-
import {
|
|
7
|
+
import { FieldValues, FieldPath, ControllerProps, FormProvider } from 'react-hook-form';
|
|
8
8
|
import * as LabelPrimitive from '@radix-ui/react-label';
|
|
9
9
|
|
|
10
10
|
type FormProps = ComponentProps<typeof FormProvider>;
|
|
@@ -1,10 +1,10 @@
|
|
|
1
1
|
import * as _radix_ui_react_slot from '@radix-ui/react-slot';
|
|
2
2
|
import { Slot } from '@radix-ui/react-slot';
|
|
3
3
|
import * as react from 'react';
|
|
4
|
-
import {
|
|
4
|
+
import { ComponentPropsWithoutRef, HTMLAttributes, ComponentProps, JSX } from 'react';
|
|
5
5
|
import * as _radix_ui_react_context from '@radix-ui/react-context';
|
|
6
6
|
import * as react_hook_form from 'react-hook-form';
|
|
7
|
-
import {
|
|
7
|
+
import { FieldValues, FieldPath, ControllerProps, FormProvider } from 'react-hook-form';
|
|
8
8
|
import * as LabelPrimitive from '@radix-ui/react-label';
|
|
9
9
|
|
|
10
10
|
type FormProps = ComponentProps<typeof FormProvider>;
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import * as react from 'react';
|
|
2
|
-
import {
|
|
2
|
+
import { ComponentPropsWithoutRef, ComponentProps } from 'react';
|
|
3
3
|
import * as HoverCardPrimitive from '@radix-ui/react-hover-card';
|
|
4
4
|
|
|
5
5
|
type HoverCardProps = ComponentProps<typeof HoverCardPrimitive.Root>;
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import * as react from 'react';
|
|
2
|
-
import {
|
|
2
|
+
import { ComponentPropsWithoutRef, ComponentProps } from 'react';
|
|
3
3
|
import * as HoverCardPrimitive from '@radix-ui/react-hover-card';
|
|
4
4
|
|
|
5
5
|
type HoverCardProps = ComponentProps<typeof HoverCardPrimitive.Root>;
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import * as react from 'react';
|
|
2
|
-
import {
|
|
2
|
+
import { HTMLAttributes, ComponentPropsWithoutRef } from 'react';
|
|
3
3
|
import { OTPInput } from 'input-otp';
|
|
4
4
|
export { REGEXP_ONLY_CHARS, REGEXP_ONLY_DIGITS, REGEXP_ONLY_DIGITS_AND_CHARS } from 'input-otp';
|
|
5
5
|
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import * as react from 'react';
|
|
2
|
-
import {
|
|
2
|
+
import { HTMLAttributes, ComponentPropsWithoutRef } from 'react';
|
|
3
3
|
import { OTPInput } from 'input-otp';
|
|
4
4
|
export { REGEXP_ONLY_CHARS, REGEXP_ONLY_DIGITS, REGEXP_ONLY_DIGITS_AND_CHARS } from 'input-otp';
|
|
5
5
|
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import * as react from 'react';
|
|
2
|
-
import {
|
|
2
|
+
import { ComponentPropsWithoutRef, ComponentProps, HTMLAttributes, JSX } from 'react';
|
|
3
3
|
import * as react_jsx_runtime from 'react/jsx-runtime';
|
|
4
4
|
import * as _radix_ui_react_context from '@radix-ui/react-context';
|
|
5
5
|
import * as MenubarPrimitive from '@radix-ui/react-menubar';
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import * as react from 'react';
|
|
2
|
-
import {
|
|
2
|
+
import { ComponentPropsWithoutRef, ComponentProps, HTMLAttributes, JSX } from 'react';
|
|
3
3
|
import * as react_jsx_runtime from 'react/jsx-runtime';
|
|
4
4
|
import * as _radix_ui_react_context from '@radix-ui/react-context';
|
|
5
5
|
import * as MenubarPrimitive from '@radix-ui/react-menubar';
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import * as react from 'react';
|
|
2
|
-
import { HTMLAttributes,
|
|
2
|
+
import { HTMLAttributes, LiHTMLAttributes, AnchorHTMLAttributes, JSX } from 'react';
|
|
3
3
|
import { ButtonVariantsProps } from '../variants/button.variants.cjs';
|
|
4
4
|
import 'tailwind-variants';
|
|
5
5
|
import 'tailwind-variants/dist/config.js';
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import * as react from 'react';
|
|
2
|
-
import { HTMLAttributes,
|
|
2
|
+
import { HTMLAttributes, LiHTMLAttributes, AnchorHTMLAttributes, JSX } from 'react';
|
|
3
3
|
import { ButtonVariantsProps } from '../variants/button.variants.js';
|
|
4
4
|
import 'tailwind-variants';
|
|
5
5
|
import 'tailwind-variants/dist/config.js';
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import * as react from 'react';
|
|
2
|
-
import {
|
|
2
|
+
import { ComponentPropsWithoutRef, ComponentProps } from 'react';
|
|
3
3
|
import * as PopoverPrimitive from '@radix-ui/react-popover';
|
|
4
4
|
|
|
5
5
|
type PopoverProps = ComponentProps<typeof PopoverPrimitive.Root>;
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import * as react from 'react';
|
|
2
|
-
import {
|
|
2
|
+
import { ComponentPropsWithoutRef, ComponentProps } from 'react';
|
|
3
3
|
import * as PopoverPrimitive from '@radix-ui/react-popover';
|
|
4
4
|
|
|
5
5
|
type PopoverProps = ComponentProps<typeof PopoverPrimitive.Root>;
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import * as react from 'react';
|
|
2
|
-
import {
|
|
2
|
+
import { ComponentPropsWithoutRef, ComponentProps } from 'react';
|
|
3
3
|
import * as SelectPrimitive from '@radix-ui/react-select';
|
|
4
4
|
import { ButtonVariantsProps } from '../variants/button.variants.cjs';
|
|
5
5
|
import 'tailwind-variants';
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import * as react from 'react';
|
|
2
|
-
import {
|
|
2
|
+
import { ComponentPropsWithoutRef, ComponentProps } from 'react';
|
|
3
3
|
import * as SelectPrimitive from '@radix-ui/react-select';
|
|
4
4
|
import { ButtonVariantsProps } from '../variants/button.variants.js';
|
|
5
5
|
import 'tailwind-variants';
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import * as react from 'react';
|
|
2
|
-
import {
|
|
2
|
+
import { HTMLAttributes, ComponentPropsWithoutRef, ComponentProps, JSX } from 'react';
|
|
3
3
|
import * as tailwind_variants from 'tailwind-variants';
|
|
4
4
|
import { VariantProps } from 'tailwind-variants';
|
|
5
5
|
import * as tailwind_variants_dist_config_js from 'tailwind-variants/dist/config.js';
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import * as react from 'react';
|
|
2
|
-
import {
|
|
2
|
+
import { HTMLAttributes, ComponentPropsWithoutRef, ComponentProps, JSX } from 'react';
|
|
3
3
|
import * as tailwind_variants from 'tailwind-variants';
|
|
4
4
|
import { VariantProps } from 'tailwind-variants';
|
|
5
5
|
import * as tailwind_variants_dist_config_js from 'tailwind-variants/dist/config.js';
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import * as react from 'react';
|
|
2
|
-
import { HTMLAttributes,
|
|
2
|
+
import { HTMLAttributes, TdHTMLAttributes, ThHTMLAttributes } from 'react';
|
|
3
3
|
|
|
4
4
|
type TableProps = HTMLAttributes<HTMLTableElement>;
|
|
5
5
|
declare const Table: react.ForwardRefExoticComponent<TableProps & react.RefAttributes<HTMLTableElement>>;
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import * as react from 'react';
|
|
2
|
-
import { HTMLAttributes,
|
|
2
|
+
import { HTMLAttributes, TdHTMLAttributes, ThHTMLAttributes } from 'react';
|
|
3
3
|
|
|
4
4
|
type TableProps = HTMLAttributes<HTMLTableElement>;
|
|
5
5
|
declare const Table: react.ForwardRefExoticComponent<TableProps & react.RefAttributes<HTMLTableElement>>;
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import * as react from 'react';
|
|
2
|
-
import {
|
|
2
|
+
import { ComponentPropsWithoutRef, ComponentProps } from 'react';
|
|
3
3
|
import * as TooltipPrimitive from '@radix-ui/react-tooltip';
|
|
4
4
|
|
|
5
5
|
type TooltipProviderProps = ComponentProps<typeof TooltipPrimitive.Provider>;
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import * as react from 'react';
|
|
2
|
-
import {
|
|
2
|
+
import { ComponentPropsWithoutRef, ComponentProps } from 'react';
|
|
3
3
|
import * as TooltipPrimitive from '@radix-ui/react-tooltip';
|
|
4
4
|
|
|
5
5
|
type TooltipProviderProps = ComponentProps<typeof TooltipPrimitive.Provider>;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"sources":["../../../../node_modules/.pnpm/tailwindcss@4.0.0-beta.9/node_modules/tailwindcss/dist/plugin.mjs","../../src/tailwindcss/animate.ts"],"names":["u","i","t","o","g","animate","addUtilities","matchUtilities","theme","value"],"mappings":"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","file":"/home/runner/work/codefast/codefast/packages/ui/dist/tailwindcss/animate.cjs","sourcesContent":["function u(n,i){return{handler:n,config:i}}u.withOptions=function(n,i=()=>({})){function t(o){return{handler:n(o),config:i(o)}}return t.__isOptionsFunction=!0,t};var g=u;export{g as default};\n","import plugin from 'tailwindcss/plugin';\n\nconst animate = plugin(\n ({ addUtilities, matchUtilities, theme }) => {\n // Keyframes\n addUtilities({\n '.animate-fade-in': {\n '--animation-in-opacity': 'initial',\n animationDuration: theme('animationDuration.DEFAULT'),\n animationName: 'animate-fade-in',\n },\n\n '.animate-fade-out': {\n '--animation-out-opacity': 'initial',\n animationDuration: theme('animationDuration.DEFAULT'),\n animationName: 'animate-fade-out',\n },\n\n '.animate-in': {\n '--animation-in-opacity': 'initial',\n '--animation-in-rotate': 'initial',\n '--animation-in-scale': 'initial',\n '--animation-in-translate-x': 'initial',\n '--animation-in-translate-y': 'initial',\n animationDuration: theme('animationDuration.DEFAULT'),\n animationName: 'animate-in',\n },\n\n '.animate-out': {\n '--animation-out-opacity': 'initial',\n '--animation-out-rotate': 'initial',\n '--animation-out-scale': 'initial',\n '--animation-out-translate-x': 'initial',\n '--animation-out-translate-y': 'initial',\n animationDuration: theme('animationDuration.DEFAULT'),\n animationName: 'animate-out',\n },\n\n '@keyframes animate-fade-in': {\n from: {\n opacity: 'var(--animation-in-opacity, 0)',\n },\n },\n\n '@keyframes animate-fade-out': {\n to: {\n opacity: 'var(--animation-out-opacity, 0)',\n },\n },\n\n '@keyframes animate-in': {\n from: {\n opacity: 'var(--animation-in-opacity, 1)',\n transform: [\n 'translate3d(var(--animation-in-translate-x, 0), var(--animation-in-translate-y, 0), 0)',\n 'scale3d(var(--animation-in-scale, 1), var(--animation-in-scale, 1), var(--animation-in-scale, 1))',\n 'rotate(var(--animation-in-rotate, 0))',\n ].join(' '),\n },\n },\n\n '@keyframes animate-out': {\n to: {\n opacity: 'var(--animation-out-opacity, 1)',\n transform: [\n 'translate3d(var(--animation-out-translate-x, 0), var(--animation-out-translate-y, 0), 0)',\n 'scale3d(var(--animation-out-scale, 1), var(--animation-out-scale, 1), var(--animation-out-scale, 1))',\n 'rotate(var(--animation-out-rotate, 0))',\n ].join(' '),\n },\n },\n });\n\n // Play state\n addUtilities({\n '.animation-paused': {\n animationPlayState: 'paused',\n },\n '.animation-running': {\n animationPlayState: 'running',\n },\n });\n\n // Delay\n matchUtilities(\n {\n 'animation-delay': (value) => ({\n animationDelay: value,\n }),\n },\n {\n values: theme('animationDelay'),\n },\n );\n\n // Direction\n matchUtilities(\n {\n 'animation-direction': (value) => ({\n animationDirection: value,\n }),\n },\n {\n values: theme('animationDirection'),\n },\n );\n\n // Duration\n matchUtilities(\n {\n 'animation-duration': (value) => ({\n animationDuration: value,\n }),\n },\n {\n values: theme('animationDuration'),\n },\n );\n\n // Fill mode\n matchUtilities(\n {\n 'animation-fill-mode': (value) => ({\n animationFillMode: value,\n }),\n },\n {\n values: theme('animationFillMode'),\n },\n );\n\n // Opacity\n matchUtilities(\n {\n 'fade-in': (value) => ({\n '--animation-in-opacity': value,\n }),\n 'fade-out': (value) => ({\n '--animation-out-opacity': value,\n }),\n },\n {\n values: theme('animationOpacity'),\n },\n );\n\n // Repeat\n matchUtilities(\n {\n 'animation-repeat': (value) => ({\n animationIterationCount: value,\n }),\n },\n {\n values: theme('animationRepeat'),\n },\n );\n\n // Rotate\n matchUtilities(\n {\n 'spin-in': (value) => ({\n '--animation-in-rotate': value,\n }),\n 'spin-out': (value) => ({\n '--animation-out-rotate': value,\n }),\n },\n {\n values: theme('animationRotate'),\n },\n );\n\n // Scale – Zoom\n matchUtilities(\n {\n 'zoom-in': (value) => ({\n '--animation-in-scale': value,\n }),\n 'zoom-out': (value) => ({\n '--animation-out-scale': value,\n }),\n },\n {\n values: theme('animationScale'),\n },\n );\n\n // Timing function\n matchUtilities(\n {\n 'animation-ease': (value) => ({\n animationTimingFunction: value,\n }),\n },\n {\n values: theme('animationTimingFunction'),\n },\n );\n\n // Translate - Slide\n matchUtilities(\n {\n 'slide-in-from-bottom': (value) => ({\n '--animation-in-translate-y': value,\n }),\n\n 'slide-in-from-left': (value) => ({\n '--animation-in-translate-x': `-${value}`,\n }),\n\n 'slide-in-from-right': (value) => ({\n '--animation-in-translate-x': value,\n }),\n\n 'slide-in-from-top': (value) => ({\n '--animation-in-translate-y': `-${value}`,\n }),\n\n 'slide-out-to-bottom': (value) => ({\n '--animation-out-translate-y': value,\n }),\n\n 'slide-out-to-left': (value) => ({\n '--animation-out-translate-x': `-${value}`,\n }),\n\n 'slide-out-to-right': (value) => ({\n '--animation-out-translate-x': value,\n }),\n\n 'slide-out-to-top': (value) => ({\n '--animation-out-translate-y': `-${value}`,\n }),\n },\n {\n values: theme('animationTranslate'),\n },\n );\n },\n {\n theme: {\n extend: {\n animationDelay: ({ theme }) => ({\n ...theme('transitionDelay'),\n }),\n\n animationDirection: {\n alternate: 'alternate',\n 'alternate-reverse': 'alternate-reverse',\n normal: 'normal',\n reverse: 'reverse',\n },\n\n animationDuration: ({ theme }) => ({\n ...theme('transitionDuration'),\n }),\n\n animationFillMode: {\n backwards: 'backwards',\n both: 'both',\n forwards: 'forwards',\n none: 'none',\n },\n\n animationOpacity: ({ theme }) => ({\n DEFAULT: 0,\n ...theme('opacity'),\n }),\n\n animationRepeat: {\n 0: '0',\n 1: '1',\n infinite: 'infinite',\n },\n\n animationRotate: ({ theme }) => ({\n DEFAULT: '30deg',\n ...theme('rotate'),\n }),\n\n animationScale: ({ theme }) => ({\n DEFAULT: 0,\n ...theme('scale'),\n }),\n\n animationTimingFunction: ({ theme }) => ({\n ...theme('transitionTimingFunction'),\n }),\n\n animationTranslate: ({ theme }) => ({\n DEFAULT: '100%',\n ...theme('translate'),\n }),\n },\n },\n },\n);\n\nexport default animate;\n"]}
|
|
1
|
+
{"version":3,"sources":["../../../../node_modules/.pnpm/tailwindcss@4.0.3/node_modules/tailwindcss/dist/plugin.mjs","../../src/tailwindcss/animate.ts"],"names":["u","i","t","o","g","animate","addUtilities","matchUtilities","theme","value"],"mappings":"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","file":"/home/runner/work/codefast/codefast/packages/ui/dist/tailwindcss/animate.cjs","sourcesContent":["function u(n,i){return{handler:n,config:i}}u.withOptions=function(n,i=()=>({})){function t(o){return{handler:n(o),config:i(o)}}return t.__isOptionsFunction=!0,t};var g=u;export{g as default};\n","import plugin from 'tailwindcss/plugin';\n\nconst animate = plugin(\n ({ addUtilities, matchUtilities, theme }) => {\n // Keyframes\n addUtilities({\n '.animate-fade-in': {\n '--animation-in-opacity': 'initial',\n animationDuration: theme('animationDuration.DEFAULT'),\n animationName: 'animate-fade-in',\n },\n\n '.animate-fade-out': {\n '--animation-out-opacity': 'initial',\n animationDuration: theme('animationDuration.DEFAULT'),\n animationName: 'animate-fade-out',\n },\n\n '.animate-in': {\n '--animation-in-opacity': 'initial',\n '--animation-in-rotate': 'initial',\n '--animation-in-scale': 'initial',\n '--animation-in-translate-x': 'initial',\n '--animation-in-translate-y': 'initial',\n animationDuration: theme('animationDuration.DEFAULT'),\n animationName: 'animate-in',\n },\n\n '.animate-out': {\n '--animation-out-opacity': 'initial',\n '--animation-out-rotate': 'initial',\n '--animation-out-scale': 'initial',\n '--animation-out-translate-x': 'initial',\n '--animation-out-translate-y': 'initial',\n animationDuration: theme('animationDuration.DEFAULT'),\n animationName: 'animate-out',\n },\n\n '@keyframes animate-fade-in': {\n from: {\n opacity: 'var(--animation-in-opacity, 0)',\n },\n },\n\n '@keyframes animate-fade-out': {\n to: {\n opacity: 'var(--animation-out-opacity, 0)',\n },\n },\n\n '@keyframes animate-in': {\n from: {\n opacity: 'var(--animation-in-opacity, 1)',\n transform: [\n 'translate3d(var(--animation-in-translate-x, 0), var(--animation-in-translate-y, 0), 0)',\n 'scale3d(var(--animation-in-scale, 1), var(--animation-in-scale, 1), var(--animation-in-scale, 1))',\n 'rotate(var(--animation-in-rotate, 0))',\n ].join(' '),\n },\n },\n\n '@keyframes animate-out': {\n to: {\n opacity: 'var(--animation-out-opacity, 1)',\n transform: [\n 'translate3d(var(--animation-out-translate-x, 0), var(--animation-out-translate-y, 0), 0)',\n 'scale3d(var(--animation-out-scale, 1), var(--animation-out-scale, 1), var(--animation-out-scale, 1))',\n 'rotate(var(--animation-out-rotate, 0))',\n ].join(' '),\n },\n },\n });\n\n // Play state\n addUtilities({\n '.animation-paused': {\n animationPlayState: 'paused',\n },\n '.animation-running': {\n animationPlayState: 'running',\n },\n });\n\n // Delay\n matchUtilities(\n {\n 'animation-delay': (value) => ({\n animationDelay: value,\n }),\n },\n {\n values: theme('animationDelay'),\n },\n );\n\n // Direction\n matchUtilities(\n {\n 'animation-direction': (value) => ({\n animationDirection: value,\n }),\n },\n {\n values: theme('animationDirection'),\n },\n );\n\n // Duration\n matchUtilities(\n {\n 'animation-duration': (value) => ({\n animationDuration: value,\n }),\n },\n {\n values: theme('animationDuration'),\n },\n );\n\n // Fill mode\n matchUtilities(\n {\n 'animation-fill-mode': (value) => ({\n animationFillMode: value,\n }),\n },\n {\n values: theme('animationFillMode'),\n },\n );\n\n // Opacity\n matchUtilities(\n {\n 'fade-in': (value) => ({\n '--animation-in-opacity': value,\n }),\n 'fade-out': (value) => ({\n '--animation-out-opacity': value,\n }),\n },\n {\n values: theme('animationOpacity'),\n },\n );\n\n // Repeat\n matchUtilities(\n {\n 'animation-repeat': (value) => ({\n animationIterationCount: value,\n }),\n },\n {\n values: theme('animationRepeat'),\n },\n );\n\n // Rotate\n matchUtilities(\n {\n 'spin-in': (value) => ({\n '--animation-in-rotate': value,\n }),\n 'spin-out': (value) => ({\n '--animation-out-rotate': value,\n }),\n },\n {\n values: theme('animationRotate'),\n },\n );\n\n // Scale – Zoom\n matchUtilities(\n {\n 'zoom-in': (value) => ({\n '--animation-in-scale': value,\n }),\n 'zoom-out': (value) => ({\n '--animation-out-scale': value,\n }),\n },\n {\n values: theme('animationScale'),\n },\n );\n\n // Timing function\n matchUtilities(\n {\n 'animation-ease': (value) => ({\n animationTimingFunction: value,\n }),\n },\n {\n values: theme('animationTimingFunction'),\n },\n );\n\n // Translate - Slide\n matchUtilities(\n {\n 'slide-in-from-bottom': (value) => ({\n '--animation-in-translate-y': value,\n }),\n\n 'slide-in-from-left': (value) => ({\n '--animation-in-translate-x': `-${value}`,\n }),\n\n 'slide-in-from-right': (value) => ({\n '--animation-in-translate-x': value,\n }),\n\n 'slide-in-from-top': (value) => ({\n '--animation-in-translate-y': `-${value}`,\n }),\n\n 'slide-out-to-bottom': (value) => ({\n '--animation-out-translate-y': value,\n }),\n\n 'slide-out-to-left': (value) => ({\n '--animation-out-translate-x': `-${value}`,\n }),\n\n 'slide-out-to-right': (value) => ({\n '--animation-out-translate-x': value,\n }),\n\n 'slide-out-to-top': (value) => ({\n '--animation-out-translate-y': `-${value}`,\n }),\n },\n {\n values: theme('animationTranslate'),\n },\n );\n },\n {\n theme: {\n extend: {\n animationDelay: ({ theme }) => ({\n ...theme('transitionDelay'),\n }),\n\n animationDirection: {\n alternate: 'alternate',\n 'alternate-reverse': 'alternate-reverse',\n normal: 'normal',\n reverse: 'reverse',\n },\n\n animationDuration: ({ theme }) => ({\n ...theme('transitionDuration'),\n }),\n\n animationFillMode: {\n backwards: 'backwards',\n both: 'both',\n forwards: 'forwards',\n none: 'none',\n },\n\n animationOpacity: ({ theme }) => ({\n DEFAULT: 0,\n ...theme('opacity'),\n }),\n\n animationRepeat: {\n 0: '0',\n 1: '1',\n infinite: 'infinite',\n },\n\n animationRotate: ({ theme }) => ({\n DEFAULT: '30deg',\n ...theme('rotate'),\n }),\n\n animationScale: ({ theme }) => ({\n DEFAULT: 0,\n ...theme('scale'),\n }),\n\n animationTimingFunction: ({ theme }) => ({\n ...theme('transitionTimingFunction'),\n }),\n\n animationTranslate: ({ theme }) => ({\n DEFAULT: '100%',\n ...theme('translate'),\n }),\n },\n },\n },\n);\n\nexport default animate;\n"]}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"sources":["../../../../node_modules/.pnpm/tailwindcss@4.0.0-beta.9/node_modules/tailwindcss/dist/plugin.mjs","../../src/tailwindcss/animate.ts"],"names":["u","i","t","o","g","animate","addUtilities","matchUtilities","theme","value","animate_default"],"mappings":"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","sourcesContent":["function u(n,i){return{handler:n,config:i}}u.withOptions=function(n,i=()=>({})){function t(o){return{handler:n(o),config:i(o)}}return t.__isOptionsFunction=!0,t};var g=u;export{g as default};\n","import plugin from 'tailwindcss/plugin';\n\nconst animate = plugin(\n ({ addUtilities, matchUtilities, theme }) => {\n // Keyframes\n addUtilities({\n '.animate-fade-in': {\n '--animation-in-opacity': 'initial',\n animationDuration: theme('animationDuration.DEFAULT'),\n animationName: 'animate-fade-in',\n },\n\n '.animate-fade-out': {\n '--animation-out-opacity': 'initial',\n animationDuration: theme('animationDuration.DEFAULT'),\n animationName: 'animate-fade-out',\n },\n\n '.animate-in': {\n '--animation-in-opacity': 'initial',\n '--animation-in-rotate': 'initial',\n '--animation-in-scale': 'initial',\n '--animation-in-translate-x': 'initial',\n '--animation-in-translate-y': 'initial',\n animationDuration: theme('animationDuration.DEFAULT'),\n animationName: 'animate-in',\n },\n\n '.animate-out': {\n '--animation-out-opacity': 'initial',\n '--animation-out-rotate': 'initial',\n '--animation-out-scale': 'initial',\n '--animation-out-translate-x': 'initial',\n '--animation-out-translate-y': 'initial',\n animationDuration: theme('animationDuration.DEFAULT'),\n animationName: 'animate-out',\n },\n\n '@keyframes animate-fade-in': {\n from: {\n opacity: 'var(--animation-in-opacity, 0)',\n },\n },\n\n '@keyframes animate-fade-out': {\n to: {\n opacity: 'var(--animation-out-opacity, 0)',\n },\n },\n\n '@keyframes animate-in': {\n from: {\n opacity: 'var(--animation-in-opacity, 1)',\n transform: [\n 'translate3d(var(--animation-in-translate-x, 0), var(--animation-in-translate-y, 0), 0)',\n 'scale3d(var(--animation-in-scale, 1), var(--animation-in-scale, 1), var(--animation-in-scale, 1))',\n 'rotate(var(--animation-in-rotate, 0))',\n ].join(' '),\n },\n },\n\n '@keyframes animate-out': {\n to: {\n opacity: 'var(--animation-out-opacity, 1)',\n transform: [\n 'translate3d(var(--animation-out-translate-x, 0), var(--animation-out-translate-y, 0), 0)',\n 'scale3d(var(--animation-out-scale, 1), var(--animation-out-scale, 1), var(--animation-out-scale, 1))',\n 'rotate(var(--animation-out-rotate, 0))',\n ].join(' '),\n },\n },\n });\n\n // Play state\n addUtilities({\n '.animation-paused': {\n animationPlayState: 'paused',\n },\n '.animation-running': {\n animationPlayState: 'running',\n },\n });\n\n // Delay\n matchUtilities(\n {\n 'animation-delay': (value) => ({\n animationDelay: value,\n }),\n },\n {\n values: theme('animationDelay'),\n },\n );\n\n // Direction\n matchUtilities(\n {\n 'animation-direction': (value) => ({\n animationDirection: value,\n }),\n },\n {\n values: theme('animationDirection'),\n },\n );\n\n // Duration\n matchUtilities(\n {\n 'animation-duration': (value) => ({\n animationDuration: value,\n }),\n },\n {\n values: theme('animationDuration'),\n },\n );\n\n // Fill mode\n matchUtilities(\n {\n 'animation-fill-mode': (value) => ({\n animationFillMode: value,\n }),\n },\n {\n values: theme('animationFillMode'),\n },\n );\n\n // Opacity\n matchUtilities(\n {\n 'fade-in': (value) => ({\n '--animation-in-opacity': value,\n }),\n 'fade-out': (value) => ({\n '--animation-out-opacity': value,\n }),\n },\n {\n values: theme('animationOpacity'),\n },\n );\n\n // Repeat\n matchUtilities(\n {\n 'animation-repeat': (value) => ({\n animationIterationCount: value,\n }),\n },\n {\n values: theme('animationRepeat'),\n },\n );\n\n // Rotate\n matchUtilities(\n {\n 'spin-in': (value) => ({\n '--animation-in-rotate': value,\n }),\n 'spin-out': (value) => ({\n '--animation-out-rotate': value,\n }),\n },\n {\n values: theme('animationRotate'),\n },\n );\n\n // Scale – Zoom\n matchUtilities(\n {\n 'zoom-in': (value) => ({\n '--animation-in-scale': value,\n }),\n 'zoom-out': (value) => ({\n '--animation-out-scale': value,\n }),\n },\n {\n values: theme('animationScale'),\n },\n );\n\n // Timing function\n matchUtilities(\n {\n 'animation-ease': (value) => ({\n animationTimingFunction: value,\n }),\n },\n {\n values: theme('animationTimingFunction'),\n },\n );\n\n // Translate - Slide\n matchUtilities(\n {\n 'slide-in-from-bottom': (value) => ({\n '--animation-in-translate-y': value,\n }),\n\n 'slide-in-from-left': (value) => ({\n '--animation-in-translate-x': `-${value}`,\n }),\n\n 'slide-in-from-right': (value) => ({\n '--animation-in-translate-x': value,\n }),\n\n 'slide-in-from-top': (value) => ({\n '--animation-in-translate-y': `-${value}`,\n }),\n\n 'slide-out-to-bottom': (value) => ({\n '--animation-out-translate-y': value,\n }),\n\n 'slide-out-to-left': (value) => ({\n '--animation-out-translate-x': `-${value}`,\n }),\n\n 'slide-out-to-right': (value) => ({\n '--animation-out-translate-x': value,\n }),\n\n 'slide-out-to-top': (value) => ({\n '--animation-out-translate-y': `-${value}`,\n }),\n },\n {\n values: theme('animationTranslate'),\n },\n );\n },\n {\n theme: {\n extend: {\n animationDelay: ({ theme }) => ({\n ...theme('transitionDelay'),\n }),\n\n animationDirection: {\n alternate: 'alternate',\n 'alternate-reverse': 'alternate-reverse',\n normal: 'normal',\n reverse: 'reverse',\n },\n\n animationDuration: ({ theme }) => ({\n ...theme('transitionDuration'),\n }),\n\n animationFillMode: {\n backwards: 'backwards',\n both: 'both',\n forwards: 'forwards',\n none: 'none',\n },\n\n animationOpacity: ({ theme }) => ({\n DEFAULT: 0,\n ...theme('opacity'),\n }),\n\n animationRepeat: {\n 0: '0',\n 1: '1',\n infinite: 'infinite',\n },\n\n animationRotate: ({ theme }) => ({\n DEFAULT: '30deg',\n ...theme('rotate'),\n }),\n\n animationScale: ({ theme }) => ({\n DEFAULT: 0,\n ...theme('scale'),\n }),\n\n animationTimingFunction: ({ theme }) => ({\n ...theme('transitionTimingFunction'),\n }),\n\n animationTranslate: ({ theme }) => ({\n DEFAULT: '100%',\n ...theme('translate'),\n }),\n },\n },\n },\n);\n\nexport default animate;\n"]}
|
|
1
|
+
{"version":3,"sources":["../../../../node_modules/.pnpm/tailwindcss@4.0.3/node_modules/tailwindcss/dist/plugin.mjs","../../src/tailwindcss/animate.ts"],"names":["u","i","t","o","g","animate","addUtilities","matchUtilities","theme","value","animate_default"],"mappings":"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","sourcesContent":["function u(n,i){return{handler:n,config:i}}u.withOptions=function(n,i=()=>({})){function t(o){return{handler:n(o),config:i(o)}}return t.__isOptionsFunction=!0,t};var g=u;export{g as default};\n","import plugin from 'tailwindcss/plugin';\n\nconst animate = plugin(\n ({ addUtilities, matchUtilities, theme }) => {\n // Keyframes\n addUtilities({\n '.animate-fade-in': {\n '--animation-in-opacity': 'initial',\n animationDuration: theme('animationDuration.DEFAULT'),\n animationName: 'animate-fade-in',\n },\n\n '.animate-fade-out': {\n '--animation-out-opacity': 'initial',\n animationDuration: theme('animationDuration.DEFAULT'),\n animationName: 'animate-fade-out',\n },\n\n '.animate-in': {\n '--animation-in-opacity': 'initial',\n '--animation-in-rotate': 'initial',\n '--animation-in-scale': 'initial',\n '--animation-in-translate-x': 'initial',\n '--animation-in-translate-y': 'initial',\n animationDuration: theme('animationDuration.DEFAULT'),\n animationName: 'animate-in',\n },\n\n '.animate-out': {\n '--animation-out-opacity': 'initial',\n '--animation-out-rotate': 'initial',\n '--animation-out-scale': 'initial',\n '--animation-out-translate-x': 'initial',\n '--animation-out-translate-y': 'initial',\n animationDuration: theme('animationDuration.DEFAULT'),\n animationName: 'animate-out',\n },\n\n '@keyframes animate-fade-in': {\n from: {\n opacity: 'var(--animation-in-opacity, 0)',\n },\n },\n\n '@keyframes animate-fade-out': {\n to: {\n opacity: 'var(--animation-out-opacity, 0)',\n },\n },\n\n '@keyframes animate-in': {\n from: {\n opacity: 'var(--animation-in-opacity, 1)',\n transform: [\n 'translate3d(var(--animation-in-translate-x, 0), var(--animation-in-translate-y, 0), 0)',\n 'scale3d(var(--animation-in-scale, 1), var(--animation-in-scale, 1), var(--animation-in-scale, 1))',\n 'rotate(var(--animation-in-rotate, 0))',\n ].join(' '),\n },\n },\n\n '@keyframes animate-out': {\n to: {\n opacity: 'var(--animation-out-opacity, 1)',\n transform: [\n 'translate3d(var(--animation-out-translate-x, 0), var(--animation-out-translate-y, 0), 0)',\n 'scale3d(var(--animation-out-scale, 1), var(--animation-out-scale, 1), var(--animation-out-scale, 1))',\n 'rotate(var(--animation-out-rotate, 0))',\n ].join(' '),\n },\n },\n });\n\n // Play state\n addUtilities({\n '.animation-paused': {\n animationPlayState: 'paused',\n },\n '.animation-running': {\n animationPlayState: 'running',\n },\n });\n\n // Delay\n matchUtilities(\n {\n 'animation-delay': (value) => ({\n animationDelay: value,\n }),\n },\n {\n values: theme('animationDelay'),\n },\n );\n\n // Direction\n matchUtilities(\n {\n 'animation-direction': (value) => ({\n animationDirection: value,\n }),\n },\n {\n values: theme('animationDirection'),\n },\n );\n\n // Duration\n matchUtilities(\n {\n 'animation-duration': (value) => ({\n animationDuration: value,\n }),\n },\n {\n values: theme('animationDuration'),\n },\n );\n\n // Fill mode\n matchUtilities(\n {\n 'animation-fill-mode': (value) => ({\n animationFillMode: value,\n }),\n },\n {\n values: theme('animationFillMode'),\n },\n );\n\n // Opacity\n matchUtilities(\n {\n 'fade-in': (value) => ({\n '--animation-in-opacity': value,\n }),\n 'fade-out': (value) => ({\n '--animation-out-opacity': value,\n }),\n },\n {\n values: theme('animationOpacity'),\n },\n );\n\n // Repeat\n matchUtilities(\n {\n 'animation-repeat': (value) => ({\n animationIterationCount: value,\n }),\n },\n {\n values: theme('animationRepeat'),\n },\n );\n\n // Rotate\n matchUtilities(\n {\n 'spin-in': (value) => ({\n '--animation-in-rotate': value,\n }),\n 'spin-out': (value) => ({\n '--animation-out-rotate': value,\n }),\n },\n {\n values: theme('animationRotate'),\n },\n );\n\n // Scale – Zoom\n matchUtilities(\n {\n 'zoom-in': (value) => ({\n '--animation-in-scale': value,\n }),\n 'zoom-out': (value) => ({\n '--animation-out-scale': value,\n }),\n },\n {\n values: theme('animationScale'),\n },\n );\n\n // Timing function\n matchUtilities(\n {\n 'animation-ease': (value) => ({\n animationTimingFunction: value,\n }),\n },\n {\n values: theme('animationTimingFunction'),\n },\n );\n\n // Translate - Slide\n matchUtilities(\n {\n 'slide-in-from-bottom': (value) => ({\n '--animation-in-translate-y': value,\n }),\n\n 'slide-in-from-left': (value) => ({\n '--animation-in-translate-x': `-${value}`,\n }),\n\n 'slide-in-from-right': (value) => ({\n '--animation-in-translate-x': value,\n }),\n\n 'slide-in-from-top': (value) => ({\n '--animation-in-translate-y': `-${value}`,\n }),\n\n 'slide-out-to-bottom': (value) => ({\n '--animation-out-translate-y': value,\n }),\n\n 'slide-out-to-left': (value) => ({\n '--animation-out-translate-x': `-${value}`,\n }),\n\n 'slide-out-to-right': (value) => ({\n '--animation-out-translate-x': value,\n }),\n\n 'slide-out-to-top': (value) => ({\n '--animation-out-translate-y': `-${value}`,\n }),\n },\n {\n values: theme('animationTranslate'),\n },\n );\n },\n {\n theme: {\n extend: {\n animationDelay: ({ theme }) => ({\n ...theme('transitionDelay'),\n }),\n\n animationDirection: {\n alternate: 'alternate',\n 'alternate-reverse': 'alternate-reverse',\n normal: 'normal',\n reverse: 'reverse',\n },\n\n animationDuration: ({ theme }) => ({\n ...theme('transitionDuration'),\n }),\n\n animationFillMode: {\n backwards: 'backwards',\n both: 'both',\n forwards: 'forwards',\n none: 'none',\n },\n\n animationOpacity: ({ theme }) => ({\n DEFAULT: 0,\n ...theme('opacity'),\n }),\n\n animationRepeat: {\n 0: '0',\n 1: '1',\n infinite: 'infinite',\n },\n\n animationRotate: ({ theme }) => ({\n DEFAULT: '30deg',\n ...theme('rotate'),\n }),\n\n animationScale: ({ theme }) => ({\n DEFAULT: 0,\n ...theme('scale'),\n }),\n\n animationTimingFunction: ({ theme }) => ({\n ...theme('transitionTimingFunction'),\n }),\n\n animationTranslate: ({ theme }) => ({\n DEFAULT: '100%',\n ...theme('translate'),\n }),\n },\n },\n },\n);\n\nexport default animate;\n"]}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@codefast/ui",
|
|
3
|
-
"version": "0.2.
|
|
3
|
+
"version": "0.2.13",
|
|
4
4
|
"bugs": {
|
|
5
5
|
"url": "https://github.com/codefastlabs/codefast/issues"
|
|
6
6
|
},
|
|
@@ -47,25 +47,25 @@
|
|
|
47
47
|
"dependencies": {
|
|
48
48
|
"@radix-ui/primitive": "^1.1.1",
|
|
49
49
|
"@radix-ui/react-accordion": "^1.2.2",
|
|
50
|
-
"@radix-ui/react-alert-dialog": "^1.1.
|
|
50
|
+
"@radix-ui/react-alert-dialog": "^1.1.5",
|
|
51
51
|
"@radix-ui/react-aspect-ratio": "^1.1.1",
|
|
52
52
|
"@radix-ui/react-avatar": "^1.1.2",
|
|
53
53
|
"@radix-ui/react-checkbox": "^1.1.3",
|
|
54
54
|
"@radix-ui/react-collapsible": "^1.1.2",
|
|
55
55
|
"@radix-ui/react-context": "^1.1.1",
|
|
56
|
-
"@radix-ui/react-context-menu": "^2.2.
|
|
57
|
-
"@radix-ui/react-dialog": "^1.1.
|
|
56
|
+
"@radix-ui/react-context-menu": "^2.2.5",
|
|
57
|
+
"@radix-ui/react-dialog": "^1.1.5",
|
|
58
58
|
"@radix-ui/react-direction": "^1.1.0",
|
|
59
|
-
"@radix-ui/react-dropdown-menu": "^2.1.
|
|
60
|
-
"@radix-ui/react-hover-card": "^1.1.
|
|
59
|
+
"@radix-ui/react-dropdown-menu": "^2.1.5",
|
|
60
|
+
"@radix-ui/react-hover-card": "^1.1.5",
|
|
61
61
|
"@radix-ui/react-label": "^2.1.1",
|
|
62
|
-
"@radix-ui/react-menubar": "^1.1.
|
|
63
|
-
"@radix-ui/react-navigation-menu": "^1.2.
|
|
64
|
-
"@radix-ui/react-popover": "^1.1.
|
|
62
|
+
"@radix-ui/react-menubar": "^1.1.5",
|
|
63
|
+
"@radix-ui/react-navigation-menu": "^1.2.4",
|
|
64
|
+
"@radix-ui/react-popover": "^1.1.5",
|
|
65
65
|
"@radix-ui/react-progress": "^1.1.1",
|
|
66
66
|
"@radix-ui/react-radio-group": "^1.2.2",
|
|
67
67
|
"@radix-ui/react-scroll-area": "^1.2.2",
|
|
68
|
-
"@radix-ui/react-select": "^2.1.
|
|
68
|
+
"@radix-ui/react-select": "^2.1.5",
|
|
69
69
|
"@radix-ui/react-separator": "^1.1.1",
|
|
70
70
|
"@radix-ui/react-slider": "^1.2.2",
|
|
71
71
|
"@radix-ui/react-slot": "^1.1.1",
|
|
@@ -73,7 +73,7 @@
|
|
|
73
73
|
"@radix-ui/react-tabs": "^1.1.2",
|
|
74
74
|
"@radix-ui/react-toggle": "^1.1.1",
|
|
75
75
|
"@radix-ui/react-toggle-group": "^1.1.1",
|
|
76
|
-
"@radix-ui/react-tooltip": "^1.1.
|
|
76
|
+
"@radix-ui/react-tooltip": "^1.1.7",
|
|
77
77
|
"@radix-ui/react-use-controllable-state": "^1.1.0",
|
|
78
78
|
"@radix-ui/react-visually-hidden": "^1.1.1",
|
|
79
79
|
"chalk": "^5.4.1",
|
|
@@ -82,29 +82,29 @@
|
|
|
82
82
|
"embla-carousel-react": "^8.5.2",
|
|
83
83
|
"input-otp": "^1.4.2",
|
|
84
84
|
"js-cookie": "^3.0.5",
|
|
85
|
-
"lucide-react": "^0.
|
|
85
|
+
"lucide-react": "^0.474.0",
|
|
86
86
|
"react-resizable-panels": "^2.1.7",
|
|
87
|
-
"sonner": "^1.7.
|
|
88
|
-
"tailwind-merge": "^
|
|
89
|
-
"tailwind-variants": "^0.3.
|
|
87
|
+
"sonner": "^1.7.4",
|
|
88
|
+
"tailwind-merge": "^3.0.1",
|
|
89
|
+
"tailwind-variants": "^0.3.1",
|
|
90
90
|
"vaul": "^1.1.2",
|
|
91
|
-
"@codefast-ui/checkbox-group": "0.2.
|
|
92
|
-
"@codefast-ui/day-picker": "0.2.
|
|
93
|
-
"@codefast-ui/input": "0.2.
|
|
94
|
-
"@codefast-ui/number-input": "0.2.
|
|
95
|
-
"@codefast/hooks": "0.2.
|
|
91
|
+
"@codefast-ui/checkbox-group": "0.2.13",
|
|
92
|
+
"@codefast-ui/day-picker": "0.2.13",
|
|
93
|
+
"@codefast-ui/input": "0.2.13",
|
|
94
|
+
"@codefast-ui/number-input": "0.2.13",
|
|
95
|
+
"@codefast/hooks": "0.2.13"
|
|
96
96
|
},
|
|
97
97
|
"devDependencies": {
|
|
98
|
-
"@tailwindcss/postcss": "4.0.
|
|
98
|
+
"@tailwindcss/postcss": "4.0.3",
|
|
99
99
|
"@types/js-cookie": "^3.0.6",
|
|
100
|
-
"@types/node": "^
|
|
101
|
-
"eslint": "^9.
|
|
100
|
+
"@types/node": "^22.13.1",
|
|
101
|
+
"eslint": "^9.19.0",
|
|
102
102
|
"postcss": "^8.4.49",
|
|
103
|
-
"tailwindcss": "4.0.
|
|
104
|
-
"tsup": "^8.3.
|
|
103
|
+
"tailwindcss": "4.0.3",
|
|
104
|
+
"tsup": "^8.3.6",
|
|
105
105
|
"typescript": "^5.7.3",
|
|
106
|
-
"@codefast/eslint-config": "0.2.
|
|
107
|
-
"@codefast/typescript-config": "0.2.
|
|
106
|
+
"@codefast/eslint-config": "0.2.13",
|
|
107
|
+
"@codefast/typescript-config": "0.2.13"
|
|
108
108
|
},
|
|
109
109
|
"peerDependencies": {
|
|
110
110
|
"@tanstack/react-table": ">=8",
|