├── .editorconfig ├── .eslintignore ├── .eslintrc ├── .github ├── ISSUE_TEMPLATE.md └── PULL_REQUEST_TEMPLATE.md ├── .gitignore ├── .npmignore ├── .travis.yml ├── CHANGELOG.md ├── CONTRIBUTING.md ├── CONTRIBUTING.zh-CN.md ├── LICENSE ├── README.md ├── examples └── test │ ├── .mini-ide │ └── project-ide.json │ ├── app.acss │ ├── app.js │ ├── app.json │ ├── mini.project.json │ ├── package.json │ ├── pages │ └── index │ │ ├── index.acss │ │ ├── index.axml │ │ ├── index.js │ │ └── index.json │ └── snapshot.png ├── package.json ├── rollup.config.js ├── scripts └── cp.js └── src ├── index.acss ├── index.axml ├── index.js └── index.json /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antvis/my-f2/HEAD/.editorconfig -------------------------------------------------------------------------------- /.eslintignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antvis/my-f2/HEAD/.eslintignore -------------------------------------------------------------------------------- /.eslintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antvis/my-f2/HEAD/.eslintrc -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antvis/my-f2/HEAD/.github/ISSUE_TEMPLATE.md -------------------------------------------------------------------------------- /.github/PULL_REQUEST_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antvis/my-f2/HEAD/.github/PULL_REQUEST_TEMPLATE.md -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antvis/my-f2/HEAD/.gitignore -------------------------------------------------------------------------------- /.npmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antvis/my-f2/HEAD/.npmignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antvis/my-f2/HEAD/.travis.yml -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antvis/my-f2/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antvis/my-f2/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /CONTRIBUTING.zh-CN.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antvis/my-f2/HEAD/CONTRIBUTING.zh-CN.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antvis/my-f2/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antvis/my-f2/HEAD/README.md -------------------------------------------------------------------------------- /examples/test/.mini-ide/project-ide.json: -------------------------------------------------------------------------------- 1 | { 2 | "enableLegacyRemoteDebug": false 3 | } -------------------------------------------------------------------------------- /examples/test/app.acss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antvis/my-f2/HEAD/examples/test/app.acss -------------------------------------------------------------------------------- /examples/test/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antvis/my-f2/HEAD/examples/test/app.js -------------------------------------------------------------------------------- /examples/test/app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antvis/my-f2/HEAD/examples/test/app.json -------------------------------------------------------------------------------- /examples/test/mini.project.json: -------------------------------------------------------------------------------- 1 | { 2 | "enableAppxNg": true 3 | } -------------------------------------------------------------------------------- /examples/test/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antvis/my-f2/HEAD/examples/test/package.json -------------------------------------------------------------------------------- /examples/test/pages/index/index.acss: -------------------------------------------------------------------------------- 1 | .f2-chart { 2 | width: 100%; 3 | height: 500rpx; 4 | } -------------------------------------------------------------------------------- /examples/test/pages/index/index.axml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antvis/my-f2/HEAD/examples/test/pages/index/index.axml -------------------------------------------------------------------------------- /examples/test/pages/index/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antvis/my-f2/HEAD/examples/test/pages/index/index.js -------------------------------------------------------------------------------- /examples/test/pages/index/index.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antvis/my-f2/HEAD/examples/test/pages/index/index.json -------------------------------------------------------------------------------- /examples/test/snapshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antvis/my-f2/HEAD/examples/test/snapshot.png -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antvis/my-f2/HEAD/package.json -------------------------------------------------------------------------------- /rollup.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antvis/my-f2/HEAD/rollup.config.js -------------------------------------------------------------------------------- /scripts/cp.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antvis/my-f2/HEAD/scripts/cp.js -------------------------------------------------------------------------------- /src/index.acss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antvis/my-f2/HEAD/src/index.acss -------------------------------------------------------------------------------- /src/index.axml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antvis/my-f2/HEAD/src/index.axml -------------------------------------------------------------------------------- /src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antvis/my-f2/HEAD/src/index.js -------------------------------------------------------------------------------- /src/index.json: -------------------------------------------------------------------------------- 1 | { 2 | "component": true 3 | } --------------------------------------------------------------------------------