@tapizlabs/ui 0.2.15 → 0.2.18

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
@@ -119,8 +119,9 @@ interface LogoMarkProps {
119
119
  * - "whiteboard" = tabla sa skiciranim potezom
120
120
  * - "cloud" = oblak sa T monogramom (Tapiz Cloud Platform / status)
121
121
  * - "specs" = dokument/spec list sa redovima teksta i čekiranom stavkom (Tapiz Specs)
122
+ * - "pulse" = EKG kriva sa T monogramom (Tapiz Pulse — interni monitoring)
122
123
  */
123
- variant?: "lms" | "boards" | "playground" | "whiteboard" | "cloud" | "specs";
124
+ variant?: "lms" | "boards" | "playground" | "whiteboard" | "cloud" | "specs" | "pulse";
124
125
  }
125
126
  declare const LogoMark: ({ size, className, bgClassName, bgFill, bgOpacity, tone, variant, }: LogoMarkProps) => react.JSX.Element;
126
127
 
package/dist/index.js CHANGED
@@ -621,6 +621,20 @@ var LogoMark = ({
621
621
  fill: "none"
622
622
  }
623
623
  )
624
+ ] }),
625
+ variant === "pulse" && /* @__PURE__ */ jsxs6(Fragment, { children: [
626
+ /* @__PURE__ */ jsx6(
627
+ "path",
628
+ {
629
+ d: "M10 34 L20 34 L25 20 L30 46 L35 28 L39 34 L54 34",
630
+ stroke: glyph,
631
+ strokeWidth: "4.5",
632
+ strokeLinecap: "round",
633
+ strokeLinejoin: "round",
634
+ fill: "none"
635
+ }
636
+ ),
637
+ /* @__PURE__ */ jsx6("circle", { cx: "30", cy: "20", r: "3.5", fill: accentDetail })
624
638
  ] })
625
639
  ]
626
640
  }