@qiwi/pijma-desktop 1.165.2 → 1.166.0

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.165.2",
3
+ "version": "1.166.0",
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.3",
42
+ "@qiwi/pijma-core": "1.163.4",
43
43
  "@swc/helpers": "^0.5.17"
44
44
  },
45
45
  "devDependencies": {
46
- "@qiwi/pijma-infra": "1.11.2",
46
+ "@qiwi/pijma-infra": "1.11.3",
47
47
  "concurrently": "8.2.2",
48
48
  "css-loader": "6.7.3",
49
49
  "eslint": "8.40.0",
@@ -57,9 +57,9 @@
57
57
  "react-styleguidist-visual": "patch:react-styleguidist-visual@npm%3A0.9.0#~/.yarn/patches/react-styleguidist-visual-npm-0.9.0-c05bb39789.patch",
58
58
  "style-loader": "3.3.2",
59
59
  "tsc-esm-fix": "2.20.13",
60
- "typescript": "4.8.2",
61
- "wait-on": "8.0.3",
62
- "webpack": "5.99.6"
60
+ "typescript": "4.9.5",
61
+ "wait-on": "8.0.4",
62
+ "webpack": "5.101.0"
63
63
  },
64
64
  "repository": {
65
65
  "type": "git",
@@ -1,6 +1,6 @@
1
1
  import { Value } from '@qiwi/pijma-core';
2
2
  import { FC, ReactElement } from 'react';
3
- declare type DetailsText = ReactElement | string;
3
+ type DetailsText = ReactElement | string;
4
4
  export interface DetailsProps {
5
5
  children: {
6
6
  title: DetailsText;
@@ -1,5 +1,5 @@
1
1
  import { FC, ReactElement } from 'react';
2
- declare type GlossaryText = ReactElement | string;
2
+ type GlossaryText = ReactElement | string;
3
3
  export interface GlossaryProps {
4
4
  children: {
5
5
  title: GlossaryText;
@@ -5,14 +5,14 @@ Object.defineProperty(exports, "__esModule", {
5
5
  function _export(target, all) {
6
6
  for(var name in all)Object.defineProperty(target, name, {
7
7
  enumerable: true,
8
- get: all[name]
8
+ get: Object.getOwnPropertyDescriptor(all, name).get
9
9
  });
10
10
  }
11
11
  _export(exports, {
12
- MaskPasswordField: function() {
12
+ get MaskPasswordField () {
13
13
  return _passwordfield.PasswordField;
14
14
  },
15
- MaskTextField: function() {
15
+ get MaskTextField () {
16
16
  return _textfield.TextField;
17
17
  }
18
18
  });