@tapizlabs/ui 0.2.24 → 0.2.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.
- package/dist/index.d.ts +2 -1
- package/dist/index.js +17 -0
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -121,8 +121,9 @@ interface LogoMarkProps {
|
|
|
121
121
|
* - "cloud" = oblak sa T monogramom (Tapiz Cloud Platform / status)
|
|
122
122
|
* - "specs" = dokument/spec list sa redovima teksta i čekiranom stavkom (Tapiz Specs)
|
|
123
123
|
* - "pulse" = EKG kriva sa T monogramom (Tapiz Pulse — interni monitoring)
|
|
124
|
+
* - "sentinel" = štit sa okom (Tapiz Sentinel — error monitoring / nadzor)
|
|
124
125
|
*/
|
|
125
|
-
variant?: "lms" | "boards" | "playground" | "whiteboard" | "cloud" | "specs" | "pulse";
|
|
126
|
+
variant?: "lms" | "boards" | "playground" | "whiteboard" | "cloud" | "specs" | "pulse" | "sentinel";
|
|
126
127
|
}
|
|
127
128
|
declare const LogoMark: ({ size, className, bgClassName, bgFill, bgOpacity, tone, variant, }: LogoMarkProps) => react.JSX.Element;
|
|
128
129
|
|
package/dist/index.js
CHANGED
|
@@ -639,6 +639,23 @@ var LogoMark = ({
|
|
|
639
639
|
}
|
|
640
640
|
),
|
|
641
641
|
/* @__PURE__ */ jsx6("circle", { cx: "30", cy: "20", r: "3.5", fill: accentDetail })
|
|
642
|
+
] }),
|
|
643
|
+
variant === "sentinel" && /* @__PURE__ */ jsxs6(Fragment, { children: [
|
|
644
|
+
/* @__PURE__ */ jsx6(
|
|
645
|
+
"path",
|
|
646
|
+
{
|
|
647
|
+
fill: glyph,
|
|
648
|
+
d: "M32 11 L50 18 V33 q0 13-18 20 Q14 46 14 33 V18 Z"
|
|
649
|
+
}
|
|
650
|
+
),
|
|
651
|
+
/* @__PURE__ */ jsx6(
|
|
652
|
+
"path",
|
|
653
|
+
{
|
|
654
|
+
d: "M21 32 q11-11 22 0 q-11 11-22 0Z",
|
|
655
|
+
fill: accentDetail
|
|
656
|
+
}
|
|
657
|
+
),
|
|
658
|
+
/* @__PURE__ */ jsx6("circle", { cx: "32", cy: "32", r: "4.2", fill: "#d4ff3a" })
|
|
642
659
|
] })
|
|
643
660
|
]
|
|
644
661
|
}
|