@codeandfunction/callaloo 3.9.0 → 3.10.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/assets/styles.css +1 -1
- package/dist/components/Form/CLCheckbox.vue.d.ts +4 -1
- package/dist/components/Form/CLRadioButton.vue.d.ts +4 -1
- package/dist/components/Form/utils.d.ts +1 -1
- package/dist/components/Modals/CLModal.vue.d.ts +2 -2
- package/dist/components/Popups/CLDropdownMenu.vue.d.ts +2 -2
- package/dist/index.js +2048 -2009
- package/dist/types.d.ts +5 -0
- package/package.json +1 -1
package/dist/types.d.ts
CHANGED
|
@@ -68,6 +68,8 @@ export interface CardProps {
|
|
|
68
68
|
active?: boolean;
|
|
69
69
|
/** Set the horizontal alignment of content. The property can be one of `CLAlign`, e.g. `CLAlign.Left` */
|
|
70
70
|
align?: Align;
|
|
71
|
+
/** Sets the aria-label if the `onClick` or `href` property has been set. It should be used when the `onClick` or `href` property has been set. */
|
|
72
|
+
ariaLabel?: string;
|
|
71
73
|
/** The border radius size. The property can be one of `CLBorderRadius`, e.g. `CLBorderRadius.Medium`. */
|
|
72
74
|
borderRadius?: BorderRadius;
|
|
73
75
|
/** A boolean value when set to `true`, adds a border to the card. */
|
|
@@ -215,11 +217,13 @@ export declare enum IconNames {
|
|
|
215
217
|
ArrowsDiagonal = "tabler:arrows-diagonal",
|
|
216
218
|
ArrowsMaximize = "tabler:arrows-maximize",
|
|
217
219
|
ArrowsMinimize = "tabler:arrows-minimize",
|
|
220
|
+
ArrowsSort = "tabler:arrows-sort",
|
|
218
221
|
AtSign = "tabler:at",
|
|
219
222
|
Auth2fa = "tabler:auth-2fa",
|
|
220
223
|
Backspace = "tabler:backspace",
|
|
221
224
|
Bed = "tabler:bed",
|
|
222
225
|
Bell = "tabler:bell",
|
|
226
|
+
BellPlus = "tabler:bell-plus",
|
|
223
227
|
Beach = "tabler:beach",
|
|
224
228
|
Binoculars = "tabler:binoculars",
|
|
225
229
|
Bike = "tabler:bike",
|
|
@@ -401,6 +405,7 @@ export declare enum IconNames {
|
|
|
401
405
|
LayoutBottomBar = "tabler:layout-bottombar",
|
|
402
406
|
LayoutDashboard = "tabler:layout-dashboard",
|
|
403
407
|
LayoutGrid = "tabler:layout-grid",
|
|
408
|
+
LayoutList = "tabler:layout-list",
|
|
404
409
|
LayoutNavbar = "tabler:layout-navbar",
|
|
405
410
|
LayoutRows = "tabler:layout-rows",
|
|
406
411
|
LayoutSidebar = "tabler:layout-sidebar",
|