├── .babelrc ├── .dockerignore ├── .eslintignore ├── .eslintrc.js ├── .gitbook └── assets │ ├── image (1).png │ ├── image (10).png │ ├── image (11).png │ ├── image (12).png │ ├── image (13).png │ ├── image (14).png │ ├── image (15).png │ ├── image (16).png │ ├── image (17).png │ ├── image (18).png │ ├── image (2).png │ ├── image (3).png │ ├── image (4).png │ ├── image (5).png │ ├── image (6).png │ ├── image (7).png │ ├── image (8).png │ ├── image (9).png │ └── image.png ├── .github ├── FUNDING.yml └── workflows │ ├── greetings.yml │ ├── node-e2e.yml │ ├── node.js.yml │ ├── prerelease.yml │ └── release.yml ├── .gitignore ├── .npmignore ├── .prettier.json ├── .prettierrc.js ├── .vscode ├── launch.json └── settings.json ├── Dockerfile ├── LICENSE ├── README.md ├── SUMMARY.md ├── changelog.md ├── contributing.md ├── demo ├── examples │ ├── additional-props │ │ ├── form-data.json │ │ ├── index.js │ │ ├── schema.json │ │ ├── tests-schema.json │ │ └── ui-schema.json │ ├── alternatives │ │ ├── form-data.json │ │ ├── index.js │ │ ├── schema.json │ │ ├── tests-schema.json │ │ └── ui-schema.json │ ├── arrays │ │ ├── form-data.json │ │ ├── index.js │ │ ├── schema.json │ │ ├── tests-schema.json │ │ └── ui-schema.json │ ├── budget │ │ ├── form-data.json │ │ ├── index.js │ │ ├── schema.json │ │ ├── tests-schema.json │ │ └── ui-schema.json │ ├── index.js │ ├── multiple-choice │ │ ├── form-data.json │ │ ├── index.js │ │ ├── schema.json │ │ └── ui-schema.json │ ├── nested │ │ ├── form-data.json │ │ ├── index.js │ │ ├── schema.json │ │ ├── tests-schema.json │ │ └── ui-schema.json │ ├── numbers │ │ ├── form-data.json │ │ ├── index.js │ │ ├── nested │ │ │ ├── form-data.json │ │ │ ├── index.js │ │ │ ├── schema.json │ │ │ └── ui-schema.json │ │ ├── schema.json │ │ ├── tests-schema.json │ │ └── ui-schema.json │ ├── prop-dependencies │ │ ├── form-data.json │ │ ├── index.js │ │ ├── schema.json │ │ └── ui-schema.json │ ├── radio-choice │ │ ├── form-data.json │ │ ├── index.js │ │ ├── schema.json │ │ └── ui-schema.json │ ├── references │ │ ├── form-data.json │ │ ├── index.js │ │ ├── schema.json │ │ ├── tests-schema.json │ │ └── ui-schema.json │ ├── schema-dependencies │ │ ├── form-data.json │ │ ├── index.js │ │ ├── schema.json │ │ ├── tests-schema.json │ │ └── ui-schema.json │ ├── simple │ │ ├── flat │ │ │ ├── form-data.json │ │ │ ├── schema.json │ │ │ └── ui-schema.json │ │ ├── form-data.json │ │ ├── index.js │ │ ├── schema.json │ │ ├── tests-schema.json │ │ ├── ui-schema.json │ │ ├── version-2 │ │ │ ├── form-data.json │ │ │ ├── index.js │ │ │ ├── schema.json │ │ │ └── ui-schema.json │ │ └── xhr-schema.json │ ├── single │ │ ├── form-data.json │ │ ├── index.js │ │ ├── schema.json │ │ └── ui-schema.json │ ├── stepper │ │ ├── form-data.json │ │ ├── index.js │ │ ├── index.native.js │ │ ├── schema.json │ │ ├── tests-schema.json │ │ ├── ui-schema.json │ │ └── xhr-schema.json │ ├── tabs │ │ ├── form-data.json │ │ ├── index.js │ │ ├── schema.json │ │ ├── tests-schema.json │ │ └── ui-schema.json │ └── validation │ │ ├── form-data.json │ │ ├── index.js │ │ ├── schema.json │ │ ├── tests-schema.json │ │ └── ui-schema.json ├── mobile │ ├── ionic │ │ └── .gitkeep │ ├── nativescript │ │ └── .gitkeep │ └── reactnative │ │ ├── .buckconfig │ │ ├── .editorconfig │ │ ├── .eslintrc.js │ │ ├── .gitattributes │ │ ├── .gitignore │ │ ├── .prettierrc.js │ │ ├── .watchmanconfig │ │ ├── App.tsx │ │ ├── __tests__ │ │ └── App-test.tsx │ │ ├── android │ │ ├── app │ │ │ ├── _BUCK │ │ │ ├── build.gradle │ │ │ ├── build_defs.bzl │ │ │ ├── debug.keystore │ │ │ ├── proguard-rules.pro │ │ │ └── src │ │ │ │ ├── debug │ │ │ │ ├── AndroidManifest.xml │ │ │ │ └── java │ │ │ │ │ └── com │ │ │ │ │ └── reactnative │ │ │ │ │ └── ReactNativeFlipper.java │ │ │ │ └── main │ │ │ │ ├── AndroidManifest.xml │ │ │ │ ├── assets │ │ │ │ └── fonts │ │ │ │ │ ├── AntDesign.ttf │ │ │ │ │ ├── Entypo.ttf │ │ │ │ │ ├── EvilIcons.ttf │ │ │ │ │ ├── Feather.ttf │ │ │ │ │ ├── FontAwesome.ttf │ │ │ │ │ ├── FontAwesome5_Brands.ttf │ │ │ │ │ ├── FontAwesome5_Regular.ttf │ │ │ │ │ ├── FontAwesome5_Solid.ttf │ │ │ │ │ ├── Fontisto.ttf │ │ │ │ │ ├── Foundation.ttf │ │ │ │ │ ├── Ionicons.ttf │ │ │ │ │ ├── MaterialCommunityIcons.ttf │ │ │ │ │ ├── MaterialIcons.ttf │ │ │ │ │ ├── Octicons.ttf │ │ │ │ │ ├── SimpleLineIcons.ttf │ │ │ │ │ └── Zocial.ttf │ │ │ │ ├── java │ │ │ │ └── com │ │ │ │ │ └── reactnative │ │ │ │ │ ├── MainActivity.java │ │ │ │ │ └── MainApplication.java │ │ │ │ └── res │ │ │ │ ├── mipmap-hdpi │ │ │ │ ├── ic_launcher.png │ │ │ │ └── ic_launcher_round.png │ │ │ │ ├── mipmap-mdpi │ │ │ │ ├── ic_launcher.png │ │ │ │ └── ic_launcher_round.png │ │ │ │ ├── mipmap-xhdpi │ │ │ │ ├── ic_launcher.png │ │ │ │ └── ic_launcher_round.png │ │ │ │ ├── mipmap-xxhdpi │ │ │ │ ├── ic_launcher.png │ │ │ │ └── ic_launcher_round.png │ │ │ │ ├── mipmap-xxxhdpi │ │ │ │ ├── ic_launcher.png │ │ │ │ └── ic_launcher_round.png │ │ │ │ └── values │ │ │ │ ├── strings.xml │ │ │ │ └── styles.xml │ │ ├── build.gradle │ │ ├── gradle.properties │ │ ├── gradle │ │ │ └── wrapper │ │ │ │ ├── gradle-wrapper.jar │ │ │ │ └── gradle-wrapper.properties │ │ ├── gradlew │ │ ├── gradlew.bat │ │ └── settings.gradle │ │ ├── app.json │ │ ├── babel.config.js │ │ ├── index.js │ │ ├── ios │ │ ├── Podfile │ │ ├── Podfile.lock │ │ ├── reactnative.xcodeproj │ │ │ ├── project.pbxproj │ │ │ └── xcshareddata │ │ │ │ └── xcschemes │ │ │ │ └── reactnative.xcscheme │ │ ├── reactnative.xcworkspace │ │ │ ├── contents.xcworkspacedata │ │ │ └── xcshareddata │ │ │ │ └── IDEWorkspaceChecks.plist │ │ ├── reactnative │ │ │ ├── AppDelegate.h │ │ │ ├── AppDelegate.m │ │ │ ├── Images.xcassets │ │ │ │ ├── AppIcon.appiconset │ │ │ │ │ └── Contents.json │ │ │ │ └── Contents.json │ │ │ ├── Info.plist │ │ │ ├── LaunchScreen.storyboard │ │ │ └── main.m │ │ └── reactnativeTests │ │ │ ├── Info.plist │ │ │ └── reactnativeTests.m │ │ ├── metro.config.js │ │ ├── package.json │ │ └── tsconfig.json └── web │ ├── angular │ └── .gitkeep │ ├── react │ ├── DemoHome.jsx │ ├── MuiRoot.jsx │ ├── Root.jsx │ ├── body │ │ ├── Body.jsx │ │ ├── Example.jsx │ │ ├── Source.jsx │ │ ├── body-styles.js │ │ ├── custom-components │ │ │ ├── custom.component.jsx │ │ │ ├── range-picker.component.jsx │ │ │ └── rating.component.jsx │ │ ├── editor-styles.js │ │ ├── example-data.js │ │ ├── example-styles.js │ │ ├── index.js │ │ └── ui-bundler │ │ │ ├── form-bundler │ │ │ ├── form-data.json │ │ │ ├── index.js │ │ │ ├── schema.json │ │ │ ├── ui-schema.json │ │ │ └── xhr-schema.json │ │ │ └── index.jsx │ ├── context │ │ └── version.context.js │ ├── index.html │ ├── index.jsx │ ├── main.scss │ ├── menu │ │ ├── LeftDrawer.jsx │ │ ├── Menu.jsx │ │ ├── MenuItems.jsx │ │ ├── index.js │ │ ├── material-version-select.jsx │ │ ├── menu-styles.js │ │ └── versionSelect.jsx │ ├── server.js │ ├── server.main.js │ └── theme.js │ ├── stencil │ └── .gitkeep │ ├── svelte │ └── .gitkeep │ └── vue │ └── .gitkeep ├── index.js ├── jest.config.js ├── jsdom-setup.js ├── package.json ├── postcss.config.js ├── renovate.json ├── rollup.config.js ├── scripts ├── config │ ├── env.js │ ├── jest │ │ ├── babel.config.js │ │ ├── cssTransform.js │ │ ├── fileTransform.js │ │ ├── puppeteer │ │ │ ├── config.js │ │ │ ├── setup.js │ │ │ └── teardown.js │ │ └── setup.js │ ├── paths.js │ └── polyfills.js ├── generator │ ├── config.js │ ├── e2e-tests-generator.js │ ├── frameworks │ │ ├── angular │ │ │ └── .gitkeep │ │ ├── react-native │ │ │ ├── kittentricks │ │ │ │ └── .gitkeep │ │ │ └── rnpaper │ │ │ │ └── components.json │ │ ├── react │ │ │ ├── ant-design │ │ │ │ └── .gitkeep │ │ │ └── mui │ │ │ │ └── components.json │ │ ├── stencil │ │ │ └── .gitkeep │ │ ├── svelte │ │ │ └── .gitkeep │ │ └── vue │ │ │ └── .gitkeep │ ├── index.js │ ├── modules-generator.js │ └── templates │ │ ├── app-config.template.js │ │ ├── components-config.template.js │ │ ├── example-form-e2e.template.js │ │ ├── interceptors-config.template.js │ │ └── utils-config.template.js └── installer │ ├── framework-generator.ts │ ├── frameworks │ ├── angular │ │ ├── form-wrapper.template.ts │ │ └── package.json │ ├── react-native │ │ ├── cross-framework-wrapper │ │ ├── package.json │ │ └── src │ │ │ ├── index.ts │ │ │ └── ui-framework │ │ │ ├── index.ts │ │ │ ├── rnpaper.framework.tsx │ │ │ ├── rnpaper │ │ │ ├── components │ │ │ │ ├── Checkbox │ │ │ │ │ ├── .npmignore │ │ │ │ │ ├── package.json │ │ │ │ │ ├── src │ │ │ │ │ │ ├── __tests__ │ │ │ │ │ │ │ ├── Checkbox.spec.tsx │ │ │ │ │ │ │ ├── CheckboxEnum.spec.tsx │ │ │ │ │ │ │ └── GroupCheckbox.spec.tsx │ │ │ │ │ │ ├── checkbox.props.ts │ │ │ │ │ │ └── index.tsx │ │ │ │ │ └── tsconfig.json │ │ │ │ ├── EmptyDiv │ │ │ │ │ ├── .npmignore │ │ │ │ │ ├── package.json │ │ │ │ │ ├── src │ │ │ │ │ │ ├── __tests__ │ │ │ │ │ │ │ └── EmptyDiv.spec.tsx │ │ │ │ │ │ └── index.tsx │ │ │ │ │ └── tsconfig.json │ │ │ │ ├── Input │ │ │ │ │ ├── .npmignore │ │ │ │ │ ├── package.json │ │ │ │ │ ├── src │ │ │ │ │ │ ├── __tests__ │ │ │ │ │ │ │ └── Input.spec.tsx │ │ │ │ │ │ ├── index.tsx │ │ │ │ │ │ ├── input.props.ts │ │ │ │ │ │ └── utils │ │ │ │ │ │ │ ├── get-input-type.ts │ │ │ │ │ │ │ ├── get-mui-props.ts │ │ │ │ │ │ │ └── get-text-area-props.ts │ │ │ │ │ └── tsconfig.json │ │ │ │ ├── MaterialSelect │ │ │ │ │ ├── .npmignore │ │ │ │ │ ├── package.json │ │ │ │ │ ├── src │ │ │ │ │ │ ├── __tests__ │ │ │ │ │ │ │ └── MaterialSelect.spec.tsx │ │ │ │ │ │ ├── index.tsx │ │ │ │ │ │ └── select.props.ts │ │ │ │ │ └── tsconfig.json │ │ │ │ ├── RadioGroup │ │ │ │ │ ├── .npmignore │ │ │ │ │ ├── package.json │ │ │ │ │ ├── src │ │ │ │ │ │ ├── __tests__ │ │ │ │ │ │ │ └── Radiogroup.spec.tsx │ │ │ │ │ │ ├── index.tsx │ │ │ │ │ │ └── radio-group.props.ts │ │ │ │ │ └── tsconfig.json │ │ │ │ └── Switch │ │ │ │ │ ├── .npmignore │ │ │ │ │ ├── package.json │ │ │ │ │ ├── src │ │ │ │ │ ├── __tests__ │ │ │ │ │ │ └── Slider.spec.tsx │ │ │ │ │ └── index.tsx │ │ │ │ │ └── tsconfig.json │ │ │ └── platform-wrapper.tsx │ │ │ └── types │ │ │ └── rnpaper-framework.type.ts │ ├── react │ │ ├── cross-framework-wrapper │ │ ├── package.json │ │ └── src │ │ │ ├── index.ts │ │ │ └── ui-framework │ │ │ ├── index.ts │ │ │ ├── mui.framework.tsx │ │ │ ├── mui │ │ │ ├── components │ │ │ │ ├── AutoComplete │ │ │ │ │ ├── .npmignore │ │ │ │ │ ├── package.json │ │ │ │ │ ├── src │ │ │ │ │ │ ├── __tests__ │ │ │ │ │ │ │ └── auto-complete.spec.tsx │ │ │ │ │ │ ├── auto-complete.props.ts │ │ │ │ │ │ └── index.tsx │ │ │ │ │ └── tsconfig.json │ │ │ │ ├── Checkbox │ │ │ │ │ ├── .npmignore │ │ │ │ │ ├── package.json │ │ │ │ │ ├── src │ │ │ │ │ │ ├── __tests__ │ │ │ │ │ │ │ ├── Checkbox.spec.tsx │ │ │ │ │ │ │ ├── CheckboxEnum.spec.tsx │ │ │ │ │ │ │ └── GroupCheckbox.spec.tsx │ │ │ │ │ │ ├── checkbox.props.ts │ │ │ │ │ │ └── index.tsx │ │ │ │ │ └── tsconfig.json │ │ │ │ ├── CreatableSelect │ │ │ │ │ ├── .npmignore │ │ │ │ │ ├── package.json │ │ │ │ │ ├── src │ │ │ │ │ │ ├── __tests__ │ │ │ │ │ │ │ └── CreatableSelect.spec.tsx │ │ │ │ │ │ ├── creatable-select.props.ts │ │ │ │ │ │ ├── index.tsx │ │ │ │ │ │ └── lib │ │ │ │ │ │ │ └── CreatableReactSelect.tsx │ │ │ │ │ └── tsconfig.json │ │ │ │ ├── EmptyDiv │ │ │ │ │ ├── .npmignore │ │ │ │ │ ├── package.json │ │ │ │ │ ├── src │ │ │ │ │ │ ├── __tests__ │ │ │ │ │ │ │ └── EmptyDiv.spec.tsx │ │ │ │ │ │ └── index.tsx │ │ │ │ │ └── tsconfig.json │ │ │ │ ├── Input │ │ │ │ │ ├── .npmignore │ │ │ │ │ ├── package.json │ │ │ │ │ ├── src │ │ │ │ │ │ ├── __tests__ │ │ │ │ │ │ │ └── Input.spec.tsx │ │ │ │ │ │ ├── index.tsx │ │ │ │ │ │ ├── input.props.ts │ │ │ │ │ │ └── utils │ │ │ │ │ │ │ ├── get-input-type.ts │ │ │ │ │ │ │ ├── get-mui-props.ts │ │ │ │ │ │ │ └── get-text-area-props.ts │ │ │ │ │ └── tsconfig.json │ │ │ │ ├── MaterialSelect │ │ │ │ │ ├── .npmignore │ │ │ │ │ ├── package.json │ │ │ │ │ ├── src │ │ │ │ │ │ ├── __tests__ │ │ │ │ │ │ │ └── MaterialSelect.spec.tsx │ │ │ │ │ │ ├── index.tsx │ │ │ │ │ │ └── select.props.ts │ │ │ │ │ └── tsconfig.json │ │ │ │ ├── Picker │ │ │ │ │ ├── .npmignore │ │ │ │ │ ├── package.json │ │ │ │ │ ├── src │ │ │ │ │ │ ├── __tests__ │ │ │ │ │ │ │ └── Picker.spec.tsx │ │ │ │ │ │ ├── index.tsx │ │ │ │ │ │ └── picker.props.ts │ │ │ │ │ └── tsconfig.json │ │ │ │ ├── RadioGroup │ │ │ │ │ ├── .npmignore │ │ │ │ │ ├── package.json │ │ │ │ │ ├── src │ │ │ │ │ │ ├── __tests__ │ │ │ │ │ │ │ └── Radiogroup.spec.tsx │ │ │ │ │ │ ├── index.tsx │ │ │ │ │ │ └── radio-group.props.ts │ │ │ │ │ └── tsconfig.json │ │ │ │ ├── ReactSelect │ │ │ │ │ ├── .npmignore │ │ │ │ │ ├── package.json │ │ │ │ │ ├── src │ │ │ │ │ │ ├── __tests__ │ │ │ │ │ │ │ └── ReactSelect.spec.tsx │ │ │ │ │ │ ├── index.tsx │ │ │ │ │ │ ├── lib │ │ │ │ │ │ │ └── ReactSelect.tsx │ │ │ │ │ │ └── react-select.props.ts │ │ │ │ │ └── tsconfig.json │ │ │ │ ├── RichTextEditor │ │ │ │ │ ├── .npmignore │ │ │ │ │ ├── package.json │ │ │ │ │ ├── src │ │ │ │ │ │ ├── __tests__ │ │ │ │ │ │ │ └── RichTextEditor.spec.tsx │ │ │ │ │ │ ├── index.tsx │ │ │ │ │ │ ├── lib │ │ │ │ │ │ │ ├── RichText.tsx │ │ │ │ │ │ │ ├── WordCount.tsx │ │ │ │ │ │ │ ├── components.tsx │ │ │ │ │ │ │ └── value.json │ │ │ │ │ │ └── rich-text-editor.props.js │ │ │ │ │ └── tsconfig.json │ │ │ │ ├── Slider │ │ │ │ │ ├── .npmignore │ │ │ │ │ ├── package.json │ │ │ │ │ ├── src │ │ │ │ │ │ ├── __tests__ │ │ │ │ │ │ │ └── Slider.spec.tsx │ │ │ │ │ │ └── index.tsx │ │ │ │ │ └── tsconfig.json │ │ │ │ └── Upload │ │ │ │ │ ├── .npmignore │ │ │ │ │ ├── package.json │ │ │ │ │ ├── src │ │ │ │ │ ├── __tests__ │ │ │ │ │ │ └── Upload.spec.tsx │ │ │ │ │ ├── index.tsx │ │ │ │ │ ├── lib │ │ │ │ │ │ └── index.tsx │ │ │ │ │ └── upload.props.ts │ │ │ │ │ └── tsconfig.json │ │ │ ├── form-buttons.tsx │ │ │ ├── form-context-wrapper.tsx │ │ │ ├── platform-loading-wrapper.tsx │ │ │ ├── platform-wrapper.tsx │ │ │ ├── styles │ │ │ │ ├── component-field-styles.ts │ │ │ │ ├── field-set-styles.ts │ │ │ │ ├── field-styles.ts │ │ │ │ ├── form-field-styles.ts │ │ │ │ ├── form-stepper-styles.ts │ │ │ │ └── form-styles.ts │ │ │ └── validation-messages.tsx │ │ │ └── types │ │ │ └── mui-framework.type.ts │ ├── stencil │ │ ├── form-wrapper.template.ts │ │ └── package.json │ ├── svelte │ │ ├── form-wrapper.template.ts │ │ └── package.json │ └── vue │ │ ├── form-wrapper.template.ts │ │ └── package.json │ └── index.ts ├── src ├── __e2e__ │ ├── page-objects │ │ ├── component-types │ │ │ └── index.js │ │ ├── field-types │ │ │ ├── array-field.js │ │ │ ├── boolean-field.js │ │ │ ├── custom-field.js │ │ │ ├── number-field.js │ │ │ └── string-field.js │ │ ├── field-utils.js │ │ ├── form.page.js │ │ └── page.js │ └── step-definitions │ │ └── steps.js ├── config │ ├── fieldset.config.ts │ └── index.ts ├── cross-framework-wrapper │ ├── angular │ │ └── .gitkeep │ ├── react │ │ ├── FieldSet │ │ │ ├── FieldSet.tsx │ │ │ ├── FieldSetArray.tsx │ │ │ ├── FieldSetObject.tsx │ │ │ ├── FieldSetStepper.tsx │ │ │ ├── FieldSetTabs.tsx │ │ │ ├── ReorderControls.tsx │ │ │ ├── ReorderableFormField.tsx │ │ │ ├── __tests__ │ │ │ │ ├── FieldSet.spec.tsx │ │ │ │ ├── FieldSetStepper.spec.tsx │ │ │ │ └── FieldSetTabs.spec.tsx │ │ │ ├── index.js │ │ │ └── variants │ │ │ │ ├── fieldset-array │ │ │ │ ├── field-array.variants.tsx │ │ │ │ └── field-array.wrappers.tsx │ │ │ │ ├── page-layout.variants.tsx │ │ │ │ └── schema-type.variants.tsx │ │ ├── Form.tsx │ │ ├── FormField.tsx │ │ ├── __tests__ │ │ │ ├── Form.spec.tsx │ │ │ └── FormField.spec.tsx │ │ └── fields │ │ │ ├── ConfiguredField.tsx │ │ │ ├── Field.tsx │ │ │ ├── __tests__ │ │ │ └── Field.spec.tsx │ │ │ ├── configure │ │ │ ├── __tests__ │ │ │ │ ├── configure-component.spec.ts │ │ │ │ └── dom-events.spec.tsx │ │ │ ├── component.config.ts │ │ │ ├── component │ │ │ │ ├── __tests__ │ │ │ │ │ ├── get-component.props.spec.ts │ │ │ │ │ └── get-component.spec.ts │ │ │ │ ├── get-component-props.ts │ │ │ │ └── get-component.ts │ │ │ ├── configure-component.ts │ │ │ ├── index.ts │ │ │ └── label │ │ │ │ ├── __tests__ │ │ │ │ ├── get-label-component-props.spec.ts │ │ │ │ └── get-label-component.spec.ts │ │ │ │ ├── get-label-component-props.ts │ │ │ │ └── get-label-component.ts │ │ │ └── index.ts │ ├── stencil │ │ └── .gitkeep │ ├── svelte │ │ └── .gitkeep │ └── vue │ │ └── .gitkeep ├── helpers │ ├── __tests__ │ │ ├── execute-xhr.spec.ts │ │ ├── get-default-value.spec.ts │ │ ├── get-definition-schema.spec.ts │ │ ├── remove-values.spec.ts │ │ ├── transform-schema.spec.ts │ │ └── update-form-data.spec.ts │ ├── context │ │ └── index.tsx │ ├── enzyme-unit-test.tsx │ ├── execute-xhr-call.ts │ ├── get-default-value.ts │ ├── get-definition-schema-nodejs │ │ ├── __tests__ │ │ │ └── get-def-schema-nodejs.spec.ts │ │ └── index.js │ ├── get-definition-schema.ts │ ├── remove-empty-values.ts │ ├── state-machine │ │ ├── create-state-machine.ts │ │ ├── form │ │ │ ├── __tests__ │ │ │ │ ├── form-state-guards.spec.ts │ │ │ │ └── form-state-machine.spec.ts │ │ │ ├── actions │ │ │ │ ├── __tests__ │ │ │ │ │ └── form-actions.spec.ts │ │ │ │ ├── form.actions.ts │ │ │ │ ├── index.ts │ │ │ │ └── stepper.actions.ts │ │ │ ├── config │ │ │ │ ├── form-state.config.ts │ │ │ │ ├── index.ts │ │ │ │ └── stepper-state.config.ts │ │ │ ├── form-state.guards.ts │ │ │ ├── hooks │ │ │ │ ├── __tests__ │ │ │ │ │ ├── form-events-hooks.spec.ts │ │ │ │ │ ├── form-state-machine-hooks.spec.ts │ │ │ │ │ └── stepper-events-hooks.spec.ts │ │ │ │ ├── form-events.hooks.ts │ │ │ │ ├── form-state-machine.hooks.ts │ │ │ │ ├── index.ts │ │ │ │ └── stepper-events.hooks.ts │ │ │ ├── index.ts │ │ │ └── mutations │ │ │ │ ├── __tests__ │ │ │ │ └── form-state-mutations.spec.ts │ │ │ │ ├── form-state.mutations.ts │ │ │ │ ├── index.ts │ │ │ │ └── stepper-state.mutations.ts │ │ ├── helpers │ │ │ ├── get-hashcode-from-xhr-def.ts │ │ │ ├── is-form-schema-state-valid.ts │ │ │ └── persist-xhr-call.ts │ │ └── types │ │ │ └── form-state-machine.type.ts │ ├── transform-schema.ts │ ├── update-form-data.ts │ ├── utils │ │ └── index.ts │ └── validation │ │ ├── __tests__ │ │ └── get-validation-result.spec.ts │ │ ├── get-validation-result.ts │ │ ├── index.ts │ │ ├── is-form-validated.ts │ │ └── rules │ │ ├── index.ts │ │ ├── max-length.ts │ │ ├── maximum.ts │ │ ├── min-length.ts │ │ ├── minimum.ts │ │ └── pattern.ts ├── index.ts ├── interceptors │ ├── translate-currency │ │ ├── .npmignore │ │ ├── package.json │ │ ├── src │ │ │ ├── __tests__ │ │ │ │ └── translate-curreny.spec.ts │ │ │ ├── index.ts │ │ │ └── index.type.ts │ │ └── tsconfig.json │ ├── translate-range-date │ │ ├── .npmignore │ │ ├── package.json │ │ ├── src │ │ │ ├── __tests__ │ │ │ │ └── translate-range-date.spec.ts │ │ │ ├── index.ts │ │ │ └── index.type.ts │ │ └── tsconfig.json │ └── translate-ratings │ │ ├── .npmignore │ │ ├── package.json │ │ ├── src │ │ ├── __tests__ │ │ │ └── translate-ratings.spec.ts │ │ ├── index.ts │ │ └── index.type.ts │ │ └── tsconfig.json ├── parsers │ ├── enum-utils │ │ ├── .npmignore │ │ ├── package.json │ │ ├── src │ │ │ ├── __tests__ │ │ │ │ ├── enum-utils.spec.ts │ │ │ │ └── values-to-options.spec.ts │ │ │ ├── index.ts │ │ │ └── values-to-options.ts │ │ └── tsconfig.json │ └── parse-values │ │ ├── .npmignore │ │ ├── package.json │ │ ├── src │ │ ├── __tests__ │ │ │ └── parse-values.spec.ts │ │ ├── coerce-value.ts │ │ ├── deep-stringify.ts │ │ └── index.ts │ │ └── tsconfig.json ├── types │ ├── ConfiguredField.type.ts │ ├── Field.type.tsx │ ├── FieldSet.type.ts │ ├── FieldSetArray.type.ts │ ├── FieldSetObject.type.ts │ ├── Form.type.ts │ ├── FormField.type.ts │ ├── ReoderableFormField.type.ts │ ├── ReorderControls.type.ts │ ├── UISchema.type.ts │ ├── configure │ │ ├── GetComponent.type.ts │ │ ├── GetComponentProps.type.ts │ │ └── GetLabelComponentProps.type.ts │ ├── helpers │ │ └── TransformSchema.type.ts │ ├── shared │ │ ├── FormEvents.type.ts │ │ ├── MaterialuiProps.type.ts │ │ └── SchemaProps.type.ts │ └── ui │ │ ├── UIPage.type.ts │ │ ├── UIValidations.type.ts │ │ └── UIWidget.type.ts └── universal-schema │ ├── framework.ts │ └── types │ └── universal-schema-framework.type.ts ├── tsconfig.json ├── universal-json-schema.md ├── wdio-ci.conf.js ├── wdio-package.json ├── wdio-sauce-ci.conf.js ├── wdio.conf.js ├── webpack.config.demo.js ├── webpack.config.js └── webpack.out.json /.babelrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vip-git/universal-json-schema/HEAD/.babelrc -------------------------------------------------------------------------------- /.dockerignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vip-git/universal-json-schema/HEAD/.dockerignore -------------------------------------------------------------------------------- /.eslintignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vip-git/universal-json-schema/HEAD/.eslintignore -------------------------------------------------------------------------------- /.eslintrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vip-git/universal-json-schema/HEAD/.eslintrc.js -------------------------------------------------------------------------------- /.gitbook/assets/image (1).png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vip-git/universal-json-schema/HEAD/.gitbook/assets/image (1).png -------------------------------------------------------------------------------- /.gitbook/assets/image (10).png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vip-git/universal-json-schema/HEAD/.gitbook/assets/image (10).png -------------------------------------------------------------------------------- /.gitbook/assets/image (11).png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vip-git/universal-json-schema/HEAD/.gitbook/assets/image (11).png -------------------------------------------------------------------------------- /.gitbook/assets/image (12).png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vip-git/universal-json-schema/HEAD/.gitbook/assets/image (12).png -------------------------------------------------------------------------------- /.gitbook/assets/image (13).png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vip-git/universal-json-schema/HEAD/.gitbook/assets/image (13).png -------------------------------------------------------------------------------- /.gitbook/assets/image (14).png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vip-git/universal-json-schema/HEAD/.gitbook/assets/image (14).png -------------------------------------------------------------------------------- /.gitbook/assets/image (15).png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vip-git/universal-json-schema/HEAD/.gitbook/assets/image (15).png -------------------------------------------------------------------------------- /.gitbook/assets/image (16).png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vip-git/universal-json-schema/HEAD/.gitbook/assets/image (16).png -------------------------------------------------------------------------------- /.gitbook/assets/image (17).png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vip-git/universal-json-schema/HEAD/.gitbook/assets/image (17).png -------------------------------------------------------------------------------- /.gitbook/assets/image (18).png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vip-git/universal-json-schema/HEAD/.gitbook/assets/image (18).png -------------------------------------------------------------------------------- /.gitbook/assets/image (2).png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vip-git/universal-json-schema/HEAD/.gitbook/assets/image (2).png -------------------------------------------------------------------------------- /.gitbook/assets/image (3).png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vip-git/universal-json-schema/HEAD/.gitbook/assets/image (3).png -------------------------------------------------------------------------------- /.gitbook/assets/image (4).png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vip-git/universal-json-schema/HEAD/.gitbook/assets/image (4).png -------------------------------------------------------------------------------- /.gitbook/assets/image (5).png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vip-git/universal-json-schema/HEAD/.gitbook/assets/image (5).png -------------------------------------------------------------------------------- /.gitbook/assets/image (6).png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vip-git/universal-json-schema/HEAD/.gitbook/assets/image (6).png -------------------------------------------------------------------------------- /.gitbook/assets/image (7).png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vip-git/universal-json-schema/HEAD/.gitbook/assets/image (7).png -------------------------------------------------------------------------------- /.gitbook/assets/image (8).png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vip-git/universal-json-schema/HEAD/.gitbook/assets/image (8).png -------------------------------------------------------------------------------- /.gitbook/assets/image (9).png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vip-git/universal-json-schema/HEAD/.gitbook/assets/image (9).png -------------------------------------------------------------------------------- /.gitbook/assets/image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vip-git/universal-json-schema/HEAD/.gitbook/assets/image.png -------------------------------------------------------------------------------- /.github/FUNDING.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vip-git/universal-json-schema/HEAD/.github/FUNDING.yml -------------------------------------------------------------------------------- /.github/workflows/greetings.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vip-git/universal-json-schema/HEAD/.github/workflows/greetings.yml -------------------------------------------------------------------------------- /.github/workflows/node-e2e.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vip-git/universal-json-schema/HEAD/.github/workflows/node-e2e.yml -------------------------------------------------------------------------------- /.github/workflows/node.js.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vip-git/universal-json-schema/HEAD/.github/workflows/node.js.yml -------------------------------------------------------------------------------- /.github/workflows/prerelease.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vip-git/universal-json-schema/HEAD/.github/workflows/prerelease.yml -------------------------------------------------------------------------------- /.github/workflows/release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vip-git/universal-json-schema/HEAD/.github/workflows/release.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vip-git/universal-json-schema/HEAD/.gitignore -------------------------------------------------------------------------------- /.npmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vip-git/universal-json-schema/HEAD/.npmignore -------------------------------------------------------------------------------- /.prettier.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vip-git/universal-json-schema/HEAD/.prettier.json -------------------------------------------------------------------------------- /.prettierrc.js: -------------------------------------------------------------------------------- 1 | module.exports = { 2 | ...require('gts/.prettierrc.json') 3 | } 4 | -------------------------------------------------------------------------------- /.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vip-git/universal-json-schema/HEAD/.vscode/launch.json -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vip-git/universal-json-schema/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vip-git/universal-json-schema/HEAD/Dockerfile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vip-git/universal-json-schema/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vip-git/universal-json-schema/HEAD/README.md -------------------------------------------------------------------------------- /SUMMARY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vip-git/universal-json-schema/HEAD/SUMMARY.md -------------------------------------------------------------------------------- /changelog.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vip-git/universal-json-schema/HEAD/changelog.md -------------------------------------------------------------------------------- /contributing.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vip-git/universal-json-schema/HEAD/contributing.md -------------------------------------------------------------------------------- /demo/examples/additional-props/form-data.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vip-git/universal-json-schema/HEAD/demo/examples/additional-props/form-data.json -------------------------------------------------------------------------------- /demo/examples/additional-props/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vip-git/universal-json-schema/HEAD/demo/examples/additional-props/index.js -------------------------------------------------------------------------------- /demo/examples/additional-props/schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vip-git/universal-json-schema/HEAD/demo/examples/additional-props/schema.json -------------------------------------------------------------------------------- /demo/examples/additional-props/tests-schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vip-git/universal-json-schema/HEAD/demo/examples/additional-props/tests-schema.json -------------------------------------------------------------------------------- /demo/examples/additional-props/ui-schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vip-git/universal-json-schema/HEAD/demo/examples/additional-props/ui-schema.json -------------------------------------------------------------------------------- /demo/examples/alternatives/form-data.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vip-git/universal-json-schema/HEAD/demo/examples/alternatives/form-data.json -------------------------------------------------------------------------------- /demo/examples/alternatives/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vip-git/universal-json-schema/HEAD/demo/examples/alternatives/index.js -------------------------------------------------------------------------------- /demo/examples/alternatives/schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vip-git/universal-json-schema/HEAD/demo/examples/alternatives/schema.json -------------------------------------------------------------------------------- /demo/examples/alternatives/tests-schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vip-git/universal-json-schema/HEAD/demo/examples/alternatives/tests-schema.json -------------------------------------------------------------------------------- /demo/examples/alternatives/ui-schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vip-git/universal-json-schema/HEAD/demo/examples/alternatives/ui-schema.json -------------------------------------------------------------------------------- /demo/examples/arrays/form-data.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vip-git/universal-json-schema/HEAD/demo/examples/arrays/form-data.json -------------------------------------------------------------------------------- /demo/examples/arrays/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vip-git/universal-json-schema/HEAD/demo/examples/arrays/index.js -------------------------------------------------------------------------------- /demo/examples/arrays/schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vip-git/universal-json-schema/HEAD/demo/examples/arrays/schema.json -------------------------------------------------------------------------------- /demo/examples/arrays/tests-schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vip-git/universal-json-schema/HEAD/demo/examples/arrays/tests-schema.json -------------------------------------------------------------------------------- /demo/examples/arrays/ui-schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vip-git/universal-json-schema/HEAD/demo/examples/arrays/ui-schema.json -------------------------------------------------------------------------------- /demo/examples/budget/form-data.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vip-git/universal-json-schema/HEAD/demo/examples/budget/form-data.json -------------------------------------------------------------------------------- /demo/examples/budget/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vip-git/universal-json-schema/HEAD/demo/examples/budget/index.js -------------------------------------------------------------------------------- /demo/examples/budget/schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vip-git/universal-json-schema/HEAD/demo/examples/budget/schema.json -------------------------------------------------------------------------------- /demo/examples/budget/tests-schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vip-git/universal-json-schema/HEAD/demo/examples/budget/tests-schema.json -------------------------------------------------------------------------------- /demo/examples/budget/ui-schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vip-git/universal-json-schema/HEAD/demo/examples/budget/ui-schema.json -------------------------------------------------------------------------------- /demo/examples/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vip-git/universal-json-schema/HEAD/demo/examples/index.js -------------------------------------------------------------------------------- /demo/examples/multiple-choice/form-data.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vip-git/universal-json-schema/HEAD/demo/examples/multiple-choice/form-data.json -------------------------------------------------------------------------------- /demo/examples/multiple-choice/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vip-git/universal-json-schema/HEAD/demo/examples/multiple-choice/index.js -------------------------------------------------------------------------------- /demo/examples/multiple-choice/schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vip-git/universal-json-schema/HEAD/demo/examples/multiple-choice/schema.json -------------------------------------------------------------------------------- /demo/examples/multiple-choice/ui-schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vip-git/universal-json-schema/HEAD/demo/examples/multiple-choice/ui-schema.json -------------------------------------------------------------------------------- /demo/examples/nested/form-data.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vip-git/universal-json-schema/HEAD/demo/examples/nested/form-data.json -------------------------------------------------------------------------------- /demo/examples/nested/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vip-git/universal-json-schema/HEAD/demo/examples/nested/index.js -------------------------------------------------------------------------------- /demo/examples/nested/schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vip-git/universal-json-schema/HEAD/demo/examples/nested/schema.json -------------------------------------------------------------------------------- /demo/examples/nested/tests-schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vip-git/universal-json-schema/HEAD/demo/examples/nested/tests-schema.json -------------------------------------------------------------------------------- /demo/examples/nested/ui-schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vip-git/universal-json-schema/HEAD/demo/examples/nested/ui-schema.json -------------------------------------------------------------------------------- /demo/examples/numbers/form-data.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vip-git/universal-json-schema/HEAD/demo/examples/numbers/form-data.json -------------------------------------------------------------------------------- /demo/examples/numbers/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vip-git/universal-json-schema/HEAD/demo/examples/numbers/index.js -------------------------------------------------------------------------------- /demo/examples/numbers/nested/form-data.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vip-git/universal-json-schema/HEAD/demo/examples/numbers/nested/form-data.json -------------------------------------------------------------------------------- /demo/examples/numbers/nested/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vip-git/universal-json-schema/HEAD/demo/examples/numbers/nested/index.js -------------------------------------------------------------------------------- /demo/examples/numbers/nested/schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vip-git/universal-json-schema/HEAD/demo/examples/numbers/nested/schema.json -------------------------------------------------------------------------------- /demo/examples/numbers/nested/ui-schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vip-git/universal-json-schema/HEAD/demo/examples/numbers/nested/ui-schema.json -------------------------------------------------------------------------------- /demo/examples/numbers/schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vip-git/universal-json-schema/HEAD/demo/examples/numbers/schema.json -------------------------------------------------------------------------------- /demo/examples/numbers/tests-schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vip-git/universal-json-schema/HEAD/demo/examples/numbers/tests-schema.json -------------------------------------------------------------------------------- /demo/examples/numbers/ui-schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vip-git/universal-json-schema/HEAD/demo/examples/numbers/ui-schema.json -------------------------------------------------------------------------------- /demo/examples/prop-dependencies/form-data.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vip-git/universal-json-schema/HEAD/demo/examples/prop-dependencies/form-data.json -------------------------------------------------------------------------------- /demo/examples/prop-dependencies/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vip-git/universal-json-schema/HEAD/demo/examples/prop-dependencies/index.js -------------------------------------------------------------------------------- /demo/examples/prop-dependencies/schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vip-git/universal-json-schema/HEAD/demo/examples/prop-dependencies/schema.json -------------------------------------------------------------------------------- /demo/examples/prop-dependencies/ui-schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vip-git/universal-json-schema/HEAD/demo/examples/prop-dependencies/ui-schema.json -------------------------------------------------------------------------------- /demo/examples/radio-choice/form-data.json: -------------------------------------------------------------------------------- 1 | { 2 | "numberEnumRadio": 3 3 | } 4 | -------------------------------------------------------------------------------- /demo/examples/radio-choice/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vip-git/universal-json-schema/HEAD/demo/examples/radio-choice/index.js -------------------------------------------------------------------------------- /demo/examples/radio-choice/schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vip-git/universal-json-schema/HEAD/demo/examples/radio-choice/schema.json -------------------------------------------------------------------------------- /demo/examples/radio-choice/ui-schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vip-git/universal-json-schema/HEAD/demo/examples/radio-choice/ui-schema.json -------------------------------------------------------------------------------- /demo/examples/references/form-data.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vip-git/universal-json-schema/HEAD/demo/examples/references/form-data.json -------------------------------------------------------------------------------- /demo/examples/references/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vip-git/universal-json-schema/HEAD/demo/examples/references/index.js -------------------------------------------------------------------------------- /demo/examples/references/schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vip-git/universal-json-schema/HEAD/demo/examples/references/schema.json -------------------------------------------------------------------------------- /demo/examples/references/tests-schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vip-git/universal-json-schema/HEAD/demo/examples/references/tests-schema.json -------------------------------------------------------------------------------- /demo/examples/references/ui-schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vip-git/universal-json-schema/HEAD/demo/examples/references/ui-schema.json -------------------------------------------------------------------------------- /demo/examples/schema-dependencies/form-data.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vip-git/universal-json-schema/HEAD/demo/examples/schema-dependencies/form-data.json -------------------------------------------------------------------------------- /demo/examples/schema-dependencies/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vip-git/universal-json-schema/HEAD/demo/examples/schema-dependencies/index.js -------------------------------------------------------------------------------- /demo/examples/schema-dependencies/schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vip-git/universal-json-schema/HEAD/demo/examples/schema-dependencies/schema.json -------------------------------------------------------------------------------- /demo/examples/schema-dependencies/tests-schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vip-git/universal-json-schema/HEAD/demo/examples/schema-dependencies/tests-schema.json -------------------------------------------------------------------------------- /demo/examples/schema-dependencies/ui-schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vip-git/universal-json-schema/HEAD/demo/examples/schema-dependencies/ui-schema.json -------------------------------------------------------------------------------- /demo/examples/simple/flat/form-data.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vip-git/universal-json-schema/HEAD/demo/examples/simple/flat/form-data.json -------------------------------------------------------------------------------- /demo/examples/simple/flat/schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vip-git/universal-json-schema/HEAD/demo/examples/simple/flat/schema.json -------------------------------------------------------------------------------- /demo/examples/simple/flat/ui-schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vip-git/universal-json-schema/HEAD/demo/examples/simple/flat/ui-schema.json -------------------------------------------------------------------------------- /demo/examples/simple/form-data.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vip-git/universal-json-schema/HEAD/demo/examples/simple/form-data.json -------------------------------------------------------------------------------- /demo/examples/simple/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vip-git/universal-json-schema/HEAD/demo/examples/simple/index.js -------------------------------------------------------------------------------- /demo/examples/simple/schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vip-git/universal-json-schema/HEAD/demo/examples/simple/schema.json -------------------------------------------------------------------------------- /demo/examples/simple/tests-schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vip-git/universal-json-schema/HEAD/demo/examples/simple/tests-schema.json -------------------------------------------------------------------------------- /demo/examples/simple/ui-schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vip-git/universal-json-schema/HEAD/demo/examples/simple/ui-schema.json -------------------------------------------------------------------------------- /demo/examples/simple/version-2/form-data.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vip-git/universal-json-schema/HEAD/demo/examples/simple/version-2/form-data.json -------------------------------------------------------------------------------- /demo/examples/simple/version-2/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vip-git/universal-json-schema/HEAD/demo/examples/simple/version-2/index.js -------------------------------------------------------------------------------- /demo/examples/simple/version-2/schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vip-git/universal-json-schema/HEAD/demo/examples/simple/version-2/schema.json -------------------------------------------------------------------------------- /demo/examples/simple/version-2/ui-schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vip-git/universal-json-schema/HEAD/demo/examples/simple/version-2/ui-schema.json -------------------------------------------------------------------------------- /demo/examples/simple/xhr-schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vip-git/universal-json-schema/HEAD/demo/examples/simple/xhr-schema.json -------------------------------------------------------------------------------- /demo/examples/single/form-data.json: -------------------------------------------------------------------------------- 1 | "initial value" 2 | -------------------------------------------------------------------------------- /demo/examples/single/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vip-git/universal-json-schema/HEAD/demo/examples/single/index.js -------------------------------------------------------------------------------- /demo/examples/single/schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vip-git/universal-json-schema/HEAD/demo/examples/single/schema.json -------------------------------------------------------------------------------- /demo/examples/single/ui-schema.json: -------------------------------------------------------------------------------- 1 | { 2 | "mui:multiline": true 3 | } 4 | -------------------------------------------------------------------------------- /demo/examples/stepper/form-data.json: -------------------------------------------------------------------------------- 1 | { 2 | "GettingStarted": {} 3 | } -------------------------------------------------------------------------------- /demo/examples/stepper/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vip-git/universal-json-schema/HEAD/demo/examples/stepper/index.js -------------------------------------------------------------------------------- /demo/examples/stepper/index.native.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vip-git/universal-json-schema/HEAD/demo/examples/stepper/index.native.js -------------------------------------------------------------------------------- /demo/examples/stepper/schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vip-git/universal-json-schema/HEAD/demo/examples/stepper/schema.json -------------------------------------------------------------------------------- /demo/examples/stepper/tests-schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vip-git/universal-json-schema/HEAD/demo/examples/stepper/tests-schema.json -------------------------------------------------------------------------------- /demo/examples/stepper/ui-schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vip-git/universal-json-schema/HEAD/demo/examples/stepper/ui-schema.json -------------------------------------------------------------------------------- /demo/examples/stepper/xhr-schema.json: -------------------------------------------------------------------------------- 1 | { 2 | 3 | } 4 | -------------------------------------------------------------------------------- /demo/examples/tabs/form-data.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vip-git/universal-json-schema/HEAD/demo/examples/tabs/form-data.json -------------------------------------------------------------------------------- /demo/examples/tabs/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vip-git/universal-json-schema/HEAD/demo/examples/tabs/index.js -------------------------------------------------------------------------------- /demo/examples/tabs/schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vip-git/universal-json-schema/HEAD/demo/examples/tabs/schema.json -------------------------------------------------------------------------------- /demo/examples/tabs/tests-schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vip-git/universal-json-schema/HEAD/demo/examples/tabs/tests-schema.json -------------------------------------------------------------------------------- /demo/examples/tabs/ui-schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vip-git/universal-json-schema/HEAD/demo/examples/tabs/ui-schema.json -------------------------------------------------------------------------------- /demo/examples/validation/form-data.json: -------------------------------------------------------------------------------- 1 | { 2 | "age": 8 3 | } 4 | -------------------------------------------------------------------------------- /demo/examples/validation/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vip-git/universal-json-schema/HEAD/demo/examples/validation/index.js -------------------------------------------------------------------------------- /demo/examples/validation/schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vip-git/universal-json-schema/HEAD/demo/examples/validation/schema.json -------------------------------------------------------------------------------- /demo/examples/validation/tests-schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vip-git/universal-json-schema/HEAD/demo/examples/validation/tests-schema.json -------------------------------------------------------------------------------- /demo/examples/validation/ui-schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vip-git/universal-json-schema/HEAD/demo/examples/validation/ui-schema.json -------------------------------------------------------------------------------- /demo/mobile/ionic/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /demo/mobile/nativescript/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /demo/mobile/reactnative/.buckconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vip-git/universal-json-schema/HEAD/demo/mobile/reactnative/.buckconfig -------------------------------------------------------------------------------- /demo/mobile/reactnative/.editorconfig: -------------------------------------------------------------------------------- 1 | # Windows files 2 | [*.bat] 3 | end_of_line = crlf 4 | -------------------------------------------------------------------------------- /demo/mobile/reactnative/.eslintrc.js: -------------------------------------------------------------------------------- 1 | module.exports = { 2 | root: true, 3 | extends: '@react-native-community', 4 | }; 5 | -------------------------------------------------------------------------------- /demo/mobile/reactnative/.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vip-git/universal-json-schema/HEAD/demo/mobile/reactnative/.gitattributes -------------------------------------------------------------------------------- /demo/mobile/reactnative/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vip-git/universal-json-schema/HEAD/demo/mobile/reactnative/.gitignore -------------------------------------------------------------------------------- /demo/mobile/reactnative/.prettierrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vip-git/universal-json-schema/HEAD/demo/mobile/reactnative/.prettierrc.js -------------------------------------------------------------------------------- /demo/mobile/reactnative/.watchmanconfig: -------------------------------------------------------------------------------- 1 | {} -------------------------------------------------------------------------------- /demo/mobile/reactnative/App.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vip-git/universal-json-schema/HEAD/demo/mobile/reactnative/App.tsx -------------------------------------------------------------------------------- /demo/mobile/reactnative/__tests__/App-test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vip-git/universal-json-schema/HEAD/demo/mobile/reactnative/__tests__/App-test.tsx -------------------------------------------------------------------------------- /demo/mobile/reactnative/android/app/_BUCK: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vip-git/universal-json-schema/HEAD/demo/mobile/reactnative/android/app/_BUCK -------------------------------------------------------------------------------- /demo/mobile/reactnative/android/app/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vip-git/universal-json-schema/HEAD/demo/mobile/reactnative/android/app/build.gradle -------------------------------------------------------------------------------- /demo/mobile/reactnative/android/app/build_defs.bzl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vip-git/universal-json-schema/HEAD/demo/mobile/reactnative/android/app/build_defs.bzl -------------------------------------------------------------------------------- /demo/mobile/reactnative/android/app/debug.keystore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vip-git/universal-json-schema/HEAD/demo/mobile/reactnative/android/app/debug.keystore -------------------------------------------------------------------------------- /demo/mobile/reactnative/android/app/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vip-git/universal-json-schema/HEAD/demo/mobile/reactnative/android/app/proguard-rules.pro -------------------------------------------------------------------------------- /demo/mobile/reactnative/android/app/src/debug/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vip-git/universal-json-schema/HEAD/demo/mobile/reactnative/android/app/src/debug/AndroidManifest.xml -------------------------------------------------------------------------------- /demo/mobile/reactnative/android/app/src/debug/java/com/reactnative/ReactNativeFlipper.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vip-git/universal-json-schema/HEAD/demo/mobile/reactnative/android/app/src/debug/java/com/reactnative/ReactNativeFlipper.java -------------------------------------------------------------------------------- /demo/mobile/reactnative/android/app/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vip-git/universal-json-schema/HEAD/demo/mobile/reactnative/android/app/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /demo/mobile/reactnative/android/app/src/main/assets/fonts/AntDesign.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vip-git/universal-json-schema/HEAD/demo/mobile/reactnative/android/app/src/main/assets/fonts/AntDesign.ttf -------------------------------------------------------------------------------- /demo/mobile/reactnative/android/app/src/main/assets/fonts/Entypo.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vip-git/universal-json-schema/HEAD/demo/mobile/reactnative/android/app/src/main/assets/fonts/Entypo.ttf -------------------------------------------------------------------------------- /demo/mobile/reactnative/android/app/src/main/assets/fonts/EvilIcons.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vip-git/universal-json-schema/HEAD/demo/mobile/reactnative/android/app/src/main/assets/fonts/EvilIcons.ttf -------------------------------------------------------------------------------- /demo/mobile/reactnative/android/app/src/main/assets/fonts/Feather.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vip-git/universal-json-schema/HEAD/demo/mobile/reactnative/android/app/src/main/assets/fonts/Feather.ttf -------------------------------------------------------------------------------- /demo/mobile/reactnative/android/app/src/main/assets/fonts/FontAwesome.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vip-git/universal-json-schema/HEAD/demo/mobile/reactnative/android/app/src/main/assets/fonts/FontAwesome.ttf -------------------------------------------------------------------------------- /demo/mobile/reactnative/android/app/src/main/assets/fonts/FontAwesome5_Brands.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vip-git/universal-json-schema/HEAD/demo/mobile/reactnative/android/app/src/main/assets/fonts/FontAwesome5_Brands.ttf -------------------------------------------------------------------------------- /demo/mobile/reactnative/android/app/src/main/assets/fonts/FontAwesome5_Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vip-git/universal-json-schema/HEAD/demo/mobile/reactnative/android/app/src/main/assets/fonts/FontAwesome5_Regular.ttf -------------------------------------------------------------------------------- /demo/mobile/reactnative/android/app/src/main/assets/fonts/FontAwesome5_Solid.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vip-git/universal-json-schema/HEAD/demo/mobile/reactnative/android/app/src/main/assets/fonts/FontAwesome5_Solid.ttf -------------------------------------------------------------------------------- /demo/mobile/reactnative/android/app/src/main/assets/fonts/Fontisto.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vip-git/universal-json-schema/HEAD/demo/mobile/reactnative/android/app/src/main/assets/fonts/Fontisto.ttf -------------------------------------------------------------------------------- /demo/mobile/reactnative/android/app/src/main/assets/fonts/Foundation.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vip-git/universal-json-schema/HEAD/demo/mobile/reactnative/android/app/src/main/assets/fonts/Foundation.ttf -------------------------------------------------------------------------------- /demo/mobile/reactnative/android/app/src/main/assets/fonts/Ionicons.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vip-git/universal-json-schema/HEAD/demo/mobile/reactnative/android/app/src/main/assets/fonts/Ionicons.ttf -------------------------------------------------------------------------------- /demo/mobile/reactnative/android/app/src/main/assets/fonts/MaterialCommunityIcons.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vip-git/universal-json-schema/HEAD/demo/mobile/reactnative/android/app/src/main/assets/fonts/MaterialCommunityIcons.ttf -------------------------------------------------------------------------------- /demo/mobile/reactnative/android/app/src/main/assets/fonts/MaterialIcons.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vip-git/universal-json-schema/HEAD/demo/mobile/reactnative/android/app/src/main/assets/fonts/MaterialIcons.ttf -------------------------------------------------------------------------------- /demo/mobile/reactnative/android/app/src/main/assets/fonts/Octicons.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vip-git/universal-json-schema/HEAD/demo/mobile/reactnative/android/app/src/main/assets/fonts/Octicons.ttf -------------------------------------------------------------------------------- /demo/mobile/reactnative/android/app/src/main/assets/fonts/SimpleLineIcons.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vip-git/universal-json-schema/HEAD/demo/mobile/reactnative/android/app/src/main/assets/fonts/SimpleLineIcons.ttf -------------------------------------------------------------------------------- /demo/mobile/reactnative/android/app/src/main/assets/fonts/Zocial.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vip-git/universal-json-schema/HEAD/demo/mobile/reactnative/android/app/src/main/assets/fonts/Zocial.ttf -------------------------------------------------------------------------------- /demo/mobile/reactnative/android/app/src/main/java/com/reactnative/MainActivity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vip-git/universal-json-schema/HEAD/demo/mobile/reactnative/android/app/src/main/java/com/reactnative/MainActivity.java -------------------------------------------------------------------------------- /demo/mobile/reactnative/android/app/src/main/java/com/reactnative/MainApplication.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vip-git/universal-json-schema/HEAD/demo/mobile/reactnative/android/app/src/main/java/com/reactnative/MainApplication.java -------------------------------------------------------------------------------- /demo/mobile/reactnative/android/app/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vip-git/universal-json-schema/HEAD/demo/mobile/reactnative/android/app/src/main/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /demo/mobile/reactnative/android/app/src/main/res/mipmap-hdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vip-git/universal-json-schema/HEAD/demo/mobile/reactnative/android/app/src/main/res/mipmap-hdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /demo/mobile/reactnative/android/app/src/main/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vip-git/universal-json-schema/HEAD/demo/mobile/reactnative/android/app/src/main/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /demo/mobile/reactnative/android/app/src/main/res/mipmap-mdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vip-git/universal-json-schema/HEAD/demo/mobile/reactnative/android/app/src/main/res/mipmap-mdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /demo/mobile/reactnative/android/app/src/main/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vip-git/universal-json-schema/HEAD/demo/mobile/reactnative/android/app/src/main/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /demo/mobile/reactnative/android/app/src/main/res/mipmap-xhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vip-git/universal-json-schema/HEAD/demo/mobile/reactnative/android/app/src/main/res/mipmap-xhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /demo/mobile/reactnative/android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vip-git/universal-json-schema/HEAD/demo/mobile/reactnative/android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /demo/mobile/reactnative/android/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vip-git/universal-json-schema/HEAD/demo/mobile/reactnative/android/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /demo/mobile/reactnative/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vip-git/universal-json-schema/HEAD/demo/mobile/reactnative/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /demo/mobile/reactnative/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vip-git/universal-json-schema/HEAD/demo/mobile/reactnative/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /demo/mobile/reactnative/android/app/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vip-git/universal-json-schema/HEAD/demo/mobile/reactnative/android/app/src/main/res/values/strings.xml -------------------------------------------------------------------------------- /demo/mobile/reactnative/android/app/src/main/res/values/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vip-git/universal-json-schema/HEAD/demo/mobile/reactnative/android/app/src/main/res/values/styles.xml -------------------------------------------------------------------------------- /demo/mobile/reactnative/android/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vip-git/universal-json-schema/HEAD/demo/mobile/reactnative/android/build.gradle -------------------------------------------------------------------------------- /demo/mobile/reactnative/android/gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vip-git/universal-json-schema/HEAD/demo/mobile/reactnative/android/gradle.properties -------------------------------------------------------------------------------- /demo/mobile/reactnative/android/gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vip-git/universal-json-schema/HEAD/demo/mobile/reactnative/android/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /demo/mobile/reactnative/android/gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vip-git/universal-json-schema/HEAD/demo/mobile/reactnative/android/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /demo/mobile/reactnative/android/gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vip-git/universal-json-schema/HEAD/demo/mobile/reactnative/android/gradlew -------------------------------------------------------------------------------- /demo/mobile/reactnative/android/gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vip-git/universal-json-schema/HEAD/demo/mobile/reactnative/android/gradlew.bat -------------------------------------------------------------------------------- /demo/mobile/reactnative/android/settings.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vip-git/universal-json-schema/HEAD/demo/mobile/reactnative/android/settings.gradle -------------------------------------------------------------------------------- /demo/mobile/reactnative/app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vip-git/universal-json-schema/HEAD/demo/mobile/reactnative/app.json -------------------------------------------------------------------------------- /demo/mobile/reactnative/babel.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vip-git/universal-json-schema/HEAD/demo/mobile/reactnative/babel.config.js -------------------------------------------------------------------------------- /demo/mobile/reactnative/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vip-git/universal-json-schema/HEAD/demo/mobile/reactnative/index.js -------------------------------------------------------------------------------- /demo/mobile/reactnative/ios/Podfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vip-git/universal-json-schema/HEAD/demo/mobile/reactnative/ios/Podfile -------------------------------------------------------------------------------- /demo/mobile/reactnative/ios/Podfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vip-git/universal-json-schema/HEAD/demo/mobile/reactnative/ios/Podfile.lock -------------------------------------------------------------------------------- /demo/mobile/reactnative/ios/reactnative.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vip-git/universal-json-schema/HEAD/demo/mobile/reactnative/ios/reactnative.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /demo/mobile/reactnative/ios/reactnative.xcodeproj/xcshareddata/xcschemes/reactnative.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vip-git/universal-json-schema/HEAD/demo/mobile/reactnative/ios/reactnative.xcodeproj/xcshareddata/xcschemes/reactnative.xcscheme -------------------------------------------------------------------------------- /demo/mobile/reactnative/ios/reactnative.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vip-git/universal-json-schema/HEAD/demo/mobile/reactnative/ios/reactnative.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /demo/mobile/reactnative/ios/reactnative.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vip-git/universal-json-schema/HEAD/demo/mobile/reactnative/ios/reactnative.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /demo/mobile/reactnative/ios/reactnative/AppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vip-git/universal-json-schema/HEAD/demo/mobile/reactnative/ios/reactnative/AppDelegate.h -------------------------------------------------------------------------------- /demo/mobile/reactnative/ios/reactnative/AppDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vip-git/universal-json-schema/HEAD/demo/mobile/reactnative/ios/reactnative/AppDelegate.m -------------------------------------------------------------------------------- /demo/mobile/reactnative/ios/reactnative/Images.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vip-git/universal-json-schema/HEAD/demo/mobile/reactnative/ios/reactnative/Images.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /demo/mobile/reactnative/ios/reactnative/Images.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vip-git/universal-json-schema/HEAD/demo/mobile/reactnative/ios/reactnative/Images.xcassets/Contents.json -------------------------------------------------------------------------------- /demo/mobile/reactnative/ios/reactnative/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vip-git/universal-json-schema/HEAD/demo/mobile/reactnative/ios/reactnative/Info.plist -------------------------------------------------------------------------------- /demo/mobile/reactnative/ios/reactnative/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vip-git/universal-json-schema/HEAD/demo/mobile/reactnative/ios/reactnative/LaunchScreen.storyboard -------------------------------------------------------------------------------- /demo/mobile/reactnative/ios/reactnative/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vip-git/universal-json-schema/HEAD/demo/mobile/reactnative/ios/reactnative/main.m -------------------------------------------------------------------------------- /demo/mobile/reactnative/ios/reactnativeTests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vip-git/universal-json-schema/HEAD/demo/mobile/reactnative/ios/reactnativeTests/Info.plist -------------------------------------------------------------------------------- /demo/mobile/reactnative/ios/reactnativeTests/reactnativeTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vip-git/universal-json-schema/HEAD/demo/mobile/reactnative/ios/reactnativeTests/reactnativeTests.m -------------------------------------------------------------------------------- /demo/mobile/reactnative/metro.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vip-git/universal-json-schema/HEAD/demo/mobile/reactnative/metro.config.js -------------------------------------------------------------------------------- /demo/mobile/reactnative/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vip-git/universal-json-schema/HEAD/demo/mobile/reactnative/package.json -------------------------------------------------------------------------------- /demo/mobile/reactnative/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vip-git/universal-json-schema/HEAD/demo/mobile/reactnative/tsconfig.json -------------------------------------------------------------------------------- /demo/web/angular/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /demo/web/react/DemoHome.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vip-git/universal-json-schema/HEAD/demo/web/react/DemoHome.jsx -------------------------------------------------------------------------------- /demo/web/react/MuiRoot.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vip-git/universal-json-schema/HEAD/demo/web/react/MuiRoot.jsx -------------------------------------------------------------------------------- /demo/web/react/Root.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vip-git/universal-json-schema/HEAD/demo/web/react/Root.jsx -------------------------------------------------------------------------------- /demo/web/react/body/Body.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vip-git/universal-json-schema/HEAD/demo/web/react/body/Body.jsx -------------------------------------------------------------------------------- /demo/web/react/body/Example.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vip-git/universal-json-schema/HEAD/demo/web/react/body/Example.jsx -------------------------------------------------------------------------------- /demo/web/react/body/Source.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vip-git/universal-json-schema/HEAD/demo/web/react/body/Source.jsx -------------------------------------------------------------------------------- /demo/web/react/body/body-styles.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vip-git/universal-json-schema/HEAD/demo/web/react/body/body-styles.js -------------------------------------------------------------------------------- /demo/web/react/body/custom-components/custom.component.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vip-git/universal-json-schema/HEAD/demo/web/react/body/custom-components/custom.component.jsx -------------------------------------------------------------------------------- /demo/web/react/body/custom-components/range-picker.component.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vip-git/universal-json-schema/HEAD/demo/web/react/body/custom-components/range-picker.component.jsx -------------------------------------------------------------------------------- /demo/web/react/body/custom-components/rating.component.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vip-git/universal-json-schema/HEAD/demo/web/react/body/custom-components/rating.component.jsx -------------------------------------------------------------------------------- /demo/web/react/body/editor-styles.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vip-git/universal-json-schema/HEAD/demo/web/react/body/editor-styles.js -------------------------------------------------------------------------------- /demo/web/react/body/example-data.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vip-git/universal-json-schema/HEAD/demo/web/react/body/example-data.js -------------------------------------------------------------------------------- /demo/web/react/body/example-styles.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vip-git/universal-json-schema/HEAD/demo/web/react/body/example-styles.js -------------------------------------------------------------------------------- /demo/web/react/body/index.js: -------------------------------------------------------------------------------- 1 | export { default } from './Body'; 2 | -------------------------------------------------------------------------------- /demo/web/react/body/ui-bundler/form-bundler/form-data.json: -------------------------------------------------------------------------------- 1 | { 2 | } -------------------------------------------------------------------------------- /demo/web/react/body/ui-bundler/form-bundler/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vip-git/universal-json-schema/HEAD/demo/web/react/body/ui-bundler/form-bundler/index.js -------------------------------------------------------------------------------- /demo/web/react/body/ui-bundler/form-bundler/schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vip-git/universal-json-schema/HEAD/demo/web/react/body/ui-bundler/form-bundler/schema.json -------------------------------------------------------------------------------- /demo/web/react/body/ui-bundler/form-bundler/ui-schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vip-git/universal-json-schema/HEAD/demo/web/react/body/ui-bundler/form-bundler/ui-schema.json -------------------------------------------------------------------------------- /demo/web/react/body/ui-bundler/form-bundler/xhr-schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vip-git/universal-json-schema/HEAD/demo/web/react/body/ui-bundler/form-bundler/xhr-schema.json -------------------------------------------------------------------------------- /demo/web/react/body/ui-bundler/index.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vip-git/universal-json-schema/HEAD/demo/web/react/body/ui-bundler/index.jsx -------------------------------------------------------------------------------- /demo/web/react/context/version.context.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vip-git/universal-json-schema/HEAD/demo/web/react/context/version.context.js -------------------------------------------------------------------------------- /demo/web/react/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vip-git/universal-json-schema/HEAD/demo/web/react/index.html -------------------------------------------------------------------------------- /demo/web/react/index.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vip-git/universal-json-schema/HEAD/demo/web/react/index.jsx -------------------------------------------------------------------------------- /demo/web/react/main.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vip-git/universal-json-schema/HEAD/demo/web/react/main.scss -------------------------------------------------------------------------------- /demo/web/react/menu/LeftDrawer.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vip-git/universal-json-schema/HEAD/demo/web/react/menu/LeftDrawer.jsx -------------------------------------------------------------------------------- /demo/web/react/menu/Menu.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vip-git/universal-json-schema/HEAD/demo/web/react/menu/Menu.jsx -------------------------------------------------------------------------------- /demo/web/react/menu/MenuItems.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vip-git/universal-json-schema/HEAD/demo/web/react/menu/MenuItems.jsx -------------------------------------------------------------------------------- /demo/web/react/menu/index.js: -------------------------------------------------------------------------------- 1 | export { default } from './Menu'; 2 | -------------------------------------------------------------------------------- /demo/web/react/menu/material-version-select.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vip-git/universal-json-schema/HEAD/demo/web/react/menu/material-version-select.jsx -------------------------------------------------------------------------------- /demo/web/react/menu/menu-styles.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vip-git/universal-json-schema/HEAD/demo/web/react/menu/menu-styles.js -------------------------------------------------------------------------------- /demo/web/react/menu/versionSelect.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vip-git/universal-json-schema/HEAD/demo/web/react/menu/versionSelect.jsx -------------------------------------------------------------------------------- /demo/web/react/server.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vip-git/universal-json-schema/HEAD/demo/web/react/server.js -------------------------------------------------------------------------------- /demo/web/react/server.main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vip-git/universal-json-schema/HEAD/demo/web/react/server.main.js -------------------------------------------------------------------------------- /demo/web/react/theme.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vip-git/universal-json-schema/HEAD/demo/web/react/theme.js -------------------------------------------------------------------------------- /demo/web/stencil/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /demo/web/svelte/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /demo/web/vue/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /index.js: -------------------------------------------------------------------------------- 1 | module.exports = require('./dist/bundle.js'); 2 | -------------------------------------------------------------------------------- /jest.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vip-git/universal-json-schema/HEAD/jest.config.js -------------------------------------------------------------------------------- /jsdom-setup.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vip-git/universal-json-schema/HEAD/jsdom-setup.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vip-git/universal-json-schema/HEAD/package.json -------------------------------------------------------------------------------- /postcss.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vip-git/universal-json-schema/HEAD/postcss.config.js -------------------------------------------------------------------------------- /renovate.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vip-git/universal-json-schema/HEAD/renovate.json -------------------------------------------------------------------------------- /rollup.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vip-git/universal-json-schema/HEAD/rollup.config.js -------------------------------------------------------------------------------- /scripts/config/env.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vip-git/universal-json-schema/HEAD/scripts/config/env.js -------------------------------------------------------------------------------- /scripts/config/jest/babel.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vip-git/universal-json-schema/HEAD/scripts/config/jest/babel.config.js -------------------------------------------------------------------------------- /scripts/config/jest/cssTransform.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vip-git/universal-json-schema/HEAD/scripts/config/jest/cssTransform.js -------------------------------------------------------------------------------- /scripts/config/jest/fileTransform.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vip-git/universal-json-schema/HEAD/scripts/config/jest/fileTransform.js -------------------------------------------------------------------------------- /scripts/config/jest/puppeteer/config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vip-git/universal-json-schema/HEAD/scripts/config/jest/puppeteer/config.js -------------------------------------------------------------------------------- /scripts/config/jest/puppeteer/setup.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vip-git/universal-json-schema/HEAD/scripts/config/jest/puppeteer/setup.js -------------------------------------------------------------------------------- /scripts/config/jest/puppeteer/teardown.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vip-git/universal-json-schema/HEAD/scripts/config/jest/puppeteer/teardown.js -------------------------------------------------------------------------------- /scripts/config/jest/setup.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vip-git/universal-json-schema/HEAD/scripts/config/jest/setup.js -------------------------------------------------------------------------------- /scripts/config/paths.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vip-git/universal-json-schema/HEAD/scripts/config/paths.js -------------------------------------------------------------------------------- /scripts/config/polyfills.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vip-git/universal-json-schema/HEAD/scripts/config/polyfills.js -------------------------------------------------------------------------------- /scripts/generator/config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vip-git/universal-json-schema/HEAD/scripts/generator/config.js -------------------------------------------------------------------------------- /scripts/generator/e2e-tests-generator.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vip-git/universal-json-schema/HEAD/scripts/generator/e2e-tests-generator.js -------------------------------------------------------------------------------- /scripts/generator/frameworks/angular/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /scripts/generator/frameworks/react-native/kittentricks/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /scripts/generator/frameworks/react-native/rnpaper/components.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vip-git/universal-json-schema/HEAD/scripts/generator/frameworks/react-native/rnpaper/components.json -------------------------------------------------------------------------------- /scripts/generator/frameworks/react/ant-design/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /scripts/generator/frameworks/react/mui/components.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vip-git/universal-json-schema/HEAD/scripts/generator/frameworks/react/mui/components.json -------------------------------------------------------------------------------- /scripts/generator/frameworks/stencil/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /scripts/generator/frameworks/svelte/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /scripts/generator/frameworks/vue/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /scripts/generator/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vip-git/universal-json-schema/HEAD/scripts/generator/index.js -------------------------------------------------------------------------------- /scripts/generator/modules-generator.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vip-git/universal-json-schema/HEAD/scripts/generator/modules-generator.js -------------------------------------------------------------------------------- /scripts/generator/templates/app-config.template.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vip-git/universal-json-schema/HEAD/scripts/generator/templates/app-config.template.js -------------------------------------------------------------------------------- /scripts/generator/templates/components-config.template.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vip-git/universal-json-schema/HEAD/scripts/generator/templates/components-config.template.js -------------------------------------------------------------------------------- /scripts/generator/templates/example-form-e2e.template.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vip-git/universal-json-schema/HEAD/scripts/generator/templates/example-form-e2e.template.js -------------------------------------------------------------------------------- /scripts/generator/templates/interceptors-config.template.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vip-git/universal-json-schema/HEAD/scripts/generator/templates/interceptors-config.template.js -------------------------------------------------------------------------------- /scripts/generator/templates/utils-config.template.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vip-git/universal-json-schema/HEAD/scripts/generator/templates/utils-config.template.js -------------------------------------------------------------------------------- /scripts/installer/framework-generator.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vip-git/universal-json-schema/HEAD/scripts/installer/framework-generator.ts -------------------------------------------------------------------------------- /scripts/installer/frameworks/angular/form-wrapper.template.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vip-git/universal-json-schema/HEAD/scripts/installer/frameworks/angular/form-wrapper.template.ts -------------------------------------------------------------------------------- /scripts/installer/frameworks/angular/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vip-git/universal-json-schema/HEAD/scripts/installer/frameworks/angular/package.json -------------------------------------------------------------------------------- /scripts/installer/frameworks/react-native/cross-framework-wrapper: -------------------------------------------------------------------------------- 1 | /Users/vipin/htdocs/react-jsonschema-form-material-ui/src/cross-framework-wrapper -------------------------------------------------------------------------------- /scripts/installer/frameworks/react-native/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vip-git/universal-json-schema/HEAD/scripts/installer/frameworks/react-native/package.json -------------------------------------------------------------------------------- /scripts/installer/frameworks/react-native/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vip-git/universal-json-schema/HEAD/scripts/installer/frameworks/react-native/src/index.ts -------------------------------------------------------------------------------- /scripts/installer/frameworks/react-native/src/ui-framework/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vip-git/universal-json-schema/HEAD/scripts/installer/frameworks/react-native/src/ui-framework/index.ts -------------------------------------------------------------------------------- /scripts/installer/frameworks/react-native/src/ui-framework/rnpaper.framework.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vip-git/universal-json-schema/HEAD/scripts/installer/frameworks/react-native/src/ui-framework/rnpaper.framework.tsx -------------------------------------------------------------------------------- /scripts/installer/frameworks/react-native/src/ui-framework/rnpaper/components/Checkbox/.npmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vip-git/universal-json-schema/HEAD/scripts/installer/frameworks/react-native/src/ui-framework/rnpaper/components/Checkbox/.npmignore -------------------------------------------------------------------------------- /scripts/installer/frameworks/react-native/src/ui-framework/rnpaper/components/Checkbox/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vip-git/universal-json-schema/HEAD/scripts/installer/frameworks/react-native/src/ui-framework/rnpaper/components/Checkbox/package.json -------------------------------------------------------------------------------- /scripts/installer/frameworks/react-native/src/ui-framework/rnpaper/components/Checkbox/src/__tests__/Checkbox.spec.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vip-git/universal-json-schema/HEAD/scripts/installer/frameworks/react-native/src/ui-framework/rnpaper/components/Checkbox/src/__tests__/Checkbox.spec.tsx -------------------------------------------------------------------------------- /scripts/installer/frameworks/react-native/src/ui-framework/rnpaper/components/Checkbox/src/__tests__/CheckboxEnum.spec.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vip-git/universal-json-schema/HEAD/scripts/installer/frameworks/react-native/src/ui-framework/rnpaper/components/Checkbox/src/__tests__/CheckboxEnum.spec.tsx -------------------------------------------------------------------------------- /scripts/installer/frameworks/react-native/src/ui-framework/rnpaper/components/Checkbox/src/__tests__/GroupCheckbox.spec.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vip-git/universal-json-schema/HEAD/scripts/installer/frameworks/react-native/src/ui-framework/rnpaper/components/Checkbox/src/__tests__/GroupCheckbox.spec.tsx -------------------------------------------------------------------------------- /scripts/installer/frameworks/react-native/src/ui-framework/rnpaper/components/Checkbox/src/checkbox.props.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vip-git/universal-json-schema/HEAD/scripts/installer/frameworks/react-native/src/ui-framework/rnpaper/components/Checkbox/src/checkbox.props.ts -------------------------------------------------------------------------------- /scripts/installer/frameworks/react-native/src/ui-framework/rnpaper/components/Checkbox/src/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vip-git/universal-json-schema/HEAD/scripts/installer/frameworks/react-native/src/ui-framework/rnpaper/components/Checkbox/src/index.tsx -------------------------------------------------------------------------------- /scripts/installer/frameworks/react-native/src/ui-framework/rnpaper/components/Checkbox/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vip-git/universal-json-schema/HEAD/scripts/installer/frameworks/react-native/src/ui-framework/rnpaper/components/Checkbox/tsconfig.json -------------------------------------------------------------------------------- /scripts/installer/frameworks/react-native/src/ui-framework/rnpaper/components/EmptyDiv/.npmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vip-git/universal-json-schema/HEAD/scripts/installer/frameworks/react-native/src/ui-framework/rnpaper/components/EmptyDiv/.npmignore -------------------------------------------------------------------------------- /scripts/installer/frameworks/react-native/src/ui-framework/rnpaper/components/EmptyDiv/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vip-git/universal-json-schema/HEAD/scripts/installer/frameworks/react-native/src/ui-framework/rnpaper/components/EmptyDiv/package.json -------------------------------------------------------------------------------- /scripts/installer/frameworks/react-native/src/ui-framework/rnpaper/components/EmptyDiv/src/__tests__/EmptyDiv.spec.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vip-git/universal-json-schema/HEAD/scripts/installer/frameworks/react-native/src/ui-framework/rnpaper/components/EmptyDiv/src/__tests__/EmptyDiv.spec.tsx -------------------------------------------------------------------------------- /scripts/installer/frameworks/react-native/src/ui-framework/rnpaper/components/EmptyDiv/src/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vip-git/universal-json-schema/HEAD/scripts/installer/frameworks/react-native/src/ui-framework/rnpaper/components/EmptyDiv/src/index.tsx -------------------------------------------------------------------------------- /scripts/installer/frameworks/react-native/src/ui-framework/rnpaper/components/EmptyDiv/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vip-git/universal-json-schema/HEAD/scripts/installer/frameworks/react-native/src/ui-framework/rnpaper/components/EmptyDiv/tsconfig.json -------------------------------------------------------------------------------- /scripts/installer/frameworks/react-native/src/ui-framework/rnpaper/components/Input/.npmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vip-git/universal-json-schema/HEAD/scripts/installer/frameworks/react-native/src/ui-framework/rnpaper/components/Input/.npmignore -------------------------------------------------------------------------------- /scripts/installer/frameworks/react-native/src/ui-framework/rnpaper/components/Input/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vip-git/universal-json-schema/HEAD/scripts/installer/frameworks/react-native/src/ui-framework/rnpaper/components/Input/package.json -------------------------------------------------------------------------------- /scripts/installer/frameworks/react-native/src/ui-framework/rnpaper/components/Input/src/__tests__/Input.spec.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vip-git/universal-json-schema/HEAD/scripts/installer/frameworks/react-native/src/ui-framework/rnpaper/components/Input/src/__tests__/Input.spec.tsx -------------------------------------------------------------------------------- /scripts/installer/frameworks/react-native/src/ui-framework/rnpaper/components/Input/src/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vip-git/universal-json-schema/HEAD/scripts/installer/frameworks/react-native/src/ui-framework/rnpaper/components/Input/src/index.tsx -------------------------------------------------------------------------------- /scripts/installer/frameworks/react-native/src/ui-framework/rnpaper/components/Input/src/input.props.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vip-git/universal-json-schema/HEAD/scripts/installer/frameworks/react-native/src/ui-framework/rnpaper/components/Input/src/input.props.ts -------------------------------------------------------------------------------- /scripts/installer/frameworks/react-native/src/ui-framework/rnpaper/components/Input/src/utils/get-input-type.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vip-git/universal-json-schema/HEAD/scripts/installer/frameworks/react-native/src/ui-framework/rnpaper/components/Input/src/utils/get-input-type.ts -------------------------------------------------------------------------------- /scripts/installer/frameworks/react-native/src/ui-framework/rnpaper/components/Input/src/utils/get-mui-props.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vip-git/universal-json-schema/HEAD/scripts/installer/frameworks/react-native/src/ui-framework/rnpaper/components/Input/src/utils/get-mui-props.ts -------------------------------------------------------------------------------- /scripts/installer/frameworks/react-native/src/ui-framework/rnpaper/components/Input/src/utils/get-text-area-props.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vip-git/universal-json-schema/HEAD/scripts/installer/frameworks/react-native/src/ui-framework/rnpaper/components/Input/src/utils/get-text-area-props.ts -------------------------------------------------------------------------------- /scripts/installer/frameworks/react-native/src/ui-framework/rnpaper/components/Input/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vip-git/universal-json-schema/HEAD/scripts/installer/frameworks/react-native/src/ui-framework/rnpaper/components/Input/tsconfig.json -------------------------------------------------------------------------------- /scripts/installer/frameworks/react-native/src/ui-framework/rnpaper/components/MaterialSelect/.npmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vip-git/universal-json-schema/HEAD/scripts/installer/frameworks/react-native/src/ui-framework/rnpaper/components/MaterialSelect/.npmignore -------------------------------------------------------------------------------- /scripts/installer/frameworks/react-native/src/ui-framework/rnpaper/components/MaterialSelect/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vip-git/universal-json-schema/HEAD/scripts/installer/frameworks/react-native/src/ui-framework/rnpaper/components/MaterialSelect/package.json -------------------------------------------------------------------------------- /scripts/installer/frameworks/react-native/src/ui-framework/rnpaper/components/MaterialSelect/src/__tests__/MaterialSelect.spec.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vip-git/universal-json-schema/HEAD/scripts/installer/frameworks/react-native/src/ui-framework/rnpaper/components/MaterialSelect/src/__tests__/MaterialSelect.spec.tsx -------------------------------------------------------------------------------- /scripts/installer/frameworks/react-native/src/ui-framework/rnpaper/components/MaterialSelect/src/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vip-git/universal-json-schema/HEAD/scripts/installer/frameworks/react-native/src/ui-framework/rnpaper/components/MaterialSelect/src/index.tsx -------------------------------------------------------------------------------- /scripts/installer/frameworks/react-native/src/ui-framework/rnpaper/components/MaterialSelect/src/select.props.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vip-git/universal-json-schema/HEAD/scripts/installer/frameworks/react-native/src/ui-framework/rnpaper/components/MaterialSelect/src/select.props.ts -------------------------------------------------------------------------------- /scripts/installer/frameworks/react-native/src/ui-framework/rnpaper/components/MaterialSelect/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vip-git/universal-json-schema/HEAD/scripts/installer/frameworks/react-native/src/ui-framework/rnpaper/components/MaterialSelect/tsconfig.json -------------------------------------------------------------------------------- /scripts/installer/frameworks/react-native/src/ui-framework/rnpaper/components/RadioGroup/.npmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vip-git/universal-json-schema/HEAD/scripts/installer/frameworks/react-native/src/ui-framework/rnpaper/components/RadioGroup/.npmignore -------------------------------------------------------------------------------- /scripts/installer/frameworks/react-native/src/ui-framework/rnpaper/components/RadioGroup/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vip-git/universal-json-schema/HEAD/scripts/installer/frameworks/react-native/src/ui-framework/rnpaper/components/RadioGroup/package.json -------------------------------------------------------------------------------- /scripts/installer/frameworks/react-native/src/ui-framework/rnpaper/components/RadioGroup/src/__tests__/Radiogroup.spec.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vip-git/universal-json-schema/HEAD/scripts/installer/frameworks/react-native/src/ui-framework/rnpaper/components/RadioGroup/src/__tests__/Radiogroup.spec.tsx -------------------------------------------------------------------------------- /scripts/installer/frameworks/react-native/src/ui-framework/rnpaper/components/RadioGroup/src/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vip-git/universal-json-schema/HEAD/scripts/installer/frameworks/react-native/src/ui-framework/rnpaper/components/RadioGroup/src/index.tsx -------------------------------------------------------------------------------- /scripts/installer/frameworks/react-native/src/ui-framework/rnpaper/components/RadioGroup/src/radio-group.props.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vip-git/universal-json-schema/HEAD/scripts/installer/frameworks/react-native/src/ui-framework/rnpaper/components/RadioGroup/src/radio-group.props.ts -------------------------------------------------------------------------------- /scripts/installer/frameworks/react-native/src/ui-framework/rnpaper/components/RadioGroup/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vip-git/universal-json-schema/HEAD/scripts/installer/frameworks/react-native/src/ui-framework/rnpaper/components/RadioGroup/tsconfig.json -------------------------------------------------------------------------------- /scripts/installer/frameworks/react-native/src/ui-framework/rnpaper/components/Switch/.npmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vip-git/universal-json-schema/HEAD/scripts/installer/frameworks/react-native/src/ui-framework/rnpaper/components/Switch/.npmignore -------------------------------------------------------------------------------- /scripts/installer/frameworks/react-native/src/ui-framework/rnpaper/components/Switch/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vip-git/universal-json-schema/HEAD/scripts/installer/frameworks/react-native/src/ui-framework/rnpaper/components/Switch/package.json -------------------------------------------------------------------------------- /scripts/installer/frameworks/react-native/src/ui-framework/rnpaper/components/Switch/src/__tests__/Slider.spec.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vip-git/universal-json-schema/HEAD/scripts/installer/frameworks/react-native/src/ui-framework/rnpaper/components/Switch/src/__tests__/Slider.spec.tsx -------------------------------------------------------------------------------- /scripts/installer/frameworks/react-native/src/ui-framework/rnpaper/components/Switch/src/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vip-git/universal-json-schema/HEAD/scripts/installer/frameworks/react-native/src/ui-framework/rnpaper/components/Switch/src/index.tsx -------------------------------------------------------------------------------- /scripts/installer/frameworks/react-native/src/ui-framework/rnpaper/components/Switch/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vip-git/universal-json-schema/HEAD/scripts/installer/frameworks/react-native/src/ui-framework/rnpaper/components/Switch/tsconfig.json -------------------------------------------------------------------------------- /scripts/installer/frameworks/react-native/src/ui-framework/rnpaper/platform-wrapper.tsx: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /scripts/installer/frameworks/react-native/src/ui-framework/types/rnpaper-framework.type.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vip-git/universal-json-schema/HEAD/scripts/installer/frameworks/react-native/src/ui-framework/types/rnpaper-framework.type.ts -------------------------------------------------------------------------------- /scripts/installer/frameworks/react/cross-framework-wrapper: -------------------------------------------------------------------------------- 1 | /Users/vipin/htdocs/react-jsonschema-form-material-ui/src/cross-framework-wrapper -------------------------------------------------------------------------------- /scripts/installer/frameworks/react/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vip-git/universal-json-schema/HEAD/scripts/installer/frameworks/react/package.json -------------------------------------------------------------------------------- /scripts/installer/frameworks/react/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vip-git/universal-json-schema/HEAD/scripts/installer/frameworks/react/src/index.ts -------------------------------------------------------------------------------- /scripts/installer/frameworks/react/src/ui-framework/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vip-git/universal-json-schema/HEAD/scripts/installer/frameworks/react/src/ui-framework/index.ts -------------------------------------------------------------------------------- /scripts/installer/frameworks/react/src/ui-framework/mui.framework.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vip-git/universal-json-schema/HEAD/scripts/installer/frameworks/react/src/ui-framework/mui.framework.tsx -------------------------------------------------------------------------------- /scripts/installer/frameworks/react/src/ui-framework/mui/components/AutoComplete/.npmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vip-git/universal-json-schema/HEAD/scripts/installer/frameworks/react/src/ui-framework/mui/components/AutoComplete/.npmignore -------------------------------------------------------------------------------- /scripts/installer/frameworks/react/src/ui-framework/mui/components/AutoComplete/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vip-git/universal-json-schema/HEAD/scripts/installer/frameworks/react/src/ui-framework/mui/components/AutoComplete/package.json -------------------------------------------------------------------------------- /scripts/installer/frameworks/react/src/ui-framework/mui/components/AutoComplete/src/__tests__/auto-complete.spec.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vip-git/universal-json-schema/HEAD/scripts/installer/frameworks/react/src/ui-framework/mui/components/AutoComplete/src/__tests__/auto-complete.spec.tsx -------------------------------------------------------------------------------- /scripts/installer/frameworks/react/src/ui-framework/mui/components/AutoComplete/src/auto-complete.props.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vip-git/universal-json-schema/HEAD/scripts/installer/frameworks/react/src/ui-framework/mui/components/AutoComplete/src/auto-complete.props.ts -------------------------------------------------------------------------------- /scripts/installer/frameworks/react/src/ui-framework/mui/components/AutoComplete/src/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vip-git/universal-json-schema/HEAD/scripts/installer/frameworks/react/src/ui-framework/mui/components/AutoComplete/src/index.tsx -------------------------------------------------------------------------------- /scripts/installer/frameworks/react/src/ui-framework/mui/components/AutoComplete/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vip-git/universal-json-schema/HEAD/scripts/installer/frameworks/react/src/ui-framework/mui/components/AutoComplete/tsconfig.json -------------------------------------------------------------------------------- /scripts/installer/frameworks/react/src/ui-framework/mui/components/Checkbox/.npmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vip-git/universal-json-schema/HEAD/scripts/installer/frameworks/react/src/ui-framework/mui/components/Checkbox/.npmignore -------------------------------------------------------------------------------- /scripts/installer/frameworks/react/src/ui-framework/mui/components/Checkbox/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vip-git/universal-json-schema/HEAD/scripts/installer/frameworks/react/src/ui-framework/mui/components/Checkbox/package.json -------------------------------------------------------------------------------- /scripts/installer/frameworks/react/src/ui-framework/mui/components/Checkbox/src/__tests__/Checkbox.spec.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vip-git/universal-json-schema/HEAD/scripts/installer/frameworks/react/src/ui-framework/mui/components/Checkbox/src/__tests__/Checkbox.spec.tsx -------------------------------------------------------------------------------- /scripts/installer/frameworks/react/src/ui-framework/mui/components/Checkbox/src/__tests__/CheckboxEnum.spec.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vip-git/universal-json-schema/HEAD/scripts/installer/frameworks/react/src/ui-framework/mui/components/Checkbox/src/__tests__/CheckboxEnum.spec.tsx -------------------------------------------------------------------------------- /scripts/installer/frameworks/react/src/ui-framework/mui/components/Checkbox/src/__tests__/GroupCheckbox.spec.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vip-git/universal-json-schema/HEAD/scripts/installer/frameworks/react/src/ui-framework/mui/components/Checkbox/src/__tests__/GroupCheckbox.spec.tsx -------------------------------------------------------------------------------- /scripts/installer/frameworks/react/src/ui-framework/mui/components/Checkbox/src/checkbox.props.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vip-git/universal-json-schema/HEAD/scripts/installer/frameworks/react/src/ui-framework/mui/components/Checkbox/src/checkbox.props.ts -------------------------------------------------------------------------------- /scripts/installer/frameworks/react/src/ui-framework/mui/components/Checkbox/src/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vip-git/universal-json-schema/HEAD/scripts/installer/frameworks/react/src/ui-framework/mui/components/Checkbox/src/index.tsx -------------------------------------------------------------------------------- /scripts/installer/frameworks/react/src/ui-framework/mui/components/Checkbox/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vip-git/universal-json-schema/HEAD/scripts/installer/frameworks/react/src/ui-framework/mui/components/Checkbox/tsconfig.json -------------------------------------------------------------------------------- /scripts/installer/frameworks/react/src/ui-framework/mui/components/CreatableSelect/.npmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vip-git/universal-json-schema/HEAD/scripts/installer/frameworks/react/src/ui-framework/mui/components/CreatableSelect/.npmignore -------------------------------------------------------------------------------- /scripts/installer/frameworks/react/src/ui-framework/mui/components/CreatableSelect/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vip-git/universal-json-schema/HEAD/scripts/installer/frameworks/react/src/ui-framework/mui/components/CreatableSelect/package.json -------------------------------------------------------------------------------- /scripts/installer/frameworks/react/src/ui-framework/mui/components/CreatableSelect/src/__tests__/CreatableSelect.spec.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vip-git/universal-json-schema/HEAD/scripts/installer/frameworks/react/src/ui-framework/mui/components/CreatableSelect/src/__tests__/CreatableSelect.spec.tsx -------------------------------------------------------------------------------- /scripts/installer/frameworks/react/src/ui-framework/mui/components/CreatableSelect/src/creatable-select.props.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vip-git/universal-json-schema/HEAD/scripts/installer/frameworks/react/src/ui-framework/mui/components/CreatableSelect/src/creatable-select.props.ts -------------------------------------------------------------------------------- /scripts/installer/frameworks/react/src/ui-framework/mui/components/CreatableSelect/src/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vip-git/universal-json-schema/HEAD/scripts/installer/frameworks/react/src/ui-framework/mui/components/CreatableSelect/src/index.tsx -------------------------------------------------------------------------------- /scripts/installer/frameworks/react/src/ui-framework/mui/components/CreatableSelect/src/lib/CreatableReactSelect.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vip-git/universal-json-schema/HEAD/scripts/installer/frameworks/react/src/ui-framework/mui/components/CreatableSelect/src/lib/CreatableReactSelect.tsx -------------------------------------------------------------------------------- /scripts/installer/frameworks/react/src/ui-framework/mui/components/CreatableSelect/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vip-git/universal-json-schema/HEAD/scripts/installer/frameworks/react/src/ui-framework/mui/components/CreatableSelect/tsconfig.json -------------------------------------------------------------------------------- /scripts/installer/frameworks/react/src/ui-framework/mui/components/EmptyDiv/.npmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vip-git/universal-json-schema/HEAD/scripts/installer/frameworks/react/src/ui-framework/mui/components/EmptyDiv/.npmignore -------------------------------------------------------------------------------- /scripts/installer/frameworks/react/src/ui-framework/mui/components/EmptyDiv/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vip-git/universal-json-schema/HEAD/scripts/installer/frameworks/react/src/ui-framework/mui/components/EmptyDiv/package.json -------------------------------------------------------------------------------- /scripts/installer/frameworks/react/src/ui-framework/mui/components/EmptyDiv/src/__tests__/EmptyDiv.spec.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vip-git/universal-json-schema/HEAD/scripts/installer/frameworks/react/src/ui-framework/mui/components/EmptyDiv/src/__tests__/EmptyDiv.spec.tsx -------------------------------------------------------------------------------- /scripts/installer/frameworks/react/src/ui-framework/mui/components/EmptyDiv/src/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vip-git/universal-json-schema/HEAD/scripts/installer/frameworks/react/src/ui-framework/mui/components/EmptyDiv/src/index.tsx -------------------------------------------------------------------------------- /scripts/installer/frameworks/react/src/ui-framework/mui/components/EmptyDiv/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vip-git/universal-json-schema/HEAD/scripts/installer/frameworks/react/src/ui-framework/mui/components/EmptyDiv/tsconfig.json -------------------------------------------------------------------------------- /scripts/installer/frameworks/react/src/ui-framework/mui/components/Input/.npmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vip-git/universal-json-schema/HEAD/scripts/installer/frameworks/react/src/ui-framework/mui/components/Input/.npmignore -------------------------------------------------------------------------------- /scripts/installer/frameworks/react/src/ui-framework/mui/components/Input/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vip-git/universal-json-schema/HEAD/scripts/installer/frameworks/react/src/ui-framework/mui/components/Input/package.json -------------------------------------------------------------------------------- /scripts/installer/frameworks/react/src/ui-framework/mui/components/Input/src/__tests__/Input.spec.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vip-git/universal-json-schema/HEAD/scripts/installer/frameworks/react/src/ui-framework/mui/components/Input/src/__tests__/Input.spec.tsx -------------------------------------------------------------------------------- /scripts/installer/frameworks/react/src/ui-framework/mui/components/Input/src/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vip-git/universal-json-schema/HEAD/scripts/installer/frameworks/react/src/ui-framework/mui/components/Input/src/index.tsx -------------------------------------------------------------------------------- /scripts/installer/frameworks/react/src/ui-framework/mui/components/Input/src/input.props.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vip-git/universal-json-schema/HEAD/scripts/installer/frameworks/react/src/ui-framework/mui/components/Input/src/input.props.ts -------------------------------------------------------------------------------- /scripts/installer/frameworks/react/src/ui-framework/mui/components/Input/src/utils/get-input-type.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vip-git/universal-json-schema/HEAD/scripts/installer/frameworks/react/src/ui-framework/mui/components/Input/src/utils/get-input-type.ts -------------------------------------------------------------------------------- /scripts/installer/frameworks/react/src/ui-framework/mui/components/Input/src/utils/get-mui-props.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vip-git/universal-json-schema/HEAD/scripts/installer/frameworks/react/src/ui-framework/mui/components/Input/src/utils/get-mui-props.ts -------------------------------------------------------------------------------- /scripts/installer/frameworks/react/src/ui-framework/mui/components/Input/src/utils/get-text-area-props.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vip-git/universal-json-schema/HEAD/scripts/installer/frameworks/react/src/ui-framework/mui/components/Input/src/utils/get-text-area-props.ts -------------------------------------------------------------------------------- /scripts/installer/frameworks/react/src/ui-framework/mui/components/Input/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vip-git/universal-json-schema/HEAD/scripts/installer/frameworks/react/src/ui-framework/mui/components/Input/tsconfig.json -------------------------------------------------------------------------------- /scripts/installer/frameworks/react/src/ui-framework/mui/components/MaterialSelect/.npmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vip-git/universal-json-schema/HEAD/scripts/installer/frameworks/react/src/ui-framework/mui/components/MaterialSelect/.npmignore -------------------------------------------------------------------------------- /scripts/installer/frameworks/react/src/ui-framework/mui/components/MaterialSelect/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vip-git/universal-json-schema/HEAD/scripts/installer/frameworks/react/src/ui-framework/mui/components/MaterialSelect/package.json -------------------------------------------------------------------------------- /scripts/installer/frameworks/react/src/ui-framework/mui/components/MaterialSelect/src/__tests__/MaterialSelect.spec.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vip-git/universal-json-schema/HEAD/scripts/installer/frameworks/react/src/ui-framework/mui/components/MaterialSelect/src/__tests__/MaterialSelect.spec.tsx -------------------------------------------------------------------------------- /scripts/installer/frameworks/react/src/ui-framework/mui/components/MaterialSelect/src/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vip-git/universal-json-schema/HEAD/scripts/installer/frameworks/react/src/ui-framework/mui/components/MaterialSelect/src/index.tsx -------------------------------------------------------------------------------- /scripts/installer/frameworks/react/src/ui-framework/mui/components/MaterialSelect/src/select.props.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vip-git/universal-json-schema/HEAD/scripts/installer/frameworks/react/src/ui-framework/mui/components/MaterialSelect/src/select.props.ts -------------------------------------------------------------------------------- /scripts/installer/frameworks/react/src/ui-framework/mui/components/MaterialSelect/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vip-git/universal-json-schema/HEAD/scripts/installer/frameworks/react/src/ui-framework/mui/components/MaterialSelect/tsconfig.json -------------------------------------------------------------------------------- /scripts/installer/frameworks/react/src/ui-framework/mui/components/Picker/.npmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vip-git/universal-json-schema/HEAD/scripts/installer/frameworks/react/src/ui-framework/mui/components/Picker/.npmignore -------------------------------------------------------------------------------- /scripts/installer/frameworks/react/src/ui-framework/mui/components/Picker/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vip-git/universal-json-schema/HEAD/scripts/installer/frameworks/react/src/ui-framework/mui/components/Picker/package.json -------------------------------------------------------------------------------- /scripts/installer/frameworks/react/src/ui-framework/mui/components/Picker/src/__tests__/Picker.spec.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vip-git/universal-json-schema/HEAD/scripts/installer/frameworks/react/src/ui-framework/mui/components/Picker/src/__tests__/Picker.spec.tsx -------------------------------------------------------------------------------- /scripts/installer/frameworks/react/src/ui-framework/mui/components/Picker/src/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vip-git/universal-json-schema/HEAD/scripts/installer/frameworks/react/src/ui-framework/mui/components/Picker/src/index.tsx -------------------------------------------------------------------------------- /scripts/installer/frameworks/react/src/ui-framework/mui/components/Picker/src/picker.props.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vip-git/universal-json-schema/HEAD/scripts/installer/frameworks/react/src/ui-framework/mui/components/Picker/src/picker.props.ts -------------------------------------------------------------------------------- /scripts/installer/frameworks/react/src/ui-framework/mui/components/Picker/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vip-git/universal-json-schema/HEAD/scripts/installer/frameworks/react/src/ui-framework/mui/components/Picker/tsconfig.json -------------------------------------------------------------------------------- /scripts/installer/frameworks/react/src/ui-framework/mui/components/RadioGroup/.npmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vip-git/universal-json-schema/HEAD/scripts/installer/frameworks/react/src/ui-framework/mui/components/RadioGroup/.npmignore -------------------------------------------------------------------------------- /scripts/installer/frameworks/react/src/ui-framework/mui/components/RadioGroup/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vip-git/universal-json-schema/HEAD/scripts/installer/frameworks/react/src/ui-framework/mui/components/RadioGroup/package.json -------------------------------------------------------------------------------- /scripts/installer/frameworks/react/src/ui-framework/mui/components/RadioGroup/src/__tests__/Radiogroup.spec.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vip-git/universal-json-schema/HEAD/scripts/installer/frameworks/react/src/ui-framework/mui/components/RadioGroup/src/__tests__/Radiogroup.spec.tsx -------------------------------------------------------------------------------- /scripts/installer/frameworks/react/src/ui-framework/mui/components/RadioGroup/src/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vip-git/universal-json-schema/HEAD/scripts/installer/frameworks/react/src/ui-framework/mui/components/RadioGroup/src/index.tsx -------------------------------------------------------------------------------- /scripts/installer/frameworks/react/src/ui-framework/mui/components/RadioGroup/src/radio-group.props.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vip-git/universal-json-schema/HEAD/scripts/installer/frameworks/react/src/ui-framework/mui/components/RadioGroup/src/radio-group.props.ts -------------------------------------------------------------------------------- /scripts/installer/frameworks/react/src/ui-framework/mui/components/RadioGroup/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vip-git/universal-json-schema/HEAD/scripts/installer/frameworks/react/src/ui-framework/mui/components/RadioGroup/tsconfig.json -------------------------------------------------------------------------------- /scripts/installer/frameworks/react/src/ui-framework/mui/components/ReactSelect/.npmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vip-git/universal-json-schema/HEAD/scripts/installer/frameworks/react/src/ui-framework/mui/components/ReactSelect/.npmignore -------------------------------------------------------------------------------- /scripts/installer/frameworks/react/src/ui-framework/mui/components/ReactSelect/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vip-git/universal-json-schema/HEAD/scripts/installer/frameworks/react/src/ui-framework/mui/components/ReactSelect/package.json -------------------------------------------------------------------------------- /scripts/installer/frameworks/react/src/ui-framework/mui/components/ReactSelect/src/__tests__/ReactSelect.spec.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vip-git/universal-json-schema/HEAD/scripts/installer/frameworks/react/src/ui-framework/mui/components/ReactSelect/src/__tests__/ReactSelect.spec.tsx -------------------------------------------------------------------------------- /scripts/installer/frameworks/react/src/ui-framework/mui/components/ReactSelect/src/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vip-git/universal-json-schema/HEAD/scripts/installer/frameworks/react/src/ui-framework/mui/components/ReactSelect/src/index.tsx -------------------------------------------------------------------------------- /scripts/installer/frameworks/react/src/ui-framework/mui/components/ReactSelect/src/lib/ReactSelect.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vip-git/universal-json-schema/HEAD/scripts/installer/frameworks/react/src/ui-framework/mui/components/ReactSelect/src/lib/ReactSelect.tsx -------------------------------------------------------------------------------- /scripts/installer/frameworks/react/src/ui-framework/mui/components/ReactSelect/src/react-select.props.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vip-git/universal-json-schema/HEAD/scripts/installer/frameworks/react/src/ui-framework/mui/components/ReactSelect/src/react-select.props.ts -------------------------------------------------------------------------------- /scripts/installer/frameworks/react/src/ui-framework/mui/components/ReactSelect/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vip-git/universal-json-schema/HEAD/scripts/installer/frameworks/react/src/ui-framework/mui/components/ReactSelect/tsconfig.json -------------------------------------------------------------------------------- /scripts/installer/frameworks/react/src/ui-framework/mui/components/RichTextEditor/.npmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vip-git/universal-json-schema/HEAD/scripts/installer/frameworks/react/src/ui-framework/mui/components/RichTextEditor/.npmignore -------------------------------------------------------------------------------- /scripts/installer/frameworks/react/src/ui-framework/mui/components/RichTextEditor/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vip-git/universal-json-schema/HEAD/scripts/installer/frameworks/react/src/ui-framework/mui/components/RichTextEditor/package.json -------------------------------------------------------------------------------- /scripts/installer/frameworks/react/src/ui-framework/mui/components/RichTextEditor/src/__tests__/RichTextEditor.spec.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vip-git/universal-json-schema/HEAD/scripts/installer/frameworks/react/src/ui-framework/mui/components/RichTextEditor/src/__tests__/RichTextEditor.spec.tsx -------------------------------------------------------------------------------- /scripts/installer/frameworks/react/src/ui-framework/mui/components/RichTextEditor/src/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vip-git/universal-json-schema/HEAD/scripts/installer/frameworks/react/src/ui-framework/mui/components/RichTextEditor/src/index.tsx -------------------------------------------------------------------------------- /scripts/installer/frameworks/react/src/ui-framework/mui/components/RichTextEditor/src/lib/RichText.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vip-git/universal-json-schema/HEAD/scripts/installer/frameworks/react/src/ui-framework/mui/components/RichTextEditor/src/lib/RichText.tsx -------------------------------------------------------------------------------- /scripts/installer/frameworks/react/src/ui-framework/mui/components/RichTextEditor/src/lib/WordCount.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vip-git/universal-json-schema/HEAD/scripts/installer/frameworks/react/src/ui-framework/mui/components/RichTextEditor/src/lib/WordCount.tsx -------------------------------------------------------------------------------- /scripts/installer/frameworks/react/src/ui-framework/mui/components/RichTextEditor/src/lib/components.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vip-git/universal-json-schema/HEAD/scripts/installer/frameworks/react/src/ui-framework/mui/components/RichTextEditor/src/lib/components.tsx -------------------------------------------------------------------------------- /scripts/installer/frameworks/react/src/ui-framework/mui/components/RichTextEditor/src/lib/value.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vip-git/universal-json-schema/HEAD/scripts/installer/frameworks/react/src/ui-framework/mui/components/RichTextEditor/src/lib/value.json -------------------------------------------------------------------------------- /scripts/installer/frameworks/react/src/ui-framework/mui/components/RichTextEditor/src/rich-text-editor.props.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vip-git/universal-json-schema/HEAD/scripts/installer/frameworks/react/src/ui-framework/mui/components/RichTextEditor/src/rich-text-editor.props.js -------------------------------------------------------------------------------- /scripts/installer/frameworks/react/src/ui-framework/mui/components/RichTextEditor/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vip-git/universal-json-schema/HEAD/scripts/installer/frameworks/react/src/ui-framework/mui/components/RichTextEditor/tsconfig.json -------------------------------------------------------------------------------- /scripts/installer/frameworks/react/src/ui-framework/mui/components/Slider/.npmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vip-git/universal-json-schema/HEAD/scripts/installer/frameworks/react/src/ui-framework/mui/components/Slider/.npmignore -------------------------------------------------------------------------------- /scripts/installer/frameworks/react/src/ui-framework/mui/components/Slider/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vip-git/universal-json-schema/HEAD/scripts/installer/frameworks/react/src/ui-framework/mui/components/Slider/package.json -------------------------------------------------------------------------------- /scripts/installer/frameworks/react/src/ui-framework/mui/components/Slider/src/__tests__/Slider.spec.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vip-git/universal-json-schema/HEAD/scripts/installer/frameworks/react/src/ui-framework/mui/components/Slider/src/__tests__/Slider.spec.tsx -------------------------------------------------------------------------------- /scripts/installer/frameworks/react/src/ui-framework/mui/components/Slider/src/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vip-git/universal-json-schema/HEAD/scripts/installer/frameworks/react/src/ui-framework/mui/components/Slider/src/index.tsx -------------------------------------------------------------------------------- /scripts/installer/frameworks/react/src/ui-framework/mui/components/Slider/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vip-git/universal-json-schema/HEAD/scripts/installer/frameworks/react/src/ui-framework/mui/components/Slider/tsconfig.json -------------------------------------------------------------------------------- /scripts/installer/frameworks/react/src/ui-framework/mui/components/Upload/.npmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vip-git/universal-json-schema/HEAD/scripts/installer/frameworks/react/src/ui-framework/mui/components/Upload/.npmignore -------------------------------------------------------------------------------- /scripts/installer/frameworks/react/src/ui-framework/mui/components/Upload/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vip-git/universal-json-schema/HEAD/scripts/installer/frameworks/react/src/ui-framework/mui/components/Upload/package.json -------------------------------------------------------------------------------- /scripts/installer/frameworks/react/src/ui-framework/mui/components/Upload/src/__tests__/Upload.spec.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vip-git/universal-json-schema/HEAD/scripts/installer/frameworks/react/src/ui-framework/mui/components/Upload/src/__tests__/Upload.spec.tsx -------------------------------------------------------------------------------- /scripts/installer/frameworks/react/src/ui-framework/mui/components/Upload/src/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vip-git/universal-json-schema/HEAD/scripts/installer/frameworks/react/src/ui-framework/mui/components/Upload/src/index.tsx -------------------------------------------------------------------------------- /scripts/installer/frameworks/react/src/ui-framework/mui/components/Upload/src/lib/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vip-git/universal-json-schema/HEAD/scripts/installer/frameworks/react/src/ui-framework/mui/components/Upload/src/lib/index.tsx -------------------------------------------------------------------------------- /scripts/installer/frameworks/react/src/ui-framework/mui/components/Upload/src/upload.props.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vip-git/universal-json-schema/HEAD/scripts/installer/frameworks/react/src/ui-framework/mui/components/Upload/src/upload.props.ts -------------------------------------------------------------------------------- /scripts/installer/frameworks/react/src/ui-framework/mui/components/Upload/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vip-git/universal-json-schema/HEAD/scripts/installer/frameworks/react/src/ui-framework/mui/components/Upload/tsconfig.json -------------------------------------------------------------------------------- /scripts/installer/frameworks/react/src/ui-framework/mui/form-buttons.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vip-git/universal-json-schema/HEAD/scripts/installer/frameworks/react/src/ui-framework/mui/form-buttons.tsx -------------------------------------------------------------------------------- /scripts/installer/frameworks/react/src/ui-framework/mui/form-context-wrapper.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vip-git/universal-json-schema/HEAD/scripts/installer/frameworks/react/src/ui-framework/mui/form-context-wrapper.tsx -------------------------------------------------------------------------------- /scripts/installer/frameworks/react/src/ui-framework/mui/platform-loading-wrapper.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vip-git/universal-json-schema/HEAD/scripts/installer/frameworks/react/src/ui-framework/mui/platform-loading-wrapper.tsx -------------------------------------------------------------------------------- /scripts/installer/frameworks/react/src/ui-framework/mui/platform-wrapper.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vip-git/universal-json-schema/HEAD/scripts/installer/frameworks/react/src/ui-framework/mui/platform-wrapper.tsx -------------------------------------------------------------------------------- /scripts/installer/frameworks/react/src/ui-framework/mui/styles/component-field-styles.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vip-git/universal-json-schema/HEAD/scripts/installer/frameworks/react/src/ui-framework/mui/styles/component-field-styles.ts -------------------------------------------------------------------------------- /scripts/installer/frameworks/react/src/ui-framework/mui/styles/field-set-styles.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vip-git/universal-json-schema/HEAD/scripts/installer/frameworks/react/src/ui-framework/mui/styles/field-set-styles.ts -------------------------------------------------------------------------------- /scripts/installer/frameworks/react/src/ui-framework/mui/styles/field-styles.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vip-git/universal-json-schema/HEAD/scripts/installer/frameworks/react/src/ui-framework/mui/styles/field-styles.ts -------------------------------------------------------------------------------- /scripts/installer/frameworks/react/src/ui-framework/mui/styles/form-field-styles.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vip-git/universal-json-schema/HEAD/scripts/installer/frameworks/react/src/ui-framework/mui/styles/form-field-styles.ts -------------------------------------------------------------------------------- /scripts/installer/frameworks/react/src/ui-framework/mui/styles/form-stepper-styles.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vip-git/universal-json-schema/HEAD/scripts/installer/frameworks/react/src/ui-framework/mui/styles/form-stepper-styles.ts -------------------------------------------------------------------------------- /scripts/installer/frameworks/react/src/ui-framework/mui/styles/form-styles.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vip-git/universal-json-schema/HEAD/scripts/installer/frameworks/react/src/ui-framework/mui/styles/form-styles.ts -------------------------------------------------------------------------------- /scripts/installer/frameworks/react/src/ui-framework/mui/validation-messages.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vip-git/universal-json-schema/HEAD/scripts/installer/frameworks/react/src/ui-framework/mui/validation-messages.tsx -------------------------------------------------------------------------------- /scripts/installer/frameworks/react/src/ui-framework/types/mui-framework.type.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vip-git/universal-json-schema/HEAD/scripts/installer/frameworks/react/src/ui-framework/types/mui-framework.type.ts -------------------------------------------------------------------------------- /scripts/installer/frameworks/stencil/form-wrapper.template.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vip-git/universal-json-schema/HEAD/scripts/installer/frameworks/stencil/form-wrapper.template.ts -------------------------------------------------------------------------------- /scripts/installer/frameworks/stencil/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vip-git/universal-json-schema/HEAD/scripts/installer/frameworks/stencil/package.json -------------------------------------------------------------------------------- /scripts/installer/frameworks/svelte/form-wrapper.template.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vip-git/universal-json-schema/HEAD/scripts/installer/frameworks/svelte/form-wrapper.template.ts -------------------------------------------------------------------------------- /scripts/installer/frameworks/svelte/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vip-git/universal-json-schema/HEAD/scripts/installer/frameworks/svelte/package.json -------------------------------------------------------------------------------- /scripts/installer/frameworks/vue/form-wrapper.template.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vip-git/universal-json-schema/HEAD/scripts/installer/frameworks/vue/form-wrapper.template.ts -------------------------------------------------------------------------------- /scripts/installer/frameworks/vue/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vip-git/universal-json-schema/HEAD/scripts/installer/frameworks/vue/package.json -------------------------------------------------------------------------------- /scripts/installer/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vip-git/universal-json-schema/HEAD/scripts/installer/index.ts -------------------------------------------------------------------------------- /src/__e2e__/page-objects/component-types/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vip-git/universal-json-schema/HEAD/src/__e2e__/page-objects/component-types/index.js -------------------------------------------------------------------------------- /src/__e2e__/page-objects/field-types/array-field.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vip-git/universal-json-schema/HEAD/src/__e2e__/page-objects/field-types/array-field.js -------------------------------------------------------------------------------- /src/__e2e__/page-objects/field-types/boolean-field.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vip-git/universal-json-schema/HEAD/src/__e2e__/page-objects/field-types/boolean-field.js -------------------------------------------------------------------------------- /src/__e2e__/page-objects/field-types/custom-field.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vip-git/universal-json-schema/HEAD/src/__e2e__/page-objects/field-types/custom-field.js -------------------------------------------------------------------------------- /src/__e2e__/page-objects/field-types/number-field.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vip-git/universal-json-schema/HEAD/src/__e2e__/page-objects/field-types/number-field.js -------------------------------------------------------------------------------- /src/__e2e__/page-objects/field-types/string-field.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vip-git/universal-json-schema/HEAD/src/__e2e__/page-objects/field-types/string-field.js -------------------------------------------------------------------------------- /src/__e2e__/page-objects/field-utils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vip-git/universal-json-schema/HEAD/src/__e2e__/page-objects/field-utils.js -------------------------------------------------------------------------------- /src/__e2e__/page-objects/form.page.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vip-git/universal-json-schema/HEAD/src/__e2e__/page-objects/form.page.js -------------------------------------------------------------------------------- /src/__e2e__/page-objects/page.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vip-git/universal-json-schema/HEAD/src/__e2e__/page-objects/page.js -------------------------------------------------------------------------------- /src/__e2e__/step-definitions/steps.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vip-git/universal-json-schema/HEAD/src/__e2e__/step-definitions/steps.js -------------------------------------------------------------------------------- /src/config/fieldset.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vip-git/universal-json-schema/HEAD/src/config/fieldset.config.ts -------------------------------------------------------------------------------- /src/config/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vip-git/universal-json-schema/HEAD/src/config/index.ts -------------------------------------------------------------------------------- /src/cross-framework-wrapper/angular/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/cross-framework-wrapper/react/FieldSet/FieldSet.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vip-git/universal-json-schema/HEAD/src/cross-framework-wrapper/react/FieldSet/FieldSet.tsx -------------------------------------------------------------------------------- /src/cross-framework-wrapper/react/FieldSet/FieldSetArray.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vip-git/universal-json-schema/HEAD/src/cross-framework-wrapper/react/FieldSet/FieldSetArray.tsx -------------------------------------------------------------------------------- /src/cross-framework-wrapper/react/FieldSet/FieldSetObject.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vip-git/universal-json-schema/HEAD/src/cross-framework-wrapper/react/FieldSet/FieldSetObject.tsx -------------------------------------------------------------------------------- /src/cross-framework-wrapper/react/FieldSet/FieldSetStepper.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vip-git/universal-json-schema/HEAD/src/cross-framework-wrapper/react/FieldSet/FieldSetStepper.tsx -------------------------------------------------------------------------------- /src/cross-framework-wrapper/react/FieldSet/FieldSetTabs.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vip-git/universal-json-schema/HEAD/src/cross-framework-wrapper/react/FieldSet/FieldSetTabs.tsx -------------------------------------------------------------------------------- /src/cross-framework-wrapper/react/FieldSet/ReorderControls.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vip-git/universal-json-schema/HEAD/src/cross-framework-wrapper/react/FieldSet/ReorderControls.tsx -------------------------------------------------------------------------------- /src/cross-framework-wrapper/react/FieldSet/ReorderableFormField.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vip-git/universal-json-schema/HEAD/src/cross-framework-wrapper/react/FieldSet/ReorderableFormField.tsx -------------------------------------------------------------------------------- /src/cross-framework-wrapper/react/FieldSet/__tests__/FieldSet.spec.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vip-git/universal-json-schema/HEAD/src/cross-framework-wrapper/react/FieldSet/__tests__/FieldSet.spec.tsx -------------------------------------------------------------------------------- /src/cross-framework-wrapper/react/FieldSet/__tests__/FieldSetStepper.spec.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vip-git/universal-json-schema/HEAD/src/cross-framework-wrapper/react/FieldSet/__tests__/FieldSetStepper.spec.tsx -------------------------------------------------------------------------------- /src/cross-framework-wrapper/react/FieldSet/__tests__/FieldSetTabs.spec.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vip-git/universal-json-schema/HEAD/src/cross-framework-wrapper/react/FieldSet/__tests__/FieldSetTabs.spec.tsx -------------------------------------------------------------------------------- /src/cross-framework-wrapper/react/FieldSet/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vip-git/universal-json-schema/HEAD/src/cross-framework-wrapper/react/FieldSet/index.js -------------------------------------------------------------------------------- /src/cross-framework-wrapper/react/FieldSet/variants/fieldset-array/field-array.variants.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vip-git/universal-json-schema/HEAD/src/cross-framework-wrapper/react/FieldSet/variants/fieldset-array/field-array.variants.tsx -------------------------------------------------------------------------------- /src/cross-framework-wrapper/react/FieldSet/variants/fieldset-array/field-array.wrappers.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vip-git/universal-json-schema/HEAD/src/cross-framework-wrapper/react/FieldSet/variants/fieldset-array/field-array.wrappers.tsx -------------------------------------------------------------------------------- /src/cross-framework-wrapper/react/FieldSet/variants/page-layout.variants.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vip-git/universal-json-schema/HEAD/src/cross-framework-wrapper/react/FieldSet/variants/page-layout.variants.tsx -------------------------------------------------------------------------------- /src/cross-framework-wrapper/react/FieldSet/variants/schema-type.variants.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vip-git/universal-json-schema/HEAD/src/cross-framework-wrapper/react/FieldSet/variants/schema-type.variants.tsx -------------------------------------------------------------------------------- /src/cross-framework-wrapper/react/Form.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vip-git/universal-json-schema/HEAD/src/cross-framework-wrapper/react/Form.tsx -------------------------------------------------------------------------------- /src/cross-framework-wrapper/react/FormField.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vip-git/universal-json-schema/HEAD/src/cross-framework-wrapper/react/FormField.tsx -------------------------------------------------------------------------------- /src/cross-framework-wrapper/react/__tests__/Form.spec.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vip-git/universal-json-schema/HEAD/src/cross-framework-wrapper/react/__tests__/Form.spec.tsx -------------------------------------------------------------------------------- /src/cross-framework-wrapper/react/__tests__/FormField.spec.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vip-git/universal-json-schema/HEAD/src/cross-framework-wrapper/react/__tests__/FormField.spec.tsx -------------------------------------------------------------------------------- /src/cross-framework-wrapper/react/fields/ConfiguredField.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vip-git/universal-json-schema/HEAD/src/cross-framework-wrapper/react/fields/ConfiguredField.tsx -------------------------------------------------------------------------------- /src/cross-framework-wrapper/react/fields/Field.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vip-git/universal-json-schema/HEAD/src/cross-framework-wrapper/react/fields/Field.tsx -------------------------------------------------------------------------------- /src/cross-framework-wrapper/react/fields/__tests__/Field.spec.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vip-git/universal-json-schema/HEAD/src/cross-framework-wrapper/react/fields/__tests__/Field.spec.tsx -------------------------------------------------------------------------------- /src/cross-framework-wrapper/react/fields/configure/__tests__/configure-component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vip-git/universal-json-schema/HEAD/src/cross-framework-wrapper/react/fields/configure/__tests__/configure-component.spec.ts -------------------------------------------------------------------------------- /src/cross-framework-wrapper/react/fields/configure/__tests__/dom-events.spec.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vip-git/universal-json-schema/HEAD/src/cross-framework-wrapper/react/fields/configure/__tests__/dom-events.spec.tsx -------------------------------------------------------------------------------- /src/cross-framework-wrapper/react/fields/configure/component.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vip-git/universal-json-schema/HEAD/src/cross-framework-wrapper/react/fields/configure/component.config.ts -------------------------------------------------------------------------------- /src/cross-framework-wrapper/react/fields/configure/component/__tests__/get-component.props.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vip-git/universal-json-schema/HEAD/src/cross-framework-wrapper/react/fields/configure/component/__tests__/get-component.props.spec.ts -------------------------------------------------------------------------------- /src/cross-framework-wrapper/react/fields/configure/component/__tests__/get-component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vip-git/universal-json-schema/HEAD/src/cross-framework-wrapper/react/fields/configure/component/__tests__/get-component.spec.ts -------------------------------------------------------------------------------- /src/cross-framework-wrapper/react/fields/configure/component/get-component-props.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vip-git/universal-json-schema/HEAD/src/cross-framework-wrapper/react/fields/configure/component/get-component-props.ts -------------------------------------------------------------------------------- /src/cross-framework-wrapper/react/fields/configure/component/get-component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vip-git/universal-json-schema/HEAD/src/cross-framework-wrapper/react/fields/configure/component/get-component.ts -------------------------------------------------------------------------------- /src/cross-framework-wrapper/react/fields/configure/configure-component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vip-git/universal-json-schema/HEAD/src/cross-framework-wrapper/react/fields/configure/configure-component.ts -------------------------------------------------------------------------------- /src/cross-framework-wrapper/react/fields/configure/index.ts: -------------------------------------------------------------------------------- 1 | export { default } from './configure-component'; 2 | -------------------------------------------------------------------------------- /src/cross-framework-wrapper/react/fields/configure/label/__tests__/get-label-component-props.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vip-git/universal-json-schema/HEAD/src/cross-framework-wrapper/react/fields/configure/label/__tests__/get-label-component-props.spec.ts -------------------------------------------------------------------------------- /src/cross-framework-wrapper/react/fields/configure/label/__tests__/get-label-component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vip-git/universal-json-schema/HEAD/src/cross-framework-wrapper/react/fields/configure/label/__tests__/get-label-component.spec.ts -------------------------------------------------------------------------------- /src/cross-framework-wrapper/react/fields/configure/label/get-label-component-props.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vip-git/universal-json-schema/HEAD/src/cross-framework-wrapper/react/fields/configure/label/get-label-component-props.ts -------------------------------------------------------------------------------- /src/cross-framework-wrapper/react/fields/configure/label/get-label-component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vip-git/universal-json-schema/HEAD/src/cross-framework-wrapper/react/fields/configure/label/get-label-component.ts -------------------------------------------------------------------------------- /src/cross-framework-wrapper/react/fields/index.ts: -------------------------------------------------------------------------------- 1 | export { default } from './Field'; 2 | -------------------------------------------------------------------------------- /src/cross-framework-wrapper/stencil/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/cross-framework-wrapper/svelte/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/cross-framework-wrapper/vue/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/helpers/__tests__/execute-xhr.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vip-git/universal-json-schema/HEAD/src/helpers/__tests__/execute-xhr.spec.ts -------------------------------------------------------------------------------- /src/helpers/__tests__/get-default-value.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vip-git/universal-json-schema/HEAD/src/helpers/__tests__/get-default-value.spec.ts -------------------------------------------------------------------------------- /src/helpers/__tests__/get-definition-schema.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vip-git/universal-json-schema/HEAD/src/helpers/__tests__/get-definition-schema.spec.ts -------------------------------------------------------------------------------- /src/helpers/__tests__/remove-values.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vip-git/universal-json-schema/HEAD/src/helpers/__tests__/remove-values.spec.ts -------------------------------------------------------------------------------- /src/helpers/__tests__/transform-schema.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vip-git/universal-json-schema/HEAD/src/helpers/__tests__/transform-schema.spec.ts -------------------------------------------------------------------------------- /src/helpers/__tests__/update-form-data.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vip-git/universal-json-schema/HEAD/src/helpers/__tests__/update-form-data.spec.ts -------------------------------------------------------------------------------- /src/helpers/context/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vip-git/universal-json-schema/HEAD/src/helpers/context/index.tsx -------------------------------------------------------------------------------- /src/helpers/enzyme-unit-test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vip-git/universal-json-schema/HEAD/src/helpers/enzyme-unit-test.tsx -------------------------------------------------------------------------------- /src/helpers/execute-xhr-call.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vip-git/universal-json-schema/HEAD/src/helpers/execute-xhr-call.ts -------------------------------------------------------------------------------- /src/helpers/get-default-value.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vip-git/universal-json-schema/HEAD/src/helpers/get-default-value.ts -------------------------------------------------------------------------------- /src/helpers/get-definition-schema-nodejs/__tests__/get-def-schema-nodejs.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vip-git/universal-json-schema/HEAD/src/helpers/get-definition-schema-nodejs/__tests__/get-def-schema-nodejs.spec.ts -------------------------------------------------------------------------------- /src/helpers/get-definition-schema-nodejs/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vip-git/universal-json-schema/HEAD/src/helpers/get-definition-schema-nodejs/index.js -------------------------------------------------------------------------------- /src/helpers/get-definition-schema.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vip-git/universal-json-schema/HEAD/src/helpers/get-definition-schema.ts -------------------------------------------------------------------------------- /src/helpers/remove-empty-values.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vip-git/universal-json-schema/HEAD/src/helpers/remove-empty-values.ts -------------------------------------------------------------------------------- /src/helpers/state-machine/create-state-machine.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vip-git/universal-json-schema/HEAD/src/helpers/state-machine/create-state-machine.ts -------------------------------------------------------------------------------- /src/helpers/state-machine/form/__tests__/form-state-guards.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vip-git/universal-json-schema/HEAD/src/helpers/state-machine/form/__tests__/form-state-guards.spec.ts -------------------------------------------------------------------------------- /src/helpers/state-machine/form/__tests__/form-state-machine.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vip-git/universal-json-schema/HEAD/src/helpers/state-machine/form/__tests__/form-state-machine.spec.ts -------------------------------------------------------------------------------- /src/helpers/state-machine/form/actions/__tests__/form-actions.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vip-git/universal-json-schema/HEAD/src/helpers/state-machine/form/actions/__tests__/form-actions.spec.ts -------------------------------------------------------------------------------- /src/helpers/state-machine/form/actions/form.actions.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vip-git/universal-json-schema/HEAD/src/helpers/state-machine/form/actions/form.actions.ts -------------------------------------------------------------------------------- /src/helpers/state-machine/form/actions/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vip-git/universal-json-schema/HEAD/src/helpers/state-machine/form/actions/index.ts -------------------------------------------------------------------------------- /src/helpers/state-machine/form/actions/stepper.actions.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vip-git/universal-json-schema/HEAD/src/helpers/state-machine/form/actions/stepper.actions.ts -------------------------------------------------------------------------------- /src/helpers/state-machine/form/config/form-state.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vip-git/universal-json-schema/HEAD/src/helpers/state-machine/form/config/form-state.config.ts -------------------------------------------------------------------------------- /src/helpers/state-machine/form/config/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vip-git/universal-json-schema/HEAD/src/helpers/state-machine/form/config/index.ts -------------------------------------------------------------------------------- /src/helpers/state-machine/form/config/stepper-state.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vip-git/universal-json-schema/HEAD/src/helpers/state-machine/form/config/stepper-state.config.ts -------------------------------------------------------------------------------- /src/helpers/state-machine/form/form-state.guards.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vip-git/universal-json-schema/HEAD/src/helpers/state-machine/form/form-state.guards.ts -------------------------------------------------------------------------------- /src/helpers/state-machine/form/hooks/__tests__/form-events-hooks.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vip-git/universal-json-schema/HEAD/src/helpers/state-machine/form/hooks/__tests__/form-events-hooks.spec.ts -------------------------------------------------------------------------------- /src/helpers/state-machine/form/hooks/__tests__/form-state-machine-hooks.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vip-git/universal-json-schema/HEAD/src/helpers/state-machine/form/hooks/__tests__/form-state-machine-hooks.spec.ts -------------------------------------------------------------------------------- /src/helpers/state-machine/form/hooks/__tests__/stepper-events-hooks.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vip-git/universal-json-schema/HEAD/src/helpers/state-machine/form/hooks/__tests__/stepper-events-hooks.spec.ts -------------------------------------------------------------------------------- /src/helpers/state-machine/form/hooks/form-events.hooks.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vip-git/universal-json-schema/HEAD/src/helpers/state-machine/form/hooks/form-events.hooks.ts -------------------------------------------------------------------------------- /src/helpers/state-machine/form/hooks/form-state-machine.hooks.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vip-git/universal-json-schema/HEAD/src/helpers/state-machine/form/hooks/form-state-machine.hooks.ts -------------------------------------------------------------------------------- /src/helpers/state-machine/form/hooks/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vip-git/universal-json-schema/HEAD/src/helpers/state-machine/form/hooks/index.ts -------------------------------------------------------------------------------- /src/helpers/state-machine/form/hooks/stepper-events.hooks.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vip-git/universal-json-schema/HEAD/src/helpers/state-machine/form/hooks/stepper-events.hooks.ts -------------------------------------------------------------------------------- /src/helpers/state-machine/form/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vip-git/universal-json-schema/HEAD/src/helpers/state-machine/form/index.ts -------------------------------------------------------------------------------- /src/helpers/state-machine/form/mutations/__tests__/form-state-mutations.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vip-git/universal-json-schema/HEAD/src/helpers/state-machine/form/mutations/__tests__/form-state-mutations.spec.ts -------------------------------------------------------------------------------- /src/helpers/state-machine/form/mutations/form-state.mutations.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vip-git/universal-json-schema/HEAD/src/helpers/state-machine/form/mutations/form-state.mutations.ts -------------------------------------------------------------------------------- /src/helpers/state-machine/form/mutations/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vip-git/universal-json-schema/HEAD/src/helpers/state-machine/form/mutations/index.ts -------------------------------------------------------------------------------- /src/helpers/state-machine/form/mutations/stepper-state.mutations.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vip-git/universal-json-schema/HEAD/src/helpers/state-machine/form/mutations/stepper-state.mutations.ts -------------------------------------------------------------------------------- /src/helpers/state-machine/helpers/get-hashcode-from-xhr-def.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vip-git/universal-json-schema/HEAD/src/helpers/state-machine/helpers/get-hashcode-from-xhr-def.ts -------------------------------------------------------------------------------- /src/helpers/state-machine/helpers/is-form-schema-state-valid.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vip-git/universal-json-schema/HEAD/src/helpers/state-machine/helpers/is-form-schema-state-valid.ts -------------------------------------------------------------------------------- /src/helpers/state-machine/helpers/persist-xhr-call.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vip-git/universal-json-schema/HEAD/src/helpers/state-machine/helpers/persist-xhr-call.ts -------------------------------------------------------------------------------- /src/helpers/state-machine/types/form-state-machine.type.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vip-git/universal-json-schema/HEAD/src/helpers/state-machine/types/form-state-machine.type.ts -------------------------------------------------------------------------------- /src/helpers/transform-schema.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vip-git/universal-json-schema/HEAD/src/helpers/transform-schema.ts -------------------------------------------------------------------------------- /src/helpers/update-form-data.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vip-git/universal-json-schema/HEAD/src/helpers/update-form-data.ts -------------------------------------------------------------------------------- /src/helpers/utils/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vip-git/universal-json-schema/HEAD/src/helpers/utils/index.ts -------------------------------------------------------------------------------- /src/helpers/validation/__tests__/get-validation-result.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vip-git/universal-json-schema/HEAD/src/helpers/validation/__tests__/get-validation-result.spec.ts -------------------------------------------------------------------------------- /src/helpers/validation/get-validation-result.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vip-git/universal-json-schema/HEAD/src/helpers/validation/get-validation-result.ts -------------------------------------------------------------------------------- /src/helpers/validation/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vip-git/universal-json-schema/HEAD/src/helpers/validation/index.ts -------------------------------------------------------------------------------- /src/helpers/validation/is-form-validated.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vip-git/universal-json-schema/HEAD/src/helpers/validation/is-form-validated.ts -------------------------------------------------------------------------------- /src/helpers/validation/rules/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vip-git/universal-json-schema/HEAD/src/helpers/validation/rules/index.ts -------------------------------------------------------------------------------- /src/helpers/validation/rules/max-length.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vip-git/universal-json-schema/HEAD/src/helpers/validation/rules/max-length.ts -------------------------------------------------------------------------------- /src/helpers/validation/rules/maximum.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vip-git/universal-json-schema/HEAD/src/helpers/validation/rules/maximum.ts -------------------------------------------------------------------------------- /src/helpers/validation/rules/min-length.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vip-git/universal-json-schema/HEAD/src/helpers/validation/rules/min-length.ts -------------------------------------------------------------------------------- /src/helpers/validation/rules/minimum.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vip-git/universal-json-schema/HEAD/src/helpers/validation/rules/minimum.ts -------------------------------------------------------------------------------- /src/helpers/validation/rules/pattern.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vip-git/universal-json-schema/HEAD/src/helpers/validation/rules/pattern.ts -------------------------------------------------------------------------------- /src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vip-git/universal-json-schema/HEAD/src/index.ts -------------------------------------------------------------------------------- /src/interceptors/translate-currency/.npmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vip-git/universal-json-schema/HEAD/src/interceptors/translate-currency/.npmignore -------------------------------------------------------------------------------- /src/interceptors/translate-currency/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vip-git/universal-json-schema/HEAD/src/interceptors/translate-currency/package.json -------------------------------------------------------------------------------- /src/interceptors/translate-currency/src/__tests__/translate-curreny.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vip-git/universal-json-schema/HEAD/src/interceptors/translate-currency/src/__tests__/translate-curreny.spec.ts -------------------------------------------------------------------------------- /src/interceptors/translate-currency/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vip-git/universal-json-schema/HEAD/src/interceptors/translate-currency/src/index.ts -------------------------------------------------------------------------------- /src/interceptors/translate-currency/src/index.type.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vip-git/universal-json-schema/HEAD/src/interceptors/translate-currency/src/index.type.ts -------------------------------------------------------------------------------- /src/interceptors/translate-currency/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vip-git/universal-json-schema/HEAD/src/interceptors/translate-currency/tsconfig.json -------------------------------------------------------------------------------- /src/interceptors/translate-range-date/.npmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vip-git/universal-json-schema/HEAD/src/interceptors/translate-range-date/.npmignore -------------------------------------------------------------------------------- /src/interceptors/translate-range-date/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vip-git/universal-json-schema/HEAD/src/interceptors/translate-range-date/package.json -------------------------------------------------------------------------------- /src/interceptors/translate-range-date/src/__tests__/translate-range-date.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vip-git/universal-json-schema/HEAD/src/interceptors/translate-range-date/src/__tests__/translate-range-date.spec.ts -------------------------------------------------------------------------------- /src/interceptors/translate-range-date/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vip-git/universal-json-schema/HEAD/src/interceptors/translate-range-date/src/index.ts -------------------------------------------------------------------------------- /src/interceptors/translate-range-date/src/index.type.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vip-git/universal-json-schema/HEAD/src/interceptors/translate-range-date/src/index.type.ts -------------------------------------------------------------------------------- /src/interceptors/translate-range-date/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vip-git/universal-json-schema/HEAD/src/interceptors/translate-range-date/tsconfig.json -------------------------------------------------------------------------------- /src/interceptors/translate-ratings/.npmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vip-git/universal-json-schema/HEAD/src/interceptors/translate-ratings/.npmignore -------------------------------------------------------------------------------- /src/interceptors/translate-ratings/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vip-git/universal-json-schema/HEAD/src/interceptors/translate-ratings/package.json -------------------------------------------------------------------------------- /src/interceptors/translate-ratings/src/__tests__/translate-ratings.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vip-git/universal-json-schema/HEAD/src/interceptors/translate-ratings/src/__tests__/translate-ratings.spec.ts -------------------------------------------------------------------------------- /src/interceptors/translate-ratings/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vip-git/universal-json-schema/HEAD/src/interceptors/translate-ratings/src/index.ts -------------------------------------------------------------------------------- /src/interceptors/translate-ratings/src/index.type.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vip-git/universal-json-schema/HEAD/src/interceptors/translate-ratings/src/index.type.ts -------------------------------------------------------------------------------- /src/interceptors/translate-ratings/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vip-git/universal-json-schema/HEAD/src/interceptors/translate-ratings/tsconfig.json -------------------------------------------------------------------------------- /src/parsers/enum-utils/.npmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vip-git/universal-json-schema/HEAD/src/parsers/enum-utils/.npmignore -------------------------------------------------------------------------------- /src/parsers/enum-utils/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vip-git/universal-json-schema/HEAD/src/parsers/enum-utils/package.json -------------------------------------------------------------------------------- /src/parsers/enum-utils/src/__tests__/enum-utils.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vip-git/universal-json-schema/HEAD/src/parsers/enum-utils/src/__tests__/enum-utils.spec.ts -------------------------------------------------------------------------------- /src/parsers/enum-utils/src/__tests__/values-to-options.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vip-git/universal-json-schema/HEAD/src/parsers/enum-utils/src/__tests__/values-to-options.spec.ts -------------------------------------------------------------------------------- /src/parsers/enum-utils/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vip-git/universal-json-schema/HEAD/src/parsers/enum-utils/src/index.ts -------------------------------------------------------------------------------- /src/parsers/enum-utils/src/values-to-options.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vip-git/universal-json-schema/HEAD/src/parsers/enum-utils/src/values-to-options.ts -------------------------------------------------------------------------------- /src/parsers/enum-utils/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vip-git/universal-json-schema/HEAD/src/parsers/enum-utils/tsconfig.json -------------------------------------------------------------------------------- /src/parsers/parse-values/.npmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vip-git/universal-json-schema/HEAD/src/parsers/parse-values/.npmignore -------------------------------------------------------------------------------- /src/parsers/parse-values/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vip-git/universal-json-schema/HEAD/src/parsers/parse-values/package.json -------------------------------------------------------------------------------- /src/parsers/parse-values/src/__tests__/parse-values.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vip-git/universal-json-schema/HEAD/src/parsers/parse-values/src/__tests__/parse-values.spec.ts -------------------------------------------------------------------------------- /src/parsers/parse-values/src/coerce-value.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vip-git/universal-json-schema/HEAD/src/parsers/parse-values/src/coerce-value.ts -------------------------------------------------------------------------------- /src/parsers/parse-values/src/deep-stringify.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vip-git/universal-json-schema/HEAD/src/parsers/parse-values/src/deep-stringify.ts -------------------------------------------------------------------------------- /src/parsers/parse-values/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vip-git/universal-json-schema/HEAD/src/parsers/parse-values/src/index.ts -------------------------------------------------------------------------------- /src/parsers/parse-values/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vip-git/universal-json-schema/HEAD/src/parsers/parse-values/tsconfig.json -------------------------------------------------------------------------------- /src/types/ConfiguredField.type.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vip-git/universal-json-schema/HEAD/src/types/ConfiguredField.type.ts -------------------------------------------------------------------------------- /src/types/Field.type.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vip-git/universal-json-schema/HEAD/src/types/Field.type.tsx -------------------------------------------------------------------------------- /src/types/FieldSet.type.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vip-git/universal-json-schema/HEAD/src/types/FieldSet.type.ts -------------------------------------------------------------------------------- /src/types/FieldSetArray.type.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vip-git/universal-json-schema/HEAD/src/types/FieldSetArray.type.ts -------------------------------------------------------------------------------- /src/types/FieldSetObject.type.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vip-git/universal-json-schema/HEAD/src/types/FieldSetObject.type.ts -------------------------------------------------------------------------------- /src/types/Form.type.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vip-git/universal-json-schema/HEAD/src/types/Form.type.ts -------------------------------------------------------------------------------- /src/types/FormField.type.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vip-git/universal-json-schema/HEAD/src/types/FormField.type.ts -------------------------------------------------------------------------------- /src/types/ReoderableFormField.type.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vip-git/universal-json-schema/HEAD/src/types/ReoderableFormField.type.ts -------------------------------------------------------------------------------- /src/types/ReorderControls.type.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vip-git/universal-json-schema/HEAD/src/types/ReorderControls.type.ts -------------------------------------------------------------------------------- /src/types/UISchema.type.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vip-git/universal-json-schema/HEAD/src/types/UISchema.type.ts -------------------------------------------------------------------------------- /src/types/configure/GetComponent.type.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vip-git/universal-json-schema/HEAD/src/types/configure/GetComponent.type.ts -------------------------------------------------------------------------------- /src/types/configure/GetComponentProps.type.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vip-git/universal-json-schema/HEAD/src/types/configure/GetComponentProps.type.ts -------------------------------------------------------------------------------- /src/types/configure/GetLabelComponentProps.type.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vip-git/universal-json-schema/HEAD/src/types/configure/GetLabelComponentProps.type.ts -------------------------------------------------------------------------------- /src/types/helpers/TransformSchema.type.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vip-git/universal-json-schema/HEAD/src/types/helpers/TransformSchema.type.ts -------------------------------------------------------------------------------- /src/types/shared/FormEvents.type.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vip-git/universal-json-schema/HEAD/src/types/shared/FormEvents.type.ts -------------------------------------------------------------------------------- /src/types/shared/MaterialuiProps.type.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vip-git/universal-json-schema/HEAD/src/types/shared/MaterialuiProps.type.ts -------------------------------------------------------------------------------- /src/types/shared/SchemaProps.type.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vip-git/universal-json-schema/HEAD/src/types/shared/SchemaProps.type.ts -------------------------------------------------------------------------------- /src/types/ui/UIPage.type.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vip-git/universal-json-schema/HEAD/src/types/ui/UIPage.type.ts -------------------------------------------------------------------------------- /src/types/ui/UIValidations.type.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vip-git/universal-json-schema/HEAD/src/types/ui/UIValidations.type.ts -------------------------------------------------------------------------------- /src/types/ui/UIWidget.type.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vip-git/universal-json-schema/HEAD/src/types/ui/UIWidget.type.ts -------------------------------------------------------------------------------- /src/universal-schema/framework.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vip-git/universal-json-schema/HEAD/src/universal-schema/framework.ts -------------------------------------------------------------------------------- /src/universal-schema/types/universal-schema-framework.type.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vip-git/universal-json-schema/HEAD/src/universal-schema/types/universal-schema-framework.type.ts -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vip-git/universal-json-schema/HEAD/tsconfig.json -------------------------------------------------------------------------------- /universal-json-schema.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vip-git/universal-json-schema/HEAD/universal-json-schema.md -------------------------------------------------------------------------------- /wdio-ci.conf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vip-git/universal-json-schema/HEAD/wdio-ci.conf.js -------------------------------------------------------------------------------- /wdio-package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vip-git/universal-json-schema/HEAD/wdio-package.json -------------------------------------------------------------------------------- /wdio-sauce-ci.conf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vip-git/universal-json-schema/HEAD/wdio-sauce-ci.conf.js -------------------------------------------------------------------------------- /wdio.conf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vip-git/universal-json-schema/HEAD/wdio.conf.js -------------------------------------------------------------------------------- /webpack.config.demo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vip-git/universal-json-schema/HEAD/webpack.config.demo.js -------------------------------------------------------------------------------- /webpack.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vip-git/universal-json-schema/HEAD/webpack.config.js -------------------------------------------------------------------------------- /webpack.out.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vip-git/universal-json-schema/HEAD/webpack.out.json --------------------------------------------------------------------------------