@mparticle/aquarium 1.15.0-icons-integration.3 → 1.15.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/aquarium.js +383 -381
- package/dist/aquarium.umd.cjs +1 -1
- package/dist/index.d.ts +7 -4
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -385,11 +385,8 @@ export declare const Form: {
|
|
|
385
385
|
};
|
|
386
386
|
|
|
387
387
|
export declare const GlobalNavigation: {
|
|
388
|
-
(props: IGlobalNavigationProps): JSX_2.Element;
|
|
388
|
+
({ showSuiteLogo, ...props }: IGlobalNavigationProps): JSX_2.Element;
|
|
389
389
|
useNewExperienceReminder: (options: INewExperienceReminderOptions_2) => NewExperienceReminderHook_2;
|
|
390
|
-
defaultProps: {
|
|
391
|
-
showSuiteLogo: boolean;
|
|
392
|
-
};
|
|
393
390
|
};
|
|
394
391
|
|
|
395
392
|
export declare const GlobalNavWidth: 90;
|
|
@@ -423,6 +420,12 @@ export declare interface IBreadcrumbProps extends BreadcrumbProps {
|
|
|
423
420
|
}
|
|
424
421
|
|
|
425
422
|
export declare interface IButtonProps extends ButtonProps {
|
|
423
|
+
/**
|
|
424
|
+
* @deprecated This variant is a temporary fix for new icons.
|
|
425
|
+
* Use this variant only with new icons to align the icon and text centered.
|
|
426
|
+
* This will be removed once all icons are updated.
|
|
427
|
+
*/
|
|
428
|
+
variant?: 'with-new-icon';
|
|
426
429
|
}
|
|
427
430
|
|
|
428
431
|
export declare interface ICalendarProps extends CalendarProps<Dayjs> {
|