@mparticle/aquarium 1.33.2-fix-design-tokens-fix.2 → 1.33.2
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/src/components/index.d.ts +6 -6
- package/dist/src/components/{data-entry → unused}/ColorPicker/ColorPicker.d.ts +1 -1
- package/dist/src/components/{data-entry → unused}/Rate/Rate.d.ts +1 -1
- package/dist/src/components/{feedback → unused}/Watermark/Watermark.d.ts +1 -1
- package/package.json +1 -1
- /package/dist/src/components/{data-display → unused}/Calendar/Calendar.d.ts +0 -0
- /package/dist/src/components/{data-display → unused}/Carousel/Carousel.d.ts +0 -0
- /package/dist/src/components/{data-display → unused}/QRCode/QRCode.d.ts +0 -0
|
@@ -1,13 +1,13 @@
|
|
|
1
1
|
export { Button, type IButtonProps } from './general/Button/Button';
|
|
2
2
|
export { FloatButton, type IFloatButtonProps } from './general/FloatButton/FloatButton';
|
|
3
3
|
export { Icon, type IIconProps } from './general/Icon/Icon';
|
|
4
|
-
export { Rate, type IRateProps } from './
|
|
4
|
+
export { Rate, type IRateProps } from './unused/Rate/Rate';
|
|
5
5
|
export { Form, type IFormProps, type FormInstance } from './data-entry/Form/Form';
|
|
6
6
|
export { TreeSelect, type ITreeSelectProps } from './data-entry/TreeSelect/TreeSelect';
|
|
7
7
|
export { Select, type ISelectProps, type DefaultOptionType } from './data-entry/Select/Select';
|
|
8
8
|
export { Mentions, type IMentionsProps } from './data-entry/Mentions/Mentions';
|
|
9
9
|
export { Radio, type IRadioProps } from './data-entry/Radio/Radio';
|
|
10
|
-
export { ColorPicker, type IColorPickerProps } from './
|
|
10
|
+
export { ColorPicker, type IColorPickerProps } from './unused/ColorPicker/ColorPicker';
|
|
11
11
|
export { Slider, type ISliderProps } from './data-entry/Slider/Slider';
|
|
12
12
|
export { Cascader, type ICascaderProps } from './data-entry/Cascader/Cascader';
|
|
13
13
|
export { DatePicker, type IDatePickerProps } from './data-entry/DatePicker/DatePicker';
|
|
@@ -26,17 +26,17 @@ export type { INumberInputProps } from './data-entry/QueryItem/NumberInput';
|
|
|
26
26
|
export type { ITextInputProps } from './data-entry/QueryItem/TextInput';
|
|
27
27
|
export { Collapse, type ICollapseProps } from './data-display/Collapse/Collapse';
|
|
28
28
|
export { Timeline, type ITimelineProps } from './data-display/Timeline/Timeline';
|
|
29
|
-
export { Calendar, type ICalendarProps } from './
|
|
29
|
+
export { Calendar, type ICalendarProps } from './unused/Calendar/Calendar';
|
|
30
30
|
export { Segmented, type ISegmentedProps } from './data-display/Segmented/Segmented';
|
|
31
31
|
export { Tabs, type ITabsProps } from './data-display/Tabs/Tabs';
|
|
32
32
|
export { Tag, type ITagProps } from './data-display/Tag/Tag';
|
|
33
33
|
export { Tour, type ITourProps } from './data-display/Tour/Tour';
|
|
34
|
-
export { Carousel, type ICarouselProps } from './
|
|
34
|
+
export { Carousel, type ICarouselProps } from './unused/Carousel/Carousel';
|
|
35
35
|
export { Tooltip, type ITooltipProps } from './data-display/Tooltip/Tooltip';
|
|
36
36
|
export { Statistic, type IStatisticProps } from './data-display/Statistic/Statistic';
|
|
37
37
|
export { Tree, type ITreeProps, type ITreeData } from './data-display/Tree/Tree';
|
|
38
38
|
export { Image, type IImageProps } from './data-display/Image/Image';
|
|
39
|
-
export { QRCode, type IQRCodeProps } from './
|
|
39
|
+
export { QRCode, type IQRCodeProps } from './unused/QRCode/QRCode';
|
|
40
40
|
export { Badge, type IBadgeProps } from './data-display/Badge/Badge';
|
|
41
41
|
export { Card, type ICardProps } from './data-display/Card/Card';
|
|
42
42
|
export { Avatar, type IAvatarProps } from './data-display/Avatar/Avatar';
|
|
@@ -49,7 +49,7 @@ export { Progress, type IProgressProps } from './feedback/Progress/Progress';
|
|
|
49
49
|
export { Result, type IResultProps } from './feedback/Result/Result';
|
|
50
50
|
export { Spin, type ISpinProps } from './feedback/Spin/Spin';
|
|
51
51
|
export { Skeleton, type ISkeletonProps } from './feedback/Skeleton/Skeleton';
|
|
52
|
-
export { Watermark, type IWatermarkProps } from './
|
|
52
|
+
export { Watermark, type IWatermarkProps } from './unused/Watermark/Watermark';
|
|
53
53
|
export { Popconfirm, type IPopconfirmProps } from './feedback/Popconfirm/Popconfirm';
|
|
54
54
|
export { Drawer, type IDrawerProps } from './feedback/Drawer/Drawer';
|
|
55
55
|
export { Modal, type IModalProps } from './feedback/Modal/Modal';
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import {
|
|
1
|
+
import type { ColorPickerProps as AntColorPickerProps } from 'antd';
|
|
2
2
|
export interface IColorPickerProps extends AntColorPickerProps {
|
|
3
3
|
}
|
|
4
4
|
export declare const ColorPicker: (props: IColorPickerProps) => import("react/jsx-runtime").JSX.Element;
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import {
|
|
1
|
+
import type { WatermarkProps as AntWatermarkProps } from 'antd';
|
|
2
2
|
export interface IWatermarkProps extends AntWatermarkProps {
|
|
3
3
|
}
|
|
4
4
|
export declare const Watermark: (props: IWatermarkProps) => import("react/jsx-runtime").JSX.Element;
|
package/package.json
CHANGED
|
File without changes
|
|
File without changes
|
|
File without changes
|