@gr4vy/secure-fields 1.0.0 → 1.2.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/CHANGELOG.md +35 -0
- package/esm/index.js +2 -1
- package/lib/types.d.ts +1 -1
- package/lib/utils/styles.d.ts +1 -1
- package/package.json +9 -6
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,38 @@
|
|
|
1
|
+
# v1.2.0 (Fri Feb 03 2023)
|
|
2
|
+
|
|
3
|
+
#### 🐛 Bug Fix
|
|
4
|
+
|
|
5
|
+
- fix: esm export [#172](https://github.com/gr4vy/secure-fields/pull/172) ([@luca-gr4vy](https://github.com/luca-gr4vy))
|
|
6
|
+
|
|
7
|
+
#### Authors: 1
|
|
8
|
+
|
|
9
|
+
- Luca Allievi ([@luca-gr4vy](https://github.com/luca-gr4vy))
|
|
10
|
+
|
|
11
|
+
---
|
|
12
|
+
|
|
13
|
+
# v1.1.0 (Fri Jan 20 2023)
|
|
14
|
+
|
|
15
|
+
#### 🐛 Bug Fix
|
|
16
|
+
|
|
17
|
+
- build(deps-dev): Bump typedoc from 0.23.21 to 0.23.24 [#154](https://github.com/gr4vy/secure-fields/pull/154) ([@dependabot[bot]](https://github.com/dependabot[bot]) [@luca-gr4vy](https://github.com/luca-gr4vy))
|
|
18
|
+
- build(deps): bump css-loader from 6.7.1 to 6.7.2 [#119](https://github.com/gr4vy/secure-fields/pull/119) ([@dependabot[bot]](https://github.com/dependabot[bot]) [@brunodesde1987](https://github.com/brunodesde1987))
|
|
19
|
+
- build(deps-dev): bump typedoc from 0.23.18 to 0.23.19 [#103](https://github.com/gr4vy/secure-fields/pull/103) ([@dependabot[bot]](https://github.com/dependabot[bot]))
|
|
20
|
+
- build(deps-dev): bump typedoc from 0.23.16 to 0.23.18 [#99](https://github.com/gr4vy/secure-fields/pull/99) ([@dependabot[bot]](https://github.com/dependabot[bot]))
|
|
21
|
+
|
|
22
|
+
#### 🏠 Internal
|
|
23
|
+
|
|
24
|
+
- chore: absolute import [#145](https://github.com/gr4vy/secure-fields/pull/145) ([@theturboboy](https://github.com/theturboboy))
|
|
25
|
+
- build(deps-dev): bump typedoc from 0.23.19 to 0.23.21 [#118](https://github.com/gr4vy/secure-fields/pull/118) ([@dependabot[bot]](https://github.com/dependabot[bot]))
|
|
26
|
+
|
|
27
|
+
#### Authors: 4
|
|
28
|
+
|
|
29
|
+
- [@dependabot[bot]](https://github.com/dependabot[bot])
|
|
30
|
+
- Andrei Haidukevich ([@theturboboy](https://github.com/theturboboy))
|
|
31
|
+
- Bruno Carvalho ([@brunodesde1987](https://github.com/brunodesde1987))
|
|
32
|
+
- Luca Allievi ([@luca-gr4vy](https://github.com/luca-gr4vy))
|
|
33
|
+
|
|
34
|
+
---
|
|
35
|
+
|
|
1
36
|
# v1.0.0 (Tue Oct 18 2022)
|
|
2
37
|
|
|
3
38
|
#### 🚀 Enhancement
|
package/esm/index.js
CHANGED
|
@@ -1 +1,2 @@
|
|
|
1
|
-
|
|
1
|
+
import Gr4vy from '../lib/index.js'
|
|
2
|
+
export const SecureFields = Gr4vy.SecureFields
|
package/lib/types.d.ts
CHANGED
package/lib/utils/styles.d.ts
CHANGED
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
import type { Styles, StylesTuple } from
|
|
1
|
+
import type { Styles, StylesTuple } from "../types";
|
|
2
2
|
export declare const stylesTransformer: (styles?: Styles) => StylesTuple;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@gr4vy/secure-fields",
|
|
3
|
-
"version": "1.
|
|
3
|
+
"version": "1.2.0",
|
|
4
4
|
"description": "Gr4vy-hosted secure fields offering advanced theming, PCI compliance, event handling, and more.",
|
|
5
5
|
"main": "lib/index",
|
|
6
6
|
"types": "lib/index",
|
|
@@ -29,7 +29,8 @@
|
|
|
29
29
|
}
|
|
30
30
|
},
|
|
31
31
|
"scripts": {
|
|
32
|
-
"
|
|
32
|
+
"prepare": "ts-patch install -s",
|
|
33
|
+
"build": "tsc -p tsconfig.prod.json && webpack --config webpack.prod.js",
|
|
33
34
|
"clean": "rm -rf lib *.tgz",
|
|
34
35
|
"dev": "TOKEN=$(yarn --silent token) webpack serve --config webpack.dev.js",
|
|
35
36
|
"docs": "typedoc --plugin typedoc-plugin-missing-exports",
|
|
@@ -40,15 +41,17 @@
|
|
|
40
41
|
"token": "node generate-token"
|
|
41
42
|
},
|
|
42
43
|
"devDependencies": {
|
|
43
|
-
"css-loader": "^6.7.
|
|
44
|
+
"css-loader": "^6.7.2",
|
|
44
45
|
"csstype": "^3.1.1",
|
|
45
46
|
"dotenv": "^16.0.3",
|
|
46
47
|
"style-loader": "^3.3.1",
|
|
47
|
-
"
|
|
48
|
-
"typedoc
|
|
48
|
+
"ts-patch": "^2.1.0",
|
|
49
|
+
"typedoc": "^0.23.24",
|
|
50
|
+
"typedoc-plugin-missing-exports": "^0.23.0",
|
|
51
|
+
"typescript-transform-paths": "^3.4.4"
|
|
49
52
|
},
|
|
50
53
|
"publishConfig": {
|
|
51
54
|
"access": "public"
|
|
52
55
|
},
|
|
53
|
-
"gitHead": "
|
|
56
|
+
"gitHead": "f932a5fb2d92483a800a5b85af1e7aa2f60ed617"
|
|
54
57
|
}
|