@mparticle/aquarium 1.25.0-icons-variant.1 → 1.25.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 +379 -576
- package/dist/aquarium.umd.cjs +1 -1
- package/dist/index.d.ts +2 -6
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -86,9 +86,7 @@ import { IAvatarProps as IAvatarProps_2 } from '../../../../../../../../../src/c
|
|
|
86
86
|
import { IBaseGlobalNavigationItem } from './navigation/GlobalNavigation/GlobalNavigationItems';
|
|
87
87
|
import { ColProps as IColProps } from 'antd';
|
|
88
88
|
import { IConfigProviderProps } from './other/ConfigProvider/ConfigProvider';
|
|
89
|
-
import type { IconNames } from '../../../../../../../../../src/types/icons';
|
|
90
89
|
import { Icons } from '../../../../../../../../../src/constants/Icons';
|
|
91
|
-
import type { IconVariant } from '../../../../../../../../../src/types/icons';
|
|
92
90
|
import { IFlexProps as IFlexProps_2 } from '../../../../../../../../../src/components/layout/Flex/Flex';
|
|
93
91
|
import { IGlobalNavigationItem } from './navigation/GlobalNavigation/GlobalNavigationItems';
|
|
94
92
|
import { IGlobalNavigationItem as IGlobalNavigationItem_2 } from '../../../../../../../../../src/components/navigation/GlobalNavigation/GlobalNavigationItems';
|
|
@@ -161,7 +159,6 @@ import { RadioGroupProps } from 'antd';
|
|
|
161
159
|
import { RadioProps } from 'antd';
|
|
162
160
|
import { RangePickerProps } from 'rc-picker';
|
|
163
161
|
import { RateProps } from 'antd';
|
|
164
|
-
import { default as React_2 } from 'react';
|
|
165
162
|
import { ReactElement } from 'react';
|
|
166
163
|
import { ReactNode } from 'react';
|
|
167
164
|
import { RefAttributes } from 'react';
|
|
@@ -479,7 +476,7 @@ export declare interface IColorPickerProps extends ColorPickerProps {
|
|
|
479
476
|
|
|
480
477
|
export { IColProps }
|
|
481
478
|
|
|
482
|
-
export declare const Icon:
|
|
479
|
+
export declare const Icon: (props: IIconProps) => JSX_2.Element;
|
|
483
480
|
|
|
484
481
|
declare type IconColor = 'default' | 'primary' | 'success' | 'warning' | 'error' | 'info' | 'white' | 'black' | 'text' | 'strong' | 'brand';
|
|
485
482
|
|
|
@@ -540,10 +537,9 @@ export declare interface IGlobalNavigationProps {
|
|
|
540
537
|
}
|
|
541
538
|
|
|
542
539
|
export declare interface IIconProps {
|
|
543
|
-
name:
|
|
540
|
+
name: keyof typeof Icons;
|
|
544
541
|
color?: IconColor;
|
|
545
542
|
size?: IconSize;
|
|
546
|
-
variant?: IconVariant;
|
|
547
543
|
}
|
|
548
544
|
|
|
549
545
|
export declare interface IImageProps extends ImageProps {
|