@tapizlabs/ui 0.2.7 → 0.2.8
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 +3 -1
- package/dist/index.js +15 -11
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -102,8 +102,10 @@ interface LogoMarkProps {
|
|
|
102
102
|
bgClassName?: string;
|
|
103
103
|
bgFill?: string;
|
|
104
104
|
bgOpacity?: number;
|
|
105
|
+
/** Product glyph: "lms" = T monogram, "boards" = kanban columns */
|
|
106
|
+
variant?: "lms" | "boards";
|
|
105
107
|
}
|
|
106
|
-
declare const LogoMark: ({ size, className, }: LogoMarkProps) => react.JSX.Element;
|
|
108
|
+
declare const LogoMark: ({ size, className, bgClassName, bgFill, bgOpacity, variant, }: LogoMarkProps) => react.JSX.Element;
|
|
107
109
|
|
|
108
110
|
declare const FormIcon: ({ size, className, style }: IconProps) => react.JSX.Element;
|
|
109
111
|
declare const CalendarWeek: ({ size, className, style }: IconProps) => react.JSX.Element;
|
package/dist/index.js
CHANGED
|
@@ -494,24 +494,28 @@ var Clock = ({ size = 13, className, style }) => /* @__PURE__ */ jsxs5("svg", {
|
|
|
494
494
|
import { jsx as jsx6, jsxs as jsxs6 } from "react/jsx-runtime";
|
|
495
495
|
var LogoMark = ({
|
|
496
496
|
size = 28,
|
|
497
|
-
className
|
|
497
|
+
className,
|
|
498
|
+
bgClassName,
|
|
499
|
+
bgFill = "#1496b3",
|
|
500
|
+
bgOpacity = 1,
|
|
501
|
+
variant = "lms"
|
|
498
502
|
}) => /* @__PURE__ */ jsxs6(
|
|
499
503
|
"svg",
|
|
500
504
|
{
|
|
501
505
|
width: size,
|
|
502
506
|
height: size,
|
|
503
|
-
className
|
|
504
|
-
viewBox: "0 0
|
|
507
|
+
className,
|
|
508
|
+
viewBox: "0 0 64 64",
|
|
505
509
|
fill: "none",
|
|
506
510
|
children: [
|
|
507
|
-
/* @__PURE__ */ jsx6("rect", { width: "
|
|
508
|
-
/* @__PURE__ */
|
|
509
|
-
|
|
510
|
-
|
|
511
|
-
/* @__PURE__ */
|
|
512
|
-
|
|
513
|
-
/* @__PURE__ */ jsx6("rect", { x: "
|
|
514
|
-
/* @__PURE__ */ jsx6("rect", { x: "
|
|
511
|
+
/* @__PURE__ */ jsx6("rect", { width: "64", height: "64", rx: "14", fill: bgFill, opacity: bgOpacity, className: bgClassName }),
|
|
512
|
+
variant === "lms" ? /* @__PURE__ */ jsxs6("g", { fill: "#fff", children: [
|
|
513
|
+
/* @__PURE__ */ jsx6("rect", { x: "14", y: "14", width: "36", height: "10", rx: "3" }),
|
|
514
|
+
/* @__PURE__ */ jsx6("rect", { x: "27", y: "14", width: "10", height: "36", rx: "3" })
|
|
515
|
+
] }) : /* @__PURE__ */ jsxs6("g", { fill: "#fff", children: [
|
|
516
|
+
/* @__PURE__ */ jsx6("rect", { x: "13", y: "15", width: "10", height: "26", rx: "5" }),
|
|
517
|
+
/* @__PURE__ */ jsx6("rect", { x: "27", y: "15", width: "10", height: "34", rx: "5" }),
|
|
518
|
+
/* @__PURE__ */ jsx6("rect", { x: "41", y: "15", width: "10", height: "20", rx: "5" })
|
|
515
519
|
] })
|
|
516
520
|
]
|
|
517
521
|
}
|