organify-ui 0.2.16 → 0.3.2
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/{chunk-I47BBGVI.js → chunk-A2H2TBSV.js} +16 -34
- package/dist/chunk-A2H2TBSV.js.map +1 -0
- package/dist/{chunk-INKNHHKT.js → chunk-GQZMW7XN.js} +212 -217
- package/dist/chunk-GQZMW7XN.js.map +1 -0
- package/dist/{chunk-HY7M3VZM.js → chunk-MZKEDV5W.js} +9 -9
- package/dist/{chunk-HY7M3VZM.js.map → chunk-MZKEDV5W.js.map} +1 -1
- package/dist/{chunk-5L6BWKVA.js → chunk-RFOKENE3.js} +7 -6
- package/dist/chunk-RFOKENE3.js.map +1 -0
- package/dist/chunk-UGX6D3AO.js +327 -0
- package/dist/chunk-UGX6D3AO.js.map +1 -0
- package/dist/{chunk-ERFN2H75.js → chunk-VHQZS77G.js} +9 -9
- package/dist/chunk-VHQZS77G.js.map +1 -0
- package/dist/components/chat/index.js +3 -3
- package/dist/components/notifications/index.js +3 -3
- package/dist/icons/index.js +1 -1
- package/dist/index.d.ts +23 -33
- package/dist/index.js +176 -187
- package/dist/index.js.map +1 -1
- package/dist/providers/theme-provider.d.ts +2 -2
- package/dist/providers/theme-provider.js +1 -1
- package/dist/tailwind-preset.js +77 -28
- package/dist/tailwind-preset.js.map +1 -1
- package/dist/tokens/index.d.ts +181 -99
- package/dist/tokens/index.js +1 -1
- package/package.json +2 -2
- package/src/globals.css +1007 -366
- package/dist/chunk-5L6BWKVA.js.map +0 -1
- package/dist/chunk-ERFN2H75.js.map +0 -1
- package/dist/chunk-HZXKUGFH.js +0 -271
- package/dist/chunk-HZXKUGFH.js.map +0 -1
- package/dist/chunk-I47BBGVI.js.map +0 -1
- package/dist/chunk-INKNHHKT.js.map +0 -1
|
@@ -3,8 +3,8 @@ import { jsxs, jsx } from 'react/jsx-runtime';
|
|
|
3
3
|
function OrgDiamond({ size = 24, ...props }) {
|
|
4
4
|
return /* @__PURE__ */ jsxs("svg", { width: size, height: size, viewBox: "0 0 24 24", fill: "none", xmlns: "http://www.w3.org/2000/svg", ...props, children: [
|
|
5
5
|
/* @__PURE__ */ jsx("defs", { children: /* @__PURE__ */ jsxs("linearGradient", { id: "org-diamond-grad", x1: "4", y1: "4", x2: "20", y2: "20", gradientUnits: "userSpaceOnUse", children: [
|
|
6
|
-
/* @__PURE__ */ jsx("stop", { stopColor: "#
|
|
7
|
-
/* @__PURE__ */ jsx("stop", { offset: "1", stopColor: "#
|
|
6
|
+
/* @__PURE__ */ jsx("stop", { stopColor: "#7C3AED" }),
|
|
7
|
+
/* @__PURE__ */ jsx("stop", { offset: "1", stopColor: "#6D28D9" })
|
|
8
8
|
] }) }),
|
|
9
9
|
/* @__PURE__ */ jsx("rect", { x: "12", y: "2.34", width: "13.66", height: "13.66", rx: "2", transform: "rotate(45 12 2.34)", fill: "url(#org-diamond-grad)" })
|
|
10
10
|
] });
|
|
@@ -12,11 +12,11 @@ function OrgDiamond({ size = 24, ...props }) {
|
|
|
12
12
|
function OrgLogo({ size = 32, ...props }) {
|
|
13
13
|
return /* @__PURE__ */ jsxs("svg", { width: size, height: size, viewBox: "0 0 32 32", fill: "none", xmlns: "http://www.w3.org/2000/svg", ...props, children: [
|
|
14
14
|
/* @__PURE__ */ jsx("defs", { children: /* @__PURE__ */ jsxs("linearGradient", { id: "org-logo-grad", x1: "10", y1: "10", x2: "22", y2: "22", gradientUnits: "userSpaceOnUse", children: [
|
|
15
|
-
/* @__PURE__ */ jsx("stop", { stopColor: "#
|
|
16
|
-
/* @__PURE__ */ jsx("stop", { offset: "1", stopColor: "#
|
|
15
|
+
/* @__PURE__ */ jsx("stop", { stopColor: "#7C3AED" }),
|
|
16
|
+
/* @__PURE__ */ jsx("stop", { offset: "1", stopColor: "#6D28D9" })
|
|
17
17
|
] }) }),
|
|
18
18
|
/* @__PURE__ */ jsx("rect", { x: "2", y: "2", width: "28", height: "28", rx: "7", stroke: "currentColor", strokeOpacity: "0.25", strokeWidth: "1.5" }),
|
|
19
|
-
/* @__PURE__ */ jsx("path", { d: "M26 2 L30 2 L30 6", stroke: "#
|
|
19
|
+
/* @__PURE__ */ jsx("path", { d: "M26 2 L30 2 L30 6", stroke: "#7C3AED", strokeOpacity: "0.5", strokeWidth: "1.5", strokeLinecap: "round", fill: "none" }),
|
|
20
20
|
/* @__PURE__ */ jsx("rect", { x: "16", y: "7.17", width: "12.49", height: "12.49", rx: "1.5", transform: "rotate(45 16 7.17)", fill: "url(#org-logo-grad)" }),
|
|
21
21
|
/* @__PURE__ */ jsx("circle", { cx: "16", cy: "16", r: "1.2", fill: "white", fillOpacity: "0.6" })
|
|
22
22
|
] });
|
|
@@ -24,8 +24,8 @@ function OrgLogo({ size = 32, ...props }) {
|
|
|
24
24
|
function OrgWordmark({ size = 24, ...props }) {
|
|
25
25
|
return /* @__PURE__ */ jsxs("svg", { width: size, height: size, viewBox: "0 0 24 24", fill: "none", xmlns: "http://www.w3.org/2000/svg", ...props, children: [
|
|
26
26
|
/* @__PURE__ */ jsx("defs", { children: /* @__PURE__ */ jsxs("linearGradient", { id: "org-word-grad", x1: "3", y1: "3", x2: "21", y2: "21", gradientUnits: "userSpaceOnUse", children: [
|
|
27
|
-
/* @__PURE__ */ jsx("stop", { stopColor: "#
|
|
28
|
-
/* @__PURE__ */ jsx("stop", { offset: "1", stopColor: "#
|
|
27
|
+
/* @__PURE__ */ jsx("stop", { stopColor: "#7C3AED" }),
|
|
28
|
+
/* @__PURE__ */ jsx("stop", { offset: "1", stopColor: "#6D28D9" })
|
|
29
29
|
] }) }),
|
|
30
30
|
/* @__PURE__ */ jsx(
|
|
31
31
|
"path",
|
|
@@ -563,5 +563,5 @@ function OrgCelebrate({ size = 24, ...props }) {
|
|
|
563
563
|
}
|
|
564
564
|
|
|
565
565
|
export { OrgAI, OrgActivity, OrgArrowLeft, OrgArrowRight, OrgAttachment, OrgBell, OrgBoard, OrgCalendar, OrgCelebrate, OrgChart, OrgChat, OrgCheck, OrgCheckCircle, OrgChevronDown, OrgChevronLeft, OrgChevronRight, OrgChevronUp, OrgClock, OrgClose, OrgComment, OrgCopy, OrgCreditCard, OrgDeveloper, OrgDiamond, OrgDoor, OrgDownload, OrgEdit, OrgError, OrgExecutive, OrgEye, OrgEyeOff, OrgFile, OrgFilter, OrgFlag, OrgFolder, OrgGauge, OrgGlobe, OrgGrid, OrgHeart, OrgHome, OrgInfo, OrgIntegration, OrgLink, OrgList, OrgLock, OrgLogo, OrgLogout, OrgMail, OrgMention, OrgMenu, OrgMoon, OrgPMO, OrgPause, OrgPlay, OrgPlus, OrgProjectManager, OrgReport, OrgRocket, OrgSearch, OrgSettings, OrgShield, OrgSort, OrgSprint, OrgStakeholder, OrgStar, OrgSun, OrgTag, OrgTarget, OrgTeam, OrgTrash, OrgTutorial, OrgUnlock, OrgUpload, OrgUser, OrgWarning, OrgWave, OrgWordmark, OrgWorkflow, OrgWorkspace, OrgZap };
|
|
566
|
-
//# sourceMappingURL=chunk-
|
|
567
|
-
//# sourceMappingURL=chunk-
|
|
566
|
+
//# sourceMappingURL=chunk-MZKEDV5W.js.map
|
|
567
|
+
//# sourceMappingURL=chunk-MZKEDV5W.js.map
|