mirror of
https://github.com/tabler/tabler.git
synced 2026-08-10 21:32:22 +04:00
dependencies update
This commit is contained in:
+12
-12
@@ -80,9 +80,9 @@
|
||||
"clean-css-cli": "4.3.0",
|
||||
"cross-env": "7.0.0",
|
||||
"eslint": "6.8.0",
|
||||
"eslint-config-xo": "0.27.2",
|
||||
"eslint-config-xo": "0.29.1",
|
||||
"eslint-plugin-import": "2.20.1",
|
||||
"eslint-plugin-unicorn": "16.0.0",
|
||||
"eslint-plugin-unicorn": "16.1.1",
|
||||
"glob": "7.1.6",
|
||||
"http-server": "0.12.1",
|
||||
"icon-font-generator": "2.1.10",
|
||||
@@ -92,33 +92,33 @@
|
||||
"npm-run-all": "4.1.5",
|
||||
"percy": "0.21.0",
|
||||
"postcss-cli": "7.1.0",
|
||||
"rollup": "1.31.0",
|
||||
"rollup": "1.31.1",
|
||||
"rollup-plugin-babel": "4.3.3",
|
||||
"rollup-plugin-babel-minify": "9.1.1",
|
||||
"rollup-plugin-commonjs": "10.1.0",
|
||||
"rollup-plugin-filesize": "6.2.1",
|
||||
"rollup-plugin-multi-input": "1.0.3",
|
||||
"rollup-plugin-node-resolve": "5.2.0",
|
||||
"stylelint": "13.0.0",
|
||||
"stylelint-config-twbs-bootstrap": "2.0.0",
|
||||
"stylelint": "13.2.0",
|
||||
"stylelint-config-twbs-bootstrap": "2.0.1",
|
||||
"svgo": "1.3.2",
|
||||
"terser": "4.6.3",
|
||||
"yaml": "1.7.2"
|
||||
},
|
||||
"dependencies": {
|
||||
"@fullcalendar/core": "4.3.1",
|
||||
"@fullcalendar/daygrid": "4.3.0",
|
||||
"@fullcalendar/interaction": "4.3.0",
|
||||
"@fullcalendar/list": "4.3.0",
|
||||
"@fullcalendar/timegrid": "4.3.0",
|
||||
"apexcharts": "3.15.5",
|
||||
"@fullcalendar/core": "4.4.0",
|
||||
"@fullcalendar/daygrid": "4.4.0",
|
||||
"@fullcalendar/interaction": "4.4.0",
|
||||
"@fullcalendar/list": "4.4.0",
|
||||
"@fullcalendar/timegrid": "4.4.0",
|
||||
"apexcharts": "3.15.6",
|
||||
"autosize": "4.0.2",
|
||||
"bootstrap": "twbs/bootstrap#9c57f79",
|
||||
"countup.js": "2.0.4",
|
||||
"daterangepicker": "3.0.5",
|
||||
"flatpickr": "4.6.3",
|
||||
"fullcalendar": "3.10.1",
|
||||
"imask": "6.0.1",
|
||||
"imask": "6.0.3",
|
||||
"jquery": "3.4.1",
|
||||
"jqvmap": "1.5.1",
|
||||
"nouislider": "14.1.1",
|
||||
|
||||
@@ -1,18 +1,14 @@
|
||||
<nav class="navbar navbar-light navbar-secondary navbar-expand" id="navbar-secondary">
|
||||
<nav class="navbar navbar-light navbar-secondary navbar-expand-md" id="navbar-secondary">
|
||||
<div class="container">
|
||||
{% include layout/navbar-logo.html class="d-none-navbar-vertical" %}
|
||||
|
||||
<form class="form-inline w-50 mr-4 d-none d-md-flex">
|
||||
{% include ui/form/input-icon.html prepend=true input-class="form-control-flush" %}
|
||||
</form>
|
||||
|
||||
<ul class="navbar-nav ml-auto">
|
||||
<li class="nav-item">
|
||||
{% include ui/button.html color="secondary" size="sm" text="Source code" href=site.github_url external=true %}
|
||||
</li>
|
||||
<li class="nav-item">
|
||||
<a class="nav-link" href="#">Link</a>
|
||||
</li>
|
||||
<li class="nav-item dropdown">
|
||||
<a class="nav-link dropdown-toggle" href="#" id="navbarDropdown" role="button" data-toggle="dropdown" aria-haspopup="true" aria-expanded="false">
|
||||
Dropdown
|
||||
</a>
|
||||
{% include ui/avatar.html person-id=1 dropdown=true %}
|
||||
{% include ui/dropdown-menu.html right=true icons=true separated=true arrow=true %}
|
||||
</li>
|
||||
</ul>
|
||||
|
||||
@@ -2,22 +2,25 @@
|
||||
{% assign src = include.src %}
|
||||
{% assign placeholder = include.placeholder %}
|
||||
{% if include.person-id %}
|
||||
{% assign person-id = include.person-id | minus: 1 %}
|
||||
{% assign person = site.data.people[person-id] %}
|
||||
{% assign src = person.photo %}
|
||||
{% unless src %}
|
||||
{% assign placeholder = person.full_name | first_letters %}
|
||||
{% endunless %}
|
||||
{% elsif include.person %}
|
||||
{% assign person = include.person %}
|
||||
{% assign src = person.photo %}
|
||||
{% unless src %}
|
||||
{% assign placeholder = person.full_name | first_letters %}
|
||||
{% endunless %}
|
||||
{% assign person-id = include.person-id | minus: 1 %}
|
||||
{% assign person = site.data.people[person-id] %}
|
||||
{% assign src = person.photo %}
|
||||
{% unless src %}
|
||||
{% assign placeholder = person.full_name | first_letters %}
|
||||
{% endunless %}
|
||||
{% elsif include.person %}
|
||||
{% assign person = include.person %}
|
||||
{% assign src = person.photo %}
|
||||
{% unless src %}
|
||||
{% assign placeholder = person.full_name | first_letters %}
|
||||
{% endunless %}
|
||||
{% endif %}
|
||||
{% assign link = include.link | default: false %}
|
||||
{% if include.dropdown %}
|
||||
{% assign link = true %}
|
||||
{% endif %}
|
||||
{% assign el = 'span' %}
|
||||
{% if link %}{% assign el = 'a' %}{% endif %}
|
||||
<{{ el }} class="avatar{% if include['size'] %} avatar-{{ include['size'] }}{% endif %}{% if include.thumb %} avatar-thumb{% endif %}{% if include.class %} {{ include.class }}{% endif %}{% if include.shape %} {{ include.shape }}{% endif %}{% if include.color %} bg-{{ include.color }}-lt{% endif %}"{% if src %} style="background-image: url({{ site.base }}/{{ src }})"{% endif %}>{% if include.status %}
|
||||
<span class="badge bg-{{ include.status }}">{% if include.status-text %}{{ include.status-text }}{% elsif include.status-icon %}{% include ui/icon.html icon=include.status-icon class="avatar-status-icon" %}{% endif %}</span>{% endif %}{% if placeholder %}{{ placeholder }}{% elsif include.icon %} {% include ui/icon.html icon=include.icon class="avatar-icon" %}{% endif %}</{{ el }}>
|
||||
<{{ el }} class="avatar{% if include['size'] %} avatar-{{ include['size'] }}{% endif %}{% if include.thumb %} avatar-thumb{% endif %}{% if include.class %} {{ include.class }}{% endif %}{% if include.shape %} {{ include.shape }}{% endif %}{% if include.color %} bg-{{ include.color }}-lt{% endif %}"{% if src %} style="background-image: url({{ site.base }}/{{ src }})"{% endif %}{% if include.dropdown %} data-toggle="dropdown"{% endif %}>{% if include.status %}
|
||||
<span class="badge bg-{{ include.status }}">{% if include.status-text %}{{ include.status-text }}{% elsif include.status-icon %}{% include ui/icon.html icon=include.status-icon class="avatar-status-icon" %}{% endif %}</span>{% endif %}{% if placeholder %}{{ placeholder }}{% elsif include.icon %} {% include ui/icon.html icon=include.icon class="avatar-icon" %}{% endif %}</{{ el }}>
|
||||
{% endremoveemptylines %}
|
||||
|
||||
@@ -13,13 +13,14 @@ page-header: Documentation
|
||||
{% assign toc = content | toc_only %}
|
||||
|
||||
|
||||
<div class="sticky-top pt-4">
|
||||
<div class="sticky-top">
|
||||
{% include ui/button.html href=site.github_url text="Browse source code" icon="brand/github" color="github" external=true block=true class="mb-6" %}
|
||||
|
||||
{% if toc != '' %}
|
||||
<h5 class="subheader">On this page</h5>
|
||||
{{ toc }}
|
||||
{% endif %}
|
||||
|
||||
{% include ui/button.html href=site.github_url text="Browse source code" icon="brand/github" icon-color="github" external=true block=true class="mb-4" %}
|
||||
</div>
|
||||
|
||||
|
||||
|
||||
Binary file not shown.
|
Before Width: | Height: | Size: 521 KiB After Width: | Height: | Size: 4.7 KiB |
Reference in New Issue
Block a user