@codeandfunction/callaloo 2.3.0 → 2.4.1

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/types.d.ts CHANGED
@@ -501,6 +501,7 @@ export declare enum Orientation {
501
501
  export declare enum PaginationType {
502
502
  Dots = "dots",
503
503
  Hidden = "hidden",
504
+ Inline = "inline",
504
505
  Numbered = "numbered"
505
506
  }
506
507
  export interface Palette {
@@ -10,7 +10,8 @@ interface ChildIsVisibleInput {
10
10
  }
11
11
  export declare const childIsVisible: ({ parent, child, threshold }: ChildIsVisibleInput) => boolean;
12
12
  export declare const debounce: (fn: () => void, ms?: number) => (this: any, ...args: any | any[]) => void;
13
+ export declare const getMaxZIndex: () => number;
13
14
  export declare const isBrowser: boolean;
14
15
  export declare const isDarkMode: () => boolean;
15
- export declare const getMaxZIndex: () => number;
16
+ export declare const isNodeEmpty: (elem: HTMLElement) => boolean;
16
17
  export {};
package/package.json CHANGED
@@ -17,7 +17,7 @@
17
17
  "ui components",
18
18
  "vuejs"
19
19
  ],
20
- "version": "2.3.0",
20
+ "version": "2.4.1",
21
21
  "license": "MIT",
22
22
  "type": "module",
23
23
  "scripts": {