insights4you-jekyll-theme 0.2.0 → 0.4.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/CHANGELOG.md +110 -0
- data/README.md +114 -32
- data/_data/i4y-colors.json +218 -0
- data/_data/i4y-errors.json +32 -0
- data/_data/i4y-icons.json +1 -0
- data/_data/i4y-illustrations.json +20 -0
- data/_data/i4y-social-media.yml +24 -0
- data/_includes/card/profile.html +42 -0
- data/_includes/layout/footer.html +48 -0
- data/_includes/layout/head.html +79 -0
- data/_includes/layout/navbar-logo.html +137 -0
- data/_includes/layout/navbar.html +82 -0
- data/_includes/ui/button.html +13 -14
- data/_includes/ui/icon.html +24 -26
- data/_includes/ui/spinner.html +2 -0
- data/_includes/utils/banner.html +7 -0
- data/_includes/utils/settings.html +144 -0
- data/_layouts/base.html +63 -0
- data/_layouts/default.html +36 -11
- data/_sass/_bootstrap-components.scss +31 -0
- data/_sass/_bootstrap-config.scss +7 -0
- data/_sass/_bootstrap-override.scss +78 -0
- data/_sass/_config.scss +9 -0
- data/_sass/_core.scss +78 -0
- data/_sass/_debug.scss +49 -0
- data/_sass/_mixins.scss +2 -0
- data/_sass/_props.scss +91 -0
- data/_sass/_utilities-marketing.scss +209 -0
- data/_sass/_utilities.scss +135 -0
- data/_sass/_variables-dark.scss +19 -0
- data/_sass/_variables-marketing.scss +0 -0
- data/_sass/_variables.scss +1001 -0
- data/_sass/bootstrap/LICENSE +21 -0
- data/_sass/bootstrap/README.md +246 -0
- data/_sass/bootstrap/js/index.esm.js +19 -0
- data/_sass/bootstrap/js/index.umd.js +34 -0
- data/_sass/bootstrap/js/src/alert.js +87 -0
- data/_sass/bootstrap/js/src/base-component.js +85 -0
- data/_sass/bootstrap/js/src/button.js +72 -0
- data/_sass/bootstrap/js/src/carousel.js +474 -0
- data/_sass/bootstrap/js/src/collapse.js +297 -0
- data/_sass/bootstrap/js/src/dom/data.js +55 -0
- data/_sass/bootstrap/js/src/dom/event-handler.js +317 -0
- data/_sass/bootstrap/js/src/dom/manipulator.js +71 -0
- data/_sass/bootstrap/js/src/dom/selector-engine.js +126 -0
- data/_sass/bootstrap/js/src/dropdown.js +455 -0
- data/_sass/bootstrap/js/src/modal.js +378 -0
- data/_sass/bootstrap/js/src/offcanvas.js +282 -0
- data/_sass/bootstrap/js/src/popover.js +97 -0
- data/_sass/bootstrap/js/src/scrollspy.js +296 -0
- data/_sass/bootstrap/js/src/tab.js +315 -0
- data/_sass/bootstrap/js/src/toast.js +225 -0
- data/_sass/bootstrap/js/src/tooltip.js +633 -0
- data/_sass/bootstrap/js/src/util/backdrop.js +151 -0
- data/_sass/bootstrap/js/src/util/component-functions.js +35 -0
- data/_sass/bootstrap/js/src/util/config.js +65 -0
- data/_sass/bootstrap/js/src/util/focustrap.js +115 -0
- data/_sass/bootstrap/js/src/util/index.js +306 -0
- data/_sass/bootstrap/js/src/util/sanitizer.js +117 -0
- data/_sass/bootstrap/js/src/util/scrollbar.js +114 -0
- data/_sass/bootstrap/js/src/util/swipe.js +146 -0
- data/_sass/bootstrap/js/src/util/template-factory.js +160 -0
- data/_sass/bootstrap/package.json +184 -0
- data/_sass/bootstrap/scss/_accordion.scss +158 -0
- data/_sass/bootstrap/scss/_alert.scss +68 -0
- data/_sass/bootstrap/scss/_badge.scss +38 -0
- data/_sass/bootstrap/scss/_breadcrumb.scss +40 -0
- data/_sass/bootstrap/scss/_button-group.scss +142 -0
- data/_sass/bootstrap/scss/_buttons.scss +216 -0
- data/_sass/bootstrap/scss/_card.scss +239 -0
- data/_sass/bootstrap/scss/_carousel.scss +236 -0
- data/_sass/bootstrap/scss/_close.scss +63 -0
- data/_sass/bootstrap/scss/_containers.scss +41 -0
- data/_sass/bootstrap/scss/_dropdown.scss +250 -0
- data/_sass/bootstrap/scss/_forms.scss +9 -0
- data/_sass/bootstrap/scss/_functions.scss +302 -0
- data/_sass/bootstrap/scss/_grid.scss +39 -0
- data/_sass/bootstrap/scss/_helpers.scss +12 -0
- data/_sass/bootstrap/scss/_images.scss +42 -0
- data/_sass/bootstrap/scss/_list-group.scss +197 -0
- data/_sass/bootstrap/scss/_maps.scss +174 -0
- data/_sass/bootstrap/scss/_mixins.scss +42 -0
- data/_sass/bootstrap/scss/_modal.scss +236 -0
- data/_sass/bootstrap/scss/_nav.scss +197 -0
- data/_sass/bootstrap/scss/_navbar.scss +289 -0
- data/_sass/bootstrap/scss/_offcanvas.scss +143 -0
- data/_sass/bootstrap/scss/_pagination.scss +109 -0
- data/_sass/bootstrap/scss/_placeholders.scss +51 -0
- data/_sass/bootstrap/scss/_popover.scss +196 -0
- data/_sass/bootstrap/scss/_progress.scss +68 -0
- data/_sass/bootstrap/scss/_reboot.scss +611 -0
- data/_sass/bootstrap/scss/_root.scss +187 -0
- data/_sass/bootstrap/scss/_spinners.scss +85 -0
- data/_sass/bootstrap/scss/_tables.scss +171 -0
- data/_sass/bootstrap/scss/_toasts.scss +73 -0
- data/_sass/bootstrap/scss/_tooltip.scss +119 -0
- data/_sass/bootstrap/scss/_transitions.scss +27 -0
- data/_sass/bootstrap/scss/_type.scss +106 -0
- data/_sass/bootstrap/scss/_utilities.scss +806 -0
- data/_sass/bootstrap/scss/_variables-dark.scss +87 -0
- data/_sass/bootstrap/scss/_variables.scss +1751 -0
- data/_sass/bootstrap/scss/bootstrap-grid.scss +62 -0
- data/_sass/bootstrap/scss/bootstrap-reboot.scss +10 -0
- data/_sass/bootstrap/scss/bootstrap-utilities.scss +19 -0
- data/_sass/bootstrap/scss/bootstrap.scss +52 -0
- data/_sass/bootstrap/scss/forms/_floating-labels.scss +95 -0
- data/_sass/bootstrap/scss/forms/_form-check.scss +189 -0
- data/_sass/bootstrap/scss/forms/_form-control.scss +214 -0
- data/_sass/bootstrap/scss/forms/_form-range.scss +91 -0
- data/_sass/bootstrap/scss/forms/_form-select.scss +80 -0
- data/_sass/bootstrap/scss/forms/_form-text.scss +11 -0
- data/_sass/bootstrap/scss/forms/_input-group.scss +132 -0
- data/_sass/bootstrap/scss/forms/_labels.scss +36 -0
- data/_sass/bootstrap/scss/forms/_validation.scss +12 -0
- data/_sass/bootstrap/scss/helpers/_clearfix.scss +3 -0
- data/_sass/bootstrap/scss/helpers/_color-bg.scss +7 -0
- data/_sass/bootstrap/scss/helpers/_colored-links.scss +30 -0
- data/_sass/bootstrap/scss/helpers/_focus-ring.scss +5 -0
- data/_sass/bootstrap/scss/helpers/_icon-link.scss +25 -0
- data/_sass/bootstrap/scss/helpers/_position.scss +36 -0
- data/_sass/bootstrap/scss/helpers/_ratio.scss +26 -0
- data/_sass/bootstrap/scss/helpers/_stacks.scss +15 -0
- data/_sass/bootstrap/scss/helpers/_stretched-link.scss +15 -0
- data/_sass/bootstrap/scss/helpers/_text-truncation.scss +7 -0
- data/_sass/bootstrap/scss/helpers/_visually-hidden.scss +8 -0
- data/_sass/bootstrap/scss/helpers/_vr.scss +8 -0
- data/_sass/bootstrap/scss/mixins/_alert.scss +18 -0
- data/_sass/bootstrap/scss/mixins/_backdrop.scss +14 -0
- data/_sass/bootstrap/scss/mixins/_banner.scss +7 -0
- data/_sass/bootstrap/scss/mixins/_border-radius.scss +78 -0
- data/_sass/bootstrap/scss/mixins/_box-shadow.scss +18 -0
- data/_sass/bootstrap/scss/mixins/_breakpoints.scss +127 -0
- data/_sass/bootstrap/scss/mixins/_buttons.scss +70 -0
- data/_sass/bootstrap/scss/mixins/_caret.scss +69 -0
- data/_sass/bootstrap/scss/mixins/_clearfix.scss +9 -0
- data/_sass/bootstrap/scss/mixins/_color-mode.scss +21 -0
- data/_sass/bootstrap/scss/mixins/_color-scheme.scss +7 -0
- data/_sass/bootstrap/scss/mixins/_container.scss +11 -0
- data/_sass/bootstrap/scss/mixins/_deprecate.scss +10 -0
- data/_sass/bootstrap/scss/mixins/_forms.scss +163 -0
- data/_sass/bootstrap/scss/mixins/_gradients.scss +47 -0
- data/_sass/bootstrap/scss/mixins/_grid.scss +151 -0
- data/_sass/bootstrap/scss/mixins/_image.scss +16 -0
- data/_sass/bootstrap/scss/mixins/_list-group.scss +26 -0
- data/_sass/bootstrap/scss/mixins/_lists.scss +7 -0
- data/_sass/bootstrap/scss/mixins/_pagination.scss +10 -0
- data/_sass/bootstrap/scss/mixins/_reset-text.scss +17 -0
- data/_sass/bootstrap/scss/mixins/_resize.scss +6 -0
- data/_sass/bootstrap/scss/mixins/_table-variants.scss +24 -0
- data/_sass/bootstrap/scss/mixins/_text-truncate.scss +8 -0
- data/_sass/bootstrap/scss/mixins/_transition.scss +26 -0
- data/_sass/bootstrap/scss/mixins/_utilities.scss +97 -0
- data/_sass/bootstrap/scss/mixins/_visually-hidden.scss +33 -0
- data/_sass/bootstrap/scss/utilities/_api.scss +47 -0
- data/_sass/fonts/_webfonts.scss +15 -0
- data/_sass/helpers/_index.scss +143 -0
- data/_sass/layout/_animations.scss +63 -0
- data/_sass/layout/_core.scss +62 -0
- data/_sass/layout/_dark.scss +77 -0
- data/_sass/layout/_footer.scss +12 -0
- data/_sass/layout/_navbar.scss +392 -0
- data/_sass/layout/_page.scss +169 -0
- data/_sass/layout/_root.scss +64 -0
- data/_sass/marketing/_browser.scss +67 -0
- data/_sass/marketing/_core.scss +8 -0
- data/_sass/marketing/_filters.scss +0 -0
- data/_sass/marketing/_hero.scss +69 -0
- data/_sass/marketing/_pricing.scss +111 -0
- data/_sass/marketing/_sections.scss +124 -0
- data/_sass/marketing/_shape.scss +31 -0
- data/_sass/mixins/_functions.scss +96 -0
- data/_sass/mixins/_mixins.scss +68 -0
- data/_sass/tabler-flags.scss +2 -0
- data/_sass/tabler-marketing.scss +13 -0
- data/_sass/tabler-payments.scss +2 -0
- data/_sass/tabler-props.scss +1 -0
- data/_sass/tabler-socials.scss +2 -0
- data/_sass/tabler-themes.scss +121 -0
- data/_sass/tabler-vendors.scss +16 -0
- data/_sass/tabler.scss +2 -0
- data/_sass/ui/_accordion.scss +177 -0
- data/_sass/ui/_alerts.scss +99 -0
- data/_sass/ui/_avatars.scss +145 -0
- data/_sass/ui/_badges.scss +113 -0
- data/_sass/ui/_breadcrumbs.scss +50 -0
- data/_sass/ui/_button-group.scss +16 -0
- data/_sass/ui/_buttons.scss +261 -0
- data/_sass/ui/_calendars.scss +104 -0
- data/_sass/ui/_cards.scss +594 -0
- data/_sass/ui/_carousel.scss +68 -0
- data/_sass/ui/_charts.scss +61 -0
- data/_sass/ui/_chat.scss +38 -0
- data/_sass/ui/_chips.scss +0 -0
- data/_sass/ui/_close.scss +60 -0
- data/_sass/ui/_datagrid.scss +17 -0
- data/_sass/ui/_dropdowns.scss +120 -0
- data/_sass/ui/_empty.scss +60 -0
- data/_sass/ui/_flags.scss +31 -0
- data/_sass/ui/_forms.scss +241 -0
- data/_sass/ui/_grid.scss +115 -0
- data/_sass/ui/_icons.scss +72 -0
- data/_sass/ui/_images.scss +19 -0
- data/_sass/ui/_legend.scss +12 -0
- data/_sass/ui/_lists.scss +124 -0
- data/_sass/ui/_loaders.scss +72 -0
- data/_sass/ui/_login.scss +3 -0
- data/_sass/ui/_markdown.scss +43 -0
- data/_sass/ui/_modals.scss +67 -0
- data/_sass/ui/_nav.scss +96 -0
- data/_sass/ui/_offcanvas.scss +17 -0
- data/_sass/ui/_pagination.scss +58 -0
- data/_sass/ui/_payments.scss +28 -0
- data/_sass/ui/_placeholder.scss +9 -0
- data/_sass/ui/_popovers.scss +2 -0
- data/_sass/ui/_progress.scss +107 -0
- data/_sass/ui/_ribbons.scss +157 -0
- data/_sass/ui/_segmented.scss +101 -0
- data/_sass/ui/_signature.scss +15 -0
- data/_sass/ui/_social.scss +52 -0
- data/_sass/ui/_stars.scss +13 -0
- data/_sass/ui/_status.scss +163 -0
- data/_sass/ui/_steps.scss +156 -0
- data/_sass/ui/_switch-icon.scss +211 -0
- data/_sass/ui/_tables.scss +177 -0
- data/_sass/ui/_tags.scss +57 -0
- data/_sass/ui/_timeline.scss +61 -0
- data/_sass/ui/_toasts.scss +18 -0
- data/_sass/ui/_toolbar.scss +10 -0
- data/_sass/ui/_tracking.scss +29 -0
- data/_sass/ui/_type.scss +268 -0
- data/_sass/ui/forms/_form-check.scss +91 -0
- data/_sass/ui/forms/_form-colorinput.scss +54 -0
- data/_sass/ui/forms/_form-custom.scss +28 -0
- data/_sass/ui/forms/_form-icon.scss +35 -0
- data/_sass/ui/forms/_form-imagecheck.scss +105 -0
- data/_sass/ui/forms/_form-selectgroup.scss +153 -0
- data/_sass/ui/forms/_validation.scss +13 -0
- data/_sass/ui/typo/_hr.scss +77 -0
- data/_sass/utils/_background.scss +15 -0
- data/_sass/utils/_colors.scss +100 -0
- data/_sass/utils/_opacity.scss +7 -0
- data/_sass/utils/_scroll.scss +47 -0
- data/_sass/utils/_shadow.scss +9 -0
- data/_sass/utils/_sizing.scss +6 -0
- data/_sass/utils/_text.scss +15 -0
- data/_sass/vendors/_apexcharts.scss +48 -0
- data/_sass/vendors/_coloris.scss +72 -0
- data/_sass/vendors/_dropzone.scss +27 -0
- data/_sass/vendors/_fslightbox.scss +13 -0
- data/_sass/vendors/_jsvectormap.scss +47 -0
- data/_sass/vendors/_litepicker.scss +69 -0
- data/_sass/vendors/_nouislider.scss +49 -0
- data/_sass/vendors/_plyr.scss +3 -0
- data/_sass/vendors/_stars-rating.scss +22 -0
- data/_sass/vendors/_tinymce.scss +34 -0
- data/_sass/vendors/_tom-select.scss +81 -0
- data/_sass/vendors/_turbo.scss +3 -0
- data/_sass/vendors/_typed.scss +4 -0
- data/_sass/vendors/_wysiwyg.scss +34 -0
- data/assets/css/main.scss +10 -0
- data/assets/images/i4y-logo.jpg +0 -0
- data/assets/images/preview-dark.png +0 -0
- data/assets/js/custom.js +175 -0
- data/assets/js/custom.min.js +1 -0
- data/assets/js/theme.js +11 -30
- data/assets/js/theme.min.js +12 -0
- data/insights4you-jekyll-theme.gemspec +93 -0
- metadata +393 -25
- data/_includes/footer.html +0 -45
- data/_includes/head.html +0 -63
- data/_includes/header-logo.html +0 -179
- data/_includes/header-navbar.html +0 -69
- data/_includes/header-svg.html +0 -39
- data/_layouts/home.html +0 -19
- data/assets/css/theme.min.css +0 -90
@@ -0,0 +1,21 @@
|
|
1
|
+
The MIT License (MIT)
|
2
|
+
|
3
|
+
Copyright (c) 2011-2024 The Bootstrap Authors
|
4
|
+
|
5
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
6
|
+
of this software and associated documentation files (the "Software"), to deal
|
7
|
+
in the Software without restriction, including without limitation the rights
|
8
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
9
|
+
copies of the Software, and to permit persons to whom the Software is
|
10
|
+
furnished to do so, subject to the following conditions:
|
11
|
+
|
12
|
+
The above copyright notice and this permission notice shall be included in
|
13
|
+
all copies or substantial portions of the Software.
|
14
|
+
|
15
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
16
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
17
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
18
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
19
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
20
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
|
21
|
+
THE SOFTWARE.
|
@@ -0,0 +1,246 @@
|
|
1
|
+
<p align="center">
|
2
|
+
<a href="https://getbootstrap.com/">
|
3
|
+
<img src="https://getbootstrap.com/docs/5.3/assets/brand/bootstrap-logo-shadow.png" alt="Bootstrap logo" width="200" height="165">
|
4
|
+
</a>
|
5
|
+
</p>
|
6
|
+
|
7
|
+
<h3 align="center">Bootstrap</h3>
|
8
|
+
|
9
|
+
<p align="center">
|
10
|
+
Sleek, intuitive, and powerful front-end framework for faster and easier web development.
|
11
|
+
<br>
|
12
|
+
<a href="https://getbootstrap.com/docs/5.3/"><strong>Explore Bootstrap docs »</strong></a>
|
13
|
+
<br>
|
14
|
+
<br>
|
15
|
+
<a href="https://github.com/twbs/bootstrap/issues/new?assignees=-&labels=bug&template=bug_report.yml">Report bug</a>
|
16
|
+
·
|
17
|
+
<a href="https://github.com/twbs/bootstrap/issues/new?assignees=&labels=feature&template=feature_request.yml">Request feature</a>
|
18
|
+
·
|
19
|
+
<a href="https://themes.getbootstrap.com/">Themes</a>
|
20
|
+
·
|
21
|
+
<a href="https://blog.getbootstrap.com/">Blog</a>
|
22
|
+
</p>
|
23
|
+
|
24
|
+
|
25
|
+
## Bootstrap 5
|
26
|
+
|
27
|
+
Our default branch is for development of our Bootstrap 5 release. Head to the [`v4-dev` branch](https://github.com/twbs/bootstrap/tree/v4-dev) to view the readme, documentation, and source code for Bootstrap 4.
|
28
|
+
|
29
|
+
|
30
|
+
## Table of contents
|
31
|
+
|
32
|
+
- [Quick start](#quick-start)
|
33
|
+
- [Status](#status)
|
34
|
+
- [What's included](#whats-included)
|
35
|
+
- [Bugs and feature requests](#bugs-and-feature-requests)
|
36
|
+
- [Documentation](#documentation)
|
37
|
+
- [Contributing](#contributing)
|
38
|
+
- [Community](#community)
|
39
|
+
- [Versioning](#versioning)
|
40
|
+
- [Creators](#creators)
|
41
|
+
- [Thanks](#thanks)
|
42
|
+
- [Copyright and license](#copyright-and-license)
|
43
|
+
|
44
|
+
|
45
|
+
## Quick start
|
46
|
+
|
47
|
+
Several quick start options are available:
|
48
|
+
|
49
|
+
- [Download the latest release](https://github.com/twbs/bootstrap/archive/v5.3.3.zip)
|
50
|
+
- Clone the repo: `git clone https://github.com/twbs/bootstrap.git`
|
51
|
+
- Install with [npm](https://www.npmjs.com/): `npm install bootstrap@v5.3.3`
|
52
|
+
- Install with [yarn](https://yarnpkg.com/): `yarn add bootstrap@v5.3.3`
|
53
|
+
- Install with [Composer](https://getcomposer.org/): `composer require twbs/bootstrap:5.3.3`
|
54
|
+
- Install with [NuGet](https://www.nuget.org/): CSS: `Install-Package bootstrap` Sass: `Install-Package bootstrap.sass`
|
55
|
+
|
56
|
+
Read the [Getting started page](https://getbootstrap.com/docs/5.3/getting-started/introduction/) for information on the framework contents, templates, examples, and more.
|
57
|
+
|
58
|
+
|
59
|
+
## Status
|
60
|
+
|
61
|
+
[](https://github.com/twbs/bootstrap/actions/workflows/js.yml?query=workflow%3AJS+branch%3Amain)
|
62
|
+
[](https://www.npmjs.com/package/bootstrap)
|
63
|
+
[](https://rubygems.org/gems/bootstrap)
|
64
|
+
[](https://atmospherejs.com/twbs/bootstrap)
|
65
|
+
[](https://packagist.org/packages/twbs/bootstrap)
|
66
|
+
[](https://www.nuget.org/packages/bootstrap/absoluteLatest)
|
67
|
+
[](https://coveralls.io/github/twbs/bootstrap?branch=main)
|
68
|
+
[](https://github.com/twbs/bootstrap/blob/main/dist/css/bootstrap.min.css)
|
69
|
+
[](https://github.com/twbs/bootstrap/blob/main/dist/css/bootstrap.min.css)
|
70
|
+
[](https://github.com/twbs/bootstrap/blob/main/dist/js/bootstrap.min.js)
|
71
|
+
[](https://github.com/twbs/bootstrap/blob/main/dist/js/bootstrap.min.js)
|
72
|
+
[](#backers)
|
73
|
+
[](#sponsors)
|
74
|
+
|
75
|
+
|
76
|
+
## What's included
|
77
|
+
|
78
|
+
Within the download you'll find the following directories and files, logically grouping common assets and providing both compiled and minified variations.
|
79
|
+
|
80
|
+
<details>
|
81
|
+
<summary>Download contents</summary>
|
82
|
+
|
83
|
+
```text
|
84
|
+
bootstrap/
|
85
|
+
├── css/
|
86
|
+
│ ├── bootstrap-grid.css
|
87
|
+
│ ├── bootstrap-grid.css.map
|
88
|
+
│ ├── bootstrap-grid.min.css
|
89
|
+
│ ├── bootstrap-grid.min.css.map
|
90
|
+
│ ├── bootstrap-grid.rtl.css
|
91
|
+
│ ├── bootstrap-grid.rtl.css.map
|
92
|
+
│ ├── bootstrap-grid.rtl.min.css
|
93
|
+
│ ├── bootstrap-grid.rtl.min.css.map
|
94
|
+
│ ├── bootstrap-reboot.css
|
95
|
+
│ ├── bootstrap-reboot.css.map
|
96
|
+
│ ├── bootstrap-reboot.min.css
|
97
|
+
│ ├── bootstrap-reboot.min.css.map
|
98
|
+
│ ├── bootstrap-reboot.rtl.css
|
99
|
+
│ ├── bootstrap-reboot.rtl.css.map
|
100
|
+
│ ├── bootstrap-reboot.rtl.min.css
|
101
|
+
│ ├── bootstrap-reboot.rtl.min.css.map
|
102
|
+
│ ├── bootstrap-utilities.css
|
103
|
+
│ ├── bootstrap-utilities.css.map
|
104
|
+
│ ├── bootstrap-utilities.min.css
|
105
|
+
│ ├── bootstrap-utilities.min.css.map
|
106
|
+
│ ├── bootstrap-utilities.rtl.css
|
107
|
+
│ ├── bootstrap-utilities.rtl.css.map
|
108
|
+
│ ├── bootstrap-utilities.rtl.min.css
|
109
|
+
│ ├── bootstrap-utilities.rtl.min.css.map
|
110
|
+
│ ├── bootstrap.css
|
111
|
+
│ ├── bootstrap.css.map
|
112
|
+
│ ├── bootstrap.min.css
|
113
|
+
│ ├── bootstrap.min.css.map
|
114
|
+
│ ├── bootstrap.rtl.css
|
115
|
+
│ ├── bootstrap.rtl.css.map
|
116
|
+
│ ├── bootstrap.rtl.min.css
|
117
|
+
│ └── bootstrap.rtl.min.css.map
|
118
|
+
└── js/
|
119
|
+
├── bootstrap.bundle.js
|
120
|
+
├── bootstrap.bundle.js.map
|
121
|
+
├── bootstrap.bundle.min.js
|
122
|
+
├── bootstrap.bundle.min.js.map
|
123
|
+
├── bootstrap.esm.js
|
124
|
+
├── bootstrap.esm.js.map
|
125
|
+
├── bootstrap.esm.min.js
|
126
|
+
├── bootstrap.esm.min.js.map
|
127
|
+
├── bootstrap.js
|
128
|
+
├── bootstrap.js.map
|
129
|
+
├── bootstrap.min.js
|
130
|
+
└── bootstrap.min.js.map
|
131
|
+
```
|
132
|
+
</details>
|
133
|
+
|
134
|
+
We provide compiled CSS and JS (`bootstrap.*`), as well as compiled and minified CSS and JS (`bootstrap.min.*`). [Source maps](https://developers.google.com/web/tools/chrome-devtools/javascript/source-maps) (`bootstrap.*.map`) are available for use with certain browsers' developer tools. Bundled JS files (`bootstrap.bundle.js` and minified `bootstrap.bundle.min.js`) include [Popper](https://popper.js.org/).
|
135
|
+
|
136
|
+
|
137
|
+
## Bugs and feature requests
|
138
|
+
|
139
|
+
Have a bug or a feature request? Please first read the [issue guidelines](https://github.com/twbs/bootstrap/blob/main/.github/CONTRIBUTING.md#using-the-issue-tracker) and search for existing and closed issues. If your problem or idea is not addressed yet, [please open a new issue](https://github.com/twbs/bootstrap/issues/new/choose).
|
140
|
+
|
141
|
+
|
142
|
+
## Documentation
|
143
|
+
|
144
|
+
Bootstrap's documentation, included in this repo in the root directory, is built with [Hugo](https://gohugo.io/) and publicly hosted on GitHub Pages at <https://getbootstrap.com/>. The docs may also be run locally.
|
145
|
+
|
146
|
+
Documentation search is powered by [Algolia's DocSearch](https://docsearch.algolia.com/).
|
147
|
+
|
148
|
+
### Running documentation locally
|
149
|
+
|
150
|
+
1. Run `npm install` to install the Node.js dependencies, including Hugo (the site builder).
|
151
|
+
2. Run `npm run test` (or a specific npm script) to rebuild distributed CSS and JavaScript files, as well as our docs assets.
|
152
|
+
3. From the root `/bootstrap` directory, run `npm run docs-serve` in the command line.
|
153
|
+
4. Open `http://localhost:9001/` in your browser, and voilà.
|
154
|
+
|
155
|
+
Learn more about using Hugo by reading its [documentation](https://gohugo.io/documentation/).
|
156
|
+
|
157
|
+
### Documentation for previous releases
|
158
|
+
|
159
|
+
You can find all our previous releases docs on <https://getbootstrap.com/docs/versions/>.
|
160
|
+
|
161
|
+
[Previous releases](https://github.com/twbs/bootstrap/releases) and their documentation are also available for download.
|
162
|
+
|
163
|
+
|
164
|
+
## Contributing
|
165
|
+
|
166
|
+
Please read through our [contributing guidelines](https://github.com/twbs/bootstrap/blob/main/.github/CONTRIBUTING.md). Included are directions for opening issues, coding standards, and notes on development.
|
167
|
+
|
168
|
+
Moreover, if your pull request contains JavaScript patches or features, you must include [relevant unit tests](https://github.com/twbs/bootstrap/tree/main/js/tests). All HTML and CSS should conform to the [Code Guide](https://github.com/mdo/code-guide), maintained by [Mark Otto](https://github.com/mdo).
|
169
|
+
|
170
|
+
Editor preferences are available in the [editor config](https://github.com/twbs/bootstrap/blob/main/.editorconfig) for easy use in common text editors. Read more and download plugins at <https://editorconfig.org/>.
|
171
|
+
|
172
|
+
|
173
|
+
## Community
|
174
|
+
|
175
|
+
Get updates on Bootstrap's development and chat with the project maintainers and community members.
|
176
|
+
|
177
|
+
- Follow [@getbootstrap on Twitter](https://twitter.com/getbootstrap).
|
178
|
+
- Read and subscribe to [The Official Bootstrap Blog](https://blog.getbootstrap.com/).
|
179
|
+
- Ask questions and explore [our GitHub Discussions](https://github.com/twbs/bootstrap/discussions).
|
180
|
+
- Discuss, ask questions, and more on [the community Discord](https://discord.gg/bZUvakRU3M) or [Bootstrap subreddit](https://reddit.com/r/bootstrap).
|
181
|
+
- Chat with fellow Bootstrappers in IRC. On the `irc.libera.chat` server, in the `#bootstrap` channel.
|
182
|
+
- Implementation help may be found at Stack Overflow (tagged [`bootstrap-5`](https://stackoverflow.com/questions/tagged/bootstrap-5)).
|
183
|
+
- Developers should use the keyword `bootstrap` on packages which modify or add to the functionality of Bootstrap when distributing through [npm](https://www.npmjs.com/browse/keyword/bootstrap) or similar delivery mechanisms for maximum discoverability.
|
184
|
+
|
185
|
+
|
186
|
+
## Versioning
|
187
|
+
|
188
|
+
For transparency into our release cycle and in striving to maintain backward compatibility, Bootstrap is maintained under [the Semantic Versioning guidelines](https://semver.org/). Sometimes we screw up, but we adhere to those rules whenever possible.
|
189
|
+
|
190
|
+
See [the Releases section of our GitHub project](https://github.com/twbs/bootstrap/releases) for changelogs for each release version of Bootstrap. Release announcement posts on [the official Bootstrap blog](https://blog.getbootstrap.com/) contain summaries of the most noteworthy changes made in each release.
|
191
|
+
|
192
|
+
|
193
|
+
## Creators
|
194
|
+
|
195
|
+
**Mark Otto**
|
196
|
+
|
197
|
+
- <https://twitter.com/mdo>
|
198
|
+
- <https://github.com/mdo>
|
199
|
+
|
200
|
+
**Jacob Thornton**
|
201
|
+
|
202
|
+
- <https://twitter.com/fat>
|
203
|
+
- <https://github.com/fat>
|
204
|
+
|
205
|
+
|
206
|
+
## Thanks
|
207
|
+
|
208
|
+
<a href="https://www.browserstack.com/">
|
209
|
+
<img src="https://live.browserstack.com/images/opensource/browserstack-logo.svg" alt="BrowserStack" width="192" height="42">
|
210
|
+
</a>
|
211
|
+
|
212
|
+
Thanks to [BrowserStack](https://www.browserstack.com/) for providing the infrastructure that allows us to test in real browsers!
|
213
|
+
|
214
|
+
<a href="https://www.netlify.com/">
|
215
|
+
<img src="https://www.netlify.com/v3/img/components/full-logo-light.svg" alt="Netlify" width="147" height="40">
|
216
|
+
</a>
|
217
|
+
|
218
|
+
Thanks to [Netlify](https://www.netlify.com/) for providing us with Deploy Previews!
|
219
|
+
|
220
|
+
|
221
|
+
## Sponsors
|
222
|
+
|
223
|
+
Support this project by becoming a sponsor. Your logo will show up here with a link to your website. [[Become a sponsor](https://opencollective.com/bootstrap#sponsor)]
|
224
|
+
|
225
|
+
[](https://opencollective.com/bootstrap/sponsor/0/website)
|
226
|
+
[](https://opencollective.com/bootstrap/sponsor/1/website)
|
227
|
+
[](https://opencollective.com/bootstrap/sponsor/2/website)
|
228
|
+
[](https://opencollective.com/bootstrap/sponsor/3/website)
|
229
|
+
[](https://opencollective.com/bootstrap/sponsor/4/website)
|
230
|
+
[](https://opencollective.com/bootstrap/sponsor/5/website)
|
231
|
+
[](https://opencollective.com/bootstrap/sponsor/6/website)
|
232
|
+
[](https://opencollective.com/bootstrap/sponsor/7/website)
|
233
|
+
[](https://opencollective.com/bootstrap/sponsor/8/website)
|
234
|
+
[](https://opencollective.com/bootstrap/sponsor/9/website)
|
235
|
+
|
236
|
+
|
237
|
+
## Backers
|
238
|
+
|
239
|
+
Thank you to all our backers! 🙏 [[Become a backer](https://opencollective.com/bootstrap#backer)]
|
240
|
+
|
241
|
+
[](https://opencollective.com/bootstrap#backers)
|
242
|
+
|
243
|
+
|
244
|
+
## Copyright and license
|
245
|
+
|
246
|
+
Code and documentation copyright 2011–2024 the [Bootstrap Authors](https://github.com/twbs/bootstrap/graphs/contributors). Code released under the [MIT License](https://github.com/twbs/bootstrap/blob/main/LICENSE). Docs released under [Creative Commons](https://creativecommons.org/licenses/by/3.0/).
|
@@ -0,0 +1,19 @@
|
|
1
|
+
/**
|
2
|
+
* --------------------------------------------------------------------------
|
3
|
+
* Bootstrap index.esm.js
|
4
|
+
* Licensed under MIT (https://github.com/twbs/bootstrap/blob/main/LICENSE)
|
5
|
+
* --------------------------------------------------------------------------
|
6
|
+
*/
|
7
|
+
|
8
|
+
export { default as Alert } from './src/alert.js'
|
9
|
+
export { default as Button } from './src/button.js'
|
10
|
+
export { default as Carousel } from './src/carousel.js'
|
11
|
+
export { default as Collapse } from './src/collapse.js'
|
12
|
+
export { default as Dropdown } from './src/dropdown.js'
|
13
|
+
export { default as Modal } from './src/modal.js'
|
14
|
+
export { default as Offcanvas } from './src/offcanvas.js'
|
15
|
+
export { default as Popover } from './src/popover.js'
|
16
|
+
export { default as ScrollSpy } from './src/scrollspy.js'
|
17
|
+
export { default as Tab } from './src/tab.js'
|
18
|
+
export { default as Toast } from './src/toast.js'
|
19
|
+
export { default as Tooltip } from './src/tooltip.js'
|
@@ -0,0 +1,34 @@
|
|
1
|
+
/**
|
2
|
+
* --------------------------------------------------------------------------
|
3
|
+
* Bootstrap index.umd.js
|
4
|
+
* Licensed under MIT (https://github.com/twbs/bootstrap/blob/main/LICENSE)
|
5
|
+
* --------------------------------------------------------------------------
|
6
|
+
*/
|
7
|
+
|
8
|
+
import Alert from './src/alert.js'
|
9
|
+
import Button from './src/button.js'
|
10
|
+
import Carousel from './src/carousel.js'
|
11
|
+
import Collapse from './src/collapse.js'
|
12
|
+
import Dropdown from './src/dropdown.js'
|
13
|
+
import Modal from './src/modal.js'
|
14
|
+
import Offcanvas from './src/offcanvas.js'
|
15
|
+
import Popover from './src/popover.js'
|
16
|
+
import ScrollSpy from './src/scrollspy.js'
|
17
|
+
import Tab from './src/tab.js'
|
18
|
+
import Toast from './src/toast.js'
|
19
|
+
import Tooltip from './src/tooltip.js'
|
20
|
+
|
21
|
+
export default {
|
22
|
+
Alert,
|
23
|
+
Button,
|
24
|
+
Carousel,
|
25
|
+
Collapse,
|
26
|
+
Dropdown,
|
27
|
+
Modal,
|
28
|
+
Offcanvas,
|
29
|
+
Popover,
|
30
|
+
ScrollSpy,
|
31
|
+
Tab,
|
32
|
+
Toast,
|
33
|
+
Tooltip
|
34
|
+
}
|
@@ -0,0 +1,87 @@
|
|
1
|
+
/**
|
2
|
+
* --------------------------------------------------------------------------
|
3
|
+
* Bootstrap alert.js
|
4
|
+
* Licensed under MIT (https://github.com/twbs/bootstrap/blob/main/LICENSE)
|
5
|
+
* --------------------------------------------------------------------------
|
6
|
+
*/
|
7
|
+
|
8
|
+
import BaseComponent from './base-component.js'
|
9
|
+
import EventHandler from './dom/event-handler.js'
|
10
|
+
import { enableDismissTrigger } from './util/component-functions.js'
|
11
|
+
import { defineJQueryPlugin } from './util/index.js'
|
12
|
+
|
13
|
+
/**
|
14
|
+
* Constants
|
15
|
+
*/
|
16
|
+
|
17
|
+
const NAME = 'alert'
|
18
|
+
const DATA_KEY = 'bs.alert'
|
19
|
+
const EVENT_KEY = `.${DATA_KEY}`
|
20
|
+
|
21
|
+
const EVENT_CLOSE = `close${EVENT_KEY}`
|
22
|
+
const EVENT_CLOSED = `closed${EVENT_KEY}`
|
23
|
+
const CLASS_NAME_FADE = 'fade'
|
24
|
+
const CLASS_NAME_SHOW = 'show'
|
25
|
+
|
26
|
+
/**
|
27
|
+
* Class definition
|
28
|
+
*/
|
29
|
+
|
30
|
+
class Alert extends BaseComponent {
|
31
|
+
// Getters
|
32
|
+
static get NAME() {
|
33
|
+
return NAME
|
34
|
+
}
|
35
|
+
|
36
|
+
// Public
|
37
|
+
close() {
|
38
|
+
const closeEvent = EventHandler.trigger(this._element, EVENT_CLOSE)
|
39
|
+
|
40
|
+
if (closeEvent.defaultPrevented) {
|
41
|
+
return
|
42
|
+
}
|
43
|
+
|
44
|
+
this._element.classList.remove(CLASS_NAME_SHOW)
|
45
|
+
|
46
|
+
const isAnimated = this._element.classList.contains(CLASS_NAME_FADE)
|
47
|
+
this._queueCallback(() => this._destroyElement(), this._element, isAnimated)
|
48
|
+
}
|
49
|
+
|
50
|
+
// Private
|
51
|
+
_destroyElement() {
|
52
|
+
this._element.remove()
|
53
|
+
EventHandler.trigger(this._element, EVENT_CLOSED)
|
54
|
+
this.dispose()
|
55
|
+
}
|
56
|
+
|
57
|
+
// Static
|
58
|
+
static jQueryInterface(config) {
|
59
|
+
return this.each(function () {
|
60
|
+
const data = Alert.getOrCreateInstance(this)
|
61
|
+
|
62
|
+
if (typeof config !== 'string') {
|
63
|
+
return
|
64
|
+
}
|
65
|
+
|
66
|
+
if (data[config] === undefined || config.startsWith('_') || config === 'constructor') {
|
67
|
+
throw new TypeError(`No method named "${config}"`)
|
68
|
+
}
|
69
|
+
|
70
|
+
data[config](this)
|
71
|
+
})
|
72
|
+
}
|
73
|
+
}
|
74
|
+
|
75
|
+
/**
|
76
|
+
* Data API implementation
|
77
|
+
*/
|
78
|
+
|
79
|
+
enableDismissTrigger(Alert, 'close')
|
80
|
+
|
81
|
+
/**
|
82
|
+
* jQuery
|
83
|
+
*/
|
84
|
+
|
85
|
+
defineJQueryPlugin(Alert)
|
86
|
+
|
87
|
+
export default Alert
|
@@ -0,0 +1,85 @@
|
|
1
|
+
/**
|
2
|
+
* --------------------------------------------------------------------------
|
3
|
+
* Bootstrap base-component.js
|
4
|
+
* Licensed under MIT (https://github.com/twbs/bootstrap/blob/main/LICENSE)
|
5
|
+
* --------------------------------------------------------------------------
|
6
|
+
*/
|
7
|
+
|
8
|
+
import Data from './dom/data.js'
|
9
|
+
import EventHandler from './dom/event-handler.js'
|
10
|
+
import Config from './util/config.js'
|
11
|
+
import { executeAfterTransition, getElement } from './util/index.js'
|
12
|
+
|
13
|
+
/**
|
14
|
+
* Constants
|
15
|
+
*/
|
16
|
+
|
17
|
+
const VERSION = '5.3.3'
|
18
|
+
|
19
|
+
/**
|
20
|
+
* Class definition
|
21
|
+
*/
|
22
|
+
|
23
|
+
class BaseComponent extends Config {
|
24
|
+
constructor(element, config) {
|
25
|
+
super()
|
26
|
+
|
27
|
+
element = getElement(element)
|
28
|
+
if (!element) {
|
29
|
+
return
|
30
|
+
}
|
31
|
+
|
32
|
+
this._element = element
|
33
|
+
this._config = this._getConfig(config)
|
34
|
+
|
35
|
+
Data.set(this._element, this.constructor.DATA_KEY, this)
|
36
|
+
}
|
37
|
+
|
38
|
+
// Public
|
39
|
+
dispose() {
|
40
|
+
Data.remove(this._element, this.constructor.DATA_KEY)
|
41
|
+
EventHandler.off(this._element, this.constructor.EVENT_KEY)
|
42
|
+
|
43
|
+
for (const propertyName of Object.getOwnPropertyNames(this)) {
|
44
|
+
this[propertyName] = null
|
45
|
+
}
|
46
|
+
}
|
47
|
+
|
48
|
+
_queueCallback(callback, element, isAnimated = true) {
|
49
|
+
executeAfterTransition(callback, element, isAnimated)
|
50
|
+
}
|
51
|
+
|
52
|
+
_getConfig(config) {
|
53
|
+
config = this._mergeConfigObj(config, this._element)
|
54
|
+
config = this._configAfterMerge(config)
|
55
|
+
this._typeCheckConfig(config)
|
56
|
+
return config
|
57
|
+
}
|
58
|
+
|
59
|
+
// Static
|
60
|
+
static getInstance(element) {
|
61
|
+
return Data.get(getElement(element), this.DATA_KEY)
|
62
|
+
}
|
63
|
+
|
64
|
+
static getOrCreateInstance(element, config = {}) {
|
65
|
+
return this.getInstance(element) || new this(element, typeof config === 'object' ? config : null)
|
66
|
+
}
|
67
|
+
|
68
|
+
static get VERSION() {
|
69
|
+
return VERSION
|
70
|
+
}
|
71
|
+
|
72
|
+
static get DATA_KEY() {
|
73
|
+
return `bs.${this.NAME}`
|
74
|
+
}
|
75
|
+
|
76
|
+
static get EVENT_KEY() {
|
77
|
+
return `.${this.DATA_KEY}`
|
78
|
+
}
|
79
|
+
|
80
|
+
static eventName(name) {
|
81
|
+
return `${name}${this.EVENT_KEY}`
|
82
|
+
}
|
83
|
+
}
|
84
|
+
|
85
|
+
export default BaseComponent
|
@@ -0,0 +1,72 @@
|
|
1
|
+
/**
|
2
|
+
* --------------------------------------------------------------------------
|
3
|
+
* Bootstrap button.js
|
4
|
+
* Licensed under MIT (https://github.com/twbs/bootstrap/blob/main/LICENSE)
|
5
|
+
* --------------------------------------------------------------------------
|
6
|
+
*/
|
7
|
+
|
8
|
+
import BaseComponent from './base-component.js'
|
9
|
+
import EventHandler from './dom/event-handler.js'
|
10
|
+
import { defineJQueryPlugin } from './util/index.js'
|
11
|
+
|
12
|
+
/**
|
13
|
+
* Constants
|
14
|
+
*/
|
15
|
+
|
16
|
+
const NAME = 'button'
|
17
|
+
const DATA_KEY = 'bs.button'
|
18
|
+
const EVENT_KEY = `.${DATA_KEY}`
|
19
|
+
const DATA_API_KEY = '.data-api'
|
20
|
+
|
21
|
+
const CLASS_NAME_ACTIVE = 'active'
|
22
|
+
const SELECTOR_DATA_TOGGLE = '[data-bs-toggle="button"]'
|
23
|
+
const EVENT_CLICK_DATA_API = `click${EVENT_KEY}${DATA_API_KEY}`
|
24
|
+
|
25
|
+
/**
|
26
|
+
* Class definition
|
27
|
+
*/
|
28
|
+
|
29
|
+
class Button extends BaseComponent {
|
30
|
+
// Getters
|
31
|
+
static get NAME() {
|
32
|
+
return NAME
|
33
|
+
}
|
34
|
+
|
35
|
+
// Public
|
36
|
+
toggle() {
|
37
|
+
// Toggle class and sync the `aria-pressed` attribute with the return value of the `.toggle()` method
|
38
|
+
this._element.setAttribute('aria-pressed', this._element.classList.toggle(CLASS_NAME_ACTIVE))
|
39
|
+
}
|
40
|
+
|
41
|
+
// Static
|
42
|
+
static jQueryInterface(config) {
|
43
|
+
return this.each(function () {
|
44
|
+
const data = Button.getOrCreateInstance(this)
|
45
|
+
|
46
|
+
if (config === 'toggle') {
|
47
|
+
data[config]()
|
48
|
+
}
|
49
|
+
})
|
50
|
+
}
|
51
|
+
}
|
52
|
+
|
53
|
+
/**
|
54
|
+
* Data API implementation
|
55
|
+
*/
|
56
|
+
|
57
|
+
EventHandler.on(document, EVENT_CLICK_DATA_API, SELECTOR_DATA_TOGGLE, event => {
|
58
|
+
event.preventDefault()
|
59
|
+
|
60
|
+
const button = event.target.closest(SELECTOR_DATA_TOGGLE)
|
61
|
+
const data = Button.getOrCreateInstance(button)
|
62
|
+
|
63
|
+
data.toggle()
|
64
|
+
})
|
65
|
+
|
66
|
+
/**
|
67
|
+
* jQuery
|
68
|
+
*/
|
69
|
+
|
70
|
+
defineJQueryPlugin(Button)
|
71
|
+
|
72
|
+
export default Button
|