dtable-ui-component 6.0.113-gtm.21 → 6.0.113-gtm.22
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.
|
@@ -7,7 +7,7 @@ Object.defineProperty(exports, "__esModule", {
|
|
|
7
7
|
exports.default = void 0;
|
|
8
8
|
var _react = _interopRequireDefault(require("react"));
|
|
9
9
|
var _reactstrap = require("reactstrap");
|
|
10
|
-
var
|
|
10
|
+
var _DtableIconButton = _interopRequireDefault(require("../DtableIconButton"));
|
|
11
11
|
var _lang = require("../lang");
|
|
12
12
|
require("./index.css");
|
|
13
13
|
var _jsxRuntime = require("react/jsx-runtime");
|
|
@@ -61,10 +61,11 @@ class NotificationPopover extends _react.default.Component {
|
|
|
61
61
|
ref: ref => this.notificationContainerRef = ref,
|
|
62
62
|
children: [/*#__PURE__*/(0, _jsxRuntime.jsxs)("div", {
|
|
63
63
|
className: "notification-header",
|
|
64
|
-
children: [headerText, /*#__PURE__*/(0, _jsxRuntime.jsx)(
|
|
65
|
-
|
|
66
|
-
|
|
67
|
-
|
|
64
|
+
children: [headerText, /*#__PURE__*/(0, _jsxRuntime.jsx)(_DtableIconButton.default, {
|
|
65
|
+
symbol: "dtable-icon-x",
|
|
66
|
+
tooltip: (0, _lang.getLocale)('Close'),
|
|
67
|
+
"aria-label": (0, _lang.getLocale)('Close'),
|
|
68
|
+
onClick: this.props.onNotificationListToggle
|
|
68
69
|
})]
|
|
69
70
|
}), /*#__PURE__*/(0, _jsxRuntime.jsxs)("div", {
|
|
70
71
|
className: "notification-body",
|
|
@@ -11,7 +11,7 @@ var _react = _interopRequireWildcard(require("react"));
|
|
|
11
11
|
var _reactstrap = require("reactstrap");
|
|
12
12
|
var _lang = require("../../lang");
|
|
13
13
|
var _utils = require("../../utils/utils");
|
|
14
|
-
var
|
|
14
|
+
var _DtableIconButton = _interopRequireDefault(require("../../DtableIconButton"));
|
|
15
15
|
require("./index.css");
|
|
16
16
|
var _jsxRuntime = require("react/jsx-runtime");
|
|
17
17
|
const Header = _ref => {
|
|
@@ -40,15 +40,15 @@ const Header = _ref => {
|
|
|
40
40
|
className: "d-print-none dtable-ui-row-expand-header",
|
|
41
41
|
close: /*#__PURE__*/(0, _jsxRuntime.jsxs)("div", {
|
|
42
42
|
className: "dtable-ui-row-expand-header-right-btns",
|
|
43
|
-
children: [copyURL && /*#__PURE__*/(0, _jsxRuntime.jsx)(
|
|
44
|
-
icon: "url",
|
|
43
|
+
children: [copyURL && /*#__PURE__*/(0, _jsxRuntime.jsx)(_DtableIconButton.default, {
|
|
44
|
+
icon: "dtable-icon-url",
|
|
45
45
|
onClick: () => copyURL(),
|
|
46
46
|
"aria-label": (0, _lang.getLocale)('Get_URL'),
|
|
47
|
-
|
|
48
|
-
}), children, /*#__PURE__*/(0, _jsxRuntime.jsx)(
|
|
49
|
-
icon: "x",
|
|
47
|
+
tooltip: (0, _lang.getLocale)('Get_URL')
|
|
48
|
+
}), children, /*#__PURE__*/(0, _jsxRuntime.jsx)(_DtableIconButton.default, {
|
|
49
|
+
icon: "dtable-icon-x",
|
|
50
50
|
onClick: onToggle,
|
|
51
|
-
|
|
51
|
+
tooltip: (0, _lang.getLocale)('Close_expanded_record'),
|
|
52
52
|
"aria-label": (0, _lang.getLocale)('Close_expanded_record')
|
|
53
53
|
})]
|
|
54
54
|
}),
|