@festo-ui/react 7.2.0-dev.423 → 7.2.0-dev.427
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/index.css +1 -1
- package/lib/components/buttons/button/Button.d.ts +1 -1
- package/lib/components/buttons/button/Button.js +3 -2
- package/lib/components/buttons/button/Button.stories.js +27 -19
- package/lib/components/card/CardNotification.d.ts +1 -2
- package/lib/components/card/CardNotification.js +3 -3
- package/lib/components/chips/chip/Chip.d.ts +2 -3
- package/lib/components/chips/chip/Chip.js +4 -4
- package/lib/components/icon-wrapper/IconWrapper.d.ts +4 -0
- package/lib/components/icon-wrapper/IconWrapper.js +17 -0
- package/lib/components/icons/check-small.d.ts +7 -0
- package/lib/components/icons/check-small.js +72 -0
- package/lib/components/icons/collapse.d.ts +7 -0
- package/lib/components/icons/collapse.js +71 -0
- package/lib/components/icons/expand.d.ts +7 -0
- package/lib/components/icons/expand.js +71 -0
- package/lib/components/icons/right-2.d.ts +7 -0
- package/lib/components/icons/right-2.js +68 -0
- package/lib/components/icons/warning.d.ts +7 -0
- package/lib/components/icons/warning.js +71 -0
- package/lib/components/link-button/LinkButton.js +6 -11
- package/lib/components/mobile-flyout/mobile-flyout-item/MobileFlyoutItem.d.ts +1 -1
- package/lib/components/mobile-flyout/mobile-flyout-item/MobileFlyoutItem.js +7 -5
- package/lib/components/mobile-flyout/mobile-flyout-page/MobileFlyoutPage.js +3 -3
- package/lib/components/modals/imageGallery/ImageGallery.js +6 -15
- package/lib/components/popovers/popover-menu/PopoverMenu.d.ts +3 -4
- package/lib/components/popovers/popover-menu/PopoverMenu.js +6 -8
- package/lib/components/tab/Tabs.js +3 -2
- package/lib/components/tab/interfaces.d.ts +2 -1
- package/lib/forms/color-picker/ColorPicker.js +9 -13
- package/lib/forms/segment/segment-control/SegmentControl.d.ts +2 -2
- package/lib/forms/segment/segment-control/SegmentControl.js +11 -14
- package/lib/forms/time-picker/time-picker-dropdown/TimePickerDropdown.js +14 -24
- package/node/lib/components/buttons/button/Button.js +3 -2
- package/node/lib/components/buttons/button/Button.stories.js +27 -19
- package/node/lib/components/card/CardNotification.js +3 -3
- package/node/lib/components/chips/chip/Chip.js +4 -4
- package/node/lib/components/icon-wrapper/IconWrapper.js +23 -0
- package/node/lib/components/icons/check-small.js +77 -0
- package/node/lib/components/icons/collapse.js +76 -0
- package/node/lib/components/icons/expand.js +76 -0
- package/node/lib/components/icons/right-2.js +73 -0
- package/node/lib/components/icons/warning.js +76 -0
- package/node/lib/components/link-button/LinkButton.js +6 -11
- package/node/lib/components/mobile-flyout/mobile-flyout-item/MobileFlyoutItem.js +7 -5
- package/node/lib/components/mobile-flyout/mobile-flyout-page/MobileFlyoutPage.js +3 -3
- package/node/lib/components/modals/imageGallery/ImageGallery.js +6 -15
- package/node/lib/components/popovers/popover-menu/PopoverMenu.js +6 -8
- package/node/lib/components/tab/Tabs.js +3 -2
- package/node/lib/forms/color-picker/ColorPicker.js +9 -13
- package/node/lib/forms/segment/segment-control/SegmentControl.js +11 -14
- package/node/lib/forms/time-picker/time-picker-dropdown/TimePickerDropdown.js +14 -24
- package/package.json +1 -1
- package/lib/components/chips/chip/DeleteIcon.d.ts +0 -2
- package/lib/components/chips/chip/DeleteIcon.js +0 -7
- package/node/lib/components/chips/chip/DeleteIcon.js +0 -13
|
@@ -7,11 +7,12 @@ exports.default = void 0;
|
|
|
7
7
|
var _react = require("react");
|
|
8
8
|
var _classnames = _interopRequireDefault(require("classnames"));
|
|
9
9
|
var _Popover = _interopRequireDefault(require("../popover/Popover"));
|
|
10
|
+
var _IconWrapper = _interopRequireDefault(require("../../icon-wrapper/IconWrapper"));
|
|
10
11
|
var _jsxRuntime = require("react/jsx-runtime");
|
|
11
12
|
function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }
|
|
12
13
|
function PopoverMenu(_ref) {
|
|
13
14
|
let {
|
|
14
|
-
|
|
15
|
+
children,
|
|
15
16
|
menu,
|
|
16
17
|
className,
|
|
17
18
|
...props
|
|
@@ -35,8 +36,8 @@ function PopoverMenu(_ref) {
|
|
|
35
36
|
type: "button",
|
|
36
37
|
className: "fwe-btn fwe-btn-link fwe-dark",
|
|
37
38
|
onClick: e => handleClick(e, item),
|
|
38
|
-
children: [/*#__PURE__*/(0, _jsxRuntime.jsx)(
|
|
39
|
-
|
|
39
|
+
children: [/*#__PURE__*/(0, _jsxRuntime.jsx)(_IconWrapper.default, {
|
|
40
|
+
icon: item.icon
|
|
40
41
|
}), /*#__PURE__*/(0, _jsxRuntime.jsx)("span", {
|
|
41
42
|
children: item.text
|
|
42
43
|
})]
|
|
@@ -53,11 +54,8 @@ function PopoverMenu(_ref) {
|
|
|
53
54
|
...props,
|
|
54
55
|
children: /*#__PURE__*/(0, _jsxRuntime.jsx)("button", {
|
|
55
56
|
type: "button",
|
|
56
|
-
|
|
57
|
-
|
|
58
|
-
children: /*#__PURE__*/(0, _jsxRuntime.jsx)("i", {
|
|
59
|
-
className: `fwe-icon fwe-mr-0 ${icon}`
|
|
60
|
-
})
|
|
57
|
+
className: "menu-button",
|
|
58
|
+
children: children
|
|
61
59
|
})
|
|
62
60
|
})
|
|
63
61
|
});
|
|
@@ -8,6 +8,7 @@ var _classnames = _interopRequireDefault(require("classnames"));
|
|
|
8
8
|
var _react = _interopRequireWildcard(require("react"));
|
|
9
9
|
var _useForkRef = _interopRequireDefault(require("../../helper/useForkRef"));
|
|
10
10
|
var _useTabScroll = _interopRequireDefault(require("./useTabScroll"));
|
|
11
|
+
var _IconWrapper = _interopRequireDefault(require("../icon-wrapper/IconWrapper"));
|
|
11
12
|
var _jsxRuntime = require("react/jsx-runtime");
|
|
12
13
|
function _getRequireWildcardCache(e) { if ("function" != typeof WeakMap) return null; var r = new WeakMap(), t = new WeakMap(); return (_getRequireWildcardCache = function (e) { return e ? t : r; })(e); }
|
|
13
14
|
function _interopRequireWildcard(e, r) { if (!r && e && e.__esModule) return e; if (null === e || "object" != typeof e && "function" != typeof e) return { default: e }; var t = _getRequireWildcardCache(r); if (t && t.has(e)) return t.get(e); var n = { __proto__: null }, a = Object.defineProperty && Object.getOwnPropertyDescriptor; for (var u in e) if ("default" !== u && Object.prototype.hasOwnProperty.call(e, u)) { var i = a ? Object.getOwnPropertyDescriptor(e, u) : null; i && (i.get || i.set) ? Object.defineProperty(n, u, i) : n[u] = e[u]; } return n.default = e, t && t.set(e, n), n; }
|
|
@@ -148,8 +149,8 @@ const Tabs = exports.Tabs = /*#__PURE__*/(0, _react.forwardRef)((_ref, ref) => {
|
|
|
148
149
|
role: "tab",
|
|
149
150
|
"aria-controls": id,
|
|
150
151
|
"aria-selected": active,
|
|
151
|
-
children: [/*#__PURE__*/(0, _jsxRuntime.jsx)(
|
|
152
|
-
|
|
152
|
+
children: [/*#__PURE__*/(0, _jsxRuntime.jsx)(_IconWrapper.default, {
|
|
153
|
+
icon: icon
|
|
153
154
|
}), /*#__PURE__*/(0, _jsxRuntime.jsx)("span", {
|
|
154
155
|
children: name
|
|
155
156
|
})]
|
|
@@ -9,6 +9,8 @@ var _reactDraggable = _interopRequireDefault(require("react-draggable"));
|
|
|
9
9
|
var _classnames = _interopRequireDefault(require("classnames"));
|
|
10
10
|
var _ColorHelper = _interopRequireDefault(require("./ColorHelper"));
|
|
11
11
|
var _useId = _interopRequireDefault(require("../../helper/useId"));
|
|
12
|
+
var _checkSmall = _interopRequireDefault(require("../../components/icons/check-small"));
|
|
13
|
+
var _collapse = _interopRequireDefault(require("../../components/icons/collapse"));
|
|
12
14
|
var _jsxRuntime = require("react/jsx-runtime");
|
|
13
15
|
function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }
|
|
14
16
|
function _getRequireWildcardCache(e) { if ("function" != typeof WeakMap) return null; var r = new WeakMap(), t = new WeakMap(); return (_getRequireWildcardCache = function (e) { return e ? t : r; })(e); }
|
|
@@ -376,8 +378,8 @@ function ColorPicker(_ref) {
|
|
|
376
378
|
children: [/*#__PURE__*/(0, _jsxRuntime.jsx)("span", {
|
|
377
379
|
className: "fwe-input-type",
|
|
378
380
|
children: inputType
|
|
379
|
-
}), /*#__PURE__*/(0, _jsxRuntime.jsx)(
|
|
380
|
-
className: "fwe-
|
|
381
|
+
}), /*#__PURE__*/(0, _jsxRuntime.jsx)(_collapse.default, {
|
|
382
|
+
className: "fwe-ml-s"
|
|
381
383
|
})]
|
|
382
384
|
}), selectOpen && /*#__PURE__*/(0, _jsxRuntime.jsxs)("div", {
|
|
383
385
|
className: "fwe-popover",
|
|
@@ -386,17 +388,13 @@ function ColorPicker(_ref) {
|
|
|
386
388
|
'fwe-selected': inputType === 'HEX'
|
|
387
389
|
}),
|
|
388
390
|
onClick: () => onChangeType('HEX'),
|
|
389
|
-
children: [/*#__PURE__*/(0, _jsxRuntime.jsx)(
|
|
390
|
-
className: "fwe-icon fwe-icon-menu-check"
|
|
391
|
-
}), " HEX"]
|
|
391
|
+
children: [/*#__PURE__*/(0, _jsxRuntime.jsx)(_checkSmall.default, {}), " HEX"]
|
|
392
392
|
}), /*#__PURE__*/(0, _jsxRuntime.jsxs)("div", {
|
|
393
393
|
className: (0, _classnames.default)('fwe-type-item', {
|
|
394
394
|
'fwe-selected': inputType === 'RGB'
|
|
395
395
|
}),
|
|
396
396
|
onClick: () => onChangeType('RGB'),
|
|
397
|
-
children: [/*#__PURE__*/(0, _jsxRuntime.jsx)(
|
|
398
|
-
className: "fwe-icon fwe-icon-menu-check"
|
|
399
|
-
}), " RGB"]
|
|
397
|
+
children: [/*#__PURE__*/(0, _jsxRuntime.jsx)(_checkSmall.default, {}), " RGB"]
|
|
400
398
|
})]
|
|
401
399
|
})]
|
|
402
400
|
}), /*#__PURE__*/(0, _jsxRuntime.jsxs)("div", {
|
|
@@ -521,8 +519,8 @@ function ColorPicker(_ref) {
|
|
|
521
519
|
fill: "url(#bwsquare2px)",
|
|
522
520
|
strokeWidth: "0"
|
|
523
521
|
})]
|
|
524
|
-
}), /*#__PURE__*/(0, _jsxRuntime.jsx)(
|
|
525
|
-
className: (0, _classnames.default)(
|
|
522
|
+
}), /*#__PURE__*/(0, _jsxRuntime.jsx)(_checkSmall.default, {
|
|
523
|
+
className: (0, _classnames.default)({
|
|
526
524
|
'fwe-color-text': !innerColor
|
|
527
525
|
})
|
|
528
526
|
})]
|
|
@@ -536,9 +534,7 @@ function ColorPicker(_ref) {
|
|
|
536
534
|
background: colorItem
|
|
537
535
|
},
|
|
538
536
|
onClick: () => updateColorRgb(colorItem.toUpperCase()),
|
|
539
|
-
children: innerColor === colorItem.toUpperCase() && /*#__PURE__*/(0, _jsxRuntime.jsx)(
|
|
540
|
-
className: "fwe-icon fwe-icon-menu-check"
|
|
541
|
-
})
|
|
537
|
+
children: innerColor === colorItem.toUpperCase() && /*#__PURE__*/(0, _jsxRuntime.jsx)(_checkSmall.default, {})
|
|
542
538
|
}, colorItem);
|
|
543
539
|
})]
|
|
544
540
|
})]
|
|
@@ -6,6 +6,7 @@ Object.defineProperty(exports, "__esModule", {
|
|
|
6
6
|
exports.default = void 0;
|
|
7
7
|
var _react = _interopRequireWildcard(require("react"));
|
|
8
8
|
var _classnames = _interopRequireDefault(require("classnames"));
|
|
9
|
+
var _IconWrapper = _interopRequireDefault(require("../../../components/icon-wrapper/IconWrapper"));
|
|
9
10
|
var _jsxRuntime = require("react/jsx-runtime");
|
|
10
11
|
function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }
|
|
11
12
|
function _getRequireWildcardCache(e) { if ("function" != typeof WeakMap) return null; var r = new WeakMap(), t = new WeakMap(); return (_getRequireWildcardCache = function (e) { return e ? t : r; })(e); }
|
|
@@ -19,20 +20,15 @@ function SegmentControl(props) {
|
|
|
19
20
|
value,
|
|
20
21
|
icon,
|
|
21
22
|
onChange,
|
|
22
|
-
iconOnly,
|
|
23
23
|
id,
|
|
24
|
-
className
|
|
24
|
+
className,
|
|
25
|
+
iconOnly
|
|
25
26
|
} = props;
|
|
26
27
|
const componentId = (0, _react.useRef)(id ?? (Math.random() * Date.now()).toString().replace('.', '-'));
|
|
27
28
|
let viewMode = 'text';
|
|
28
29
|
if (icon) {
|
|
29
30
|
viewMode = iconOnly ? 'icon' : 'icon-text';
|
|
30
31
|
}
|
|
31
|
-
const prefix = 'fwe-icon-';
|
|
32
|
-
let innerIcon = icon;
|
|
33
|
-
if (icon && icon.indexOf(prefix) === -1) {
|
|
34
|
-
innerIcon = prefix + icon;
|
|
35
|
-
}
|
|
36
32
|
const handleChange = event => {
|
|
37
33
|
if (onChange) {
|
|
38
34
|
onChange(event, value);
|
|
@@ -55,15 +51,16 @@ function SegmentControl(props) {
|
|
|
55
51
|
children: [/*#__PURE__*/(0, _jsxRuntime.jsx)("span", {
|
|
56
52
|
className: "fwe-sr-only",
|
|
57
53
|
children: label
|
|
58
|
-
}), /*#__PURE__*/(0, _jsxRuntime.jsx)(
|
|
59
|
-
|
|
60
|
-
className: (0, _classnames.default)('fwe-icon', innerIcon)
|
|
54
|
+
}), /*#__PURE__*/(0, _jsxRuntime.jsx)(_IconWrapper.default, {
|
|
55
|
+
icon: icon
|
|
61
56
|
})]
|
|
62
57
|
}), viewMode === 'text' && label, viewMode === 'icon-text' && /*#__PURE__*/(0, _jsxRuntime.jsxs)(_jsxRuntime.Fragment, {
|
|
63
|
-
children: [/*#__PURE__*/(0, _jsxRuntime.jsx)(
|
|
64
|
-
|
|
65
|
-
|
|
66
|
-
|
|
58
|
+
children: [/*#__PURE__*/(0, _jsxRuntime.jsx)(_IconWrapper.default, {
|
|
59
|
+
icon: icon
|
|
60
|
+
}), /*#__PURE__*/(0, _jsxRuntime.jsx)("span", {
|
|
61
|
+
className: "fwe-ml-xxs",
|
|
62
|
+
children: label
|
|
63
|
+
})]
|
|
67
64
|
})]
|
|
68
65
|
})]
|
|
69
66
|
});
|
|
@@ -10,6 +10,8 @@ var _useForkRef = _interopRequireDefault(require("../../../helper/useForkRef"));
|
|
|
10
10
|
var _LinkButton = _interopRequireDefault(require("../../../components/link-button/LinkButton"));
|
|
11
11
|
var _TimePickerInput = _interopRequireDefault(require("./TimePickerInput"));
|
|
12
12
|
var _useOnClickOutside = _interopRequireDefault(require("../../../helper/useOnClickOutside"));
|
|
13
|
+
var _collapse = _interopRequireDefault(require("../../../components/icons/collapse"));
|
|
14
|
+
var _expand = _interopRequireDefault(require("../../../components/icons/expand"));
|
|
13
15
|
var _jsxRuntime = require("react/jsx-runtime");
|
|
14
16
|
function _getRequireWildcardCache(e) { if ("function" != typeof WeakMap) return null; var r = new WeakMap(), t = new WeakMap(); return (_getRequireWildcardCache = function (e) { return e ? t : r; })(e); }
|
|
15
17
|
function _interopRequireWildcard(e, r) { if (!r && e && e.__esModule) return e; if (null === e || "object" != typeof e && "function" != typeof e) return { default: e }; var t = _getRequireWildcardCache(r); if (t && t.has(e)) return t.get(e); var n = { __proto__: null }, a = Object.defineProperty && Object.getOwnPropertyDescriptor; for (var u in e) if ("default" !== u && Object.prototype.hasOwnProperty.call(e, u)) { var i = a ? Object.getOwnPropertyDescriptor(e, u) : null; i && (i.get || i.set) ? Object.defineProperty(n, u, i) : n[u] = e[u]; } return n.default = e, t && t.set(e, n), n; }
|
|
@@ -149,10 +151,8 @@ const TimePickerDropdown = /*#__PURE__*/(0, _react.forwardRef)((_ref, ref) => {
|
|
|
149
151
|
"aria-label": "hour up",
|
|
150
152
|
className: "fwe-dark",
|
|
151
153
|
onClick: () => handleHourIncrement(1),
|
|
152
|
-
|
|
153
|
-
|
|
154
|
-
className: "fwe-icon fwe-icon-arrows-expand"
|
|
155
|
-
})
|
|
154
|
+
iconOnly: true,
|
|
155
|
+
icon: /*#__PURE__*/(0, _jsxRuntime.jsx)(_expand.default, {})
|
|
156
156
|
}), /*#__PURE__*/(0, _jsxRuntime.jsx)(_TimePickerInput.default, {
|
|
157
157
|
"aria-label": "hours value",
|
|
158
158
|
min: min,
|
|
@@ -164,10 +164,8 @@ const TimePickerDropdown = /*#__PURE__*/(0, _react.forwardRef)((_ref, ref) => {
|
|
|
164
164
|
"aria-label": "hour down",
|
|
165
165
|
className: "fwe-dark",
|
|
166
166
|
onClick: () => handleHourIncrement(-1),
|
|
167
|
-
|
|
168
|
-
|
|
169
|
-
className: "fwe-icon fwe-icon-arrows-collapse"
|
|
170
|
-
})
|
|
167
|
+
iconOnly: true,
|
|
168
|
+
icon: /*#__PURE__*/(0, _jsxRuntime.jsx)(_collapse.default, {})
|
|
171
169
|
})]
|
|
172
170
|
}), /*#__PURE__*/(0, _jsxRuntime.jsxs)("div", {
|
|
173
171
|
className: "fwe-timepicker-spinners-minutes",
|
|
@@ -175,10 +173,8 @@ const TimePickerDropdown = /*#__PURE__*/(0, _react.forwardRef)((_ref, ref) => {
|
|
|
175
173
|
"aria-label": "minute up",
|
|
176
174
|
className: "fwe-dark",
|
|
177
175
|
onClick: () => handleMinuteIncrement(innerMinuteStepSize),
|
|
178
|
-
|
|
179
|
-
|
|
180
|
-
className: "fwe-icon fwe-icon-arrows-expand"
|
|
181
|
-
})
|
|
176
|
+
iconOnly: true,
|
|
177
|
+
icon: /*#__PURE__*/(0, _jsxRuntime.jsx)(_expand.default, {})
|
|
182
178
|
}), /*#__PURE__*/(0, _jsxRuntime.jsx)(_TimePickerInput.default, {
|
|
183
179
|
"aria-label": "minutes value",
|
|
184
180
|
min: min,
|
|
@@ -189,10 +185,8 @@ const TimePickerDropdown = /*#__PURE__*/(0, _react.forwardRef)((_ref, ref) => {
|
|
|
189
185
|
"aria-label": "minute down",
|
|
190
186
|
className: "fwe-dark",
|
|
191
187
|
onClick: () => handleMinuteIncrement(-innerMinuteStepSize),
|
|
192
|
-
|
|
193
|
-
|
|
194
|
-
className: "fwe-icon fwe-icon-arrows-collapse"
|
|
195
|
-
})
|
|
188
|
+
iconOnly: true,
|
|
189
|
+
icon: /*#__PURE__*/(0, _jsxRuntime.jsx)(_collapse.default, {})
|
|
196
190
|
})]
|
|
197
191
|
}), showSeconds && /*#__PURE__*/(0, _jsxRuntime.jsxs)("div", {
|
|
198
192
|
className: "fwe-timepicker-spinners-seconds",
|
|
@@ -200,10 +194,8 @@ const TimePickerDropdown = /*#__PURE__*/(0, _react.forwardRef)((_ref, ref) => {
|
|
|
200
194
|
"aria-label": "seconds up",
|
|
201
195
|
className: "fwe-dark",
|
|
202
196
|
onClick: () => handleSecondIncrement(1),
|
|
203
|
-
|
|
204
|
-
|
|
205
|
-
className: "fwe-icon fwe-icon-arrows-expand"
|
|
206
|
-
})
|
|
197
|
+
iconOnly: true,
|
|
198
|
+
icon: /*#__PURE__*/(0, _jsxRuntime.jsx)(_expand.default, {})
|
|
207
199
|
}), /*#__PURE__*/(0, _jsxRuntime.jsx)(_TimePickerInput.default, {
|
|
208
200
|
"aria-label": "seconds value",
|
|
209
201
|
min: min,
|
|
@@ -214,10 +206,8 @@ const TimePickerDropdown = /*#__PURE__*/(0, _react.forwardRef)((_ref, ref) => {
|
|
|
214
206
|
"aria-label": "minute down",
|
|
215
207
|
className: "fwe-dark",
|
|
216
208
|
onClick: () => handleSecondIncrement(-1),
|
|
217
|
-
|
|
218
|
-
|
|
219
|
-
className: "fwe-icon fwe-icon-arrows-collapse"
|
|
220
|
-
})
|
|
209
|
+
iconOnly: true,
|
|
210
|
+
icon: /*#__PURE__*/(0, _jsxRuntime.jsx)(_collapse.default, {})
|
|
221
211
|
})]
|
|
222
212
|
})]
|
|
223
213
|
}), timeFormat === '12' && /*#__PURE__*/(0, _jsxRuntime.jsx)("button", {
|
package/package.json
CHANGED
|
@@ -1,13 +0,0 @@
|
|
|
1
|
-
"use strict";
|
|
2
|
-
|
|
3
|
-
Object.defineProperty(exports, "__esModule", {
|
|
4
|
-
value: true
|
|
5
|
-
});
|
|
6
|
-
exports.default = DeleteIcon;
|
|
7
|
-
var _jsxRuntime = require("react/jsx-runtime");
|
|
8
|
-
function DeleteIcon(props) {
|
|
9
|
-
return /*#__PURE__*/(0, _jsxRuntime.jsx)("i", {
|
|
10
|
-
...props,
|
|
11
|
-
className: "fwe-icon fwe-icon-menu-close"
|
|
12
|
-
});
|
|
13
|
-
}
|