@moontra/moonui-pro 2.27.6 → 2.27.9
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 +4 -1
- package/dist/index.global.js +40 -40
- package/dist/index.global.js.map +1 -1
- package/dist/index.mjs +95 -69
- package/package.json +2 -2
package/dist/index.d.ts
CHANGED
|
@@ -323,6 +323,8 @@ interface MoonUIBadgeProProps extends React$1.HTMLAttributes<HTMLDivElement>, Om
|
|
|
323
323
|
leftIcon?: React$1.ReactNode;
|
|
324
324
|
rightIcon?: React$1.ReactNode;
|
|
325
325
|
variant?: 'primary' | 'secondary' | 'destructive' | 'outline' | 'success' | 'warning' | 'ghost' | 'pro' | 'admin';
|
|
326
|
+
/** Disable automatic spacing between badges */
|
|
327
|
+
noAutoSpacing?: boolean;
|
|
326
328
|
}
|
|
327
329
|
/**
|
|
328
330
|
* Premium Badge Component
|
|
@@ -337,8 +339,9 @@ interface MoonUIBadgeProProps extends React$1.HTMLAttributes<HTMLDivElement>, Om
|
|
|
337
339
|
* @param props.onRemove - Kaldırma işlevi
|
|
338
340
|
* @param props.leftIcon - Badge'in solunda görüntülenecek ikon
|
|
339
341
|
* @param props.rightIcon - Badge'in sağında görüntülenecek ikon
|
|
342
|
+
* @param props.noAutoSpacing - Otomatik spacing'i devre dışı bırak
|
|
340
343
|
*/
|
|
341
|
-
declare function MoonUIBadgePro({ className, variant, size, radius, withDot, dotColor, removable, onRemove, leftIcon, rightIcon, children, ...props }: MoonUIBadgeProProps): react_jsx_runtime.JSX.Element;
|
|
344
|
+
declare function MoonUIBadgePro({ className, variant, size, radius, withDot, dotColor, removable, onRemove, leftIcon, rightIcon, noAutoSpacing, children, ...props }: MoonUIBadgeProProps): react_jsx_runtime.JSX.Element;
|
|
342
345
|
|
|
343
346
|
declare const MoonUIbreadcrumbVariantsPro: (props?: ({
|
|
344
347
|
variant?: "default" | "ghost" | "muted" | null | undefined;
|