@loomhq/lens 11.22.2 → 11.24.0
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/cjs/icons/calendar.js +66 -0
- package/dist/cjs/icons/index.js +747 -694
- package/dist/cjs/icons/zoom-logo.js +77 -0
- package/dist/esm/icons/calendar.js +39 -0
- package/dist/esm/icons/index.js +941 -888
- package/dist/esm/icons/zoom-logo.js +50 -0
- package/dist/types/components/icon/available-icons/calendar.d.ts +2 -0
- package/dist/types/components/icon/available-icons/index.d.ts +2 -0
- package/dist/types/components/icon/available-icons/zoom-logo.d.ts +2 -0
- package/dist/types/icons/calendar.d.ts +2 -0
- package/dist/types/icons/index.d.ts +2 -0
- package/dist/types/icons/zoom-logo.d.ts +2 -0
- package/package.json +1 -1
|
@@ -0,0 +1,77 @@
|
|
|
1
|
+
var __create = Object.create;
|
|
2
|
+
var __defProp = Object.defineProperty;
|
|
3
|
+
var __getOwnPropDesc = Object.getOwnPropertyDescriptor;
|
|
4
|
+
var __getOwnPropNames = Object.getOwnPropertyNames;
|
|
5
|
+
var __getOwnPropSymbols = Object.getOwnPropertySymbols;
|
|
6
|
+
var __getProtoOf = Object.getPrototypeOf;
|
|
7
|
+
var __hasOwnProp = Object.prototype.hasOwnProperty;
|
|
8
|
+
var __propIsEnum = Object.prototype.propertyIsEnumerable;
|
|
9
|
+
var __defNormalProp = (obj, key, value) => key in obj ? __defProp(obj, key, { enumerable: true, configurable: true, writable: true, value }) : obj[key] = value;
|
|
10
|
+
var __spreadValues = (a, b) => {
|
|
11
|
+
for (var prop in b || (b = {}))
|
|
12
|
+
if (__hasOwnProp.call(b, prop))
|
|
13
|
+
__defNormalProp(a, prop, b[prop]);
|
|
14
|
+
if (__getOwnPropSymbols)
|
|
15
|
+
for (var prop of __getOwnPropSymbols(b)) {
|
|
16
|
+
if (__propIsEnum.call(b, prop))
|
|
17
|
+
__defNormalProp(a, prop, b[prop]);
|
|
18
|
+
}
|
|
19
|
+
return a;
|
|
20
|
+
};
|
|
21
|
+
var __export = (target, all) => {
|
|
22
|
+
for (var name in all)
|
|
23
|
+
__defProp(target, name, { get: all[name], enumerable: true });
|
|
24
|
+
};
|
|
25
|
+
var __copyProps = (to, from, except, desc) => {
|
|
26
|
+
if (from && typeof from === "object" || typeof from === "function") {
|
|
27
|
+
for (let key of __getOwnPropNames(from))
|
|
28
|
+
if (!__hasOwnProp.call(to, key) && key !== except)
|
|
29
|
+
__defProp(to, key, { get: () => from[key], enumerable: !(desc = __getOwnPropDesc(from, key)) || desc.enumerable });
|
|
30
|
+
}
|
|
31
|
+
return to;
|
|
32
|
+
};
|
|
33
|
+
var __toESM = (mod, isNodeMode, target) => (target = mod != null ? __create(__getProtoOf(mod)) : {}, __copyProps(
|
|
34
|
+
// If the importer is in node compatibility mode or this is not an ESM
|
|
35
|
+
// file that has been converted to a CommonJS file using a Babel-
|
|
36
|
+
// compatible transform (i.e. "__esModule" has not been set), then set
|
|
37
|
+
// "default" to the CommonJS "module.exports" for node compatibility.
|
|
38
|
+
isNodeMode || !mod || !mod.__esModule ? __defProp(target, "default", { value: mod, enumerable: true }) : target,
|
|
39
|
+
mod
|
|
40
|
+
));
|
|
41
|
+
var __toCommonJS = (mod) => __copyProps(__defProp({}, "__esModule", { value: true }), mod);
|
|
42
|
+
|
|
43
|
+
// src/components/icon/available-icons/zoom-logo.tsx
|
|
44
|
+
var zoom_logo_exports = {};
|
|
45
|
+
__export(zoom_logo_exports, {
|
|
46
|
+
SvgZoomLogo: () => SvgZoomLogo
|
|
47
|
+
});
|
|
48
|
+
module.exports = __toCommonJS(zoom_logo_exports);
|
|
49
|
+
var React = __toESM(require("react"));
|
|
50
|
+
function SvgZoomLogo(props) {
|
|
51
|
+
return /* @__PURE__ */ React.createElement("svg", __spreadValues({ viewBox: "0 0 24 24", fill: "none" }, props), /* @__PURE__ */ React.createElement(
|
|
52
|
+
"path",
|
|
53
|
+
{
|
|
54
|
+
fill: "url(#a)",
|
|
55
|
+
d: "M22 12a19.8 19.8 0 0 1-.25 3.14 8.002 8.002 0 0 1-6.61 6.61c-2.08.334-4.2.334-6.28 0a8.003 8.003 0 0 1-6.61-6.61 19.79 19.79 0 0 1 0-6.28 8.002 8.002 0 0 1 6.61-6.61 19.79 19.79 0 0 1 6.28 0 8.002 8.002 0 0 1 6.61 6.61c.167 1.038.25 2.088.25 3.14Z"
|
|
56
|
+
}
|
|
57
|
+
), /* @__PURE__ */ React.createElement(
|
|
58
|
+
"path",
|
|
59
|
+
{
|
|
60
|
+
fill: "#fff",
|
|
61
|
+
d: "M7.972 13.531h-2.48a.427.427 0 0 1-.303-.732l1.718-1.718H5.675a.613.613 0 0 1-.612-.612H7.35a.428.428 0 0 1 .304.732L5.935 12.92H7.36c.338 0 .612.274.612.612Zm10.965-1.914a1.196 1.196 0 0 0-2.082-.798 1.196 1.196 0 0 0-2.083.798v1.914a.613.613 0 0 0 .612-.612v-1.302a.583.583 0 0 1 1.164 0v1.302c0 .338.274.612.613.612v-1.914a.583.583 0 0 1 1.164 0v1.302c0 .338.274.612.612.612v-1.914ZM14.465 12a1.577 1.577 0 1 1-3.153 0 1.577 1.577 0 0 1 3.153 0Zm-.612 0a.965.965 0 1 0-1.93 0 .965.965 0 0 0 1.93 0Zm-2.787 0a1.578 1.578 0 1 1-3.155 0 1.578 1.578 0 0 1 3.155 0Zm-.613 0a.965.965 0 1 0-1.93 0 .965.965 0 0 0 1.93 0Z"
|
|
62
|
+
}
|
|
63
|
+
), /* @__PURE__ */ React.createElement("defs", null, /* @__PURE__ */ React.createElement(
|
|
64
|
+
"linearGradient",
|
|
65
|
+
{
|
|
66
|
+
id: "a",
|
|
67
|
+
x1: 6.734,
|
|
68
|
+
x2: 17.268,
|
|
69
|
+
y1: 21.122,
|
|
70
|
+
y2: 2.878,
|
|
71
|
+
gradientUnits: "userSpaceOnUse"
|
|
72
|
+
},
|
|
73
|
+
/* @__PURE__ */ React.createElement("stop", { stopColor: "#0845BF" }),
|
|
74
|
+
/* @__PURE__ */ React.createElement("stop", { offset: 0.6, stopColor: "#0B5CFF" }),
|
|
75
|
+
/* @__PURE__ */ React.createElement("stop", { offset: 1, stopColor: "#4F90EE" })
|
|
76
|
+
)));
|
|
77
|
+
}
|
|
@@ -0,0 +1,39 @@
|
|
|
1
|
+
var __defProp = Object.defineProperty;
|
|
2
|
+
var __getOwnPropSymbols = Object.getOwnPropertySymbols;
|
|
3
|
+
var __hasOwnProp = Object.prototype.hasOwnProperty;
|
|
4
|
+
var __propIsEnum = Object.prototype.propertyIsEnumerable;
|
|
5
|
+
var __defNormalProp = (obj, key, value) => key in obj ? __defProp(obj, key, { enumerable: true, configurable: true, writable: true, value }) : obj[key] = value;
|
|
6
|
+
var __spreadValues = (a, b) => {
|
|
7
|
+
for (var prop in b || (b = {}))
|
|
8
|
+
if (__hasOwnProp.call(b, prop))
|
|
9
|
+
__defNormalProp(a, prop, b[prop]);
|
|
10
|
+
if (__getOwnPropSymbols)
|
|
11
|
+
for (var prop of __getOwnPropSymbols(b)) {
|
|
12
|
+
if (__propIsEnum.call(b, prop))
|
|
13
|
+
__defNormalProp(a, prop, b[prop]);
|
|
14
|
+
}
|
|
15
|
+
return a;
|
|
16
|
+
};
|
|
17
|
+
|
|
18
|
+
// src/components/icon/available-icons/calendar.tsx
|
|
19
|
+
import * as React from "react";
|
|
20
|
+
function SvgCalendar(props) {
|
|
21
|
+
return /* @__PURE__ */ React.createElement("svg", __spreadValues({ viewBox: "0 0 24 24", fill: "none" }, props), /* @__PURE__ */ React.createElement(
|
|
22
|
+
"path",
|
|
23
|
+
{
|
|
24
|
+
fillRule: "evenodd",
|
|
25
|
+
fill: "currentColor",
|
|
26
|
+
d: "M19.5 2.625h-1.875V2.25a1.125 1.125 0 1 0-2.25 0v.375h-6.75V2.25a1.125 1.125 0 0 0-2.25 0v.375H4.5A1.875 1.875 0 0 0 2.625 4.5v15A1.875 1.875 0 0 0 4.5 21.375h15a1.875 1.875 0 0 0 1.875-1.875v-15A1.875 1.875 0 0 0 19.5 2.625ZM6.375 4.875a1.125 1.125 0 0 0 2.25 0h6.75a1.125 1.125 0 1 0 2.25 0h1.5v2.25H4.875v-2.25h1.5Zm-1.5 14.25v-9.75h14.25v9.75H4.875Z"
|
|
27
|
+
}
|
|
28
|
+
), /* @__PURE__ */ React.createElement(
|
|
29
|
+
"path",
|
|
30
|
+
{
|
|
31
|
+
fillRule: "evenodd",
|
|
32
|
+
fill: "currentColor",
|
|
33
|
+
d: "M7 12.177c0-.374.303-.677.676-.677h.677c.374 0 .676.303.676.677v.676a.676.676 0 0 1-.676.676h-.677A.677.677 0 0 1 7 12.853v-.676ZM7 15.775c0-.373.303-.676.676-.676h.677c.374 0 .676.303.676.676v.677a.676.676 0 0 1-.676.676h-.677A.676.676 0 0 1 7 16.452v-.677ZM10.985 12.177c0-.374.303-.677.677-.677h.676c.374 0 .677.303.677.677v.676a.677.677 0 0 1-.677.676h-.676a.677.677 0 0 1-.677-.676v-.676ZM10.985 15.775c0-.373.303-.676.677-.676h.676c.374 0 .677.303.677.676v.677a.676.676 0 0 1-.677.676h-.676a.676.676 0 0 1-.677-.676v-.677ZM14.97 12.177c0-.374.303-.677.677-.677h.676c.374 0 .677.303.677.677v.676a.677.677 0 0 1-.677.676h-.676a.677.677 0 0 1-.676-.676v-.676ZM14.97 15.775c0-.373.303-.676.677-.676h.676c.374 0 .677.303.677.676v.677a.676.676 0 0 1-.677.676h-.676a.676.676 0 0 1-.676-.676v-.677Z"
|
|
34
|
+
}
|
|
35
|
+
));
|
|
36
|
+
}
|
|
37
|
+
export {
|
|
38
|
+
SvgCalendar
|
|
39
|
+
};
|