@gr4vy/secure-fields 1.0.0 → 1.1.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 +23 -0
- 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,26 @@
|
|
|
1
|
+
# v1.1.0 (Fri Jan 20 2023)
|
|
2
|
+
|
|
3
|
+
#### 🐛 Bug Fix
|
|
4
|
+
|
|
5
|
+
- 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))
|
|
6
|
+
- 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))
|
|
7
|
+
- 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]))
|
|
8
|
+
- 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]))
|
|
9
|
+
|
|
10
|
+
#### 🏠 Internal
|
|
11
|
+
|
|
12
|
+
- chore: absolute import [#145](https://github.com/gr4vy/secure-fields/pull/145) ([@theturboboy](https://github.com/theturboboy))
|
|
13
|
+
- 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]))
|
|
14
|
+
|
|
15
|
+
#### Authors: 4
|
|
16
|
+
|
|
17
|
+
- [@dependabot[bot]](https://github.com/dependabot[bot])
|
|
18
|
+
- Andrei Haidukevich ([@theturboboy](https://github.com/theturboboy))
|
|
19
|
+
- Bruno Carvalho ([@brunodesde1987](https://github.com/brunodesde1987))
|
|
20
|
+
- Luca Allievi ([@luca-gr4vy](https://github.com/luca-gr4vy))
|
|
21
|
+
|
|
22
|
+
---
|
|
23
|
+
|
|
1
24
|
# v1.0.0 (Tue Oct 18 2022)
|
|
2
25
|
|
|
3
26
|
#### 🚀 Enhancement
|
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.1.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": "2bddb6226846b2fced4419ff156e99d4235dd9e3"
|
|
54
57
|
}
|