@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.
Files changed (44) hide show
  1. package/dist/components/Title/Title/SlideEffect.d.ts +14 -0
  2. package/dist/components/Title/Title/Title.props.d.ts +20 -0
  3. package/dist/components/Title/Title/Title.state.d.ts +4 -0
  4. package/dist/pages/themeTest.page.d.ts +3 -0
  5. package/dist/web.cjs.development.js +266 -79
  6. package/dist/web.cjs.development.js.map +1 -1
  7. package/dist/web.cjs.production.min.js +1 -1
  8. package/dist/web.cjs.production.min.js.map +1 -1
  9. package/dist/web.esm.js +266 -79
  10. package/dist/web.esm.js.map +1 -1
  11. package/dist/web.umd.development.js +266 -79
  12. package/dist/web.umd.development.js.map +1 -1
  13. package/dist/web.umd.production.min.js +1 -1
  14. package/dist/web.umd.production.min.js.map +1 -1
  15. package/docs/components/Badge.mdx +1 -1
  16. package/docs/components/ColorPicker.mdx +16 -16
  17. package/docs/components/DragAndDrop.mdx +11 -11
  18. package/docs/components/Drawer.mdx +3 -3
  19. package/docs/components/Gradient.mdx +40 -40
  20. package/docs/components/Loader.mdx +17 -17
  21. package/docs/components/ProgressBar.mdx +14 -14
  22. package/docs/components/StatusIndicator.mdx +5 -5
  23. package/package.json +1 -1
  24. package/dist/bot/Bot.d.ts +0 -15
  25. package/dist/bot/Cache.d.ts +0 -13
  26. package/dist/bot/Config.d.ts +0 -13
  27. package/dist/bot/ContentFetcher.d.ts +0 -9
  28. package/dist/bot/DocuCode.d.ts +0 -19
  29. package/dist/bot/FileHandler.d.ts +0 -39
  30. package/dist/bot/ai/AnthropicConnector.d.ts +0 -6
  31. package/dist/bot/ai/GeminiConnector.d.ts +0 -7
  32. package/dist/bot/ai/GroqConnector.d.ts +0 -7
  33. package/dist/bot/ai/HuggingFaceConnector.d.ts +0 -6
  34. package/dist/bot/ai/OpenAIConnector.d.ts +0 -11
  35. package/dist/bot/ai/ReplicateConnector.d.ts +0 -7
  36. package/dist/bot/ai/SambaNovaConnector.d.ts +0 -6
  37. package/dist/bot/ai/ai.config.d.ts +0 -12
  38. package/dist/bot/ai/ai.service.d.ts +0 -36
  39. package/dist/bot/data.d.ts +0 -19
  40. package/dist/bot/extractors.d.ts +0 -8
  41. package/dist/bot/index.d.ts +0 -1
  42. package/dist/bot/prompt/1-project.d.ts +0 -1
  43. package/dist/bot/prompt/2-response.d.ts +0 -1
  44. 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
  };
@@ -0,0 +1,3 @@
1
+ import React from 'react';
2
+ export declare const ThemeTestPage: () => React.JSX.Element;
3
+ export default ThemeTestPage;