├── .gitignore ├── .npmrc ├── README.md ├── config └── config.ts ├── docment.html ├── package.json ├── pnpm-lock.yaml ├── site ├── Guide.css ├── Guide.html ├── Guide.js ├── Json2ProTable.css ├── Json2ProTable.html ├── Json2ProTable.js ├── Json2Ts.css ├── Json2Ts.html ├── Json2Ts.js ├── index.html └── index.js ├── src ├── assets │ └── yay.jpg ├── components │ └── LayoutRoot │ │ ├── index.less │ │ └── index.tsx ├── hooks │ └── useScale.ts └── pages │ ├── Guide │ ├── index.less │ └── index.tsx │ ├── Json2ProTable │ ├── JsonView │ │ └── index.tsx │ ├── PageContext.tsx │ ├── ProTableView │ │ └── index.tsx │ ├── config.json │ ├── index.less │ └── index.tsx │ ├── Json2Ts │ ├── JsonView │ │ └── index.tsx │ ├── PageContext.tsx │ ├── TypeView │ │ └── index.tsx │ ├── config.json │ ├── index.less │ └── index.tsx │ └── index │ └── index.tsx ├── tailwind.config.js ├── tailwind.css ├── tsconfig.json └── typings.d.ts /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NelsonYong/code-producer/HEAD/.gitignore -------------------------------------------------------------------------------- /.npmrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NelsonYong/code-producer/HEAD/.npmrc -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NelsonYong/code-producer/HEAD/README.md -------------------------------------------------------------------------------- /config/config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NelsonYong/code-producer/HEAD/config/config.ts -------------------------------------------------------------------------------- /docment.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NelsonYong/code-producer/HEAD/docment.html -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NelsonYong/code-producer/HEAD/package.json -------------------------------------------------------------------------------- /pnpm-lock.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NelsonYong/code-producer/HEAD/pnpm-lock.yaml -------------------------------------------------------------------------------- /site/Guide.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NelsonYong/code-producer/HEAD/site/Guide.css -------------------------------------------------------------------------------- /site/Guide.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NelsonYong/code-producer/HEAD/site/Guide.html -------------------------------------------------------------------------------- /site/Guide.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NelsonYong/code-producer/HEAD/site/Guide.js -------------------------------------------------------------------------------- /site/Json2ProTable.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NelsonYong/code-producer/HEAD/site/Json2ProTable.css -------------------------------------------------------------------------------- /site/Json2ProTable.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NelsonYong/code-producer/HEAD/site/Json2ProTable.html -------------------------------------------------------------------------------- /site/Json2ProTable.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NelsonYong/code-producer/HEAD/site/Json2ProTable.js -------------------------------------------------------------------------------- /site/Json2Ts.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NelsonYong/code-producer/HEAD/site/Json2Ts.css -------------------------------------------------------------------------------- /site/Json2Ts.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NelsonYong/code-producer/HEAD/site/Json2Ts.html -------------------------------------------------------------------------------- /site/Json2Ts.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NelsonYong/code-producer/HEAD/site/Json2Ts.js -------------------------------------------------------------------------------- /site/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NelsonYong/code-producer/HEAD/site/index.html -------------------------------------------------------------------------------- /site/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NelsonYong/code-producer/HEAD/site/index.js -------------------------------------------------------------------------------- /src/assets/yay.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NelsonYong/code-producer/HEAD/src/assets/yay.jpg -------------------------------------------------------------------------------- /src/components/LayoutRoot/index.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NelsonYong/code-producer/HEAD/src/components/LayoutRoot/index.less -------------------------------------------------------------------------------- /src/components/LayoutRoot/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NelsonYong/code-producer/HEAD/src/components/LayoutRoot/index.tsx -------------------------------------------------------------------------------- /src/hooks/useScale.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NelsonYong/code-producer/HEAD/src/hooks/useScale.ts -------------------------------------------------------------------------------- /src/pages/Guide/index.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NelsonYong/code-producer/HEAD/src/pages/Guide/index.less -------------------------------------------------------------------------------- /src/pages/Guide/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NelsonYong/code-producer/HEAD/src/pages/Guide/index.tsx -------------------------------------------------------------------------------- /src/pages/Json2ProTable/JsonView/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NelsonYong/code-producer/HEAD/src/pages/Json2ProTable/JsonView/index.tsx -------------------------------------------------------------------------------- /src/pages/Json2ProTable/PageContext.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NelsonYong/code-producer/HEAD/src/pages/Json2ProTable/PageContext.tsx -------------------------------------------------------------------------------- /src/pages/Json2ProTable/ProTableView/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NelsonYong/code-producer/HEAD/src/pages/Json2ProTable/ProTableView/index.tsx -------------------------------------------------------------------------------- /src/pages/Json2ProTable/config.json: -------------------------------------------------------------------------------- 1 | { 2 | "title": "Json2ProTable" 3 | } 4 | -------------------------------------------------------------------------------- /src/pages/Json2ProTable/index.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NelsonYong/code-producer/HEAD/src/pages/Json2ProTable/index.less -------------------------------------------------------------------------------- /src/pages/Json2ProTable/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NelsonYong/code-producer/HEAD/src/pages/Json2ProTable/index.tsx -------------------------------------------------------------------------------- /src/pages/Json2Ts/JsonView/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NelsonYong/code-producer/HEAD/src/pages/Json2Ts/JsonView/index.tsx -------------------------------------------------------------------------------- /src/pages/Json2Ts/PageContext.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NelsonYong/code-producer/HEAD/src/pages/Json2Ts/PageContext.tsx -------------------------------------------------------------------------------- /src/pages/Json2Ts/TypeView/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NelsonYong/code-producer/HEAD/src/pages/Json2Ts/TypeView/index.tsx -------------------------------------------------------------------------------- /src/pages/Json2Ts/config.json: -------------------------------------------------------------------------------- 1 | { 2 | "title": "Json2Ts" 3 | } 4 | -------------------------------------------------------------------------------- /src/pages/Json2Ts/index.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NelsonYong/code-producer/HEAD/src/pages/Json2Ts/index.less -------------------------------------------------------------------------------- /src/pages/Json2Ts/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NelsonYong/code-producer/HEAD/src/pages/Json2Ts/index.tsx -------------------------------------------------------------------------------- /src/pages/index/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NelsonYong/code-producer/HEAD/src/pages/index/index.tsx -------------------------------------------------------------------------------- /tailwind.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NelsonYong/code-producer/HEAD/tailwind.config.js -------------------------------------------------------------------------------- /tailwind.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NelsonYong/code-producer/HEAD/tailwind.css -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- 1 | { 2 | "extends": "./src/.umi/tsconfig.json" 3 | } 4 | -------------------------------------------------------------------------------- /typings.d.ts: -------------------------------------------------------------------------------- 1 | import 'umi/typings'; 2 | --------------------------------------------------------------------------------