@qiwi/pijma-desktop 1.163.3 → 1.164.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.163.3",
3
+ "version": "1.164.1",
4
4
  "type": "module",
5
5
  "main": "./target/es5/index.js",
6
6
  "module": "./target/es6/index.js",
@@ -39,11 +39,11 @@
39
39
  "target/es6/**/*"
40
40
  ],
41
41
  "dependencies": {
42
- "@qiwi/pijma-core": "1.163.0",
42
+ "@qiwi/pijma-core": "1.163.1",
43
43
  "@swc/helpers": "^0.5.1"
44
44
  },
45
45
  "devDependencies": {
46
- "@qiwi/pijma-infra": "1.11.1",
46
+ "@qiwi/pijma-infra": "1.11.2",
47
47
  "concurrently": "8.0.1",
48
48
  "css-loader": "6.7.3",
49
49
  "eslint": "8.40.0",
@@ -56,6 +56,3 @@ var Caption = function(_param) {
56
56
  }));
57
57
  };
58
58
  Caption.displayName = "Caption";
59
- Caption.defaultProps = {
60
- color: "support"
61
- };
@@ -110,6 +110,3 @@ var Heading = function(_param) {
110
110
  }));
111
111
  };
112
112
  Heading.displayName = "Heading";
113
- Heading.defaultProps = {
114
- color: "default"
115
- };
@@ -104,9 +104,3 @@ var Paragraph = function(_param) {
104
104
  }));
105
105
  };
106
106
  Paragraph.displayName = "Paragraph";
107
- Paragraph.defaultProps = {
108
- size: "m",
109
- bold: false,
110
- compact: false,
111
- color: "default"
112
- };
@@ -82,6 +82,3 @@ var Title = function(_param) {
82
82
  }));
83
83
  };
84
84
  Title.displayName = "Title";
85
- Title.defaultProps = {
86
- color: "default"
87
- };
@@ -35,6 +35,3 @@ export const Caption = ({ color ='support' , align , stub , clamp , children , .
35
35
  })
36
36
  });
37
37
  Caption.displayName = 'Caption';
38
- Caption.defaultProps = {
39
- color: 'support'
40
- };
@@ -83,6 +83,3 @@ export const Heading = ({ tag , size , color ='default' , align , stub , clamp ,
83
83
  })
84
84
  });
85
85
  Heading.displayName = 'Heading';
86
- Heading.defaultProps = {
87
- color: 'default'
88
- };
@@ -75,9 +75,3 @@ export const Paragraph = ({ size ='m' , bold =false , compact =false , color ='d
75
75
  })
76
76
  });
77
77
  Paragraph.displayName = 'Paragraph';
78
- Paragraph.defaultProps = {
79
- size: 'm',
80
- bold: false,
81
- compact: false,
82
- color: 'default'
83
- };
@@ -59,6 +59,3 @@ export const Title = ({ tag , size , color ='default' , align , stub , clamp , c
59
59
  })
60
60
  });
61
61
  Title.displayName = 'Title';
62
- Title.defaultProps = {
63
- color: 'default'
64
- };