sbx-react-stock-chart 3.5.26 → 3.5.29
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/bundle.js +2 -2
- package/dist/bundle.js.map +1 -0
- package/dist/index.html +85 -0
- package/package.json +34 -53
- package/dist/bundle.js.LICENSE +0 -92
package/dist/index.html
ADDED
|
@@ -0,0 +1,85 @@
|
|
|
1
|
+
<!doctype html>
|
|
2
|
+
<html lang="en">
|
|
3
|
+
<head>
|
|
4
|
+
<meta charset="utf-8">
|
|
5
|
+
<title>Sobix - sbx stock chart</title>
|
|
6
|
+
<meta name="viewport" content="width=device-width, initial-scale=1"/>
|
|
7
|
+
|
|
8
|
+
<script>
|
|
9
|
+
let APP_CONFIG = {
|
|
10
|
+
"title": "BearBulls",
|
|
11
|
+
"name": "BearBull",
|
|
12
|
+
"logoutURL": "https://bearbull.io",
|
|
13
|
+
"publicPath": "/",
|
|
14
|
+
"connection": {
|
|
15
|
+
"CDN": {
|
|
16
|
+
"protocol": "https",
|
|
17
|
+
"host": "bearbull.io",
|
|
18
|
+
"port": "8085",
|
|
19
|
+
"type": "REST"
|
|
20
|
+
},
|
|
21
|
+
"PLATFORM": {
|
|
22
|
+
"protocol": "https",
|
|
23
|
+
"host": "alfa-api.siera.tech",
|
|
24
|
+
"path": "",
|
|
25
|
+
"port": "8080",
|
|
26
|
+
"type": "REST"
|
|
27
|
+
},
|
|
28
|
+
"SOCKET": {
|
|
29
|
+
"protocol": "https",
|
|
30
|
+
"host": "lemon-wl-5.sobix.io",
|
|
31
|
+
"path": "/feed/socket.io/",
|
|
32
|
+
"port": "",
|
|
33
|
+
"type": "SOCKET"
|
|
34
|
+
},
|
|
35
|
+
"FILES": {
|
|
36
|
+
"protocol": "https",
|
|
37
|
+
"host": "files.bearbull.io",
|
|
38
|
+
"port": "8082",
|
|
39
|
+
"type": "REST"
|
|
40
|
+
},
|
|
41
|
+
"TICKETS": {
|
|
42
|
+
"protocol": "https",
|
|
43
|
+
"host": "communication.bearbull.io",
|
|
44
|
+
"port": "8082"
|
|
45
|
+
}
|
|
46
|
+
}
|
|
47
|
+
}
|
|
48
|
+
</script>
|
|
49
|
+
<style>
|
|
50
|
+
:root {
|
|
51
|
+
--color-prime: #ff3a4c;
|
|
52
|
+
--prime: #2060ff;
|
|
53
|
+
--color-second-prime: #f63a4c;
|
|
54
|
+
--color-contrast: #20232a;
|
|
55
|
+
--color-second-contrast: #2a2d34;
|
|
56
|
+
--color-default: #ffffff;
|
|
57
|
+
--color-second-default: #e1e1e1;
|
|
58
|
+
--color-lighten-default: #e1e1e1;
|
|
59
|
+
--app-background: #f2f2f2;
|
|
60
|
+
--app-background-box: #f2f2f2;
|
|
61
|
+
--app-border: #2a2d34;
|
|
62
|
+
--app-color: #2a2d34;
|
|
63
|
+
--app-text: #f2f2f2;
|
|
64
|
+
}
|
|
65
|
+
body{
|
|
66
|
+
background-color: #ffffff;
|
|
67
|
+
transition: all 0.2s ease-in-out;
|
|
68
|
+
font-family: 'Avenir', Helvetica, Arial, sans-serif;
|
|
69
|
+
-webkit-font-smoothing: antialiased;
|
|
70
|
+
-moz-osx-font-smoothing: grayscale;
|
|
71
|
+
padding: 0;
|
|
72
|
+
margin: 0;
|
|
73
|
+
overflow: hidden!important;
|
|
74
|
+
height: 100vh;
|
|
75
|
+
width: 100vw;
|
|
76
|
+
}
|
|
77
|
+
|
|
78
|
+
</style>
|
|
79
|
+
</head>
|
|
80
|
+
<body>
|
|
81
|
+
<div id="root">
|
|
82
|
+
|
|
83
|
+
</div>
|
|
84
|
+
<script defer src="./bundle.js"></script></body>
|
|
85
|
+
</html>
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "sbx-react-stock-chart",
|
|
3
|
-
"version": "3.5.
|
|
3
|
+
"version": "3.5.29",
|
|
4
4
|
"main": "dist/bundle.js",
|
|
5
5
|
"author": "Victor Fisher",
|
|
6
6
|
"description": "",
|
|
@@ -8,63 +8,44 @@
|
|
|
8
8
|
"dist"
|
|
9
9
|
],
|
|
10
10
|
"scripts": {
|
|
11
|
-
"
|
|
12
|
-
"
|
|
13
|
-
"
|
|
14
|
-
"
|
|
15
|
-
"build": "npm run build_package && npm run build_app"
|
|
11
|
+
"dev": "rspack serve --mode development --port 3002",
|
|
12
|
+
"build": "rspack build --mode production",
|
|
13
|
+
"build_package": "BUILD_TYPE=package rspack build --mode production && rm ./dist/bundle.js.LICENSE.txt",
|
|
14
|
+
"build_app": "BUILD_TYPE=app rspack build --mode production"
|
|
16
15
|
},
|
|
17
16
|
"devDependencies": {
|
|
18
|
-
"@babel/core": "^7.
|
|
19
|
-
"@babel/plugin-proposal-class-properties": "^7.
|
|
20
|
-
"@babel/plugin-proposal-decorators": "^7.
|
|
21
|
-
"@babel/plugin-proposal-
|
|
22
|
-
"@babel/
|
|
23
|
-
"@babel/preset-
|
|
24
|
-
"@babel/preset-react": "^7.
|
|
25
|
-
"@
|
|
26
|
-
"
|
|
27
|
-
"
|
|
28
|
-
"
|
|
29
|
-
"
|
|
30
|
-
"
|
|
31
|
-
"
|
|
32
|
-
"
|
|
33
|
-
"
|
|
34
|
-
"
|
|
35
|
-
"
|
|
36
|
-
"clean-webpack-plugin": "^3.0.0",
|
|
37
|
-
"css-loader": "^2.1.1",
|
|
38
|
-
"event-emitter": "^0.3.5",
|
|
39
|
-
"favicons-webpack-plugin": "0.0.9",
|
|
40
|
-
"file-loader": "^4.0.0",
|
|
41
|
-
"html-webpack-plugin": "^3.2.0",
|
|
42
|
-
"image-webpack-loader": "^5.0.0",
|
|
43
|
-
"lodash-webpack-plugin": "^0.11.6",
|
|
44
|
-
"node-sass": "^4.12.0",
|
|
45
|
-
"postcss-loader": "^3.0.0",
|
|
46
|
-
"sass-loader": "^7.1.0",
|
|
47
|
-
"sbx-react-dropdown": "^0.3.6",
|
|
48
|
-
"socket.io-client": "^2.3.0",
|
|
49
|
-
"style-loader": "^0.23.1",
|
|
50
|
-
"terser-webpack-plugin": "^4.2.2",
|
|
51
|
-
"url-loader": "^4.1.0",
|
|
52
|
-
"webpack": "^4.46.0",
|
|
53
|
-
"webpack-bundle-analyzer": "^4.5.0",
|
|
54
|
-
"webpack-cli": "^3.3.2",
|
|
55
|
-
"webpack-dev-server": "^3.5.1"
|
|
17
|
+
"@babel/core": "^7.23.6",
|
|
18
|
+
"@babel/plugin-proposal-class-properties": "^7.18.6",
|
|
19
|
+
"@babel/plugin-proposal-decorators": "^7.23.3",
|
|
20
|
+
"@babel/plugin-proposal-nullish-coalescing-operator": "^7.18.6",
|
|
21
|
+
"@babel/plugin-proposal-optional-chaining": "^7.21.0",
|
|
22
|
+
"@babel/preset-env": "^7.23.6",
|
|
23
|
+
"@babel/preset-react": "^7.23.3",
|
|
24
|
+
"@rspack/cli": "^1.6.4",
|
|
25
|
+
"@rspack/core": "^1.6.4",
|
|
26
|
+
"@rspack/dev-server": "^1.1.4",
|
|
27
|
+
"@svgr/webpack": "^8.1.0",
|
|
28
|
+
"autoprefixer": "^10.4.18",
|
|
29
|
+
"css-loader": "^6.8.1",
|
|
30
|
+
"postcss-loader": "^7.3.3",
|
|
31
|
+
"raw-loader": "^4.0.2",
|
|
32
|
+
"sass": "^1.71.0",
|
|
33
|
+
"sass-loader": "^13.3.2",
|
|
34
|
+
"style-loader": "^3.3.3"
|
|
56
35
|
},
|
|
57
36
|
"dependencies": {
|
|
58
|
-
"async": "^
|
|
59
|
-
"
|
|
60
|
-
"
|
|
61
|
-
"
|
|
62
|
-
"
|
|
63
|
-
"
|
|
37
|
+
"async": "^3.2.6",
|
|
38
|
+
"axios": "^1.13.2",
|
|
39
|
+
"classnames": "^2.5.1",
|
|
40
|
+
"html-rspack-plugin": "^6.1.4",
|
|
41
|
+
"html-webpack-plugin": "^5.6.5",
|
|
42
|
+
"lodash": "^4.17.21",
|
|
43
|
+
"react": "^16.14.0",
|
|
44
|
+
"react-dom": "^16.14.0",
|
|
45
|
+
"react-transition-group": "^2.9.0",
|
|
64
46
|
"sbx-react-colorfull": "2.1.0",
|
|
65
|
-
"sbx-react-dropdown": "^0.3.8",
|
|
66
47
|
"sbx-react-resize-detect": "^0.0.3",
|
|
67
|
-
"sbx-react-
|
|
68
|
-
"underscore": "^1.
|
|
48
|
+
"sbx-react-sensor": "^1.0.0",
|
|
49
|
+
"underscore": "^1.13.6"
|
|
69
50
|
}
|
|
70
51
|
}
|
package/dist/bundle.js.LICENSE
DELETED
|
@@ -1,92 +0,0 @@
|
|
|
1
|
-
/*!
|
|
2
|
-
* The buffer module from node.js, for the browser.
|
|
3
|
-
*
|
|
4
|
-
* @author Feross Aboukhadijeh <http://feross.org>
|
|
5
|
-
* @license MIT
|
|
6
|
-
*/
|
|
7
|
-
|
|
8
|
-
/*!
|
|
9
|
-
Copyright (c) 2017 Jed Watson.
|
|
10
|
-
Licensed under the MIT License (MIT), see
|
|
11
|
-
http://jedwatson.github.io/classnames
|
|
12
|
-
*/
|
|
13
|
-
|
|
14
|
-
/**
|
|
15
|
-
* @file Main export of the PIXI core library
|
|
16
|
-
* @author Mat Groves <mat@goodboydigital.com>
|
|
17
|
-
* @copyright 2013-2015 GoodBoyDigital
|
|
18
|
-
* @license {@link https://github.com/pixijs/pixi.js/blob/master/LICENSE|MIT License}
|
|
19
|
-
*/
|
|
20
|
-
|
|
21
|
-
/*
|
|
22
|
-
object-assign
|
|
23
|
-
(c) Sindre Sorhus
|
|
24
|
-
@license MIT
|
|
25
|
-
*/
|
|
26
|
-
|
|
27
|
-
//!updateTransform;
|
|
28
|
-
|
|
29
|
-
/**
|
|
30
|
-
* @license
|
|
31
|
-
* Lodash <https://lodash.com/>
|
|
32
|
-
* Copyright OpenJS Foundation and other contributors <https://openjsf.org/>
|
|
33
|
-
* Released under MIT license <https://lodash.com/license>
|
|
34
|
-
* Based on Underscore.js 1.8.3 <http://underscorejs.org/LICENSE>
|
|
35
|
-
* Copyright Jeremy Ashkenas, DocumentCloud and Investigative Reporters & Editors
|
|
36
|
-
*/
|
|
37
|
-
|
|
38
|
-
/*!
|
|
39
|
-
* async
|
|
40
|
-
* https://github.com/caolan/async
|
|
41
|
-
*
|
|
42
|
-
* Copyright 2010-2014 Caolan McMahon
|
|
43
|
-
* Released under the MIT license
|
|
44
|
-
*/
|
|
45
|
-
|
|
46
|
-
/**
|
|
47
|
-
* @file Main export of the PIXI extras library
|
|
48
|
-
* @author Mat Groves <mat@goodboydigital.com>
|
|
49
|
-
* @copyright 2013-2015 GoodBoyDigital
|
|
50
|
-
* @license {@link https://github.com/pixijs/pixi.js/blob/master/LICENSE|MIT License}
|
|
51
|
-
*/
|
|
52
|
-
|
|
53
|
-
/** @license React v16.8.6
|
|
54
|
-
* react.production.min.js
|
|
55
|
-
*
|
|
56
|
-
* Copyright (c) Facebook, Inc. and its affiliates.
|
|
57
|
-
*
|
|
58
|
-
* This source code is licensed under the MIT license found in the
|
|
59
|
-
* LICENSE file in the root directory of this source tree.
|
|
60
|
-
*/
|
|
61
|
-
|
|
62
|
-
/**
|
|
63
|
-
* @file Main export of the PIXI interactions library
|
|
64
|
-
* @author Mat Groves <mat@goodboydigital.com>
|
|
65
|
-
* @copyright 2013-2015 GoodBoyDigital
|
|
66
|
-
* @license {@link https://github.com/pixijs/pixi.js/blob/master/LICENSE|MIT License}
|
|
67
|
-
*/
|
|
68
|
-
|
|
69
|
-
/**
|
|
70
|
-
* @file Main export of the PIXI accessibility library
|
|
71
|
-
* @author Mat Groves <mat@goodboydigital.com>
|
|
72
|
-
* @copyright 2013-2015 GoodBoyDigital
|
|
73
|
-
* @license {@link https://github.com/pixijs/pixi.js/blob/master/LICENSE|MIT License}
|
|
74
|
-
*/
|
|
75
|
-
|
|
76
|
-
/** @license React v16.10.1
|
|
77
|
-
* react-dom.production.min.js
|
|
78
|
-
*
|
|
79
|
-
* Copyright (c) Facebook, Inc. and its affiliates.
|
|
80
|
-
*
|
|
81
|
-
* This source code is licensed under the MIT license found in the
|
|
82
|
-
* LICENSE file in the root directory of this source tree.
|
|
83
|
-
*/
|
|
84
|
-
|
|
85
|
-
/** @license React v0.16.1
|
|
86
|
-
* scheduler.production.min.js
|
|
87
|
-
*
|
|
88
|
-
* Copyright (c) Facebook, Inc. and its affiliates.
|
|
89
|
-
*
|
|
90
|
-
* This source code is licensed under the MIT license found in the
|
|
91
|
-
* LICENSE file in the root directory of this source tree.
|
|
92
|
-
*/
|