@bbn/bbn 1.0.319 → 1.0.320
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/html/getSiblingIndex.d.ts +1 -0
- package/dist/fn/html/getSiblingIndex.js +8 -0
- package/dist/fn.d.ts +2 -0
- package/dist/fn.js +2 -0
- package/package.json +1 -1
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export default function getSiblingIndex(ele: any): number;
|
package/dist/fn.d.ts
CHANGED
|
@@ -109,6 +109,7 @@ import getProperty from './fn/object/getProperty.js';
|
|
|
109
109
|
import getRequestId from './fn/ajax/getRequestId.js';
|
|
110
110
|
import getRow from './fn/object/getRow.js';
|
|
111
111
|
import getScrollBarSize from './fn/style/getScrollBarSize.js';
|
|
112
|
+
import getSiblingIndex from './fn/html/getSiblingIndex.js';
|
|
112
113
|
import getText from './fn/html/getText.js';
|
|
113
114
|
import getTimeoff from './fn/misc/getTimeoff.js';
|
|
114
115
|
import happy from './fn/browser/happy.js';
|
|
@@ -349,6 +350,7 @@ declare const _default: {
|
|
|
349
350
|
getRequestId: typeof getRequestId;
|
|
350
351
|
getRow: typeof getRow;
|
|
351
352
|
getScrollBarSize: typeof getScrollBarSize;
|
|
353
|
+
getSiblingIndex: typeof getSiblingIndex;
|
|
352
354
|
getText: typeof getText;
|
|
353
355
|
getTimeoff: typeof getTimeoff;
|
|
354
356
|
happy: typeof happy;
|
package/dist/fn.js
CHANGED
|
@@ -109,6 +109,7 @@ import getProperty from './fn/object/getProperty.js';
|
|
|
109
109
|
import getRequestId from './fn/ajax/getRequestId.js';
|
|
110
110
|
import getRow from './fn/object/getRow.js';
|
|
111
111
|
import getScrollBarSize from './fn/style/getScrollBarSize.js';
|
|
112
|
+
import getSiblingIndex from './fn/html/getSiblingIndex.js';
|
|
112
113
|
import getText from './fn/html/getText.js';
|
|
113
114
|
import getTimeoff from './fn/misc/getTimeoff.js';
|
|
114
115
|
import happy from './fn/browser/happy.js';
|
|
@@ -349,6 +350,7 @@ export default {
|
|
|
349
350
|
getRequestId: getRequestId,
|
|
350
351
|
getRow: getRow,
|
|
351
352
|
getScrollBarSize: getScrollBarSize,
|
|
353
|
+
getSiblingIndex: getSiblingIndex,
|
|
352
354
|
getText: getText,
|
|
353
355
|
getTimeoff: getTimeoff,
|
|
354
356
|
happy: happy,
|