@codeandfunction/callaloo 3.6.0 → 3.7.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/components/Form/CLInput.vue.d.ts +3 -1
- package/dist/components/Form/CLTextArea.vue.d.ts +3 -1
- package/dist/index.d.ts +1 -1
- package/dist/index.js +521 -512
- package/dist/types.d.ts +5 -0
- package/package.json +1 -1
package/dist/types.d.ts
CHANGED
|
@@ -144,6 +144,7 @@ export declare enum ColorVariants {
|
|
|
144
144
|
}
|
|
145
145
|
export type GenericFunction = (event?: Event) => void;
|
|
146
146
|
export type GenericFocusFunction = (event: FocusEvent) => void;
|
|
147
|
+
export type GenericInputFunction = (event?: Event) => void;
|
|
147
148
|
export declare enum HeadingLevels {
|
|
148
149
|
H1 = "h1",
|
|
149
150
|
H2 = "h2",
|
|
@@ -258,6 +259,7 @@ export declare enum IconNames {
|
|
|
258
259
|
Browser = "tabler:browser",
|
|
259
260
|
Building = "tabler:building",
|
|
260
261
|
BuildingAirport = "tabler:building-airport",
|
|
262
|
+
BuildingBank = "tabler:building-bank",
|
|
261
263
|
BuildingCastle = "tabler:building-castle",
|
|
262
264
|
BuildingCarousel = "tabler:building-carousel",
|
|
263
265
|
BuildingChurch = "tabler:building-church",
|
|
@@ -453,6 +455,7 @@ export declare enum IconNames {
|
|
|
453
455
|
PhotoPlus = "tabler:photo-plus",
|
|
454
456
|
PhotoScan = "tabler:photo-scan",
|
|
455
457
|
Phone = "tabler:phone",
|
|
458
|
+
PigMoney = "tabler:pig-money",
|
|
456
459
|
Pin = "tabler:pin",
|
|
457
460
|
Pinned = "tabler:pinned",
|
|
458
461
|
Plane = "tabler:plane",
|
|
@@ -472,6 +475,7 @@ export declare enum IconNames {
|
|
|
472
475
|
Rss = "tabler:rss",
|
|
473
476
|
Run = "tabler:run",
|
|
474
477
|
Sailboat = "tabler:sailboat",
|
|
478
|
+
Scale = "tabler:scale",
|
|
475
479
|
Scoreboard = "tabler:scoreboard",
|
|
476
480
|
Seo = "tabler:seo",
|
|
477
481
|
ShoppingCart = "tabler:shopping-cart",
|
|
@@ -522,6 +526,7 @@ export declare enum IconNames {
|
|
|
522
526
|
UserSquareRounded = "tabler:user-square-rounded",
|
|
523
527
|
Video = "tabler:video",
|
|
524
528
|
Walk = "tabler:walk",
|
|
529
|
+
Wallet = "tabler:wallet",
|
|
525
530
|
WindowMaximize = "tabler:window-maximize",
|
|
526
531
|
WindowMinimize = "tabler:window-minimize",
|
|
527
532
|
WorldWww = "tabler:world-www"
|