@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 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
- export { SecureFields } from '../lib/index.js'
1
+ import Gr4vy from '../lib/index.js'
2
+ export const SecureFields = Gr4vy.SecureFields
package/lib/types.d.ts CHANGED
@@ -1,5 +1,5 @@
1
- import type * as CSS from 'csstype';
2
1
  import { Events } from './constants';
2
+ import type * as CSS from 'csstype';
3
3
  export declare type Config = {
4
4
  environment?: 'sandbox' | 'production';
5
5
  gr4vyId: string;
@@ -1,2 +1,2 @@
1
- import type { Styles, StylesTuple } from '../types';
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.0.0",
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
- "build": "tsc && webpack --config webpack.prod.js",
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.1",
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
- "typedoc": "^0.23.16",
48
- "typedoc-plugin-missing-exports": "^0.23.0"
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": "382a4f03693139980b4acd32c04008990924e7b6"
56
+ "gitHead": "f932a5fb2d92483a800a5b85af1e7aa2f60ed617"
54
57
  }