### Install Gulp CLI Globally Source: https://coderthemes.com/ubold/docs/index.html/setup Instructions to install the Gulp command-line interface globally using npm. This is a prerequisite for using Gulp build tools and should be run from your terminal. ```shell npm install -g gulp@4.0.1 ``` -------------------------------- ### Build Ubold Demos for Production with Gulp Source: https://coderthemes.com/ubold/docs/index.html/setup Commands to compile and optimize Ubold demos for production use. The compiled versions would be available inside the `dist` folder, optimized for best performance. ```shell gulp build ``` ```shell gulp build --demo ** ``` -------------------------------- ### Run Ubold Demos Locally with Gulp Source: https://coderthemes.com/ubold/docs/index.html/setup Commands to run different Ubold demos locally. Gulp starts a development server and watches for code changes (HTML, JavaScript, Sass). The development server is accessible via `http://localhost:3000/` followed by the demo name. ```shell gulp ``` ```shell gulp --demo creative ``` ```shell gulp --demo material ``` ```shell gulp --demo modern ``` ```shell gulp --demo purple ``` ```shell gulp --demo saas ``` -------------------------------- ### Install Project Dependencies with Yarn Source: https://coderthemes.com/ubold/docs/index.html/setup Command to install all required project dependencies listed in `package.json` into the `node_modules` folder using Yarn. This prepares the project for local execution and should be run from the project's root directory. ```shell yarn install ``` -------------------------------- ### Troubleshoot Node-Sass Installation Errors Source: https://coderthemes.com/ubold/docs/index.html/setup Workarounds for the `Error: ENOENT: no such file or directory, scandir '/root/website/node_modules/node-sass/vendor'` error, often encountered during `npm install`. Try these steps if you face issues with `node-sass`. ```shell npm rebuild node-sass ``` ```shell npm install ``` -------------------------------- ### Enable RTL Version in UBold HTML Source: https://coderthemes.com/ubold/docs/index.html/customization This snippet describes how to enable Right-to-Left (RTL) layout for UBold themes. It involves replacing the standard `bootstrap.min.css` and `app.min.css` references with their RTL counterparts (`bootstrap-rtl.min.css` and `app-rtl.min.css`), and adding the `dir="rtl"` attribute to the `html` tag in `main.html`. ```HTML ``` -------------------------------- ### Configure Horizontal Menu in UBold HTML Source: https://coderthemes.com/ubold/docs/index.html/customization This snippet details how to enable a horizontal menu layout in UBold themes. It involves updating the `menu.html` partial to include the horizontal menu and adding the `data-layout="horizontal"` attribute to the `html` tag in `main.html`. ```HTML @@include('horizontal-menu.html') ``` ```HTML ``` -------------------------------- ### Configure Two-Column Sidenav Menu in UBold HTML Source: https://coderthemes.com/ubold/docs/index.html/customization This snippet explains how to set up a two-column sidebar menu in UBold themes. It requires updating the `menu.html` partial to include the two-column sidebar and adding the `data-layout="two-column"` attribute to the `html` tag in `main.html`. ```HTML @@include('two-column-sidebar.html') ``` ```HTML ``` -------------------------------- ### HTML Data Attributes for Ubold Layout and Theme Customization Source: https://coderthemes.com/ubold/docs/index.html/customization This section details the various `data-*` attributes that can be applied to the `` element to control the Ubold theme's appearance and layout. These attributes allow for dynamic changes to the color scheme, overall layout style, content width, topbar color, menu color, sidenav size, and more, without modifying core CSS files directly. ```APIDOC data-bs-theme: Type: String Options: "dark" | "light" Description: Changes overall color scheme to dark data-layout: Type: String Options: "vertical" | "horizontal" | "two-column" Description: Changes overall layout Style. By default, it would be set to vertical (* Changes in partials) data-layout-width: Type: String Options: "fluid" | "boxed" Description: Changes the Content width of overall layout data-topbar-color: Type: String Options: "dark" | "light" | "brand" Description: Changes topbar color scheme to dark or light data-menu-color: Type: String Options: "light" | "dark" | "brand" | "gradient" Description: the Menu color scheme. By default, it would be set to default (light) data-menu-icon: Type: String Options: "default" | "twotone" Description: the Menu Icon Tone. By default, it would be set to default data-sidenav-size: Type: String Options: "default" | "compact" | "condensed" | "full" | "fullscreen" Description: Changes overall Sidenav Width. (* Only available in Sidenav Menu) data-layout-mode: Type: String Options: "default" | "detached" Description: Changes overall layout mode (* Available in Sidenav & Tow Colum Sidebar Menu) data-sidenav-user: Type: Boolean Options: "true" | "false" Description: Indicates whether to show Sidenav on opening up the page. (* Only available in Sidenav Menu) data-two-column-color: Type: String Options: "light" | "dark" | "brand" | "gradient" Description: the Two Colum Icon Menu color scheme. By default, it would be set to default (light) (* Only available in Two Column Sidebar Menu) ``` -------------------------------- ### JavaScript Configuration for Ubold Theme Defaults (head.js) Source: https://coderthemes.com/ubold/docs/index.html/customization This JavaScript snippet from `assets/js/head.js` defines the `defaultConfig` object, which allows developers to programmatically override the Ubold theme's default settings. Properties within this object control the overall theme (light/dark), layout mode and width, topbar color, menu color and icon style, and sidenav properties like size and user visibility. ```JavaScript // Default Config Value var defaultConfig = { theme: "light", // "dark" | "light" layout: { mode: "default", // "default" | "detached" width: "fluid", // "fluid" | "boxed" }, topbar: { color: "light", // "light" | "dark" | "brand" }, menu: { color: "light", // "light" | "dark" | "brand" | "gradient" icon: "default", // "default" | "twotone" }, // This option for only vertical (left Sidebar) layout sidenav: { size: "default", // "default" | "compact" | "condensed" | "full" | "fullscreen" twocolumn: "light", // "light" | "dark" | "brand" | "gradient" user: false, // "true" | "false" }, }; ``` -------------------------------- ### UBold Project File Structure Source: https://coderthemes.com/ubold/docs/index.html/index This snippet illustrates the directory and file organization of the UBold admin template after extracting the purchased zip file, showing the main folders like `docs`, `ubold` (with `dist`, `src`, and demo-specific HTML files), and configuration files. ```Text ├── docs └── ubold │ ├── dist │ ├── src/ │ │ └── assets - the reusable assets used in different demos │ │ │ └── fonts │ │ │ └── images │ │ │ └── js │ │ │ └── scss │ │ │ └── data │ │ └── creative - source html file for creative demo │ │ └── default - source html file for default demo │ │ └── material - source html file for material demo │ │ └── modern - source html file for moderen demo │ │ └── saas - source html file for saas demo │ │ └── purple - source html file for purple demo │ ├── gulpfile.js - A folder containing gulp tasks │ ├── package.json │ ├── yarn.lock └── README.md ``` -------------------------------- ### Plugin Assets for Kanbanboard Source: https://coderthemes.com/ubold/docs/index.html/plugins-uses Details the required CSS, JavaScript, and custom JavaScript files for the Kanbanboard feature. ```APIDOC Page/App: Kanbanboard Plugin CSS: - Plugin JS: jquery-ui.min.js Custom JS: kanban.init.js ``` -------------------------------- ### Plugin Assets for Coming-soon Source: https://coderthemes.com/ubold/docs/index.html/plugins-uses Details the required CSS, JavaScript, and custom JavaScript files for the Coming-soon page. ```APIDOC Page/App: Coming-soon Plugin CSS: - Plugin JS: jquery.countdown.min.js Custom JS: coming-soon.init.js ``` -------------------------------- ### Plugin Assets for Tooltips & Popovers Source: https://coderthemes.com/ubold/docs/index.html/plugins-uses Details the required CSS, JavaScript, and custom JavaScript files for Tooltips & Popovers functionality. ```APIDOC Page/App: Tooltips & Popovers Plugin CSS: - Plugin JS: tippy.all.min.js Custom JS: - ``` -------------------------------- ### Plugin Assets for Todo - App Source: https://coderthemes.com/ubold/docs/index.html/plugins-uses Details the required CSS, JavaScript, and custom JavaScript files for the Todo application page. ```APIDOC Page/App: Todo - App Plugin CSS: sweetalert2.min.css Plugin JS: sweetalert2.min.js, moment.min.js Custom JS: jquery.todo.js ``` -------------------------------- ### Plugin Assets for Tour Source: https://coderthemes.com/ubold/docs/index.html/plugins-uses Details the required CSS, JavaScript, and custom JavaScript files for Tour functionality. ```APIDOC Page/App: Tour Plugin CSS: hopscotch.min.css Plugin JS: hopscotch.min.js Custom JS: tour.init.js ``` -------------------------------- ### Plugin Assets for Loading-buttons Source: https://coderthemes.com/ubold/docs/index.html/plugins-uses Details the required CSS, JavaScript, and custom JavaScript files for Loading-buttons functionality. ```APIDOC Page/App: Loading-buttons Plugin CSS: ladda-themeless.min.css Plugin JS: spin.js, ladda.js Custom JS: loading-btn.init.js ``` -------------------------------- ### Plugin Assets for Responsive Table Source: https://coderthemes.com/ubold/docs/index.html/plugins-uses Details the required CSS, JavaScript, and custom JavaScript files for Responsive Table functionality. ```APIDOC Page/App: Responsive Table Plugin CSS: rwd-table.min.css Plugin JS: rwd-table.min.js Custom JS: responsive-table.init.js ``` -------------------------------- ### Plugin Assets for Gallery Source: https://coderthemes.com/ubold/docs/index.html/plugins-uses Details the required CSS, JavaScript, and custom JavaScript files for the Gallery feature. ```APIDOC Page/App: Gallery Plugin CSS: magnific-popup.css Plugin JS: jquery.magnific-popup.min.js Custom JS: gallery.init.js ``` -------------------------------- ### Plugin Assets for Foo Tables Source: https://coderthemes.com/ubold/docs/index.html/plugins-uses Details the required CSS, JavaScript, and custom JavaScript files for Foo Tables functionality. ```APIDOC Page/App: Foo Tables Plugin CSS: footable.core.min.css Plugin JS: footable.all.min.js Custom JS: foo-tables.init.js ``` -------------------------------- ### Plugin Assets for Sweet-alert Source: https://coderthemes.com/ubold/docs/index.html/plugins-uses Details the required CSS, JavaScript, and custom JavaScript files for Sweet-alert functionality. ```APIDOC Page/App: Sweet-alert Plugin CSS: sweetalert2.min.css Plugin JS: sweetalert2.min.js Custom JS: sweet-alerts.init.js ``` -------------------------------- ### Plugin Assets for Nestable Source: https://coderthemes.com/ubold/docs/index.html/plugins-uses Details the required CSS, JavaScript, and custom JavaScript files for Nestable functionality. ```APIDOC Page/App: Nestable Plugin CSS: jquery.nestable.min.css Plugin JS: jquery.nestable.min.js Custom JS: nestable.init.js ``` -------------------------------- ### Plugin Assets for X Editable Source: https://coderthemes.com/ubold/docs/index.html/plugins-uses Details the required CSS, JavaScript, and custom JavaScript files for X Editable functionality. ```APIDOC Page/App: X Editable Plugin CSS: bootstrap-editable.css Plugin JS: moment.min.js, bootstrap-editable.min.js Custom JS: form-xeditable.init.js ``` -------------------------------- ### Plugin Assets for Chat - App Source: https://coderthemes.com/ubold/docs/index.html/plugins-uses Details the required CSS, JavaScript, and custom JavaScript files for the Chat application page. ```APIDOC Page/App: Chat - App Plugin CSS: sweetalert2.min.css Plugin JS: sweetalert2.min.js, jquery.scrollTo.min.js, moment.min.js Custom JS: jquery.chat.js ``` -------------------------------- ### Plugin Assets for Peity Charts Source: https://coderthemes.com/ubold/docs/index.html/plugins-uses Details the required CSS, JavaScript, and custom JavaScript files for Peity Charts functionality. ```APIDOC Page/App: Peity Charts Plugin CSS: - Plugin JS: jquery.peity.min.js Custom JS: peity.init.js ``` -------------------------------- ### Plugin Assets for Forms-advanced - Switchery Source: https://coderthemes.com/ubold/docs/index.html/plugins-uses Details the required CSS, JavaScript, and custom JavaScript files for Forms-advanced Switchery functionality. ```APIDOC Page/App: Forms-advanced - Switchery Plugin CSS: switchery.min.css Plugin JS: switchery.min.js Custom JS: form-advanced.init.js ``` -------------------------------- ### Plugin Assets for Bootstrap Tables Source: https://coderthemes.com/ubold/docs/index.html/plugins-uses Details the required CSS, JavaScript, and custom JavaScript files for Bootstrap Tables functionality. ```APIDOC Page/App: Bootstrap Tables Plugin CSS: bootstrap-table.min.css Plugin JS: bootstrap-table.min.js Custom JS: bootstrap-tables.init.js ``` -------------------------------- ### Plugin Assets for Modals Source: https://coderthemes.com/ubold/docs/index.html/plugins-uses Details the required CSS, JavaScript, and custom JavaScript files for Modals functionality. ```APIDOC Page/App: Modals Plugin CSS: custombox.min.css Plugin JS: custombox.min.js Custom JS: - ``` -------------------------------- ### Plugin Assets for Forms-advanced - Nice Select Source: https://coderthemes.com/ubold/docs/index.html/plugins-uses Details the required CSS, JavaScript, and custom JavaScript files for Forms-advanced Nice Select functionality. ```APIDOC Page/App: Forms-advanced - Nice Select Plugin CSS: nice-select.css Plugin JS: jquery.nice-select.min.js Custom JS: form-advanced.init.js ``` -------------------------------- ### Plugin Assets for Form Wizard Source: https://coderthemes.com/ubold/docs/index.html/plugins-uses Details the required CSS, JavaScript, and custom JavaScript files for Form Wizard functionality. ```APIDOC Page/App: Form Wizard Plugin CSS: - Plugin JS: jquery.bootstrap.wizard.min.js Custom JS: form-wizard.init.js ``` -------------------------------- ### Plugin Assets for File Uploads - Dropzone Source: https://coderthemes.com/ubold/docs/index.html/plugins-uses Details the required CSS, JavaScript, and custom JavaScript files for File Uploads Dropzone functionality. ```APIDOC Page/App: File Uploads - Dropzone Plugin CSS: dropzone.min.css Plugin JS: dropzone.min.js Custom JS: - ``` -------------------------------- ### Plugin Assets for Notifications Source: https://coderthemes.com/ubold/docs/index.html/plugins-uses Details the required CSS, JavaScript, and custom JavaScript files for Notifications functionality. ```APIDOC Page/App: Notifications Plugin CSS: jquery.toast.min.css Plugin JS: jquery.toast.min.js Custom JS: toastr.init.js ``` -------------------------------- ### Plugin Assets for Calendar Source: https://coderthemes.com/ubold/docs/index.html/plugins-uses Details the required CSS, JavaScript, and custom JavaScript files for the Calendar feature. ```APIDOC Page/App: Calendar Plugin CSS: fullcalendar.min.css Plugin JS: moment.min.js, jquery-ui.min.js, fullcalendar.min.js Custom JS: calendar.init.js ``` -------------------------------- ### Plugin Assets for Tablesaw Tables Source: https://coderthemes.com/ubold/docs/index.html/plugins-uses Details the required CSS, JavaScript, and custom JavaScript files for Tablesaw Tables functionality. ```APIDOC Page/App: Tablesaw Tables Plugin CSS: tablesaw.css Plugin JS: tablesaw.js Custom JS: tablesaw.init.js ``` -------------------------------- ### Plugin Assets for Image Crop Source: https://coderthemes.com/ubold/docs/index.html/plugins-uses Details the required CSS, JavaScript, and custom JavaScript files for Image Crop functionality. ```APIDOC Page/App: Image Crop Plugin CSS: cropper.min.css Plugin JS: cropper.min.js Custom JS: form-imagecrop.init.js ``` -------------------------------- ### Plugin Assets for Animation Source: https://coderthemes.com/ubold/docs/index.html/plugins-uses Details the required CSS, JavaScript, and custom JavaScript files for Animation functionality. ```APIDOC Page/App: Animation Plugin CSS: animate.min.css Plugin JS: - Custom JS: animation.init.js ``` -------------------------------- ### Plugin Assets for Range-slider Source: https://coderthemes.com/ubold/docs/index.html/plugins-uses Details the required CSS, JavaScript, and custom JavaScript files for Range-slider functionality. ```APIDOC Page/App: Range-slider Plugin CSS: ion.rangeSlider.css, ion.rangeSlider.skinModern.css Plugin JS: ion.rangeSlider.min.js Custom JS: range-sliders.init.js ``` -------------------------------- ### Plugin Assets for JsGrid Tables Source: https://coderthemes.com/ubold/docs/index.html/plugins-uses Details the required CSS, JavaScript, and custom JavaScript files for JsGrid Tables functionality. ```APIDOC Page/App: JsGrid Tables Plugin CSS: jsgrid.min.css, jsgrid-theme.css Plugin JS: jsgrid.min.js Custom JS: jsgrid.init.js ``` -------------------------------- ### Plugin Assets for Chartjs Source: https://coderthemes.com/ubold/docs/index.html/plugins-uses Details the required CSS, JavaScript, and custom JavaScript files for Chartjs functionality. ```APIDOC Page/App: Chartjs Plugin CSS: - Plugin JS: Chart.bundle.min.js Custom JS: chartjs.init.js ``` -------------------------------- ### Plugin Assets for Forms-advanced - Auto Complete Source: https://coderthemes.com/ubold/docs/index.html/plugins-uses Details the required CSS, JavaScript, and custom JavaScript files for Forms-advanced Auto Complete functionality. ```APIDOC Page/App: Forms-advanced - Auto Complete Plugin CSS: - Plugin JS: jquery.mockjax.min.js, jquery.autocomplete.min.js Custom JS: form-advanced.init.js ``` -------------------------------- ### Plugin Assets for File Uploads - Dropify Source: https://coderthemes.com/ubold/docs/index.html/plugins-uses Details the required CSS, JavaScript, and custom JavaScript files for File Uploads Dropify functionality. ```APIDOC Page/App: File Uploads - Dropify Plugin CSS: dropify.min.css Plugin JS: dropify.min.js Custom JS: form-fileuploads.init.js ``` -------------------------------- ### Plugin Assets for Form Masks - Input Masks Source: https://coderthemes.com/ubold/docs/index.html/plugins-uses Details the required CSS, JavaScript, and custom JavaScript files for Form Masks Input Masks functionality. ```APIDOC Page/App: Form Masks - Input Masks Plugin CSS: - Plugin JS: jquery.mask.min.js Custom JS: - ``` -------------------------------- ### Plugin Assets for Forms-advanced - Bootstrap-select Source: https://coderthemes.com/ubold/docs/index.html/plugins-uses Details the required CSS, JavaScript, and custom JavaScript files for Forms-advanced Bootstrap-select functionality. ```APIDOC Page/App: Forms-advanced - Bootstrap-select Plugin CSS: bootstrap-select.min.css Plugin JS: bootstrap-select.min.js Custom JS: form-advanced.init.js ``` -------------------------------- ### Plugin Assets for Morris Charts Source: https://coderthemes.com/ubold/docs/index.html/plugins-uses Details the required CSS, JavaScript, and custom JavaScript files for Morris Charts functionality. ```APIDOC Page/App: Morris Charts Plugin CSS: - Plugin JS: morris.min.js, raphael.min.js Custom JS: morris.init.js ``` -------------------------------- ### Plugin Assets for Summernote Source: https://coderthemes.com/ubold/docs/index.html/plugins-uses Details the required CSS, JavaScript, and custom JavaScript files for Summernote functionality. ```APIDOC Page/App: Summernote Plugin CSS: summernote-bs4.css Plugin JS: summernote-bs4.min.js Custom JS: form-summernote.init.js ``` -------------------------------- ### Plugin Assets for Table Editable Source: https://coderthemes.com/ubold/docs/index.html/plugins-uses Details the required CSS, JavaScript, and custom JavaScript files for Table Editable functionality. ```APIDOC Page/App: Table Editable Plugin CSS: - Plugin JS: jquery.tabledit.min.js Custom JS: tabledit.init.js ``` -------------------------------- ### Plugin Assets for Forms-advanced - Bootstrap MaxLength Source: https://coderthemes.com/ubold/docs/index.html/plugins-uses Details the required CSS, JavaScript, and custom JavaScript files for Forms-advanced Bootstrap MaxLength functionality. ```APIDOC Page/App: Forms-advanced - Bootstrap MaxLength Plugin CSS: - Plugin JS: bootstrap-maxlength.min.js Custom JS: form-advanced.init.js ``` -------------------------------- ### Plugin Assets for Forms-advanced - Bootstrap Touchspin Source: https://coderthemes.com/ubold/docs/index.html/plugins-uses Details the required CSS, JavaScript, and custom JavaScript files for Forms-advanced Bootstrap Touchspin functionality. ```APIDOC Page/App: Forms-advanced - Bootstrap Touchspin Plugin CSS: jquery.bootstrap-touchspin.css Plugin JS: jquery.bootstrap-touchspin.min.js Custom JS: form-advanced.init.js ``` -------------------------------- ### Plugin Assets for Flot Charts Source: https://coderthemes.com/ubold/docs/index.html/plugins-uses Details the required CSS, JavaScript, and custom JavaScript files for Flot Charts functionality. ```APIDOC Page/App: Flot Charts Plugin CSS: - Plugin JS: jquery.flot.js, jquery.flot.time.js, jquery.flot.tooltip.min.js, jquery.flot.resize.js, jquery.flot.pie.js, jquery.flot.selection.js, jquery.flot.stack.js, jquery.flot.orderBars.js, jquery.flot.crosshair.js Custom JS: flot.init.js ``` -------------------------------- ### Plugin Assets for Forms-advanced - Multiple Select Source: https://coderthemes.com/ubold/docs/index.html/plugins-uses Details the required CSS, JavaScript, and custom JavaScript files for Forms-advanced Multiple Select functionality. ```APIDOC Page/App: Forms-advanced - Multiple Select Plugin CSS: multi-select.css Plugin JS: jquery.multi-select.js Custom JS: form-advanced.init.js ``` -------------------------------- ### Plugin Assets for Form Pickers - Clock Picker Source: https://coderthemes.com/ubold/docs/index.html/plugins-uses Details the required CSS, JavaScript, and custom JavaScript files for Form Pickers Clock Picker functionality. ```APIDOC Page/App: Form Pickers - Clock Picker Plugin CSS: bootstrap-clockpicker.min.css Plugin JS: bootstrap-clockpicker.min.js Custom JS: form-pickers.init.js ``` -------------------------------- ### Plugin Assets for Form Pickers - Flatpickr Source: https://coderthemes.com/ubold/docs/index.html/plugins-uses Details the required CSS, JavaScript, and custom JavaScript files for Form Pickers Flatpickr functionality. ```APIDOC Page/App: Form Pickers - Flatpickr Plugin CSS: flatpickr.min.css Plugin JS: flatpickr.min.js Custom JS: form-pickers.init.js ``` -------------------------------- ### Plugin Assets for Form Pickers - Colorpicker Source: https://coderthemes.com/ubold/docs/index.html/plugins-uses Details the required CSS, JavaScript, and custom JavaScript files for Form Pickers Colorpicker functionality. ```APIDOC Page/App: Form Pickers - Colorpicker Plugin CSS: bootstrap-colorpicker.min.css Plugin JS: bootstrap-colorpicker.min.js Custom JS: form-pickers.init.js ``` -------------------------------- ### Plugin Assets for Datatables Source: https://coderthemes.com/ubold/docs/index.html/plugins-uses Details the required CSS, JavaScript, and custom JavaScript files for Datatables functionality. ```APIDOC Page/App: Datatables Plugin CSS: dataTables.bootstrap4.css, responsive.bootstrap4.css, buttons.bootstrap4.css, select.bootstrap4.css Plugin JS: jquery.dataTables.js, dataTables.bootstrap4.js, dataTables.responsive.min.js, responsive.bootstrap4.min.js, dataTables.buttons.min.js, buttons.bootstrap4.min.js, buttons.html5.min.js, buttons.flash.min.js, buttons.print.min.js, dataTables.keyTable.min.js, dataTables.select.min.js, pdfmake.min.js, vfs_fonts.js Custom JS: datatables.init.js ``` -------------------------------- ### Plugin Assets for Forms-advanced - Select2 Source: https://coderthemes.com/ubold/docs/index.html/plugins-uses Details the required CSS, JavaScript, and custom JavaScript files for Forms-advanced Select2 functionality. ```APIDOC Page/App: Forms-advanced - Select2 Plugin CSS: select2.min.css Plugin JS: select2.min.js Custom JS: form-advanced.init.js ``` -------------------------------- ### Plugin Assets for Quilljs Editor Source: https://coderthemes.com/ubold/docs/index.html/plugins-uses Details the required CSS, JavaScript, and custom JavaScript files for Quilljs Editor functionality. ```APIDOC Page/App: Quilljs Editor Plugin CSS: quill.core.css, quill.bubble.css, quill.snow.css Plugin JS: katex.min.js, quill.min.js Custom JS: form-quilljs.init.js ``` -------------------------------- ### Plugin Assets for Form Masks - Auto Numberic Source: https://coderthemes.com/ubold/docs/index.html/plugins-uses Details the required CSS, JavaScript, and custom JavaScript files for Form Masks Auto Numberic functionality. ```APIDOC Page/App: Form Masks - Auto Numberic Plugin CSS: - Plugin JS: autoNumeric-min.js Custom JS: form-masks.init.js ``` -------------------------------- ### Plugin Assets for Forms-validation - Parsley Source: https://coderthemes.com/ubold/docs/index.html/plugins-uses Details the required CSS, JavaScript, and custom JavaScript files for Forms-validation Parsley functionality. ```APIDOC Page/App: Forms-validation - Parsley Plugin CSS: - Plugin JS: parsley.min.js Custom JS: form-validation.init.js ``` === COMPLETE CONTENT === This response contains all available snippets from this library. No additional content exists. Do not make further requests.