@codeandfunction/callaloo 2.18.1 → 2.20.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/assets/styles.css +1 -1
- package/dist/components/Popups/CLToast.vue.d.ts +2 -1
- package/dist/index.d.ts +1 -1
- package/dist/index.js +904 -900
- package/dist/types.d.ts +19 -0
- package/package.json +1 -1
package/dist/types.d.ts
CHANGED
|
@@ -254,11 +254,15 @@ export declare enum IconNames {
|
|
|
254
254
|
Browser = "tabler:browser",
|
|
255
255
|
Building = "tabler:building",
|
|
256
256
|
BuildingAirport = "tabler:building-airport",
|
|
257
|
+
BuildingCastle = "tabler:building-castle",
|
|
258
|
+
BuildingCarousel = "tabler:building-carousel",
|
|
259
|
+
BuildingChurch = "tabler:building-church",
|
|
257
260
|
BuildingCommunity = "tabler:building-community",
|
|
258
261
|
BuildingCottage = "tabler:building-cottage",
|
|
259
262
|
BuildingStadium = "tabler:building-stadium",
|
|
260
263
|
BuildingStore = "tabler:building-store",
|
|
261
264
|
Bus = "tabler:bus",
|
|
265
|
+
BusinessPlan = "tabler:businessplan",
|
|
262
266
|
Calendar = "tabler:calendar",
|
|
263
267
|
CalendarPlus = "tabler:calendar-plus",
|
|
264
268
|
Calculator = "tabler:calculator",
|
|
@@ -271,6 +275,7 @@ export declare enum IconNames {
|
|
|
271
275
|
CaretUp = "tabler:caret-up",
|
|
272
276
|
CarouselHorizontal = "tabler:carousel-horizontal",
|
|
273
277
|
Check = "tabler:check",
|
|
278
|
+
ChefHat = "tabler:chef-hat",
|
|
274
279
|
ChevronLeft = "tabler:chevron-left",
|
|
275
280
|
ChevronsLeft = "tabler:chevrons-left",
|
|
276
281
|
ChevronRight = "tabler:chevron-right",
|
|
@@ -304,6 +309,7 @@ export declare enum IconNames {
|
|
|
304
309
|
CloudDataConnection = "tabler:cloud-data-connection",
|
|
305
310
|
CloudUpload = "tabler:cloud-upload",
|
|
306
311
|
Code = "tabler:code",
|
|
312
|
+
Coin = "tabler:coin",
|
|
307
313
|
Coins = "tabler:coins",
|
|
308
314
|
Columns1 = "tabler:columns-1",
|
|
309
315
|
Columns2 = "tabler:columns-2",
|
|
@@ -363,6 +369,7 @@ export declare enum IconNames {
|
|
|
363
369
|
Image = "tabler:photo",
|
|
364
370
|
InfoCircle = "tabler:info-circle",
|
|
365
371
|
InfoSmall = "tabler:info-small",
|
|
372
|
+
Grill = "tabler:grill",
|
|
366
373
|
GripHorizontal = "tabler:grip-horizontal",
|
|
367
374
|
GripVertical = "tabler:grip-vertical",
|
|
368
375
|
Key = "tabler:key",
|
|
@@ -402,6 +409,7 @@ export declare enum IconNames {
|
|
|
402
409
|
MessageDots = "tabler:message-dots",
|
|
403
410
|
MessageOff = "tabler:message-off",
|
|
404
411
|
MessagePlus = "tabler:message-plus",
|
|
412
|
+
MoneyBag = "tabler:moneybag",
|
|
405
413
|
MoodDollar = "tabler:mood-dollar",
|
|
406
414
|
MoodHeart = "tabler:mood-heart",
|
|
407
415
|
MoodKid = "tabler:mood-kid",
|
|
@@ -473,6 +481,7 @@ export declare enum IconNames {
|
|
|
473
481
|
Terminal = "tabler:terminal",
|
|
474
482
|
Terminal2 = "tabler:terminal-2",
|
|
475
483
|
TextSize = "tabler:text-size",
|
|
484
|
+
ToolsKitchen2 = "tabler:tools-kitchen-2",
|
|
476
485
|
Train = "tabler:train",
|
|
477
486
|
TrashCan = "tabler:trash",
|
|
478
487
|
Trekking = "tabler:trekking",
|
|
@@ -629,6 +638,14 @@ export interface ThemeConfig {
|
|
|
629
638
|
borderRadius?: BorderRadius;
|
|
630
639
|
}
|
|
631
640
|
export type PaletteKeys = keyof Palette;
|
|
641
|
+
export declare enum ToastPosition {
|
|
642
|
+
TopLeft = "top-left",
|
|
643
|
+
TopCenter = "top-center",
|
|
644
|
+
TopRight = "top-right",
|
|
645
|
+
BottomLeft = "bottom-left",
|
|
646
|
+
BottomCenter = "bottom-center",
|
|
647
|
+
BottomRight = "bottom-right"
|
|
648
|
+
}
|
|
632
649
|
export interface ToastProps {
|
|
633
650
|
/** The action label text to be displayed. */
|
|
634
651
|
actionLabel?: string;
|
|
@@ -644,6 +661,8 @@ export interface ToastProps {
|
|
|
644
661
|
iconSize?: IconSizes;
|
|
645
662
|
/** The text to be displayed as the message. */
|
|
646
663
|
message?: string;
|
|
664
|
+
/** Sets the position of the toast. The property can be one of `CLToastPosition`, e.g `CLToastPosition.TopRight`. */
|
|
665
|
+
position?: ToastPosition;
|
|
647
666
|
/** A callback function to handle click events. */
|
|
648
667
|
onAction?: GenericFunction;
|
|
649
668
|
/** A callback function to handle when the toast is dismissed. */
|