odaptos_design_system 2.0.207 → 2.0.208
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/DesignTokens/Animations/MediaControl/BigEmojisAnimation.d.ts +9 -0
- package/dist/DesignTokens/Animations/MediaControl/FlyingDudeAnimation.d.ts +9 -0
- package/dist/DesignTokens/Animations/MediaControl/NewLoaderAnimation.d.ts +9 -0
- package/dist/DesignTokens/Animations/MediaControl/RecordingAnimation.d.ts +1 -1
- package/dist/DesignTokens/Animations/MediaControl/RobotAnimation.d.ts +9 -0
- package/dist/DesignTokens/Animations/MediaControl/TestimonialAnimation.d.ts +9 -0
- package/dist/DesignTokens/Animations/index.d.ts +5 -0
- package/dist/odaptos_design_system.cjs.development.js.map +1 -1
- package/dist/odaptos_design_system.cjs.production.min.js.map +1 -1
- package/dist/odaptos_design_system.esm.js.map +1 -1
- package/package.json +1 -1
- package/src/DesignTokens/Animations/MediaControl/BigEmojisAnimation.tsx +24 -0
- package/src/DesignTokens/Animations/MediaControl/FlyingDudeAnimation.tsx +24 -0
- package/src/DesignTokens/Animations/MediaControl/NewLoaderAnimation.tsx +24 -0
- package/src/DesignTokens/Animations/MediaControl/RecordingAnimation.tsx +3 -8
- package/src/DesignTokens/Animations/MediaControl/RobotAnimation.tsx +24 -0
- package/src/DesignTokens/Animations/MediaControl/TestimonialAnimation.tsx +24 -0
- package/src/DesignTokens/Animations/index.ts +6 -1
- package/src/DesignTokens/Animations/lotties/Testimonial.json +4457 -0
- package/src/DesignTokens/Animations/lotties/big_emojis.json +4181 -0
- package/src/DesignTokens/Animations/lotties/flyin_dude.json +4756 -0
- package/src/DesignTokens/Animations/lotties/new_loader.json +1 -0
- package/src/DesignTokens/Animations/lotties/robot.json +4002 -0
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
import React from 'react';
|
|
2
|
+
declare type BigEmojisAnimationProps = {
|
|
3
|
+
autoplay?: boolean;
|
|
4
|
+
loop?: boolean;
|
|
5
|
+
showControls?: boolean;
|
|
6
|
+
style?: React.CSSProperties;
|
|
7
|
+
};
|
|
8
|
+
export default function BigEmojisAnimation({ autoplay, loop, showControls, style, }: BigEmojisAnimationProps): React.JSX.Element;
|
|
9
|
+
export {};
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
import React from 'react';
|
|
2
|
+
declare type FlyingDudeAnimationProps = {
|
|
3
|
+
autoplay?: boolean;
|
|
4
|
+
loop?: boolean;
|
|
5
|
+
showControls?: boolean;
|
|
6
|
+
style?: React.CSSProperties;
|
|
7
|
+
};
|
|
8
|
+
export default function FlyingDudeAnimation({ autoplay, loop, showControls, style, }: FlyingDudeAnimationProps): React.JSX.Element;
|
|
9
|
+
export {};
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
import React from 'react';
|
|
2
|
+
declare type NewLoaderAnimationProps = {
|
|
3
|
+
autoplay?: boolean;
|
|
4
|
+
loop?: boolean;
|
|
5
|
+
showControls?: boolean;
|
|
6
|
+
style?: React.CSSProperties;
|
|
7
|
+
};
|
|
8
|
+
export default function NewLoaderAnimation({ autoplay, loop, showControls, style, }: NewLoaderAnimationProps): React.JSX.Element;
|
|
9
|
+
export {};
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
import React from 'react';
|
|
2
|
+
declare type RobotAnimationProps = {
|
|
3
|
+
autoplay?: boolean;
|
|
4
|
+
loop?: boolean;
|
|
5
|
+
showControls?: boolean;
|
|
6
|
+
style?: React.CSSProperties;
|
|
7
|
+
};
|
|
8
|
+
export default function RobotAnimation({ autoplay, loop, showControls, style, }: RobotAnimationProps): React.JSX.Element;
|
|
9
|
+
export {};
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
import React from 'react';
|
|
2
|
+
declare type TestimonialAnimationProps = {
|
|
3
|
+
autoplay?: boolean;
|
|
4
|
+
loop?: boolean;
|
|
5
|
+
showControls?: boolean;
|
|
6
|
+
style?: React.CSSProperties;
|
|
7
|
+
};
|
|
8
|
+
export default function TestimonialAnimation({ autoplay, loop, showControls, style, }: TestimonialAnimationProps): React.JSX.Element;
|
|
9
|
+
export {};
|
|
@@ -1,2 +1,7 @@
|
|
|
1
1
|
export { default as RecordingAnimation } from './MediaControl/RecordingAnimation';
|
|
2
2
|
export { default as SoundInputAnimation } from './MediaControl/SoundInputAnimation';
|
|
3
|
+
export { default as BigEmojisAnimation } from './MediaControl/BigEmojisAnimation';
|
|
4
|
+
export { default as FlyingDudeAnimation } from './MediaControl/FlyingDudeAnimation';
|
|
5
|
+
export { default as RobotAnimation } from './MediaControl/RobotAnimation';
|
|
6
|
+
export { default as NewLoaderAnimation } from './MediaControl/NewLoaderAnimation';
|
|
7
|
+
export { default as TestimonialAnimation } from './MediaControl/TestimonialAnimation';
|