fix:优化试题内容和样式排版

This commit is contained in:
Daniel
2026-04-18 20:20:38 +08:00
parent 15e71a9231
commit 7cb9b89cb0
644 changed files with 152784 additions and 621 deletions

91
frontend/node_modules/recharts-scale/CHANGELOG 2.md generated vendored Normal file
View File

@@ -0,0 +1,91 @@
## 0.4.5 (Mar 25, 2021)
### chore
- fix: previous release
## 0.4.4 (Mar 18, 2021)
### chore
- bring up all dev deps (incl. eslint and webpack) to the latest
- move CI to Github actions
- add linting and building to ci pipeline (in addition to unit testing)
## 0.4.0 (Seq 28, 2018)
### feat
- use `decimal.js-light` to handle large number or high precision
## 0.3.2 (Aug 21, 2017)
### fix
- fix `getNiceTickValues` when the number is a scientific notation
## 0.3.1 (Jun 11, 2017)
### fix
- fix `getDigitCount` when the number is a scientific notation
## 0.3.0 (Mar 01, 2017)
### feat
- Add new ticks function `getTickValuesFixedDomain`
## 0.2.3 (Feb 28, 2017)
### fix
- Fix calculation precision of calculateStep, add Arithmetic.modulo
## 0.2.2 (Feb 28, 2017)
### fix
- Fix calculation precision of calculateStep
## 0.2.1 (July 25, 2016)
### fix
- Fix the precision of ticks for decimals
## 0.2.0 (July 25, 2016)
### feat
- Support `allowDecimals` option
## 0.1.11 (July 19, 2016)
### fix
- Tweak the strategy of calculating step of ticks
## 0.1.10 (July 07, 2016)
### deps
- update deps and fix lint error
## 0.1.9 (April 08, 2016)
### fix
- Fix ticks for interval [0, 0]
## 0.1.8 (Feb 04, 2016)
### refactor
- Refactor the export method
## 0.1.7 (Feb 04, 2016)
### chore
- Optimize npm script commands

22
frontend/node_modules/recharts-scale/LICENSE 2 generated vendored Normal file
View File

@@ -0,0 +1,22 @@
The MIT License (MIT)
Copyright (c) 2015 Sen Yang
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in all
copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.

5
frontend/node_modules/recharts-scale/README 2.md generated vendored Normal file
View File

@@ -0,0 +1,5 @@
# recharts-scale
[![Build Status](https://github.com/recharts/recharts-scale/workflows/ci/badge.svg)](https://github.com/recharts/recharts-scale/actions)
Scale of Cartesian Coordinates

92
frontend/node_modules/recharts-scale/package 2.json generated vendored Normal file
View File

@@ -0,0 +1,92 @@
{
"name": "recharts-scale",
"version": "0.4.5",
"description": "Scale of Cartesian Coordinates",
"main": "lib/index",
"module": "es6/index.js",
"jsnext:main": "es6/index",
"keywords": [
"Scale",
"Cartesian Coordinates"
],
"files": [
"*.md",
"demo",
"es6",
"lib",
"umd",
"src"
],
"scripts": {
"build": "npm run build-cjs && npm run build-es6 && rimraf umd && npm run build-umd && npm run build-min",
"build-cjs": "rimraf lib && cross-env BABEL_ENV=commonjs babel ./src -d lib",
"build-es6": "rimraf es6 && cross-env babel ./src -d es6",
"build-umd": "cross-env NODE_ENV=development BABEL_ENV=commonjs webpack --entry ./src/index.js -o umd",
"build-min": "cross-env NODE_ENV=production BABEL_ENV=commonjs webpack --entry ./src/index.js -o umd",
"test": "nyc ava --verbose",
"autofix": "eslint src test --fix",
"lint": "eslint src test"
},
"pre-commit": [
"lint"
],
"repository": {
"type": "git",
"url": "https://github.com/recharts/recharts-scale.git"
},
"author": "recharts group",
"bugs": {
"url": "https://github.com/recharts/recharts-scale/issues"
},
"homepage": "https://github.com/recharts/recharts-scale",
"dependencies": {
"decimal.js-light": "^2.4.1"
},
"devDependencies": {
"@ava/babel": "^1.0.1",
"@babel/cli": "^7.1.0",
"@babel/core": "^7.0.0",
"@babel/plugin-proposal-class-properties": "^7.0.0",
"@babel/plugin-proposal-export-default-from": "^7.0.0",
"@babel/plugin-proposal-export-namespace-from": "^7.0.0",
"@babel/polyfill": "^7.0.0",
"@babel/preset-env": "^7.0.0",
"@babel/register": "^7.0.0",
"ava": "^3.15.0",
"babel-eslint": "^10.0.0",
"babel-loader": "^8.0.0",
"cross-env": "^7.0.3",
"eslint": "^7.17.0",
"eslint-config-airbnb": "^18.2.0",
"eslint-plugin-import": "^2.14.0",
"eslint-plugin-jsx-a11y": "^6.1.1",
"eslint-plugin-react": "^7.11.1",
"esm": "^3.2.25",
"nyc": "^15.1.0",
"pre-commit": "^1.1.3",
"webpack": "^5.15.0",
"webpack-cli": "^4.3.1"
},
"ava": {
"files": [
"test/**/*.test.js"
],
"ignoredByWatcher": [
"umd/**/*"
],
"failFast": true,
"tap": true,
"require": [
"esm",
"@babel/register"
],
"babel": {
"testOptions": {
"presets": [
"@babel/preset-env"
]
}
}
},
"license": "MIT"
}