@7shifts/sous-chef 2.2.0 → 2.3.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/index.modern.js
CHANGED
|
@@ -1781,6 +1781,21 @@ var IconFourSquares = function IconFourSquares(props) {
|
|
|
1781
1781
|
|
|
1782
1782
|
IconFourSquares.displayName = 'IconFourSquares';
|
|
1783
1783
|
|
|
1784
|
+
var IconGavel = function IconGavel(props) {
|
|
1785
|
+
return React__default.createElement("svg", Object.assign({
|
|
1786
|
+
viewBox: "0 0 60 60",
|
|
1787
|
+
fill: "none",
|
|
1788
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
1789
|
+
"data-testid": "icon-gavel",
|
|
1790
|
+
style: getIconStyles(props)
|
|
1791
|
+
}, props), React__default.createElement("path", {
|
|
1792
|
+
d: "m58.698 21.863-2.418-2.42a4.442 4.442 0 0 0-5.476-.638l-9.61-9.609a4.442 4.442 0 0 0-.638-5.476l-2.418-2.418a4.438 4.438 0 0 0-6.28 0L18.551 14.605a4.446 4.446 0 0 0 0 6.28l2.42 2.42a4.448 4.448 0 0 0 5.475.637l3.48 3.48-6.891 6.89-.947-.946a5.095 5.095 0 0 0-7.198 0l-13.403 13.4a5.095 5.095 0 0 0 0 7.198l4.548 4.548a5.095 5.095 0 0 0 7.197 0l13.401-13.403a5.095 5.095 0 0 0 0-7.198l-.947-.947 6.891-6.89 3.48 3.479a4.449 4.449 0 0 0 .637 5.476l2.42 2.419a4.446 4.446 0 0 0 6.28 0l13.303-13.305a4.439 4.439 0 0 0 0-6.28ZM23.983 42.457l-13.401 13.4a1.34 1.34 0 0 1-1.894 0l-4.546-4.545a1.34 1.34 0 0 1 0-1.894l13.401-13.4a1.34 1.34 0 0 1 1.894 0l4.546 4.545a1.341 1.341 0 0 1 0 1.894Zm32.065-16.966L42.743 38.796a.69.69 0 0 1-.977 0l-2.42-2.42a.691.691 0 0 1 0-.976l1.932-1.93L26.53 18.721l-1.93 1.931a.692.692 0 0 1-.978 0l-2.419-2.419a.692.692 0 0 1 0-.977L34.51 3.952a.691.691 0 0 1 .977 0l2.419 2.42a.691.691 0 0 1 0 .976l-1.93 1.931L50.72 24.026l1.931-1.93a.69.69 0 0 1 .977 0l2.419 2.418a.692.692 0 0 1 0 .977Z",
|
|
1793
|
+
fill: "currentColor"
|
|
1794
|
+
}));
|
|
1795
|
+
};
|
|
1796
|
+
|
|
1797
|
+
IconGavel.displayName = 'IconGavel';
|
|
1798
|
+
|
|
1784
1799
|
var IconGift = function IconGift(props) {
|
|
1785
1800
|
return React__default.createElement("svg", Object.assign({
|
|
1786
1801
|
viewBox: "0 0 20 20",
|
|
@@ -4495,7 +4510,7 @@ var getSelectStyles = function getSelectStyles(_ref) {
|
|
|
4495
4510
|
return Object.assign({}, base, {
|
|
4496
4511
|
flex: '1',
|
|
4497
4512
|
fontFamily: FONT_FAMILY,
|
|
4498
|
-
minWidth: '
|
|
4513
|
+
minWidth: '110px',
|
|
4499
4514
|
backgroundColor: state.isDisabled && !asToolbarFilter ? GREY100 : WHITE,
|
|
4500
4515
|
position: 'initial'
|
|
4501
4516
|
});
|
|
@@ -4540,11 +4555,12 @@ var getSelectStyles = function getSelectStyles(_ref) {
|
|
|
4540
4555
|
return Object.assign({}, base, {
|
|
4541
4556
|
color: state.isDisabled ? GREY400 : null,
|
|
4542
4557
|
marginRight: 0,
|
|
4543
|
-
position: 'static',
|
|
4558
|
+
position: asToolbarFilter ? 'static' : 'absolute',
|
|
4544
4559
|
transform: 'initial',
|
|
4545
4560
|
overflow: 'hidden',
|
|
4546
4561
|
textOverflow: 'ellipsis',
|
|
4547
|
-
whiteSpace: 'nowrap'
|
|
4562
|
+
whiteSpace: 'nowrap',
|
|
4563
|
+
top: !asToolbarFilter && 'auto'
|
|
4548
4564
|
});
|
|
4549
4565
|
},
|
|
4550
4566
|
dropdownIndicator: function dropdownIndicator(base, state) {
|
|
@@ -4559,7 +4575,8 @@ var getSelectStyles = function getSelectStyles(_ref) {
|
|
|
4559
4575
|
color: state.isDisabled ? GREY400 : state.isSelected ? EGGPLANT700 : GREY500,
|
|
4560
4576
|
cursor: 'pointer',
|
|
4561
4577
|
fontFamily: FONT_FAMILY,
|
|
4562
|
-
fontSize: '14px'
|
|
4578
|
+
fontSize: '14px',
|
|
4579
|
+
wordBreak: 'break-word'
|
|
4563
4580
|
});
|
|
4564
4581
|
},
|
|
4565
4582
|
group: function group(base) {
|
|
@@ -5769,5 +5786,5 @@ var Avatar = function Avatar(_ref) {
|
|
|
5769
5786
|
}, badge));
|
|
5770
5787
|
};
|
|
5771
5788
|
|
|
5772
|
-
export { Avatar, Badge$1 as Badge, Button$1 as Button, CheckboxField, DataTable, DataTableCell, DataTableEditableCell, DataTableRow, DateField, DateRangeField, Form, FormRow, IconAnalytics, IconArrowDown, IconArrowLeft, IconArrowRight, IconArrowToTop, IconArrowUp, IconAward, IconBalanceScale, IconBalanceScaleLeft, IconBan, IconBarsH, IconBarsV, IconBell, IconBold, IconBolt, IconBook, IconBriefcase, IconBullseyeArrow, IconCalculator, IconCalendar, IconCalendarAlt, IconCalendarCheck, IconCalendarDay, IconCalendarExclamation, IconCalendarTomorrow, IconCamera, IconCameraSlash, IconCashRegister, IconChartBar, IconCheck, IconChevronDown, IconChevronLeft, IconChevronRight, IconChevronUp, IconClipboardList, IconClock, IconCog, IconComment, IconCommentLines, IconCopy, IconCreditCard, IconCreditCardPlus, IconDownload, IconEdit, IconEllipsisV, IconEnvelope, IconExclaimation, IconExclaimationTriangle, IconExpand, IconExternalLink, IconEye, IconEyeSlash, IconFile, IconFilePdf, IconFlag, IconFourDotsCircle, IconFourSquares, IconGift, IconGrinBeam, IconGripVertical, IconHandshake, IconImage, IconInfoCircle, IconIslandTropical, IconItalic, IconLaptopSearch, IconLink, IconList, IconListOI as IconListOi, IconLock, IconMagicSolid, IconMapMarker, IconMegaphone, IconMinus, IconMinusCircle, IconMoneyBill, IconNotesMedical, IconOvertime, IconPaperPlane, IconPaperPlaneClock, IconPaperclip, IconPencil, IconPercentage, IconPhone, IconPlug, IconPlus, IconPrint, IconQuestionCircle, IconRepeat, IconSearch, IconSignOut, IconSitemap, IconSlidersH, IconSort, IconStar, IconStickyNoteLines, IconStopwatch, IconStrikethrough, IconSync, IconSyncExclaimation, IconTachometer, IconTimes, IconTimesOctagon, IconTrash, IconUnderline, IconUndo, IconUserComputer, IconUserLight, IconUserPlus, IconUserSlash, IconUserSolid, IconUserTag, IconUserTie, IconUsers, IconVideo, IconVolume, IconVolumeMute, IconWrench, Inline, Modal, ModalBody, ModalFooter, MultiSelectField, PaginationControls, PasswordField, PillSelectField, RadioGroupField, RadioGroupOption, ResourceTable, ResourceTableRow, SIZE_25_PERCENT, SIZE_33_PERCENT, SIZE_50_PERCENT, SIZE_66_PERCENT, SIZE_75_PERCENT, SelectField, Spinner, Stack, TextAreaField, TextField, TimeField, Toggle, Tooltip$1 as Tooltip, WeekField };
|
|
5789
|
+
export { Avatar, Badge$1 as Badge, Button$1 as Button, CheckboxField, DataTable, DataTableCell, DataTableEditableCell, DataTableRow, DateField, DateRangeField, Form, FormRow, IconAnalytics, IconArrowDown, IconArrowLeft, IconArrowRight, IconArrowToTop, IconArrowUp, IconAward, IconBalanceScale, IconBalanceScaleLeft, IconBan, IconBarsH, IconBarsV, IconBell, IconBold, IconBolt, IconBook, IconBriefcase, IconBullseyeArrow, IconCalculator, IconCalendar, IconCalendarAlt, IconCalendarCheck, IconCalendarDay, IconCalendarExclamation, IconCalendarTomorrow, IconCamera, IconCameraSlash, IconCashRegister, IconChartBar, IconCheck, IconChevronDown, IconChevronLeft, IconChevronRight, IconChevronUp, IconClipboardList, IconClock, IconCog, IconComment, IconCommentLines, IconCopy, IconCreditCard, IconCreditCardPlus, IconDownload, IconEdit, IconEllipsisV, IconEnvelope, IconExclaimation, IconExclaimationTriangle, IconExpand, IconExternalLink, IconEye, IconEyeSlash, IconFile, IconFilePdf, IconFlag, IconFourDotsCircle, IconFourSquares, IconGavel, IconGift, IconGrinBeam, IconGripVertical, IconHandshake, IconImage, IconInfoCircle, IconIslandTropical, IconItalic, IconLaptopSearch, IconLink, IconList, IconListOI as IconListOi, IconLock, IconMagicSolid, IconMapMarker, IconMegaphone, IconMinus, IconMinusCircle, IconMoneyBill, IconNotesMedical, IconOvertime, IconPaperPlane, IconPaperPlaneClock, IconPaperclip, IconPencil, IconPercentage, IconPhone, IconPlug, IconPlus, IconPrint, IconQuestionCircle, IconRepeat, IconSearch, IconSignOut, IconSitemap, IconSlidersH, IconSort, IconStar, IconStickyNoteLines, IconStopwatch, IconStrikethrough, IconSync, IconSyncExclaimation, IconTachometer, IconTimes, IconTimesOctagon, IconTrash, IconUnderline, IconUndo, IconUserComputer, IconUserLight, IconUserPlus, IconUserSlash, IconUserSolid, IconUserTag, IconUserTie, IconUsers, IconVideo, IconVolume, IconVolumeMute, IconWrench, Inline, Modal, ModalBody, ModalFooter, MultiSelectField, PaginationControls, PasswordField, PillSelectField, RadioGroupField, RadioGroupOption, ResourceTable, ResourceTableRow, SIZE_25_PERCENT, SIZE_33_PERCENT, SIZE_50_PERCENT, SIZE_66_PERCENT, SIZE_75_PERCENT, SelectField, Spinner, Stack, TextAreaField, TextField, TimeField, Toggle, Tooltip$1 as Tooltip, WeekField };
|
|
5773
5790
|
//# sourceMappingURL=index.modern.js.map
|