@app-studio/web 0.8.94 → 0.8.95
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/components/Icon/Icon.d.ts +2 -0
- package/dist/web.cjs.development.js +55 -2
- package/dist/web.cjs.development.js.map +1 -1
- package/dist/web.cjs.production.min.js +1 -1
- package/dist/web.cjs.production.min.js.map +1 -1
- package/dist/web.esm.js +54 -3
- package/dist/web.esm.js.map +1 -1
- package/dist/web.umd.development.js +55 -2
- package/dist/web.umd.development.js.map +1 -1
- package/dist/web.umd.production.min.js +1 -1
- package/dist/web.umd.production.min.js.map +1 -1
- package/package.json +1 -1
|
@@ -704,7 +704,9 @@
|
|
|
704
704
|
_excluded76 = ["widthHeight", "color", "strokeWidth", "filled"],
|
|
705
705
|
_excluded77 = ["widthHeight", "color", "strokeWidth", "filled"],
|
|
706
706
|
_excluded78 = ["widthHeight", "color", "strokeWidth", "filled"],
|
|
707
|
-
_excluded79 = ["widthHeight", "color", "strokeWidth", "filled"]
|
|
707
|
+
_excluded79 = ["widthHeight", "color", "strokeWidth", "filled"],
|
|
708
|
+
_excluded80 = ["widthHeight", "color", "strokeWidth", "filled"],
|
|
709
|
+
_excluded81 = ["widthHeight", "color", "strokeWidth", "filled"];
|
|
708
710
|
// Default wrapper component for consistent sizing and styling
|
|
709
711
|
var IconWrapper = _ref => {
|
|
710
712
|
var {
|
|
@@ -2772,6 +2774,53 @@
|
|
|
2772
2774
|
})));
|
|
2773
2775
|
};
|
|
2774
2776
|
var CheckIcon = TickIcon;
|
|
2777
|
+
var LogoutIcon = _ref80 => {
|
|
2778
|
+
var {
|
|
2779
|
+
widthHeight = 24,
|
|
2780
|
+
color = 'currentColor',
|
|
2781
|
+
strokeWidth = 1,
|
|
2782
|
+
filled = false
|
|
2783
|
+
} = _ref80,
|
|
2784
|
+
props = _objectWithoutPropertiesLoose(_ref80, _excluded80);
|
|
2785
|
+
return /*#__PURE__*/React__default.createElement(IconWrapper, Object.assign({
|
|
2786
|
+
widthHeight: widthHeight,
|
|
2787
|
+
color: color
|
|
2788
|
+
}, props), /*#__PURE__*/React__default.createElement("svg", Object.assign({
|
|
2789
|
+
viewBox: "0 0 24 24",
|
|
2790
|
+
"aria-hidden": "false",
|
|
2791
|
+
focusable: "false"
|
|
2792
|
+
}, getSvgProps(filled, color, strokeWidth)), /*#__PURE__*/React__default.createElement("path", {
|
|
2793
|
+
d: "M16 17l5-5-5-5"
|
|
2794
|
+
}), /*#__PURE__*/React__default.createElement("path", {
|
|
2795
|
+
d: "M21 12H9"
|
|
2796
|
+
}), /*#__PURE__*/React__default.createElement("path", {
|
|
2797
|
+
d: "M13 5v-2a1 1 0 0 0-1-1H5a2 2 0 0 0-2 2v16a2 2 0 0 0 2 2h7a1 1 0 0 0 1-1v-2"
|
|
2798
|
+
})));
|
|
2799
|
+
};
|
|
2800
|
+
var PowerOffIcon = _ref81 => {
|
|
2801
|
+
var {
|
|
2802
|
+
widthHeight = 24,
|
|
2803
|
+
color = 'currentColor',
|
|
2804
|
+
strokeWidth = 1.5,
|
|
2805
|
+
filled = false
|
|
2806
|
+
} = _ref81,
|
|
2807
|
+
props = _objectWithoutPropertiesLoose(_ref81, _excluded81);
|
|
2808
|
+
return /*#__PURE__*/React__default.createElement(IconWrapper, Object.assign({
|
|
2809
|
+
widthHeight: widthHeight,
|
|
2810
|
+
color: color
|
|
2811
|
+
}, props), /*#__PURE__*/React__default.createElement("svg", Object.assign({
|
|
2812
|
+
viewBox: "0 0 24 24",
|
|
2813
|
+
"aria-hidden": "false",
|
|
2814
|
+
focusable: "false"
|
|
2815
|
+
}, getSvgProps(filled, color, strokeWidth)), /*#__PURE__*/React__default.createElement("line", {
|
|
2816
|
+
x1: "12",
|
|
2817
|
+
y1: "2",
|
|
2818
|
+
x2: "12",
|
|
2819
|
+
y2: "8"
|
|
2820
|
+
}), /*#__PURE__*/React__default.createElement("path", {
|
|
2821
|
+
d: "M6.8 6.8a8 8 0 1 0 10 0"
|
|
2822
|
+
})));
|
|
2823
|
+
};
|
|
2775
2824
|
|
|
2776
2825
|
var Icon = {
|
|
2777
2826
|
__proto__: null,
|
|
@@ -2854,7 +2903,9 @@
|
|
|
2854
2903
|
ChartIcon: ChartIcon,
|
|
2855
2904
|
GiftIcon: GiftIcon,
|
|
2856
2905
|
ShieldIcon: ShieldIcon,
|
|
2857
|
-
CheckIcon: CheckIcon
|
|
2906
|
+
CheckIcon: CheckIcon,
|
|
2907
|
+
LogoutIcon: LogoutIcon,
|
|
2908
|
+
PowerOffIcon: PowerOffIcon
|
|
2858
2909
|
};
|
|
2859
2910
|
|
|
2860
2911
|
/**
|
|
@@ -18582,6 +18633,7 @@
|
|
|
18582
18633
|
exports.Loader = Loader;
|
|
18583
18634
|
exports.LocationIcon = LocationIcon;
|
|
18584
18635
|
exports.LockIcon = LockIcon;
|
|
18636
|
+
exports.LogoutIcon = LogoutIcon;
|
|
18585
18637
|
exports.MagicWandIcon = MagicWandIcon;
|
|
18586
18638
|
exports.MenuIcon = MenuIcon;
|
|
18587
18639
|
exports.Menubar = Menubar;
|
|
@@ -18601,6 +18653,7 @@
|
|
|
18601
18653
|
exports.PauseIcon = PauseIcon;
|
|
18602
18654
|
exports.PlayIcon = PlayIcon;
|
|
18603
18655
|
exports.PlusIcon = PlusIcon;
|
|
18656
|
+
exports.PowerOffIcon = PowerOffIcon;
|
|
18604
18657
|
exports.PrintIcon = PrintIcon;
|
|
18605
18658
|
exports.ProfileIcon = ProfileIcon;
|
|
18606
18659
|
exports.RefreshIcon = RefreshIcon;
|