phore/theme-bootstrap

Bootstrap 4 Theme using fluent HTML

Installs: 3 872

Dependents: 1

Suggesters: 0

Security: 0

Stars: 0

Watchers: 3

Forks: 0

Open Issues: 0

Language:JavaScript

v0.2.2 2020-06-18 22:25 UTC

This package is auto-updated.

Last update: 2024-04-19 07:15:51 UTC


README

Libraries are included as assets

Installation

composer require phore/theme-bootstrap

Example

See example page

Example / testing is included. Run kickstart.sh to go live and open http://localhost in your browser.

Features

Daterangepicker

Homepage

Activate in theme:

$themeConfig->frameworkds["daterangepicker"] = true;

Example

$('#demo').daterangepicker({
    "startDate": "06/12/2020",
    "endDate": "06/18/2020"
}, function(start, end, label) {
  console.log('New date range selected: ' + start.format('YYYY-MM-DD') + ' to ' + end.format('YYYY-MM-DD') + ' (predefined range: ' + label + ')');
});

Select2

Homepage

$themeConfig->frameworkds["select2"] = true;

MomentJS

Homepage