├── .gitignore ├── LICENSE ├── README.md ├── composer.json ├── esbuild.config.js ├── package.json ├── public ├── css │ ├── vendor │ │ ├── flatpicker.min.css │ │ ├── font-awesome.min.css │ │ └── select2.min.css │ └── wp-custom-fields.min.css ├── fonts │ ├── fa-brands-400.eot │ ├── fa-brands-400.svg │ ├── fa-brands-400.ttf │ ├── fa-brands-400.woff │ ├── fa-brands-400.woff2 │ ├── fa-regular-400.eot │ ├── fa-regular-400.svg │ ├── fa-regular-400.ttf │ ├── fa-regular-400.woff │ ├── fa-regular-400.woff2 │ ├── fa-solid-900.eot │ ├── fa-solid-900.svg │ ├── fa-solid-900.ttf │ ├── fa-solid-900.woff │ └── fa-solid-900.woff2 ├── img │ ├── abel.png │ ├── alegreya.png │ ├── alegreyasans.png │ ├── amaticsc.png │ ├── amiri.png │ ├── archivonarrow.png │ ├── arial.png │ ├── arimo.png │ ├── arvo.png │ ├── asap.png │ ├── breeserif.png │ ├── cabin.png │ ├── cabinsketch.png │ ├── comicsansms.png │ ├── couriernew.png │ ├── crimsontext.png │ ├── cuprum.png │ ├── dosis.png │ ├── droidsans.png │ ├── droidserif.png │ ├── exo2.png │ ├── firasans.png │ ├── georgia.png │ ├── gloriahallelujah.png │ ├── hind.png │ ├── impact.png │ ├── inconsolata.png │ ├── indieflower.png │ ├── josefinsans.png │ ├── josefinslab.png │ ├── karla.png │ ├── lato.png │ ├── lobster.png │ ├── lora.png │ ├── lucidaconsole.png │ ├── lucidasans.png │ ├── merriweather.png │ ├── merriweathersans.png │ ├── montserrat.png │ ├── muli.png │ ├── notosans.png │ ├── notoserif.png │ ├── nunito.png │ ├── opensans.png │ ├── orbitron.png │ ├── oswald.png │ ├── pacifico.png │ ├── palatino.png │ ├── play.png │ ├── playfairdisplay.png │ ├── poppins.png │ ├── ptsans.png │ ├── ptsansnarrow.png │ ├── ptserif.png │ ├── quicksand.png │ ├── raleway.png │ ├── roboto.png │ ├── robotocondensed.png │ ├── robotoslab.png │ ├── shadowsintolight.png │ ├── signika.png │ ├── sourcecodepro.png │ ├── sourcesanspro.png │ ├── tahoma.png │ ├── timesnewroman.png │ ├── titilliumweb.png │ ├── transparency-grid.png │ ├── trebuchet.png │ ├── ubuntu.png │ ├── verdana.png │ ├── vollkorn.png │ └── yanonekaffeesatz.png └── js │ ├── vendor │ ├── alpha-color-picker.js │ ├── alpha-color-picker.min.js │ ├── flatpicker-i18n │ │ └── nl.js │ ├── flatpicker.min.js │ └── select2.min.js │ └── wpcf.js └── src ├── Base.php ├── Customizer.php ├── Field.php ├── Fields ├── Background.php ├── Border.php ├── Boxshadow.php ├── Button.php ├── Checkbox.php ├── Code.php ├── Colorpicker.php ├── Customizer │ ├── BackgroundProperties.php │ ├── Dimension.php │ ├── Heading.php │ ├── Textarea.php │ └── Typography.php ├── Datepicker.php ├── Dimension.php ├── Dimensions.php ├── Divider.php ├── Editor.php ├── Export.php ├── Heading.php ├── Html.php ├── Icons.php ├── Input.php ├── Location.php ├── Media.php ├── Radio.php ├── Repeatable.php ├── Select.php ├── Slider.php ├── Textarea.php └── Typography.php ├── Frame.php ├── Framework.php ├── Meta.php ├── Options.php ├── Styling.php ├── Validate.php ├── assets ├── js │ ├── app.ts │ ├── fields │ │ ├── button.field.ts │ │ ├── code.field.ts │ │ ├── colorpicker.field.ts │ │ ├── datepicker.field.ts │ │ ├── heading.field.ts │ │ ├── icons.field.ts │ │ ├── location.field.ts │ │ ├── media.field.ts │ │ ├── repeatable.field.ts │ │ ├── select.field.ts │ │ └── slider.field.ts │ ├── helpers │ │ └── dependency.helper.ts │ ├── layout │ │ ├── options.layout.ts │ │ └── tabs.layout.ts │ └── modules │ │ └── fields.module.ts └── less │ ├── attributes.less │ ├── fields.less │ ├── fields │ ├── boxshadow.less │ ├── button.less │ ├── colorpicker.less │ ├── datepicker.less │ ├── dimensions.less │ ├── heading.less │ ├── icons.less │ ├── location.less │ ├── media.less │ ├── radio.less │ ├── repeatable.less │ ├── select.less │ ├── slider.less │ └── typography.less │ ├── frame.less │ ├── grid.less │ └── wp-custom-fields.less ├── config ├── fonts.php ├── icons.php ├── scripts.php └── styles.php └── templates ├── frame.php └── nothing.php /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makeitworkpress/wp-custom-fields/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makeitworkpress/wp-custom-fields/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makeitworkpress/wp-custom-fields/HEAD/README.md -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makeitworkpress/wp-custom-fields/HEAD/composer.json -------------------------------------------------------------------------------- /esbuild.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makeitworkpress/wp-custom-fields/HEAD/esbuild.config.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makeitworkpress/wp-custom-fields/HEAD/package.json -------------------------------------------------------------------------------- /public/css/vendor/flatpicker.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makeitworkpress/wp-custom-fields/HEAD/public/css/vendor/flatpicker.min.css -------------------------------------------------------------------------------- /public/css/vendor/font-awesome.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makeitworkpress/wp-custom-fields/HEAD/public/css/vendor/font-awesome.min.css -------------------------------------------------------------------------------- /public/css/vendor/select2.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makeitworkpress/wp-custom-fields/HEAD/public/css/vendor/select2.min.css -------------------------------------------------------------------------------- /public/css/wp-custom-fields.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makeitworkpress/wp-custom-fields/HEAD/public/css/wp-custom-fields.min.css -------------------------------------------------------------------------------- /public/fonts/fa-brands-400.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makeitworkpress/wp-custom-fields/HEAD/public/fonts/fa-brands-400.eot -------------------------------------------------------------------------------- /public/fonts/fa-brands-400.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makeitworkpress/wp-custom-fields/HEAD/public/fonts/fa-brands-400.svg -------------------------------------------------------------------------------- /public/fonts/fa-brands-400.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makeitworkpress/wp-custom-fields/HEAD/public/fonts/fa-brands-400.ttf -------------------------------------------------------------------------------- /public/fonts/fa-brands-400.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makeitworkpress/wp-custom-fields/HEAD/public/fonts/fa-brands-400.woff -------------------------------------------------------------------------------- /public/fonts/fa-brands-400.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makeitworkpress/wp-custom-fields/HEAD/public/fonts/fa-brands-400.woff2 -------------------------------------------------------------------------------- /public/fonts/fa-regular-400.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makeitworkpress/wp-custom-fields/HEAD/public/fonts/fa-regular-400.eot -------------------------------------------------------------------------------- /public/fonts/fa-regular-400.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makeitworkpress/wp-custom-fields/HEAD/public/fonts/fa-regular-400.svg -------------------------------------------------------------------------------- /public/fonts/fa-regular-400.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makeitworkpress/wp-custom-fields/HEAD/public/fonts/fa-regular-400.ttf -------------------------------------------------------------------------------- /public/fonts/fa-regular-400.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makeitworkpress/wp-custom-fields/HEAD/public/fonts/fa-regular-400.woff -------------------------------------------------------------------------------- /public/fonts/fa-regular-400.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makeitworkpress/wp-custom-fields/HEAD/public/fonts/fa-regular-400.woff2 -------------------------------------------------------------------------------- /public/fonts/fa-solid-900.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makeitworkpress/wp-custom-fields/HEAD/public/fonts/fa-solid-900.eot -------------------------------------------------------------------------------- /public/fonts/fa-solid-900.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makeitworkpress/wp-custom-fields/HEAD/public/fonts/fa-solid-900.svg -------------------------------------------------------------------------------- /public/fonts/fa-solid-900.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makeitworkpress/wp-custom-fields/HEAD/public/fonts/fa-solid-900.ttf -------------------------------------------------------------------------------- /public/fonts/fa-solid-900.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makeitworkpress/wp-custom-fields/HEAD/public/fonts/fa-solid-900.woff -------------------------------------------------------------------------------- /public/fonts/fa-solid-900.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makeitworkpress/wp-custom-fields/HEAD/public/fonts/fa-solid-900.woff2 -------------------------------------------------------------------------------- /public/img/abel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makeitworkpress/wp-custom-fields/HEAD/public/img/abel.png -------------------------------------------------------------------------------- /public/img/alegreya.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makeitworkpress/wp-custom-fields/HEAD/public/img/alegreya.png -------------------------------------------------------------------------------- /public/img/alegreyasans.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makeitworkpress/wp-custom-fields/HEAD/public/img/alegreyasans.png -------------------------------------------------------------------------------- /public/img/amaticsc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makeitworkpress/wp-custom-fields/HEAD/public/img/amaticsc.png -------------------------------------------------------------------------------- /public/img/amiri.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makeitworkpress/wp-custom-fields/HEAD/public/img/amiri.png -------------------------------------------------------------------------------- /public/img/archivonarrow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makeitworkpress/wp-custom-fields/HEAD/public/img/archivonarrow.png -------------------------------------------------------------------------------- /public/img/arial.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makeitworkpress/wp-custom-fields/HEAD/public/img/arial.png -------------------------------------------------------------------------------- /public/img/arimo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makeitworkpress/wp-custom-fields/HEAD/public/img/arimo.png -------------------------------------------------------------------------------- /public/img/arvo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makeitworkpress/wp-custom-fields/HEAD/public/img/arvo.png -------------------------------------------------------------------------------- /public/img/asap.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makeitworkpress/wp-custom-fields/HEAD/public/img/asap.png -------------------------------------------------------------------------------- /public/img/breeserif.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makeitworkpress/wp-custom-fields/HEAD/public/img/breeserif.png -------------------------------------------------------------------------------- /public/img/cabin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makeitworkpress/wp-custom-fields/HEAD/public/img/cabin.png -------------------------------------------------------------------------------- /public/img/cabinsketch.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makeitworkpress/wp-custom-fields/HEAD/public/img/cabinsketch.png -------------------------------------------------------------------------------- /public/img/comicsansms.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makeitworkpress/wp-custom-fields/HEAD/public/img/comicsansms.png -------------------------------------------------------------------------------- /public/img/couriernew.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makeitworkpress/wp-custom-fields/HEAD/public/img/couriernew.png -------------------------------------------------------------------------------- /public/img/crimsontext.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makeitworkpress/wp-custom-fields/HEAD/public/img/crimsontext.png -------------------------------------------------------------------------------- /public/img/cuprum.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makeitworkpress/wp-custom-fields/HEAD/public/img/cuprum.png -------------------------------------------------------------------------------- /public/img/dosis.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makeitworkpress/wp-custom-fields/HEAD/public/img/dosis.png -------------------------------------------------------------------------------- /public/img/droidsans.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makeitworkpress/wp-custom-fields/HEAD/public/img/droidsans.png -------------------------------------------------------------------------------- /public/img/droidserif.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makeitworkpress/wp-custom-fields/HEAD/public/img/droidserif.png -------------------------------------------------------------------------------- /public/img/exo2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makeitworkpress/wp-custom-fields/HEAD/public/img/exo2.png -------------------------------------------------------------------------------- /public/img/firasans.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makeitworkpress/wp-custom-fields/HEAD/public/img/firasans.png -------------------------------------------------------------------------------- /public/img/georgia.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makeitworkpress/wp-custom-fields/HEAD/public/img/georgia.png -------------------------------------------------------------------------------- /public/img/gloriahallelujah.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makeitworkpress/wp-custom-fields/HEAD/public/img/gloriahallelujah.png -------------------------------------------------------------------------------- /public/img/hind.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makeitworkpress/wp-custom-fields/HEAD/public/img/hind.png -------------------------------------------------------------------------------- /public/img/impact.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makeitworkpress/wp-custom-fields/HEAD/public/img/impact.png -------------------------------------------------------------------------------- /public/img/inconsolata.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makeitworkpress/wp-custom-fields/HEAD/public/img/inconsolata.png -------------------------------------------------------------------------------- /public/img/indieflower.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makeitworkpress/wp-custom-fields/HEAD/public/img/indieflower.png -------------------------------------------------------------------------------- /public/img/josefinsans.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makeitworkpress/wp-custom-fields/HEAD/public/img/josefinsans.png -------------------------------------------------------------------------------- /public/img/josefinslab.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makeitworkpress/wp-custom-fields/HEAD/public/img/josefinslab.png -------------------------------------------------------------------------------- /public/img/karla.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makeitworkpress/wp-custom-fields/HEAD/public/img/karla.png -------------------------------------------------------------------------------- /public/img/lato.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makeitworkpress/wp-custom-fields/HEAD/public/img/lato.png -------------------------------------------------------------------------------- /public/img/lobster.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makeitworkpress/wp-custom-fields/HEAD/public/img/lobster.png -------------------------------------------------------------------------------- /public/img/lora.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makeitworkpress/wp-custom-fields/HEAD/public/img/lora.png -------------------------------------------------------------------------------- /public/img/lucidaconsole.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makeitworkpress/wp-custom-fields/HEAD/public/img/lucidaconsole.png -------------------------------------------------------------------------------- /public/img/lucidasans.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makeitworkpress/wp-custom-fields/HEAD/public/img/lucidasans.png -------------------------------------------------------------------------------- /public/img/merriweather.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makeitworkpress/wp-custom-fields/HEAD/public/img/merriweather.png -------------------------------------------------------------------------------- /public/img/merriweathersans.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makeitworkpress/wp-custom-fields/HEAD/public/img/merriweathersans.png -------------------------------------------------------------------------------- /public/img/montserrat.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makeitworkpress/wp-custom-fields/HEAD/public/img/montserrat.png -------------------------------------------------------------------------------- /public/img/muli.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makeitworkpress/wp-custom-fields/HEAD/public/img/muli.png -------------------------------------------------------------------------------- /public/img/notosans.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makeitworkpress/wp-custom-fields/HEAD/public/img/notosans.png -------------------------------------------------------------------------------- /public/img/notoserif.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makeitworkpress/wp-custom-fields/HEAD/public/img/notoserif.png -------------------------------------------------------------------------------- /public/img/nunito.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makeitworkpress/wp-custom-fields/HEAD/public/img/nunito.png -------------------------------------------------------------------------------- /public/img/opensans.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makeitworkpress/wp-custom-fields/HEAD/public/img/opensans.png -------------------------------------------------------------------------------- /public/img/orbitron.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makeitworkpress/wp-custom-fields/HEAD/public/img/orbitron.png -------------------------------------------------------------------------------- /public/img/oswald.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makeitworkpress/wp-custom-fields/HEAD/public/img/oswald.png -------------------------------------------------------------------------------- /public/img/pacifico.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makeitworkpress/wp-custom-fields/HEAD/public/img/pacifico.png -------------------------------------------------------------------------------- /public/img/palatino.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makeitworkpress/wp-custom-fields/HEAD/public/img/palatino.png -------------------------------------------------------------------------------- /public/img/play.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makeitworkpress/wp-custom-fields/HEAD/public/img/play.png -------------------------------------------------------------------------------- /public/img/playfairdisplay.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makeitworkpress/wp-custom-fields/HEAD/public/img/playfairdisplay.png -------------------------------------------------------------------------------- /public/img/poppins.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makeitworkpress/wp-custom-fields/HEAD/public/img/poppins.png -------------------------------------------------------------------------------- /public/img/ptsans.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makeitworkpress/wp-custom-fields/HEAD/public/img/ptsans.png -------------------------------------------------------------------------------- /public/img/ptsansnarrow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makeitworkpress/wp-custom-fields/HEAD/public/img/ptsansnarrow.png -------------------------------------------------------------------------------- /public/img/ptserif.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makeitworkpress/wp-custom-fields/HEAD/public/img/ptserif.png -------------------------------------------------------------------------------- /public/img/quicksand.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makeitworkpress/wp-custom-fields/HEAD/public/img/quicksand.png -------------------------------------------------------------------------------- /public/img/raleway.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makeitworkpress/wp-custom-fields/HEAD/public/img/raleway.png -------------------------------------------------------------------------------- /public/img/roboto.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makeitworkpress/wp-custom-fields/HEAD/public/img/roboto.png -------------------------------------------------------------------------------- /public/img/robotocondensed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makeitworkpress/wp-custom-fields/HEAD/public/img/robotocondensed.png -------------------------------------------------------------------------------- /public/img/robotoslab.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makeitworkpress/wp-custom-fields/HEAD/public/img/robotoslab.png -------------------------------------------------------------------------------- /public/img/shadowsintolight.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makeitworkpress/wp-custom-fields/HEAD/public/img/shadowsintolight.png -------------------------------------------------------------------------------- /public/img/signika.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makeitworkpress/wp-custom-fields/HEAD/public/img/signika.png -------------------------------------------------------------------------------- /public/img/sourcecodepro.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makeitworkpress/wp-custom-fields/HEAD/public/img/sourcecodepro.png -------------------------------------------------------------------------------- /public/img/sourcesanspro.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makeitworkpress/wp-custom-fields/HEAD/public/img/sourcesanspro.png -------------------------------------------------------------------------------- /public/img/tahoma.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makeitworkpress/wp-custom-fields/HEAD/public/img/tahoma.png -------------------------------------------------------------------------------- /public/img/timesnewroman.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makeitworkpress/wp-custom-fields/HEAD/public/img/timesnewroman.png -------------------------------------------------------------------------------- /public/img/titilliumweb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makeitworkpress/wp-custom-fields/HEAD/public/img/titilliumweb.png -------------------------------------------------------------------------------- /public/img/transparency-grid.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makeitworkpress/wp-custom-fields/HEAD/public/img/transparency-grid.png -------------------------------------------------------------------------------- /public/img/trebuchet.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makeitworkpress/wp-custom-fields/HEAD/public/img/trebuchet.png -------------------------------------------------------------------------------- /public/img/ubuntu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makeitworkpress/wp-custom-fields/HEAD/public/img/ubuntu.png -------------------------------------------------------------------------------- /public/img/verdana.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makeitworkpress/wp-custom-fields/HEAD/public/img/verdana.png -------------------------------------------------------------------------------- /public/img/vollkorn.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makeitworkpress/wp-custom-fields/HEAD/public/img/vollkorn.png -------------------------------------------------------------------------------- /public/img/yanonekaffeesatz.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makeitworkpress/wp-custom-fields/HEAD/public/img/yanonekaffeesatz.png -------------------------------------------------------------------------------- /public/js/vendor/alpha-color-picker.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makeitworkpress/wp-custom-fields/HEAD/public/js/vendor/alpha-color-picker.js -------------------------------------------------------------------------------- /public/js/vendor/alpha-color-picker.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makeitworkpress/wp-custom-fields/HEAD/public/js/vendor/alpha-color-picker.min.js -------------------------------------------------------------------------------- /public/js/vendor/flatpicker-i18n/nl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makeitworkpress/wp-custom-fields/HEAD/public/js/vendor/flatpicker-i18n/nl.js -------------------------------------------------------------------------------- /public/js/vendor/flatpicker.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makeitworkpress/wp-custom-fields/HEAD/public/js/vendor/flatpicker.min.js -------------------------------------------------------------------------------- /public/js/vendor/select2.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makeitworkpress/wp-custom-fields/HEAD/public/js/vendor/select2.min.js -------------------------------------------------------------------------------- /public/js/wpcf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makeitworkpress/wp-custom-fields/HEAD/public/js/wpcf.js -------------------------------------------------------------------------------- /src/Base.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makeitworkpress/wp-custom-fields/HEAD/src/Base.php -------------------------------------------------------------------------------- /src/Customizer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makeitworkpress/wp-custom-fields/HEAD/src/Customizer.php -------------------------------------------------------------------------------- /src/Field.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makeitworkpress/wp-custom-fields/HEAD/src/Field.php -------------------------------------------------------------------------------- /src/Fields/Background.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makeitworkpress/wp-custom-fields/HEAD/src/Fields/Background.php -------------------------------------------------------------------------------- /src/Fields/Border.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makeitworkpress/wp-custom-fields/HEAD/src/Fields/Border.php -------------------------------------------------------------------------------- /src/Fields/Boxshadow.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makeitworkpress/wp-custom-fields/HEAD/src/Fields/Boxshadow.php -------------------------------------------------------------------------------- /src/Fields/Button.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makeitworkpress/wp-custom-fields/HEAD/src/Fields/Button.php -------------------------------------------------------------------------------- /src/Fields/Checkbox.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makeitworkpress/wp-custom-fields/HEAD/src/Fields/Checkbox.php -------------------------------------------------------------------------------- /src/Fields/Code.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makeitworkpress/wp-custom-fields/HEAD/src/Fields/Code.php -------------------------------------------------------------------------------- /src/Fields/Colorpicker.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makeitworkpress/wp-custom-fields/HEAD/src/Fields/Colorpicker.php -------------------------------------------------------------------------------- /src/Fields/Customizer/BackgroundProperties.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makeitworkpress/wp-custom-fields/HEAD/src/Fields/Customizer/BackgroundProperties.php -------------------------------------------------------------------------------- /src/Fields/Customizer/Dimension.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makeitworkpress/wp-custom-fields/HEAD/src/Fields/Customizer/Dimension.php -------------------------------------------------------------------------------- /src/Fields/Customizer/Heading.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makeitworkpress/wp-custom-fields/HEAD/src/Fields/Customizer/Heading.php -------------------------------------------------------------------------------- /src/Fields/Customizer/Textarea.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makeitworkpress/wp-custom-fields/HEAD/src/Fields/Customizer/Textarea.php -------------------------------------------------------------------------------- /src/Fields/Customizer/Typography.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makeitworkpress/wp-custom-fields/HEAD/src/Fields/Customizer/Typography.php -------------------------------------------------------------------------------- /src/Fields/Datepicker.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makeitworkpress/wp-custom-fields/HEAD/src/Fields/Datepicker.php -------------------------------------------------------------------------------- /src/Fields/Dimension.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makeitworkpress/wp-custom-fields/HEAD/src/Fields/Dimension.php -------------------------------------------------------------------------------- /src/Fields/Dimensions.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makeitworkpress/wp-custom-fields/HEAD/src/Fields/Dimensions.php -------------------------------------------------------------------------------- /src/Fields/Divider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makeitworkpress/wp-custom-fields/HEAD/src/Fields/Divider.php -------------------------------------------------------------------------------- /src/Fields/Editor.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makeitworkpress/wp-custom-fields/HEAD/src/Fields/Editor.php -------------------------------------------------------------------------------- /src/Fields/Export.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makeitworkpress/wp-custom-fields/HEAD/src/Fields/Export.php -------------------------------------------------------------------------------- /src/Fields/Heading.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makeitworkpress/wp-custom-fields/HEAD/src/Fields/Heading.php -------------------------------------------------------------------------------- /src/Fields/Html.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makeitworkpress/wp-custom-fields/HEAD/src/Fields/Html.php -------------------------------------------------------------------------------- /src/Fields/Icons.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makeitworkpress/wp-custom-fields/HEAD/src/Fields/Icons.php -------------------------------------------------------------------------------- /src/Fields/Input.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makeitworkpress/wp-custom-fields/HEAD/src/Fields/Input.php -------------------------------------------------------------------------------- /src/Fields/Location.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makeitworkpress/wp-custom-fields/HEAD/src/Fields/Location.php -------------------------------------------------------------------------------- /src/Fields/Media.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makeitworkpress/wp-custom-fields/HEAD/src/Fields/Media.php -------------------------------------------------------------------------------- /src/Fields/Radio.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makeitworkpress/wp-custom-fields/HEAD/src/Fields/Radio.php -------------------------------------------------------------------------------- /src/Fields/Repeatable.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makeitworkpress/wp-custom-fields/HEAD/src/Fields/Repeatable.php -------------------------------------------------------------------------------- /src/Fields/Select.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makeitworkpress/wp-custom-fields/HEAD/src/Fields/Select.php -------------------------------------------------------------------------------- /src/Fields/Slider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makeitworkpress/wp-custom-fields/HEAD/src/Fields/Slider.php -------------------------------------------------------------------------------- /src/Fields/Textarea.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makeitworkpress/wp-custom-fields/HEAD/src/Fields/Textarea.php -------------------------------------------------------------------------------- /src/Fields/Typography.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makeitworkpress/wp-custom-fields/HEAD/src/Fields/Typography.php -------------------------------------------------------------------------------- /src/Frame.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makeitworkpress/wp-custom-fields/HEAD/src/Frame.php -------------------------------------------------------------------------------- /src/Framework.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makeitworkpress/wp-custom-fields/HEAD/src/Framework.php -------------------------------------------------------------------------------- /src/Meta.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makeitworkpress/wp-custom-fields/HEAD/src/Meta.php -------------------------------------------------------------------------------- /src/Options.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makeitworkpress/wp-custom-fields/HEAD/src/Options.php -------------------------------------------------------------------------------- /src/Styling.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makeitworkpress/wp-custom-fields/HEAD/src/Styling.php -------------------------------------------------------------------------------- /src/Validate.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makeitworkpress/wp-custom-fields/HEAD/src/Validate.php -------------------------------------------------------------------------------- /src/assets/js/app.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makeitworkpress/wp-custom-fields/HEAD/src/assets/js/app.ts -------------------------------------------------------------------------------- /src/assets/js/fields/button.field.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makeitworkpress/wp-custom-fields/HEAD/src/assets/js/fields/button.field.ts -------------------------------------------------------------------------------- /src/assets/js/fields/code.field.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makeitworkpress/wp-custom-fields/HEAD/src/assets/js/fields/code.field.ts -------------------------------------------------------------------------------- /src/assets/js/fields/colorpicker.field.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makeitworkpress/wp-custom-fields/HEAD/src/assets/js/fields/colorpicker.field.ts -------------------------------------------------------------------------------- /src/assets/js/fields/datepicker.field.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makeitworkpress/wp-custom-fields/HEAD/src/assets/js/fields/datepicker.field.ts -------------------------------------------------------------------------------- /src/assets/js/fields/heading.field.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makeitworkpress/wp-custom-fields/HEAD/src/assets/js/fields/heading.field.ts -------------------------------------------------------------------------------- /src/assets/js/fields/icons.field.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makeitworkpress/wp-custom-fields/HEAD/src/assets/js/fields/icons.field.ts -------------------------------------------------------------------------------- /src/assets/js/fields/location.field.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makeitworkpress/wp-custom-fields/HEAD/src/assets/js/fields/location.field.ts -------------------------------------------------------------------------------- /src/assets/js/fields/media.field.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makeitworkpress/wp-custom-fields/HEAD/src/assets/js/fields/media.field.ts -------------------------------------------------------------------------------- /src/assets/js/fields/repeatable.field.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makeitworkpress/wp-custom-fields/HEAD/src/assets/js/fields/repeatable.field.ts -------------------------------------------------------------------------------- /src/assets/js/fields/select.field.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makeitworkpress/wp-custom-fields/HEAD/src/assets/js/fields/select.field.ts -------------------------------------------------------------------------------- /src/assets/js/fields/slider.field.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makeitworkpress/wp-custom-fields/HEAD/src/assets/js/fields/slider.field.ts -------------------------------------------------------------------------------- /src/assets/js/helpers/dependency.helper.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makeitworkpress/wp-custom-fields/HEAD/src/assets/js/helpers/dependency.helper.ts -------------------------------------------------------------------------------- /src/assets/js/layout/options.layout.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makeitworkpress/wp-custom-fields/HEAD/src/assets/js/layout/options.layout.ts -------------------------------------------------------------------------------- /src/assets/js/layout/tabs.layout.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makeitworkpress/wp-custom-fields/HEAD/src/assets/js/layout/tabs.layout.ts -------------------------------------------------------------------------------- /src/assets/js/modules/fields.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makeitworkpress/wp-custom-fields/HEAD/src/assets/js/modules/fields.module.ts -------------------------------------------------------------------------------- /src/assets/less/attributes.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makeitworkpress/wp-custom-fields/HEAD/src/assets/less/attributes.less -------------------------------------------------------------------------------- /src/assets/less/fields.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makeitworkpress/wp-custom-fields/HEAD/src/assets/less/fields.less -------------------------------------------------------------------------------- /src/assets/less/fields/boxshadow.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makeitworkpress/wp-custom-fields/HEAD/src/assets/less/fields/boxshadow.less -------------------------------------------------------------------------------- /src/assets/less/fields/button.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makeitworkpress/wp-custom-fields/HEAD/src/assets/less/fields/button.less -------------------------------------------------------------------------------- /src/assets/less/fields/colorpicker.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makeitworkpress/wp-custom-fields/HEAD/src/assets/less/fields/colorpicker.less -------------------------------------------------------------------------------- /src/assets/less/fields/datepicker.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makeitworkpress/wp-custom-fields/HEAD/src/assets/less/fields/datepicker.less -------------------------------------------------------------------------------- /src/assets/less/fields/dimensions.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makeitworkpress/wp-custom-fields/HEAD/src/assets/less/fields/dimensions.less -------------------------------------------------------------------------------- /src/assets/less/fields/heading.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makeitworkpress/wp-custom-fields/HEAD/src/assets/less/fields/heading.less -------------------------------------------------------------------------------- /src/assets/less/fields/icons.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makeitworkpress/wp-custom-fields/HEAD/src/assets/less/fields/icons.less -------------------------------------------------------------------------------- /src/assets/less/fields/location.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makeitworkpress/wp-custom-fields/HEAD/src/assets/less/fields/location.less -------------------------------------------------------------------------------- /src/assets/less/fields/media.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makeitworkpress/wp-custom-fields/HEAD/src/assets/less/fields/media.less -------------------------------------------------------------------------------- /src/assets/less/fields/radio.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makeitworkpress/wp-custom-fields/HEAD/src/assets/less/fields/radio.less -------------------------------------------------------------------------------- /src/assets/less/fields/repeatable.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makeitworkpress/wp-custom-fields/HEAD/src/assets/less/fields/repeatable.less -------------------------------------------------------------------------------- /src/assets/less/fields/select.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makeitworkpress/wp-custom-fields/HEAD/src/assets/less/fields/select.less -------------------------------------------------------------------------------- /src/assets/less/fields/slider.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makeitworkpress/wp-custom-fields/HEAD/src/assets/less/fields/slider.less -------------------------------------------------------------------------------- /src/assets/less/fields/typography.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makeitworkpress/wp-custom-fields/HEAD/src/assets/less/fields/typography.less -------------------------------------------------------------------------------- /src/assets/less/frame.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makeitworkpress/wp-custom-fields/HEAD/src/assets/less/frame.less -------------------------------------------------------------------------------- /src/assets/less/grid.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makeitworkpress/wp-custom-fields/HEAD/src/assets/less/grid.less -------------------------------------------------------------------------------- /src/assets/less/wp-custom-fields.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makeitworkpress/wp-custom-fields/HEAD/src/assets/less/wp-custom-fields.less -------------------------------------------------------------------------------- /src/config/fonts.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makeitworkpress/wp-custom-fields/HEAD/src/config/fonts.php -------------------------------------------------------------------------------- /src/config/icons.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makeitworkpress/wp-custom-fields/HEAD/src/config/icons.php -------------------------------------------------------------------------------- /src/config/scripts.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makeitworkpress/wp-custom-fields/HEAD/src/config/scripts.php -------------------------------------------------------------------------------- /src/config/styles.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makeitworkpress/wp-custom-fields/HEAD/src/config/styles.php -------------------------------------------------------------------------------- /src/templates/frame.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makeitworkpress/wp-custom-fields/HEAD/src/templates/frame.php -------------------------------------------------------------------------------- /src/templates/nothing.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makeitworkpress/wp-custom-fields/HEAD/src/templates/nothing.php --------------------------------------------------------------------------------