@stokr/components-library 3.0.40 → 3.0.41
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/dist/components/2FA/Connect2FA.js +3 -4
- package/dist/components/Button/Button.styles.js +0 -1
- package/dist/components/HeroBlock/HeroVideoBlock.js +47 -22
- package/dist/components/icons/LinkIcon.js +2 -2
- package/dist/runtime-config.js +1 -1
- package/dist/static/country-list.json +251 -251
- package/dist/static/fonts/Ionicons/ionicons.min.css +2810 -2810
- package/dist/static/fonts/Ionicons/ionicons.min.css.js +1 -1
- package/dist/static/fonts/icomoon/selection.json +910 -910
- package/dist/static/fonts/icomoon/style.css +139 -139
- package/dist/static/images/copy_icon.svg +4 -4
- package/dist/static/images/download_icon.svg +3 -3
- package/dist/static/images/face-scan-icon.svg +7 -7
- package/dist/static/images/numbers/number_eight.svg +3 -3
- package/dist/static/images/numbers/number_five.svg +4 -4
- package/dist/static/images/numbers/number_four.svg +3 -3
- package/dist/static/images/numbers/number_nine.svg +4 -4
- package/dist/static/images/numbers/number_one.svg +4 -4
- package/dist/static/images/numbers/number_seven.svg +4 -4
- package/dist/static/images/numbers/number_six.svg +4 -4
- package/dist/static/images/numbers/number_three.svg +3 -3
- package/dist/static/images/numbers/number_two.svg +4 -4
- package/dist/static/images/numbers/number_zero.svg +3 -3
- package/dist/static/images/plus-icon.svg +4 -4
- package/dist/static/images/search-icon.svg +3 -3
- package/dist/static/images/transfer-icon.svg +10 -10
- package/dist/static/images/warning-filled.svg +3 -3
- package/package.json +152 -153
package/package.json
CHANGED
|
@@ -1,153 +1,152 @@
|
|
|
1
|
-
{
|
|
2
|
-
"name": "@stokr/components-library",
|
|
3
|
-
"version": "3.0.
|
|
4
|
-
"description": "STOKR - Components Library",
|
|
5
|
-
"author": "Bilal Hodzic <bilal@stokr.io>",
|
|
6
|
-
"license": "MIT",
|
|
7
|
-
"type": "module",
|
|
8
|
-
"main": "./dist/index.js",
|
|
9
|
-
"module": "./dist/index.js",
|
|
10
|
-
"files": [
|
|
11
|
-
"dist",
|
|
12
|
-
"README.md"
|
|
13
|
-
],
|
|
14
|
-
"exports": {
|
|
15
|
-
".": {
|
|
16
|
-
"import": "./dist/index.js",
|
|
17
|
-
"default": "./dist/index.js"
|
|
18
|
-
},
|
|
19
|
-
"./auth": {
|
|
20
|
-
"import": "./dist/auth/index.js",
|
|
21
|
-
"default": "./dist/auth/index.js"
|
|
22
|
-
},
|
|
23
|
-
"./auth/index.js": "./dist/auth/index.js",
|
|
24
|
-
"./ionicons.css": "./dist/static/fonts/Ionicons/ionicons.min.css",
|
|
25
|
-
"./dist/*": "./dist/static/*"
|
|
26
|
-
},
|
|
27
|
-
"sideEffects": [
|
|
28
|
-
"**/*.css",
|
|
29
|
-
"./dist/styles/global.js",
|
|
30
|
-
"./dist/styles/ioniconsStyles.js",
|
|
31
|
-
"./dist/components/Slider/Slider.js",
|
|
32
|
-
"./dist/components/LearnMoreCarousel/LearnMoreCarousel.js"
|
|
33
|
-
],
|
|
34
|
-
"repository": {
|
|
35
|
-
"type": "git",
|
|
36
|
-
"url": "http://46.101.229.186:3000/stokr/components-library"
|
|
37
|
-
},
|
|
38
|
-
"scripts": {
|
|
39
|
-
"build": "vite build",
|
|
40
|
-
"build-storybook": "storybook build",
|
|
41
|
-
"build-storybook-docs": "storybook build -s public --docs",
|
|
42
|
-
"copy:static": "node -e \"require('fs').cpSync('src/static', 'dist/static', {recursive: true})\"",
|
|
43
|
-
"build:dist": "vite build && npm run copy:static",
|
|
44
|
-
"prepare": "npm run build:dist",
|
|
45
|
-
"storybook": "storybook dev -p 6006",
|
|
46
|
-
"start": "npm run storybook",
|
|
47
|
-
"format": "prettier --write ./src",
|
|
48
|
-
"lint": "eslint src",
|
|
49
|
-
"chromatic": "CHROMATIC_APP_CODE=7kzdke5umep chromatic",
|
|
50
|
-
"release": "auto shipit",
|
|
51
|
-
"pub": "npm run publish:build && npm publish --access public",
|
|
52
|
-
"publish:build": "npm run build:dist",
|
|
53
|
-
"dev": "vite dev",
|
|
54
|
-
"serve": "npx http-server ./storybook-static -p 9009"
|
|
55
|
-
},
|
|
56
|
-
"dependencies": {
|
|
57
|
-
"@lottiefiles/dotlottie-react": "^0.17.13",
|
|
58
|
-
"ajv": "^8.18.0",
|
|
59
|
-
"axios": "^1.13.5",
|
|
60
|
-
"bignumber.js": "^9.1.1",
|
|
61
|
-
"country-flag-icons": "^1.6.17",
|
|
62
|
-
"date-fns": "^4.1.0",
|
|
63
|
-
"date-fns-tz": "^3.2.0",
|
|
64
|
-
"dompurify": "^3.2.4",
|
|
65
|
-
"firebase": "^12.4.0",
|
|
66
|
-
"formik": "^2.2.9",
|
|
67
|
-
"formik-persist": "^1.1.0",
|
|
68
|
-
"html-react-parser": "^5.0.6",
|
|
69
|
-
"js-cookie": "^3.0.5",
|
|
70
|
-
"mixpanel-browser": "^2.74.0",
|
|
71
|
-
"mobile-detect": "^1.4.5",
|
|
72
|
-
"moment": "^2.30.1",
|
|
73
|
-
"moment-timezone": "^0.6.0",
|
|
74
|
-
"prop-types": "^15.8.1",
|
|
75
|
-
"qrcode.react": "^4.2.0",
|
|
76
|
-
"react-collapse": "^5.1.1",
|
|
77
|
-
"react-copy-to-clipboard": "^5.1.0",
|
|
78
|
-
"react-countup": "^6.4.1",
|
|
79
|
-
"react-custom-scrollbars-2": "^4.5.0",
|
|
80
|
-
"react-day-picker": "^9.11.1",
|
|
81
|
-
"react-device-detect": "^2.2.3",
|
|
82
|
-
"react-ga4": "^2.1.0",
|
|
83
|
-
"react-helmet": "^6.1.0",
|
|
84
|
-
"react-intersection-observer": "^10.0.2",
|
|
85
|
-
"react-otp-input": "^3.1.0",
|
|
86
|
-
"react-portal": "^4.2.2",
|
|
87
|
-
"react-
|
|
88
|
-
"react-
|
|
89
|
-
"react-
|
|
90
|
-
"react-
|
|
91
|
-
"react-
|
|
92
|
-
"
|
|
93
|
-
"
|
|
94
|
-
"
|
|
95
|
-
"
|
|
96
|
-
|
|
97
|
-
|
|
98
|
-
|
|
99
|
-
"react": "^18.0.0 || ^19.0.0",
|
|
100
|
-
"react-dom": "^
|
|
101
|
-
"
|
|
102
|
-
|
|
103
|
-
|
|
104
|
-
|
|
105
|
-
"@
|
|
106
|
-
"@eslint
|
|
107
|
-
"@
|
|
108
|
-
"@storybook/addon-
|
|
109
|
-
"@storybook/
|
|
110
|
-
"@storybook/
|
|
111
|
-
"@
|
|
112
|
-
"@types/
|
|
113
|
-
"@types/react": "^19.2.
|
|
114
|
-
"@
|
|
115
|
-
"@typescript-eslint/
|
|
116
|
-
"@
|
|
117
|
-
"
|
|
118
|
-
"
|
|
119
|
-
"
|
|
120
|
-
"eslint": "^
|
|
121
|
-
"eslint-
|
|
122
|
-
"eslint-plugin-
|
|
123
|
-
"eslint-plugin-react": "^7.
|
|
124
|
-
"eslint-plugin-react-
|
|
125
|
-
"eslint-plugin-
|
|
126
|
-
"
|
|
127
|
-
"
|
|
128
|
-
"
|
|
129
|
-
"react": "^19.2.3",
|
|
130
|
-
"react-dom": "^
|
|
131
|
-
"
|
|
132
|
-
"
|
|
133
|
-
"
|
|
134
|
-
"typescript": "^
|
|
135
|
-
"
|
|
136
|
-
"vite": "^
|
|
137
|
-
"vite-plugin-
|
|
138
|
-
"vite-plugin-
|
|
139
|
-
|
|
140
|
-
|
|
141
|
-
|
|
142
|
-
|
|
143
|
-
|
|
144
|
-
|
|
145
|
-
|
|
146
|
-
|
|
147
|
-
"
|
|
148
|
-
|
|
149
|
-
"
|
|
150
|
-
"
|
|
151
|
-
|
|
152
|
-
|
|
153
|
-
}
|
|
1
|
+
{
|
|
2
|
+
"name": "@stokr/components-library",
|
|
3
|
+
"version": "3.0.41",
|
|
4
|
+
"description": "STOKR - Components Library",
|
|
5
|
+
"author": "Bilal Hodzic <bilal@stokr.io>",
|
|
6
|
+
"license": "MIT",
|
|
7
|
+
"type": "module",
|
|
8
|
+
"main": "./dist/index.js",
|
|
9
|
+
"module": "./dist/index.js",
|
|
10
|
+
"files": [
|
|
11
|
+
"dist",
|
|
12
|
+
"README.md"
|
|
13
|
+
],
|
|
14
|
+
"exports": {
|
|
15
|
+
".": {
|
|
16
|
+
"import": "./dist/index.js",
|
|
17
|
+
"default": "./dist/index.js"
|
|
18
|
+
},
|
|
19
|
+
"./auth": {
|
|
20
|
+
"import": "./dist/auth/index.js",
|
|
21
|
+
"default": "./dist/auth/index.js"
|
|
22
|
+
},
|
|
23
|
+
"./auth/index.js": "./dist/auth/index.js",
|
|
24
|
+
"./ionicons.css": "./dist/static/fonts/Ionicons/ionicons.min.css",
|
|
25
|
+
"./dist/*": "./dist/static/*"
|
|
26
|
+
},
|
|
27
|
+
"sideEffects": [
|
|
28
|
+
"**/*.css",
|
|
29
|
+
"./dist/styles/global.js",
|
|
30
|
+
"./dist/styles/ioniconsStyles.js",
|
|
31
|
+
"./dist/components/Slider/Slider.js",
|
|
32
|
+
"./dist/components/LearnMoreCarousel/LearnMoreCarousel.js"
|
|
33
|
+
],
|
|
34
|
+
"repository": {
|
|
35
|
+
"type": "git",
|
|
36
|
+
"url": "http://46.101.229.186:3000/stokr/components-library"
|
|
37
|
+
},
|
|
38
|
+
"scripts": {
|
|
39
|
+
"build": "vite build",
|
|
40
|
+
"build-storybook": "storybook build",
|
|
41
|
+
"build-storybook-docs": "storybook build -s public --docs",
|
|
42
|
+
"copy:static": "node -e \"require('fs').cpSync('src/static', 'dist/static', {recursive: true})\"",
|
|
43
|
+
"build:dist": "vite build && npm run copy:static",
|
|
44
|
+
"prepare": "npm run build:dist",
|
|
45
|
+
"storybook": "storybook dev -p 6006",
|
|
46
|
+
"start": "npm run storybook",
|
|
47
|
+
"format": "prettier --write ./src",
|
|
48
|
+
"lint": "eslint src",
|
|
49
|
+
"chromatic": "CHROMATIC_APP_CODE=7kzdke5umep chromatic",
|
|
50
|
+
"release": "auto shipit",
|
|
51
|
+
"pub": "npm run publish:build && npm publish --access public",
|
|
52
|
+
"publish:build": "npm run build:dist",
|
|
53
|
+
"dev": "vite dev",
|
|
54
|
+
"serve": "npx http-server ./storybook-static -p 9009"
|
|
55
|
+
},
|
|
56
|
+
"dependencies": {
|
|
57
|
+
"@lottiefiles/dotlottie-react": "^0.17.13",
|
|
58
|
+
"ajv": "^8.18.0",
|
|
59
|
+
"axios": "^1.13.5",
|
|
60
|
+
"bignumber.js": "^9.1.1",
|
|
61
|
+
"country-flag-icons": "^1.6.17",
|
|
62
|
+
"date-fns": "^4.1.0",
|
|
63
|
+
"date-fns-tz": "^3.2.0",
|
|
64
|
+
"dompurify": "^3.2.4",
|
|
65
|
+
"firebase": "^12.4.0",
|
|
66
|
+
"formik": "^2.2.9",
|
|
67
|
+
"formik-persist": "^1.1.0",
|
|
68
|
+
"html-react-parser": "^5.0.6",
|
|
69
|
+
"js-cookie": "^3.0.5",
|
|
70
|
+
"mixpanel-browser": "^2.74.0",
|
|
71
|
+
"mobile-detect": "^1.4.5",
|
|
72
|
+
"moment": "^2.30.1",
|
|
73
|
+
"moment-timezone": "^0.6.0",
|
|
74
|
+
"prop-types": "^15.8.1",
|
|
75
|
+
"qrcode.react": "^4.2.0",
|
|
76
|
+
"react-collapse": "^5.1.1",
|
|
77
|
+
"react-copy-to-clipboard": "^5.1.0",
|
|
78
|
+
"react-countup": "^6.4.1",
|
|
79
|
+
"react-custom-scrollbars-2": "^4.5.0",
|
|
80
|
+
"react-day-picker": "^9.11.1",
|
|
81
|
+
"react-device-detect": "^2.2.3",
|
|
82
|
+
"react-ga4": "^2.1.0",
|
|
83
|
+
"react-helmet": "^6.1.0",
|
|
84
|
+
"react-intersection-observer": "^10.0.2",
|
|
85
|
+
"react-otp-input": "^3.1.0",
|
|
86
|
+
"react-portal": "^4.2.2",
|
|
87
|
+
"react-range": "^1.8.14",
|
|
88
|
+
"react-select": "^5.7.0",
|
|
89
|
+
"react-slick": "^0.31.0",
|
|
90
|
+
"react-table": "^7.8.0",
|
|
91
|
+
"react-tippy": "^1.4.0",
|
|
92
|
+
"scroll-to-element": "^2.0.3",
|
|
93
|
+
"semantic-ui-react": "^2.1.4",
|
|
94
|
+
"slick-carousel": "^1.8.1",
|
|
95
|
+
"yup": "^1.0.0"
|
|
96
|
+
},
|
|
97
|
+
"peerDependencies": {
|
|
98
|
+
"react": "^18.0.0 || ^19.0.0",
|
|
99
|
+
"react-dom": "^18.0.0 || ^19.0.0",
|
|
100
|
+
"react-router-dom": "^6.0.0",
|
|
101
|
+
"styled-components": "^6.0.0"
|
|
102
|
+
},
|
|
103
|
+
"devDependencies": {
|
|
104
|
+
"@chromatic-com/storybook": "^5.1.2",
|
|
105
|
+
"@eslint-react/eslint-plugin": "^1.53.1",
|
|
106
|
+
"@eslint/js": "^9.39.2",
|
|
107
|
+
"@storybook/addon-docs": "^10.3.6",
|
|
108
|
+
"@storybook/addon-links": "^10.3.6",
|
|
109
|
+
"@storybook/builder-vite": "^10.3.6",
|
|
110
|
+
"@storybook/react-vite": "^10.3.6",
|
|
111
|
+
"@types/node": "^25.0.10",
|
|
112
|
+
"@types/react": "^19.2.9",
|
|
113
|
+
"@types/react-dom": "^19.2.3",
|
|
114
|
+
"@typescript-eslint/eslint-plugin": "^8.53.1",
|
|
115
|
+
"@typescript-eslint/parser": "^8.53.1",
|
|
116
|
+
"@vitejs/plugin-react": "^5.1.2",
|
|
117
|
+
"cross-env": "^10.1.0",
|
|
118
|
+
"depcheck": "^1.4.7",
|
|
119
|
+
"eslint": "^9.39.2",
|
|
120
|
+
"eslint-config-prettier": "^10.1.8",
|
|
121
|
+
"eslint-plugin-prettier": "^5.5.5",
|
|
122
|
+
"eslint-plugin-react": "^7.37.2",
|
|
123
|
+
"eslint-plugin-react-hooks": "^7.0.1",
|
|
124
|
+
"eslint-plugin-react-refresh": "^0.4.26",
|
|
125
|
+
"eslint-plugin-storybook": "10.3.6",
|
|
126
|
+
"http-server": "^14.1.1",
|
|
127
|
+
"prettier": "^3.8.1",
|
|
128
|
+
"react": "^19.2.3",
|
|
129
|
+
"react-dom": "^19.2.3",
|
|
130
|
+
"react-router-dom": "^6.30.3",
|
|
131
|
+
"storybook": "^10.3.6",
|
|
132
|
+
"styled-components": "^6.0.7",
|
|
133
|
+
"typescript": "^5.9.3",
|
|
134
|
+
"typescript-eslint": "^8.54.0",
|
|
135
|
+
"vite": "^7.3.1",
|
|
136
|
+
"vite-plugin-dts": "^4.5.4",
|
|
137
|
+
"vite-plugin-lottie": "^1.0.1",
|
|
138
|
+
"vite-plugin-svgr": "4.5.0"
|
|
139
|
+
},
|
|
140
|
+
"overrides": {
|
|
141
|
+
"minimatch": "^10.2.1"
|
|
142
|
+
},
|
|
143
|
+
"bugs": {
|
|
144
|
+
"url": "https://github.com/stokr-io/components-library/issues"
|
|
145
|
+
},
|
|
146
|
+
"homepage": "https://github.com/stokr-io/components-library#readme",
|
|
147
|
+
"keywords": [
|
|
148
|
+
"stokr",
|
|
149
|
+
"components-library",
|
|
150
|
+
"story-book"
|
|
151
|
+
]
|
|
152
|
+
}
|