@onesy/ui-react 1.0.60 → 1.0.65
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.
@@ -246,7 +246,7 @@ const CalendarViews = react_1.default.forwardRef((props_, ref) => {
|
|
246
246
|
(0, utils_2.staticClassName)('CalendarViews', theme) && [
|
247
247
|
'onesy-CalendarViews-header'
|
248
248
|
]
|
249
|
-
]) }, { children: [startHeader, (0, jsx_runtime_1.jsxs)(Line, Object.assign({ gap: 2, direction: 'row', wrap: 'wrap', justify: 'space-between', align: 'center', fullWidth: true }, { children: [(0, jsx_runtime_1.jsxs)(Line, Object.assign({ gap: 1.5, direction: 'row', wrap: 'wrap', align: 'center', className: classes.aside }, { children: [startLeft, (0, jsx_runtime_1.jsx)(Button, Object.assign({ color: 'inherit', version: 'outlined', size: 'small', onClick: onToday, selected: now.days === date.days }, { children: l('Today') })), (0, jsx_runtime_1.jsxs)(Line, Object.assign({ gap: 0, direction: 'row', align: 'center' }, { children: [(0, jsx_runtime_1.jsx)(Tooltip, Object.assign({ name: `${l('Previous')} ${view}` }, { children: (0, jsx_runtime_1.jsx)(IconButton, Object.assign({ onClick: onPrevious }, iconButtonProps, { children: (0, jsx_runtime_1.jsx)(IconPrevious, Object.assign({}, iconProps)) })) })), (0, jsx_runtime_1.jsx)(Tooltip, Object.assign({ name: `${l('Next')} ${view}` }, { children: (0, jsx_runtime_1.jsx)(IconButton, Object.assign({ onClick: onNext }, iconButtonProps, { children: (0, jsx_runtime_1.jsx)(IconNext, Object.assign({}, iconProps)) })) }))] })), (0, jsx_runtime_1.jsx)(Type, Object.assign({ version: 'h2', weight: 500, whiteSpace: 'nowrap' }, { children: formattedDate })), endLeft] })), (0, jsx_runtime_1.jsxs)(Line, Object.assign({ gap: 1.5, direction: 'row', align: 'center', flexNo: true, className: (0, style_react_1.classNames)([
|
249
|
+
]) }, { children: [startHeader, (0, jsx_runtime_1.jsxs)(Line, Object.assign({ gap: 2, direction: 'row', wrap: 'wrap', justify: 'space-between', align: 'center', fullWidth: true }, { children: [(0, jsx_runtime_1.jsxs)(Line, Object.assign({ gap: 1.5, direction: 'row', wrap: 'wrap', align: 'center', className: classes.aside }, { children: [startLeft, (0, jsx_runtime_1.jsx)(Button, Object.assign({ color: 'inherit', version: 'outlined', size: 'small', onClick: onToday, selected: now.days === date.days }, { children: l('Today') })), (0, jsx_runtime_1.jsxs)(Line, Object.assign({ gap: 0, direction: 'row', align: 'center' }, { children: [(0, jsx_runtime_1.jsx)(Tooltip, Object.assign({ name: `${l('Previous')} ${l(view)}` }, { children: (0, jsx_runtime_1.jsx)(IconButton, Object.assign({ onClick: onPrevious }, iconButtonProps, { children: (0, jsx_runtime_1.jsx)(IconPrevious, Object.assign({}, iconProps)) })) })), (0, jsx_runtime_1.jsx)(Tooltip, Object.assign({ name: `${l('Next')} ${l(view)}` }, { children: (0, jsx_runtime_1.jsx)(IconButton, Object.assign({ onClick: onNext }, iconButtonProps, { children: (0, jsx_runtime_1.jsx)(IconNext, Object.assign({}, iconProps)) })) }))] })), (0, jsx_runtime_1.jsx)(Type, Object.assign({ version: 'h2', weight: 500, whiteSpace: 'nowrap' }, { children: formattedDate })), endLeft] })), (0, jsx_runtime_1.jsxs)(Line, Object.assign({ gap: 1.5, direction: 'row', align: 'center', flexNo: true, className: (0, style_react_1.classNames)([
|
250
250
|
classes.aside,
|
251
251
|
classes.overflowX
|
252
252
|
]) }, { children: [startRight, !noViews && ((0, jsx_runtime_1.jsx)(Select, { name: l('View'), value: view, onChange: onChangeView, options: viewOptions, size: 'small', MenuProps: {
|
package/Confirm/Confirm.js
CHANGED
@@ -76,8 +76,8 @@ const Confirm = react_1.default.forwardRef((props_, ref) => {
|
|
76
76
|
if (!openModal) {
|
77
77
|
refs.modal.current = Object.assign({}, value);
|
78
78
|
// Defaults
|
79
|
-
refs.modal.current.name = (value === null || value === void 0 ? void 0 : value.name) !== undefined ? value === null || value === void 0 ? void 0 : value.name : 'Confirmation';
|
80
|
-
refs.modal.current.description = (value === null || value === void 0 ? void 0 : value.description) !== undefined ? value === null || value === void 0 ? void 0 : value.description : 'Are you sure you want to proceed?';
|
79
|
+
refs.modal.current.name = (value === null || value === void 0 ? void 0 : value.name) !== undefined ? value === null || value === void 0 ? void 0 : value.name : l('Confirmation');
|
80
|
+
refs.modal.current.description = (value === null || value === void 0 ? void 0 : value.description) !== undefined ? value === null || value === void 0 ? void 0 : value.description : l('Are you sure you want to proceed?');
|
81
81
|
if (((_b = (_a = refs.modal.current.buttons) === null || _a === void 0 ? void 0 : _a.negative) === null || _b === void 0 ? void 0 : _b.text) === undefined)
|
82
82
|
(0, utils_1.setObjectValue)(refs.modal.current, 'buttons.negative.text', '');
|
83
83
|
if (((_d = (_c = refs.modal.current.buttons) === null || _c === void 0 ? void 0 : _c.positive) === null || _d === void 0 ? void 0 : _d.text) === undefined)
|
@@ -323,11 +323,11 @@ const CalendarViews = /*#__PURE__*/React.forwardRef((props_, ref) => {
|
|
323
323
|
direction: "row",
|
324
324
|
align: "center"
|
325
325
|
}, /*#__PURE__*/React.createElement(Tooltip, {
|
326
|
-
name: `${l('Previous')} ${view}`
|
326
|
+
name: `${l('Previous')} ${l(view)}`
|
327
327
|
}, /*#__PURE__*/React.createElement(IconButton, _extends({
|
328
328
|
onClick: onPrevious
|
329
329
|
}, iconButtonProps), /*#__PURE__*/React.createElement(IconPrevious, iconProps))), /*#__PURE__*/React.createElement(Tooltip, {
|
330
|
-
name: `${l('Next')} ${view}`
|
330
|
+
name: `${l('Next')} ${l(view)}`
|
331
331
|
}, /*#__PURE__*/React.createElement(IconButton, _extends({
|
332
332
|
onClick: onNext
|
333
333
|
}, iconButtonProps), /*#__PURE__*/React.createElement(IconNext, iconProps)))), /*#__PURE__*/React.createElement(Type, {
|
package/esm/Confirm/Confirm.js
CHANGED
@@ -76,8 +76,8 @@ const Confirm = /*#__PURE__*/React.forwardRef((props_, ref) => {
|
|
76
76
|
refs.modal.current = _objectSpread({}, value);
|
77
77
|
|
78
78
|
// Defaults
|
79
|
-
refs.modal.current.name = value?.name !== undefined ? value?.name : 'Confirmation';
|
80
|
-
refs.modal.current.description = value?.description !== undefined ? value?.description : 'Are you sure you want to proceed?';
|
79
|
+
refs.modal.current.name = value?.name !== undefined ? value?.name : l('Confirmation');
|
80
|
+
refs.modal.current.description = value?.description !== undefined ? value?.description : l('Are you sure you want to proceed?');
|
81
81
|
if (refs.modal.current.buttons?.negative?.text === undefined) setObjectValue(refs.modal.current, 'buttons.negative.text', '');
|
82
82
|
if (refs.modal.current.buttons?.positive?.text === undefined) setObjectValue(refs.modal.current, 'buttons.positive.text', '');
|
83
83
|
refs.modal.current.buttons.negative.text = value?.buttons?.negative?.text !== undefined ? value?.buttons?.negative?.text : l('Cancel');
|
package/esm/index.js
CHANGED