@snapcall/design-system 1.22.1-beta.2 → 1.23.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/README.md +12 -2
- package/dist/base.css +566 -0
- package/dist/components/Breadcrumb/index.d.mts +11 -0
- package/dist/components/Breadcrumb/index.d.ts +11 -0
- package/dist/components/Breadcrumb/index.js +252 -0
- package/dist/components/Breadcrumb/index.mjs +162 -0
- package/dist/icons/index.d.mts +5 -1
- package/dist/icons/index.d.ts +5 -1
- package/dist/icons/index.js +6 -0
- package/dist/icons/index.mjs +4 -0
- package/dist/icons/record.d.mts +6 -0
- package/dist/icons/record.d.ts +6 -0
- package/dist/icons/record.js +108 -0
- package/dist/icons/record.mjs +60 -0
- package/dist/icons/screensharing.d.mts +6 -0
- package/dist/icons/screensharing.d.ts +6 -0
- package/dist/icons/screensharing.js +107 -0
- package/dist/icons/screensharing.mjs +59 -0
- package/dist/index.d.mts +8 -1
- package/dist/index.d.ts +8 -1
- package/dist/index.js +2 -0
- package/dist/index.mjs +1 -0
- package/dist/style.css +1 -1
- package/package.json +3 -3
package/dist/icons/index.js
CHANGED
|
@@ -929,6 +929,7 @@ __export(icons_exports, {
|
|
|
929
929
|
QrCodeIcon: () => import_qrCode.QrCodeIcon,
|
|
930
930
|
ReceiptCheckIcon: () => import_receiptCheck.ReceiptCheckIcon,
|
|
931
931
|
ReceiptIcon: () => import_receipt.ReceiptIcon,
|
|
932
|
+
RecordIcon: () => import_record.RecordIcon,
|
|
932
933
|
Recording1Icon: () => import_recording1.Recording1Icon,
|
|
933
934
|
Recording2Icon: () => import_recording2.Recording2Icon,
|
|
934
935
|
Recording3Icon: () => import_recording3.Recording3Icon,
|
|
@@ -986,6 +987,7 @@ __export(icons_exports, {
|
|
|
986
987
|
Scissors2Icon: () => import_scissors2.Scissors2Icon,
|
|
987
988
|
ScissorsCut1Icon: () => import_scissorsCut1.ScissorsCut1Icon,
|
|
988
989
|
ScissorsCut2Icon: () => import_scissorsCut2.ScissorsCut2Icon,
|
|
990
|
+
ScreensharingIcon: () => import_screensharing.ScreensharingIcon,
|
|
989
991
|
SearchLgIcon: () => import_searchLg.SearchLgIcon,
|
|
990
992
|
SearchMdIcon: () => import_searchMd.SearchMdIcon,
|
|
991
993
|
SearchRefractionIcon: () => import_searchRefraction.SearchRefractionIcon,
|
|
@@ -2155,6 +2157,7 @@ var import_qrCode1 = require("./qrCode1.js");
|
|
|
2155
2157
|
var import_qrCode2 = require("./qrCode2.js");
|
|
2156
2158
|
var import_receipt = require("./receipt.js");
|
|
2157
2159
|
var import_receiptCheck = require("./receiptCheck.js");
|
|
2160
|
+
var import_record = require("./record.js");
|
|
2158
2161
|
var import_recording = require("./recording.js");
|
|
2159
2162
|
var import_recording1 = require("./recording1.js");
|
|
2160
2163
|
var import_recording2 = require("./recording2.js");
|
|
@@ -2212,6 +2215,7 @@ var import_scissors1 = require("./scissors1.js");
|
|
|
2212
2215
|
var import_scissors2 = require("./scissors2.js");
|
|
2213
2216
|
var import_scissorsCut1 = require("./scissorsCut1.js");
|
|
2214
2217
|
var import_scissorsCut2 = require("./scissorsCut2.js");
|
|
2218
|
+
var import_screensharing = require("./screensharing.js");
|
|
2215
2219
|
var import_searchLg = require("./searchLg.js");
|
|
2216
2220
|
var import_searchMd = require("./searchMd.js");
|
|
2217
2221
|
var import_searchRefraction = require("./searchRefraction.js");
|
|
@@ -3381,6 +3385,7 @@ var import_zoomOut = require("./zoomOut.js");
|
|
|
3381
3385
|
QrCodeIcon,
|
|
3382
3386
|
ReceiptCheckIcon,
|
|
3383
3387
|
ReceiptIcon,
|
|
3388
|
+
RecordIcon,
|
|
3384
3389
|
Recording1Icon,
|
|
3385
3390
|
Recording2Icon,
|
|
3386
3391
|
Recording3Icon,
|
|
@@ -3438,6 +3443,7 @@ var import_zoomOut = require("./zoomOut.js");
|
|
|
3438
3443
|
Scissors2Icon,
|
|
3439
3444
|
ScissorsCut1Icon,
|
|
3440
3445
|
ScissorsCut2Icon,
|
|
3446
|
+
ScreensharingIcon,
|
|
3441
3447
|
SearchLgIcon,
|
|
3442
3448
|
SearchMdIcon,
|
|
3443
3449
|
SearchRefractionIcon,
|
package/dist/icons/index.mjs
CHANGED
|
@@ -909,6 +909,7 @@ import { QrCode1Icon } from "./qrCode1.js";
|
|
|
909
909
|
import { QrCode2Icon } from "./qrCode2.js";
|
|
910
910
|
import { ReceiptIcon } from "./receipt.js";
|
|
911
911
|
import { ReceiptCheckIcon } from "./receiptCheck.js";
|
|
912
|
+
import { RecordIcon } from "./record.js";
|
|
912
913
|
import { RecordingIcon } from "./recording.js";
|
|
913
914
|
import { Recording1Icon } from "./recording1.js";
|
|
914
915
|
import { Recording2Icon } from "./recording2.js";
|
|
@@ -966,6 +967,7 @@ import { Scissors1Icon } from "./scissors1.js";
|
|
|
966
967
|
import { Scissors2Icon } from "./scissors2.js";
|
|
967
968
|
import { ScissorsCut1Icon } from "./scissorsCut1.js";
|
|
968
969
|
import { ScissorsCut2Icon } from "./scissorsCut2.js";
|
|
970
|
+
import { ScreensharingIcon } from "./screensharing.js";
|
|
969
971
|
import { SearchLgIcon } from "./searchLg.js";
|
|
970
972
|
import { SearchMdIcon } from "./searchMd.js";
|
|
971
973
|
import { SearchRefractionIcon } from "./searchRefraction.js";
|
|
@@ -2134,6 +2136,7 @@ export {
|
|
|
2134
2136
|
QrCodeIcon,
|
|
2135
2137
|
ReceiptCheckIcon,
|
|
2136
2138
|
ReceiptIcon,
|
|
2139
|
+
RecordIcon,
|
|
2137
2140
|
Recording1Icon,
|
|
2138
2141
|
Recording2Icon,
|
|
2139
2142
|
Recording3Icon,
|
|
@@ -2191,6 +2194,7 @@ export {
|
|
|
2191
2194
|
Scissors2Icon,
|
|
2192
2195
|
ScissorsCut1Icon,
|
|
2193
2196
|
ScissorsCut2Icon,
|
|
2197
|
+
ScreensharingIcon,
|
|
2194
2198
|
SearchLgIcon,
|
|
2195
2199
|
SearchMdIcon,
|
|
2196
2200
|
SearchRefractionIcon,
|
|
@@ -0,0 +1,108 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
var __defProp = Object.defineProperty;
|
|
3
|
+
var __defProps = Object.defineProperties;
|
|
4
|
+
var __getOwnPropDesc = Object.getOwnPropertyDescriptor;
|
|
5
|
+
var __getOwnPropDescs = Object.getOwnPropertyDescriptors;
|
|
6
|
+
var __getOwnPropNames = Object.getOwnPropertyNames;
|
|
7
|
+
var __getOwnPropSymbols = Object.getOwnPropertySymbols;
|
|
8
|
+
var __hasOwnProp = Object.prototype.hasOwnProperty;
|
|
9
|
+
var __propIsEnum = Object.prototype.propertyIsEnumerable;
|
|
10
|
+
var __defNormalProp = (obj, key, value) => key in obj ? __defProp(obj, key, { enumerable: true, configurable: true, writable: true, value }) : obj[key] = value;
|
|
11
|
+
var __spreadValues = (a, b) => {
|
|
12
|
+
for (var prop in b || (b = {}))
|
|
13
|
+
if (__hasOwnProp.call(b, prop))
|
|
14
|
+
__defNormalProp(a, prop, b[prop]);
|
|
15
|
+
if (__getOwnPropSymbols)
|
|
16
|
+
for (var prop of __getOwnPropSymbols(b)) {
|
|
17
|
+
if (__propIsEnum.call(b, prop))
|
|
18
|
+
__defNormalProp(a, prop, b[prop]);
|
|
19
|
+
}
|
|
20
|
+
return a;
|
|
21
|
+
};
|
|
22
|
+
var __spreadProps = (a, b) => __defProps(a, __getOwnPropDescs(b));
|
|
23
|
+
var __objRest = (source, exclude) => {
|
|
24
|
+
var target = {};
|
|
25
|
+
for (var prop in source)
|
|
26
|
+
if (__hasOwnProp.call(source, prop) && exclude.indexOf(prop) < 0)
|
|
27
|
+
target[prop] = source[prop];
|
|
28
|
+
if (source != null && __getOwnPropSymbols)
|
|
29
|
+
for (var prop of __getOwnPropSymbols(source)) {
|
|
30
|
+
if (exclude.indexOf(prop) < 0 && __propIsEnum.call(source, prop))
|
|
31
|
+
target[prop] = source[prop];
|
|
32
|
+
}
|
|
33
|
+
return target;
|
|
34
|
+
};
|
|
35
|
+
var __export = (target, all) => {
|
|
36
|
+
for (var name in all)
|
|
37
|
+
__defProp(target, name, { get: all[name], enumerable: true });
|
|
38
|
+
};
|
|
39
|
+
var __copyProps = (to, from, except, desc) => {
|
|
40
|
+
if (from && typeof from === "object" || typeof from === "function") {
|
|
41
|
+
for (let key of __getOwnPropNames(from))
|
|
42
|
+
if (!__hasOwnProp.call(to, key) && key !== except)
|
|
43
|
+
__defProp(to, key, { get: () => from[key], enumerable: !(desc = __getOwnPropDesc(from, key)) || desc.enumerable });
|
|
44
|
+
}
|
|
45
|
+
return to;
|
|
46
|
+
};
|
|
47
|
+
var __toCommonJS = (mod) => __copyProps(__defProp({}, "__esModule", { value: true }), mod);
|
|
48
|
+
|
|
49
|
+
// src/icons/record.tsx
|
|
50
|
+
var record_exports = {};
|
|
51
|
+
__export(record_exports, {
|
|
52
|
+
RecordIcon: () => RecordIcon
|
|
53
|
+
});
|
|
54
|
+
module.exports = __toCommonJS(record_exports);
|
|
55
|
+
var import_react = require("react");
|
|
56
|
+
var import_jsx_runtime = require("react/jsx-runtime");
|
|
57
|
+
var RecordIcon = (0, import_react.forwardRef)(
|
|
58
|
+
function RecordIcon2(_a, ref) {
|
|
59
|
+
var _b = _a, { size = 24, className = "text-gray-1000", duotone = false } = _b, other = __objRest(_b, ["size", "className", "duotone"]);
|
|
60
|
+
return /* @__PURE__ */ (0, import_jsx_runtime.jsxs)(
|
|
61
|
+
"svg",
|
|
62
|
+
__spreadProps(__spreadValues({
|
|
63
|
+
ref,
|
|
64
|
+
width: size,
|
|
65
|
+
height: size,
|
|
66
|
+
viewBox: "0 0 24 24",
|
|
67
|
+
fill: "none",
|
|
68
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
69
|
+
className
|
|
70
|
+
}, other), {
|
|
71
|
+
children: [
|
|
72
|
+
duotone && /* @__PURE__ */ (0, import_jsx_runtime.jsx)(
|
|
73
|
+
"path",
|
|
74
|
+
{
|
|
75
|
+
opacity: "0.12",
|
|
76
|
+
d: "M12 15C13.6569 15 15 13.6569 15 12C15 10.3431 13.6569 9 12 9C10.3431 9 9 10.3431 9 12C9 13.6569 10.3431 15 12 15Z",
|
|
77
|
+
fill: "currentColor"
|
|
78
|
+
}
|
|
79
|
+
),
|
|
80
|
+
/* @__PURE__ */ (0, import_jsx_runtime.jsx)(
|
|
81
|
+
"path",
|
|
82
|
+
{
|
|
83
|
+
d: "M12 20.5C16.6944 20.5 20.5 16.6944 20.5 12C20.5 7.30558 16.6944 3.5 12 3.5C7.30558 3.5 3.5 7.30558 3.5 12C3.5 16.6944 7.30558 20.5 12 20.5Z",
|
|
84
|
+
stroke: "currentColor",
|
|
85
|
+
strokeWidth: "2",
|
|
86
|
+
strokeLinecap: "round",
|
|
87
|
+
strokeLinejoin: "round"
|
|
88
|
+
}
|
|
89
|
+
),
|
|
90
|
+
/* @__PURE__ */ (0, import_jsx_runtime.jsx)(
|
|
91
|
+
"path",
|
|
92
|
+
{
|
|
93
|
+
d: "M12 15.1875C13.7604 15.1875 15.1875 13.7604 15.1875 12C15.1875 10.2396 13.7604 8.8125 12 8.8125C10.2396 8.8125 8.8125 10.2396 8.8125 12C8.8125 13.7604 10.2396 15.1875 12 15.1875Z",
|
|
94
|
+
stroke: "currentColor",
|
|
95
|
+
strokeWidth: "2",
|
|
96
|
+
strokeLinecap: "round",
|
|
97
|
+
strokeLinejoin: "round"
|
|
98
|
+
}
|
|
99
|
+
)
|
|
100
|
+
]
|
|
101
|
+
})
|
|
102
|
+
);
|
|
103
|
+
}
|
|
104
|
+
);
|
|
105
|
+
// Annotate the CommonJS export names for ESM import in node:
|
|
106
|
+
0 && (module.exports = {
|
|
107
|
+
RecordIcon
|
|
108
|
+
});
|
|
@@ -0,0 +1,60 @@
|
|
|
1
|
+
import {
|
|
2
|
+
__objRest,
|
|
3
|
+
__spreadProps,
|
|
4
|
+
__spreadValues
|
|
5
|
+
} from "../chunk-FWCSY2DS.mjs";
|
|
6
|
+
|
|
7
|
+
// src/icons/record.tsx
|
|
8
|
+
import { forwardRef } from "react";
|
|
9
|
+
import { jsx, jsxs } from "react/jsx-runtime";
|
|
10
|
+
var RecordIcon = forwardRef(
|
|
11
|
+
function RecordIcon2(_a, ref) {
|
|
12
|
+
var _b = _a, { size = 24, className = "text-gray-1000", duotone = false } = _b, other = __objRest(_b, ["size", "className", "duotone"]);
|
|
13
|
+
return /* @__PURE__ */ jsxs(
|
|
14
|
+
"svg",
|
|
15
|
+
__spreadProps(__spreadValues({
|
|
16
|
+
ref,
|
|
17
|
+
width: size,
|
|
18
|
+
height: size,
|
|
19
|
+
viewBox: "0 0 24 24",
|
|
20
|
+
fill: "none",
|
|
21
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
22
|
+
className
|
|
23
|
+
}, other), {
|
|
24
|
+
children: [
|
|
25
|
+
duotone && /* @__PURE__ */ jsx(
|
|
26
|
+
"path",
|
|
27
|
+
{
|
|
28
|
+
opacity: "0.12",
|
|
29
|
+
d: "M12 15C13.6569 15 15 13.6569 15 12C15 10.3431 13.6569 9 12 9C10.3431 9 9 10.3431 9 12C9 13.6569 10.3431 15 12 15Z",
|
|
30
|
+
fill: "currentColor"
|
|
31
|
+
}
|
|
32
|
+
),
|
|
33
|
+
/* @__PURE__ */ jsx(
|
|
34
|
+
"path",
|
|
35
|
+
{
|
|
36
|
+
d: "M12 20.5C16.6944 20.5 20.5 16.6944 20.5 12C20.5 7.30558 16.6944 3.5 12 3.5C7.30558 3.5 3.5 7.30558 3.5 12C3.5 16.6944 7.30558 20.5 12 20.5Z",
|
|
37
|
+
stroke: "currentColor",
|
|
38
|
+
strokeWidth: "2",
|
|
39
|
+
strokeLinecap: "round",
|
|
40
|
+
strokeLinejoin: "round"
|
|
41
|
+
}
|
|
42
|
+
),
|
|
43
|
+
/* @__PURE__ */ jsx(
|
|
44
|
+
"path",
|
|
45
|
+
{
|
|
46
|
+
d: "M12 15.1875C13.7604 15.1875 15.1875 13.7604 15.1875 12C15.1875 10.2396 13.7604 8.8125 12 8.8125C10.2396 8.8125 8.8125 10.2396 8.8125 12C8.8125 13.7604 10.2396 15.1875 12 15.1875Z",
|
|
47
|
+
stroke: "currentColor",
|
|
48
|
+
strokeWidth: "2",
|
|
49
|
+
strokeLinecap: "round",
|
|
50
|
+
strokeLinejoin: "round"
|
|
51
|
+
}
|
|
52
|
+
)
|
|
53
|
+
]
|
|
54
|
+
})
|
|
55
|
+
);
|
|
56
|
+
}
|
|
57
|
+
);
|
|
58
|
+
export {
|
|
59
|
+
RecordIcon
|
|
60
|
+
};
|
|
@@ -0,0 +1,107 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
var __defProp = Object.defineProperty;
|
|
3
|
+
var __defProps = Object.defineProperties;
|
|
4
|
+
var __getOwnPropDesc = Object.getOwnPropertyDescriptor;
|
|
5
|
+
var __getOwnPropDescs = Object.getOwnPropertyDescriptors;
|
|
6
|
+
var __getOwnPropNames = Object.getOwnPropertyNames;
|
|
7
|
+
var __getOwnPropSymbols = Object.getOwnPropertySymbols;
|
|
8
|
+
var __hasOwnProp = Object.prototype.hasOwnProperty;
|
|
9
|
+
var __propIsEnum = Object.prototype.propertyIsEnumerable;
|
|
10
|
+
var __defNormalProp = (obj, key, value) => key in obj ? __defProp(obj, key, { enumerable: true, configurable: true, writable: true, value }) : obj[key] = value;
|
|
11
|
+
var __spreadValues = (a, b) => {
|
|
12
|
+
for (var prop in b || (b = {}))
|
|
13
|
+
if (__hasOwnProp.call(b, prop))
|
|
14
|
+
__defNormalProp(a, prop, b[prop]);
|
|
15
|
+
if (__getOwnPropSymbols)
|
|
16
|
+
for (var prop of __getOwnPropSymbols(b)) {
|
|
17
|
+
if (__propIsEnum.call(b, prop))
|
|
18
|
+
__defNormalProp(a, prop, b[prop]);
|
|
19
|
+
}
|
|
20
|
+
return a;
|
|
21
|
+
};
|
|
22
|
+
var __spreadProps = (a, b) => __defProps(a, __getOwnPropDescs(b));
|
|
23
|
+
var __objRest = (source, exclude) => {
|
|
24
|
+
var target = {};
|
|
25
|
+
for (var prop in source)
|
|
26
|
+
if (__hasOwnProp.call(source, prop) && exclude.indexOf(prop) < 0)
|
|
27
|
+
target[prop] = source[prop];
|
|
28
|
+
if (source != null && __getOwnPropSymbols)
|
|
29
|
+
for (var prop of __getOwnPropSymbols(source)) {
|
|
30
|
+
if (exclude.indexOf(prop) < 0 && __propIsEnum.call(source, prop))
|
|
31
|
+
target[prop] = source[prop];
|
|
32
|
+
}
|
|
33
|
+
return target;
|
|
34
|
+
};
|
|
35
|
+
var __export = (target, all) => {
|
|
36
|
+
for (var name in all)
|
|
37
|
+
__defProp(target, name, { get: all[name], enumerable: true });
|
|
38
|
+
};
|
|
39
|
+
var __copyProps = (to, from, except, desc) => {
|
|
40
|
+
if (from && typeof from === "object" || typeof from === "function") {
|
|
41
|
+
for (let key of __getOwnPropNames(from))
|
|
42
|
+
if (!__hasOwnProp.call(to, key) && key !== except)
|
|
43
|
+
__defProp(to, key, { get: () => from[key], enumerable: !(desc = __getOwnPropDesc(from, key)) || desc.enumerable });
|
|
44
|
+
}
|
|
45
|
+
return to;
|
|
46
|
+
};
|
|
47
|
+
var __toCommonJS = (mod) => __copyProps(__defProp({}, "__esModule", { value: true }), mod);
|
|
48
|
+
|
|
49
|
+
// src/icons/screensharing.tsx
|
|
50
|
+
var screensharing_exports = {};
|
|
51
|
+
__export(screensharing_exports, {
|
|
52
|
+
ScreensharingIcon: () => ScreensharingIcon
|
|
53
|
+
});
|
|
54
|
+
module.exports = __toCommonJS(screensharing_exports);
|
|
55
|
+
var import_react = require("react");
|
|
56
|
+
var import_jsx_runtime = require("react/jsx-runtime");
|
|
57
|
+
var ScreensharingIcon = (0, import_react.forwardRef)(
|
|
58
|
+
function ScreensharingIcon2(_a, ref) {
|
|
59
|
+
var _b = _a, { size = 24, className = "text-gray-1000", duotone = false } = _b, other = __objRest(_b, ["size", "className", "duotone"]);
|
|
60
|
+
return /* @__PURE__ */ (0, import_jsx_runtime.jsxs)(
|
|
61
|
+
"svg",
|
|
62
|
+
__spreadProps(__spreadValues({
|
|
63
|
+
ref,
|
|
64
|
+
width: size,
|
|
65
|
+
height: size,
|
|
66
|
+
viewBox: "0 0 24 24",
|
|
67
|
+
fill: "none",
|
|
68
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
69
|
+
className
|
|
70
|
+
}, other), {
|
|
71
|
+
children: [
|
|
72
|
+
duotone && /* @__PURE__ */ (0, import_jsx_runtime.jsx)(
|
|
73
|
+
"path",
|
|
74
|
+
{
|
|
75
|
+
opacity: "0.12",
|
|
76
|
+
d: "M2 7.8C2 6.11984 2 5.27976 2.32698 4.63803C2.6146 4.07354 3.07354 3.6146 3.63803 3.32698C4.27976 3 5.11984 3 6.8 3H17.2C18.8802 3 19.7202 3 20.362 3.32698C20.9265 3.6146 21.3854 4.07354 21.673 4.63803C22 5.27976 22 6.11984 22 7.8V12.2C22 13.8802 22 14.7202 21.673 15.362C21.3854 15.9265 20.9265 16.3854 20.362 16.673C19.7202 17 18.8802 17 17.2 17H6.8C5.11984 17 4.27976 17 3.63803 16.673C3.07354 16.3854 2.6146 15.9265 2.32698 15.362C2 14.7202 2 13.8802 2 12.2V7.8Z",
|
|
77
|
+
fill: "currentColor"
|
|
78
|
+
}
|
|
79
|
+
),
|
|
80
|
+
/* @__PURE__ */ (0, import_jsx_runtime.jsx)(
|
|
81
|
+
"path",
|
|
82
|
+
{
|
|
83
|
+
d: "M7.57181 21C8.90661 20.3598 10.41 20 12 20C13.59 20 15.0934 20.3598 16.4282 21M6.8 17H17.2C18.8802 17 19.7202 17 20.362 16.673C20.9265 16.3854 21.3854 15.9265 21.673 15.362C22 14.7202 22 13.8802 22 12.2V7.8C22 6.11984 22 5.27976 21.673 4.63803C21.3854 4.07354 20.9265 3.6146 20.362 3.32698C19.7202 3 18.8802 3 17.2 3H6.8C5.11984 3 4.27976 3 3.63803 3.32698C3.07354 3.6146 2.6146 4.07354 2.32698 4.63803C2 5.27976 2 6.11984 2 7.8V12.2C2 13.8802 2 14.7202 2.32698 15.362C2.6146 15.9265 3.07354 16.3854 3.63803 16.673C4.27976 17 5.11984 17 6.8 17Z",
|
|
84
|
+
stroke: "currentColor",
|
|
85
|
+
strokeWidth: "2",
|
|
86
|
+
strokeLinecap: "round",
|
|
87
|
+
strokeLinejoin: "round"
|
|
88
|
+
}
|
|
89
|
+
),
|
|
90
|
+
/* @__PURE__ */ (0, import_jsx_runtime.jsx)(
|
|
91
|
+
"path",
|
|
92
|
+
{
|
|
93
|
+
d: "M11.7617 6.92285C11.9138 6.86029 12.0852 6.85932 12.2373 6.92188L12.2363 6.92285C12.2738 6.93756 12.3099 6.95504 12.3438 6.97656L12.4404 7.05273L12.4424 7.05469L14.9395 9.55469C14.998 9.61281 15.0455 9.68261 15.0771 9.75879C15.1087 9.83485 15.125 9.91666 15.125 9.99902C15.125 10.0814 15.1088 10.1632 15.0771 10.2393C15.0457 10.3149 14.9984 10.3826 14.9404 10.4404L14.9414 10.4414C14.8833 10.5 14.8134 10.5473 14.7373 10.5791C14.6613 10.6107 14.5794 10.627 14.4971 10.627C14.4147 10.6269 14.3328 10.6108 14.2568 10.5791C14.1808 10.5474 14.1117 10.5 14.0537 10.4414L12.624 9.00488V12.5C12.624 12.6656 12.5583 12.8242 12.4414 12.9414C12.3244 13.0586 12.1655 13.1249 12 13.125C11.8343 13.125 11.6747 13.0587 11.5576 12.9414C11.4408 12.8242 11.3751 12.6655 11.375 12.5V9.00586L9.94531 10.4424H9.94434C9.82694 10.5598 9.66794 10.6259 9.50195 10.626C9.33577 10.626 9.17609 10.56 9.05859 10.4424C8.94116 10.3248 8.87507 10.1652 8.875 9.99902C8.875 9.91667 8.89137 9.83488 8.92285 9.75879C8.9543 9.68277 9.00049 9.61388 9.05859 9.55566L11.5566 7.05469L11.5586 7.05273C11.6172 6.99656 11.6862 6.95261 11.7617 6.92285Z",
|
|
94
|
+
fill: "currentColor",
|
|
95
|
+
stroke: "currentColor",
|
|
96
|
+
strokeWidth: "0.25"
|
|
97
|
+
}
|
|
98
|
+
)
|
|
99
|
+
]
|
|
100
|
+
})
|
|
101
|
+
);
|
|
102
|
+
}
|
|
103
|
+
);
|
|
104
|
+
// Annotate the CommonJS export names for ESM import in node:
|
|
105
|
+
0 && (module.exports = {
|
|
106
|
+
ScreensharingIcon
|
|
107
|
+
});
|
|
@@ -0,0 +1,59 @@
|
|
|
1
|
+
import {
|
|
2
|
+
__objRest,
|
|
3
|
+
__spreadProps,
|
|
4
|
+
__spreadValues
|
|
5
|
+
} from "../chunk-FWCSY2DS.mjs";
|
|
6
|
+
|
|
7
|
+
// src/icons/screensharing.tsx
|
|
8
|
+
import { forwardRef } from "react";
|
|
9
|
+
import { jsx, jsxs } from "react/jsx-runtime";
|
|
10
|
+
var ScreensharingIcon = forwardRef(
|
|
11
|
+
function ScreensharingIcon2(_a, ref) {
|
|
12
|
+
var _b = _a, { size = 24, className = "text-gray-1000", duotone = false } = _b, other = __objRest(_b, ["size", "className", "duotone"]);
|
|
13
|
+
return /* @__PURE__ */ jsxs(
|
|
14
|
+
"svg",
|
|
15
|
+
__spreadProps(__spreadValues({
|
|
16
|
+
ref,
|
|
17
|
+
width: size,
|
|
18
|
+
height: size,
|
|
19
|
+
viewBox: "0 0 24 24",
|
|
20
|
+
fill: "none",
|
|
21
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
22
|
+
className
|
|
23
|
+
}, other), {
|
|
24
|
+
children: [
|
|
25
|
+
duotone && /* @__PURE__ */ jsx(
|
|
26
|
+
"path",
|
|
27
|
+
{
|
|
28
|
+
opacity: "0.12",
|
|
29
|
+
d: "M2 7.8C2 6.11984 2 5.27976 2.32698 4.63803C2.6146 4.07354 3.07354 3.6146 3.63803 3.32698C4.27976 3 5.11984 3 6.8 3H17.2C18.8802 3 19.7202 3 20.362 3.32698C20.9265 3.6146 21.3854 4.07354 21.673 4.63803C22 5.27976 22 6.11984 22 7.8V12.2C22 13.8802 22 14.7202 21.673 15.362C21.3854 15.9265 20.9265 16.3854 20.362 16.673C19.7202 17 18.8802 17 17.2 17H6.8C5.11984 17 4.27976 17 3.63803 16.673C3.07354 16.3854 2.6146 15.9265 2.32698 15.362C2 14.7202 2 13.8802 2 12.2V7.8Z",
|
|
30
|
+
fill: "currentColor"
|
|
31
|
+
}
|
|
32
|
+
),
|
|
33
|
+
/* @__PURE__ */ jsx(
|
|
34
|
+
"path",
|
|
35
|
+
{
|
|
36
|
+
d: "M7.57181 21C8.90661 20.3598 10.41 20 12 20C13.59 20 15.0934 20.3598 16.4282 21M6.8 17H17.2C18.8802 17 19.7202 17 20.362 16.673C20.9265 16.3854 21.3854 15.9265 21.673 15.362C22 14.7202 22 13.8802 22 12.2V7.8C22 6.11984 22 5.27976 21.673 4.63803C21.3854 4.07354 20.9265 3.6146 20.362 3.32698C19.7202 3 18.8802 3 17.2 3H6.8C5.11984 3 4.27976 3 3.63803 3.32698C3.07354 3.6146 2.6146 4.07354 2.32698 4.63803C2 5.27976 2 6.11984 2 7.8V12.2C2 13.8802 2 14.7202 2.32698 15.362C2.6146 15.9265 3.07354 16.3854 3.63803 16.673C4.27976 17 5.11984 17 6.8 17Z",
|
|
37
|
+
stroke: "currentColor",
|
|
38
|
+
strokeWidth: "2",
|
|
39
|
+
strokeLinecap: "round",
|
|
40
|
+
strokeLinejoin: "round"
|
|
41
|
+
}
|
|
42
|
+
),
|
|
43
|
+
/* @__PURE__ */ jsx(
|
|
44
|
+
"path",
|
|
45
|
+
{
|
|
46
|
+
d: "M11.7617 6.92285C11.9138 6.86029 12.0852 6.85932 12.2373 6.92188L12.2363 6.92285C12.2738 6.93756 12.3099 6.95504 12.3438 6.97656L12.4404 7.05273L12.4424 7.05469L14.9395 9.55469C14.998 9.61281 15.0455 9.68261 15.0771 9.75879C15.1087 9.83485 15.125 9.91666 15.125 9.99902C15.125 10.0814 15.1088 10.1632 15.0771 10.2393C15.0457 10.3149 14.9984 10.3826 14.9404 10.4404L14.9414 10.4414C14.8833 10.5 14.8134 10.5473 14.7373 10.5791C14.6613 10.6107 14.5794 10.627 14.4971 10.627C14.4147 10.6269 14.3328 10.6108 14.2568 10.5791C14.1808 10.5474 14.1117 10.5 14.0537 10.4414L12.624 9.00488V12.5C12.624 12.6656 12.5583 12.8242 12.4414 12.9414C12.3244 13.0586 12.1655 13.1249 12 13.125C11.8343 13.125 11.6747 13.0587 11.5576 12.9414C11.4408 12.8242 11.3751 12.6655 11.375 12.5V9.00586L9.94531 10.4424H9.94434C9.82694 10.5598 9.66794 10.6259 9.50195 10.626C9.33577 10.626 9.17609 10.56 9.05859 10.4424C8.94116 10.3248 8.87507 10.1652 8.875 9.99902C8.875 9.91667 8.89137 9.83488 8.92285 9.75879C8.9543 9.68277 9.00049 9.61388 9.05859 9.55566L11.5566 7.05469L11.5586 7.05273C11.6172 6.99656 11.6862 6.95261 11.7617 6.92285Z",
|
|
47
|
+
fill: "currentColor",
|
|
48
|
+
stroke: "currentColor",
|
|
49
|
+
strokeWidth: "0.25"
|
|
50
|
+
}
|
|
51
|
+
)
|
|
52
|
+
]
|
|
53
|
+
})
|
|
54
|
+
);
|
|
55
|
+
}
|
|
56
|
+
);
|
|
57
|
+
export {
|
|
58
|
+
ScreensharingIcon
|
|
59
|
+
};
|
package/dist/index.d.mts
CHANGED
|
@@ -475,6 +475,13 @@ interface BannerProps extends Omit<react.HTMLAttributes<HTMLDivElement>, 'color'
|
|
|
475
475
|
}
|
|
476
476
|
declare function Banner({ title, text, icon, action, color, className, ...props }: BannerProps): react_jsx_runtime.JSX.Element;
|
|
477
477
|
|
|
478
|
+
declare function Breadcrumb({ ...props }: react.ComponentProps<'nav'>): react_jsx_runtime.JSX.Element;
|
|
479
|
+
declare function BreadcrumbList({ className, ...props }: react.ComponentProps<'ol'>): react_jsx_runtime.JSX.Element;
|
|
480
|
+
declare function BreadcrumbItem({ className, ...props }: react.ComponentProps<'li'>): react_jsx_runtime.JSX.Element;
|
|
481
|
+
declare function BreadcrumbPage({ className, ...props }: react.ComponentProps<'span'>): react_jsx_runtime.JSX.Element;
|
|
482
|
+
declare function BreadcrumbSeparator({ children, className, ...props }: react.ComponentProps<'li'>): react_jsx_runtime.JSX.Element;
|
|
483
|
+
declare function BreadcrumbEllipsis({ className, ...props }: react.ComponentProps<'span'>): react_jsx_runtime.JSX.Element;
|
|
484
|
+
|
|
478
485
|
type CarouselApi = UseEmblaCarouselType[1];
|
|
479
486
|
type UseCarouselParameters = Parameters<typeof useEmblaCarousel>;
|
|
480
487
|
type CarouselOptions = UseCarouselParameters[0];
|
|
@@ -1024,4 +1031,4 @@ declare const Tooltip: react.FC<TooltipPrimitive.TooltipProps>;
|
|
|
1024
1031
|
declare const TooltipTrigger: react.ForwardRefExoticComponent<TooltipPrimitive.TooltipTriggerProps & react.RefAttributes<HTMLButtonElement>>;
|
|
1025
1032
|
declare const TooltipContent: react.ForwardRefExoticComponent<Omit<TooltipPrimitive.TooltipContentProps & react.RefAttributes<HTMLDivElement>, "ref"> & react.RefAttributes<HTMLDivElement>>;
|
|
1026
1033
|
|
|
1027
|
-
export { Accordion, AccordionContent, AccordionItem, AccordionTrigger, AlertDialog, AlertDialogAction, AlertDialogCancel, AlertDialogContent, AlertDialogDescription, AlertDialogFooter, AlertDialogHeader, AlertDialogTitle, AlertDialogTrigger, Avatar, Badge, type BadgeProps, Banner, type BannerProps, Button, type ButtonProps, Carousel, type CarouselApi, CarouselContent, CarouselItem, CarouselNext, CarouselPrevious, Checkbox, Command, CommandEmpty, CommandGroup, CommandInput, CommandItem, CommandList, CommandLoading, CommandSeparator, CreatableSelect, type CreatableSelectProps, Dialog, DialogContent, DialogDescription, DialogFooter, DialogHeader, DialogTitle, DialogTrigger, DropdownMenu, DropdownMenuCheckboxItem, DropdownMenuContent, DropdownMenuGroup, DropdownMenuItem, DropdownMenuLabel, DropdownMenuPortal, DropdownMenuRadioGroup, DropdownMenuRadioItem, DropdownMenuSeparator, DropdownMenuSub, DropdownMenuSubContent, DropdownMenuSubTrigger, DropdownMenuTrigger, FilterButton, Input, Label, Link, MediaCard, Pagination, PaginationPageChoice, Popover, PopoverContent, PopoverTrigger, Progress, RadioGroup, RadioGroupItem, RawToast, Select, SelectContent, SelectGroup, SelectItem, SelectLabel, SelectSeparator, SelectTrigger, SelectValue, Separator, Sheet, SheetClose, SheetContent, SheetDescription, SheetHeader, SheetTitle, SheetTrigger, Skeleton, Switch, Table, TableBody, TableCell, TableEmpty, TableHead, TableHeader, TableRow, Tabs, TabsContent, TabsList, TabsTrigger, Textarea, Toast$1 as Toast, ToastAction, type ToastActionElement, ToastClose, ToastContent, ToastDescription, type ToastProps, ToastProvider, ToastTitle, ToastViewport, Toaster, ToggleGroup, ToggleGroupItem, Tooltip, TooltipContent, TooltipProvider, TooltipTrigger, buttonSizes, buttonVariants, iconButtonSizes, toast, useDialogState, useToast };
|
|
1034
|
+
export { Accordion, AccordionContent, AccordionItem, AccordionTrigger, AlertDialog, AlertDialogAction, AlertDialogCancel, AlertDialogContent, AlertDialogDescription, AlertDialogFooter, AlertDialogHeader, AlertDialogTitle, AlertDialogTrigger, Avatar, Badge, type BadgeProps, Banner, type BannerProps, Breadcrumb, BreadcrumbEllipsis, BreadcrumbItem, BreadcrumbList, BreadcrumbPage, BreadcrumbSeparator, Button, type ButtonProps, Carousel, type CarouselApi, CarouselContent, CarouselItem, CarouselNext, CarouselPrevious, Checkbox, Command, CommandEmpty, CommandGroup, CommandInput, CommandItem, CommandList, CommandLoading, CommandSeparator, CreatableSelect, type CreatableSelectProps, Dialog, DialogContent, DialogDescription, DialogFooter, DialogHeader, DialogTitle, DialogTrigger, DropdownMenu, DropdownMenuCheckboxItem, DropdownMenuContent, DropdownMenuGroup, DropdownMenuItem, DropdownMenuLabel, DropdownMenuPortal, DropdownMenuRadioGroup, DropdownMenuRadioItem, DropdownMenuSeparator, DropdownMenuSub, DropdownMenuSubContent, DropdownMenuSubTrigger, DropdownMenuTrigger, FilterButton, Input, Label, Link, MediaCard, Pagination, PaginationPageChoice, Popover, PopoverContent, PopoverTrigger, Progress, RadioGroup, RadioGroupItem, RawToast, Select, SelectContent, SelectGroup, SelectItem, SelectLabel, SelectSeparator, SelectTrigger, SelectValue, Separator, Sheet, SheetClose, SheetContent, SheetDescription, SheetHeader, SheetTitle, SheetTrigger, Skeleton, Switch, Table, TableBody, TableCell, TableEmpty, TableHead, TableHeader, TableRow, Tabs, TabsContent, TabsList, TabsTrigger, Textarea, Toast$1 as Toast, ToastAction, type ToastActionElement, ToastClose, ToastContent, ToastDescription, type ToastProps, ToastProvider, ToastTitle, ToastViewport, Toaster, ToggleGroup, ToggleGroupItem, Tooltip, TooltipContent, TooltipProvider, TooltipTrigger, buttonSizes, buttonVariants, iconButtonSizes, toast, useDialogState, useToast };
|
package/dist/index.d.ts
CHANGED
|
@@ -475,6 +475,13 @@ interface BannerProps extends Omit<react.HTMLAttributes<HTMLDivElement>, 'color'
|
|
|
475
475
|
}
|
|
476
476
|
declare function Banner({ title, text, icon, action, color, className, ...props }: BannerProps): react_jsx_runtime.JSX.Element;
|
|
477
477
|
|
|
478
|
+
declare function Breadcrumb({ ...props }: react.ComponentProps<'nav'>): react_jsx_runtime.JSX.Element;
|
|
479
|
+
declare function BreadcrumbList({ className, ...props }: react.ComponentProps<'ol'>): react_jsx_runtime.JSX.Element;
|
|
480
|
+
declare function BreadcrumbItem({ className, ...props }: react.ComponentProps<'li'>): react_jsx_runtime.JSX.Element;
|
|
481
|
+
declare function BreadcrumbPage({ className, ...props }: react.ComponentProps<'span'>): react_jsx_runtime.JSX.Element;
|
|
482
|
+
declare function BreadcrumbSeparator({ children, className, ...props }: react.ComponentProps<'li'>): react_jsx_runtime.JSX.Element;
|
|
483
|
+
declare function BreadcrumbEllipsis({ className, ...props }: react.ComponentProps<'span'>): react_jsx_runtime.JSX.Element;
|
|
484
|
+
|
|
478
485
|
type CarouselApi = UseEmblaCarouselType[1];
|
|
479
486
|
type UseCarouselParameters = Parameters<typeof useEmblaCarousel>;
|
|
480
487
|
type CarouselOptions = UseCarouselParameters[0];
|
|
@@ -1024,4 +1031,4 @@ declare const Tooltip: react.FC<TooltipPrimitive.TooltipProps>;
|
|
|
1024
1031
|
declare const TooltipTrigger: react.ForwardRefExoticComponent<TooltipPrimitive.TooltipTriggerProps & react.RefAttributes<HTMLButtonElement>>;
|
|
1025
1032
|
declare const TooltipContent: react.ForwardRefExoticComponent<Omit<TooltipPrimitive.TooltipContentProps & react.RefAttributes<HTMLDivElement>, "ref"> & react.RefAttributes<HTMLDivElement>>;
|
|
1026
1033
|
|
|
1027
|
-
export { Accordion, AccordionContent, AccordionItem, AccordionTrigger, AlertDialog, AlertDialogAction, AlertDialogCancel, AlertDialogContent, AlertDialogDescription, AlertDialogFooter, AlertDialogHeader, AlertDialogTitle, AlertDialogTrigger, Avatar, Badge, type BadgeProps, Banner, type BannerProps, Button, type ButtonProps, Carousel, type CarouselApi, CarouselContent, CarouselItem, CarouselNext, CarouselPrevious, Checkbox, Command, CommandEmpty, CommandGroup, CommandInput, CommandItem, CommandList, CommandLoading, CommandSeparator, CreatableSelect, type CreatableSelectProps, Dialog, DialogContent, DialogDescription, DialogFooter, DialogHeader, DialogTitle, DialogTrigger, DropdownMenu, DropdownMenuCheckboxItem, DropdownMenuContent, DropdownMenuGroup, DropdownMenuItem, DropdownMenuLabel, DropdownMenuPortal, DropdownMenuRadioGroup, DropdownMenuRadioItem, DropdownMenuSeparator, DropdownMenuSub, DropdownMenuSubContent, DropdownMenuSubTrigger, DropdownMenuTrigger, FilterButton, Input, Label, Link, MediaCard, Pagination, PaginationPageChoice, Popover, PopoverContent, PopoverTrigger, Progress, RadioGroup, RadioGroupItem, RawToast, Select, SelectContent, SelectGroup, SelectItem, SelectLabel, SelectSeparator, SelectTrigger, SelectValue, Separator, Sheet, SheetClose, SheetContent, SheetDescription, SheetHeader, SheetTitle, SheetTrigger, Skeleton, Switch, Table, TableBody, TableCell, TableEmpty, TableHead, TableHeader, TableRow, Tabs, TabsContent, TabsList, TabsTrigger, Textarea, Toast$1 as Toast, ToastAction, type ToastActionElement, ToastClose, ToastContent, ToastDescription, type ToastProps, ToastProvider, ToastTitle, ToastViewport, Toaster, ToggleGroup, ToggleGroupItem, Tooltip, TooltipContent, TooltipProvider, TooltipTrigger, buttonSizes, buttonVariants, iconButtonSizes, toast, useDialogState, useToast };
|
|
1034
|
+
export { Accordion, AccordionContent, AccordionItem, AccordionTrigger, AlertDialog, AlertDialogAction, AlertDialogCancel, AlertDialogContent, AlertDialogDescription, AlertDialogFooter, AlertDialogHeader, AlertDialogTitle, AlertDialogTrigger, Avatar, Badge, type BadgeProps, Banner, type BannerProps, Breadcrumb, BreadcrumbEllipsis, BreadcrumbItem, BreadcrumbList, BreadcrumbPage, BreadcrumbSeparator, Button, type ButtonProps, Carousel, type CarouselApi, CarouselContent, CarouselItem, CarouselNext, CarouselPrevious, Checkbox, Command, CommandEmpty, CommandGroup, CommandInput, CommandItem, CommandList, CommandLoading, CommandSeparator, CreatableSelect, type CreatableSelectProps, Dialog, DialogContent, DialogDescription, DialogFooter, DialogHeader, DialogTitle, DialogTrigger, DropdownMenu, DropdownMenuCheckboxItem, DropdownMenuContent, DropdownMenuGroup, DropdownMenuItem, DropdownMenuLabel, DropdownMenuPortal, DropdownMenuRadioGroup, DropdownMenuRadioItem, DropdownMenuSeparator, DropdownMenuSub, DropdownMenuSubContent, DropdownMenuSubTrigger, DropdownMenuTrigger, FilterButton, Input, Label, Link, MediaCard, Pagination, PaginationPageChoice, Popover, PopoverContent, PopoverTrigger, Progress, RadioGroup, RadioGroupItem, RawToast, Select, SelectContent, SelectGroup, SelectItem, SelectLabel, SelectSeparator, SelectTrigger, SelectValue, Separator, Sheet, SheetClose, SheetContent, SheetDescription, SheetHeader, SheetTitle, SheetTrigger, Skeleton, Switch, Table, TableBody, TableCell, TableEmpty, TableHead, TableHeader, TableRow, Tabs, TabsContent, TabsList, TabsTrigger, Textarea, Toast$1 as Toast, ToastAction, type ToastActionElement, ToastClose, ToastContent, ToastDescription, type ToastProps, ToastProvider, ToastTitle, ToastViewport, Toaster, ToggleGroup, ToggleGroupItem, Tooltip, TooltipContent, TooltipProvider, TooltipTrigger, buttonSizes, buttonVariants, iconButtonSizes, toast, useDialogState, useToast };
|
package/dist/index.js
CHANGED
|
@@ -20,6 +20,7 @@ __reExport(index_exports, require("./components/AlertDialog"), module.exports);
|
|
|
20
20
|
__reExport(index_exports, require("./components/Avatar"), module.exports);
|
|
21
21
|
__reExport(index_exports, require("./components/Badge"), module.exports);
|
|
22
22
|
__reExport(index_exports, require("./components/Banner"), module.exports);
|
|
23
|
+
__reExport(index_exports, require("./components/Breadcrumb"), module.exports);
|
|
23
24
|
__reExport(index_exports, require("./components/Button"), module.exports);
|
|
24
25
|
__reExport(index_exports, require("./components/Carousel"), module.exports);
|
|
25
26
|
__reExport(index_exports, require("./components/Checkbox"), module.exports);
|
|
@@ -54,6 +55,7 @@ __reExport(index_exports, require("./components/Tooltip"), module.exports);
|
|
|
54
55
|
...require("./components/Avatar"),
|
|
55
56
|
...require("./components/Badge"),
|
|
56
57
|
...require("./components/Banner"),
|
|
58
|
+
...require("./components/Breadcrumb"),
|
|
57
59
|
...require("./components/Button"),
|
|
58
60
|
...require("./components/Carousel"),
|
|
59
61
|
...require("./components/Checkbox"),
|
package/dist/index.mjs
CHANGED
|
@@ -3,6 +3,7 @@ export * from "./components/AlertDialog/index.mjs";
|
|
|
3
3
|
export * from "./components/Avatar/index.mjs";
|
|
4
4
|
export * from "./components/Badge/index.mjs";
|
|
5
5
|
export * from "./components/Banner/index.mjs";
|
|
6
|
+
export * from "./components/Breadcrumb/index.mjs";
|
|
6
7
|
export * from "./components/Button/index.mjs";
|
|
7
8
|
export * from "./components/Carousel/index.mjs";
|
|
8
9
|
export * from "./components/Checkbox/index.mjs";
|