@bbn/bbn 1.0.356 → 1.0.358
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/bbn.js +1 -1
- package/dist/bbn.js.map +1 -1
- package/dist/fn/init.js +1 -2
- package/dist/fn/type/isNotObject.d.ts +0 -1
- package/dist/fn/type/isNotObject.js +0 -1
- package/dist/fn.d.ts +2 -2
- package/dist/fn.js +2 -2
- package/package.json +1 -1
package/dist/fn/init.js
CHANGED
|
@@ -89,7 +89,7 @@ export default function init(cfg, force) {
|
|
|
89
89
|
addColors(bbn.var.colors);
|
|
90
90
|
}
|
|
91
91
|
if (bbn.env.lang && undefined !== dayjs) {
|
|
92
|
-
import('dayjs/locale/
|
|
92
|
+
import('dayjs/locale/' + bbn.env.lang + '.js').then(function () {
|
|
93
93
|
dayjs.locale(bbn.env.lang);
|
|
94
94
|
});
|
|
95
95
|
}
|
|
@@ -102,7 +102,6 @@ export default function init(cfg, force) {
|
|
|
102
102
|
}
|
|
103
103
|
});
|
|
104
104
|
document.addEventListener("focusin", function (e) {
|
|
105
|
-
bbn.fn.log("FOCUS IN", e);
|
|
106
105
|
if (e.target instanceof HTMLElement &&
|
|
107
106
|
!e.target.classList.contains("bbn-no")) {
|
|
108
107
|
bbn.env.focused = e.target;
|
package/dist/fn.d.ts
CHANGED
|
@@ -147,6 +147,7 @@ import isIP from './fn/type/isIP.js';
|
|
|
147
147
|
import isIterable from './fn/type/isIterable.js';
|
|
148
148
|
import isMobile from './fn/browser/isMobile.js';
|
|
149
149
|
import isMobileDevice from './fn/browser/isMobileDevice.js';
|
|
150
|
+
import isNotObject from './fn/type/isNotObject.js';
|
|
150
151
|
import isNull from './fn/type/isNull.js';
|
|
151
152
|
import isNumber from './fn/type/isNumber.js';
|
|
152
153
|
import isObject from './fn/type/isObject.js';
|
|
@@ -163,7 +164,6 @@ import isUid from './fn/type/isUid.js';
|
|
|
163
164
|
import isURL from './fn/type/isURL.js';
|
|
164
165
|
import isValidDimension from './fn/type/isValidDimension.js';
|
|
165
166
|
import isValidName from './fn/type/isValidName.js';
|
|
166
|
-
import isNotObject from './fn/type/isNotObject.js';
|
|
167
167
|
import isVue from './fn/type/isVue.js';
|
|
168
168
|
import isWritable from './fn/object/isWritable.js';
|
|
169
169
|
import iterate from './fn/loop/iterate.js';
|
|
@@ -389,6 +389,7 @@ declare const _default: {
|
|
|
389
389
|
isIterable: typeof isIterable;
|
|
390
390
|
isMobile: typeof isMobile;
|
|
391
391
|
isMobileDevice: typeof isMobileDevice;
|
|
392
|
+
isNotObject: typeof isNotObject;
|
|
392
393
|
isNull: typeof isNull;
|
|
393
394
|
isNumber: typeof isNumber;
|
|
394
395
|
isObject: typeof isObject;
|
|
@@ -405,7 +406,6 @@ declare const _default: {
|
|
|
405
406
|
isUid: typeof isUid;
|
|
406
407
|
isValidDimension: typeof isValidDimension;
|
|
407
408
|
isValidName: typeof isValidName;
|
|
408
|
-
isNotObject: typeof isNotObject;
|
|
409
409
|
isVue: typeof isVue;
|
|
410
410
|
isWritable: typeof isWritable;
|
|
411
411
|
iterate: typeof iterate;
|
package/dist/fn.js
CHANGED
|
@@ -147,6 +147,7 @@ import isIP from './fn/type/isIP.js';
|
|
|
147
147
|
import isIterable from './fn/type/isIterable.js';
|
|
148
148
|
import isMobile from './fn/browser/isMobile.js';
|
|
149
149
|
import isMobileDevice from './fn/browser/isMobileDevice.js';
|
|
150
|
+
import isNotObject from './fn/type/isNotObject.js';
|
|
150
151
|
import isNull from './fn/type/isNull.js';
|
|
151
152
|
import isNumber from './fn/type/isNumber.js';
|
|
152
153
|
import isObject from './fn/type/isObject.js';
|
|
@@ -163,7 +164,6 @@ import isUid from './fn/type/isUid.js';
|
|
|
163
164
|
import isURL from './fn/type/isURL.js';
|
|
164
165
|
import isValidDimension from './fn/type/isValidDimension.js';
|
|
165
166
|
import isValidName from './fn/type/isValidName.js';
|
|
166
|
-
import isNotObject from './fn/type/isNotObject.js';
|
|
167
167
|
import isVue from './fn/type/isVue.js';
|
|
168
168
|
import isWritable from './fn/object/isWritable.js';
|
|
169
169
|
import iterate from './fn/loop/iterate.js';
|
|
@@ -389,6 +389,7 @@ export default {
|
|
|
389
389
|
isIterable: isIterable,
|
|
390
390
|
isMobile: isMobile,
|
|
391
391
|
isMobileDevice: isMobileDevice,
|
|
392
|
+
isNotObject: isNotObject,
|
|
392
393
|
isNull: isNull,
|
|
393
394
|
isNumber: isNumber,
|
|
394
395
|
isObject: isObject,
|
|
@@ -405,7 +406,6 @@ export default {
|
|
|
405
406
|
isUid: isUid,
|
|
406
407
|
isValidDimension: isValidDimension,
|
|
407
408
|
isValidName: isValidName,
|
|
408
|
-
isNotObject: isNotObject,
|
|
409
409
|
isVue: isVue,
|
|
410
410
|
isWritable: isWritable,
|
|
411
411
|
iterate: iterate,
|