├── .github └── FUNDING.yml ├── .gitignore ├── LICENSE ├── README.md ├── demo.gif ├── demo.mp4 ├── deps.edn ├── help-ui.png ├── inspector.png ├── src └── cljfx │ ├── dev.clj │ └── dev │ ├── definitions.clj │ ├── extensions.clj │ ├── help.clj │ ├── ui.clj │ └── validation.clj └── test └── cljfx └── dev_test.clj /.github/FUNDING.yml: -------------------------------------------------------------------------------- 1 | github: vlaaad 2 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cljfx/dev/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cljfx/dev/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cljfx/dev/HEAD/README.md -------------------------------------------------------------------------------- /demo.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cljfx/dev/HEAD/demo.gif -------------------------------------------------------------------------------- /demo.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cljfx/dev/HEAD/demo.mp4 -------------------------------------------------------------------------------- /deps.edn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cljfx/dev/HEAD/deps.edn -------------------------------------------------------------------------------- /help-ui.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cljfx/dev/HEAD/help-ui.png -------------------------------------------------------------------------------- /inspector.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cljfx/dev/HEAD/inspector.png -------------------------------------------------------------------------------- /src/cljfx/dev.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cljfx/dev/HEAD/src/cljfx/dev.clj -------------------------------------------------------------------------------- /src/cljfx/dev/definitions.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cljfx/dev/HEAD/src/cljfx/dev/definitions.clj -------------------------------------------------------------------------------- /src/cljfx/dev/extensions.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cljfx/dev/HEAD/src/cljfx/dev/extensions.clj -------------------------------------------------------------------------------- /src/cljfx/dev/help.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cljfx/dev/HEAD/src/cljfx/dev/help.clj -------------------------------------------------------------------------------- /src/cljfx/dev/ui.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cljfx/dev/HEAD/src/cljfx/dev/ui.clj -------------------------------------------------------------------------------- /src/cljfx/dev/validation.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cljfx/dev/HEAD/src/cljfx/dev/validation.clj -------------------------------------------------------------------------------- /test/cljfx/dev_test.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cljfx/dev/HEAD/test/cljfx/dev_test.clj --------------------------------------------------------------------------------