bootstrap-italia 2.13.1 → 2.13.3
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.
- package/dist/css/bootstrap-italia.min.css +1 -1
- package/dist/css/bootstrap-italia.min.css.map +1 -1
- package/dist/js/bootstrap-italia.bundle.min.js +10 -10
- package/dist/js/bootstrap-italia.min.js +1 -1
- package/dist/version.js +1 -1
- package/dist/version.js.map +1 -1
- package/package.json +2 -2
- package/src/js/version.js +1 -1
- package/src/scss/base/_version.scss +1 -1
- package/src/scss/utilities/focus.scss +23 -8
- package/types/plugins/accordion.d.ts +1 -1
- package/types/plugins/alert.d.ts +1 -1
- package/types/plugins/back-to-top.d.ts +1 -1
- package/types/plugins/button.d.ts +1 -1
- package/types/plugins/carousel-bi.d.ts +1 -1
- package/types/plugins/carousel.d.ts +1 -1
- package/types/plugins/collapse.d.ts +1 -1
- package/types/plugins/cookiebar.d.ts +1 -1
- package/types/plugins/dimmer.d.ts +1 -1
- package/types/plugins/dropdown.d.ts +1 -1
- package/types/plugins/form.d.ts +1 -1
- package/types/plugins/forward.d.ts +1 -1
- package/types/plugins/header-sticky.d.ts +1 -1
- package/types/plugins/history-back.d.ts +1 -1
- package/types/plugins/input-number.d.ts +1 -1
- package/types/plugins/input-password.d.ts +1 -1
- package/types/plugins/input-search-autocomplete.d.ts +1 -1
- package/types/plugins/input.d.ts +1 -1
- package/types/plugins/list.d.ts +1 -1
- package/types/plugins/masonry.d.ts +1 -1
- package/types/plugins/modal.d.ts +1 -1
- package/types/plugins/navbar-collapsible.d.ts +1 -1
- package/types/plugins/navscroll.d.ts +1 -1
- package/types/plugins/notification.d.ts +1 -1
- package/types/plugins/offcanvas.d.ts +1 -1
- package/types/plugins/popover.d.ts +1 -1
- package/types/plugins/progress-donut.d.ts +1 -1
- package/types/plugins/scrollspy.d.ts +1 -1
- package/types/plugins/select-autocomplete.d.ts +1 -1
- package/types/plugins/tab.d.ts +1 -1
- package/types/plugins/toast.d.ts +1 -1
- package/types/plugins/tooltip.d.ts +1 -1
- package/types/plugins/transfer.d.ts +1 -1
- package/types/plugins/upload-dragdrop.d.ts +1 -1
- package/types/plugins/video.ts +2 -4
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { default as BaseComponent } from 'bootstrap/js/dist/base-component'
|
|
2
|
-
import { GetInstanceFactory, GetOrCreateInstanceFactory } from 'bootstrap/js/dist/base-component';
|
|
2
|
+
import { type GetInstanceFactory, type GetOrCreateInstanceFactory } from 'bootstrap/js/dist/base-component';
|
|
3
3
|
|
|
4
4
|
declare class HistoryBack extends BaseComponent {
|
|
5
5
|
static get NAME(): string
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import { default as BaseComponent } from 'bootstrap/js/dist/base-component'
|
|
2
2
|
import { InputLabel } from './input-label'
|
|
3
|
-
import { GetInstanceFactory, GetOrCreateInstanceFactory } from 'bootstrap/js/dist/base-component';
|
|
3
|
+
import { type GetInstanceFactory, type GetOrCreateInstanceFactory } from 'bootstrap/js/dist/base-component';
|
|
4
4
|
|
|
5
5
|
|
|
6
6
|
declare class InputNumber extends BaseComponent {
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import { default as BaseComponent } from 'bootstrap/js/dist/base-component'
|
|
2
2
|
import { InputLabel } from './input-label'
|
|
3
|
-
import { GetInstanceFactory, GetOrCreateInstanceFactory } from 'bootstrap/js/dist/base-component';
|
|
3
|
+
import { type GetInstanceFactory, type GetOrCreateInstanceFactory } from 'bootstrap/js/dist/base-component';
|
|
4
4
|
|
|
5
5
|
|
|
6
6
|
declare class InputPassword extends BaseComponent {
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import { default as BaseComponent } from 'bootstrap/js/dist/base-component'
|
|
2
2
|
import { InputLabel } from './input-label'
|
|
3
|
-
import { GetInstanceFactory, GetOrCreateInstanceFactory } from 'bootstrap/js/dist/base-component';
|
|
3
|
+
import { type GetInstanceFactory, type GetOrCreateInstanceFactory } from 'bootstrap/js/dist/base-component';
|
|
4
4
|
|
|
5
5
|
|
|
6
6
|
declare class InputSearch extends BaseComponent {
|
package/types/plugins/input.d.ts
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import { default as BaseComponent } from 'bootstrap/js/dist/base-component'
|
|
2
2
|
import { InputLabel } from './input-label'
|
|
3
|
-
import { GetInstanceFactory, GetOrCreateInstanceFactory } from 'bootstrap/js/dist/base-component';
|
|
3
|
+
import { type GetInstanceFactory, type GetOrCreateInstanceFactory } from 'bootstrap/js/dist/base-component';
|
|
4
4
|
|
|
5
5
|
declare class Input extends BaseComponent {
|
|
6
6
|
static get NAME(): string
|
package/types/plugins/list.d.ts
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { default as BaseComponent } from 'bootstrap/js/dist/base-component'
|
|
2
|
-
import { GetInstanceFactory, GetOrCreateInstanceFactory } from 'bootstrap/js/dist/base-component';
|
|
2
|
+
import { type GetInstanceFactory, type GetOrCreateInstanceFactory } from 'bootstrap/js/dist/base-component';
|
|
3
3
|
|
|
4
4
|
declare class List extends BaseComponent {
|
|
5
5
|
static get NAME(): string
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { default as BaseComponent } from 'bootstrap/js/dist/base-component'
|
|
2
|
-
import { GetInstanceFactory, GetOrCreateInstanceFactory } from 'bootstrap/js/dist/base-component';
|
|
2
|
+
import { type GetInstanceFactory, type GetOrCreateInstanceFactory } from 'bootstrap/js/dist/base-component';
|
|
3
3
|
|
|
4
4
|
declare class Masonry extends BaseComponent {
|
|
5
5
|
static get NAME(): string
|
package/types/plugins/modal.d.ts
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { Modal as BSModal } from 'bootstrap'
|
|
2
|
-
import { GetInstanceFactory, GetOrCreateInstanceFactory } from 'bootstrap/js/dist/base-component';
|
|
2
|
+
import { type GetInstanceFactory, type GetOrCreateInstanceFactory } from 'bootstrap/js/dist/base-component';
|
|
3
3
|
|
|
4
4
|
|
|
5
5
|
declare class Modal extends BSModal {
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { default as BaseComponent } from 'bootstrap/js/dist/base-component'
|
|
2
|
-
import { GetInstanceFactory, GetOrCreateInstanceFactory } from 'bootstrap/js/dist/base-component';
|
|
2
|
+
import { type GetInstanceFactory, type GetOrCreateInstanceFactory } from 'bootstrap/js/dist/base-component';
|
|
3
3
|
|
|
4
4
|
declare class NavBarCollapsible extends BaseComponent {
|
|
5
5
|
static get NAME(): string
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { default as BaseComponent } from 'bootstrap/js/dist/base-component'
|
|
2
|
-
import { GetInstanceFactory, GetOrCreateInstanceFactory } from 'bootstrap/js/dist/base-component';
|
|
2
|
+
import { type GetInstanceFactory, type GetOrCreateInstanceFactory } from 'bootstrap/js/dist/base-component';
|
|
3
3
|
|
|
4
4
|
declare class NavScroll extends BaseComponent {
|
|
5
5
|
static get NAME(): string
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { default as BaseComponent } from 'bootstrap/js/dist/base-component'
|
|
2
|
-
import { GetInstanceFactory, GetOrCreateInstanceFactory } from 'bootstrap/js/dist/base-component';
|
|
2
|
+
import { type GetInstanceFactory, type GetOrCreateInstanceFactory } from 'bootstrap/js/dist/base-component';
|
|
3
3
|
|
|
4
4
|
/**
|
|
5
5
|
* toggle per attivazione
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { Offcanvas as BSOffcanvas } from 'bootstrap'
|
|
2
|
-
import { GetInstanceFactory, GetOrCreateInstanceFactory } from 'bootstrap/js/dist/base-component';
|
|
2
|
+
import { type GetInstanceFactory, type GetOrCreateInstanceFactory } from 'bootstrap/js/dist/base-component';
|
|
3
3
|
|
|
4
4
|
declare class Offcanvas extends BSOffcanvas {
|
|
5
5
|
/**
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { Popover as BSPopover } from 'bootstrap'
|
|
2
|
-
import { GetInstanceFactory, GetOrCreateInstanceFactory } from 'bootstrap/js/dist/base-component';
|
|
2
|
+
import { type GetInstanceFactory, type GetOrCreateInstanceFactory } from 'bootstrap/js/dist/base-component';
|
|
3
3
|
|
|
4
4
|
declare class Popover extends BSPopover {
|
|
5
5
|
/**
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { default as BaseComponent } from 'bootstrap/js/dist/base-component'
|
|
2
|
-
import { GetInstanceFactory, GetOrCreateInstanceFactory } from 'bootstrap/js/dist/base-component';
|
|
2
|
+
import { type GetInstanceFactory, type GetOrCreateInstanceFactory } from 'bootstrap/js/dist/base-component';
|
|
3
3
|
|
|
4
4
|
declare class ProgressDonut extends BaseComponent {
|
|
5
5
|
static get NAME(): string
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { ScrollSpy as BSScrollspy } from 'bootstrap'
|
|
2
|
-
import { GetInstanceFactory, GetOrCreateInstanceFactory } from 'bootstrap/js/dist/base-component';
|
|
2
|
+
import { type GetInstanceFactory, type GetOrCreateInstanceFactory } from 'bootstrap/js/dist/base-component';
|
|
3
3
|
|
|
4
4
|
declare class ScrollSpy extends BSScrollspy {
|
|
5
5
|
/**
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { default as BaseComponent } from 'bootstrap/js/dist/base-component'
|
|
2
|
-
import { GetInstanceFactory, GetOrCreateInstanceFactory } from 'bootstrap/js/dist/base-component';
|
|
2
|
+
import { type GetInstanceFactory, type GetOrCreateInstanceFactory } from 'bootstrap/js/dist/base-component';
|
|
3
3
|
|
|
4
4
|
declare class SelectAutocomplete extends BaseComponent {
|
|
5
5
|
static get NAME(): string
|
package/types/plugins/tab.d.ts
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { Tab as BSTab } from 'bootstrap'
|
|
2
|
-
import { GetInstanceFactory, GetOrCreateInstanceFactory } from 'bootstrap/js/dist/base-component';
|
|
2
|
+
import { type GetInstanceFactory, type GetOrCreateInstanceFactory } from 'bootstrap/js/dist/base-component';
|
|
3
3
|
|
|
4
4
|
declare class Tab extends BSTab {
|
|
5
5
|
/**
|
package/types/plugins/toast.d.ts
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { Toast as BSToast } from 'bootstrap'
|
|
2
|
-
import { GetInstanceFactory, GetOrCreateInstanceFactory } from 'bootstrap/js/dist/base-component';
|
|
2
|
+
import { type GetInstanceFactory, type GetOrCreateInstanceFactory } from 'bootstrap/js/dist/base-component';
|
|
3
3
|
|
|
4
4
|
declare class Toast extends BSToast {
|
|
5
5
|
/**
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { Tooltip as BSTooltip } from 'bootstrap'
|
|
2
|
-
import { GetInstanceFactory, GetOrCreateInstanceFactory } from 'bootstrap/js/dist/base-component';
|
|
2
|
+
import { type GetInstanceFactory, type GetOrCreateInstanceFactory } from 'bootstrap/js/dist/base-component';
|
|
3
3
|
|
|
4
4
|
declare class Tooltip extends BSTooltip {
|
|
5
5
|
/**
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { default as BaseComponent } from 'bootstrap/js/dist/base-component'
|
|
2
|
-
import { GetInstanceFactory, GetOrCreateInstanceFactory } from 'bootstrap/js/dist/base-component';
|
|
2
|
+
import { type GetInstanceFactory, type GetOrCreateInstanceFactory } from 'bootstrap/js/dist/base-component';
|
|
3
3
|
|
|
4
4
|
declare class Transfer extends BaseComponent {
|
|
5
5
|
static get NAME(): string
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { default as BaseComponent } from 'bootstrap/js/dist/base-component'
|
|
2
|
-
import { GetInstanceFactory, GetOrCreateInstanceFactory } from 'bootstrap/js/dist/base-component';
|
|
2
|
+
import { type GetInstanceFactory, type GetOrCreateInstanceFactory } from 'bootstrap/js/dist/base-component';
|
|
3
3
|
|
|
4
4
|
declare class UploadDragDrop extends BaseComponent {
|
|
5
5
|
static get NAME(): string
|
package/types/plugins/video.ts
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { default as BaseComponent } from 'bootstrap/js/dist/base-component'
|
|
2
|
-
import { GetInstanceFactory, GetOrCreateInstanceFactory } from 'bootstrap/js/dist/base-component';
|
|
2
|
+
import { type GetInstanceFactory, type GetOrCreateInstanceFactory } from 'bootstrap/js/dist/base-component';
|
|
3
3
|
|
|
4
4
|
import Player from "video.js/dist/types/player"
|
|
5
5
|
|
|
@@ -18,9 +18,7 @@ declare class VideoPlayer extends BaseComponent {
|
|
|
18
18
|
* Static method which allows you to get the modal instance associated with
|
|
19
19
|
* a DOM element, or create a new one in case it wasn’t initialised
|
|
20
20
|
*/
|
|
21
|
-
static getOrCreateInstance: GetOrCreateInstanceFactory<
|
|
22
|
-
VideoPlayer
|
|
23
|
-
>;
|
|
21
|
+
static getOrCreateInstance: GetOrCreateInstanceFactory<VideoPlayer>;
|
|
24
22
|
|
|
25
23
|
constructor(element: HTMLElement)
|
|
26
24
|
|