@helpai/elements 0.19.2 → 0.19.4

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/configurator.mjs CHANGED
@@ -348,12 +348,12 @@ var composerOptionsSchema = z10.object({
348
348
  import { z as z11 } from "zod";
349
349
  var welcomeAnimationSchema = z11.enum(["typewriter", "instant"]);
350
350
  var welcomeOptionsSchema = z11.object({
351
- animation: welcomeAnimationSchema.default("typewriter").describe(
351
+ animation: welcomeAnimationSchema.default("instant").describe(
352
352
  "How welcome messages render \u2014 `typewriter` types each message in character-by-character; `instant` shows them whole."
353
353
  ),
354
354
  speed: z11.number().int().min(1).max(2e3).default(60).describe("Typewriter speed in characters per second. Only meaningful when `animation = typewriter`.")
355
- }).loose().describe("How welcome messages render \u2014 typewriter effect with adjustable cps speed.").meta({
356
- examples: [{ animation: "typewriter", speed: 60 }, { animation: "instant" }]
355
+ }).loose().describe("How welcome messages render \u2014 instant by default; opt into a typewriter effect with adjustable cps speed.").meta({
356
+ examples: [{ animation: "instant" }, { animation: "typewriter", speed: 60 }]
357
357
  });
358
358
 
359
359
  // src/schema/widget/footer.ts