Version 3.0.1

This commit is contained in:
Josh Johnson 2017-08-03 14:14:27 +01:00
parent bc757a6485
commit a4999d0286
7 changed files with 21 additions and 15 deletions

View file

@ -1,4 +1,4 @@
/*! choices.js v3.0.0 | (c) 2017 Josh Johnson | https://github.com/jshjohnson/Choices#readme */
/*! choices.js v3.0.1 | (c) 2017 Josh Johnson | https://github.com/jshjohnson/Choices#readme */
(function webpackUniversalModuleDefinition(root, factory) {
if(typeof exports === 'object' && typeof module === 'object')
module.exports = factory();
@ -179,7 +179,9 @@ return /******/ (function(modules) { // webpackBootstrap
highlightedState: 'is-highlighted',
hiddenState: 'is-hidden',
flippedState: 'is-flipped',
loadingState: 'is-loading'
loadingState: 'is-loading',
noResults: 'has-no-results',
noChoices: 'has-no-choices'
},
fuseOptions: {
include: 'score'
@ -624,11 +626,11 @@ return /******/ (function(modules) { // webpackBootstrap
if (this.isSearching) {
notice = (0, _utils.isType)('Function', this.config.noResultsText) ? this.config.noResultsText() : this.config.noResultsText;
dropdownItem = this._getTemplate('notice', notice);
dropdownItem = this._getTemplate('notice', notice, 'no-results');
} else {
notice = (0, _utils.isType)('Function', this.config.noChoicesText) ? this.config.noChoicesText() : this.config.noChoicesText;
dropdownItem = this._getTemplate('notice', notice);
dropdownItem = this._getTemplate('notice', notice, 'no-choices');
}
this.choiceList.appendChild(dropdownItem);
@ -2666,7 +2668,11 @@ return /******/ (function(modules) { // webpackBootstrap
return (0, _utils.strToEl)('\n <div\n class="' + localClasses + '"\n aria-expanded="false"\n >\n </div>\n ');
},
notice: function notice(label) {
var localClasses = (0, _classnames2.default)(globalClasses.item, globalClasses.itemChoice);
var _classNames6;
var type = arguments.length > 1 && arguments[1] !== undefined ? arguments[1] : '';
var localClasses = (0, _classnames2.default)(globalClasses.item, globalClasses.itemChoice, (_classNames6 = {}, _defineProperty(_classNames6, globalClasses.noResults, type === 'no-results'), _defineProperty(_classNames6, globalClasses.noChoices, type === 'no-choices'), _classNames6));
return (0, _utils.strToEl)('\n <div class="' + localClasses + '">\n ' + label + '\n </div>\n ');
},

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

View file

@ -1,6 +1,6 @@
{
"name": "choices.js",
"version": "3.0.0",
"version": "3.0.1",
"description": "A vanilla JS customisable text input/select box plugin",
"main": [
"./assets/scripts/dist/choices.js",

View file

@ -16,7 +16,7 @@
<meta name="theme-color" content="#ffffff">
<!-- Ignore these -->
<link rel="stylesheet" href="assets/styles/css/base.min.css?version=3.0.0">
<link rel="stylesheet" href="assets/styles/css/base.min.css?version=3.0.1">
<!-- End ignore these -->
<!-- Optional includes -->
@ -24,7 +24,7 @@
<!-- End optional includes -->
<!-- Choices includes -->
<link rel="stylesheet" href="assets/styles/css/choices.min.css?version=3.0.0">
<link rel="stylesheet" href="assets/styles/css/choices.min.css?version=3.0.1">
<script src="assets/scripts/dist/choices.min.js?version=2.8.8"></script>
<!-- End Choices includes -->

View file

@ -1,6 +1,6 @@
{
"name": "choices.js",
"version": "3.0.0",
"version": "3.0.1",
"description": "A vanilla JS customisable text input/select box plugin",
"main": "./assets/scripts/dist/choices.min.js",
"scripts": {

View file

@ -1,4 +1,4 @@
// Example usage: npm --newVersion=3.0.0 run version
// Example usage: npm --newVersion=3.0.1 run version
const fs = require('fs');
const path = require('path');