@fluencypassdevs/cycle 0.4.0 → 0.5.1
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/cli/CLAUDE-section.md +27 -1
- package/dist/chunk-5LZHXNBV.js +38 -0
- package/dist/chunk-5LZHXNBV.js.map +1 -0
- package/dist/{chunk-POQUVBVT.js → chunk-7ZXAU2CD.js} +3 -3
- package/dist/{chunk-POQUVBVT.js.map → chunk-7ZXAU2CD.js.map} +1 -1
- package/dist/{chunk-XX3I65LQ.js → chunk-BJIG33XF.js} +3 -3
- package/dist/{chunk-XX3I65LQ.js.map → chunk-BJIG33XF.js.map} +1 -1
- package/dist/{chunk-6LML23MS.js → chunk-D4QCYBCD.js} +3 -3
- package/dist/{chunk-6LML23MS.js.map → chunk-D4QCYBCD.js.map} +1 -1
- package/dist/{chunk-RI3ULQHH.js → chunk-ELZCZ6ZH.js} +3 -3
- package/dist/{chunk-RI3ULQHH.js.map → chunk-ELZCZ6ZH.js.map} +1 -1
- package/dist/{chunk-PXWCEJ2C.js → chunk-EXVLL3JP.js} +3 -3
- package/dist/{chunk-PXWCEJ2C.js.map → chunk-EXVLL3JP.js.map} +1 -1
- package/dist/chunk-JDAPQW5C.js +32 -0
- package/dist/chunk-JDAPQW5C.js.map +1 -0
- package/dist/{chunk-WRJZHQNY.js → chunk-UAHCRXAG.js} +3 -3
- package/dist/{chunk-WRJZHQNY.js.map → chunk-UAHCRXAG.js.map} +1 -1
- package/dist/{chunk-OT2HCBR2.js → chunk-V7M2NHUO.js} +2 -2
- package/dist/{chunk-OT2HCBR2.js.map → chunk-V7M2NHUO.js.map} +1 -1
- package/dist/{chunk-UVCEQOQR.js → chunk-WUZODCC2.js} +3 -3
- package/dist/{chunk-UVCEQOQR.js.map → chunk-WUZODCC2.js.map} +1 -1
- package/dist/{chunk-7XT6ISPQ.js → chunk-WXJKTVRI.js} +3 -3
- package/dist/{chunk-7XT6ISPQ.js.map → chunk-WXJKTVRI.js.map} +1 -1
- package/dist/icons/index.d.ts +4 -39
- package/dist/icons/index.js +2 -2
- package/dist/icons/lucide.d.ts +1 -0
- package/dist/icons/lucide.js +3 -0
- package/dist/icons/lucide.js.map +1 -0
- package/dist/index.d.ts +4 -1
- package/dist/index.js +11 -9
- package/dist/logos/fluencypass.d.ts +21 -0
- package/dist/logos/fluencypass.js +5 -0
- package/dist/logos/fluencypass.js.map +1 -0
- package/dist/logos/product.d.ts +48 -0
- package/dist/logos/product.js +7 -0
- package/dist/logos/product.js.map +1 -0
- package/dist/sizes-BZ5ZUk8g.d.ts +38 -0
- package/dist/styles/tokens.css +109 -0
- package/dist/ui/alert.js +3 -3
- package/dist/ui/audio-player.js +3 -3
- package/dist/ui/badge.d.ts +2 -2
- package/dist/ui/button.d.ts +2 -2
- package/dist/ui/chat-panel.js +2 -2
- package/dist/ui/checkbox.d.ts +1 -1
- package/dist/ui/empty.d.ts +1 -1
- package/dist/ui/file-card.d.ts +1 -1
- package/dist/ui/like-dislike.d.ts +1 -1
- package/dist/ui/like-dislike.js +3 -3
- package/dist/ui/live-waiting.js +2 -2
- package/dist/ui/progress-dot.d.ts +2 -2
- package/dist/ui/progress-stage.d.ts +1 -1
- package/dist/ui/progress.d.ts +1 -1
- package/dist/ui/radio-group.d.ts +1 -1
- package/dist/ui/slider.d.ts +1 -1
- package/dist/ui/sonner.js +3 -3
- package/dist/ui/switch.d.ts +1 -1
- package/dist/ui/toggle.d.ts +1 -1
- package/dist/ui/video-player.js +3 -3
- package/package.json +13 -1
package/dist/styles/tokens.css
CHANGED
|
@@ -571,3 +571,112 @@ body {
|
|
|
571
571
|
transform: translateY(-18px) scaleY(0.4);
|
|
572
572
|
}
|
|
573
573
|
}
|
|
574
|
+
|
|
575
|
+
/* ============================================
|
|
576
|
+
* CYCLE TYPOGRAPHY - Composite Styles
|
|
577
|
+
* ============================================
|
|
578
|
+
* Estilos tipograficos compostos extraidos do Figma.
|
|
579
|
+
* Cada classe aplica font-size, font-weight,
|
|
580
|
+
* line-height e letter-spacing de uma vez.
|
|
581
|
+
*
|
|
582
|
+
* Uso: <p class="body-md"> ou <h2 class="heading-xl">
|
|
583
|
+
* ============================================
|
|
584
|
+
*/
|
|
585
|
+
|
|
586
|
+
/* --- Body --- */
|
|
587
|
+
@utility body-xs {
|
|
588
|
+
font-family: var(--font-sans);
|
|
589
|
+
font-size: 0.625rem; /* 10px */
|
|
590
|
+
font-weight: 400;
|
|
591
|
+
line-height: 1rem; /* 16px */
|
|
592
|
+
letter-spacing: 0em;
|
|
593
|
+
}
|
|
594
|
+
|
|
595
|
+
@utility body-sm {
|
|
596
|
+
font-family: var(--font-sans);
|
|
597
|
+
font-size: 0.75rem; /* 12px */
|
|
598
|
+
font-weight: 400;
|
|
599
|
+
line-height: 1.125rem; /* 18px */
|
|
600
|
+
letter-spacing: 0em;
|
|
601
|
+
}
|
|
602
|
+
|
|
603
|
+
@utility body-md {
|
|
604
|
+
font-family: var(--font-sans);
|
|
605
|
+
font-size: 0.875rem; /* 14px */
|
|
606
|
+
font-weight: 400;
|
|
607
|
+
line-height: 1.25rem; /* 20px */
|
|
608
|
+
letter-spacing: 0em;
|
|
609
|
+
}
|
|
610
|
+
|
|
611
|
+
@utility body-lg {
|
|
612
|
+
font-family: var(--font-sans);
|
|
613
|
+
font-size: 1rem; /* 16px */
|
|
614
|
+
font-weight: 400;
|
|
615
|
+
line-height: 1.5rem; /* 24px */
|
|
616
|
+
letter-spacing: 0em;
|
|
617
|
+
}
|
|
618
|
+
|
|
619
|
+
/* --- Heading --- */
|
|
620
|
+
@utility heading-xs {
|
|
621
|
+
font-family: var(--font-sans);
|
|
622
|
+
font-size: 0.875rem; /* 14px */
|
|
623
|
+
font-weight: 600;
|
|
624
|
+
line-height: 1.25rem; /* 20px */
|
|
625
|
+
letter-spacing: -0.025em;
|
|
626
|
+
}
|
|
627
|
+
|
|
628
|
+
@utility heading-sm {
|
|
629
|
+
font-family: var(--font-sans);
|
|
630
|
+
font-size: 1rem; /* 16px */
|
|
631
|
+
font-weight: 600;
|
|
632
|
+
line-height: 1.5rem; /* 24px */
|
|
633
|
+
letter-spacing: -0.025em;
|
|
634
|
+
}
|
|
635
|
+
|
|
636
|
+
@utility heading-md {
|
|
637
|
+
font-family: var(--font-sans);
|
|
638
|
+
font-size: 1.125rem; /* 18px */
|
|
639
|
+
font-weight: 600;
|
|
640
|
+
line-height: 1.75rem; /* 28px */
|
|
641
|
+
letter-spacing: -0.025em;
|
|
642
|
+
}
|
|
643
|
+
|
|
644
|
+
@utility heading-lg {
|
|
645
|
+
font-family: var(--font-sans);
|
|
646
|
+
font-size: 1.25rem; /* 20px */
|
|
647
|
+
font-weight: 600;
|
|
648
|
+
line-height: 1.875rem; /* 30px */
|
|
649
|
+
letter-spacing: -0.025em;
|
|
650
|
+
}
|
|
651
|
+
|
|
652
|
+
@utility heading-xl {
|
|
653
|
+
font-family: var(--font-sans);
|
|
654
|
+
font-size: 1.5rem; /* 24px */
|
|
655
|
+
font-weight: 600;
|
|
656
|
+
line-height: 2rem; /* 32px */
|
|
657
|
+
letter-spacing: -0.025em;
|
|
658
|
+
}
|
|
659
|
+
|
|
660
|
+
@utility heading-2xl {
|
|
661
|
+
font-family: var(--font-sans);
|
|
662
|
+
font-size: 2rem; /* 32px */
|
|
663
|
+
font-weight: 700;
|
|
664
|
+
line-height: 2.5rem; /* 40px */
|
|
665
|
+
letter-spacing: -0.025em;
|
|
666
|
+
}
|
|
667
|
+
|
|
668
|
+
@utility heading-3xl {
|
|
669
|
+
font-family: var(--font-sans);
|
|
670
|
+
font-size: 2.5rem; /* 40px */
|
|
671
|
+
font-weight: 700;
|
|
672
|
+
line-height: 3rem; /* 48px */
|
|
673
|
+
letter-spacing: -0.025em;
|
|
674
|
+
}
|
|
675
|
+
|
|
676
|
+
@utility heading-4xl {
|
|
677
|
+
font-family: var(--font-sans);
|
|
678
|
+
font-size: 3rem; /* 48px */
|
|
679
|
+
font-weight: 700;
|
|
680
|
+
line-height: 3.75rem; /* 60px */
|
|
681
|
+
letter-spacing: -0.05em;
|
|
682
|
+
}
|
package/dist/ui/alert.js
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
|
-
export { Alert, AlertAction, AlertClose, AlertDescription, AlertTitle, alertVariants } from '../chunk-
|
|
2
|
-
import '../chunk-
|
|
3
|
-
import '../chunk-
|
|
1
|
+
export { Alert, AlertAction, AlertClose, AlertDescription, AlertTitle, alertVariants } from '../chunk-7ZXAU2CD.js';
|
|
2
|
+
import '../chunk-D4QCYBCD.js';
|
|
3
|
+
import '../chunk-V7M2NHUO.js';
|
|
4
4
|
import '../chunk-TYCPXAXF.js';
|
|
5
5
|
import '../chunk-YINJ5YZ5.js';
|
|
6
6
|
//# sourceMappingURL=alert.js.map
|
package/dist/ui/audio-player.js
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
|
-
export { AudioPlayer } from '../chunk-
|
|
2
|
-
import '../chunk-
|
|
3
|
-
import '../chunk-
|
|
1
|
+
export { AudioPlayer } from '../chunk-UAHCRXAG.js';
|
|
2
|
+
import '../chunk-D4QCYBCD.js';
|
|
3
|
+
import '../chunk-V7M2NHUO.js';
|
|
4
4
|
import '../chunk-TYCPXAXF.js';
|
|
5
5
|
import '../chunk-YINJ5YZ5.js';
|
|
6
6
|
//# sourceMappingURL=audio-player.js.map
|
package/dist/ui/badge.d.ts
CHANGED
|
@@ -4,8 +4,8 @@ import * as React from 'react';
|
|
|
4
4
|
import { VariantProps } from 'class-variance-authority';
|
|
5
5
|
|
|
6
6
|
declare const badgeVariants: (props?: ({
|
|
7
|
-
variant?: "default" | "destructive" | "outline" | "secondary" | "ghost" | "
|
|
8
|
-
size?: "
|
|
7
|
+
variant?: "link" | "default" | "destructive" | "outline" | "secondary" | "ghost" | "progress" | "muted" | "success" | "progress-completed" | null | undefined;
|
|
8
|
+
size?: "sm" | "lg" | "default" | null | undefined;
|
|
9
9
|
} & class_variance_authority_types.ClassProp) | undefined) => string;
|
|
10
10
|
interface BadgeProps extends React.ComponentProps<"span">, VariantProps<typeof badgeVariants> {
|
|
11
11
|
asChild?: boolean;
|
package/dist/ui/button.d.ts
CHANGED
|
@@ -4,8 +4,8 @@ import * as React from 'react';
|
|
|
4
4
|
import { VariantProps } from 'class-variance-authority';
|
|
5
5
|
|
|
6
6
|
declare const buttonVariants: (props?: ({
|
|
7
|
-
variant?: "default" | "destructive" | "outline" | "secondary" | "ghost" |
|
|
8
|
-
size?: "
|
|
7
|
+
variant?: "link" | "default" | "destructive" | "outline" | "secondary" | "ghost" | null | undefined;
|
|
8
|
+
size?: "xs" | "sm" | "lg" | "icon" | "default" | "icon-xs" | "icon-sm" | "icon-lg" | null | undefined;
|
|
9
9
|
} & class_variance_authority_types.ClassProp) | undefined) => string;
|
|
10
10
|
interface ButtonProps extends React.ComponentProps<"button">, VariantProps<typeof buttonVariants> {
|
|
11
11
|
asChild?: boolean;
|
package/dist/ui/chat-panel.js
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
|
-
export { ChatPanel } from '../chunk-
|
|
1
|
+
export { ChatPanel } from '../chunk-WUZODCC2.js';
|
|
2
2
|
import '../chunk-HZJRM5EK.js';
|
|
3
3
|
import '../chunk-MSLQRGSP.js';
|
|
4
|
-
import '../chunk-
|
|
4
|
+
import '../chunk-V7M2NHUO.js';
|
|
5
5
|
import '../chunk-3LXU5C35.js';
|
|
6
6
|
import '../chunk-7UMEJDC3.js';
|
|
7
7
|
import '../chunk-TYCPXAXF.js';
|
package/dist/ui/checkbox.d.ts
CHANGED
|
@@ -5,7 +5,7 @@ import { Checkbox as Checkbox$1 } from 'radix-ui';
|
|
|
5
5
|
import { VariantProps } from 'class-variance-authority';
|
|
6
6
|
|
|
7
7
|
declare const checkboxVariants: (props?: ({
|
|
8
|
-
size?: "
|
|
8
|
+
size?: "sm" | "lg" | "default" | null | undefined;
|
|
9
9
|
variant?: "default" | "circular" | null | undefined;
|
|
10
10
|
} & class_variance_authority_types.ClassProp) | undefined) => string;
|
|
11
11
|
interface CheckboxProps extends React.ComponentProps<typeof Checkbox$1.Root>, VariantProps<typeof checkboxVariants> {
|
package/dist/ui/empty.d.ts
CHANGED
|
@@ -5,7 +5,7 @@ import { VariantProps } from 'class-variance-authority';
|
|
|
5
5
|
declare function Empty({ className, ...props }: React.ComponentProps<"div">): react_jsx_runtime.JSX.Element;
|
|
6
6
|
declare function EmptyHeader({ className, ...props }: React.ComponentProps<"div">): react_jsx_runtime.JSX.Element;
|
|
7
7
|
declare const emptyMediaVariants: (props?: ({
|
|
8
|
-
variant?: "
|
|
8
|
+
variant?: "icon" | "default" | null | undefined;
|
|
9
9
|
} & class_variance_authority_types.ClassProp) | undefined) => string;
|
|
10
10
|
declare function EmptyMedia({ className, variant, ...props }: React.ComponentProps<"div"> & VariantProps<typeof emptyMediaVariants>): react_jsx_runtime.JSX.Element;
|
|
11
11
|
declare function EmptyTitle({ className, ...props }: React.ComponentProps<"div">): react_jsx_runtime.JSX.Element;
|
package/dist/ui/file-card.d.ts
CHANGED
|
@@ -4,7 +4,7 @@ import * as React from 'react';
|
|
|
4
4
|
import { VariantProps } from 'class-variance-authority';
|
|
5
5
|
|
|
6
6
|
declare const fileCardVariants: (props?: ({
|
|
7
|
-
size?: "sm" | "
|
|
7
|
+
size?: "sm" | "md" | "lg" | null | undefined;
|
|
8
8
|
} & class_variance_authority_types.ClassProp) | undefined) => string;
|
|
9
9
|
interface FileCardProps extends Omit<React.ComponentProps<"button">, "children" | "size">, VariantProps<typeof fileCardVariants> {
|
|
10
10
|
/** Nome do arquivo exibido como titulo */
|
|
@@ -4,7 +4,7 @@ import * as React from 'react';
|
|
|
4
4
|
import { VariantProps } from 'class-variance-authority';
|
|
5
5
|
|
|
6
6
|
declare const likeDislikeVariants: (props?: ({
|
|
7
|
-
size?: "
|
|
7
|
+
size?: "xs" | "sm" | "lg" | "default" | null | undefined;
|
|
8
8
|
} & class_variance_authority_types.ClassProp) | undefined) => string;
|
|
9
9
|
type LikeDislikeValue = "like" | "dislike" | null;
|
|
10
10
|
interface LikeDislikeProps extends Omit<React.ComponentProps<"div">, "onChange" | "defaultValue">, VariantProps<typeof likeDislikeVariants> {
|
package/dist/ui/like-dislike.js
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
|
-
export { LikeDislike, likeDislikeVariants } from '../chunk-
|
|
2
|
-
import '../chunk-
|
|
3
|
-
import '../chunk-
|
|
1
|
+
export { LikeDislike, likeDislikeVariants } from '../chunk-EXVLL3JP.js';
|
|
2
|
+
import '../chunk-D4QCYBCD.js';
|
|
3
|
+
import '../chunk-V7M2NHUO.js';
|
|
4
4
|
import '../chunk-7UMEJDC3.js';
|
|
5
5
|
import '../chunk-2WPH3IQP.js';
|
|
6
6
|
import '../chunk-TYCPXAXF.js';
|
package/dist/ui/live-waiting.js
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
|
-
export { LiveWaiting } from '../chunk-
|
|
1
|
+
export { LiveWaiting } from '../chunk-WXJKTVRI.js';
|
|
2
2
|
import '../chunk-MSLQRGSP.js';
|
|
3
|
-
import '../chunk-
|
|
3
|
+
import '../chunk-V7M2NHUO.js';
|
|
4
4
|
import '../chunk-NGOZFA33.js';
|
|
5
5
|
import '../chunk-TYCPXAXF.js';
|
|
6
6
|
import '../chunk-YINJ5YZ5.js';
|
|
@@ -4,10 +4,10 @@ import * as React from 'react';
|
|
|
4
4
|
import { VariantProps } from 'class-variance-authority';
|
|
5
5
|
|
|
6
6
|
declare const progressDotVariants: (props?: ({
|
|
7
|
-
size?: "
|
|
7
|
+
size?: "xs" | "sm" | "lg" | "default" | null | undefined;
|
|
8
8
|
} & class_variance_authority_types.ClassProp) | undefined) => string;
|
|
9
9
|
declare const dotVariants: (props?: ({
|
|
10
|
-
size?: "
|
|
10
|
+
size?: "xs" | "sm" | "lg" | "default" | null | undefined;
|
|
11
11
|
} & class_variance_authority_types.ClassProp) | undefined) => string;
|
|
12
12
|
interface ProgressDotProps extends React.ComponentProps<"div">, VariantProps<typeof dotVariants> {
|
|
13
13
|
/** Numero total de stages (2–10) */
|
|
@@ -4,7 +4,7 @@ import * as React from 'react';
|
|
|
4
4
|
import { VariantProps } from 'class-variance-authority';
|
|
5
5
|
|
|
6
6
|
declare const progressStagePillVariants: (props?: ({
|
|
7
|
-
size?: "
|
|
7
|
+
size?: "xs" | "sm" | "lg" | "default" | null | undefined;
|
|
8
8
|
} & class_variance_authority_types.ClassProp) | undefined) => string;
|
|
9
9
|
interface ProgressStageProps extends React.ComponentProps<"div">, VariantProps<typeof progressStagePillVariants> {
|
|
10
10
|
/** Numero total de stages (2–10) */
|
package/dist/ui/progress.d.ts
CHANGED
|
@@ -5,7 +5,7 @@ import { Progress as Progress$1 } from 'radix-ui';
|
|
|
5
5
|
import { VariantProps } from 'class-variance-authority';
|
|
6
6
|
|
|
7
7
|
declare const progressVariants: (props?: ({
|
|
8
|
-
size?: "
|
|
8
|
+
size?: "xs" | "sm" | "lg" | "default" | null | undefined;
|
|
9
9
|
} & class_variance_authority_types.ClassProp) | undefined) => string;
|
|
10
10
|
declare const indicatorVariants: (props?: ({
|
|
11
11
|
variant?: "default" | "destructive" | "secondary" | "muted" | null | undefined;
|
package/dist/ui/radio-group.d.ts
CHANGED
|
@@ -5,7 +5,7 @@ import { RadioGroup as RadioGroup$1 } from 'radix-ui';
|
|
|
5
5
|
import { VariantProps } from 'class-variance-authority';
|
|
6
6
|
|
|
7
7
|
declare const radioVariants: (props?: ({
|
|
8
|
-
size?: "
|
|
8
|
+
size?: "sm" | "lg" | "default" | null | undefined;
|
|
9
9
|
} & class_variance_authority_types.ClassProp) | undefined) => string;
|
|
10
10
|
interface RadioGroupProps extends React.ComponentProps<typeof RadioGroup$1.Root> {
|
|
11
11
|
}
|
package/dist/ui/slider.d.ts
CHANGED
|
@@ -5,7 +5,7 @@ import { Slider as Slider$1 } from 'radix-ui';
|
|
|
5
5
|
import { VariantProps } from 'class-variance-authority';
|
|
6
6
|
|
|
7
7
|
declare const sliderVariants: (props?: ({
|
|
8
|
-
size?: "
|
|
8
|
+
size?: "sm" | "lg" | "default" | null | undefined;
|
|
9
9
|
} & class_variance_authority_types.ClassProp) | undefined) => string;
|
|
10
10
|
interface SliderProps extends React.ComponentProps<typeof Slider$1.Root>, VariantProps<typeof sliderVariants> {
|
|
11
11
|
/** Classe de tema aplicada (ex: "theme-brand") */
|
package/dist/ui/sonner.js
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
|
-
export { Toaster, cycleToast } from '../chunk-
|
|
2
|
-
import '../chunk-
|
|
3
|
-
import '../chunk-
|
|
1
|
+
export { Toaster, cycleToast } from '../chunk-ELZCZ6ZH.js';
|
|
2
|
+
import '../chunk-D4QCYBCD.js';
|
|
3
|
+
import '../chunk-V7M2NHUO.js';
|
|
4
4
|
import '../chunk-TYCPXAXF.js';
|
|
5
5
|
import '../chunk-YINJ5YZ5.js';
|
|
6
6
|
//# sourceMappingURL=sonner.js.map
|
package/dist/ui/switch.d.ts
CHANGED
|
@@ -5,7 +5,7 @@ import { Switch as Switch$1 } from 'radix-ui';
|
|
|
5
5
|
import { VariantProps } from 'class-variance-authority';
|
|
6
6
|
|
|
7
7
|
declare const switchVariants: (props?: ({
|
|
8
|
-
size?: "
|
|
8
|
+
size?: "sm" | "lg" | "default" | null | undefined;
|
|
9
9
|
} & class_variance_authority_types.ClassProp) | undefined) => string;
|
|
10
10
|
interface SwitchProps extends React.ComponentProps<typeof Switch$1.Root>, VariantProps<typeof switchVariants> {
|
|
11
11
|
/** Classe de tema aplicada no estado checked (ex: "theme-brand") */
|
package/dist/ui/toggle.d.ts
CHANGED
|
@@ -6,7 +6,7 @@ import { Toggle as Toggle$1 } from 'radix-ui';
|
|
|
6
6
|
|
|
7
7
|
declare const toggleVariants: (props?: ({
|
|
8
8
|
variant?: "default" | "outline" | null | undefined;
|
|
9
|
-
size?: "
|
|
9
|
+
size?: "xs" | "sm" | "lg" | "icon" | "default" | "icon-xs" | "icon-sm" | "icon-lg" | null | undefined;
|
|
10
10
|
} & class_variance_authority_types.ClassProp) | undefined) => string;
|
|
11
11
|
interface ToggleProps extends React.ComponentProps<typeof Toggle$1.Root>, VariantProps<typeof toggleVariants> {
|
|
12
12
|
/** Preenche icones SVG quando o toggle esta ativo (on). Ideal para icones como Heart, Star, Bookmark. */
|
package/dist/ui/video-player.js
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
|
-
export { VideoPlayer } from '../chunk-
|
|
2
|
-
import '../chunk-
|
|
3
|
-
import '../chunk-
|
|
1
|
+
export { VideoPlayer } from '../chunk-BJIG33XF.js';
|
|
2
|
+
import '../chunk-D4QCYBCD.js';
|
|
3
|
+
import '../chunk-V7M2NHUO.js';
|
|
4
4
|
import '../chunk-TYCPXAXF.js';
|
|
5
5
|
import '../chunk-YINJ5YZ5.js';
|
|
6
6
|
//# sourceMappingURL=video-player.js.map
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@fluencypassdevs/cycle",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.5.1",
|
|
4
4
|
"description": "Cycle Design System — UI component library by Fluencypass",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"repository": {
|
|
@@ -27,6 +27,18 @@
|
|
|
27
27
|
"import": "./dist/ui/progress-dot.js",
|
|
28
28
|
"types": "./dist/ui/progress-dot.d.ts"
|
|
29
29
|
},
|
|
30
|
+
"./logos/fluencypass": {
|
|
31
|
+
"import": "./dist/logos/fluencypass.js",
|
|
32
|
+
"types": "./dist/logos/fluencypass.d.ts"
|
|
33
|
+
},
|
|
34
|
+
"./logos/product": {
|
|
35
|
+
"import": "./dist/logos/product.js",
|
|
36
|
+
"types": "./dist/logos/product.d.ts"
|
|
37
|
+
},
|
|
38
|
+
"./icons/lucide": {
|
|
39
|
+
"import": "./dist/icons/lucide.js",
|
|
40
|
+
"types": "./dist/icons/lucide.d.ts"
|
|
41
|
+
},
|
|
30
42
|
"./icons": {
|
|
31
43
|
"import": "./dist/icons/index.js",
|
|
32
44
|
"types": "./dist/icons/index.d.ts"
|