Skip to content

Commit 86363ae

Browse files
Meenu/[QUILL-1777] bottom tab draft (#661)
* chore: implemented quill in bottom tabs * chore: undo render.js changes * chore: add event triggers * fix: initial object data * fix: added localize in tabs * fix: removed object key mapping * fix: added parse for localized * fix: removed invisible class for image * fix: fixed eslint errors * fix: added escape character for using double quotes * fix: moved localize to data file * chore: fix translation issues * fix: removed backslash and added localize fot titles under explain * fix: removed extra spaces * fix: add eslint comment for unused var * fix: test issues * fix: fixed conflicts * fix: fixed conflict * fix: tab change reload chart * chore: refactor handling selected contract * fix: added selected tab in session storage and refactored code * fix: added market change for explanation * chore: variable improvement --------- Co-authored-by: prince-deriv <[email protected]>
1 parent 76462d1 commit 86363ae

34 files changed

+906
-80
lines changed

build/cssmin.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,13 +6,13 @@ module.exports = {
66
files: [
77
{
88
src: [
9-
`${global.node_modules_paths.quill}/dist/assets/style.css`,
109
`${global.dist}/css/common.css`,
1110
`${global.node_modules_paths.binary_style}/binary.css`,
1211
`${global.node_modules_paths.binary_style}/binary.more.css`,
1312
],
1413
dest: `${global.dist}/css/common.min.css`,
1514
},
15+
{ src: `${global.dist}/css/reset.css`, dest: `${global.dist}/css/reset.min.css` },
1616
{ src: `${global.dist}/css/app.css`, dest: `${global.dist}/css/app.min.css` },
1717
{ src: `${global.dist}/css/static.css`, dest: `${global.dist}/css/static.min.css` },
1818
],

build/postcss.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ module.exports = function (grunt) {
1212
],
1313
},
1414
dist: {
15-
src: `${global.dist}/css/{app,common,static}.css`,
15+
src: `${global.dist}/css/{app,common,static,reset}.css`,
1616
},
1717
};
1818
};

package-lock.json

+74-5
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

+1
Original file line numberDiff line numberDiff line change
@@ -115,6 +115,7 @@
115115
"davidshimjs-qrcodejs": "0.0.2",
116116
"event-source-polyfill": "0.0.9",
117117
"highstock-release": "5.0.14",
118+
"html-react-parser": "^5.1.10",
118119
"jquery": "3.5.1",
119120
"jquery.scrollto": "2.1.2",
120121
"js-cookie": "2.2.0",

scripts/common.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ exports.sections_config = {
2121
'': { // '' is the default section when no 'section' specified in pages.js (to avoid adding 'app' as section for all)
2222
path : '',
2323
js_files : ['vendor', 'binary'],
24-
css_files: ['common.min', 'app.min', 'static.min'],
24+
css_files: ['common.min', 'app.min', 'static.min','reset.min'],
2525
has_pjax : true,
2626
},
2727
};

0 commit comments

Comments
 (0)