@app-studio/web 0.9.43 → 0.9.45
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/Title/Title/SlideEffect.d.ts +14 -0
- package/dist/components/Title/Title/Title.props.d.ts +20 -0
- package/dist/components/Title/Title/Title.state.d.ts +4 -0
- package/dist/pages/themeTest.page.d.ts +3 -0
- package/dist/web.cjs.development.js +266 -79
- package/dist/web.cjs.development.js.map +1 -1
- package/dist/web.cjs.production.min.js +1 -1
- package/dist/web.cjs.production.min.js.map +1 -1
- package/dist/web.esm.js +266 -79
- package/dist/web.esm.js.map +1 -1
- package/dist/web.umd.development.js +266 -79
- package/dist/web.umd.development.js.map +1 -1
- package/dist/web.umd.production.min.js +1 -1
- package/dist/web.umd.production.min.js.map +1 -1
- package/docs/components/Badge.mdx +1 -1
- package/docs/components/ColorPicker.mdx +16 -16
- package/docs/components/DragAndDrop.mdx +11 -11
- package/docs/components/Drawer.mdx +3 -3
- package/docs/components/Gradient.mdx +40 -40
- package/docs/components/Loader.mdx +17 -17
- package/docs/components/ProgressBar.mdx +14 -14
- package/docs/components/StatusIndicator.mdx +5 -5
- package/package.json +1 -1
- package/dist/bot/Bot.d.ts +0 -15
- package/dist/bot/Cache.d.ts +0 -13
- package/dist/bot/Config.d.ts +0 -13
- package/dist/bot/ContentFetcher.d.ts +0 -9
- package/dist/bot/DocuCode.d.ts +0 -19
- package/dist/bot/FileHandler.d.ts +0 -39
- package/dist/bot/ai/AnthropicConnector.d.ts +0 -6
- package/dist/bot/ai/GeminiConnector.d.ts +0 -7
- package/dist/bot/ai/GroqConnector.d.ts +0 -7
- package/dist/bot/ai/HuggingFaceConnector.d.ts +0 -6
- package/dist/bot/ai/OpenAIConnector.d.ts +0 -11
- package/dist/bot/ai/ReplicateConnector.d.ts +0 -7
- package/dist/bot/ai/SambaNovaConnector.d.ts +0 -6
- package/dist/bot/ai/ai.config.d.ts +0 -12
- package/dist/bot/ai/ai.service.d.ts +0 -36
- package/dist/bot/data.d.ts +0 -19
- package/dist/bot/extractors.d.ts +0 -8
- package/dist/bot/index.d.ts +0 -1
- package/dist/bot/prompt/1-project.d.ts +0 -1
- package/dist/bot/prompt/2-response.d.ts +0 -1
- package/dist/bot/prompt/3-comment.d.ts +0 -1
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
import React from 'react';
|
|
2
|
+
interface SlideEffectProps {
|
|
3
|
+
text: string;
|
|
4
|
+
duration?: number;
|
|
5
|
+
direction?: 'up' | 'down';
|
|
6
|
+
stagger?: number;
|
|
7
|
+
sequential?: boolean;
|
|
8
|
+
textStyle?: React.CSSProperties;
|
|
9
|
+
as?: React.ElementType;
|
|
10
|
+
wordProps?: any;
|
|
11
|
+
[key: string]: any;
|
|
12
|
+
}
|
|
13
|
+
export declare const SlideEffect: React.FC<SlideEffectProps>;
|
|
14
|
+
export default SlideEffect;
|
|
@@ -41,6 +41,26 @@ export interface TitleProps extends ViewProps {
|
|
|
41
41
|
* @default 1500
|
|
42
42
|
*/
|
|
43
43
|
highlightTypewriterDuration?: number;
|
|
44
|
+
/**
|
|
45
|
+
* Whether to apply a slide effect to the highlighted text
|
|
46
|
+
* @default false
|
|
47
|
+
*/
|
|
48
|
+
highlightSlide?: boolean;
|
|
49
|
+
/**
|
|
50
|
+
* Duration in milliseconds for the slide effect on highlighted text
|
|
51
|
+
* @default 500
|
|
52
|
+
*/
|
|
53
|
+
highlightSlideDuration?: number;
|
|
54
|
+
/**
|
|
55
|
+
* Delay in milliseconds between each word's animation start
|
|
56
|
+
* @default 50
|
|
57
|
+
*/
|
|
58
|
+
highlightSlideStagger?: number;
|
|
59
|
+
/**
|
|
60
|
+
* Whether to animate the slide effect sequentially (exit all then enter all)
|
|
61
|
+
* @default true
|
|
62
|
+
*/
|
|
63
|
+
highlightSlideSequential?: boolean;
|
|
44
64
|
/**
|
|
45
65
|
* Style of the highlight effect
|
|
46
66
|
* @default 'background'
|
|
@@ -7,4 +7,8 @@ export declare const useTitleState: (props: TitleProps) => {
|
|
|
7
7
|
finalDisplayedText: import("react").ReactNode;
|
|
8
8
|
activeHighlightTarget: string | string[] | undefined;
|
|
9
9
|
highlightTypewriter: boolean;
|
|
10
|
+
highlightSlide: boolean;
|
|
11
|
+
highlightSlideDuration: number;
|
|
12
|
+
highlightSlideStagger: number;
|
|
13
|
+
highlightSlideSequential: boolean;
|
|
10
14
|
};
|