Skip to content

Commit 49f19ea

Browse files
Merge pull request #219 from skyflowapi/release/26.3.10
SK-2406: Release/26.3.10
2 parents 418858f + d5134a4 commit 49f19ea

17 files changed

Lines changed: 687 additions & 119 deletions

File tree

.cspell.json

Lines changed: 76 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,76 @@
1+
{
2+
"version": "0.2",
3+
"language": "en",
4+
"allowCompoundWords": true,
5+
"words": [
6+
"Skyflow",
7+
"de-identify",
8+
"re-identify",
9+
"deidentify",
10+
"reidentify",
11+
"De-identify",
12+
"Re-identify",
13+
"Deidentify",
14+
"Reidentify",
15+
"detokenize",
16+
"skyflow",
17+
"upserting",
18+
"de-identified",
19+
"DEIDENTIFIED",
20+
"de-identification",
21+
"de-identifying",
22+
"re-identified",
23+
"Re-identified",
24+
"re-identification",
25+
"Blackbox",
26+
"binlookup",
27+
"BYOT",
28+
"skyflowapi",
29+
"vaultid",
30+
"vaulturl",
31+
"upsert",
32+
"Upsert",
33+
"UNIONPAY",
34+
"BANCAIRES",
35+
"Luhn",
36+
"skyflowcardtype",
37+
"cardbrand",
38+
"composecontainer",
39+
"fullname",
40+
"myname",
41+
"initialisation",
42+
"Initialise",
43+
"fdvjcknfsk",
44+
"cardmetadata",
45+
"Listner",
46+
"threeds",
47+
"ELEMENTID",
48+
"testid",
49+
"Coralogix",
50+
"Roboto",
51+
"iframes",
52+
"mkdir",
53+
"cobranded",
54+
"dynamicomposecontainer"
55+
],
56+
"ignorePaths": [
57+
"node_modules/**",
58+
"lib/**",
59+
"dist/**",
60+
"build/**",
61+
"coverage/**",
62+
"*.log",
63+
"package-lock.json",
64+
".git/**",
65+
"**/*.min.js",
66+
"webpack.config.js",
67+
"samples/**/node_modules/**",
68+
"samples/**/dist/**"
69+
],
70+
"ignoreRegExpList": [
71+
"/\\b[A-Z0-9]{20,}\\b/g",
72+
"/[0-9a-f]{8}-[0-9a-f]{4}-[0-9a-f]{4}-[0-9a-f]{4}-[0-9a-f]{12}/gi",
73+
"/\\b[A-Za-z0-9_]{7,}\\b(?=])/g",
74+
"/eyJ[A-Za-z0-9_-]+\\.[A-Za-z0-9_-]+\\.[A-Za-z0-9_-]+/g"
75+
]
76+
}

.github/workflows/CI.yml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -31,6 +31,9 @@ jobs:
3131
- name: install node_modules
3232
run: npm install
3333

34+
- name: Run spellcheck
35+
run: npm run spellcheck
36+
3437
- name: Run tests
3538
run: npm run test
3639

CHANGELOG.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -215,7 +215,7 @@ All notable changes to this project will be documented in this file.
215215
## [1.4.0] - 2023-01-03
216216

217217
### Fixed
218-
- Fixed `Reveal` Element re-redering
218+
- Fixed `Reveal` Element re-rendering
219219

220220
## [1.3.1] - 2022-09-23
221221

@@ -245,11 +245,11 @@ All notable changes to this project will be documented in this file.
245245

246246
### Added
247247

248-
- Minimun react version support for react SDK
248+
- Minimum react version support for react SDK
249249
### Changed
250250

251251
- README.md file
252252
- Sample App
253253
## [1.0.0] - 2022-08-16
254254

255-
- Inital Skyflow React SDK release
255+
- Initial Skyflow React SDK release

README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -93,13 +93,13 @@ const getBearerToken = () => {
9393
const response = JSON.parse(Http.responseText)
9494
resolve(response.accessToken)
9595
} else {
96-
reject('Error occured')
96+
reject('Error occurred')
9797
}
9898
}
9999
}
100100

101101
Http.onerror = (error) => {
102-
reject('Error occured')
102+
reject('Error occurred')
103103
}
104104

105105
const url = 'https://api.acmecorp.com/skyflowToken'
@@ -2022,7 +2022,7 @@ const CollectElements = () => {
20222022
margin: '12px 2px',
20232023
}
20242024
},
2025-
errorTextSyles: {
2025+
errorTextStyles: {
20262026
base: {
20272027
color: '#f44336'
20282028
}
@@ -2906,7 +2906,7 @@ export default App
29062906
29072907
## Update Skyflow Elements Properties
29082908
2909-
You can dynamically update Skyflow Elements’ properties dynamically by using React’s `useState` hook. You can maintain the element properties via React state and update them at runtime as and when required. Skyflow's React SDK provides the following elements:
2909+
You can dynamically update Skyflow Elements’ properties dynamically by using the React `useState` hook. You can maintain the element properties via React state and update them at runtime as and when required. The Skyflow React SDK provides the following elements:
29102910
- Collect Elements
29112911
- Reveal Elements
29122912
- Composable Elements

0 commit comments

Comments
 (0)