Inisital Asset Commit
This commit is contained in:
308
assets/plugins/select2/js/select2-custom.js
vendored
Normal file
308
assets/plugins/select2/js/select2-custom.js
vendored
Normal file
@@ -0,0 +1,308 @@
|
||||
$(function() {
|
||||
"use strict";
|
||||
|
||||
|
||||
$( '#single-select-field' ).select2( {
|
||||
theme: "bootstrap-5",
|
||||
width: $( this ).data( 'width' ) ? $( this ).data( 'width' ) : $( this ).hasClass( 'w-100' ) ? '100%' : 'style',
|
||||
placeholder: $( this ).data( 'placeholder' ),
|
||||
} );
|
||||
|
||||
|
||||
|
||||
|
||||
$( '#single-select-optgroup-field' ).select2( {
|
||||
theme: "bootstrap-5",
|
||||
width: $( this ).data( 'width' ) ? $( this ).data( 'width' ) : $( this ).hasClass( 'w-100' ) ? '100%' : 'style',
|
||||
placeholder: $( this ).data( 'placeholder' ),
|
||||
} );
|
||||
|
||||
|
||||
|
||||
$( '#single-select-clear-field' ).select2( {
|
||||
theme: "bootstrap-5",
|
||||
width: $( this ).data( 'width' ) ? $( this ).data( 'width' ) : $( this ).hasClass( 'w-100' ) ? '100%' : 'style',
|
||||
placeholder: $( this ).data( 'placeholder' ),
|
||||
allowClear: true
|
||||
} );
|
||||
|
||||
|
||||
$( '#single-select-disabled-field' ).select2( {
|
||||
theme: "bootstrap-5",
|
||||
width: $( this ).data( 'width' ) ? $( this ).data( 'width' ) : $( this ).hasClass( 'w-100' ) ? '100%' : 'style',
|
||||
placeholder: $( this ).data( 'placeholder' ),
|
||||
} );
|
||||
|
||||
|
||||
|
||||
$( '#multiple-select-field' ).select2( {
|
||||
theme: "bootstrap-5",
|
||||
width: $( this ).data( 'width' ) ? $( this ).data( 'width' ) : $( this ).hasClass( 'w-100' ) ? '100%' : 'style',
|
||||
placeholder: $( this ).data( 'placeholder' ),
|
||||
closeOnSelect: false,
|
||||
} );
|
||||
|
||||
|
||||
$( '#multiple-select-optgroup-field' ).select2( {
|
||||
theme: "bootstrap-5",
|
||||
width: $( this ).data( 'width' ) ? $( this ).data( 'width' ) : $( this ).hasClass( 'w-100' ) ? '100%' : 'style',
|
||||
placeholder: $( this ).data( 'placeholder' ),
|
||||
closeOnSelect: false,
|
||||
} );
|
||||
|
||||
|
||||
|
||||
|
||||
$( '#multiple-select-clear-field' ).select2( {
|
||||
theme: "bootstrap-5",
|
||||
width: $( this ).data( 'width' ) ? $( this ).data( 'width' ) : $( this ).hasClass( 'w-100' ) ? '100%' : 'style',
|
||||
placeholder: $( this ).data( 'placeholder' ),
|
||||
closeOnSelect: false,
|
||||
allowClear: true,
|
||||
} );
|
||||
|
||||
|
||||
|
||||
$( '#multiple-select-custom-field' ).select2( {
|
||||
theme: "bootstrap-5",
|
||||
width: $( this ).data( 'width' ) ? $( this ).data( 'width' ) : $( this ).hasClass( 'w-100' ) ? '100%' : 'style',
|
||||
placeholder: $( this ).data( 'placeholder' ),
|
||||
closeOnSelect: false,
|
||||
tags: true
|
||||
} );
|
||||
|
||||
|
||||
|
||||
$( '#multiple-select-disabled-field' ).select2( {
|
||||
theme: "bootstrap-5",
|
||||
width: $( this ).data( 'width' ) ? $( this ).data( 'width' ) : $( this ).hasClass( 'w-100' ) ? '100%' : 'style',
|
||||
placeholder: $( this ).data( 'placeholder' ),
|
||||
closeOnSelect: false,
|
||||
} );
|
||||
|
||||
|
||||
|
||||
|
||||
$( '#prepend-text-single-field' ).select2( {
|
||||
theme: "bootstrap-5",
|
||||
width: $( this ).data( 'width' ) ? $( this ).data( 'width' ) : $( this ).hasClass( 'w-100' ) ? '100%' : 'style',
|
||||
placeholder: $( this ).data( 'placeholder' ),
|
||||
} );
|
||||
|
||||
$( '#prepend-text-multiple-field' ).select2( {
|
||||
theme: "bootstrap-5",
|
||||
width: $( this ).data( 'width' ) ? $( this ).data( 'width' ) : $( this ).hasClass( 'w-100' ) ? '100%' : 'style',
|
||||
placeholder: $( this ).data( 'placeholder' ),
|
||||
closeOnSelect: false,
|
||||
} );
|
||||
|
||||
|
||||
|
||||
|
||||
$( '#prepend-button-single-field' ).select2( {
|
||||
theme: "bootstrap-5",
|
||||
width: $( this ).data( 'width' ) ? $( this ).data( 'width' ) : $( this ).hasClass( 'w-100' ) ? '100%' : 'style',
|
||||
placeholder: $( this ).data( 'placeholder' ),
|
||||
} );
|
||||
|
||||
$( '#prepend-button-multiple-field' ).select2( {
|
||||
theme: "bootstrap-5",
|
||||
width: $( this ).data( 'width' ) ? $( this ).data( 'width' ) : $( this ).hasClass( 'w-100' ) ? '100%' : 'style',
|
||||
placeholder: $( this ).data( 'placeholder' ),
|
||||
closeOnSelect: false,
|
||||
} );
|
||||
|
||||
|
||||
|
||||
$( '#prepend-dropdown-single-field' ).select2( {
|
||||
theme: "bootstrap-5",
|
||||
width: $( this ).data( 'width' ) ? $( this ).data( 'width' ) : $( this ).hasClass( 'w-100' ) ? '100%' : 'style',
|
||||
placeholder: $( this ).data( 'placeholder' ),
|
||||
} );
|
||||
|
||||
$( '#prepend-dropdown-multiple-field' ).select2( {
|
||||
theme: "bootstrap-5",
|
||||
width: $( this ).data( 'width' ) ? $( this ).data( 'width' ) : $( this ).hasClass( 'w-100' ) ? '100%' : 'style',
|
||||
placeholder: $( this ).data( 'placeholder' ),
|
||||
closeOnSelect: false,
|
||||
} );
|
||||
|
||||
|
||||
|
||||
|
||||
$( '#prepend-toggle-single-field' ).select2( {
|
||||
theme: "bootstrap-5",
|
||||
width: $( this ).data( 'width' ) ? $( this ).data( 'width' ) : $( this ).hasClass( 'w-100' ) ? '100%' : 'style',
|
||||
placeholder: $( this ).data( 'placeholder' ),
|
||||
} );
|
||||
|
||||
$( '#prepend-toggle-multiple-field' ).select2( {
|
||||
theme: "bootstrap-5",
|
||||
width: $( this ).data( 'width' ) ? $( this ).data( 'width' ) : $( this ).hasClass( 'w-100' ) ? '100%' : 'style',
|
||||
placeholder: $( this ).data( 'placeholder' ),
|
||||
closeOnSelect: false,
|
||||
} );
|
||||
|
||||
|
||||
|
||||
|
||||
$( '#append-text-single-field' ).select2( {
|
||||
theme: "bootstrap-5",
|
||||
width: $( this ).data( 'width' ) ? $( this ).data( 'width' ) : $( this ).hasClass( 'w-100' ) ? '100%' : 'style',
|
||||
placeholder: $( this ).data( 'placeholder' ),
|
||||
} );
|
||||
|
||||
$( '#append-text-multiple-field' ).select2( {
|
||||
theme: "bootstrap-5",
|
||||
width: $( this ).data( 'width' ) ? $( this ).data( 'width' ) : $( this ).hasClass( 'w-100' ) ? '100%' : 'style',
|
||||
placeholder: $( this ).data( 'placeholder' ),
|
||||
closeOnSelect: false,
|
||||
} );
|
||||
|
||||
|
||||
|
||||
|
||||
$( '#append-button-single-field' ).select2( {
|
||||
theme: "bootstrap-5",
|
||||
width: $( this ).data( 'width' ) ? $( this ).data( 'width' ) : $( this ).hasClass( 'w-100' ) ? '100%' : 'style',
|
||||
placeholder: $( this ).data( 'placeholder' ),
|
||||
} );
|
||||
|
||||
$( '#append-button-multiple-field' ).select2( {
|
||||
theme: "bootstrap-5",
|
||||
width: $( this ).data( 'width' ) ? $( this ).data( 'width' ) : $( this ).hasClass( 'w-100' ) ? '100%' : 'style',
|
||||
placeholder: $( this ).data( 'placeholder' ),
|
||||
closeOnSelect: false,
|
||||
} );
|
||||
|
||||
|
||||
|
||||
$( '#append-dropdown-single-field' ).select2( {
|
||||
theme: "bootstrap-5",
|
||||
width: $( this ).data( 'width' ) ? $( this ).data( 'width' ) : $( this ).hasClass( 'w-100' ) ? '100%' : 'style',
|
||||
placeholder: $( this ).data( 'placeholder' ),
|
||||
} );
|
||||
|
||||
$( '#append-dropdown-multiple-field' ).select2( {
|
||||
theme: "bootstrap-5",
|
||||
width: $( this ).data( 'width' ) ? $( this ).data( 'width' ) : $( this ).hasClass( 'w-100' ) ? '100%' : 'style',
|
||||
placeholder: $( this ).data( 'placeholder' ),
|
||||
closeOnSelect: false,
|
||||
} );
|
||||
|
||||
|
||||
|
||||
$( '#append-toggle-single-field' ).select2( {
|
||||
theme: "bootstrap-5",
|
||||
width: $( this ).data( 'width' ) ? $( this ).data( 'width' ) : $( this ).hasClass( 'w-100' ) ? '100%' : 'style',
|
||||
placeholder: $( this ).data( 'placeholder' ),
|
||||
} );
|
||||
|
||||
$( '#append-toggle-multiple-field' ).select2( {
|
||||
theme: "bootstrap-5",
|
||||
width: $( this ).data( 'width' ) ? $( this ).data( 'width' ) : $( this ).hasClass( 'w-100' ) ? '100%' : 'style',
|
||||
placeholder: $( this ).data( 'placeholder' ),
|
||||
closeOnSelect: false,
|
||||
} );
|
||||
|
||||
|
||||
|
||||
$( '#prepend-append-text-single-field' ).select2( {
|
||||
theme: "bootstrap-5",
|
||||
width: $( this ).data( 'width' ) ? $( this ).data( 'width' ) : $( this ).hasClass( 'w-100' ) ? '100%' : 'style',
|
||||
placeholder: $( this ).data( 'placeholder' ),
|
||||
} );
|
||||
|
||||
$( '#prepend-append-text-multiple-field' ).select2( {
|
||||
theme: "bootstrap-5",
|
||||
width: $( this ).data( 'width' ) ? $( this ).data( 'width' ) : $( this ).hasClass( 'w-100' ) ? '100%' : 'style',
|
||||
placeholder: $( this ).data( 'placeholder' ),
|
||||
closeOnSelect: false,
|
||||
} );
|
||||
|
||||
|
||||
|
||||
$( '#prepend-append-button-single-field' ).select2( {
|
||||
theme: "bootstrap-5",
|
||||
width: $( this ).data( 'width' ) ? $( this ).data( 'width' ) : $( this ).hasClass( 'w-100' ) ? '100%' : 'style',
|
||||
placeholder: $( this ).data( 'placeholder' ),
|
||||
} );
|
||||
|
||||
$( '#prepend-append-button-multiple-field' ).select2( {
|
||||
theme: "bootstrap-5",
|
||||
width: $( this ).data( 'width' ) ? $( this ).data( 'width' ) : $( this ).hasClass( 'w-100' ) ? '100%' : 'style',
|
||||
placeholder: $( this ).data( 'placeholder' ),
|
||||
closeOnSelect: false,
|
||||
} );
|
||||
|
||||
|
||||
|
||||
|
||||
$( '#prepend-append-dropdown-single-field' ).select2( {
|
||||
theme: "bootstrap-5",
|
||||
width: $( this ).data( 'width' ) ? $( this ).data( 'width' ) : $( this ).hasClass( 'w-100' ) ? '100%' : 'style',
|
||||
placeholder: $( this ).data( 'placeholder' ),
|
||||
} );
|
||||
|
||||
$( '#prepend-append-dropdown-multiple-field' ).select2( {
|
||||
theme: "bootstrap-5",
|
||||
width: $( this ).data( 'width' ) ? $( this ).data( 'width' ) : $( this ).hasClass( 'w-100' ) ? '100%' : 'style',
|
||||
placeholder: $( this ).data( 'placeholder' ),
|
||||
closeOnSelect: false,
|
||||
} );
|
||||
|
||||
|
||||
|
||||
$( '#prepend-append-toggle-single-field' ).select2( {
|
||||
theme: "bootstrap-5",
|
||||
width: $( this ).data( 'width' ) ? $( this ).data( 'width' ) : $( this ).hasClass( 'w-100' ) ? '100%' : 'style',
|
||||
placeholder: $( this ).data( 'placeholder' ),
|
||||
} );
|
||||
|
||||
$( '#prepend-append-toggle-multiple-field' ).select2( {
|
||||
theme: "bootstrap-5",
|
||||
width: $( this ).data( 'width' ) ? $( this ).data( 'width' ) : $( this ).hasClass( 'w-100' ) ? '100%' : 'style',
|
||||
placeholder: $( this ).data( 'placeholder' ),
|
||||
closeOnSelect: false,
|
||||
} );
|
||||
|
||||
|
||||
|
||||
$( '#small-bootstrap-class-single-field' ).select2( {
|
||||
theme: "bootstrap-5",
|
||||
width: $( this ).data( 'width' ) ? $( this ).data( 'width' ) : $( this ).hasClass( 'w-100' ) ? '100%' : 'style',
|
||||
placeholder: $( this ).data( 'placeholder' ),
|
||||
dropdownParent: $( '#small-bootstrap-class-single-field' ).parent(),
|
||||
} );
|
||||
|
||||
$( '#small-bootstrap-class-multiple-field' ).select2( {
|
||||
theme: "bootstrap-5",
|
||||
width: $( this ).data( 'width' ) ? $( this ).data( 'width' ) : $( this ).hasClass( 'w-100' ) ? '100%' : 'style',
|
||||
placeholder: $( this ).data( 'placeholder' ),
|
||||
closeOnSelect: false,
|
||||
dropdownParent: $( '#small-bootstrap-class-multiple-field' ).parent(),
|
||||
} );
|
||||
|
||||
|
||||
|
||||
$( '#large-bootstrap-class-single-field' ).select2( {
|
||||
theme: "bootstrap-5",
|
||||
width: $( this ).data( 'width' ) ? $( this ).data( 'width' ) : $( this ).hasClass( 'w-100' ) ? '100%' : 'style',
|
||||
placeholder: $( this ).data( 'placeholder' ),
|
||||
dropdownParent: $( '#large-bootstrap-class-single-field' ).parent(),
|
||||
} );
|
||||
|
||||
$( '#large-bootstrap-class-multiple-field' ).select2( {
|
||||
theme: "bootstrap-5",
|
||||
width: $( this ).data( 'width' ) ? $( this ).data( 'width' ) : $( this ).hasClass( 'w-100' ) ? '100%' : 'style',
|
||||
placeholder: $( this ).data( 'placeholder' ),
|
||||
closeOnSelect: false,
|
||||
dropdownParent: $( '#large-bootstrap-class-multiple-field' ).parent(),
|
||||
} );
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
});
|
||||
Reference in New Issue
Block a user