mirror of
https://github.com/chrisnov-it/quantumbotx.git
synced 2026-07-29 11:47:48 +00:00
aa984c4909
- Update `.gitignore` to include `lab/` for backtesting and raw data. - Refactor `app.py` to improve error handling and logging. - Remove deprecated files: `core/bot_logic.py`, `core/bots/base_bot.py`, `core/bots/manager.py`, `core/db/database.py`, `core/routes/api_analysis.py`, `core/routes/api_bots_analysis.py`, `core/strategies/logic_ma.py`, `core/strategies/logic_rsi.py`. - Modify multiple files to enhance bot management, routing, and strategy handling. - Update JavaScript and HTML templates for better UI and functionality.
28 lines
1.5 KiB
JavaScript
28 lines
1.5 KiB
JavaScript
export const length = [
|
|
// absolute length units https://www.w3.org/TR/css-values-3/#lengths
|
|
'cm', 'mm', 'q', 'in', 'pt', 'pc', 'px',
|
|
// font-relative length units https://drafts.csswg.org/css-values-4/#font-relative-lengths
|
|
'em', 'rem',
|
|
'ex', 'rex',
|
|
'cap', 'rcap',
|
|
'ch', 'rch',
|
|
'ic', 'ric',
|
|
'lh', 'rlh',
|
|
// viewport-percentage lengths https://drafts.csswg.org/css-values-4/#viewport-relative-lengths
|
|
'vw', 'svw', 'lvw', 'dvw',
|
|
'vh', 'svh', 'lvh', 'dvh',
|
|
'vi', 'svi', 'lvi', 'dvi',
|
|
'vb', 'svb', 'lvb', 'dvb',
|
|
'vmin', 'svmin', 'lvmin', 'dvmin',
|
|
'vmax', 'svmax', 'lvmax', 'dvmax',
|
|
// container relative lengths https://drafts.csswg.org/css-contain-3/#container-lengths
|
|
'cqw', 'cqh', 'cqi', 'cqb', 'cqmin', 'cqmax'
|
|
];
|
|
export const angle = ['deg', 'grad', 'rad', 'turn']; // https://www.w3.org/TR/css-values-3/#angles
|
|
export const time = ['s', 'ms']; // https://www.w3.org/TR/css-values-3/#time
|
|
export const frequency = ['hz', 'khz']; // https://www.w3.org/TR/css-values-3/#frequency
|
|
export const resolution = ['dpi', 'dpcm', 'dppx', 'x']; // https://www.w3.org/TR/css-values-3/#resolution
|
|
export const flex = ['fr']; // https://drafts.csswg.org/css-grid/#fr-unit
|
|
export const decibel = ['db']; // https://www.w3.org/TR/css3-speech/#mixing-props-voice-volume
|
|
export const semitones = ['st']; // https://www.w3.org/TR/css3-speech/#voice-props-voice-pitch
|