@codeandfunction/callaloo 2.7.0 → 2.8.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
@@ -279,7 +279,7 @@ export declare enum IconNames {
279
279
  Contrast = "tabler:contrast",
280
280
  Copy = "tabler:copy",
281
281
  CreditCard = "tabler:credit-card",
282
- Dasboard = "tabler:dashboard",
282
+ Dashboard = "tabler:dashboard",
283
283
  Database = "tabler:database",
284
284
  DatabaseExport = "tabler:database-export",
285
285
  Delete = "tabler:x",
@@ -314,6 +314,7 @@ export declare enum IconNames {
314
314
  Folder = "tabler:folder",
315
315
  Forms = "tabler:forms",
316
316
  Frame = "tabler:frame",
317
+ Gps = "tabler:gps",
317
318
  Hanger = "tabler:hanger",
318
319
  HandStop = "tabler:hand-stop",
319
320
  Heading = "tabler:heading",
@@ -344,12 +345,16 @@ export declare enum IconNames {
344
345
  ListNumbers = "tabler:list-numbers",
345
346
  ListTree = "tabler:list-tree",
346
347
  LoadBalancer = "tabler:load-balancer",
348
+ Location = "tabler:location",
347
349
  LogIn = "tabler:login",
348
350
  LogOut = "tabler:logout",
349
351
  Logs = "tabler:logs",
350
352
  Palette = "tabler:palette",
351
353
  Paint = "tabler:paint",
352
354
  PhotoScan = "tabler:photo-scan",
355
+ Map = "tabler:map",
356
+ MapPin = "tabler:map-pin",
357
+ MapSearch = "tabler:map-search",
353
358
  Marquee = "tabler:marquee",
354
359
  MarqueeOff = "tabler:marquee-off",
355
360
  Mail = "tabler:mail",
@@ -423,6 +428,7 @@ export declare enum IconNames {
423
428
  TrashCan = "tabler:trash",
424
429
  Typography = "tabler:typography",
425
430
  Upload = "tabler:upload",
431
+ Urgent = "tabler:urgent",
426
432
  User = "tabler:user",
427
433
  Users = "tabler:users",
428
434
  UserCircle = "tabler:user-circle",
@@ -7,8 +7,10 @@ interface ChildIsVisibleInput {
7
7
  parent: HTMLElement;
8
8
  child: HTMLElement;
9
9
  threshold?: number;
10
+ leftOffset?: number;
11
+ rightOffset?: number;
10
12
  }
11
- export declare const childIsVisible: ({ parent, child, threshold }: ChildIsVisibleInput) => boolean;
13
+ export declare const childIsVisible: ({ parent, child, threshold, leftOffset, rightOffset }: ChildIsVisibleInput) => boolean;
12
14
  export declare const debounce: (fn: () => void, ms?: number) => (this: any, ...args: any | any[]) => void;
13
15
  export declare const getMaxZIndex: () => number;
14
16
  export declare const isBrowser: boolean;
package/package.json CHANGED
@@ -17,7 +17,7 @@
17
17
  "ui components",
18
18
  "vuejs"
19
19
  ],
20
- "version": "2.7.0",
20
+ "version": "2.8.1",
21
21
  "license": "MIT",
22
22
  "type": "module",
23
23
  "scripts": {
@@ -29,6 +29,7 @@
29
29
  "lint:js": "eslint 'src/**/*.{ts,vue}'",
30
30
  "lint:js:fix": "eslint 'src/**/*.{ts,vue}' --fix",
31
31
  "lint:prettier": "prettier --check 'src/**/*.{ts,vue}'",
32
+ "package": "npm pack",
32
33
  "publish": "pnpm semantic-release",
33
34
  "start": "pnpm export:icons && storybook dev -p 4400 --no-open",
34
35
  "test": "vitest --run --passWithNoTests",