@harnessio/ui 0.0.226 → 0.0.227

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.d.ts CHANGED
@@ -2052,6 +2052,8 @@ declare namespace components {
2052
2052
  shimmerVariants,
2053
2053
  ShimmerProps,
2054
2054
  Shimmer,
2055
+ TypingAnimationProps,
2056
+ TypingAnimation,
2055
2057
  ThemeDialog,
2056
2058
  getModeColorContrastFromFullTheme,
2057
2059
  ThemeInterface,
@@ -15353,6 +15355,15 @@ declare interface TypeTagger {
15353
15355
  when?: string;
15354
15356
  }
15355
15357
 
15358
+ declare const TypingAnimation: MemoExoticComponent<({ text, typingSpeed, delay, onComplete, ...rest }: TypingAnimationProps) => JSX_2.Element>;
15359
+
15360
+ declare interface TypingAnimationProps extends Omit<TextProps, 'children' | 'ref'> {
15361
+ text: string;
15362
+ typingSpeed?: number;
15363
+ delay?: number;
15364
+ onComplete?: () => void;
15365
+ }
15366
+
15356
15367
  declare interface TypingProps {
15357
15368
  avatar?: ReactNode;
15358
15369
  }
package/dist/index.js CHANGED
@@ -1,5 +1,5 @@
1
1
  import { i as s } from "./index-Ccm12l39.js";
2
- import { i as t } from "./index-yy4P7w4N.js";
2
+ import { i as t } from "./index-CKWZmzUD.js";
3
3
  import { i as p } from "./index-CYwilgZH.js";
4
4
  import { i as m } from "./index-pxJIr-rq.js";
5
5
  import { i as f } from "./index-B9NTZWIh.js";
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@harnessio/ui",
3
3
  "description": "Harness Canary UI component library",
4
- "version": "0.0.226",
4
+ "version": "0.0.227",
5
5
  "private": false,
6
6
  "type": "module",
7
7
  "main": "./dist/index.js",
@@ -116,9 +116,9 @@
116
116
  "zod": "^3.23.8",
117
117
  "@harnessio/core-design-system": "0.0.1",
118
118
  "@harnessio/filters": "0.0.4",
119
+ "@harnessio/forms": "0.4.2",
119
120
  "@harnessio/pipeline-graph": "1.3.0",
120
- "@harnessio/yaml-editor": "0.22.0",
121
- "@harnessio/forms": "0.4.2"
121
+ "@harnessio/yaml-editor": "0.22.0"
122
122
  },
123
123
  "peerDependencies": {
124
124
  "react": "^17.0.2",