@stokr/components-library 3.0.12 → 3.0.13
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/index.js +3365 -3250
- package/dist/static/images/eth_logo.svg +9 -0
- package/package.json +148 -147
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 16 16" id="Eth--Streamline-Cryptocurrency-Black" height="16" width="16">
|
|
2
|
+
<desc>
|
|
3
|
+
Eth Streamline Icon: https://streamlinehq.com
|
|
4
|
+
</desc>
|
|
5
|
+
<path fill="#000000" fill-rule="evenodd" d="M8 15.840000000000002C3.6698666666666666 15.840000000000002 0.16 12.330133333333334 0.16 8S3.6698666666666666 0.16 8 0.16 15.840000000000002 3.6698666666666666 15.840000000000002 8 12.330133333333334 15.840000000000002 8 15.840000000000002Zm3.9170424242424247 -7.732703030303031L8.244024242424242 2.1199999999999997 4.569987878787878 8.107781818181818l3.6740363636363638 2.1329939393939394 3.6730181818181817 -2.1334787878787878Zm0.002957575757575758 0.6845575757575757 -3.6759757575757575 2.1319757575757574 -3.6740363636363638 -2.131490909090909 3.6740363636363638 5.085236363636364 3.6759757575757575 -5.0857212121212125Z" clip-rule="evenodd" stroke-width="0.4848"></path>
|
|
6
|
+
<path fill="#000000" fill-opacity=".298" d="M8.244024242424242 2.1199999999999997v4.346278787878788l3.6735030303030305 1.6415030303030305 -3.6735030303030305 -5.987781818181818Zm0 8.804315151515151v2.953260606060606l3.6759757575757575 -5.0857212121212125 -3.6759757575757575 2.132460606060606Z" stroke-width="0.4848"></path>
|
|
7
|
+
<path fill="#000000" fill-opacity=".801" d="m8.244024242424242 10.240824242424242 3.6735030303030305 -2.1329939393939394 -3.6735030303030305 -1.6404848484848487v3.773478787878788Z" stroke-width="0.4848"></path>
|
|
8
|
+
<path fill="#000000" fill-opacity=".298" d="m4.569987878787878 8.107830303030303 3.6740363636363638 2.1329939393939394v-3.773478787878788l-3.6740363636363638 1.6404848484848487Z" stroke-width="0.4848"></path>
|
|
9
|
+
</svg>
|
package/package.json
CHANGED
|
@@ -1,147 +1,148 @@
|
|
|
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.umd.cjs",
|
|
9
|
-
"module": "./dist/index.js",
|
|
10
|
-
"files": [
|
|
11
|
-
"dist",
|
|
12
|
-
"README.md"
|
|
13
|
-
],
|
|
14
|
-
"exports": {
|
|
15
|
-
".": {
|
|
16
|
-
"import": "./dist/index.js",
|
|
17
|
-
"require": "./dist/index.umd.cjs",
|
|
18
|
-
"default": "./dist/index.js"
|
|
19
|
-
},
|
|
20
|
-
"./styles.css": "./dist/index.css",
|
|
21
|
-
"./ionicons.css": "./dist/static/fonts/Ionicons/ionicons.min.css",
|
|
22
|
-
"./dist/*": "./dist/static/*"
|
|
23
|
-
},
|
|
24
|
-
"repository": {
|
|
25
|
-
"type": "git",
|
|
26
|
-
"url": "http://46.101.229.186:3000/stokr/components-library"
|
|
27
|
-
},
|
|
28
|
-
"scripts": {
|
|
29
|
-
"build": "vite build",
|
|
30
|
-
"build-storybook": "storybook build",
|
|
31
|
-
"build-storybook-docs": "storybook build -s public --docs",
|
|
32
|
-
"copy:static": "node -e \"require('fs').cpSync('src/static', 'dist/static', {recursive: true})\"",
|
|
33
|
-
"build:dist": "vite build && npm run copy:static",
|
|
34
|
-
"prepare": "npm run build:dist",
|
|
35
|
-
"storybook": "storybook dev -p 6006",
|
|
36
|
-
"start": "npm run storybook",
|
|
37
|
-
"format": "prettier --write ./src",
|
|
38
|
-
"lint": "eslint .",
|
|
39
|
-
"chromatic": "CHROMATIC_APP_CODE=7kzdke5umep chromatic",
|
|
40
|
-
"release": "auto shipit",
|
|
41
|
-
"pub": "npm run publish:build && npm publish --access public",
|
|
42
|
-
"publish:build": "npm run build:dist",
|
|
43
|
-
"dev": "vite dev",
|
|
44
|
-
"serve": "npx http-server ./storybook-static -p 9009"
|
|
45
|
-
},
|
|
46
|
-
"dependencies": {
|
|
47
|
-
"@lottiefiles/dotlottie-react": "^0.17.13",
|
|
48
|
-
"ajv": "^8.18.0",
|
|
49
|
-
"axios": "^1.13.5",
|
|
50
|
-
"bignumber.js": "^9.1.1",
|
|
51
|
-
"cross-env": "^10.1.0",
|
|
52
|
-
"d3": "^7.8.3",
|
|
53
|
-
"date-fns": "^4.1.0",
|
|
54
|
-
"date-fns-tz": "^3.2.0",
|
|
55
|
-
"depcheck": "^1.4.7",
|
|
56
|
-
"firebase": "^12.4.0",
|
|
57
|
-
"formik": "^2.2.9",
|
|
58
|
-
"formik-persist": "^1.1.0",
|
|
59
|
-
"html-react-parser": "^5.0.6",
|
|
60
|
-
"http-server": "^14.1.1",
|
|
61
|
-
"js-cookie": "^3.0.5",
|
|
62
|
-
"mixpanel-browser": "^2.74.0",
|
|
63
|
-
"mobile-detect": "^1.4.5",
|
|
64
|
-
"moment": "^2.30.1",
|
|
65
|
-
"moment-timezone": "^0.6.0",
|
|
66
|
-
"prop-types": "^15.8.1",
|
|
67
|
-
"qrcode.react": "^4.2.0",
|
|
68
|
-
"react-collapse": "^5.1.1",
|
|
69
|
-
"react-copy-to-clipboard": "^5.1.0",
|
|
70
|
-
"react-countup": "^6.4.1",
|
|
71
|
-
"react-custom-scrollbars-2": "^4.5.0",
|
|
72
|
-
"react-day-picker": "^9.11.1",
|
|
73
|
-
"react-device-detect": "^2.2.3",
|
|
74
|
-
"react-ga4": "^2.1.0",
|
|
75
|
-
"react-
|
|
76
|
-
"react-
|
|
77
|
-
"react-
|
|
78
|
-
"react-
|
|
79
|
-
"react-
|
|
80
|
-
"react-
|
|
81
|
-
"react-
|
|
82
|
-
"react-
|
|
83
|
-
"react-
|
|
84
|
-
"react-
|
|
85
|
-
"react-
|
|
86
|
-
"
|
|
87
|
-
"
|
|
88
|
-
"
|
|
89
|
-
"
|
|
90
|
-
"
|
|
91
|
-
|
|
92
|
-
|
|
93
|
-
|
|
94
|
-
"react
|
|
95
|
-
"react-
|
|
96
|
-
"
|
|
97
|
-
|
|
98
|
-
|
|
99
|
-
|
|
100
|
-
"@
|
|
101
|
-
"@eslint/
|
|
102
|
-
"@
|
|
103
|
-
"@storybook/addon-
|
|
104
|
-
"@storybook/
|
|
105
|
-
"@storybook/
|
|
106
|
-
"@
|
|
107
|
-
"@types/
|
|
108
|
-
"@types/react
|
|
109
|
-
"@
|
|
110
|
-
"@typescript-eslint/
|
|
111
|
-
"@
|
|
112
|
-
"
|
|
113
|
-
"eslint
|
|
114
|
-
"eslint-
|
|
115
|
-
"eslint-plugin-
|
|
116
|
-
"eslint-plugin-react
|
|
117
|
-
"eslint-plugin-react-
|
|
118
|
-
"eslint-plugin-
|
|
119
|
-
"
|
|
120
|
-
"
|
|
121
|
-
"react
|
|
122
|
-
"react-
|
|
123
|
-
"
|
|
124
|
-
"
|
|
125
|
-
"
|
|
126
|
-
"typescript
|
|
127
|
-
"
|
|
128
|
-
"vite
|
|
129
|
-
"vite-plugin-
|
|
130
|
-
"vite-plugin-
|
|
131
|
-
|
|
132
|
-
|
|
133
|
-
|
|
134
|
-
|
|
135
|
-
|
|
136
|
-
|
|
137
|
-
|
|
138
|
-
|
|
139
|
-
|
|
140
|
-
|
|
141
|
-
|
|
142
|
-
"
|
|
143
|
-
|
|
144
|
-
"
|
|
145
|
-
"
|
|
146
|
-
|
|
147
|
-
|
|
1
|
+
{
|
|
2
|
+
"name": "@stokr/components-library",
|
|
3
|
+
"version": "3.0.13",
|
|
4
|
+
"description": "STOKR - Components Library",
|
|
5
|
+
"author": "Bilal Hodzic <bilal@stokr.io>",
|
|
6
|
+
"license": "MIT",
|
|
7
|
+
"type": "module",
|
|
8
|
+
"main": "./dist/index.umd.cjs",
|
|
9
|
+
"module": "./dist/index.js",
|
|
10
|
+
"files": [
|
|
11
|
+
"dist",
|
|
12
|
+
"README.md"
|
|
13
|
+
],
|
|
14
|
+
"exports": {
|
|
15
|
+
".": {
|
|
16
|
+
"import": "./dist/index.js",
|
|
17
|
+
"require": "./dist/index.umd.cjs",
|
|
18
|
+
"default": "./dist/index.js"
|
|
19
|
+
},
|
|
20
|
+
"./styles.css": "./dist/index.css",
|
|
21
|
+
"./ionicons.css": "./dist/static/fonts/Ionicons/ionicons.min.css",
|
|
22
|
+
"./dist/*": "./dist/static/*"
|
|
23
|
+
},
|
|
24
|
+
"repository": {
|
|
25
|
+
"type": "git",
|
|
26
|
+
"url": "http://46.101.229.186:3000/stokr/components-library"
|
|
27
|
+
},
|
|
28
|
+
"scripts": {
|
|
29
|
+
"build": "vite build",
|
|
30
|
+
"build-storybook": "storybook build",
|
|
31
|
+
"build-storybook-docs": "storybook build -s public --docs",
|
|
32
|
+
"copy:static": "node -e \"require('fs').cpSync('src/static', 'dist/static', {recursive: true})\"",
|
|
33
|
+
"build:dist": "vite build && npm run copy:static",
|
|
34
|
+
"prepare": "npm run build:dist",
|
|
35
|
+
"storybook": "storybook dev -p 6006",
|
|
36
|
+
"start": "npm run storybook",
|
|
37
|
+
"format": "prettier --write ./src",
|
|
38
|
+
"lint": "eslint .",
|
|
39
|
+
"chromatic": "CHROMATIC_APP_CODE=7kzdke5umep chromatic",
|
|
40
|
+
"release": "auto shipit",
|
|
41
|
+
"pub": "npm run publish:build && npm publish --access public",
|
|
42
|
+
"publish:build": "npm run build:dist",
|
|
43
|
+
"dev": "vite dev",
|
|
44
|
+
"serve": "npx http-server ./storybook-static -p 9009"
|
|
45
|
+
},
|
|
46
|
+
"dependencies": {
|
|
47
|
+
"@lottiefiles/dotlottie-react": "^0.17.13",
|
|
48
|
+
"ajv": "^8.18.0",
|
|
49
|
+
"axios": "^1.13.5",
|
|
50
|
+
"bignumber.js": "^9.1.1",
|
|
51
|
+
"cross-env": "^10.1.0",
|
|
52
|
+
"d3": "^7.8.3",
|
|
53
|
+
"date-fns": "^4.1.0",
|
|
54
|
+
"date-fns-tz": "^3.2.0",
|
|
55
|
+
"depcheck": "^1.4.7",
|
|
56
|
+
"firebase": "^12.4.0",
|
|
57
|
+
"formik": "^2.2.9",
|
|
58
|
+
"formik-persist": "^1.1.0",
|
|
59
|
+
"html-react-parser": "^5.0.6",
|
|
60
|
+
"http-server": "^14.1.1",
|
|
61
|
+
"js-cookie": "^3.0.5",
|
|
62
|
+
"mixpanel-browser": "^2.74.0",
|
|
63
|
+
"mobile-detect": "^1.4.5",
|
|
64
|
+
"moment": "^2.30.1",
|
|
65
|
+
"moment-timezone": "^0.6.0",
|
|
66
|
+
"prop-types": "^15.8.1",
|
|
67
|
+
"qrcode.react": "^4.2.0",
|
|
68
|
+
"react-collapse": "^5.1.1",
|
|
69
|
+
"react-copy-to-clipboard": "^5.1.0",
|
|
70
|
+
"react-countup": "^6.4.1",
|
|
71
|
+
"react-custom-scrollbars-2": "^4.5.0",
|
|
72
|
+
"react-day-picker": "^9.11.1",
|
|
73
|
+
"react-device-detect": "^2.2.3",
|
|
74
|
+
"react-ga4": "^2.1.0",
|
|
75
|
+
"react-dom": "^18.3.1",
|
|
76
|
+
"react-helmet": "^6.1.0",
|
|
77
|
+
"react-intersection-observer": "^10.0.2",
|
|
78
|
+
"react-otp-input": "^3.1.0",
|
|
79
|
+
"react-portal": "^4.2.2",
|
|
80
|
+
"react-qr-code": "^2.0.12",
|
|
81
|
+
"react-range": "^1.8.14",
|
|
82
|
+
"react-select": "^5.7.0",
|
|
83
|
+
"react-slick": "^0.31.0",
|
|
84
|
+
"react-table": "^7.8.0",
|
|
85
|
+
"react-tippy": "^1.4.0",
|
|
86
|
+
"react-transition-group": "^4.4.5",
|
|
87
|
+
"sanitize-html": "^2.17.1",
|
|
88
|
+
"scroll-to-element": "^2.0.3",
|
|
89
|
+
"semantic-ui-react": "^2.1.4",
|
|
90
|
+
"slick-carousel": "^1.8.1",
|
|
91
|
+
"yup": "^1.0.0"
|
|
92
|
+
},
|
|
93
|
+
"peerDependencies": {
|
|
94
|
+
"react": "^18.0.0 || ^19.0.0",
|
|
95
|
+
"react-dom": "^18.0.0 || ^19.0.0",
|
|
96
|
+
"react-router-dom": "^6.0.0",
|
|
97
|
+
"styled-components": "^6.0.0"
|
|
98
|
+
},
|
|
99
|
+
"devDependencies": {
|
|
100
|
+
"@chromatic-com/storybook": "^5.0.0",
|
|
101
|
+
"@eslint-react/eslint-plugin": "^1.53.1",
|
|
102
|
+
"@eslint/js": "^9.39.2",
|
|
103
|
+
"@storybook/addon-docs": "^10.2.0",
|
|
104
|
+
"@storybook/addon-links": "^10.2.0",
|
|
105
|
+
"@storybook/builder-vite": "^10.2.0",
|
|
106
|
+
"@storybook/react-vite": "^10.2.0",
|
|
107
|
+
"@types/node": "^25.0.10",
|
|
108
|
+
"@types/react": "^19.2.9",
|
|
109
|
+
"@types/react-dom": "^19.2.3",
|
|
110
|
+
"@typescript-eslint/eslint-plugin": "^8.53.1",
|
|
111
|
+
"@typescript-eslint/parser": "^8.53.1",
|
|
112
|
+
"@vitejs/plugin-react": "^5.1.2",
|
|
113
|
+
"eslint": "^9.39.2",
|
|
114
|
+
"eslint-config-prettier": "^10.1.8",
|
|
115
|
+
"eslint-plugin-prettier": "^5.5.5",
|
|
116
|
+
"eslint-plugin-react": "^7.37.2",
|
|
117
|
+
"eslint-plugin-react-hooks": "^7.0.1",
|
|
118
|
+
"eslint-plugin-react-refresh": "^0.4.26",
|
|
119
|
+
"eslint-plugin-storybook": "10.2.0",
|
|
120
|
+
"prettier": "^3.8.1",
|
|
121
|
+
"react": "^19.2.3",
|
|
122
|
+
"react-dom": "^19.2.3",
|
|
123
|
+
"react-router-dom": "^6.30.3",
|
|
124
|
+
"storybook": "^10.2.0",
|
|
125
|
+
"styled-components": "^6.0.7",
|
|
126
|
+
"typescript": "^5.9.3",
|
|
127
|
+
"typescript-eslint": "^8.54.0",
|
|
128
|
+
"vite": "^7.3.1",
|
|
129
|
+
"vite-plugin-dts": "^4.5.4",
|
|
130
|
+
"vite-plugin-lottie": "^1.0.1",
|
|
131
|
+
"vite-plugin-svgr": "4.5.0"
|
|
132
|
+
},
|
|
133
|
+
"overrides": {
|
|
134
|
+
"minimatch": "^10.2.1"
|
|
135
|
+
},
|
|
136
|
+
"browser": {
|
|
137
|
+
"[module-name]": false
|
|
138
|
+
},
|
|
139
|
+
"bugs": {
|
|
140
|
+
"url": "https://github.com/stokr-io/components-library/issues"
|
|
141
|
+
},
|
|
142
|
+
"homepage": "https://github.com/stokr-io/components-library#readme",
|
|
143
|
+
"keywords": [
|
|
144
|
+
"stokr",
|
|
145
|
+
"components-library",
|
|
146
|
+
"story-book"
|
|
147
|
+
]
|
|
148
|
+
}
|