UNPKG

gd-bs

Version:

Bootstrap JavaScript, TypeScript and Web Components library.

12 lines (11 loc) 876 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.HTMLSwitch = exports.HTMLRadio = exports.HTMLCheckbox = exports.HTML = void 0; // Checkbox exports.HTML = "\n<div>\n <legend class=\"col-form-label\"></legend>\n <div class=\"row\"></div>\n</div>".trim(); // Checkbox exports.HTMLCheckbox = "\n<div class=\"form-check\">\n <input type=\"checkbox\" class=\"form-check-input\" />\n <label class=\"form-check-label\"></label>\n</div>".trim(); // Radio exports.HTMLRadio = "\n<div class=\"form-check\">\n <input type=\"radio\" class=\"form-check-input\" />\n <label class=\"form-check-label\"></label>\n</div>".trim(); // Switch exports.HTMLSwitch = "\n<div class=\"form-check form-switch\">\n <input type=\"checkbox\" class=\"form-check-input\" />\n <label class=\"form-check-label\"></label>\n</div>".trim();