@eclass/ui-kit 1.46.5 → 1.47.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/eclass-ui-kit.es.js +95 -43
- package/dist/eclass-ui-kit.es.js.map +1 -1
- package/dist/eclass-ui-kit.umd.js +50 -50
- package/dist/eclass-ui-kit.umd.js.map +1 -1
- package/dist/molecules/UserWay/UserWayCookie.d.ts +1 -0
- package/dist/molecules/index.d.ts +1 -0
- package/dist/services/index.d.ts +1 -0
- package/dist/services/uniqueId.d.ts +1 -0
- package/dist/tsconfig.types.tsbuildinfo +1 -1
- package/package.json +1 -1
package/dist/eclass-ui-kit.es.js
CHANGED
|
@@ -28679,13 +28679,17 @@ function AlertInfo(props) {
|
|
|
28679
28679
|
});
|
|
28680
28680
|
}
|
|
28681
28681
|
AlertInfo.displayName = "ArrowRight";
|
|
28682
|
+
function uniqueId() {
|
|
28683
|
+
return Math.random().toString(36).slice(2, 9);
|
|
28684
|
+
}
|
|
28682
28685
|
function ArrowRight(props) {
|
|
28686
|
+
const id2 = `clip-${uniqueId()}`;
|
|
28683
28687
|
return /* @__PURE__ */ jsxs(Base, {
|
|
28684
28688
|
...props,
|
|
28685
28689
|
children: [/* @__PURE__ */ jsxs("g", {
|
|
28686
|
-
clipPath:
|
|
28690
|
+
clipPath: `url(#${id2})`,
|
|
28687
28691
|
children: [/* @__PURE__ */ jsx("mask", {
|
|
28688
|
-
id:
|
|
28692
|
+
id: `mask-${id2}`,
|
|
28689
28693
|
style: {
|
|
28690
28694
|
maskType: "alpha"
|
|
28691
28695
|
},
|
|
@@ -28700,7 +28704,7 @@ function ArrowRight(props) {
|
|
|
28700
28704
|
transform: "rotate(180 16 16)"
|
|
28701
28705
|
})
|
|
28702
28706
|
}), /* @__PURE__ */ jsx("g", {
|
|
28703
|
-
mask:
|
|
28707
|
+
mask: `url(#mask-${id2})`,
|
|
28704
28708
|
children: /* @__PURE__ */ jsx("path", {
|
|
28705
28709
|
fill: "currentColor",
|
|
28706
28710
|
d: "M6.074 14L12 8 6.074 2 4 4.1 7.852 8 4 11.9 6.074 14z"
|
|
@@ -28708,7 +28712,7 @@ function ArrowRight(props) {
|
|
|
28708
28712
|
})]
|
|
28709
28713
|
}), /* @__PURE__ */ jsx("defs", {
|
|
28710
28714
|
children: /* @__PURE__ */ jsx("clipPath", {
|
|
28711
|
-
id:
|
|
28715
|
+
id: id2,
|
|
28712
28716
|
children: /* @__PURE__ */ jsx("path", {
|
|
28713
28717
|
fill: "#fff",
|
|
28714
28718
|
d: "M0 0H16V16H0z"
|
|
@@ -28830,7 +28834,7 @@ function Loader({
|
|
|
28830
28834
|
className: "loaderAsync",
|
|
28831
28835
|
"data-testid": "loaderAsync",
|
|
28832
28836
|
children: /* @__PURE__ */ jsxs("svg", {
|
|
28833
|
-
id:
|
|
28837
|
+
id: uniqueId(),
|
|
28834
28838
|
xmlns: "http://www.w3.org/2000/svg",
|
|
28835
28839
|
viewBox: "0 0 38 20",
|
|
28836
28840
|
shapeRendering: "geometricPrecision",
|
|
@@ -28933,13 +28937,14 @@ function TinyAlertInfo(props) {
|
|
|
28933
28937
|
}
|
|
28934
28938
|
TinyAlertInfo.displayName = "TinyAlertInfo";
|
|
28935
28939
|
function TinyAlertError(props) {
|
|
28940
|
+
const id2 = `clip${uniqueId()}`;
|
|
28936
28941
|
return /* @__PURE__ */ jsxs(Base, {
|
|
28937
28942
|
...props,
|
|
28938
28943
|
w: "12px",
|
|
28939
28944
|
h: "12px",
|
|
28940
28945
|
viewBox: "0 0 12 12",
|
|
28941
28946
|
children: [/* @__PURE__ */ jsxs("g", {
|
|
28942
|
-
clipPath:
|
|
28947
|
+
clipPath: `url(#${id2})`,
|
|
28943
28948
|
children: [/* @__PURE__ */ jsx("circle", {
|
|
28944
28949
|
cx: "6",
|
|
28945
28950
|
cy: "6",
|
|
@@ -28953,7 +28958,7 @@ function TinyAlertError(props) {
|
|
|
28953
28958
|
})]
|
|
28954
28959
|
}), /* @__PURE__ */ jsx("defs", {
|
|
28955
28960
|
children: /* @__PURE__ */ jsx("clipPath", {
|
|
28956
|
-
id:
|
|
28961
|
+
id: id2,
|
|
28957
28962
|
children: /* @__PURE__ */ jsx("rect", {
|
|
28958
28963
|
width: "12px",
|
|
28959
28964
|
height: "12px",
|
|
@@ -28986,13 +28991,14 @@ function TinyAlertWarning(props) {
|
|
|
28986
28991
|
}
|
|
28987
28992
|
TinyAlertWarning.displayName = "TinyAlertWarning";
|
|
28988
28993
|
function TinyAlertSuccess(props) {
|
|
28994
|
+
const id2 = `clip${uniqueId()}`;
|
|
28989
28995
|
return /* @__PURE__ */ jsxs(Base, {
|
|
28990
28996
|
...props,
|
|
28991
28997
|
w: "12px",
|
|
28992
28998
|
h: "12px",
|
|
28993
28999
|
viewBox: "0 0 12 12",
|
|
28994
29000
|
children: [/* @__PURE__ */ jsxs("g", {
|
|
28995
|
-
clipPath:
|
|
29001
|
+
clipPath: `url(#${id2})`,
|
|
28996
29002
|
children: [/* @__PURE__ */ jsx("circle", {
|
|
28997
29003
|
cx: "6",
|
|
28998
29004
|
cy: "6",
|
|
@@ -29006,7 +29012,7 @@ function TinyAlertSuccess(props) {
|
|
|
29006
29012
|
})]
|
|
29007
29013
|
}), /* @__PURE__ */ jsx("defs", {
|
|
29008
29014
|
children: /* @__PURE__ */ jsx("clipPath", {
|
|
29009
|
-
id:
|
|
29015
|
+
id: id2,
|
|
29010
29016
|
children: /* @__PURE__ */ jsx("rect", {
|
|
29011
29017
|
width: "12",
|
|
29012
29018
|
height: "12",
|
|
@@ -29535,7 +29541,7 @@ function Btn({
|
|
|
29535
29541
|
color: color2 = vars("colors-neutral-white"),
|
|
29536
29542
|
disabled: disabled2 = false,
|
|
29537
29543
|
fillLoader = vars("colors-neutral-white"),
|
|
29538
|
-
id: id2,
|
|
29544
|
+
id: id2 = void 0,
|
|
29539
29545
|
isFullWidth = false,
|
|
29540
29546
|
isLoading = false,
|
|
29541
29547
|
leftIcon,
|
|
@@ -29958,6 +29964,36 @@ function UserWay() {
|
|
|
29958
29964
|
children: /* @__PURE__ */ jsx(Accessibility, {})
|
|
29959
29965
|
});
|
|
29960
29966
|
}
|
|
29967
|
+
function UserWayCookie() {
|
|
29968
|
+
var _a;
|
|
29969
|
+
const cookieName = "userwayData";
|
|
29970
|
+
const userwayDataCookie = (_a = document.cookie.split("; ").find((row) => row.startsWith(`${cookieName}=`))) == null ? void 0 : _a.split("=")[1];
|
|
29971
|
+
if (userwayDataCookie) {
|
|
29972
|
+
try {
|
|
29973
|
+
const userwayData = JSON.parse(decodeURIComponent(userwayDataCookie));
|
|
29974
|
+
for (const [key, value] of Object.entries(userwayData)) {
|
|
29975
|
+
localStorage.setItem(key, value);
|
|
29976
|
+
}
|
|
29977
|
+
console.log("UserWay data restored to localStorage:", userwayData);
|
|
29978
|
+
} catch (error) {
|
|
29979
|
+
console.error("Error parsing UserWay data from cookie:", error);
|
|
29980
|
+
}
|
|
29981
|
+
}
|
|
29982
|
+
window.addEventListener("beforeunload", () => {
|
|
29983
|
+
const userwayData = {};
|
|
29984
|
+
for (const key in localStorage) {
|
|
29985
|
+
if (key.startsWith("userway-")) {
|
|
29986
|
+
userwayData[key] = localStorage.getItem(key);
|
|
29987
|
+
}
|
|
29988
|
+
}
|
|
29989
|
+
const serializedData = JSON.stringify(userwayData);
|
|
29990
|
+
const expiryDate = new Date();
|
|
29991
|
+
expiryDate.setTime(expiryDate.getTime() + 24 * 60 * 60 * 1e3);
|
|
29992
|
+
document.cookie = `${cookieName}=${encodeURIComponent(
|
|
29993
|
+
serializedData
|
|
29994
|
+
)};expires=${expiryDate.toUTCString()};path=/`;
|
|
29995
|
+
});
|
|
29996
|
+
}
|
|
29961
29997
|
const STUDENT = 4;
|
|
29962
29998
|
function Header() {
|
|
29963
29999
|
const {
|
|
@@ -32283,6 +32319,7 @@ const Eventos = ({
|
|
|
32283
32319
|
}
|
|
32284
32320
|
};
|
|
32285
32321
|
const Avi = () => {
|
|
32322
|
+
const id2 = `clip${uniqueId()}`;
|
|
32286
32323
|
return /* @__PURE__ */ jsxs(Icon, {
|
|
32287
32324
|
width: "32px",
|
|
32288
32325
|
height: "32px",
|
|
@@ -32290,7 +32327,7 @@ const Avi = () => {
|
|
|
32290
32327
|
fill: "none",
|
|
32291
32328
|
xmlns: "http://www.w3.org/2000/svg",
|
|
32292
32329
|
children: [/* @__PURE__ */ jsxs("g", {
|
|
32293
|
-
clipPath:
|
|
32330
|
+
clipPath: `url(#${id2})`,
|
|
32294
32331
|
children: [/* @__PURE__ */ jsx("path", {
|
|
32295
32332
|
d: "M20 1V9H28",
|
|
32296
32333
|
stroke: "#B0CFE0",
|
|
@@ -32326,7 +32363,7 @@ const Avi = () => {
|
|
|
32326
32363
|
})]
|
|
32327
32364
|
}), /* @__PURE__ */ jsx("defs", {
|
|
32328
32365
|
children: /* @__PURE__ */ jsx("clipPath", {
|
|
32329
|
-
id:
|
|
32366
|
+
id: id2,
|
|
32330
32367
|
children: /* @__PURE__ */ jsx("rect", {
|
|
32331
32368
|
width: "32",
|
|
32332
32369
|
height: "32",
|
|
@@ -32337,6 +32374,7 @@ const Avi = () => {
|
|
|
32337
32374
|
});
|
|
32338
32375
|
};
|
|
32339
32376
|
const Csv = () => {
|
|
32377
|
+
const id2 = `clip${uniqueId()}`;
|
|
32340
32378
|
return /* @__PURE__ */ jsxs(Icon, {
|
|
32341
32379
|
width: "32px",
|
|
32342
32380
|
height: "32px",
|
|
@@ -32344,7 +32382,7 @@ const Csv = () => {
|
|
|
32344
32382
|
fill: "none",
|
|
32345
32383
|
xmlns: "http://www.w3.org/2000/svg",
|
|
32346
32384
|
children: [/* @__PURE__ */ jsxs("g", {
|
|
32347
|
-
clipPath:
|
|
32385
|
+
clipPath: `url(#${id2})`,
|
|
32348
32386
|
children: [/* @__PURE__ */ jsx("path", {
|
|
32349
32387
|
d: "M20 1V9H28",
|
|
32350
32388
|
stroke: "#B0CFE0",
|
|
@@ -32380,7 +32418,7 @@ const Csv = () => {
|
|
|
32380
32418
|
})]
|
|
32381
32419
|
}), /* @__PURE__ */ jsx("defs", {
|
|
32382
32420
|
children: /* @__PURE__ */ jsx("clipPath", {
|
|
32383
|
-
id:
|
|
32421
|
+
id: id2,
|
|
32384
32422
|
children: /* @__PURE__ */ jsx("rect", {
|
|
32385
32423
|
width: "32",
|
|
32386
32424
|
height: "32",
|
|
@@ -32391,6 +32429,7 @@ const Csv = () => {
|
|
|
32391
32429
|
});
|
|
32392
32430
|
};
|
|
32393
32431
|
const Doc = () => {
|
|
32432
|
+
const id2 = `clip${uniqueId()}`;
|
|
32394
32433
|
return /* @__PURE__ */ jsxs(Icon, {
|
|
32395
32434
|
width: "32px",
|
|
32396
32435
|
height: "32px",
|
|
@@ -32398,7 +32437,7 @@ const Doc = () => {
|
|
|
32398
32437
|
fill: "none",
|
|
32399
32438
|
xmlns: "http://www.w3.org/2000/svg",
|
|
32400
32439
|
children: [/* @__PURE__ */ jsxs("g", {
|
|
32401
|
-
clipPath:
|
|
32440
|
+
clipPath: `url(#${id2})`,
|
|
32402
32441
|
children: [/* @__PURE__ */ jsx("path", {
|
|
32403
32442
|
d: "M20 1V9H28",
|
|
32404
32443
|
stroke: "#B0CFE0",
|
|
@@ -32434,7 +32473,7 @@ const Doc = () => {
|
|
|
32434
32473
|
})]
|
|
32435
32474
|
}), /* @__PURE__ */ jsx("defs", {
|
|
32436
32475
|
children: /* @__PURE__ */ jsx("clipPath", {
|
|
32437
|
-
id:
|
|
32476
|
+
id: id2,
|
|
32438
32477
|
children: /* @__PURE__ */ jsx("rect", {
|
|
32439
32478
|
width: "32",
|
|
32440
32479
|
height: "32",
|
|
@@ -32445,6 +32484,7 @@ const Doc = () => {
|
|
|
32445
32484
|
});
|
|
32446
32485
|
};
|
|
32447
32486
|
const Docx = () => {
|
|
32487
|
+
const id2 = `clip${uniqueId()}`;
|
|
32448
32488
|
return /* @__PURE__ */ jsxs(Icon, {
|
|
32449
32489
|
width: "32px",
|
|
32450
32490
|
height: "32px",
|
|
@@ -32452,7 +32492,7 @@ const Docx = () => {
|
|
|
32452
32492
|
fill: "none",
|
|
32453
32493
|
xmlns: "http://www.w3.org/2000/svg",
|
|
32454
32494
|
children: [/* @__PURE__ */ jsxs("g", {
|
|
32455
|
-
clipPath:
|
|
32495
|
+
clipPath: `url(#${id2})`,
|
|
32456
32496
|
children: [/* @__PURE__ */ jsx("path", {
|
|
32457
32497
|
d: "M20 1V9H28",
|
|
32458
32498
|
stroke: "#B0CFE0",
|
|
@@ -32491,7 +32531,7 @@ const Docx = () => {
|
|
|
32491
32531
|
})]
|
|
32492
32532
|
}), /* @__PURE__ */ jsx("defs", {
|
|
32493
32533
|
children: /* @__PURE__ */ jsx("clipPath", {
|
|
32494
|
-
id:
|
|
32534
|
+
id: id2,
|
|
32495
32535
|
children: /* @__PURE__ */ jsx("rect", {
|
|
32496
32536
|
width: "32",
|
|
32497
32537
|
height: "32",
|
|
@@ -32502,6 +32542,7 @@ const Docx = () => {
|
|
|
32502
32542
|
});
|
|
32503
32543
|
};
|
|
32504
32544
|
const Gif = () => {
|
|
32545
|
+
const id2 = `clip${uniqueId()}`;
|
|
32505
32546
|
return /* @__PURE__ */ jsxs(Icon, {
|
|
32506
32547
|
width: "32px",
|
|
32507
32548
|
height: "32px",
|
|
@@ -32509,7 +32550,7 @@ const Gif = () => {
|
|
|
32509
32550
|
fill: "none",
|
|
32510
32551
|
xmlns: "http://www.w3.org/2000/svg",
|
|
32511
32552
|
children: [/* @__PURE__ */ jsxs("g", {
|
|
32512
|
-
clipPath:
|
|
32553
|
+
clipPath: `url(#${id2})`,
|
|
32513
32554
|
children: [/* @__PURE__ */ jsx("path", {
|
|
32514
32555
|
d: "M20 1V9H28",
|
|
32515
32556
|
stroke: "#B0CFE0",
|
|
@@ -32545,7 +32586,7 @@ const Gif = () => {
|
|
|
32545
32586
|
})]
|
|
32546
32587
|
}), /* @__PURE__ */ jsx("defs", {
|
|
32547
32588
|
children: /* @__PURE__ */ jsx("clipPath", {
|
|
32548
|
-
id:
|
|
32589
|
+
id: id2,
|
|
32549
32590
|
children: /* @__PURE__ */ jsx("rect", {
|
|
32550
32591
|
width: "32",
|
|
32551
32592
|
height: "32",
|
|
@@ -32598,6 +32639,7 @@ const Icons = ({
|
|
|
32598
32639
|
}
|
|
32599
32640
|
};
|
|
32600
32641
|
const Jpeg = () => {
|
|
32642
|
+
const id2 = `clip${uniqueId()}`;
|
|
32601
32643
|
return /* @__PURE__ */ jsxs(Icon, {
|
|
32602
32644
|
width: "32px",
|
|
32603
32645
|
height: "32px",
|
|
@@ -32605,7 +32647,7 @@ const Jpeg = () => {
|
|
|
32605
32647
|
fill: "none",
|
|
32606
32648
|
xmlns: "http://www.w3.org/2000/svg",
|
|
32607
32649
|
children: [/* @__PURE__ */ jsxs("g", {
|
|
32608
|
-
clipPath:
|
|
32650
|
+
clipPath: `url(#${id2})`,
|
|
32609
32651
|
children: [/* @__PURE__ */ jsx("path", {
|
|
32610
32652
|
d: "M20 1V9H28",
|
|
32611
32653
|
stroke: "#B0CFE0",
|
|
@@ -32644,7 +32686,7 @@ const Jpeg = () => {
|
|
|
32644
32686
|
})]
|
|
32645
32687
|
}), /* @__PURE__ */ jsx("defs", {
|
|
32646
32688
|
children: /* @__PURE__ */ jsx("clipPath", {
|
|
32647
|
-
id:
|
|
32689
|
+
id: id2,
|
|
32648
32690
|
children: /* @__PURE__ */ jsx("rect", {
|
|
32649
32691
|
width: "32",
|
|
32650
32692
|
height: "32",
|
|
@@ -32697,6 +32739,7 @@ const Jpg = () => {
|
|
|
32697
32739
|
});
|
|
32698
32740
|
};
|
|
32699
32741
|
const Mkv = () => {
|
|
32742
|
+
const id2 = `clip${uniqueId()}`;
|
|
32700
32743
|
return /* @__PURE__ */ jsxs(Icon, {
|
|
32701
32744
|
width: "32px",
|
|
32702
32745
|
height: "32px",
|
|
@@ -32704,7 +32747,7 @@ const Mkv = () => {
|
|
|
32704
32747
|
fill: "none",
|
|
32705
32748
|
xmlns: "http://www.w3.org/2000/svg",
|
|
32706
32749
|
children: [/* @__PURE__ */ jsxs("g", {
|
|
32707
|
-
clipPath:
|
|
32750
|
+
clipPath: `url(#${id2})`,
|
|
32708
32751
|
children: [/* @__PURE__ */ jsx("path", {
|
|
32709
32752
|
d: "M20 1V9H28",
|
|
32710
32753
|
stroke: "#B0CFE0",
|
|
@@ -32740,7 +32783,7 @@ const Mkv = () => {
|
|
|
32740
32783
|
})]
|
|
32741
32784
|
}), /* @__PURE__ */ jsx("defs", {
|
|
32742
32785
|
children: /* @__PURE__ */ jsx("clipPath", {
|
|
32743
|
-
id:
|
|
32786
|
+
id: id2,
|
|
32744
32787
|
children: /* @__PURE__ */ jsx("rect", {
|
|
32745
32788
|
width: "32",
|
|
32746
32789
|
height: "32",
|
|
@@ -32751,6 +32794,7 @@ const Mkv = () => {
|
|
|
32751
32794
|
});
|
|
32752
32795
|
};
|
|
32753
32796
|
const Mp3 = () => {
|
|
32797
|
+
const id2 = `clip${uniqueId()}`;
|
|
32754
32798
|
return /* @__PURE__ */ jsxs(Icon, {
|
|
32755
32799
|
width: "32px",
|
|
32756
32800
|
height: "32px",
|
|
@@ -32758,7 +32802,7 @@ const Mp3 = () => {
|
|
|
32758
32802
|
fill: "none",
|
|
32759
32803
|
xmlns: "http://www.w3.org/2000/svg",
|
|
32760
32804
|
children: [/* @__PURE__ */ jsxs("g", {
|
|
32761
|
-
clipPath:
|
|
32805
|
+
clipPath: `url(#${id2})`,
|
|
32762
32806
|
children: [/* @__PURE__ */ jsx("path", {
|
|
32763
32807
|
d: "M20 1V9H28",
|
|
32764
32808
|
stroke: "#B0CFE0",
|
|
@@ -32794,7 +32838,7 @@ const Mp3 = () => {
|
|
|
32794
32838
|
})]
|
|
32795
32839
|
}), /* @__PURE__ */ jsx("defs", {
|
|
32796
32840
|
children: /* @__PURE__ */ jsx("clipPath", {
|
|
32797
|
-
id:
|
|
32841
|
+
id: id2,
|
|
32798
32842
|
children: /* @__PURE__ */ jsx("rect", {
|
|
32799
32843
|
width: "32",
|
|
32800
32844
|
height: "32",
|
|
@@ -32805,6 +32849,7 @@ const Mp3 = () => {
|
|
|
32805
32849
|
});
|
|
32806
32850
|
};
|
|
32807
32851
|
const Mp4 = () => {
|
|
32852
|
+
const id2 = `clip${uniqueId()}`;
|
|
32808
32853
|
return /* @__PURE__ */ jsxs(Icon, {
|
|
32809
32854
|
width: "32px",
|
|
32810
32855
|
height: "32px",
|
|
@@ -32812,7 +32857,7 @@ const Mp4 = () => {
|
|
|
32812
32857
|
fill: "none",
|
|
32813
32858
|
xmlns: "http://www.w3.org/2000/svg",
|
|
32814
32859
|
children: [/* @__PURE__ */ jsxs("g", {
|
|
32815
|
-
clipPath:
|
|
32860
|
+
clipPath: `url(#${id2})`,
|
|
32816
32861
|
children: [/* @__PURE__ */ jsx("path", {
|
|
32817
32862
|
d: "M20 1V9H28",
|
|
32818
32863
|
stroke: "#B0CFE0",
|
|
@@ -32848,7 +32893,7 @@ const Mp4 = () => {
|
|
|
32848
32893
|
})]
|
|
32849
32894
|
}), /* @__PURE__ */ jsx("defs", {
|
|
32850
32895
|
children: /* @__PURE__ */ jsx("clipPath", {
|
|
32851
|
-
id:
|
|
32896
|
+
id: id2,
|
|
32852
32897
|
children: /* @__PURE__ */ jsx("rect", {
|
|
32853
32898
|
width: "32",
|
|
32854
32899
|
height: "32",
|
|
@@ -32859,6 +32904,7 @@ const Mp4 = () => {
|
|
|
32859
32904
|
});
|
|
32860
32905
|
};
|
|
32861
32906
|
const Pdf = () => {
|
|
32907
|
+
const id2 = `clip${uniqueId()}`;
|
|
32862
32908
|
return /* @__PURE__ */ jsxs(Icon, {
|
|
32863
32909
|
width: "32px",
|
|
32864
32910
|
height: "32px",
|
|
@@ -32866,7 +32912,7 @@ const Pdf = () => {
|
|
|
32866
32912
|
fill: "none",
|
|
32867
32913
|
xmlns: "http://www.w3.org/2000/svg",
|
|
32868
32914
|
children: [/* @__PURE__ */ jsxs("g", {
|
|
32869
|
-
clipPath:
|
|
32915
|
+
clipPath: `url(#${id2})`,
|
|
32870
32916
|
children: [/* @__PURE__ */ jsx("path", {
|
|
32871
32917
|
d: "M20 1V9H28",
|
|
32872
32918
|
stroke: "#B0CFE0",
|
|
@@ -32902,7 +32948,7 @@ const Pdf = () => {
|
|
|
32902
32948
|
})]
|
|
32903
32949
|
}), /* @__PURE__ */ jsx("defs", {
|
|
32904
32950
|
children: /* @__PURE__ */ jsx("clipPath", {
|
|
32905
|
-
id:
|
|
32951
|
+
id: id2,
|
|
32906
32952
|
children: /* @__PURE__ */ jsx("rect", {
|
|
32907
32953
|
width: "32",
|
|
32908
32954
|
height: "32",
|
|
@@ -32913,6 +32959,7 @@ const Pdf = () => {
|
|
|
32913
32959
|
});
|
|
32914
32960
|
};
|
|
32915
32961
|
const Png = () => {
|
|
32962
|
+
const id2 = `clip${uniqueId()}`;
|
|
32916
32963
|
return /* @__PURE__ */ jsxs(Icon, {
|
|
32917
32964
|
width: "32px",
|
|
32918
32965
|
height: "32px",
|
|
@@ -32920,7 +32967,7 @@ const Png = () => {
|
|
|
32920
32967
|
fill: "none",
|
|
32921
32968
|
xmlns: "http://www.w3.org/2000/svg",
|
|
32922
32969
|
children: [/* @__PURE__ */ jsxs("g", {
|
|
32923
|
-
clipPath:
|
|
32970
|
+
clipPath: `url(#${id2})`,
|
|
32924
32971
|
children: [/* @__PURE__ */ jsx("path", {
|
|
32925
32972
|
d: "M20 1V9H28",
|
|
32926
32973
|
stroke: "#B0CFE0",
|
|
@@ -32956,7 +33003,7 @@ const Png = () => {
|
|
|
32956
33003
|
})]
|
|
32957
33004
|
}), /* @__PURE__ */ jsx("defs", {
|
|
32958
33005
|
children: /* @__PURE__ */ jsx("clipPath", {
|
|
32959
|
-
id:
|
|
33006
|
+
id: id2,
|
|
32960
33007
|
children: /* @__PURE__ */ jsx("rect", {
|
|
32961
33008
|
width: "32",
|
|
32962
33009
|
height: "32",
|
|
@@ -32967,6 +33014,7 @@ const Png = () => {
|
|
|
32967
33014
|
});
|
|
32968
33015
|
};
|
|
32969
33016
|
const Ppt = () => {
|
|
33017
|
+
const id2 = `clip${uniqueId()}`;
|
|
32970
33018
|
return /* @__PURE__ */ jsxs(Icon, {
|
|
32971
33019
|
width: "32px",
|
|
32972
33020
|
height: "32px",
|
|
@@ -32974,7 +33022,7 @@ const Ppt = () => {
|
|
|
32974
33022
|
fill: "none",
|
|
32975
33023
|
xmlns: "http://www.w3.org/2000/svg",
|
|
32976
33024
|
children: [/* @__PURE__ */ jsxs("g", {
|
|
32977
|
-
clipPath:
|
|
33025
|
+
clipPath: `url(#${id2})`,
|
|
32978
33026
|
children: [/* @__PURE__ */ jsx("path", {
|
|
32979
33027
|
d: "M20 1V9H28",
|
|
32980
33028
|
stroke: "#B0CFE0",
|
|
@@ -33010,7 +33058,7 @@ const Ppt = () => {
|
|
|
33010
33058
|
})]
|
|
33011
33059
|
}), /* @__PURE__ */ jsx("defs", {
|
|
33012
33060
|
children: /* @__PURE__ */ jsx("clipPath", {
|
|
33013
|
-
id:
|
|
33061
|
+
id: id2,
|
|
33014
33062
|
children: /* @__PURE__ */ jsx("rect", {
|
|
33015
33063
|
width: "32",
|
|
33016
33064
|
height: "32",
|
|
@@ -33021,6 +33069,7 @@ const Ppt = () => {
|
|
|
33021
33069
|
});
|
|
33022
33070
|
};
|
|
33023
33071
|
const Pptx = () => {
|
|
33072
|
+
const id2 = `clip${uniqueId()}`;
|
|
33024
33073
|
return /* @__PURE__ */ jsxs(Icon, {
|
|
33025
33074
|
width: "32px",
|
|
33026
33075
|
height: "32px",
|
|
@@ -33028,7 +33077,7 @@ const Pptx = () => {
|
|
|
33028
33077
|
fill: "none",
|
|
33029
33078
|
xmlns: "http://www.w3.org/2000/svg",
|
|
33030
33079
|
children: [/* @__PURE__ */ jsxs("g", {
|
|
33031
|
-
clipPath:
|
|
33080
|
+
clipPath: `url(#${id2})`,
|
|
33032
33081
|
children: [/* @__PURE__ */ jsx("path", {
|
|
33033
33082
|
d: "M20 1V9H28",
|
|
33034
33083
|
stroke: "#B0CFE0",
|
|
@@ -33067,7 +33116,7 @@ const Pptx = () => {
|
|
|
33067
33116
|
})]
|
|
33068
33117
|
}), /* @__PURE__ */ jsx("defs", {
|
|
33069
33118
|
children: /* @__PURE__ */ jsx("clipPath", {
|
|
33070
|
-
id:
|
|
33119
|
+
id: id2,
|
|
33071
33120
|
children: /* @__PURE__ */ jsx("rect", {
|
|
33072
33121
|
width: "32",
|
|
33073
33122
|
height: "32",
|
|
@@ -33078,6 +33127,7 @@ const Pptx = () => {
|
|
|
33078
33127
|
});
|
|
33079
33128
|
};
|
|
33080
33129
|
const Wav = () => {
|
|
33130
|
+
const id2 = `clip${uniqueId()}`;
|
|
33081
33131
|
return /* @__PURE__ */ jsxs(Icon, {
|
|
33082
33132
|
width: "32px",
|
|
33083
33133
|
height: "32px",
|
|
@@ -33085,7 +33135,7 @@ const Wav = () => {
|
|
|
33085
33135
|
fill: "none",
|
|
33086
33136
|
xmlns: "http://www.w3.org/2000/svg",
|
|
33087
33137
|
children: [/* @__PURE__ */ jsxs("g", {
|
|
33088
|
-
clipPath:
|
|
33138
|
+
clipPath: `url(#${id2})`,
|
|
33089
33139
|
children: [/* @__PURE__ */ jsx("path", {
|
|
33090
33140
|
d: "M20 1V9H28",
|
|
33091
33141
|
stroke: "#B0CFE0",
|
|
@@ -33121,7 +33171,7 @@ const Wav = () => {
|
|
|
33121
33171
|
})]
|
|
33122
33172
|
}), /* @__PURE__ */ jsx("defs", {
|
|
33123
33173
|
children: /* @__PURE__ */ jsx("clipPath", {
|
|
33124
|
-
id:
|
|
33174
|
+
id: id2,
|
|
33125
33175
|
children: /* @__PURE__ */ jsx("rect", {
|
|
33126
33176
|
width: "32",
|
|
33127
33177
|
height: "32",
|
|
@@ -33132,6 +33182,7 @@ const Wav = () => {
|
|
|
33132
33182
|
});
|
|
33133
33183
|
};
|
|
33134
33184
|
const Xls = () => {
|
|
33185
|
+
const id2 = `clip${uniqueId()}`;
|
|
33135
33186
|
return /* @__PURE__ */ jsxs(Icon, {
|
|
33136
33187
|
width: "32px",
|
|
33137
33188
|
height: "32px",
|
|
@@ -33139,7 +33190,7 @@ const Xls = () => {
|
|
|
33139
33190
|
fill: "none",
|
|
33140
33191
|
xmlns: "http://www.w3.org/2000/svg",
|
|
33141
33192
|
children: [/* @__PURE__ */ jsxs("g", {
|
|
33142
|
-
clipPath:
|
|
33193
|
+
clipPath: `url(#${id2})`,
|
|
33143
33194
|
children: [/* @__PURE__ */ jsx("path", {
|
|
33144
33195
|
d: "M20 1V9H28",
|
|
33145
33196
|
stroke: "#B0CFE0",
|
|
@@ -33175,7 +33226,7 @@ const Xls = () => {
|
|
|
33175
33226
|
})]
|
|
33176
33227
|
}), /* @__PURE__ */ jsx("defs", {
|
|
33177
33228
|
children: /* @__PURE__ */ jsx("clipPath", {
|
|
33178
|
-
id:
|
|
33229
|
+
id: id2,
|
|
33179
33230
|
children: /* @__PURE__ */ jsx("rect", {
|
|
33180
33231
|
width: "32",
|
|
33181
33232
|
height: "32",
|
|
@@ -33186,6 +33237,7 @@ const Xls = () => {
|
|
|
33186
33237
|
});
|
|
33187
33238
|
};
|
|
33188
33239
|
const Xlsx = () => {
|
|
33240
|
+
const id2 = `clip${uniqueId()}`;
|
|
33189
33241
|
return /* @__PURE__ */ jsxs(Icon, {
|
|
33190
33242
|
width: "32px",
|
|
33191
33243
|
height: "32px",
|
|
@@ -33193,7 +33245,7 @@ const Xlsx = () => {
|
|
|
33193
33245
|
fill: "none",
|
|
33194
33246
|
xmlns: "http://www.w3.org/2000/svg",
|
|
33195
33247
|
children: [/* @__PURE__ */ jsxs("g", {
|
|
33196
|
-
clipPath:
|
|
33248
|
+
clipPath: `url(#${id2})`,
|
|
33197
33249
|
children: [/* @__PURE__ */ jsx("path", {
|
|
33198
33250
|
d: "M20 1V9H28",
|
|
33199
33251
|
stroke: "#B0CFE0",
|
|
@@ -33232,7 +33284,7 @@ const Xlsx = () => {
|
|
|
33232
33284
|
})]
|
|
33233
33285
|
}), /* @__PURE__ */ jsx("defs", {
|
|
33234
33286
|
children: /* @__PURE__ */ jsx("clipPath", {
|
|
33235
|
-
id:
|
|
33287
|
+
id: id2,
|
|
33236
33288
|
children: /* @__PURE__ */ jsx("rect", {
|
|
33237
33289
|
width: "32",
|
|
33238
33290
|
height: "32",
|
|
@@ -33322,5 +33374,5 @@ const Resources = ({
|
|
|
33322
33374
|
})
|
|
33323
33375
|
});
|
|
33324
33376
|
};
|
|
33325
|
-
export { Alert, Btn, BtnLink, BtnPrimary, BtnSecondary, BtnTertiary, CourseList, CourseStatus, Eventos, FlashNotification, index as Icons, Label, ModalAlert, NewTooltip, Progress, Resources, Ripples, TinyAlert, UserWay, dataFake, maxWidthCoursesList, theme, useFlashNotification, vars };
|
|
33377
|
+
export { Alert, Btn, BtnLink, BtnPrimary, BtnSecondary, BtnTertiary, CourseList, CourseStatus, Eventos, FlashNotification, index as Icons, Label, ModalAlert, NewTooltip, Progress, Resources, Ripples, TinyAlert, UserWay, UserWayCookie, dataFake, maxWidthCoursesList, theme, useFlashNotification, vars };
|
|
33326
33378
|
//# sourceMappingURL=eclass-ui-kit.es.js.map
|