@codeandfunction/callaloo 2.2.0 → 2.4.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
|
@@ -166,6 +166,8 @@ export declare enum IconSizes {
|
|
|
166
166
|
}
|
|
167
167
|
export declare enum IconNames {
|
|
168
168
|
Activity = "tabler:activity",
|
|
169
|
+
Adjustments = "tabler:adjustments",
|
|
170
|
+
AdjustmentsHorizontal = "tabler:adjustments-horizontal",
|
|
169
171
|
Ai = "tabler:ai",
|
|
170
172
|
Alarm = "tabler:alarm",
|
|
171
173
|
AlertSquare = "tabler:alert-square",
|
|
@@ -206,6 +208,7 @@ export declare enum IconNames {
|
|
|
206
208
|
Auth2fa = "tabler:auth-2fa",
|
|
207
209
|
Backspace = "tabler:backspace",
|
|
208
210
|
Book = "tabler:book",
|
|
211
|
+
Bookmark = "tabler:bookmark",
|
|
209
212
|
BorderCorners = "tabler:border-corners",
|
|
210
213
|
BoxMargin = "tabler:box-margin",
|
|
211
214
|
Brush = "tabler:brush",
|
|
@@ -307,12 +310,15 @@ export declare enum IconNames {
|
|
|
307
310
|
FileTypeSvg = "tabler:file-type-svg",
|
|
308
311
|
FileTypeTs = "tabler:file-type-ts",
|
|
309
312
|
FileTypeVue = "tabler:file-type-vue",
|
|
313
|
+
Filter = "tabler:filter",
|
|
310
314
|
Folder = "tabler:folder",
|
|
311
315
|
Forms = "tabler:forms",
|
|
312
316
|
Frame = "tabler:frame",
|
|
313
317
|
Hanger = "tabler:hanger",
|
|
314
318
|
HandStop = "tabler:hand-stop",
|
|
315
319
|
Heading = "tabler:heading",
|
|
320
|
+
Heart = "tabler:heart",
|
|
321
|
+
HeartHandShake = "tabler:heart-handshake",
|
|
316
322
|
Help = "tabler:help",
|
|
317
323
|
HelpCircle = "tabler:help-circle",
|
|
318
324
|
HelpSmall = "tabler:help-small",
|
|
@@ -463,9 +469,9 @@ export declare enum Mode {
|
|
|
463
469
|
export interface NavItem {
|
|
464
470
|
/** Sets the aria-label on the NavLink element. */
|
|
465
471
|
ariaLabel?: string;
|
|
466
|
-
/** Sets the external attribute on the NavLink element. If set, it adds an icon indicating that the link will open a new tab/window. */
|
|
467
472
|
/** Sets the color of the NavLink element. The property can be one of `CLColors`, e.g. `CLColors.Default` */
|
|
468
473
|
color?: Colors;
|
|
474
|
+
/** Sets the external attribute on the NavLink element. If set, it adds an icon indicating that the link will open a new tab/window. */
|
|
469
475
|
external?: boolean;
|
|
470
476
|
/** Sets the href attribute on the NavLink element. */
|
|
471
477
|
href?: string;
|
|
@@ -495,6 +501,7 @@ export declare enum Orientation {
|
|
|
495
501
|
export declare enum PaginationType {
|
|
496
502
|
Dots = "dots",
|
|
497
503
|
Hidden = "hidden",
|
|
504
|
+
Inline = "inline",
|
|
498
505
|
Numbered = "numbered"
|
|
499
506
|
}
|
|
500
507
|
export interface Palette {
|