@alfalab/core-components-masked-input 4.4.1 → 4.4.4
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/CHANGELOG.md +28 -0
- package/Component.js +1 -1
- package/cssm/Component.js +1 -1
- package/cssm/index.js +1 -1
- package/esm/Component.js +2 -2
- package/esm/index.css +1 -1
- package/esm/index.js +1 -1
- package/index.css +1 -1
- package/modern/Component.js +2 -2
- package/modern/index.css +1 -1
- package/modern/index.js +1 -1
- package/package.json +3 -3
package/CHANGELOG.md
CHANGED
|
@@ -3,6 +3,33 @@
|
|
|
3
3
|
All notable changes to this project will be documented in this file.
|
|
4
4
|
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
|
|
5
5
|
|
|
6
|
+
## [4.4.4](https://github.com/core-ds/core-components/compare/@alfalab/core-components-masked-input@4.4.3...@alfalab/core-components-masked-input@4.4.4) (2022-07-25)
|
|
7
|
+
|
|
8
|
+
**Note:** Version bump only for package @alfalab/core-components-masked-input
|
|
9
|
+
|
|
10
|
+
|
|
11
|
+
|
|
12
|
+
|
|
13
|
+
|
|
14
|
+
## [4.4.3](https://github.com/core-ds/core-components/compare/@alfalab/core-components-masked-input@4.4.2...@alfalab/core-components-masked-input@4.4.3) (2022-07-18)
|
|
15
|
+
|
|
16
|
+
**Note:** Version bump only for package @alfalab/core-components-masked-input
|
|
17
|
+
|
|
18
|
+
|
|
19
|
+
|
|
20
|
+
|
|
21
|
+
|
|
22
|
+
## [4.4.2](https://github.com/core-ds/core-components/compare/@alfalab/core-components-masked-input@4.4.1...@alfalab/core-components-masked-input@4.4.2) (2022-07-15)
|
|
23
|
+
|
|
24
|
+
|
|
25
|
+
### Bug Fixes
|
|
26
|
+
|
|
27
|
+
* bump packages version ([#153](https://github.com/core-ds/core-components/issues/153)) ([fd3e082](https://github.com/core-ds/core-components/commit/fd3e08205672129cdce04e1000c673f2cd9c10da))
|
|
28
|
+
|
|
29
|
+
|
|
30
|
+
|
|
31
|
+
|
|
32
|
+
|
|
6
33
|
## [4.4.1](https://github.com/core-ds/core-components/compare/@alfalab/core-components-masked-input@4.4.0...@alfalab/core-components-masked-input@4.4.1) (2022-07-14)
|
|
7
34
|
|
|
8
35
|
**Note:** Version bump only for package @alfalab/core-components-masked-input
|
|
@@ -452,4 +479,5 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline
|
|
|
452
479
|
|
|
453
480
|
## [3.2.1](https://github.com/core-ds/core-components/compare/@alfalab/core-components-masked-input@3.2.0...@alfalab/core-components-masked-input@3.2.1) (2021-02-18)
|
|
454
481
|
|
|
482
|
+
|
|
455
483
|
**Note:** Version bump only for package @alfalab/core-components-masked-input
|
package/Component.js
CHANGED
|
@@ -53,7 +53,7 @@ function __rest(s, e) {
|
|
|
53
53
|
return t;
|
|
54
54
|
}
|
|
55
55
|
|
|
56
|
-
var styles = {"textHidden":"masked-
|
|
56
|
+
var styles = {"textHidden":"masked-input__textHidden_7afcd"};
|
|
57
57
|
require('./index.css')
|
|
58
58
|
|
|
59
59
|
// Символ плейсхолдера не может входить в маску, поэтому вместо пробела используется \u2000
|
package/cssm/Component.js
CHANGED
|
@@ -6,7 +6,7 @@ var React = require('react');
|
|
|
6
6
|
var cn = require('classnames');
|
|
7
7
|
var mergeRefs = require('react-merge-refs');
|
|
8
8
|
var textMaskCore = require('text-mask-core');
|
|
9
|
-
var coreComponentsInput = require('@alfalab/core-components-input/
|
|
9
|
+
var coreComponentsInput = require('@alfalab/core-components-input/cssm');
|
|
10
10
|
var styles = require('./index.module.css');
|
|
11
11
|
|
|
12
12
|
function _interopDefaultLegacy (e) { return e && typeof e === 'object' && 'default' in e ? e : { 'default': e }; }
|
package/cssm/index.js
CHANGED
package/esm/Component.js
CHANGED
|
@@ -2,7 +2,7 @@ import React, { useRef, useState, useCallback, useEffect } from 'react';
|
|
|
2
2
|
import cn from 'classnames';
|
|
3
3
|
import mergeRefs from 'react-merge-refs';
|
|
4
4
|
import { createTextMaskInputElement } from 'text-mask-core';
|
|
5
|
-
import { Input } from '@alfalab/core-components-input/
|
|
5
|
+
import { Input } from '@alfalab/core-components-input/esm';
|
|
6
6
|
|
|
7
7
|
/*! *****************************************************************************
|
|
8
8
|
Copyright (c) Microsoft Corporation.
|
|
@@ -43,7 +43,7 @@ function __rest(s, e) {
|
|
|
43
43
|
return t;
|
|
44
44
|
}
|
|
45
45
|
|
|
46
|
-
var styles = {"textHidden":"masked-
|
|
46
|
+
var styles = {"textHidden":"masked-input__textHidden_7afcd"};
|
|
47
47
|
require('./index.css')
|
|
48
48
|
|
|
49
49
|
// Символ плейсхолдера не может входить в маску, поэтому вместо пробела используется \u2000
|
package/esm/index.css
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
/* hash:
|
|
1
|
+
/* hash: 16022 */
|
package/esm/index.js
CHANGED
package/index.css
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
/* hash:
|
|
1
|
+
/* hash: 16022 */
|
package/modern/Component.js
CHANGED
|
@@ -2,9 +2,9 @@ import React, { useRef, useState, useCallback, useEffect } from 'react';
|
|
|
2
2
|
import cn from 'classnames';
|
|
3
3
|
import mergeRefs from 'react-merge-refs';
|
|
4
4
|
import { createTextMaskInputElement } from 'text-mask-core';
|
|
5
|
-
import { Input } from '@alfalab/core-components-input/
|
|
5
|
+
import { Input } from '@alfalab/core-components-input/modern';
|
|
6
6
|
|
|
7
|
-
var styles = {"textHidden":"masked-
|
|
7
|
+
var styles = {"textHidden":"masked-input__textHidden_7afcd"};
|
|
8
8
|
require('./index.css')
|
|
9
9
|
|
|
10
10
|
// Символ плейсхолдера не может входить в маску, поэтому вместо пробела используется \u2000
|
package/modern/index.css
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
/* hash:
|
|
1
|
+
/* hash: 16022 */
|
package/modern/index.js
CHANGED
package/package.json
CHANGED
|
@@ -1,13 +1,13 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@alfalab/core-components-masked-input",
|
|
3
|
-
"version": "4.4.
|
|
3
|
+
"version": "4.4.4",
|
|
4
4
|
"description": "",
|
|
5
5
|
"keywords": [],
|
|
6
6
|
"license": "MIT",
|
|
7
7
|
"main": "index.js",
|
|
8
8
|
"module": "./esm/index.js",
|
|
9
9
|
"scripts": {
|
|
10
|
-
"postinstall": "node ./send-stats.js
|
|
10
|
+
"postinstall": "node -e \"if (require('fs').existsSync('./send-stats.js')){require('./send-stats.js')} \""
|
|
11
11
|
},
|
|
12
12
|
"publishConfig": {
|
|
13
13
|
"access": "public",
|
|
@@ -17,7 +17,7 @@
|
|
|
17
17
|
"react": "^16.9.0 || ^17.0.1"
|
|
18
18
|
},
|
|
19
19
|
"dependencies": {
|
|
20
|
-
"@alfalab/core-components-input": "^
|
|
20
|
+
"@alfalab/core-components-input": "^9.0.0",
|
|
21
21
|
"classnames": "^2.2.6",
|
|
22
22
|
"react-merge-refs": "^1.1.0",
|
|
23
23
|
"text-mask-core": "^5.1.2"
|