@qiwi/pijma-mobile 1.167.0 → 1.167.1
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/package.json +12 -25
- package/target/es5/actions/Actions.js +1 -1
- package/target/es5/alert/Alert.js +3 -3
- package/target/es5/alert-block/AlertBlock.js +3 -3
- package/target/es5/block-accordion/BlockAccordion.js +3 -3
- package/target/es5/block-content/BlockContent.js +2 -2
- package/target/es5/block-tabs/BlockTabs.js +3 -3
- package/target/es5/breadcrumbs/Breadcrumbs.js +2 -2
- package/target/es5/button/Button.js +3 -3
- package/target/es5/checkbox/Checkbox.js +2 -2
- package/target/es5/checkbox-field/CheckboxField.js +3 -3
- package/target/es5/code-field/CodeField.js +4 -4
- package/target/es5/content-suggest/ContentSuggest.js +6 -6
- package/target/es5/custom-alert/CustomAlert.js +3 -3
- package/target/es5/details/Details.js +2 -2
- package/target/es5/drop-up/DropUp.js +11 -11
- package/target/es5/extended-progress-bar/ExtendedProgressBar.js +1 -1
- package/target/es5/footer-app/FooterApp.js +4 -4
- package/target/es5/footer-nav/FooterNav.js +2 -2
- package/target/es5/footer-out/FooterOut.js +4 -4
- package/target/es5/glossary/Glossary.js +2 -2
- package/target/es5/header/Header.js +2 -2
- package/target/es5/header/HeaderMenu.js +11 -11
- package/target/es5/hint/Hint.js +3 -3
- package/target/es5/input-modal/InputModal.js +5 -5
- package/target/es5/link/BlockLink.js +2 -2
- package/target/es5/link/FileLink.js +2 -2
- package/target/es5/link/Link.js +2 -2
- package/target/es5/link/SectionLink.js +2 -2
- package/target/es5/list/List.js +2 -2
- package/target/es5/logo-block-link/LogoBlockLink.js +3 -3
- package/target/es5/logo-link/LogoLink.js +3 -3
- package/target/es5/markdown/Markdown.js +13 -13
- package/target/es5/menu/MenuCaption.js +2 -2
- package/target/es5/menu/MenuContainer.js +2 -2
- package/target/es5/menu/MenuItem.js +6 -3
- package/target/es5/menu/MenuLink.js +2 -2
- package/target/es5/modal/SimpleModal.js +10 -10
- package/target/es5/nav-link/NavLink.js +2 -2
- package/target/es5/notice/Notice.js +3 -3
- package/target/es5/oops/Oops.js +2 -2
- package/target/es5/pagination/Pagination.js +6 -6
- package/target/es5/pagination/PaginationLink.js +2 -2
- package/target/es5/password-field/PasswordField.js +2 -2
- package/target/es5/phone-field/PhoneField.js +4 -4
- package/target/es5/progress-bar/ProgressBar.js +2 -2
- package/target/es5/radio-field/RadioField.js +3 -3
- package/target/es5/rating/Rating.js +3 -3
- package/target/es5/select-field/SelectField.js +3 -3
- package/target/es5/status/Status.js +2 -2
- package/target/es5/suggest-field/SuggestField.js +6 -6
- package/target/es5/switch/Switch.js +2 -2
- package/target/es5/switch-field/SwitchField.js +3 -3
- package/target/es5/tabs/Tabs.js +3 -3
- package/target/es5/text-area-field/TextAreaField.js +2 -2
- package/target/es5/text-field/TextField.js +2 -2
- package/target/es5/typography/Caption.js +2 -2
- package/target/es5/typography/Heading.js +2 -2
- package/target/es5/typography/Paragraph.js +2 -2
- package/target/es5/typography/Text.js +2 -2
- package/target/es5/typography/Title.js +2 -2
- package/target/es6/notice/Notice.js +1 -1
|
@@ -13,7 +13,7 @@ var _interop_require_default = require("@swc/helpers/_/_interop_require_default"
|
|
|
13
13
|
var _jsxruntime = require("react/jsx-runtime");
|
|
14
14
|
var _pijmacore = require("@qiwi/pijma-core");
|
|
15
15
|
var _react = /*#__PURE__*/ _interop_require_default._(require("react"));
|
|
16
|
-
var RadioField = function(props) {
|
|
16
|
+
var RadioField = function RadioField(props) {
|
|
17
17
|
return props.stub ? /*#__PURE__*/ (0, _jsxruntime.jsxs)(_pijmacore.Box, {
|
|
18
18
|
maxHeight: 1,
|
|
19
19
|
children: [
|
|
@@ -63,7 +63,7 @@ var RadioField = function(props) {
|
|
|
63
63
|
onChange: props.onChange,
|
|
64
64
|
onFocus: props.onFocus,
|
|
65
65
|
onBlur: props.onBlur,
|
|
66
|
-
children: function(renderProps) {
|
|
66
|
+
children: function children(renderProps) {
|
|
67
67
|
return /*#__PURE__*/ (0, _jsxruntime.jsx)(_pijmacore.OptionField, _extends._({}, (0, _pijmacore.getDataProps)(props), {
|
|
68
68
|
title: props.title,
|
|
69
69
|
hint: props.hint,
|
|
@@ -80,7 +80,7 @@ var RadioField = function(props) {
|
|
|
80
80
|
onClick: option.onClick,
|
|
81
81
|
onMouseEnter: option.onMouseEnter,
|
|
82
82
|
onMouseLeave: renderProps.onMouseLeave,
|
|
83
|
-
children: function(renderOptionProps) {
|
|
83
|
+
children: function children(renderOptionProps) {
|
|
84
84
|
return /*#__PURE__*/ (0, _jsxruntime.jsx)(_pijmacore.OptionFieldItem, {
|
|
85
85
|
disabled: option.disabled,
|
|
86
86
|
icon: /*#__PURE__*/ (0, _jsxruntime.jsx)(_pijmacore.Box, {
|
|
@@ -22,8 +22,8 @@ var RatingIndent = {
|
|
|
22
22
|
s: 2,
|
|
23
23
|
m: 5
|
|
24
24
|
};
|
|
25
|
-
var Rating = function(
|
|
26
|
-
var
|
|
25
|
+
var Rating = function Rating(_0) {
|
|
26
|
+
var _0_value = _0.value, value = _0_value === void 0 ? 0 : _0_value, _0_size = _0.size, size = _0_size === void 0 ? 'm' : _0_size, _0_disabled = _0.disabled, disabled = _0_disabled === void 0 ? false : _0_disabled, _0_count = _0.count, count = _0_count === void 0 ? 5 : _0_count, _0_stub = _0.stub, stub = _0_stub === void 0 ? false : _0_stub, onChange = _0.onChange, rest = _object_without_properties_loose._(_0, [
|
|
27
27
|
"value",
|
|
28
28
|
"size",
|
|
29
29
|
"disabled",
|
|
@@ -49,7 +49,7 @@ var Rating = function(_param) {
|
|
|
49
49
|
count: count,
|
|
50
50
|
disabled: disabled,
|
|
51
51
|
onChange: onChange,
|
|
52
|
-
children: function(renderProps) {
|
|
52
|
+
children: function children(renderProps) {
|
|
53
53
|
return /*#__PURE__*/ (0, _jsxruntime.jsx)(_pijmacore.Flex, _extends._({}, (0, _pijmacore.getDataProps)(rest), {
|
|
54
54
|
justify: "space-between",
|
|
55
55
|
maxWidth: count * RatingSize[size] + (count - 1) * RatingIndent[size],
|
|
@@ -17,7 +17,7 @@ var _dropup = require("../drop-up/index.js");
|
|
|
17
17
|
var _menu = require("../menu/index.js");
|
|
18
18
|
var CardItem = (0, _pijmacore.styled)(_pijmacore.Card)().withComponent(_menu.MenuItem);
|
|
19
19
|
CardItem.displayName = 'CardItem';
|
|
20
|
-
var SelectField = function(props) {
|
|
20
|
+
var SelectField = function SelectField(props) {
|
|
21
21
|
return props.stub ? /*#__PURE__*/ (0, _jsxruntime.jsx)(_pijmacore.InputField, {
|
|
22
22
|
active: false,
|
|
23
23
|
input: false,
|
|
@@ -34,13 +34,13 @@ var SelectField = function(props) {
|
|
|
34
34
|
onBlur: props.onBlur,
|
|
35
35
|
onHide: props.onHide,
|
|
36
36
|
equals: props.equals,
|
|
37
|
-
children: function(renderProps) {
|
|
37
|
+
children: function children(renderProps) {
|
|
38
38
|
return /*#__PURE__*/ (0, _jsxruntime.jsx)(_pijmacore.MenuControl, {
|
|
39
39
|
count: props.items.length,
|
|
40
40
|
selected: renderProps.select,
|
|
41
41
|
onKeyDown: renderProps.onKeyDown,
|
|
42
42
|
onSelect: renderProps.onItemSelect,
|
|
43
|
-
children: function(menuRenderProps) {
|
|
43
|
+
children: function children(menuRenderProps) {
|
|
44
44
|
return /*#__PURE__*/ (0, _jsxruntime.jsxs)(_pijmacore.CardPos, _extends._({
|
|
45
45
|
type: "relative",
|
|
46
46
|
width: 1
|
|
@@ -15,8 +15,8 @@ var _jsxruntime = require("react/jsx-runtime");
|
|
|
15
15
|
var _pijmacore = require("@qiwi/pijma-core");
|
|
16
16
|
var _react = /*#__PURE__*/ _interop_require_default._(require("react"));
|
|
17
17
|
var _typography = require("../typography/index.js");
|
|
18
|
-
var Status = function(
|
|
19
|
-
var icon =
|
|
18
|
+
var Status = function Status(_0) {
|
|
19
|
+
var icon = _0.icon, title = _0.title, actions = _0.actions, content = _0.content, children = _0.children, rest = _object_without_properties_loose._(_0, [
|
|
20
20
|
"icon",
|
|
21
21
|
"title",
|
|
22
22
|
"actions",
|
|
@@ -21,10 +21,10 @@ var _menu = require("../menu/index.js");
|
|
|
21
21
|
var _typography = require("../typography/index.js");
|
|
22
22
|
var CardItem = (0, _pijmacore.styled)(_pijmacore.Card)().withComponent(_menu.MenuItem);
|
|
23
23
|
CardItem.displayName = 'CardItem';
|
|
24
|
-
var SuggestField = function(
|
|
25
|
-
var
|
|
24
|
+
var SuggestField = function SuggestField(_0) {
|
|
25
|
+
var _0_equals = _0.equals, equals = _0_equals === void 0 ? function(a, b) {
|
|
26
26
|
return a === b;
|
|
27
|
-
} :
|
|
27
|
+
} : _0_equals, props = _object_without_properties_loose._(_0, [
|
|
28
28
|
"equals"
|
|
29
29
|
]);
|
|
30
30
|
return props.stub ? /*#__PURE__*/ (0, _jsxruntime.jsx)(_pijmacore.InputField, {
|
|
@@ -47,7 +47,7 @@ var SuggestField = function(_param) {
|
|
|
47
47
|
onFocus: props.onFocus,
|
|
48
48
|
onCancel: props.onCancel,
|
|
49
49
|
onSubmit: props.onSubmit,
|
|
50
|
-
children: function(renderProps) {
|
|
50
|
+
children: function children(renderProps) {
|
|
51
51
|
return /*#__PURE__*/ (0, _jsxruntime.jsxs)(_pijmacore.Pos, _extends._({
|
|
52
52
|
type: "relative"
|
|
53
53
|
}, (0, _pijmacore.getDataProps)(props), {
|
|
@@ -88,7 +88,7 @@ var SuggestField = function(_param) {
|
|
|
88
88
|
selected: renderProps.selected,
|
|
89
89
|
onSelect: renderProps.onItemSelect,
|
|
90
90
|
onKeyDown: renderProps.onModalItemKeyDown,
|
|
91
|
-
children: function(menuRenderProps) {
|
|
91
|
+
children: function children(menuRenderProps) {
|
|
92
92
|
return /*#__PURE__*/ (0, _jsxruntime.jsx)(_inputmodal.InputModal, {
|
|
93
93
|
value: props.suggest || '',
|
|
94
94
|
tabIndex: props.tabIndex,
|
|
@@ -189,7 +189,7 @@ var SuggestField = function(_param) {
|
|
|
189
189
|
};
|
|
190
190
|
SuggestField.displayName = 'SuggestField';
|
|
191
191
|
SuggestField.defaultProps = {
|
|
192
|
-
equals: function(a, b) {
|
|
192
|
+
equals: function equals(a, b) {
|
|
193
193
|
return a === b;
|
|
194
194
|
}
|
|
195
195
|
};
|
|
@@ -13,7 +13,7 @@ var _interop_require_default = require("@swc/helpers/_/_interop_require_default"
|
|
|
13
13
|
var _jsxruntime = require("react/jsx-runtime");
|
|
14
14
|
var _pijmacore = require("@qiwi/pijma-core");
|
|
15
15
|
var _react = /*#__PURE__*/ _interop_require_default._(require("react"));
|
|
16
|
-
var Switch = function(props) {
|
|
16
|
+
var Switch = function Switch(props) {
|
|
17
17
|
return props.stub ? /*#__PURE__*/ (0, _jsxruntime.jsxs)(_pijmacore.Flex, {
|
|
18
18
|
direction: props.reverse ? 'row-reverse' : 'row',
|
|
19
19
|
justify: props.reverse ? 'space-between' : 'flex-start',
|
|
@@ -46,7 +46,7 @@ var Switch = function(props) {
|
|
|
46
46
|
checked: props.checked,
|
|
47
47
|
disabled: props.disabled || props.loading,
|
|
48
48
|
onChange: props.onChange,
|
|
49
|
-
children: function(renderProps) {
|
|
49
|
+
children: function children(renderProps) {
|
|
50
50
|
return /*#__PURE__*/ (0, _jsxruntime.jsx)(_pijmacore.OptionField, _extends._({}, (0, _pijmacore.getDataProps)(props), {
|
|
51
51
|
tabIndex: props.tabIndex,
|
|
52
52
|
onFocus: renderProps.onFocus,
|
|
@@ -13,7 +13,7 @@ var _interop_require_default = require("@swc/helpers/_/_interop_require_default"
|
|
|
13
13
|
var _jsxruntime = require("react/jsx-runtime");
|
|
14
14
|
var _pijmacore = require("@qiwi/pijma-core");
|
|
15
15
|
var _react = /*#__PURE__*/ _interop_require_default._(require("react"));
|
|
16
|
-
var SwitchField = function(props) {
|
|
16
|
+
var SwitchField = function SwitchField(props) {
|
|
17
17
|
return props.stub ? /*#__PURE__*/ (0, _jsxruntime.jsxs)(_pijmacore.Box, {
|
|
18
18
|
maxWidth: 1,
|
|
19
19
|
children: [
|
|
@@ -70,7 +70,7 @@ var SwitchField = function(props) {
|
|
|
70
70
|
onChange: props.onChange,
|
|
71
71
|
onFocus: props.onFocus,
|
|
72
72
|
onBlur: props.onBlur,
|
|
73
|
-
children: function(renderProps) {
|
|
73
|
+
children: function children(renderProps) {
|
|
74
74
|
return /*#__PURE__*/ (0, _jsxruntime.jsx)(_pijmacore.OptionField, _extends._({}, (0, _pijmacore.getDataProps)(props), {
|
|
75
75
|
title: props.title,
|
|
76
76
|
hint: props.hint,
|
|
@@ -87,7 +87,7 @@ var SwitchField = function(props) {
|
|
|
87
87
|
onClick: option.onClick,
|
|
88
88
|
onMouseEnter: option.onMouseEnter,
|
|
89
89
|
onMouseLeave: renderProps.onMouseLeave,
|
|
90
|
-
children: function(renderOptionProps) {
|
|
90
|
+
children: function children(renderOptionProps) {
|
|
91
91
|
return /*#__PURE__*/ (0, _jsxruntime.jsx)(_pijmacore.OptionFieldItem, {
|
|
92
92
|
disabled: option.disabled,
|
|
93
93
|
reverse: props.reverse,
|
package/target/es5/tabs/Tabs.js
CHANGED
|
@@ -26,8 +26,8 @@ var FlexOverflow = (0, _pijmacore.styled)(_pijmacore.Flex)({
|
|
|
26
26
|
FlexOverflow.displayName = 'FlexOverflow';
|
|
27
27
|
var TabContent = (0, _pijmacore.styled)(_pijmacore.FlexItem)();
|
|
28
28
|
TabContent.displayName = 'TabContent';
|
|
29
|
-
var Tabs = function(
|
|
30
|
-
var items =
|
|
29
|
+
var Tabs = function Tabs(_0) {
|
|
30
|
+
var items = _0.items, _0_select = _0.select, select = _0_select === void 0 ? 0 : _0_select, _0_tabIndex = _0.tabIndex, tabIndex = _0_tabIndex === void 0 ? 0 : _0_tabIndex, _0_vertical = _0.vertical, vertical = _0_vertical === void 0 ? false : _0_vertical, _0_centered = _0.centered, centered = _0_centered === void 0 ? false : _0_centered, _0_stub = _0.stub, stub = _0_stub === void 0 ? false : _0_stub, onChange = _0.onChange, rest = _object_without_properties_loose._(_0, [
|
|
31
31
|
"items",
|
|
32
32
|
"select",
|
|
33
33
|
"tabIndex",
|
|
@@ -72,7 +72,7 @@ var Tabs = function(_param) {
|
|
|
72
72
|
select: select,
|
|
73
73
|
length: items.length,
|
|
74
74
|
onChange: onChange,
|
|
75
|
-
children: function(renderProps) {
|
|
75
|
+
children: function children(renderProps) {
|
|
76
76
|
return /*#__PURE__*/ (0, _jsxruntime.jsxs)(_pijmacore.Flex, _extends._({
|
|
77
77
|
direction: "column"
|
|
78
78
|
}, (0, _pijmacore.getDataProps)(rest), {
|
|
@@ -13,7 +13,7 @@ var _interop_require_default = require("@swc/helpers/_/_interop_require_default"
|
|
|
13
13
|
var _jsxruntime = require("react/jsx-runtime");
|
|
14
14
|
var _pijmacore = require("@qiwi/pijma-core");
|
|
15
15
|
var _react = /*#__PURE__*/ _interop_require_default._(require("react"));
|
|
16
|
-
var TextAreaField = function(props) {
|
|
16
|
+
var TextAreaField = function TextAreaField(props) {
|
|
17
17
|
return /*#__PURE__*/ (0, _jsxruntime.jsx)(_pijmacore.TextAreaFieldControl, {
|
|
18
18
|
onChange: props.onChange,
|
|
19
19
|
onFocus: props.onFocus,
|
|
@@ -21,7 +21,7 @@ var TextAreaField = function(props) {
|
|
|
21
21
|
onKeyDown: props.onKeyDown,
|
|
22
22
|
onKeyUp: props.onKeyUp,
|
|
23
23
|
value: props.value,
|
|
24
|
-
children: function(renderProps) {
|
|
24
|
+
children: function children(renderProps) {
|
|
25
25
|
return /*#__PURE__*/ (0, _jsxruntime.jsx)(_pijmacore.InputField, _extends._({}, (0, _pijmacore.getDataProps)(props), {
|
|
26
26
|
title: props.title,
|
|
27
27
|
active: renderProps.focused || !!props.value || !!props.placeholder,
|
|
@@ -13,7 +13,7 @@ var _interop_require_default = require("@swc/helpers/_/_interop_require_default"
|
|
|
13
13
|
var _jsxruntime = require("react/jsx-runtime");
|
|
14
14
|
var _pijmacore = require("@qiwi/pijma-core");
|
|
15
15
|
var _react = /*#__PURE__*/ _interop_require_default._(require("react"));
|
|
16
|
-
var TextField = function(props) {
|
|
16
|
+
var TextField = function TextField(props) {
|
|
17
17
|
return props.stub ? /*#__PURE__*/ (0, _jsxruntime.jsx)(_pijmacore.InputField, {
|
|
18
18
|
active: false,
|
|
19
19
|
input: false,
|
|
@@ -28,7 +28,7 @@ var TextField = function(props) {
|
|
|
28
28
|
onBlur: props.onBlur,
|
|
29
29
|
onKeyDown: props.onKeyDown,
|
|
30
30
|
onKeyUp: props.onKeyUp,
|
|
31
|
-
children: function(renderProps) {
|
|
31
|
+
children: function children(renderProps) {
|
|
32
32
|
return /*#__PURE__*/ (0, _jsxruntime.jsx)(_pijmacore.InputField, _extends._({}, (0, _pijmacore.getDataProps)(props), {
|
|
33
33
|
title: props.title,
|
|
34
34
|
active: renderProps.focused || !!props.value || !!props.placeholder,
|
|
@@ -19,8 +19,8 @@ var CaptionColor = {
|
|
|
19
19
|
support: '#666',
|
|
20
20
|
inverse: '#fff'
|
|
21
21
|
};
|
|
22
|
-
var Caption = function(
|
|
23
|
-
var
|
|
22
|
+
var Caption = function Caption(_0) {
|
|
23
|
+
var _0_color = _0.color, color = _0_color === void 0 ? 'support' : _0_color, align = _0.align, stub = _0.stub, clamp = _0.clamp, children = _0.children, rest = _object_without_properties_loose._(_0, [
|
|
24
24
|
"color",
|
|
25
25
|
"align",
|
|
26
26
|
"stub",
|
|
@@ -60,8 +60,8 @@ var HeadingColor = {
|
|
|
60
60
|
default: '#000',
|
|
61
61
|
inverse: '#fff'
|
|
62
62
|
};
|
|
63
|
-
var Heading = function(
|
|
64
|
-
var tag =
|
|
63
|
+
var Heading = function Heading(_0) {
|
|
64
|
+
var tag = _0.tag, size = _0.size, _0_color = _0.color, color = _0_color === void 0 ? 'default' : _0_color, align = _0.align, stub = _0.stub, clamp = _0.clamp, children = _0.children, rest = _object_without_properties_loose._(_0, [
|
|
65
65
|
"tag",
|
|
66
66
|
"size",
|
|
67
67
|
"color",
|
|
@@ -59,8 +59,8 @@ var ParagraphColor = {
|
|
|
59
59
|
support: '#666',
|
|
60
60
|
inverse: '#fff'
|
|
61
61
|
};
|
|
62
|
-
var Paragraph = function(
|
|
63
|
-
var
|
|
62
|
+
var Paragraph = function Paragraph(_0) {
|
|
63
|
+
var _0_size = _0.size, size = _0_size === void 0 ? 'm' : _0_size, _0_bold = _0.bold, bold = _0_bold === void 0 ? false : _0_bold, _0_compact = _0.compact, compact = _0_compact === void 0 ? false : _0_compact, _0_color = _0.color, color = _0_color === void 0 ? 'default' : _0_color, transform = _0.transform, align = _0.align, stub = _0.stub, clamp = _0.clamp, children = _0.children, rest = _object_without_properties_loose._(_0, [
|
|
64
64
|
"size",
|
|
65
65
|
"bold",
|
|
66
66
|
"compact",
|
|
@@ -62,8 +62,8 @@ var TextColor = {
|
|
|
62
62
|
failure: '#d0021b',
|
|
63
63
|
warning: '#ff8c00'
|
|
64
64
|
};
|
|
65
|
-
var Text = function(
|
|
66
|
-
var display =
|
|
65
|
+
var Text = function Text(_0) {
|
|
66
|
+
var display = _0.display, compact = _0.compact, size = _0.size, bold = _0.bold, color = _0.color, decoration = _0.decoration, transform = _0.transform, transition = _0.transition, align = _0.align, clamp = _0.clamp, children = _0.children, _0_stub = _0.stub, stub = _0_stub === void 0 ? false : _0_stub, rest = _object_without_properties_loose._(_0, [
|
|
67
67
|
"display",
|
|
68
68
|
"compact",
|
|
69
69
|
"size",
|
|
@@ -46,8 +46,8 @@ var TitleColor = {
|
|
|
46
46
|
default: '#000',
|
|
47
47
|
inverse: '#fff'
|
|
48
48
|
};
|
|
49
|
-
var Title = function(
|
|
50
|
-
var tag =
|
|
49
|
+
var Title = function Title(_0) {
|
|
50
|
+
var tag = _0.tag, size = _0.size, _0_color = _0.color, color = _0_color === void 0 ? 'default' : _0_color, align = _0.align, stub = _0.stub, clamp = _0.clamp, children = _0.children, rest = _object_without_properties_loose._(_0, [
|
|
51
51
|
"tag",
|
|
52
52
|
"size",
|
|
53
53
|
"color",
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { jsx as _jsx, jsxs as _jsxs } from "react/jsx-runtime";
|
|
2
2
|
import { Flex, FlexItem, getDataProps, Spacer } from '@qiwi/pijma-core';
|
|
3
3
|
import React from 'react';
|
|
4
|
-
import { Heading, Paragraph } from '../typography
|
|
4
|
+
import { Heading, Paragraph } from '../typography/index.js';
|
|
5
5
|
export const Notice = ({ icon, title, children, ...rest })=>/*#__PURE__*/ _jsxs(Flex, {
|
|
6
6
|
...getDataProps(rest),
|
|
7
7
|
children: [
|