@moontra/moonui-pro 2.32.10 → 2.32.11
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/index.d.ts +6 -2
- package/dist/index.global.js +98 -98
- package/dist/index.global.js.map +1 -1
- package/dist/index.mjs +171 -21
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -159,7 +159,11 @@ declare const MoonUICache: {
|
|
|
159
159
|
/**
|
|
160
160
|
* Debug info - shows all relevant localStorage keys
|
|
161
161
|
*/
|
|
162
|
-
debug: () => void
|
|
162
|
+
debug: () => Promise<void>;
|
|
163
|
+
/**
|
|
164
|
+
* Check CLI authentication status
|
|
165
|
+
*/
|
|
166
|
+
checkCLIAuth: () => Promise<boolean>;
|
|
163
167
|
};
|
|
164
168
|
|
|
165
169
|
type AccordionSize = "sm" | "md" | "lg";
|
|
@@ -1583,7 +1587,7 @@ declare function SimpleLightbox({ src, type, alt, poster, title, description, ch
|
|
|
1583
1587
|
*/
|
|
1584
1588
|
declare const galleryVariants: (props?: ({
|
|
1585
1589
|
layout?: "horizontal" | "grid" | "masonry" | "justified" | null | undefined;
|
|
1586
|
-
columns?: 2 |
|
|
1590
|
+
columns?: 2 | 5 | 1 | 4 | 3 | 6 | null | undefined;
|
|
1587
1591
|
} & class_variance_authority_dist_types.ClassProp) | undefined) => string;
|
|
1588
1592
|
declare const galleryItemVariants: (props?: ({
|
|
1589
1593
|
variant?: "default" | "ghost" | "outline" | "card" | "glass" | null | undefined;
|