@codeandfunction/callaloo 2.6.1 → 2.8.0

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
@@ -42,10 +42,10 @@ export declare enum BorderRadius {
42
42
  Medium = "rounded-md",
43
43
  None = "rounded-none",
44
44
  Small = "rounded-sm",
45
- XLarge = "rounded-xl",
46
- XXLarge = "rounded-2xl",
47
- XXXLarge = "rounded-3xl",
48
- XSmall = "rounded-xs"
45
+ XL = "rounded-xl",
46
+ XXL = "rounded-2xl",
47
+ XXXL = "rounded-3xl",
48
+ XS = "rounded-xs"
49
49
  }
50
50
  export declare enum ButtonTypes {
51
51
  Button = "button",
@@ -57,7 +57,7 @@ export declare enum CardTypes {
57
57
  Small = "small",
58
58
  Medium = "medium",
59
59
  Large = "large",
60
- XLarge = "xlarge"
60
+ XL = "xlarge"
61
61
  }
62
62
  export interface CardProps {
63
63
  /** When set to `true`, it elelvates the card to indicate it's active state. */
@@ -152,17 +152,17 @@ export declare enum HeadingTypes {
152
152
  Small = "small",
153
153
  Medium = "medium",
154
154
  Large = "large",
155
- XLarge = "xlarge"
155
+ XL = "xlarge"
156
156
  }
157
157
  export declare enum IconSizes {
158
158
  Tiny = "tiny",
159
159
  Small = "small",
160
160
  Medium = "medium",
161
161
  Large = "large",
162
- XLarge = "xlarge",
163
- XXLarge = "xxlarge",
164
- XXXLarge = "xxxlarge",
165
- XXXXLarge = "xxxxlarge"
162
+ XL = "xlarge",
163
+ XXL = "xxlarge",
164
+ XXXL = "xxxlarge",
165
+ XXXXL = "xxxxlarge"
166
166
  }
167
167
  export declare enum IconNames {
168
168
  Activity = "tabler:activity",
@@ -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,19 +345,27 @@ 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",
361
+ MailPlus = "tabler:mail-plus",
356
362
  Maximize = "tabler:maximize",
357
363
  Menu = "tabler:menu-2",
358
364
  Message = "tabler:message",
365
+ Messages = "tabler:messages",
359
366
  MessageDots = "tabler:message-dots",
367
+ MessageOff = "tabler:message-off",
368
+ MessagePlus = "tabler:message-plus",
360
369
  MoodDollar = "tabler:mood-dollar",
361
370
  MoodHeart = "tabler:mood-heart",
362
371
  MoodKid = "tabler:mood-kid",
@@ -411,6 +420,7 @@ export declare enum IconNames {
411
420
  Sun = "tabler:sun",
412
421
  Table = "tabler:table",
413
422
  Ticket = "tabler:ticket",
423
+ TipJar = "tabler:tip-jar",
414
424
  Template = "tabler:template",
415
425
  Terminal = "tabler:terminal",
416
426
  Terminal2 = "tabler:terminal-2",
@@ -418,6 +428,7 @@ export declare enum IconNames {
418
428
  TrashCan = "tabler:trash",
419
429
  Typography = "tabler:typography",
420
430
  Upload = "tabler:upload",
431
+ Urgent = "tabler:urgent",
421
432
  User = "tabler:user",
422
433
  Users = "tabler:users",
423
434
  UserCircle = "tabler:user-circle",
@@ -536,7 +547,7 @@ export declare enum Sizes {
536
547
  Small = "small",
537
548
  Medium = "medium",
538
549
  Large = "large",
539
- XLarge = "xlarge"
550
+ XL = "xlarge"
540
551
  }
541
552
  export declare enum TableTypes {
542
553
  Condensed = "condensed",
@@ -551,7 +562,7 @@ export declare enum TextTypes {
551
562
  Small = "small",
552
563
  Medium = "medium",
553
564
  Large = "large",
554
- XLarge = "xlarge"
565
+ XL = "xlarge"
555
566
  }
556
567
  export type Shades = Record<number, string>;
557
568
  export interface ThemeConfig {
@@ -559,7 +570,7 @@ export interface ThemeConfig {
559
570
  darkMode: boolean;
560
571
  fontFamily?: string;
561
572
  mode?: Mode;
562
- radius?: BorderRadius;
573
+ borderRadius?: BorderRadius;
563
574
  }
564
575
  export type PaletteKeys = keyof Palette;
565
576
  export interface ToastProps {
package/package.json CHANGED
@@ -17,7 +17,7 @@
17
17
  "ui components",
18
18
  "vuejs"
19
19
  ],
20
- "version": "2.6.1",
20
+ "version": "2.8.0",
21
21
  "license": "MIT",
22
22
  "type": "module",
23
23
  "scripts": {
@@ -52,55 +52,55 @@
52
52
  "./styles.css": "./dist/assets/styles.css"
53
53
  },
54
54
  "devDependencies": {
55
- "@chromatic-com/storybook": "^3.2.4",
55
+ "@chromatic-com/storybook": "^3.2.5",
56
56
  "@floating-ui/vue": "^1.1.6",
57
- "@iconify-json/tabler": "^1.2.15",
57
+ "@iconify-json/tabler": "^1.2.17",
58
58
  "@iconify/tools": "^4.1.1",
59
59
  "@iconify/types": "^2.0.0",
60
60
  "@semantic-release/changelog": "^6.0.3",
61
61
  "@semantic-release/git": "^10.0.1",
62
62
  "@semantic-release/gitlab": "^13.2.4",
63
- "@storybook/addon-a11y": "^8.5.1",
64
- "@storybook/addon-actions": "^8.5.2",
65
- "@storybook/addon-essentials": "^8.5.1",
66
- "@storybook/addon-interactions": "^8.5.1",
67
- "@storybook/cli": "^8.5.1",
68
- "@storybook/core-server": "^8.5.1",
69
- "@storybook/test": "^8.5.1",
70
- "@storybook/test-runner": "^0.21.0",
71
- "@storybook/vue3": "^8.5.1",
72
- "@storybook/vue3-vite": "^8.5.1",
63
+ "@storybook/addon-a11y": "^8.6.4",
64
+ "@storybook/addon-actions": "^8.6.4",
65
+ "@storybook/addon-essentials": "^8.6.4",
66
+ "@storybook/addon-interactions": "^8.6.4",
67
+ "@storybook/cli": "^8.6.4",
68
+ "@storybook/core-server": "^8.6.4",
69
+ "@storybook/test": "^8.6.4",
70
+ "@storybook/test-runner": "^0.21.3",
71
+ "@storybook/vue3": "^8.6.4",
72
+ "@storybook/vue3-vite": "^8.6.4",
73
73
  "@types/lodash-es": "^4.17.12",
74
74
  "@types/node": "22.10.10",
75
75
  "@types/stylis": "^4.2.7",
76
76
  "@vitejs/plugin-vue": "^5.2.1",
77
77
  "@vitejs/plugin-vue-jsx": "^4.1.1",
78
78
  "@vitest/browser": "3.0.4",
79
- "@vitest/coverage-c8": "~0.33.0",
80
79
  "@vitest/coverage-istanbul": "3.0.4",
81
80
  "@vitest/coverage-v8": "3.0.4",
82
- "@vitest/ui": "^3.0.4",
81
+ "@vitest/ui": "^3.0.8",
83
82
  "@vue/test-utils": "^2.4.6",
84
83
  "@vue/tsconfig": "^0.7.0",
85
84
  "@wdns/vue-code-block": "^2.3.5",
86
85
  "conventional-changelog-conventionalcommits": "^8.0.0",
87
- "eslint-plugin-vue": "^9.32.0",
86
+ "eslint-plugin-vue": "^9.33.0",
88
87
  "jsdom": "^26.0.0",
89
88
  "lodash-es": "^4.17.21",
90
89
  "murmurhash": "^2.0.1",
91
- "playwright": "^1.50.0",
92
- "sass": "^1.83.4",
93
- "semantic-release": "^24.2.1",
94
- "storybook": "^8.5.1",
95
- "stylis": "^4.3.5",
96
- "unplugin-auto-import": "^19.0.0",
90
+ "playwright": "^1.51.0",
91
+ "sass": "^1.85.1",
92
+ "semantic-release": "^24.2.3",
93
+ "storybook": "^8.6.4",
94
+ "storybook-addon-deep-controls": "^0.9.2",
95
+ "stylis": "^4.3.6",
96
+ "unplugin-auto-import": "^19.1.1",
97
97
  "vite": "6.0.11",
98
- "vite-plugin-dts": "^4.5.0",
98
+ "vite-plugin-dts": "^4.5.3",
99
99
  "vite-tsconfig-paths": "^5.1.4",
100
100
  "vitest": "3.0.4",
101
101
  "vue": "^3.5.13",
102
102
  "vue-router": "^4.5.0",
103
- "vue-tsc": "^2.2.0"
103
+ "vue-tsc": "^2.2.8"
104
104
  },
105
105
  "peerDependencies": {
106
106
  "vue": "^3.5.10"