labsense-ui-kit 1.1.46 → 1.1.48
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/Icons/SVGs/Disk.d.ts +4 -0
- package/dist/Icons/SVGs/Power.d.ts +4 -0
- package/dist/Icons/SVGs/index.d.ts +2 -0
- package/dist/Icons/index.d.ts +1 -1
- package/dist/index.js +46 -1
- package/dist/index.js.map +1 -1
- package/dist/index.modern.js +46 -1
- package/dist/index.modern.js.map +1 -1
- package/package.json +1 -1
package/dist/index.modern.js
CHANGED
|
@@ -839,6 +839,29 @@ var Directory = function Directory(_ref) {
|
|
|
839
839
|
}));
|
|
840
840
|
};
|
|
841
841
|
|
|
842
|
+
var Disk = function Disk(_ref) {
|
|
843
|
+
var size = _ref.size,
|
|
844
|
+
color = _ref.color,
|
|
845
|
+
weight = _ref.weight;
|
|
846
|
+
return React.createElement("svg", {
|
|
847
|
+
width: size,
|
|
848
|
+
height: size,
|
|
849
|
+
strokeWidth: weight,
|
|
850
|
+
viewBox: "0 0 16 13",
|
|
851
|
+
fill: "none",
|
|
852
|
+
xmlns: "http://www.w3.org/2000/svg"
|
|
853
|
+
}, React.createElement("path", {
|
|
854
|
+
d: "M15.9997 7.54L14.4297 1.215C14.3682 1.00822 14.2415 0.82686 14.0685 0.697999C13.8955 0.569138 13.6854 0.499683 13.4697 0.500001H2.52971C2.31054 0.499836 2.09739 0.571677 1.92304 0.704475C1.74868 0.837272 1.62279 1.02367 1.56471 1.235L-0.000293196 7.54C-0.0051106 7.57986 -0.0051106 7.62015 -0.000293196 7.66V11.5C-0.000293196 11.7652 0.105064 12.0196 0.2926 12.2071C0.480136 12.3946 0.73449 12.5 0.999707 12.5H14.9997C15.2649 12.5 15.5193 12.3946 15.7068 12.2071C15.8944 12.0196 15.9997 11.7652 15.9997 11.5V7.655C16.0041 7.6168 16.0041 7.57821 15.9997 7.54ZM0.999707 11.5V7.72L2.52971 1.5H13.4647L14.9997 7.72V11.5H0.999707Z",
|
|
855
|
+
fill: color
|
|
856
|
+
}), React.createElement("path", {
|
|
857
|
+
d: "M2 7H14V8H2V7Z",
|
|
858
|
+
fill: color
|
|
859
|
+
}), React.createElement("path", {
|
|
860
|
+
d: "M12 9H14V10H12V9Z",
|
|
861
|
+
fill: color
|
|
862
|
+
}));
|
|
863
|
+
};
|
|
864
|
+
|
|
842
865
|
var DocumentBadge = function DocumentBadge(_ref) {
|
|
843
866
|
var size = _ref.size,
|
|
844
867
|
color = _ref.color,
|
|
@@ -2303,6 +2326,25 @@ var Playback = function Playback(_ref) {
|
|
|
2303
2326
|
}));
|
|
2304
2327
|
};
|
|
2305
2328
|
|
|
2329
|
+
var Power = function Power(_ref) {
|
|
2330
|
+
var size = _ref.size,
|
|
2331
|
+
color = _ref.color,
|
|
2332
|
+
weight = _ref.weight;
|
|
2333
|
+
return React.createElement("svg", {
|
|
2334
|
+
width: size,
|
|
2335
|
+
height: size,
|
|
2336
|
+
strokeWidth: weight,
|
|
2337
|
+
viewBox: "0 0 12 12",
|
|
2338
|
+
fill: "none",
|
|
2339
|
+
xmlns: "http://www.w3.org/2000/svg"
|
|
2340
|
+
}, React.createElement("path", {
|
|
2341
|
+
d: "M9.33596 1.95312C9.93442 2.44414 10.4165 3.0618 10.7475 3.76159C11.0785 4.46138 11.2501 5.22588 11.25 6C11.25 8.89844 8.89846 11.25 6.00002 11.25C3.10159 11.25 0.750023 8.89844 0.750023 6C0.747727 5.22824 0.915609 4.46547 1.24172 3.76599C1.56783 3.06651 2.04414 2.44753 2.63674 1.95312M6.00002 0.75V6",
|
|
2342
|
+
stroke: color,
|
|
2343
|
+
strokeLinecap: "round",
|
|
2344
|
+
strokeLinejoin: "round"
|
|
2345
|
+
}));
|
|
2346
|
+
};
|
|
2347
|
+
|
|
2306
2348
|
var PremiumBadge = function PremiumBadge(_ref) {
|
|
2307
2349
|
var size = _ref.size,
|
|
2308
2350
|
color = _ref.color,
|
|
@@ -3136,6 +3178,7 @@ var IconSVGs = {
|
|
|
3136
3178
|
Cube3D: Cube3D,
|
|
3137
3179
|
Cyber: Cyber,
|
|
3138
3180
|
Directory: Directory,
|
|
3181
|
+
Disk: Disk,
|
|
3139
3182
|
DocumentBadge: DocumentBadge,
|
|
3140
3183
|
DownArrow: DownArrow,
|
|
3141
3184
|
Download: Download,
|
|
@@ -3194,6 +3237,7 @@ var IconSVGs = {
|
|
|
3194
3237
|
Play_1: Play,
|
|
3195
3238
|
Play_2: Play_2,
|
|
3196
3239
|
Playback: Playback,
|
|
3240
|
+
Power: Power,
|
|
3197
3241
|
PremiumBadge: PremiumBadge,
|
|
3198
3242
|
ProcessingBulb: ProcessingBulb,
|
|
3199
3243
|
Profile_1: Profile_1,
|
|
@@ -6805,7 +6849,8 @@ var Tabs = function Tabs(_ref10) {
|
|
|
6805
6849
|
}, tab.title)));
|
|
6806
6850
|
})), tabItems.map(function (tab, index) {
|
|
6807
6851
|
return activeTab === tab.title && React.createElement(Container$4, {
|
|
6808
|
-
key: index
|
|
6852
|
+
key: index,
|
|
6853
|
+
"$overflow": overflow
|
|
6809
6854
|
}, tab.content);
|
|
6810
6855
|
}));
|
|
6811
6856
|
};
|