├── .babelrc ├── .editorconfig ├── .eslintrc ├── .gitignore ├── .npmignore ├── .yarn └── releases │ └── yarn-3.5.0.cjs ├── .yarnrc.yml ├── CHANGELOG.md ├── LICENSE ├── README.md ├── docs ├── .gitattributes ├── .gitignore ├── 404.md ├── CNAME ├── Dockerfile ├── Gemfile ├── _config.yml ├── _data │ └── nav_docs.yml ├── _includes │ ├── example.html │ └── nav_docs.html ├── _layouts │ ├── default.html │ ├── docs.html │ ├── examples-index.html │ └── single.html ├── docs │ ├── applying-filters.md │ ├── bulk-operations.md │ ├── creating-records.md │ ├── data-binding.md │ ├── datepicker.md │ ├── dynamic-columns.md │ ├── editing-grid-data.md │ ├── editors.md │ ├── filter-adapter.md │ ├── first-grid-component.md │ ├── form-example.md │ ├── form-express-api.md │ ├── form-interface.md │ ├── form-model.md │ ├── form-service.md │ ├── form-xhr-model.md │ ├── getting-started.md │ ├── grid-adapters.md │ ├── grid-columns.md │ ├── grid-component.md │ ├── grid-export.md │ ├── grid-express-api.md │ ├── grid-interface.md │ ├── grid-model-collection.md │ ├── grid-model-xhr.md │ ├── labels.md │ ├── list-express-api.md │ ├── list-model.md │ ├── list-xhr-model.md │ ├── overview.md │ ├── removing-records.md │ ├── select.md │ ├── server-db-connection.md │ ├── server-model.md │ ├── server-routes.md │ ├── server-side.md │ ├── server-validation.md │ ├── sorting-and-pagination.md │ ├── suggest-box.md │ ├── tutorial.md │ ├── validation-errors.md │ └── validator.md ├── examples │ └── index.md ├── index.md ├── readme.md └── static │ ├── bootstrap │ ├── css │ │ ├── bootstrap-theme.css │ │ ├── bootstrap-theme.css.map │ │ ├── bootstrap-theme.min.css │ │ ├── bootstrap.css │ │ ├── bootstrap.css.map │ │ └── bootstrap.min.css │ ├── fonts │ │ ├── glyphicons-halflings-regular.eot │ │ ├── glyphicons-halflings-regular.svg │ │ ├── glyphicons-halflings-regular.ttf │ │ ├── glyphicons-halflings-regular.woff │ │ └── glyphicons-halflings-regular.woff2 │ └── js │ │ ├── bootstrap.js │ │ ├── bootstrap.min.js │ │ └── npm.js │ ├── css │ ├── pygment_trac.css │ └── style.css │ ├── font-awesome │ ├── HELP-US-OUT.txt │ ├── css │ │ ├── font-awesome.css │ │ └── font-awesome.min.css │ ├── fonts │ │ ├── FontAwesome.otf │ │ ├── fontawesome-webfont.eot │ │ ├── fontawesome-webfont.svg │ │ ├── fontawesome-webfont.ttf │ │ ├── fontawesome-webfont.woff │ │ └── fontawesome-webfont.woff2 │ ├── less │ │ ├── animated.less │ │ ├── bordered-pulled.less │ │ ├── core.less │ │ ├── fixed-width.less │ │ ├── font-awesome.less │ │ ├── icons.less │ │ ├── larger.less │ │ ├── list.less │ │ ├── mixins.less │ │ ├── path.less │ │ ├── rotated-flipped.less │ │ ├── stacked.less │ │ └── variables.less │ └── scss │ │ ├── _animated.scss │ │ ├── _bordered-pulled.scss │ │ ├── _core.scss │ │ ├── _fixed-width.scss │ │ ├── _icons.scss │ │ ├── _larger.scss │ │ ├── _list.scss │ │ ├── _mixins.scss │ │ ├── _path.scss │ │ ├── _rotated-flipped.scss │ │ ├── _stacked.scss │ │ ├── _variables.scss │ │ └── font-awesome.scss │ ├── fonts │ ├── proximanova-regular.ttf │ ├── proximanova-soft-bold.ttf │ ├── proximanova-soft-medium.ttf │ ├── proximanova-soft-regular.ttf │ └── proximanova-soft-semibold.ttf │ └── images │ ├── download.png │ ├── example-1.png │ ├── favicon.ico │ ├── github.png │ ├── logo.jpg │ ├── quotes.jpg │ └── twitter.png ├── examples ├── applying-filters │ ├── .env │ ├── .yarn │ │ └── install-state.gz │ ├── package.json │ ├── public │ │ └── index.html │ ├── src │ │ ├── columns.js │ │ ├── components │ │ │ ├── FiltersForm.js │ │ │ └── MainComponent.js │ │ ├── index.js │ │ ├── main.css │ │ └── model.js │ └── yarn.lock ├── bulk-operations │ ├── .yarn │ │ └── install-state.gz │ ├── package.json │ ├── public │ │ ├── index.html │ │ └── manifest.json │ ├── src │ │ ├── columns.js │ │ ├── components │ │ │ └── MainComponent.js │ │ ├── index.js │ │ ├── main.css │ │ ├── model.js │ │ └── validator.js │ └── yarn.lock ├── creating-records │ ├── .yarn │ │ └── install-state.gz │ ├── package.json │ ├── public │ │ ├── index.html │ │ └── manifest.json │ ├── src │ │ ├── columns.js │ │ ├── components │ │ │ ├── CreateForm.js │ │ │ ├── FiltersForm.js │ │ │ └── MainComponent.js │ │ ├── index.js │ │ ├── main.css │ │ ├── model.js │ │ └── validator.js │ └── yarn.lock ├── data-binding │ ├── .yarn │ │ └── install-state.gz │ ├── package.json │ ├── public │ │ ├── index.html │ │ └── manifest.json │ ├── src │ │ ├── columns.js │ │ ├── components │ │ │ └── MainComponent.js │ │ ├── index.js │ │ ├── main.css │ │ ├── model.js │ │ └── validator.js │ └── yarn.lock ├── datepicker │ ├── .yarn │ │ └── install-state.gz │ ├── package.json │ ├── public │ │ ├── index.html │ │ └── manifest.json │ ├── src │ │ ├── components │ │ │ └── MainComponent.js │ │ ├── index.js │ │ └── main.css │ └── yarn.lock ├── dynamic-columns │ ├── .yarn │ │ └── install-state.gz │ ├── package.json │ ├── public │ │ ├── index.html │ │ └── manifest.json │ ├── src │ │ ├── columns.js │ │ ├── components │ │ │ ├── Form.js │ │ │ └── MainComponent.js │ │ ├── index.js │ │ ├── main.css │ │ ├── model.js │ │ └── validator.js │ └── yarn.lock ├── editing-grid-data │ ├── .yarn │ │ └── install-state.gz │ ├── package.json │ ├── public │ │ ├── index.html │ │ └── manifest.json │ ├── src │ │ ├── columns.js │ │ ├── components │ │ │ ├── FiltersForm.js │ │ │ └── MainComponent.js │ │ ├── index.js │ │ ├── main.css │ │ ├── model.js │ │ └── validator.js │ └── yarn.lock ├── final-example │ ├── .env │ ├── .yarn │ │ └── install-state.gz │ ├── package.json │ ├── public │ │ └── index.html │ ├── src │ │ ├── components │ │ │ ├── CreateForm.js │ │ │ ├── DynamicColumnsForm.js │ │ │ ├── EditRecordForm.js │ │ │ ├── FiltersForm.js │ │ │ ├── FormFields.js │ │ │ └── MainComponent.js │ │ ├── configs │ │ │ └── getColumns.js │ │ ├── gridModel.js │ │ ├── index.js │ │ ├── main.css │ │ ├── utils │ │ │ ├── generateInitialData.js │ │ │ ├── useGridSelect.js │ │ │ └── utils.js │ │ └── validator.js │ └── yarn.lock ├── first-grid-component │ ├── .yarn │ │ └── install-state.gz │ ├── package.json │ ├── public │ │ ├── index.html │ │ └── manifest.json │ ├── src │ │ ├── columns.js │ │ ├── components │ │ │ └── MainComponent.js │ │ ├── index.js │ │ ├── main.css │ │ └── model.js │ └── yarn.lock ├── form │ ├── .yarn │ │ └── install-state.gz │ ├── package.json │ ├── public │ │ ├── index.html │ │ └── manifest.json │ ├── src │ │ ├── columns.js │ │ ├── components │ │ │ ├── Form.js │ │ │ └── MainComponent.js │ │ ├── index.js │ │ ├── main.css │ │ ├── model.js │ │ └── validator.js │ └── yarn.lock ├── getting-started │ ├── .yarn │ │ └── install-state.gz │ ├── package.json │ ├── public │ │ ├── index.html │ │ └── manifest.json │ ├── src │ │ └── index.js │ └── yarn.lock ├── removing-records │ ├── .yarn │ │ └── install-state.gz │ ├── package.json │ ├── public │ │ ├── index.html │ │ └── manifest.json │ ├── src │ │ ├── columns.js │ │ ├── components │ │ │ ├── FiltersForm.js │ │ │ └── MainComponent.js │ │ ├── index.js │ │ ├── main.css │ │ ├── model.js │ │ └── validator.js │ └── yarn.lock ├── select │ ├── .yarn │ │ └── install-state.gz │ ├── package.json │ ├── public │ │ ├── index.html │ │ └── manifest.json │ ├── src │ │ ├── components │ │ │ └── MainComponent.js │ │ └── index.js │ └── yarn.lock ├── server-example │ ├── client │ │ ├── package.json │ │ ├── public │ │ │ ├── index.html │ │ │ └── manifest.json │ │ └── src │ │ │ ├── columns.js │ │ │ ├── components │ │ │ ├── CreateForm.js │ │ │ ├── FiltersForm.js │ │ │ └── MainComponent.js │ │ │ ├── index.js │ │ │ ├── main.css │ │ │ ├── model.js │ │ │ └── validator.js │ └── server │ │ ├── api │ │ ├── index.ts │ │ └── users │ │ │ ├── UserGridModel.ts │ │ │ ├── types.ts │ │ │ ├── userRouter.ts │ │ │ └── userValidator.ts │ │ ├── package.json │ │ ├── server.ts │ │ ├── sql │ │ ├── MySqlPool.ts │ │ └── UserTable.ts │ │ └── tsconfig.json ├── sorting-and-pagination │ ├── .yarn │ │ └── install-state.gz │ ├── package.json │ ├── public │ │ ├── index.html │ │ └── manifest.json │ ├── src │ │ ├── columns.js │ │ ├── components │ │ │ └── MainComponent.js │ │ ├── index.js │ │ ├── main.css │ │ └── model.js │ └── yarn.lock └── suggest-box-simple │ ├── .yarn │ └── install-state.gz │ ├── package.json │ ├── public │ ├── index.html │ └── manifest.json │ ├── src │ ├── columns.js │ ├── components │ │ └── MainComponent.js │ ├── countriesList.js │ ├── index.js │ ├── model.js │ └── validator.js │ └── yarn.lock ├── gulp ├── buildSite.js ├── clearSite.js ├── deploySite.js ├── release.js └── styleBundle.js ├── gulpfile.babel.js ├── package.json ├── scripts ├── build_examples.mjs ├── site_setup.sh └── site_start.sh ├── src ├── browser.ts ├── common.ts ├── common │ ├── EqualMap.ts │ ├── EventsModel.ts │ ├── __tests__ │ │ ├── assert-test.ts │ │ ├── throttle-test.ts │ │ └── utils-test.js │ ├── assert.ts │ ├── asyncServerRouteHandler.ts │ ├── callbackify.js │ ├── decorate.ts │ ├── defaultXhr.ts │ ├── error │ │ ├── ArgumentsError.ts │ │ ├── RequestError.ts │ │ └── ThrottleError.ts │ ├── mock-utils │ │ ├── createMockInstance.ts │ │ └── createMockedMethod.ts │ ├── parseJson.ts │ ├── setImmediate.js │ ├── throttle.ts │ ├── toPromise.js │ ├── types │ │ └── index.ts │ ├── utils.ts │ └── variables.ts ├── editors │ ├── Checkbox.tsx │ ├── DatePicker.tsx │ ├── Number.tsx │ ├── Select.tsx │ └── SuggestBox.tsx ├── form │ ├── AbstractFormModel.ts │ ├── FormExpressApi.ts │ ├── FormModel.ts │ ├── FormService.ts │ ├── FormXhrModel.ts │ ├── __tests__ │ │ └── FormService-test.js │ ├── adapters │ │ ├── GridToFormCreate.ts │ │ └── GridToFormUpdate.ts │ ├── connectForm.tsx │ ├── mixin.js │ ├── types │ │ ├── FormModelListenerArgsByEventName.ts │ │ ├── IFormModel.ts │ │ ├── IFormService.ts │ │ └── JsonFormApiResult.ts │ └── useForm.ts ├── grid │ ├── Component.tsx │ ├── PureGridComponent.tsx │ ├── __tests__ │ │ └── utils-test.ts │ ├── export │ │ ├── exportGridData.ts │ │ └── exporters │ │ │ ├── toCSV.ts │ │ │ └── toJSON.ts │ ├── models │ │ ├── AbstractGridModel.ts │ │ ├── GridCollectionModel.ts │ │ ├── GridExpressApi.ts │ │ ├── GridXhrModel.ts │ │ ├── __tests__ │ │ │ └── applyGridFilters-test.js │ │ ├── applyGridFilters.ts │ │ └── types │ │ │ ├── GridModelListenerArgsByEventName.ts │ │ │ ├── IGridModel.ts │ │ │ └── JsonGridApiResult.ts │ ├── types │ │ ├── GridColumns.ts │ │ └── IGridRef.ts │ └── utils.ts ├── list │ ├── AbstractListModel.ts │ ├── ListExpressApi.ts │ ├── ListXhrModel.ts │ └── types │ │ └── IListModel.ts ├── node.ts ├── portal │ └── Portal.tsx └── validation │ ├── DeprecatedValidator.ts │ ├── ValidationErrors.ts │ ├── Validator.ts │ ├── ValidatorBuilder.ts │ ├── __tests__ │ └── validation-test.ts │ ├── rules │ ├── __tests__ │ │ ├── date-test.ts │ │ ├── float-test.ts │ │ ├── integer-test.ts │ │ ├── notEmpty-test.ts │ │ ├── notNull-test.ts │ │ └── regExp.ts │ ├── boolean.ts │ ├── date.ts │ ├── enum.ts │ ├── float.ts │ ├── integer.ts │ ├── notEmpty.ts │ ├── notNull.ts │ ├── regExp.ts │ └── set.ts │ └── types │ ├── IValidator.ts │ └── ValidatorSettings.ts ├── themes └── base │ ├── img │ ├── cellTableSortAscending.png │ ├── cellTableSortDescending.png │ ├── loading.gif │ └── simplePager.png │ └── main.less ├── tsconfig.json └── yarn.lock /.babelrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/softindex/uikernel/HEAD/.babelrc -------------------------------------------------------------------------------- /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/softindex/uikernel/HEAD/.editorconfig -------------------------------------------------------------------------------- /.eslintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/softindex/uikernel/HEAD/.eslintrc -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/softindex/uikernel/HEAD/.gitignore -------------------------------------------------------------------------------- /.npmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/softindex/uikernel/HEAD/.npmignore -------------------------------------------------------------------------------- /.yarn/releases/yarn-3.5.0.cjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/softindex/uikernel/HEAD/.yarn/releases/yarn-3.5.0.cjs -------------------------------------------------------------------------------- /.yarnrc.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/softindex/uikernel/HEAD/.yarnrc.yml -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/softindex/uikernel/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/softindex/uikernel/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/softindex/uikernel/HEAD/README.md -------------------------------------------------------------------------------- /docs/.gitattributes: -------------------------------------------------------------------------------- 1 | _site merge=ours -------------------------------------------------------------------------------- /docs/.gitignore: -------------------------------------------------------------------------------- 1 | .idea 2 | lib 3 | dist 4 | node_modules 5 | Gemfile.lock 6 | -------------------------------------------------------------------------------- /docs/404.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/softindex/uikernel/HEAD/docs/404.md -------------------------------------------------------------------------------- /docs/CNAME: -------------------------------------------------------------------------------- 1 | uikernel.io -------------------------------------------------------------------------------- /docs/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/softindex/uikernel/HEAD/docs/Dockerfile -------------------------------------------------------------------------------- /docs/Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/softindex/uikernel/HEAD/docs/Gemfile -------------------------------------------------------------------------------- /docs/_config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/softindex/uikernel/HEAD/docs/_config.yml -------------------------------------------------------------------------------- /docs/_data/nav_docs.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/softindex/uikernel/HEAD/docs/_data/nav_docs.yml -------------------------------------------------------------------------------- /docs/_includes/example.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/softindex/uikernel/HEAD/docs/_includes/example.html -------------------------------------------------------------------------------- /docs/_includes/nav_docs.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/softindex/uikernel/HEAD/docs/_includes/nav_docs.html -------------------------------------------------------------------------------- /docs/_layouts/default.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/softindex/uikernel/HEAD/docs/_layouts/default.html -------------------------------------------------------------------------------- /docs/_layouts/docs.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/softindex/uikernel/HEAD/docs/_layouts/docs.html -------------------------------------------------------------------------------- /docs/_layouts/examples-index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/softindex/uikernel/HEAD/docs/_layouts/examples-index.html -------------------------------------------------------------------------------- /docs/_layouts/single.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/softindex/uikernel/HEAD/docs/_layouts/single.html -------------------------------------------------------------------------------- /docs/docs/applying-filters.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/softindex/uikernel/HEAD/docs/docs/applying-filters.md -------------------------------------------------------------------------------- /docs/docs/bulk-operations.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/softindex/uikernel/HEAD/docs/docs/bulk-operations.md -------------------------------------------------------------------------------- /docs/docs/creating-records.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/softindex/uikernel/HEAD/docs/docs/creating-records.md -------------------------------------------------------------------------------- /docs/docs/data-binding.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/softindex/uikernel/HEAD/docs/docs/data-binding.md -------------------------------------------------------------------------------- /docs/docs/datepicker.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/softindex/uikernel/HEAD/docs/docs/datepicker.md -------------------------------------------------------------------------------- /docs/docs/dynamic-columns.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/softindex/uikernel/HEAD/docs/docs/dynamic-columns.md -------------------------------------------------------------------------------- /docs/docs/editing-grid-data.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/softindex/uikernel/HEAD/docs/docs/editing-grid-data.md -------------------------------------------------------------------------------- /docs/docs/editors.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/softindex/uikernel/HEAD/docs/docs/editors.md -------------------------------------------------------------------------------- /docs/docs/filter-adapter.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/softindex/uikernel/HEAD/docs/docs/filter-adapter.md -------------------------------------------------------------------------------- /docs/docs/first-grid-component.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/softindex/uikernel/HEAD/docs/docs/first-grid-component.md -------------------------------------------------------------------------------- /docs/docs/form-example.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/softindex/uikernel/HEAD/docs/docs/form-example.md -------------------------------------------------------------------------------- /docs/docs/form-express-api.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/softindex/uikernel/HEAD/docs/docs/form-express-api.md -------------------------------------------------------------------------------- /docs/docs/form-interface.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/softindex/uikernel/HEAD/docs/docs/form-interface.md -------------------------------------------------------------------------------- /docs/docs/form-model.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/softindex/uikernel/HEAD/docs/docs/form-model.md -------------------------------------------------------------------------------- /docs/docs/form-service.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/softindex/uikernel/HEAD/docs/docs/form-service.md -------------------------------------------------------------------------------- /docs/docs/form-xhr-model.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/softindex/uikernel/HEAD/docs/docs/form-xhr-model.md -------------------------------------------------------------------------------- /docs/docs/getting-started.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/softindex/uikernel/HEAD/docs/docs/getting-started.md -------------------------------------------------------------------------------- /docs/docs/grid-adapters.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/softindex/uikernel/HEAD/docs/docs/grid-adapters.md -------------------------------------------------------------------------------- /docs/docs/grid-columns.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/softindex/uikernel/HEAD/docs/docs/grid-columns.md -------------------------------------------------------------------------------- /docs/docs/grid-component.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/softindex/uikernel/HEAD/docs/docs/grid-component.md -------------------------------------------------------------------------------- /docs/docs/grid-export.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/softindex/uikernel/HEAD/docs/docs/grid-export.md -------------------------------------------------------------------------------- /docs/docs/grid-express-api.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/softindex/uikernel/HEAD/docs/docs/grid-express-api.md -------------------------------------------------------------------------------- /docs/docs/grid-interface.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/softindex/uikernel/HEAD/docs/docs/grid-interface.md -------------------------------------------------------------------------------- /docs/docs/grid-model-collection.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/softindex/uikernel/HEAD/docs/docs/grid-model-collection.md -------------------------------------------------------------------------------- /docs/docs/grid-model-xhr.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/softindex/uikernel/HEAD/docs/docs/grid-model-xhr.md -------------------------------------------------------------------------------- /docs/docs/labels.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/softindex/uikernel/HEAD/docs/docs/labels.md -------------------------------------------------------------------------------- /docs/docs/list-express-api.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/softindex/uikernel/HEAD/docs/docs/list-express-api.md -------------------------------------------------------------------------------- /docs/docs/list-model.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/softindex/uikernel/HEAD/docs/docs/list-model.md -------------------------------------------------------------------------------- /docs/docs/list-xhr-model.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/softindex/uikernel/HEAD/docs/docs/list-xhr-model.md -------------------------------------------------------------------------------- /docs/docs/overview.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/softindex/uikernel/HEAD/docs/docs/overview.md -------------------------------------------------------------------------------- /docs/docs/removing-records.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/softindex/uikernel/HEAD/docs/docs/removing-records.md -------------------------------------------------------------------------------- /docs/docs/select.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/softindex/uikernel/HEAD/docs/docs/select.md -------------------------------------------------------------------------------- /docs/docs/server-db-connection.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/softindex/uikernel/HEAD/docs/docs/server-db-connection.md -------------------------------------------------------------------------------- /docs/docs/server-model.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/softindex/uikernel/HEAD/docs/docs/server-model.md -------------------------------------------------------------------------------- /docs/docs/server-routes.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/softindex/uikernel/HEAD/docs/docs/server-routes.md -------------------------------------------------------------------------------- /docs/docs/server-side.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/softindex/uikernel/HEAD/docs/docs/server-side.md -------------------------------------------------------------------------------- /docs/docs/server-validation.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/softindex/uikernel/HEAD/docs/docs/server-validation.md -------------------------------------------------------------------------------- /docs/docs/sorting-and-pagination.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/softindex/uikernel/HEAD/docs/docs/sorting-and-pagination.md -------------------------------------------------------------------------------- /docs/docs/suggest-box.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/softindex/uikernel/HEAD/docs/docs/suggest-box.md -------------------------------------------------------------------------------- /docs/docs/tutorial.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/softindex/uikernel/HEAD/docs/docs/tutorial.md -------------------------------------------------------------------------------- /docs/docs/validation-errors.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/softindex/uikernel/HEAD/docs/docs/validation-errors.md -------------------------------------------------------------------------------- /docs/docs/validator.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/softindex/uikernel/HEAD/docs/docs/validator.md -------------------------------------------------------------------------------- /docs/examples/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/softindex/uikernel/HEAD/docs/examples/index.md -------------------------------------------------------------------------------- /docs/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/softindex/uikernel/HEAD/docs/index.md -------------------------------------------------------------------------------- /docs/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/softindex/uikernel/HEAD/docs/readme.md -------------------------------------------------------------------------------- /docs/static/bootstrap/css/bootstrap-theme.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/softindex/uikernel/HEAD/docs/static/bootstrap/css/bootstrap-theme.css -------------------------------------------------------------------------------- /docs/static/bootstrap/css/bootstrap-theme.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/softindex/uikernel/HEAD/docs/static/bootstrap/css/bootstrap-theme.css.map -------------------------------------------------------------------------------- /docs/static/bootstrap/css/bootstrap-theme.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/softindex/uikernel/HEAD/docs/static/bootstrap/css/bootstrap-theme.min.css -------------------------------------------------------------------------------- /docs/static/bootstrap/css/bootstrap.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/softindex/uikernel/HEAD/docs/static/bootstrap/css/bootstrap.css -------------------------------------------------------------------------------- /docs/static/bootstrap/css/bootstrap.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/softindex/uikernel/HEAD/docs/static/bootstrap/css/bootstrap.css.map -------------------------------------------------------------------------------- /docs/static/bootstrap/css/bootstrap.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/softindex/uikernel/HEAD/docs/static/bootstrap/css/bootstrap.min.css -------------------------------------------------------------------------------- /docs/static/bootstrap/fonts/glyphicons-halflings-regular.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/softindex/uikernel/HEAD/docs/static/bootstrap/fonts/glyphicons-halflings-regular.eot -------------------------------------------------------------------------------- /docs/static/bootstrap/fonts/glyphicons-halflings-regular.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/softindex/uikernel/HEAD/docs/static/bootstrap/fonts/glyphicons-halflings-regular.svg -------------------------------------------------------------------------------- /docs/static/bootstrap/fonts/glyphicons-halflings-regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/softindex/uikernel/HEAD/docs/static/bootstrap/fonts/glyphicons-halflings-regular.ttf -------------------------------------------------------------------------------- /docs/static/bootstrap/fonts/glyphicons-halflings-regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/softindex/uikernel/HEAD/docs/static/bootstrap/fonts/glyphicons-halflings-regular.woff -------------------------------------------------------------------------------- /docs/static/bootstrap/fonts/glyphicons-halflings-regular.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/softindex/uikernel/HEAD/docs/static/bootstrap/fonts/glyphicons-halflings-regular.woff2 -------------------------------------------------------------------------------- /docs/static/bootstrap/js/bootstrap.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/softindex/uikernel/HEAD/docs/static/bootstrap/js/bootstrap.js -------------------------------------------------------------------------------- /docs/static/bootstrap/js/bootstrap.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/softindex/uikernel/HEAD/docs/static/bootstrap/js/bootstrap.min.js -------------------------------------------------------------------------------- /docs/static/bootstrap/js/npm.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/softindex/uikernel/HEAD/docs/static/bootstrap/js/npm.js -------------------------------------------------------------------------------- /docs/static/css/pygment_trac.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/softindex/uikernel/HEAD/docs/static/css/pygment_trac.css -------------------------------------------------------------------------------- /docs/static/css/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/softindex/uikernel/HEAD/docs/static/css/style.css -------------------------------------------------------------------------------- /docs/static/font-awesome/HELP-US-OUT.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/softindex/uikernel/HEAD/docs/static/font-awesome/HELP-US-OUT.txt -------------------------------------------------------------------------------- /docs/static/font-awesome/css/font-awesome.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/softindex/uikernel/HEAD/docs/static/font-awesome/css/font-awesome.css -------------------------------------------------------------------------------- /docs/static/font-awesome/css/font-awesome.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/softindex/uikernel/HEAD/docs/static/font-awesome/css/font-awesome.min.css -------------------------------------------------------------------------------- /docs/static/font-awesome/fonts/FontAwesome.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/softindex/uikernel/HEAD/docs/static/font-awesome/fonts/FontAwesome.otf -------------------------------------------------------------------------------- /docs/static/font-awesome/fonts/fontawesome-webfont.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/softindex/uikernel/HEAD/docs/static/font-awesome/fonts/fontawesome-webfont.eot -------------------------------------------------------------------------------- /docs/static/font-awesome/fonts/fontawesome-webfont.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/softindex/uikernel/HEAD/docs/static/font-awesome/fonts/fontawesome-webfont.svg -------------------------------------------------------------------------------- /docs/static/font-awesome/fonts/fontawesome-webfont.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/softindex/uikernel/HEAD/docs/static/font-awesome/fonts/fontawesome-webfont.ttf -------------------------------------------------------------------------------- /docs/static/font-awesome/fonts/fontawesome-webfont.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/softindex/uikernel/HEAD/docs/static/font-awesome/fonts/fontawesome-webfont.woff -------------------------------------------------------------------------------- /docs/static/font-awesome/fonts/fontawesome-webfont.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/softindex/uikernel/HEAD/docs/static/font-awesome/fonts/fontawesome-webfont.woff2 -------------------------------------------------------------------------------- /docs/static/font-awesome/less/animated.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/softindex/uikernel/HEAD/docs/static/font-awesome/less/animated.less -------------------------------------------------------------------------------- /docs/static/font-awesome/less/bordered-pulled.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/softindex/uikernel/HEAD/docs/static/font-awesome/less/bordered-pulled.less -------------------------------------------------------------------------------- /docs/static/font-awesome/less/core.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/softindex/uikernel/HEAD/docs/static/font-awesome/less/core.less -------------------------------------------------------------------------------- /docs/static/font-awesome/less/fixed-width.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/softindex/uikernel/HEAD/docs/static/font-awesome/less/fixed-width.less -------------------------------------------------------------------------------- /docs/static/font-awesome/less/font-awesome.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/softindex/uikernel/HEAD/docs/static/font-awesome/less/font-awesome.less -------------------------------------------------------------------------------- /docs/static/font-awesome/less/icons.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/softindex/uikernel/HEAD/docs/static/font-awesome/less/icons.less -------------------------------------------------------------------------------- /docs/static/font-awesome/less/larger.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/softindex/uikernel/HEAD/docs/static/font-awesome/less/larger.less -------------------------------------------------------------------------------- /docs/static/font-awesome/less/list.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/softindex/uikernel/HEAD/docs/static/font-awesome/less/list.less -------------------------------------------------------------------------------- /docs/static/font-awesome/less/mixins.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/softindex/uikernel/HEAD/docs/static/font-awesome/less/mixins.less -------------------------------------------------------------------------------- /docs/static/font-awesome/less/path.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/softindex/uikernel/HEAD/docs/static/font-awesome/less/path.less -------------------------------------------------------------------------------- /docs/static/font-awesome/less/rotated-flipped.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/softindex/uikernel/HEAD/docs/static/font-awesome/less/rotated-flipped.less -------------------------------------------------------------------------------- /docs/static/font-awesome/less/stacked.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/softindex/uikernel/HEAD/docs/static/font-awesome/less/stacked.less -------------------------------------------------------------------------------- /docs/static/font-awesome/less/variables.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/softindex/uikernel/HEAD/docs/static/font-awesome/less/variables.less -------------------------------------------------------------------------------- /docs/static/font-awesome/scss/_animated.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/softindex/uikernel/HEAD/docs/static/font-awesome/scss/_animated.scss -------------------------------------------------------------------------------- /docs/static/font-awesome/scss/_bordered-pulled.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/softindex/uikernel/HEAD/docs/static/font-awesome/scss/_bordered-pulled.scss -------------------------------------------------------------------------------- /docs/static/font-awesome/scss/_core.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/softindex/uikernel/HEAD/docs/static/font-awesome/scss/_core.scss -------------------------------------------------------------------------------- /docs/static/font-awesome/scss/_fixed-width.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/softindex/uikernel/HEAD/docs/static/font-awesome/scss/_fixed-width.scss -------------------------------------------------------------------------------- /docs/static/font-awesome/scss/_icons.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/softindex/uikernel/HEAD/docs/static/font-awesome/scss/_icons.scss -------------------------------------------------------------------------------- /docs/static/font-awesome/scss/_larger.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/softindex/uikernel/HEAD/docs/static/font-awesome/scss/_larger.scss -------------------------------------------------------------------------------- /docs/static/font-awesome/scss/_list.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/softindex/uikernel/HEAD/docs/static/font-awesome/scss/_list.scss -------------------------------------------------------------------------------- /docs/static/font-awesome/scss/_mixins.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/softindex/uikernel/HEAD/docs/static/font-awesome/scss/_mixins.scss -------------------------------------------------------------------------------- /docs/static/font-awesome/scss/_path.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/softindex/uikernel/HEAD/docs/static/font-awesome/scss/_path.scss -------------------------------------------------------------------------------- /docs/static/font-awesome/scss/_rotated-flipped.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/softindex/uikernel/HEAD/docs/static/font-awesome/scss/_rotated-flipped.scss -------------------------------------------------------------------------------- /docs/static/font-awesome/scss/_stacked.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/softindex/uikernel/HEAD/docs/static/font-awesome/scss/_stacked.scss -------------------------------------------------------------------------------- /docs/static/font-awesome/scss/_variables.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/softindex/uikernel/HEAD/docs/static/font-awesome/scss/_variables.scss -------------------------------------------------------------------------------- /docs/static/font-awesome/scss/font-awesome.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/softindex/uikernel/HEAD/docs/static/font-awesome/scss/font-awesome.scss -------------------------------------------------------------------------------- /docs/static/fonts/proximanova-regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/softindex/uikernel/HEAD/docs/static/fonts/proximanova-regular.ttf -------------------------------------------------------------------------------- /docs/static/fonts/proximanova-soft-bold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/softindex/uikernel/HEAD/docs/static/fonts/proximanova-soft-bold.ttf -------------------------------------------------------------------------------- /docs/static/fonts/proximanova-soft-medium.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/softindex/uikernel/HEAD/docs/static/fonts/proximanova-soft-medium.ttf -------------------------------------------------------------------------------- /docs/static/fonts/proximanova-soft-regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/softindex/uikernel/HEAD/docs/static/fonts/proximanova-soft-regular.ttf -------------------------------------------------------------------------------- /docs/static/fonts/proximanova-soft-semibold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/softindex/uikernel/HEAD/docs/static/fonts/proximanova-soft-semibold.ttf -------------------------------------------------------------------------------- /docs/static/images/download.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/softindex/uikernel/HEAD/docs/static/images/download.png -------------------------------------------------------------------------------- /docs/static/images/example-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/softindex/uikernel/HEAD/docs/static/images/example-1.png -------------------------------------------------------------------------------- /docs/static/images/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/softindex/uikernel/HEAD/docs/static/images/favicon.ico -------------------------------------------------------------------------------- /docs/static/images/github.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/softindex/uikernel/HEAD/docs/static/images/github.png -------------------------------------------------------------------------------- /docs/static/images/logo.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/softindex/uikernel/HEAD/docs/static/images/logo.jpg -------------------------------------------------------------------------------- /docs/static/images/quotes.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/softindex/uikernel/HEAD/docs/static/images/quotes.jpg -------------------------------------------------------------------------------- /docs/static/images/twitter.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/softindex/uikernel/HEAD/docs/static/images/twitter.png -------------------------------------------------------------------------------- /examples/applying-filters/.env: -------------------------------------------------------------------------------- 1 | SKIP_PREFLIGHT_CHECK=true -------------------------------------------------------------------------------- /examples/applying-filters/.yarn/install-state.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/softindex/uikernel/HEAD/examples/applying-filters/.yarn/install-state.gz -------------------------------------------------------------------------------- /examples/applying-filters/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/softindex/uikernel/HEAD/examples/applying-filters/package.json -------------------------------------------------------------------------------- /examples/applying-filters/public/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/softindex/uikernel/HEAD/examples/applying-filters/public/index.html -------------------------------------------------------------------------------- /examples/applying-filters/src/columns.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/softindex/uikernel/HEAD/examples/applying-filters/src/columns.js -------------------------------------------------------------------------------- /examples/applying-filters/src/components/FiltersForm.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/softindex/uikernel/HEAD/examples/applying-filters/src/components/FiltersForm.js -------------------------------------------------------------------------------- /examples/applying-filters/src/components/MainComponent.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/softindex/uikernel/HEAD/examples/applying-filters/src/components/MainComponent.js -------------------------------------------------------------------------------- /examples/applying-filters/src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/softindex/uikernel/HEAD/examples/applying-filters/src/index.js -------------------------------------------------------------------------------- /examples/applying-filters/src/main.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/softindex/uikernel/HEAD/examples/applying-filters/src/main.css -------------------------------------------------------------------------------- /examples/applying-filters/src/model.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/softindex/uikernel/HEAD/examples/applying-filters/src/model.js -------------------------------------------------------------------------------- /examples/applying-filters/yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/softindex/uikernel/HEAD/examples/applying-filters/yarn.lock -------------------------------------------------------------------------------- /examples/bulk-operations/.yarn/install-state.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/softindex/uikernel/HEAD/examples/bulk-operations/.yarn/install-state.gz -------------------------------------------------------------------------------- /examples/bulk-operations/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/softindex/uikernel/HEAD/examples/bulk-operations/package.json -------------------------------------------------------------------------------- /examples/bulk-operations/public/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/softindex/uikernel/HEAD/examples/bulk-operations/public/index.html -------------------------------------------------------------------------------- /examples/bulk-operations/public/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/softindex/uikernel/HEAD/examples/bulk-operations/public/manifest.json -------------------------------------------------------------------------------- /examples/bulk-operations/src/columns.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/softindex/uikernel/HEAD/examples/bulk-operations/src/columns.js -------------------------------------------------------------------------------- /examples/bulk-operations/src/components/MainComponent.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/softindex/uikernel/HEAD/examples/bulk-operations/src/components/MainComponent.js -------------------------------------------------------------------------------- /examples/bulk-operations/src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/softindex/uikernel/HEAD/examples/bulk-operations/src/index.js -------------------------------------------------------------------------------- /examples/bulk-operations/src/main.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/softindex/uikernel/HEAD/examples/bulk-operations/src/main.css -------------------------------------------------------------------------------- /examples/bulk-operations/src/model.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/softindex/uikernel/HEAD/examples/bulk-operations/src/model.js -------------------------------------------------------------------------------- /examples/bulk-operations/src/validator.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/softindex/uikernel/HEAD/examples/bulk-operations/src/validator.js -------------------------------------------------------------------------------- /examples/bulk-operations/yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/softindex/uikernel/HEAD/examples/bulk-operations/yarn.lock -------------------------------------------------------------------------------- /examples/creating-records/.yarn/install-state.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/softindex/uikernel/HEAD/examples/creating-records/.yarn/install-state.gz -------------------------------------------------------------------------------- /examples/creating-records/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/softindex/uikernel/HEAD/examples/creating-records/package.json -------------------------------------------------------------------------------- /examples/creating-records/public/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/softindex/uikernel/HEAD/examples/creating-records/public/index.html -------------------------------------------------------------------------------- /examples/creating-records/public/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/softindex/uikernel/HEAD/examples/creating-records/public/manifest.json -------------------------------------------------------------------------------- /examples/creating-records/src/columns.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/softindex/uikernel/HEAD/examples/creating-records/src/columns.js -------------------------------------------------------------------------------- /examples/creating-records/src/components/CreateForm.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/softindex/uikernel/HEAD/examples/creating-records/src/components/CreateForm.js -------------------------------------------------------------------------------- /examples/creating-records/src/components/FiltersForm.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/softindex/uikernel/HEAD/examples/creating-records/src/components/FiltersForm.js -------------------------------------------------------------------------------- /examples/creating-records/src/components/MainComponent.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/softindex/uikernel/HEAD/examples/creating-records/src/components/MainComponent.js -------------------------------------------------------------------------------- /examples/creating-records/src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/softindex/uikernel/HEAD/examples/creating-records/src/index.js -------------------------------------------------------------------------------- /examples/creating-records/src/main.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/softindex/uikernel/HEAD/examples/creating-records/src/main.css -------------------------------------------------------------------------------- /examples/creating-records/src/model.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/softindex/uikernel/HEAD/examples/creating-records/src/model.js -------------------------------------------------------------------------------- /examples/creating-records/src/validator.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/softindex/uikernel/HEAD/examples/creating-records/src/validator.js -------------------------------------------------------------------------------- /examples/creating-records/yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/softindex/uikernel/HEAD/examples/creating-records/yarn.lock -------------------------------------------------------------------------------- /examples/data-binding/.yarn/install-state.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/softindex/uikernel/HEAD/examples/data-binding/.yarn/install-state.gz -------------------------------------------------------------------------------- /examples/data-binding/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/softindex/uikernel/HEAD/examples/data-binding/package.json -------------------------------------------------------------------------------- /examples/data-binding/public/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/softindex/uikernel/HEAD/examples/data-binding/public/index.html -------------------------------------------------------------------------------- /examples/data-binding/public/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/softindex/uikernel/HEAD/examples/data-binding/public/manifest.json -------------------------------------------------------------------------------- /examples/data-binding/src/columns.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/softindex/uikernel/HEAD/examples/data-binding/src/columns.js -------------------------------------------------------------------------------- /examples/data-binding/src/components/MainComponent.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/softindex/uikernel/HEAD/examples/data-binding/src/components/MainComponent.js -------------------------------------------------------------------------------- /examples/data-binding/src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/softindex/uikernel/HEAD/examples/data-binding/src/index.js -------------------------------------------------------------------------------- /examples/data-binding/src/main.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/softindex/uikernel/HEAD/examples/data-binding/src/main.css -------------------------------------------------------------------------------- /examples/data-binding/src/model.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/softindex/uikernel/HEAD/examples/data-binding/src/model.js -------------------------------------------------------------------------------- /examples/data-binding/src/validator.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/softindex/uikernel/HEAD/examples/data-binding/src/validator.js -------------------------------------------------------------------------------- /examples/data-binding/yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/softindex/uikernel/HEAD/examples/data-binding/yarn.lock -------------------------------------------------------------------------------- /examples/datepicker/.yarn/install-state.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/softindex/uikernel/HEAD/examples/datepicker/.yarn/install-state.gz -------------------------------------------------------------------------------- /examples/datepicker/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/softindex/uikernel/HEAD/examples/datepicker/package.json -------------------------------------------------------------------------------- /examples/datepicker/public/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/softindex/uikernel/HEAD/examples/datepicker/public/index.html -------------------------------------------------------------------------------- /examples/datepicker/public/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/softindex/uikernel/HEAD/examples/datepicker/public/manifest.json -------------------------------------------------------------------------------- /examples/datepicker/src/components/MainComponent.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/softindex/uikernel/HEAD/examples/datepicker/src/components/MainComponent.js -------------------------------------------------------------------------------- /examples/datepicker/src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/softindex/uikernel/HEAD/examples/datepicker/src/index.js -------------------------------------------------------------------------------- /examples/datepicker/src/main.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/softindex/uikernel/HEAD/examples/datepicker/src/main.css -------------------------------------------------------------------------------- /examples/datepicker/yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/softindex/uikernel/HEAD/examples/datepicker/yarn.lock -------------------------------------------------------------------------------- /examples/dynamic-columns/.yarn/install-state.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/softindex/uikernel/HEAD/examples/dynamic-columns/.yarn/install-state.gz -------------------------------------------------------------------------------- /examples/dynamic-columns/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/softindex/uikernel/HEAD/examples/dynamic-columns/package.json -------------------------------------------------------------------------------- /examples/dynamic-columns/public/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/softindex/uikernel/HEAD/examples/dynamic-columns/public/index.html -------------------------------------------------------------------------------- /examples/dynamic-columns/public/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/softindex/uikernel/HEAD/examples/dynamic-columns/public/manifest.json -------------------------------------------------------------------------------- /examples/dynamic-columns/src/columns.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/softindex/uikernel/HEAD/examples/dynamic-columns/src/columns.js -------------------------------------------------------------------------------- /examples/dynamic-columns/src/components/Form.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/softindex/uikernel/HEAD/examples/dynamic-columns/src/components/Form.js -------------------------------------------------------------------------------- /examples/dynamic-columns/src/components/MainComponent.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/softindex/uikernel/HEAD/examples/dynamic-columns/src/components/MainComponent.js -------------------------------------------------------------------------------- /examples/dynamic-columns/src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/softindex/uikernel/HEAD/examples/dynamic-columns/src/index.js -------------------------------------------------------------------------------- /examples/dynamic-columns/src/main.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/softindex/uikernel/HEAD/examples/dynamic-columns/src/main.css -------------------------------------------------------------------------------- /examples/dynamic-columns/src/model.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/softindex/uikernel/HEAD/examples/dynamic-columns/src/model.js -------------------------------------------------------------------------------- /examples/dynamic-columns/src/validator.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/softindex/uikernel/HEAD/examples/dynamic-columns/src/validator.js -------------------------------------------------------------------------------- /examples/dynamic-columns/yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/softindex/uikernel/HEAD/examples/dynamic-columns/yarn.lock -------------------------------------------------------------------------------- /examples/editing-grid-data/.yarn/install-state.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/softindex/uikernel/HEAD/examples/editing-grid-data/.yarn/install-state.gz -------------------------------------------------------------------------------- /examples/editing-grid-data/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/softindex/uikernel/HEAD/examples/editing-grid-data/package.json -------------------------------------------------------------------------------- /examples/editing-grid-data/public/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/softindex/uikernel/HEAD/examples/editing-grid-data/public/index.html -------------------------------------------------------------------------------- /examples/editing-grid-data/public/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/softindex/uikernel/HEAD/examples/editing-grid-data/public/manifest.json -------------------------------------------------------------------------------- /examples/editing-grid-data/src/columns.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/softindex/uikernel/HEAD/examples/editing-grid-data/src/columns.js -------------------------------------------------------------------------------- /examples/editing-grid-data/src/components/FiltersForm.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/softindex/uikernel/HEAD/examples/editing-grid-data/src/components/FiltersForm.js -------------------------------------------------------------------------------- /examples/editing-grid-data/src/components/MainComponent.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/softindex/uikernel/HEAD/examples/editing-grid-data/src/components/MainComponent.js -------------------------------------------------------------------------------- /examples/editing-grid-data/src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/softindex/uikernel/HEAD/examples/editing-grid-data/src/index.js -------------------------------------------------------------------------------- /examples/editing-grid-data/src/main.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/softindex/uikernel/HEAD/examples/editing-grid-data/src/main.css -------------------------------------------------------------------------------- /examples/editing-grid-data/src/model.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/softindex/uikernel/HEAD/examples/editing-grid-data/src/model.js -------------------------------------------------------------------------------- /examples/editing-grid-data/src/validator.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/softindex/uikernel/HEAD/examples/editing-grid-data/src/validator.js -------------------------------------------------------------------------------- /examples/editing-grid-data/yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/softindex/uikernel/HEAD/examples/editing-grid-data/yarn.lock -------------------------------------------------------------------------------- /examples/final-example/.env: -------------------------------------------------------------------------------- 1 | SKIP_PREFLIGHT_CHECK=true -------------------------------------------------------------------------------- /examples/final-example/.yarn/install-state.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/softindex/uikernel/HEAD/examples/final-example/.yarn/install-state.gz -------------------------------------------------------------------------------- /examples/final-example/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/softindex/uikernel/HEAD/examples/final-example/package.json -------------------------------------------------------------------------------- /examples/final-example/public/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/softindex/uikernel/HEAD/examples/final-example/public/index.html -------------------------------------------------------------------------------- /examples/final-example/src/components/CreateForm.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/softindex/uikernel/HEAD/examples/final-example/src/components/CreateForm.js -------------------------------------------------------------------------------- /examples/final-example/src/components/DynamicColumnsForm.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/softindex/uikernel/HEAD/examples/final-example/src/components/DynamicColumnsForm.js -------------------------------------------------------------------------------- /examples/final-example/src/components/EditRecordForm.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/softindex/uikernel/HEAD/examples/final-example/src/components/EditRecordForm.js -------------------------------------------------------------------------------- /examples/final-example/src/components/FiltersForm.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/softindex/uikernel/HEAD/examples/final-example/src/components/FiltersForm.js -------------------------------------------------------------------------------- /examples/final-example/src/components/FormFields.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/softindex/uikernel/HEAD/examples/final-example/src/components/FormFields.js -------------------------------------------------------------------------------- /examples/final-example/src/components/MainComponent.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/softindex/uikernel/HEAD/examples/final-example/src/components/MainComponent.js -------------------------------------------------------------------------------- /examples/final-example/src/configs/getColumns.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/softindex/uikernel/HEAD/examples/final-example/src/configs/getColumns.js -------------------------------------------------------------------------------- /examples/final-example/src/gridModel.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/softindex/uikernel/HEAD/examples/final-example/src/gridModel.js -------------------------------------------------------------------------------- /examples/final-example/src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/softindex/uikernel/HEAD/examples/final-example/src/index.js -------------------------------------------------------------------------------- /examples/final-example/src/main.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/softindex/uikernel/HEAD/examples/final-example/src/main.css -------------------------------------------------------------------------------- /examples/final-example/src/utils/generateInitialData.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/softindex/uikernel/HEAD/examples/final-example/src/utils/generateInitialData.js -------------------------------------------------------------------------------- /examples/final-example/src/utils/useGridSelect.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/softindex/uikernel/HEAD/examples/final-example/src/utils/useGridSelect.js -------------------------------------------------------------------------------- /examples/final-example/src/utils/utils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/softindex/uikernel/HEAD/examples/final-example/src/utils/utils.js -------------------------------------------------------------------------------- /examples/final-example/src/validator.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/softindex/uikernel/HEAD/examples/final-example/src/validator.js -------------------------------------------------------------------------------- /examples/final-example/yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/softindex/uikernel/HEAD/examples/final-example/yarn.lock -------------------------------------------------------------------------------- /examples/first-grid-component/.yarn/install-state.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/softindex/uikernel/HEAD/examples/first-grid-component/.yarn/install-state.gz -------------------------------------------------------------------------------- /examples/first-grid-component/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/softindex/uikernel/HEAD/examples/first-grid-component/package.json -------------------------------------------------------------------------------- /examples/first-grid-component/public/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/softindex/uikernel/HEAD/examples/first-grid-component/public/index.html -------------------------------------------------------------------------------- /examples/first-grid-component/public/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/softindex/uikernel/HEAD/examples/first-grid-component/public/manifest.json -------------------------------------------------------------------------------- /examples/first-grid-component/src/columns.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/softindex/uikernel/HEAD/examples/first-grid-component/src/columns.js -------------------------------------------------------------------------------- /examples/first-grid-component/src/components/MainComponent.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/softindex/uikernel/HEAD/examples/first-grid-component/src/components/MainComponent.js -------------------------------------------------------------------------------- /examples/first-grid-component/src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/softindex/uikernel/HEAD/examples/first-grid-component/src/index.js -------------------------------------------------------------------------------- /examples/first-grid-component/src/main.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/softindex/uikernel/HEAD/examples/first-grid-component/src/main.css -------------------------------------------------------------------------------- /examples/first-grid-component/src/model.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/softindex/uikernel/HEAD/examples/first-grid-component/src/model.js -------------------------------------------------------------------------------- /examples/first-grid-component/yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/softindex/uikernel/HEAD/examples/first-grid-component/yarn.lock -------------------------------------------------------------------------------- /examples/form/.yarn/install-state.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/softindex/uikernel/HEAD/examples/form/.yarn/install-state.gz -------------------------------------------------------------------------------- /examples/form/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/softindex/uikernel/HEAD/examples/form/package.json -------------------------------------------------------------------------------- /examples/form/public/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/softindex/uikernel/HEAD/examples/form/public/index.html -------------------------------------------------------------------------------- /examples/form/public/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/softindex/uikernel/HEAD/examples/form/public/manifest.json -------------------------------------------------------------------------------- /examples/form/src/columns.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/softindex/uikernel/HEAD/examples/form/src/columns.js -------------------------------------------------------------------------------- /examples/form/src/components/Form.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/softindex/uikernel/HEAD/examples/form/src/components/Form.js -------------------------------------------------------------------------------- /examples/form/src/components/MainComponent.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/softindex/uikernel/HEAD/examples/form/src/components/MainComponent.js -------------------------------------------------------------------------------- /examples/form/src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/softindex/uikernel/HEAD/examples/form/src/index.js -------------------------------------------------------------------------------- /examples/form/src/main.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/softindex/uikernel/HEAD/examples/form/src/main.css -------------------------------------------------------------------------------- /examples/form/src/model.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/softindex/uikernel/HEAD/examples/form/src/model.js -------------------------------------------------------------------------------- /examples/form/src/validator.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/softindex/uikernel/HEAD/examples/form/src/validator.js -------------------------------------------------------------------------------- /examples/form/yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/softindex/uikernel/HEAD/examples/form/yarn.lock -------------------------------------------------------------------------------- /examples/getting-started/.yarn/install-state.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/softindex/uikernel/HEAD/examples/getting-started/.yarn/install-state.gz -------------------------------------------------------------------------------- /examples/getting-started/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/softindex/uikernel/HEAD/examples/getting-started/package.json -------------------------------------------------------------------------------- /examples/getting-started/public/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/softindex/uikernel/HEAD/examples/getting-started/public/index.html -------------------------------------------------------------------------------- /examples/getting-started/public/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/softindex/uikernel/HEAD/examples/getting-started/public/manifest.json -------------------------------------------------------------------------------- /examples/getting-started/src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/softindex/uikernel/HEAD/examples/getting-started/src/index.js -------------------------------------------------------------------------------- /examples/getting-started/yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/softindex/uikernel/HEAD/examples/getting-started/yarn.lock -------------------------------------------------------------------------------- /examples/removing-records/.yarn/install-state.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/softindex/uikernel/HEAD/examples/removing-records/.yarn/install-state.gz -------------------------------------------------------------------------------- /examples/removing-records/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/softindex/uikernel/HEAD/examples/removing-records/package.json -------------------------------------------------------------------------------- /examples/removing-records/public/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/softindex/uikernel/HEAD/examples/removing-records/public/index.html -------------------------------------------------------------------------------- /examples/removing-records/public/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/softindex/uikernel/HEAD/examples/removing-records/public/manifest.json -------------------------------------------------------------------------------- /examples/removing-records/src/columns.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/softindex/uikernel/HEAD/examples/removing-records/src/columns.js -------------------------------------------------------------------------------- /examples/removing-records/src/components/FiltersForm.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/softindex/uikernel/HEAD/examples/removing-records/src/components/FiltersForm.js -------------------------------------------------------------------------------- /examples/removing-records/src/components/MainComponent.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/softindex/uikernel/HEAD/examples/removing-records/src/components/MainComponent.js -------------------------------------------------------------------------------- /examples/removing-records/src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/softindex/uikernel/HEAD/examples/removing-records/src/index.js -------------------------------------------------------------------------------- /examples/removing-records/src/main.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/softindex/uikernel/HEAD/examples/removing-records/src/main.css -------------------------------------------------------------------------------- /examples/removing-records/src/model.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/softindex/uikernel/HEAD/examples/removing-records/src/model.js -------------------------------------------------------------------------------- /examples/removing-records/src/validator.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/softindex/uikernel/HEAD/examples/removing-records/src/validator.js -------------------------------------------------------------------------------- /examples/removing-records/yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/softindex/uikernel/HEAD/examples/removing-records/yarn.lock -------------------------------------------------------------------------------- /examples/select/.yarn/install-state.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/softindex/uikernel/HEAD/examples/select/.yarn/install-state.gz -------------------------------------------------------------------------------- /examples/select/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/softindex/uikernel/HEAD/examples/select/package.json -------------------------------------------------------------------------------- /examples/select/public/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/softindex/uikernel/HEAD/examples/select/public/index.html -------------------------------------------------------------------------------- /examples/select/public/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/softindex/uikernel/HEAD/examples/select/public/manifest.json -------------------------------------------------------------------------------- /examples/select/src/components/MainComponent.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/softindex/uikernel/HEAD/examples/select/src/components/MainComponent.js -------------------------------------------------------------------------------- /examples/select/src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/softindex/uikernel/HEAD/examples/select/src/index.js -------------------------------------------------------------------------------- /examples/select/yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/softindex/uikernel/HEAD/examples/select/yarn.lock -------------------------------------------------------------------------------- /examples/server-example/client/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/softindex/uikernel/HEAD/examples/server-example/client/package.json -------------------------------------------------------------------------------- /examples/server-example/client/public/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/softindex/uikernel/HEAD/examples/server-example/client/public/index.html -------------------------------------------------------------------------------- /examples/server-example/client/public/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/softindex/uikernel/HEAD/examples/server-example/client/public/manifest.json -------------------------------------------------------------------------------- /examples/server-example/client/src/columns.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/softindex/uikernel/HEAD/examples/server-example/client/src/columns.js -------------------------------------------------------------------------------- /examples/server-example/client/src/components/CreateForm.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/softindex/uikernel/HEAD/examples/server-example/client/src/components/CreateForm.js -------------------------------------------------------------------------------- /examples/server-example/client/src/components/FiltersForm.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/softindex/uikernel/HEAD/examples/server-example/client/src/components/FiltersForm.js -------------------------------------------------------------------------------- /examples/server-example/client/src/components/MainComponent.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/softindex/uikernel/HEAD/examples/server-example/client/src/components/MainComponent.js -------------------------------------------------------------------------------- /examples/server-example/client/src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/softindex/uikernel/HEAD/examples/server-example/client/src/index.js -------------------------------------------------------------------------------- /examples/server-example/client/src/main.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/softindex/uikernel/HEAD/examples/server-example/client/src/main.css -------------------------------------------------------------------------------- /examples/server-example/client/src/model.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/softindex/uikernel/HEAD/examples/server-example/client/src/model.js -------------------------------------------------------------------------------- /examples/server-example/client/src/validator.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/softindex/uikernel/HEAD/examples/server-example/client/src/validator.js -------------------------------------------------------------------------------- /examples/server-example/server/api/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/softindex/uikernel/HEAD/examples/server-example/server/api/index.ts -------------------------------------------------------------------------------- /examples/server-example/server/api/users/UserGridModel.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/softindex/uikernel/HEAD/examples/server-example/server/api/users/UserGridModel.ts -------------------------------------------------------------------------------- /examples/server-example/server/api/users/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/softindex/uikernel/HEAD/examples/server-example/server/api/users/types.ts -------------------------------------------------------------------------------- /examples/server-example/server/api/users/userRouter.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/softindex/uikernel/HEAD/examples/server-example/server/api/users/userRouter.ts -------------------------------------------------------------------------------- /examples/server-example/server/api/users/userValidator.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/softindex/uikernel/HEAD/examples/server-example/server/api/users/userValidator.ts -------------------------------------------------------------------------------- /examples/server-example/server/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/softindex/uikernel/HEAD/examples/server-example/server/package.json -------------------------------------------------------------------------------- /examples/server-example/server/server.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/softindex/uikernel/HEAD/examples/server-example/server/server.ts -------------------------------------------------------------------------------- /examples/server-example/server/sql/MySqlPool.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/softindex/uikernel/HEAD/examples/server-example/server/sql/MySqlPool.ts -------------------------------------------------------------------------------- /examples/server-example/server/sql/UserTable.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/softindex/uikernel/HEAD/examples/server-example/server/sql/UserTable.ts -------------------------------------------------------------------------------- /examples/server-example/server/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/softindex/uikernel/HEAD/examples/server-example/server/tsconfig.json -------------------------------------------------------------------------------- /examples/sorting-and-pagination/.yarn/install-state.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/softindex/uikernel/HEAD/examples/sorting-and-pagination/.yarn/install-state.gz -------------------------------------------------------------------------------- /examples/sorting-and-pagination/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/softindex/uikernel/HEAD/examples/sorting-and-pagination/package.json -------------------------------------------------------------------------------- /examples/sorting-and-pagination/public/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/softindex/uikernel/HEAD/examples/sorting-and-pagination/public/index.html -------------------------------------------------------------------------------- /examples/sorting-and-pagination/public/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/softindex/uikernel/HEAD/examples/sorting-and-pagination/public/manifest.json -------------------------------------------------------------------------------- /examples/sorting-and-pagination/src/columns.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/softindex/uikernel/HEAD/examples/sorting-and-pagination/src/columns.js -------------------------------------------------------------------------------- /examples/sorting-and-pagination/src/components/MainComponent.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/softindex/uikernel/HEAD/examples/sorting-and-pagination/src/components/MainComponent.js -------------------------------------------------------------------------------- /examples/sorting-and-pagination/src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/softindex/uikernel/HEAD/examples/sorting-and-pagination/src/index.js -------------------------------------------------------------------------------- /examples/sorting-and-pagination/src/main.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/softindex/uikernel/HEAD/examples/sorting-and-pagination/src/main.css -------------------------------------------------------------------------------- /examples/sorting-and-pagination/src/model.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/softindex/uikernel/HEAD/examples/sorting-and-pagination/src/model.js -------------------------------------------------------------------------------- /examples/sorting-and-pagination/yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/softindex/uikernel/HEAD/examples/sorting-and-pagination/yarn.lock -------------------------------------------------------------------------------- /examples/suggest-box-simple/.yarn/install-state.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/softindex/uikernel/HEAD/examples/suggest-box-simple/.yarn/install-state.gz -------------------------------------------------------------------------------- /examples/suggest-box-simple/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/softindex/uikernel/HEAD/examples/suggest-box-simple/package.json -------------------------------------------------------------------------------- /examples/suggest-box-simple/public/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/softindex/uikernel/HEAD/examples/suggest-box-simple/public/index.html -------------------------------------------------------------------------------- /examples/suggest-box-simple/public/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/softindex/uikernel/HEAD/examples/suggest-box-simple/public/manifest.json -------------------------------------------------------------------------------- /examples/suggest-box-simple/src/columns.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/softindex/uikernel/HEAD/examples/suggest-box-simple/src/columns.js -------------------------------------------------------------------------------- /examples/suggest-box-simple/src/components/MainComponent.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/softindex/uikernel/HEAD/examples/suggest-box-simple/src/components/MainComponent.js -------------------------------------------------------------------------------- /examples/suggest-box-simple/src/countriesList.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/softindex/uikernel/HEAD/examples/suggest-box-simple/src/countriesList.js -------------------------------------------------------------------------------- /examples/suggest-box-simple/src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/softindex/uikernel/HEAD/examples/suggest-box-simple/src/index.js -------------------------------------------------------------------------------- /examples/suggest-box-simple/src/model.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/softindex/uikernel/HEAD/examples/suggest-box-simple/src/model.js -------------------------------------------------------------------------------- /examples/suggest-box-simple/src/validator.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/softindex/uikernel/HEAD/examples/suggest-box-simple/src/validator.js -------------------------------------------------------------------------------- /examples/suggest-box-simple/yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/softindex/uikernel/HEAD/examples/suggest-box-simple/yarn.lock -------------------------------------------------------------------------------- /gulp/buildSite.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/softindex/uikernel/HEAD/gulp/buildSite.js -------------------------------------------------------------------------------- /gulp/clearSite.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/softindex/uikernel/HEAD/gulp/clearSite.js -------------------------------------------------------------------------------- /gulp/deploySite.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/softindex/uikernel/HEAD/gulp/deploySite.js -------------------------------------------------------------------------------- /gulp/release.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/softindex/uikernel/HEAD/gulp/release.js -------------------------------------------------------------------------------- /gulp/styleBundle.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/softindex/uikernel/HEAD/gulp/styleBundle.js -------------------------------------------------------------------------------- /gulpfile.babel.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/softindex/uikernel/HEAD/gulpfile.babel.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/softindex/uikernel/HEAD/package.json -------------------------------------------------------------------------------- /scripts/build_examples.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/softindex/uikernel/HEAD/scripts/build_examples.mjs -------------------------------------------------------------------------------- /scripts/site_setup.sh: -------------------------------------------------------------------------------- 1 | docker build -t uikernel-site docs 2 | -------------------------------------------------------------------------------- /scripts/site_start.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/softindex/uikernel/HEAD/scripts/site_start.sh -------------------------------------------------------------------------------- /src/browser.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/softindex/uikernel/HEAD/src/browser.ts -------------------------------------------------------------------------------- /src/common.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/softindex/uikernel/HEAD/src/common.ts -------------------------------------------------------------------------------- /src/common/EqualMap.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/softindex/uikernel/HEAD/src/common/EqualMap.ts -------------------------------------------------------------------------------- /src/common/EventsModel.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/softindex/uikernel/HEAD/src/common/EventsModel.ts -------------------------------------------------------------------------------- /src/common/__tests__/assert-test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/softindex/uikernel/HEAD/src/common/__tests__/assert-test.ts -------------------------------------------------------------------------------- /src/common/__tests__/throttle-test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/softindex/uikernel/HEAD/src/common/__tests__/throttle-test.ts -------------------------------------------------------------------------------- /src/common/__tests__/utils-test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/softindex/uikernel/HEAD/src/common/__tests__/utils-test.js -------------------------------------------------------------------------------- /src/common/assert.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/softindex/uikernel/HEAD/src/common/assert.ts -------------------------------------------------------------------------------- /src/common/asyncServerRouteHandler.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/softindex/uikernel/HEAD/src/common/asyncServerRouteHandler.ts -------------------------------------------------------------------------------- /src/common/callbackify.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/softindex/uikernel/HEAD/src/common/callbackify.js -------------------------------------------------------------------------------- /src/common/decorate.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/softindex/uikernel/HEAD/src/common/decorate.ts -------------------------------------------------------------------------------- /src/common/defaultXhr.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/softindex/uikernel/HEAD/src/common/defaultXhr.ts -------------------------------------------------------------------------------- /src/common/error/ArgumentsError.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/softindex/uikernel/HEAD/src/common/error/ArgumentsError.ts -------------------------------------------------------------------------------- /src/common/error/RequestError.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/softindex/uikernel/HEAD/src/common/error/RequestError.ts -------------------------------------------------------------------------------- /src/common/error/ThrottleError.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/softindex/uikernel/HEAD/src/common/error/ThrottleError.ts -------------------------------------------------------------------------------- /src/common/mock-utils/createMockInstance.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/softindex/uikernel/HEAD/src/common/mock-utils/createMockInstance.ts -------------------------------------------------------------------------------- /src/common/mock-utils/createMockedMethod.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/softindex/uikernel/HEAD/src/common/mock-utils/createMockedMethod.ts -------------------------------------------------------------------------------- /src/common/parseJson.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/softindex/uikernel/HEAD/src/common/parseJson.ts -------------------------------------------------------------------------------- /src/common/setImmediate.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/softindex/uikernel/HEAD/src/common/setImmediate.js -------------------------------------------------------------------------------- /src/common/throttle.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/softindex/uikernel/HEAD/src/common/throttle.ts -------------------------------------------------------------------------------- /src/common/toPromise.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/softindex/uikernel/HEAD/src/common/toPromise.js -------------------------------------------------------------------------------- /src/common/types/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/softindex/uikernel/HEAD/src/common/types/index.ts -------------------------------------------------------------------------------- /src/common/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/softindex/uikernel/HEAD/src/common/utils.ts -------------------------------------------------------------------------------- /src/common/variables.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/softindex/uikernel/HEAD/src/common/variables.ts -------------------------------------------------------------------------------- /src/editors/Checkbox.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/softindex/uikernel/HEAD/src/editors/Checkbox.tsx -------------------------------------------------------------------------------- /src/editors/DatePicker.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/softindex/uikernel/HEAD/src/editors/DatePicker.tsx -------------------------------------------------------------------------------- /src/editors/Number.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/softindex/uikernel/HEAD/src/editors/Number.tsx -------------------------------------------------------------------------------- /src/editors/Select.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/softindex/uikernel/HEAD/src/editors/Select.tsx -------------------------------------------------------------------------------- /src/editors/SuggestBox.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/softindex/uikernel/HEAD/src/editors/SuggestBox.tsx -------------------------------------------------------------------------------- /src/form/AbstractFormModel.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/softindex/uikernel/HEAD/src/form/AbstractFormModel.ts -------------------------------------------------------------------------------- /src/form/FormExpressApi.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/softindex/uikernel/HEAD/src/form/FormExpressApi.ts -------------------------------------------------------------------------------- /src/form/FormModel.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/softindex/uikernel/HEAD/src/form/FormModel.ts -------------------------------------------------------------------------------- /src/form/FormService.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/softindex/uikernel/HEAD/src/form/FormService.ts -------------------------------------------------------------------------------- /src/form/FormXhrModel.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/softindex/uikernel/HEAD/src/form/FormXhrModel.ts -------------------------------------------------------------------------------- /src/form/__tests__/FormService-test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/softindex/uikernel/HEAD/src/form/__tests__/FormService-test.js -------------------------------------------------------------------------------- /src/form/adapters/GridToFormCreate.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/softindex/uikernel/HEAD/src/form/adapters/GridToFormCreate.ts -------------------------------------------------------------------------------- /src/form/adapters/GridToFormUpdate.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/softindex/uikernel/HEAD/src/form/adapters/GridToFormUpdate.ts -------------------------------------------------------------------------------- /src/form/connectForm.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/softindex/uikernel/HEAD/src/form/connectForm.tsx -------------------------------------------------------------------------------- /src/form/mixin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/softindex/uikernel/HEAD/src/form/mixin.js -------------------------------------------------------------------------------- /src/form/types/FormModelListenerArgsByEventName.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/softindex/uikernel/HEAD/src/form/types/FormModelListenerArgsByEventName.ts -------------------------------------------------------------------------------- /src/form/types/IFormModel.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/softindex/uikernel/HEAD/src/form/types/IFormModel.ts -------------------------------------------------------------------------------- /src/form/types/IFormService.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/softindex/uikernel/HEAD/src/form/types/IFormService.ts -------------------------------------------------------------------------------- /src/form/types/JsonFormApiResult.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/softindex/uikernel/HEAD/src/form/types/JsonFormApiResult.ts -------------------------------------------------------------------------------- /src/form/useForm.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/softindex/uikernel/HEAD/src/form/useForm.ts -------------------------------------------------------------------------------- /src/grid/Component.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/softindex/uikernel/HEAD/src/grid/Component.tsx -------------------------------------------------------------------------------- /src/grid/PureGridComponent.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/softindex/uikernel/HEAD/src/grid/PureGridComponent.tsx -------------------------------------------------------------------------------- /src/grid/__tests__/utils-test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/softindex/uikernel/HEAD/src/grid/__tests__/utils-test.ts -------------------------------------------------------------------------------- /src/grid/export/exportGridData.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/softindex/uikernel/HEAD/src/grid/export/exportGridData.ts -------------------------------------------------------------------------------- /src/grid/export/exporters/toCSV.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/softindex/uikernel/HEAD/src/grid/export/exporters/toCSV.ts -------------------------------------------------------------------------------- /src/grid/export/exporters/toJSON.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/softindex/uikernel/HEAD/src/grid/export/exporters/toJSON.ts -------------------------------------------------------------------------------- /src/grid/models/AbstractGridModel.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/softindex/uikernel/HEAD/src/grid/models/AbstractGridModel.ts -------------------------------------------------------------------------------- /src/grid/models/GridCollectionModel.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/softindex/uikernel/HEAD/src/grid/models/GridCollectionModel.ts -------------------------------------------------------------------------------- /src/grid/models/GridExpressApi.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/softindex/uikernel/HEAD/src/grid/models/GridExpressApi.ts -------------------------------------------------------------------------------- /src/grid/models/GridXhrModel.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/softindex/uikernel/HEAD/src/grid/models/GridXhrModel.ts -------------------------------------------------------------------------------- /src/grid/models/__tests__/applyGridFilters-test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/softindex/uikernel/HEAD/src/grid/models/__tests__/applyGridFilters-test.js -------------------------------------------------------------------------------- /src/grid/models/applyGridFilters.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/softindex/uikernel/HEAD/src/grid/models/applyGridFilters.ts -------------------------------------------------------------------------------- /src/grid/models/types/GridModelListenerArgsByEventName.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/softindex/uikernel/HEAD/src/grid/models/types/GridModelListenerArgsByEventName.ts -------------------------------------------------------------------------------- /src/grid/models/types/IGridModel.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/softindex/uikernel/HEAD/src/grid/models/types/IGridModel.ts -------------------------------------------------------------------------------- /src/grid/models/types/JsonGridApiResult.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/softindex/uikernel/HEAD/src/grid/models/types/JsonGridApiResult.ts -------------------------------------------------------------------------------- /src/grid/types/GridColumns.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/softindex/uikernel/HEAD/src/grid/types/GridColumns.ts -------------------------------------------------------------------------------- /src/grid/types/IGridRef.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/softindex/uikernel/HEAD/src/grid/types/IGridRef.ts -------------------------------------------------------------------------------- /src/grid/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/softindex/uikernel/HEAD/src/grid/utils.ts -------------------------------------------------------------------------------- /src/list/AbstractListModel.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/softindex/uikernel/HEAD/src/list/AbstractListModel.ts -------------------------------------------------------------------------------- /src/list/ListExpressApi.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/softindex/uikernel/HEAD/src/list/ListExpressApi.ts -------------------------------------------------------------------------------- /src/list/ListXhrModel.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/softindex/uikernel/HEAD/src/list/ListXhrModel.ts -------------------------------------------------------------------------------- /src/list/types/IListModel.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/softindex/uikernel/HEAD/src/list/types/IListModel.ts -------------------------------------------------------------------------------- /src/node.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/softindex/uikernel/HEAD/src/node.ts -------------------------------------------------------------------------------- /src/portal/Portal.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/softindex/uikernel/HEAD/src/portal/Portal.tsx -------------------------------------------------------------------------------- /src/validation/DeprecatedValidator.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/softindex/uikernel/HEAD/src/validation/DeprecatedValidator.ts -------------------------------------------------------------------------------- /src/validation/ValidationErrors.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/softindex/uikernel/HEAD/src/validation/ValidationErrors.ts -------------------------------------------------------------------------------- /src/validation/Validator.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/softindex/uikernel/HEAD/src/validation/Validator.ts -------------------------------------------------------------------------------- /src/validation/ValidatorBuilder.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/softindex/uikernel/HEAD/src/validation/ValidatorBuilder.ts -------------------------------------------------------------------------------- /src/validation/__tests__/validation-test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/softindex/uikernel/HEAD/src/validation/__tests__/validation-test.ts -------------------------------------------------------------------------------- /src/validation/rules/__tests__/date-test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/softindex/uikernel/HEAD/src/validation/rules/__tests__/date-test.ts -------------------------------------------------------------------------------- /src/validation/rules/__tests__/float-test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/softindex/uikernel/HEAD/src/validation/rules/__tests__/float-test.ts -------------------------------------------------------------------------------- /src/validation/rules/__tests__/integer-test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/softindex/uikernel/HEAD/src/validation/rules/__tests__/integer-test.ts -------------------------------------------------------------------------------- /src/validation/rules/__tests__/notEmpty-test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/softindex/uikernel/HEAD/src/validation/rules/__tests__/notEmpty-test.ts -------------------------------------------------------------------------------- /src/validation/rules/__tests__/notNull-test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/softindex/uikernel/HEAD/src/validation/rules/__tests__/notNull-test.ts -------------------------------------------------------------------------------- /src/validation/rules/__tests__/regExp.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/softindex/uikernel/HEAD/src/validation/rules/__tests__/regExp.ts -------------------------------------------------------------------------------- /src/validation/rules/boolean.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/softindex/uikernel/HEAD/src/validation/rules/boolean.ts -------------------------------------------------------------------------------- /src/validation/rules/date.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/softindex/uikernel/HEAD/src/validation/rules/date.ts -------------------------------------------------------------------------------- /src/validation/rules/enum.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/softindex/uikernel/HEAD/src/validation/rules/enum.ts -------------------------------------------------------------------------------- /src/validation/rules/float.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/softindex/uikernel/HEAD/src/validation/rules/float.ts -------------------------------------------------------------------------------- /src/validation/rules/integer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/softindex/uikernel/HEAD/src/validation/rules/integer.ts -------------------------------------------------------------------------------- /src/validation/rules/notEmpty.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/softindex/uikernel/HEAD/src/validation/rules/notEmpty.ts -------------------------------------------------------------------------------- /src/validation/rules/notNull.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/softindex/uikernel/HEAD/src/validation/rules/notNull.ts -------------------------------------------------------------------------------- /src/validation/rules/regExp.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/softindex/uikernel/HEAD/src/validation/rules/regExp.ts -------------------------------------------------------------------------------- /src/validation/rules/set.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/softindex/uikernel/HEAD/src/validation/rules/set.ts -------------------------------------------------------------------------------- /src/validation/types/IValidator.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/softindex/uikernel/HEAD/src/validation/types/IValidator.ts -------------------------------------------------------------------------------- /src/validation/types/ValidatorSettings.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/softindex/uikernel/HEAD/src/validation/types/ValidatorSettings.ts -------------------------------------------------------------------------------- /themes/base/img/cellTableSortAscending.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/softindex/uikernel/HEAD/themes/base/img/cellTableSortAscending.png -------------------------------------------------------------------------------- /themes/base/img/cellTableSortDescending.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/softindex/uikernel/HEAD/themes/base/img/cellTableSortDescending.png -------------------------------------------------------------------------------- /themes/base/img/loading.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/softindex/uikernel/HEAD/themes/base/img/loading.gif -------------------------------------------------------------------------------- /themes/base/img/simplePager.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/softindex/uikernel/HEAD/themes/base/img/simplePager.png -------------------------------------------------------------------------------- /themes/base/main.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/softindex/uikernel/HEAD/themes/base/main.less -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/softindex/uikernel/HEAD/tsconfig.json -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/softindex/uikernel/HEAD/yarn.lock --------------------------------------------------------------------------------