├── .cz-config.js ├── .editorconfig ├── .eslintignore ├── .eslintrc.js ├── .gitignore ├── .husky ├── commit-msg └── pre-commit ├── .prettierrc ├── LICENSE ├── README.md ├── commitlint.config.js ├── favicon.svg ├── index.html ├── package.json ├── pnpm-lock.yaml ├── src ├── components │ ├── GenerateCodeModal.tsx │ ├── GenerateJsonModal.tsx │ ├── Icon.tsx │ ├── MonacoEditor.tsx │ ├── PreviewModal.tsx │ ├── SvgIcon.tsx │ └── UploadModal.tsx ├── config │ ├── AlertConfig.tsx │ ├── AutoCompleteConfig.tsx │ ├── ButtonConfig.tsx │ ├── CalendarConfig.tsx │ ├── CascaderConfig.tsx │ ├── CheckboxConfig.tsx │ ├── CheckboxGroupConfig.tsx │ ├── ColConfig.tsx │ ├── DatePickerConfig.tsx │ ├── DividerConfig.tsx │ ├── FormItemLayoutConfig.tsx │ ├── IconConfig.tsx │ ├── ImageConfig.tsx │ ├── InputConfig.tsx │ ├── InputNumberConfig.tsx │ ├── LayoutConfig.tsx │ ├── MentionsConfig.tsx │ ├── OptionSourceTypeConfig.tsx │ ├── ParagraphConfig.tsx │ ├── PasswordConfig.tsx │ ├── RadioGroupConfig.tsx │ ├── RangePickerConfig.tsx │ ├── RateConfig.tsx │ ├── RowConfig.tsx │ ├── SearchConfig.tsx │ ├── SelectConfig.tsx │ ├── SiderConfig.tsx │ ├── SliderConfig.tsx │ ├── SpaceConfig.tsx │ ├── SwitchConfig.tsx │ ├── TableConfig.tsx │ ├── TextAreaConfig.tsx │ ├── TextConfig.tsx │ ├── TimePickerConfig.tsx │ ├── TitleConfig.tsx │ ├── TreeConfig.tsx │ ├── TreeSelectConfig.tsx │ ├── UploadConfig.tsx │ ├── ValidateRuleConfig.tsx │ └── index.ts ├── core │ ├── ComponentsGroup.tsx │ ├── DesignForm.tsx │ ├── GenerateForm.tsx │ ├── GenerateFormItem.tsx │ ├── GlobalConfig.tsx │ ├── Header.tsx │ ├── WidgetConfig.tsx │ ├── WidgetForm.tsx │ ├── WidgetFormItem.tsx │ └── index.ts ├── example │ ├── assets │ │ ├── favicon.17e50649.svg │ │ ├── index.23b5abfa.js │ │ ├── index.a99868fe.css │ │ └── vendor.d1a493fe.js │ └── index.html ├── hooks │ └── index.ts ├── icons │ ├── Alert.svg │ ├── AutoComplete.svg │ ├── Button.svg │ ├── Calendar.svg │ ├── Cascader.svg │ ├── Checkbox.svg │ ├── CheckboxGroup.svg │ ├── Col.svg │ ├── Copy.svg │ ├── DatePicker.svg │ ├── Delete.svg │ ├── Divider.svg │ ├── GenerateCode.svg │ ├── GenerateJson.svg │ ├── Grid.svg │ ├── Icon.svg │ ├── Image.svg │ ├── Input.svg │ ├── InputNumber.svg │ ├── Item.svg │ ├── Mentions.svg │ ├── Move.svg │ ├── Paragraph.svg │ ├── Password.svg │ ├── Preview.svg │ ├── RadioGroup.svg │ ├── RangePicker.svg │ ├── Rate.svg │ ├── Row.svg │ ├── Search.svg │ ├── Select.svg │ ├── Slider.svg │ ├── Space.svg │ ├── Switch.svg │ ├── Table.svg │ ├── Text.svg │ ├── TextArea.svg │ ├── TimePicker.svg │ ├── Title.svg │ ├── Tree.svg │ ├── TreeSelect.svg │ ├── Typography.svg │ ├── Upload.svg │ └── index.ts ├── index.tsx ├── locale │ └── index.ts ├── store │ ├── action.ts │ ├── index.ts │ └── state.ts ├── styles │ ├── antd.less │ ├── index.less │ └── scrollbar.less ├── types │ ├── index.d.ts │ └── types.d.ts ├── utils │ ├── generateCode.ts │ ├── index.ts │ └── options.tsx └── vite-env.d.ts ├── stylelint.config.js ├── tsconfig.json └── vite.config.ts /.cz-config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuchengwei/react-form-create-base/HEAD/.cz-config.js -------------------------------------------------------------------------------- /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuchengwei/react-form-create-base/HEAD/.editorconfig -------------------------------------------------------------------------------- /.eslintignore: -------------------------------------------------------------------------------- 1 | example -------------------------------------------------------------------------------- /.eslintrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuchengwei/react-form-create-base/HEAD/.eslintrc.js -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuchengwei/react-form-create-base/HEAD/.gitignore -------------------------------------------------------------------------------- /.husky/commit-msg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuchengwei/react-form-create-base/HEAD/.husky/commit-msg -------------------------------------------------------------------------------- /.husky/pre-commit: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | . "$(dirname "$0")/_/husky.sh" 3 | 4 | npx lint-staged 5 | 6 | -------------------------------------------------------------------------------- /.prettierrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuchengwei/react-form-create-base/HEAD/.prettierrc -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuchengwei/react-form-create-base/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuchengwei/react-form-create-base/HEAD/README.md -------------------------------------------------------------------------------- /commitlint.config.js: -------------------------------------------------------------------------------- 1 | module.exports = { 2 | extends: ['@commitlint/config-conventional'] 3 | } 4 | -------------------------------------------------------------------------------- /favicon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuchengwei/react-form-create-base/HEAD/favicon.svg -------------------------------------------------------------------------------- /index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuchengwei/react-form-create-base/HEAD/index.html -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuchengwei/react-form-create-base/HEAD/package.json -------------------------------------------------------------------------------- /pnpm-lock.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuchengwei/react-form-create-base/HEAD/pnpm-lock.yaml -------------------------------------------------------------------------------- /src/components/GenerateCodeModal.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuchengwei/react-form-create-base/HEAD/src/components/GenerateCodeModal.tsx -------------------------------------------------------------------------------- /src/components/GenerateJsonModal.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuchengwei/react-form-create-base/HEAD/src/components/GenerateJsonModal.tsx -------------------------------------------------------------------------------- /src/components/Icon.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuchengwei/react-form-create-base/HEAD/src/components/Icon.tsx -------------------------------------------------------------------------------- /src/components/MonacoEditor.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuchengwei/react-form-create-base/HEAD/src/components/MonacoEditor.tsx -------------------------------------------------------------------------------- /src/components/PreviewModal.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuchengwei/react-form-create-base/HEAD/src/components/PreviewModal.tsx -------------------------------------------------------------------------------- /src/components/SvgIcon.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuchengwei/react-form-create-base/HEAD/src/components/SvgIcon.tsx -------------------------------------------------------------------------------- /src/components/UploadModal.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuchengwei/react-form-create-base/HEAD/src/components/UploadModal.tsx -------------------------------------------------------------------------------- /src/config/AlertConfig.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuchengwei/react-form-create-base/HEAD/src/config/AlertConfig.tsx -------------------------------------------------------------------------------- /src/config/AutoCompleteConfig.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuchengwei/react-form-create-base/HEAD/src/config/AutoCompleteConfig.tsx -------------------------------------------------------------------------------- /src/config/ButtonConfig.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuchengwei/react-form-create-base/HEAD/src/config/ButtonConfig.tsx -------------------------------------------------------------------------------- /src/config/CalendarConfig.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuchengwei/react-form-create-base/HEAD/src/config/CalendarConfig.tsx -------------------------------------------------------------------------------- /src/config/CascaderConfig.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuchengwei/react-form-create-base/HEAD/src/config/CascaderConfig.tsx -------------------------------------------------------------------------------- /src/config/CheckboxConfig.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuchengwei/react-form-create-base/HEAD/src/config/CheckboxConfig.tsx -------------------------------------------------------------------------------- /src/config/CheckboxGroupConfig.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuchengwei/react-form-create-base/HEAD/src/config/CheckboxGroupConfig.tsx -------------------------------------------------------------------------------- /src/config/ColConfig.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuchengwei/react-form-create-base/HEAD/src/config/ColConfig.tsx -------------------------------------------------------------------------------- /src/config/DatePickerConfig.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuchengwei/react-form-create-base/HEAD/src/config/DatePickerConfig.tsx -------------------------------------------------------------------------------- /src/config/DividerConfig.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuchengwei/react-form-create-base/HEAD/src/config/DividerConfig.tsx -------------------------------------------------------------------------------- /src/config/FormItemLayoutConfig.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuchengwei/react-form-create-base/HEAD/src/config/FormItemLayoutConfig.tsx -------------------------------------------------------------------------------- /src/config/IconConfig.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuchengwei/react-form-create-base/HEAD/src/config/IconConfig.tsx -------------------------------------------------------------------------------- /src/config/ImageConfig.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuchengwei/react-form-create-base/HEAD/src/config/ImageConfig.tsx -------------------------------------------------------------------------------- /src/config/InputConfig.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuchengwei/react-form-create-base/HEAD/src/config/InputConfig.tsx -------------------------------------------------------------------------------- /src/config/InputNumberConfig.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuchengwei/react-form-create-base/HEAD/src/config/InputNumberConfig.tsx -------------------------------------------------------------------------------- /src/config/LayoutConfig.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuchengwei/react-form-create-base/HEAD/src/config/LayoutConfig.tsx -------------------------------------------------------------------------------- /src/config/MentionsConfig.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuchengwei/react-form-create-base/HEAD/src/config/MentionsConfig.tsx -------------------------------------------------------------------------------- /src/config/OptionSourceTypeConfig.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuchengwei/react-form-create-base/HEAD/src/config/OptionSourceTypeConfig.tsx -------------------------------------------------------------------------------- /src/config/ParagraphConfig.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuchengwei/react-form-create-base/HEAD/src/config/ParagraphConfig.tsx -------------------------------------------------------------------------------- /src/config/PasswordConfig.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuchengwei/react-form-create-base/HEAD/src/config/PasswordConfig.tsx -------------------------------------------------------------------------------- /src/config/RadioGroupConfig.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuchengwei/react-form-create-base/HEAD/src/config/RadioGroupConfig.tsx -------------------------------------------------------------------------------- /src/config/RangePickerConfig.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuchengwei/react-form-create-base/HEAD/src/config/RangePickerConfig.tsx -------------------------------------------------------------------------------- /src/config/RateConfig.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuchengwei/react-form-create-base/HEAD/src/config/RateConfig.tsx -------------------------------------------------------------------------------- /src/config/RowConfig.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuchengwei/react-form-create-base/HEAD/src/config/RowConfig.tsx -------------------------------------------------------------------------------- /src/config/SearchConfig.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuchengwei/react-form-create-base/HEAD/src/config/SearchConfig.tsx -------------------------------------------------------------------------------- /src/config/SelectConfig.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuchengwei/react-form-create-base/HEAD/src/config/SelectConfig.tsx -------------------------------------------------------------------------------- /src/config/SiderConfig.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuchengwei/react-form-create-base/HEAD/src/config/SiderConfig.tsx -------------------------------------------------------------------------------- /src/config/SliderConfig.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuchengwei/react-form-create-base/HEAD/src/config/SliderConfig.tsx -------------------------------------------------------------------------------- /src/config/SpaceConfig.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuchengwei/react-form-create-base/HEAD/src/config/SpaceConfig.tsx -------------------------------------------------------------------------------- /src/config/SwitchConfig.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuchengwei/react-form-create-base/HEAD/src/config/SwitchConfig.tsx -------------------------------------------------------------------------------- /src/config/TableConfig.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuchengwei/react-form-create-base/HEAD/src/config/TableConfig.tsx -------------------------------------------------------------------------------- /src/config/TextAreaConfig.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuchengwei/react-form-create-base/HEAD/src/config/TextAreaConfig.tsx -------------------------------------------------------------------------------- /src/config/TextConfig.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuchengwei/react-form-create-base/HEAD/src/config/TextConfig.tsx -------------------------------------------------------------------------------- /src/config/TimePickerConfig.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuchengwei/react-form-create-base/HEAD/src/config/TimePickerConfig.tsx -------------------------------------------------------------------------------- /src/config/TitleConfig.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuchengwei/react-form-create-base/HEAD/src/config/TitleConfig.tsx -------------------------------------------------------------------------------- /src/config/TreeConfig.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuchengwei/react-form-create-base/HEAD/src/config/TreeConfig.tsx -------------------------------------------------------------------------------- /src/config/TreeSelectConfig.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuchengwei/react-form-create-base/HEAD/src/config/TreeSelectConfig.tsx -------------------------------------------------------------------------------- /src/config/UploadConfig.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuchengwei/react-form-create-base/HEAD/src/config/UploadConfig.tsx -------------------------------------------------------------------------------- /src/config/ValidateRuleConfig.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuchengwei/react-form-create-base/HEAD/src/config/ValidateRuleConfig.tsx -------------------------------------------------------------------------------- /src/config/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuchengwei/react-form-create-base/HEAD/src/config/index.ts -------------------------------------------------------------------------------- /src/core/ComponentsGroup.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuchengwei/react-form-create-base/HEAD/src/core/ComponentsGroup.tsx -------------------------------------------------------------------------------- /src/core/DesignForm.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuchengwei/react-form-create-base/HEAD/src/core/DesignForm.tsx -------------------------------------------------------------------------------- /src/core/GenerateForm.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuchengwei/react-form-create-base/HEAD/src/core/GenerateForm.tsx -------------------------------------------------------------------------------- /src/core/GenerateFormItem.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuchengwei/react-form-create-base/HEAD/src/core/GenerateFormItem.tsx -------------------------------------------------------------------------------- /src/core/GlobalConfig.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuchengwei/react-form-create-base/HEAD/src/core/GlobalConfig.tsx -------------------------------------------------------------------------------- /src/core/Header.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuchengwei/react-form-create-base/HEAD/src/core/Header.tsx -------------------------------------------------------------------------------- /src/core/WidgetConfig.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuchengwei/react-form-create-base/HEAD/src/core/WidgetConfig.tsx -------------------------------------------------------------------------------- /src/core/WidgetForm.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuchengwei/react-form-create-base/HEAD/src/core/WidgetForm.tsx -------------------------------------------------------------------------------- /src/core/WidgetFormItem.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuchengwei/react-form-create-base/HEAD/src/core/WidgetFormItem.tsx -------------------------------------------------------------------------------- /src/core/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuchengwei/react-form-create-base/HEAD/src/core/index.ts -------------------------------------------------------------------------------- /src/example/assets/favicon.17e50649.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuchengwei/react-form-create-base/HEAD/src/example/assets/favicon.17e50649.svg -------------------------------------------------------------------------------- /src/example/assets/index.23b5abfa.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuchengwei/react-form-create-base/HEAD/src/example/assets/index.23b5abfa.js -------------------------------------------------------------------------------- /src/example/assets/index.a99868fe.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuchengwei/react-form-create-base/HEAD/src/example/assets/index.a99868fe.css -------------------------------------------------------------------------------- /src/example/assets/vendor.d1a493fe.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuchengwei/react-form-create-base/HEAD/src/example/assets/vendor.d1a493fe.js -------------------------------------------------------------------------------- /src/example/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuchengwei/react-form-create-base/HEAD/src/example/index.html -------------------------------------------------------------------------------- /src/hooks/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuchengwei/react-form-create-base/HEAD/src/hooks/index.ts -------------------------------------------------------------------------------- /src/icons/Alert.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuchengwei/react-form-create-base/HEAD/src/icons/Alert.svg -------------------------------------------------------------------------------- /src/icons/AutoComplete.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuchengwei/react-form-create-base/HEAD/src/icons/AutoComplete.svg -------------------------------------------------------------------------------- /src/icons/Button.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuchengwei/react-form-create-base/HEAD/src/icons/Button.svg -------------------------------------------------------------------------------- /src/icons/Calendar.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuchengwei/react-form-create-base/HEAD/src/icons/Calendar.svg -------------------------------------------------------------------------------- /src/icons/Cascader.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuchengwei/react-form-create-base/HEAD/src/icons/Cascader.svg -------------------------------------------------------------------------------- /src/icons/Checkbox.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuchengwei/react-form-create-base/HEAD/src/icons/Checkbox.svg -------------------------------------------------------------------------------- /src/icons/CheckboxGroup.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuchengwei/react-form-create-base/HEAD/src/icons/CheckboxGroup.svg -------------------------------------------------------------------------------- /src/icons/Col.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuchengwei/react-form-create-base/HEAD/src/icons/Col.svg -------------------------------------------------------------------------------- /src/icons/Copy.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuchengwei/react-form-create-base/HEAD/src/icons/Copy.svg -------------------------------------------------------------------------------- /src/icons/DatePicker.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuchengwei/react-form-create-base/HEAD/src/icons/DatePicker.svg -------------------------------------------------------------------------------- /src/icons/Delete.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuchengwei/react-form-create-base/HEAD/src/icons/Delete.svg -------------------------------------------------------------------------------- /src/icons/Divider.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuchengwei/react-form-create-base/HEAD/src/icons/Divider.svg -------------------------------------------------------------------------------- /src/icons/GenerateCode.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuchengwei/react-form-create-base/HEAD/src/icons/GenerateCode.svg -------------------------------------------------------------------------------- /src/icons/GenerateJson.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuchengwei/react-form-create-base/HEAD/src/icons/GenerateJson.svg -------------------------------------------------------------------------------- /src/icons/Grid.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuchengwei/react-form-create-base/HEAD/src/icons/Grid.svg -------------------------------------------------------------------------------- /src/icons/Icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuchengwei/react-form-create-base/HEAD/src/icons/Icon.svg -------------------------------------------------------------------------------- /src/icons/Image.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuchengwei/react-form-create-base/HEAD/src/icons/Image.svg -------------------------------------------------------------------------------- /src/icons/Input.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuchengwei/react-form-create-base/HEAD/src/icons/Input.svg -------------------------------------------------------------------------------- /src/icons/InputNumber.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuchengwei/react-form-create-base/HEAD/src/icons/InputNumber.svg -------------------------------------------------------------------------------- /src/icons/Item.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuchengwei/react-form-create-base/HEAD/src/icons/Item.svg -------------------------------------------------------------------------------- /src/icons/Mentions.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuchengwei/react-form-create-base/HEAD/src/icons/Mentions.svg -------------------------------------------------------------------------------- /src/icons/Move.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuchengwei/react-form-create-base/HEAD/src/icons/Move.svg -------------------------------------------------------------------------------- /src/icons/Paragraph.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuchengwei/react-form-create-base/HEAD/src/icons/Paragraph.svg -------------------------------------------------------------------------------- /src/icons/Password.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuchengwei/react-form-create-base/HEAD/src/icons/Password.svg -------------------------------------------------------------------------------- /src/icons/Preview.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuchengwei/react-form-create-base/HEAD/src/icons/Preview.svg -------------------------------------------------------------------------------- /src/icons/RadioGroup.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuchengwei/react-form-create-base/HEAD/src/icons/RadioGroup.svg -------------------------------------------------------------------------------- /src/icons/RangePicker.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuchengwei/react-form-create-base/HEAD/src/icons/RangePicker.svg -------------------------------------------------------------------------------- /src/icons/Rate.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuchengwei/react-form-create-base/HEAD/src/icons/Rate.svg -------------------------------------------------------------------------------- /src/icons/Row.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuchengwei/react-form-create-base/HEAD/src/icons/Row.svg -------------------------------------------------------------------------------- /src/icons/Search.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuchengwei/react-form-create-base/HEAD/src/icons/Search.svg -------------------------------------------------------------------------------- /src/icons/Select.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuchengwei/react-form-create-base/HEAD/src/icons/Select.svg -------------------------------------------------------------------------------- /src/icons/Slider.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuchengwei/react-form-create-base/HEAD/src/icons/Slider.svg -------------------------------------------------------------------------------- /src/icons/Space.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuchengwei/react-form-create-base/HEAD/src/icons/Space.svg -------------------------------------------------------------------------------- /src/icons/Switch.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuchengwei/react-form-create-base/HEAD/src/icons/Switch.svg -------------------------------------------------------------------------------- /src/icons/Table.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuchengwei/react-form-create-base/HEAD/src/icons/Table.svg -------------------------------------------------------------------------------- /src/icons/Text.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuchengwei/react-form-create-base/HEAD/src/icons/Text.svg -------------------------------------------------------------------------------- /src/icons/TextArea.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuchengwei/react-form-create-base/HEAD/src/icons/TextArea.svg -------------------------------------------------------------------------------- /src/icons/TimePicker.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuchengwei/react-form-create-base/HEAD/src/icons/TimePicker.svg -------------------------------------------------------------------------------- /src/icons/Title.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuchengwei/react-form-create-base/HEAD/src/icons/Title.svg -------------------------------------------------------------------------------- /src/icons/Tree.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuchengwei/react-form-create-base/HEAD/src/icons/Tree.svg -------------------------------------------------------------------------------- /src/icons/TreeSelect.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuchengwei/react-form-create-base/HEAD/src/icons/TreeSelect.svg -------------------------------------------------------------------------------- /src/icons/Typography.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuchengwei/react-form-create-base/HEAD/src/icons/Typography.svg -------------------------------------------------------------------------------- /src/icons/Upload.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuchengwei/react-form-create-base/HEAD/src/icons/Upload.svg -------------------------------------------------------------------------------- /src/icons/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuchengwei/react-form-create-base/HEAD/src/icons/index.ts -------------------------------------------------------------------------------- /src/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuchengwei/react-form-create-base/HEAD/src/index.tsx -------------------------------------------------------------------------------- /src/locale/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuchengwei/react-form-create-base/HEAD/src/locale/index.ts -------------------------------------------------------------------------------- /src/store/action.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuchengwei/react-form-create-base/HEAD/src/store/action.ts -------------------------------------------------------------------------------- /src/store/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuchengwei/react-form-create-base/HEAD/src/store/index.ts -------------------------------------------------------------------------------- /src/store/state.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuchengwei/react-form-create-base/HEAD/src/store/state.ts -------------------------------------------------------------------------------- /src/styles/antd.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuchengwei/react-form-create-base/HEAD/src/styles/antd.less -------------------------------------------------------------------------------- /src/styles/index.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuchengwei/react-form-create-base/HEAD/src/styles/index.less -------------------------------------------------------------------------------- /src/styles/scrollbar.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuchengwei/react-form-create-base/HEAD/src/styles/scrollbar.less -------------------------------------------------------------------------------- /src/types/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuchengwei/react-form-create-base/HEAD/src/types/index.d.ts -------------------------------------------------------------------------------- /src/types/types.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuchengwei/react-form-create-base/HEAD/src/types/types.d.ts -------------------------------------------------------------------------------- /src/utils/generateCode.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuchengwei/react-form-create-base/HEAD/src/utils/generateCode.ts -------------------------------------------------------------------------------- /src/utils/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuchengwei/react-form-create-base/HEAD/src/utils/index.ts -------------------------------------------------------------------------------- /src/utils/options.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuchengwei/react-form-create-base/HEAD/src/utils/options.tsx -------------------------------------------------------------------------------- /src/vite-env.d.ts: -------------------------------------------------------------------------------- 1 | /// 2 | -------------------------------------------------------------------------------- /stylelint.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuchengwei/react-form-create-base/HEAD/stylelint.config.js -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuchengwei/react-form-create-base/HEAD/tsconfig.json -------------------------------------------------------------------------------- /vite.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuchengwei/react-form-create-base/HEAD/vite.config.ts --------------------------------------------------------------------------------