@mhmo91/schmancy 0.9.24 → 0.9.25

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 (46) hide show
  1. package/custom-elements.json +30 -15
  2. package/dist/agent/schmancy.agent.js +99 -8
  3. package/dist/agent/schmancy.agent.js.map +1 -1
  4. package/dist/agent/schmancy.manifest.json +128 -3
  5. package/dist/area-CFLFXu0Z.cjs.map +1 -1
  6. package/dist/area-CfozaCAZ.js.map +1 -1
  7. package/dist/card-CTUaARLm.js.map +1 -1
  8. package/dist/card-DtN6p1Jq.cjs.map +1 -1
  9. package/dist/chips-B-27tj7O.cjs.map +1 -1
  10. package/dist/chips-DhAWrSgi.js.map +1 -1
  11. package/dist/handover/agent-runtime-followups.md +1 -1
  12. package/dist/handover/agent-runtime-v1.md +3 -3
  13. package/dist/handover/agent-runtime-v2-loopback.md +5 -5
  14. package/dist/lightbox-Cb5-XPWV.js.map +1 -1
  15. package/dist/lightbox-Dk2ICCBB.cjs.map +1 -1
  16. package/dist/radio-group-DYvIgv3P.cjs.map +1 -1
  17. package/dist/radio-group-DchZApJl.js.map +1 -1
  18. package/dist/table-B8H-zioX.js.map +1 -1
  19. package/dist/table-ChHS4xby.cjs.map +1 -1
  20. package/dist/tree.cjs.map +1 -1
  21. package/dist/tree.js.map +1 -1
  22. package/dist/typewriter.cjs.map +1 -1
  23. package/dist/typewriter.js.map +1 -1
  24. package/dist/typography.cjs.map +1 -1
  25. package/dist/typography.js.map +1 -1
  26. package/package.json +1 -1
  27. package/src/area/area.component.ts +14 -0
  28. package/src/card/card.ts +1 -0
  29. package/src/chips/assist-chip.ts +11 -2
  30. package/src/chips/suggestion-chip.ts +9 -6
  31. package/src/lightbox/lightbox.ts +11 -0
  32. package/src/radio-group/radio-button.ts +1 -0
  33. package/src/table/table.ts +8 -2
  34. package/src/tree/tree.ts +1 -0
  35. package/src/typewriter/typewriter.ts +12 -0
  36. package/src/typography/typography.ts +1 -0
  37. package/types/src/area/area.component.d.ts +14 -0
  38. package/types/src/card/card.d.ts +1 -0
  39. package/types/src/chips/assist-chip.d.ts +11 -2
  40. package/types/src/chips/suggestion-chip.d.ts +9 -6
  41. package/types/src/lightbox/lightbox.d.ts +11 -0
  42. package/types/src/radio-group/radio-button.d.ts +1 -0
  43. package/types/src/table/table.d.ts +8 -2
  44. package/types/src/tree/tree.d.ts +1 -0
  45. package/types/src/typewriter/typewriter.d.ts +12 -0
  46. package/types/src/typography/typography.d.ts +1 -0
@@ -1,5 +1,17 @@
1
1
  import { TemplateResult } from 'lit';
2
2
  declare const TypewriterElement_base: CustomElementConstructor & import("@mixins/index").Constructor<import("lit").LitElement> & import("@mixins/index").Constructor<import("@mixins/index").IBaseMixin>;
3
+ /**
4
+ * Typewriter effect — animates text typing/deletion with a cursor. Wraps the TypeIt library, lazy-loaded on first render.
5
+ *
6
+ * @element schmancy-typewriter
7
+ * @summary Drop string content as the default slot or use `<p>` / `<span>` with `cycle="A|B|C"` attribute children for cycling phrases. Set `loop` for infinite cycling, `once` to remember completion across sessions via sessionStorage.
8
+ * @example
9
+ * <schmancy-typewriter speed="35" cursor-char="|">
10
+ * Hello, world.
11
+ * </schmancy-typewriter>
12
+ * @platform span - Animated text container. Degrades to its raw text content if the tag never registers — animation is lost but content stays visible.
13
+ * @fires typeit-complete - When the animation finishes typing all content. Fires after the final `afterComplete` callback in the underlying TypeIt instance.
14
+ */
3
15
  export declare class TypewriterElement extends TypewriterElement_base {
4
16
  /**
5
17
  * Typing speed in milliseconds per character.
@@ -13,6 +13,7 @@ declare const SchmancyTypography_base: import("../../mixins").Constructor<Custom
13
13
  /**
14
14
  * @element schmancy-typography
15
15
  * @slot - The text for the typography.
16
+ * @fires change - When `editable` is true, fires on blur or Enter with `detail.value` set to the new text content. Not fired when `editable` is unset (the default).
16
17
  */
17
18
  export declare class SchmancyTypography extends SchmancyTypography_base {
18
19
  static shadowRootOptions: ShadowRootInit;