@mparticle/aquarium 1.25.0-chore-add-disabled-state-queryitem-cascader.1 → 1.25.0-icons-variant.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/aquarium.js +576 -380
- package/dist/aquarium.umd.cjs +1 -1
- package/dist/index.d.ts +6 -3
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -86,7 +86,9 @@ 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';
|
|
89
90
|
import { Icons } from '../../../../../../../../../src/constants/Icons';
|
|
91
|
+
import type { IconVariant } from '../../../../../../../../../src/types/icons';
|
|
90
92
|
import { IFlexProps as IFlexProps_2 } from '../../../../../../../../../src/components/layout/Flex/Flex';
|
|
91
93
|
import { IGlobalNavigationItem } from './navigation/GlobalNavigation/GlobalNavigationItems';
|
|
92
94
|
import { IGlobalNavigationItem as IGlobalNavigationItem_2 } from '../../../../../../../../../src/components/navigation/GlobalNavigation/GlobalNavigationItems';
|
|
@@ -159,6 +161,7 @@ import { RadioGroupProps } from 'antd';
|
|
|
159
161
|
import { RadioProps } from 'antd';
|
|
160
162
|
import { RangePickerProps } from 'rc-picker';
|
|
161
163
|
import { RateProps } from 'antd';
|
|
164
|
+
import { default as React_2 } from 'react';
|
|
162
165
|
import { ReactElement } from 'react';
|
|
163
166
|
import { ReactNode } from 'react';
|
|
164
167
|
import { RefAttributes } from 'react';
|
|
@@ -476,7 +479,7 @@ export declare interface IColorPickerProps extends ColorPickerProps {
|
|
|
476
479
|
|
|
477
480
|
export { IColProps }
|
|
478
481
|
|
|
479
|
-
export declare const Icon:
|
|
482
|
+
export declare const Icon: React_2.FC<IIconProps>;
|
|
480
483
|
|
|
481
484
|
declare type IconColor = 'default' | 'primary' | 'success' | 'warning' | 'error' | 'info' | 'white' | 'black' | 'text' | 'strong' | 'brand';
|
|
482
485
|
|
|
@@ -537,9 +540,10 @@ export declare interface IGlobalNavigationProps {
|
|
|
537
540
|
}
|
|
538
541
|
|
|
539
542
|
export declare interface IIconProps {
|
|
540
|
-
name:
|
|
543
|
+
name: IconNames;
|
|
541
544
|
color?: IconColor;
|
|
542
545
|
size?: IconSize;
|
|
546
|
+
variant?: IconVariant;
|
|
543
547
|
}
|
|
544
548
|
|
|
545
549
|
export declare interface IImageProps extends ImageProps {
|
|
@@ -664,7 +668,6 @@ export declare interface IQueryItemCascaderProps {
|
|
|
664
668
|
onChange?: (values: Array<number | string>, selectedOptions: any) => Promise<void>;
|
|
665
669
|
loadData?: (value: string) => void;
|
|
666
670
|
value?: Array<number | string>;
|
|
667
|
-
disabled?: boolean;
|
|
668
671
|
}
|
|
669
672
|
|
|
670
673
|
export declare type IQueryItemQualifierOption = DefaultOptionType;
|