@myelmut/design-system 0.1.34 → 0.1.36
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/index.cjs +1 -1
- package/dist/index.cjs.map +1 -1
- package/dist/index.es.js +39 -39
- package/dist/index.es.js.map +1 -1
- package/dist/types/index.d.ts +3 -2
- package/package.json +1 -1
package/dist/types/index.d.ts
CHANGED
|
@@ -657,11 +657,12 @@ declare interface ToggleProps {
|
|
|
657
657
|
'aria-label'?: string;
|
|
658
658
|
}
|
|
659
659
|
|
|
660
|
-
export declare const TransitionCard: ({ variant,
|
|
660
|
+
export declare const TransitionCard: ({ id, variant, active, className }: TransitionCardProps) => JSX.Element;
|
|
661
661
|
|
|
662
662
|
declare interface TransitionCardProps {
|
|
663
|
+
id: string;
|
|
663
664
|
variant: '25%' | '50%' | '75%' | '100%';
|
|
664
|
-
|
|
665
|
+
active?: boolean;
|
|
665
666
|
className?: string;
|
|
666
667
|
}
|
|
667
668
|
|