@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
package/dist/web.esm.js
CHANGED
|
@@ -728,7 +728,9 @@ var _excluded$3 = ["widthHeight", "color", "transform", "orientation", "children
|
|
|
728
728
|
_excluded76 = ["widthHeight", "color", "strokeWidth", "filled"],
|
|
729
729
|
_excluded77 = ["widthHeight", "color", "strokeWidth", "filled"],
|
|
730
730
|
_excluded78 = ["widthHeight", "color", "strokeWidth", "filled"],
|
|
731
|
-
_excluded79 = ["widthHeight", "color", "strokeWidth", "filled"]
|
|
731
|
+
_excluded79 = ["widthHeight", "color", "strokeWidth", "filled"],
|
|
732
|
+
_excluded80 = ["widthHeight", "color", "strokeWidth", "filled"],
|
|
733
|
+
_excluded81 = ["widthHeight", "color", "strokeWidth", "filled"];
|
|
732
734
|
// Default wrapper component for consistent sizing and styling
|
|
733
735
|
var IconWrapper = _ref => {
|
|
734
736
|
var {
|
|
@@ -2796,6 +2798,53 @@ var ShieldIcon = _ref79 => {
|
|
|
2796
2798
|
})));
|
|
2797
2799
|
};
|
|
2798
2800
|
var CheckIcon = TickIcon;
|
|
2801
|
+
var LogoutIcon = _ref80 => {
|
|
2802
|
+
var {
|
|
2803
|
+
widthHeight = 24,
|
|
2804
|
+
color = 'currentColor',
|
|
2805
|
+
strokeWidth = 1,
|
|
2806
|
+
filled = false
|
|
2807
|
+
} = _ref80,
|
|
2808
|
+
props = _objectWithoutPropertiesLoose(_ref80, _excluded80);
|
|
2809
|
+
return /*#__PURE__*/React.createElement(IconWrapper, Object.assign({
|
|
2810
|
+
widthHeight: widthHeight,
|
|
2811
|
+
color: color
|
|
2812
|
+
}, props), /*#__PURE__*/React.createElement("svg", Object.assign({
|
|
2813
|
+
viewBox: "0 0 24 24",
|
|
2814
|
+
"aria-hidden": "false",
|
|
2815
|
+
focusable: "false"
|
|
2816
|
+
}, getSvgProps(filled, color, strokeWidth)), /*#__PURE__*/React.createElement("path", {
|
|
2817
|
+
d: "M16 17l5-5-5-5"
|
|
2818
|
+
}), /*#__PURE__*/React.createElement("path", {
|
|
2819
|
+
d: "M21 12H9"
|
|
2820
|
+
}), /*#__PURE__*/React.createElement("path", {
|
|
2821
|
+
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"
|
|
2822
|
+
})));
|
|
2823
|
+
};
|
|
2824
|
+
var PowerOffIcon = _ref81 => {
|
|
2825
|
+
var {
|
|
2826
|
+
widthHeight = 24,
|
|
2827
|
+
color = 'currentColor',
|
|
2828
|
+
strokeWidth = 1.5,
|
|
2829
|
+
filled = false
|
|
2830
|
+
} = _ref81,
|
|
2831
|
+
props = _objectWithoutPropertiesLoose(_ref81, _excluded81);
|
|
2832
|
+
return /*#__PURE__*/React.createElement(IconWrapper, Object.assign({
|
|
2833
|
+
widthHeight: widthHeight,
|
|
2834
|
+
color: color
|
|
2835
|
+
}, props), /*#__PURE__*/React.createElement("svg", Object.assign({
|
|
2836
|
+
viewBox: "0 0 24 24",
|
|
2837
|
+
"aria-hidden": "false",
|
|
2838
|
+
focusable: "false"
|
|
2839
|
+
}, getSvgProps(filled, color, strokeWidth)), /*#__PURE__*/React.createElement("line", {
|
|
2840
|
+
x1: "12",
|
|
2841
|
+
y1: "2",
|
|
2842
|
+
x2: "12",
|
|
2843
|
+
y2: "8"
|
|
2844
|
+
}), /*#__PURE__*/React.createElement("path", {
|
|
2845
|
+
d: "M6.8 6.8a8 8 0 1 0 10 0"
|
|
2846
|
+
})));
|
|
2847
|
+
};
|
|
2799
2848
|
|
|
2800
2849
|
var Icon = {
|
|
2801
2850
|
__proto__: null,
|
|
@@ -2878,7 +2927,9 @@ var Icon = {
|
|
|
2878
2927
|
ChartIcon: ChartIcon,
|
|
2879
2928
|
GiftIcon: GiftIcon,
|
|
2880
2929
|
ShieldIcon: ShieldIcon,
|
|
2881
|
-
CheckIcon: CheckIcon
|
|
2930
|
+
CheckIcon: CheckIcon,
|
|
2931
|
+
LogoutIcon: LogoutIcon,
|
|
2932
|
+
PowerOffIcon: PowerOffIcon
|
|
2882
2933
|
};
|
|
2883
2934
|
|
|
2884
2935
|
/**
|
|
@@ -18530,5 +18581,5 @@ var Tooltip = TooltipComponent;
|
|
|
18530
18581
|
Tooltip.Trigger = TooltipTrigger;
|
|
18531
18582
|
Tooltip.Content = TooltipContent;
|
|
18532
18583
|
|
|
18533
|
-
export { Accordion, Alert, ArrowIcon, AspectRatio, Avatar, Badge, BatteryIcon, BluetoothIcon, BoldArrowIcon, BookmarkIcon, Button, CalendarIcon, CameraIcon, Card, Carousel, Chart, ChartIcon, CheckIcon, Checkbox, ChevronIcon, ClockIcon, CloseEyeIcon, CloseIcon, CloudIcon, ComboBox, Command, ContextMenu, CookieConsent, CopyIcon, CountryPicker, CropIcon, DatePicker, DeleteIcon, Divider, DocumentIcon, DownloadIcon, DragAndDrop, DragAndDropComponent, DragHandleIcon, DropdownMenu, DustBinIcon, EditIcon, ErrorIcon, ExternalLinkIcon, FacebookIcon, FileIcon, FileImage, FileSVG, FilterIcon, FormikCheckbox, FormikComboBox, FormikCountryPicker, FormikDatePicker, FormikForm, FormikOTPInput, FormikPassword, FormikSelect, FormikSlider, FormikSwitch, FormikTextArea, FormikTextField, GiftIcon, HeartIcon, HelpIcon, HomeIcon, HoverCard, Icon, ImageIcon, InfoIcon, InstagramIcon, LikeIcon, Link, LinkedinIcon, Loader, LocationIcon, LockIcon, MagicWandIcon, MenuIcon, Menubar, MessageLayout, MessageView, MicrophoneIcon, MinusIcon, Modal, MoonIcon, NavigationMenu, NotificationIcon, OTPInput, OpenEyeIcon, Pagination, PanelIcon, Password, PauseIcon, PlayIcon, PlusIcon, PrintIcon, ProfileIcon, RefreshIcon, Resizable, RotateIcon, SaveIcon, SearchIcon, Select, Separator, SettingsIcon, ShapeIcon, ShareIcon, ShieldIcon, Sidebar, Slider, SliderIcon, SliderVerticalIcon, SpinnerIcon, StarIcon, SuccessIcon, Switch, Table, Tabs, Text, TextArea, TextField, TextIcon, ThreadsIcon, TickIcon, Title, Toast, Toggle, ToggleGroup, Tooltip, TwitchIcon, TwitterIcon, UnLikeIcon, UnlockIcon, UploadIcon, Uploader, UserIcon, VideoIcon, WarningIcon, WifiIcon, XIcon, YoutubeIcon, ZoomInIcon, ZoomOutIcon, hideMessage, hideModal, showMessage, showModal, useMessageStore, useModalStore, useToast$1 as useToast };
|
|
18584
|
+
export { Accordion, Alert, ArrowIcon, AspectRatio, Avatar, Badge, BatteryIcon, BluetoothIcon, BoldArrowIcon, BookmarkIcon, Button, CalendarIcon, CameraIcon, Card, Carousel, Chart, ChartIcon, CheckIcon, Checkbox, ChevronIcon, ClockIcon, CloseEyeIcon, CloseIcon, CloudIcon, ComboBox, Command, ContextMenu, CookieConsent, CopyIcon, CountryPicker, CropIcon, DatePicker, DeleteIcon, Divider, DocumentIcon, DownloadIcon, DragAndDrop, DragAndDropComponent, DragHandleIcon, DropdownMenu, DustBinIcon, EditIcon, ErrorIcon, ExternalLinkIcon, FacebookIcon, FileIcon, FileImage, FileSVG, FilterIcon, FormikCheckbox, FormikComboBox, FormikCountryPicker, FormikDatePicker, FormikForm, FormikOTPInput, FormikPassword, FormikSelect, FormikSlider, FormikSwitch, FormikTextArea, FormikTextField, GiftIcon, HeartIcon, HelpIcon, HomeIcon, HoverCard, Icon, ImageIcon, InfoIcon, InstagramIcon, LikeIcon, Link, LinkedinIcon, Loader, LocationIcon, LockIcon, LogoutIcon, MagicWandIcon, MenuIcon, Menubar, MessageLayout, MessageView, MicrophoneIcon, MinusIcon, Modal, MoonIcon, NavigationMenu, NotificationIcon, OTPInput, OpenEyeIcon, Pagination, PanelIcon, Password, PauseIcon, PlayIcon, PlusIcon, PowerOffIcon, PrintIcon, ProfileIcon, RefreshIcon, Resizable, RotateIcon, SaveIcon, SearchIcon, Select, Separator, SettingsIcon, ShapeIcon, ShareIcon, ShieldIcon, Sidebar, Slider, SliderIcon, SliderVerticalIcon, SpinnerIcon, StarIcon, SuccessIcon, Switch, Table, Tabs, Text, TextArea, TextField, TextIcon, ThreadsIcon, TickIcon, Title, Toast, Toggle, ToggleGroup, Tooltip, TwitchIcon, TwitterIcon, UnLikeIcon, UnlockIcon, UploadIcon, Uploader, UserIcon, VideoIcon, WarningIcon, WifiIcon, XIcon, YoutubeIcon, ZoomInIcon, ZoomOutIcon, hideMessage, hideModal, showMessage, showModal, useMessageStore, useModalStore, useToast$1 as useToast };
|
|
18534
18585
|
//# sourceMappingURL=web.esm.js.map
|