@qiwi/pijma-desktop 1.162.0 → 1.163.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 CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@qiwi/pijma-desktop",
3
- "version": "1.162.0",
3
+ "version": "1.163.1",
4
4
  "type": "module",
5
5
  "main": "./target/es5/index.js",
6
6
  "module": "./target/es6/index.js",
@@ -1,5 +1,6 @@
1
1
  export * from '@qiwi/pijma-core';
2
2
  export * from './alert-block';
3
+ export * from './custom-alert';
3
4
  export * from './button';
4
5
  export * from './actions';
5
6
  export * from './text-field';
@@ -14,7 +14,6 @@ var _object_without_properties_loose = require("@swc/helpers/_/_object_without_p
14
14
  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
- var _typography = require("../typography/index.js");
18
17
  var CustomAlert = function(_param) {
19
18
  var children = _param.children, icon = _param.icon, bg = _param.bg, shadow = _param.shadow, textColor = _param.textColor, onHide = _param.onHide, rest = _object_without_properties_loose._(_param, [
20
19
  "children",
@@ -44,12 +43,7 @@ var CustomAlert = function(_param) {
44
43
  children: icon
45
44
  }),
46
45
  /*#__PURE__*/ (0, _jsxruntime.jsx)(_pijmacore.FlexItem, {
47
- children: /*#__PURE__*/ (0, _jsxruntime.jsx)(_typography.Paragraph, {
48
- color: textColor,
49
- children: /*#__PURE__*/ (0, _jsxruntime.jsx)(_pijmacore.Breaker, {
50
- children: children
51
- })
52
- })
46
+ children: children
53
47
  }),
54
48
  onHide !== undefined ? /*#__PURE__*/ (0, _jsxruntime.jsx)(_pijmacore.Pos, {
55
49
  cursor: "pointer",
@@ -19,6 +19,7 @@ _export(exports, {
19
19
  var _export_star = require("@swc/helpers/_/_export_star");
20
20
  _export_star._(require("@qiwi/pijma-core"), exports);
21
21
  _export_star._(require("./alert-block/index.js"), exports);
22
+ _export_star._(require("./custom-alert/index.js"), exports);
22
23
  _export_star._(require("./button/index.js"), exports);
23
24
  _export_star._(require("./actions/index.js"), exports);
24
25
  var _textfield = _export_star._(require("./text-field/index.js"), exports);
@@ -1,7 +1,6 @@
1
1
  import { jsx as _jsx, jsxs as _jsxs } from "react/jsx-runtime";
2
- import { AlertBlockControl, Breaker, Card, FlexItem, FlexPos, getDataProps, Icon, Pos } from '@qiwi/pijma-core';
2
+ import { AlertBlockControl, Card, FlexItem, FlexPos, getDataProps, Icon, Pos } from '@qiwi/pijma-core';
3
3
  import React from 'react';
4
- import { Paragraph } from '../typography/index.js';
5
4
  export const CustomAlert = ({ children , icon , bg , shadow , textColor , onHide , ...rest })=>{
6
5
  return /*#__PURE__*/ _jsx(AlertBlockControl, {
7
6
  onHide: onHide,
@@ -23,12 +22,7 @@ export const CustomAlert = ({ children , icon , bg , shadow , textColor , onHide
23
22
  children: icon
24
23
  }),
25
24
  /*#__PURE__*/ _jsx(FlexItem, {
26
- children: /*#__PURE__*/ _jsx(Paragraph, {
27
- color: textColor,
28
- children: /*#__PURE__*/ _jsx(Breaker, {
29
- children: children
30
- })
31
- })
25
+ children: children
32
26
  }),
33
27
  onHide !== undefined ? /*#__PURE__*/ _jsx(Pos, {
34
28
  cursor: "pointer",
@@ -1,5 +1,6 @@
1
1
  export * from '@qiwi/pijma-core';
2
2
  export * from './alert-block/index.js';
3
+ export * from './custom-alert/index.js';
3
4
  export * from './button/index.js';
4
5
  export * from './actions/index.js';
5
6
  export * from './text-field/index.js';