@mparticle/aquarium 1.61.0-operation-prism-shift.3 → 1.62.0-antd-v6-react-v19-upgrade.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/README.md +77 -7
- package/dist/aquarium.js +14543 -14698
- package/dist/aquarium.umd.cjs +53 -57
- package/dist/src/components/UXPatterns/{UnauthorizedTooltip → PermissionsRestrictions}/UnauthorizedTooltip.d.ts +2 -2
- package/dist/src/components/data-display/Card/Card.d.ts +2 -2
- package/dist/src/components/data-display/Descriptions/Descriptions.d.ts +2 -2
- package/dist/src/components/data-display/Image/Image.d.ts +2 -2
- package/dist/src/components/data-display/Table/Table.d.ts +9 -2
- package/dist/src/components/data-display/Tabs/Tabs.d.ts +2 -1
- package/dist/src/components/data-display/Tooltip/Tooltip.d.ts +2 -2
- package/dist/src/components/data-entry/DatePicker/DatePicker.d.ts +21 -18
- package/dist/src/components/data-entry/Form/Form.d.ts +1 -1
- package/dist/src/components/data-entry/Select/Select.d.ts +2 -2
- package/dist/src/components/data-entry/TimePicker/TimePicker.d.ts +1 -1
- package/dist/src/components/data-entry/TreeSelect/TreeSelect.d.ts +1 -1
- package/dist/src/components/feedback/Skeleton/Skeleton.d.ts +2 -2
- package/dist/src/components/general/FloatButton/FloatButton.d.ts +1 -1
- package/dist/src/components/icons/index.d.ts +2 -1
- package/dist/src/components/index.d.ts +1 -1
- package/dist/src/components/navigation/Menu/Menu.d.ts +2 -2
- package/dist/src/components/not-prod-ready/Calendar/Calendar.d.ts +0 -1
- package/dist/src/components/not-prod-ready/Tree/Tree.d.ts +2 -2
- package/dist/src/components/other/ConfigProvider/ConfigProvider.d.ts +13 -0
- package/dist/src/styles/style.d.ts +65 -65
- package/dist/src/types/icons.d.ts +1 -1
- package/dist/style.css +1 -1
- package/dist/style.ts +65 -65
- package/package.json +14 -8
|
@@ -1,9 +1,9 @@
|
|
|
1
1
|
import React from 'react';
|
|
2
2
|
import { type ITooltipProps } from '../..';
|
|
3
|
-
export interface IUnauthorizedTooltipProps extends Omit<ITooltipProps, 'title'> {
|
|
3
|
+
export interface IUnauthorizedTooltipProps extends Omit<ITooltipProps, 'title' | 'children'> {
|
|
4
4
|
isAuthorized: boolean;
|
|
5
5
|
children: React.ReactElement;
|
|
6
|
-
unauthorizedMessage?:
|
|
6
|
+
unauthorizedMessage?: React.ReactNode;
|
|
7
7
|
maxWidth?: string;
|
|
8
8
|
}
|
|
9
9
|
export declare const UnauthorizedTooltip: React.FC<IUnauthorizedTooltipProps>;
|
|
@@ -1,8 +1,8 @@
|
|
|
1
|
-
import {
|
|
1
|
+
import { CardGridProps } from 'antd/es/card';
|
|
2
2
|
import { FC } from 'react';
|
|
3
3
|
import { JSX } from 'react/jsx-runtime';
|
|
4
4
|
/// <reference types="react" />
|
|
5
|
-
import { type CardProps as AntCardProps } from 'antd';
|
|
5
|
+
import { CardMetaProps, type CardProps as AntCardProps } from 'antd';
|
|
6
6
|
export interface ICardProps extends AntCardProps {
|
|
7
7
|
}
|
|
8
8
|
export declare const Card: {
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { DescriptionsItemProps } from 'antd/es/descriptions/Item';
|
|
2
|
-
import { FC } from 'react';
|
|
2
|
+
import { FC, PropsWithChildren } from 'react';
|
|
3
3
|
import { JSX } from 'react/jsx-runtime';
|
|
4
4
|
/// <reference types="react" />
|
|
5
5
|
import { type DescriptionsProps as AntDescriptionsProps } from 'antd';
|
|
@@ -7,5 +7,5 @@ export interface IDescriptionsProps extends AntDescriptionsProps {
|
|
|
7
7
|
}
|
|
8
8
|
export declare const Descriptions: {
|
|
9
9
|
(props: IDescriptionsProps): JSX.Element;
|
|
10
|
-
Item: FC<DescriptionsItemProps
|
|
10
|
+
Item: FC<PropsWithChildren<DescriptionsItemProps>>;
|
|
11
11
|
};
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import {
|
|
1
|
+
import { PreviewGroupProps } from 'antd/es/image/PreviewGroup';
|
|
2
2
|
import { FC } from 'react';
|
|
3
3
|
import { JSX } from 'react/jsx-runtime';
|
|
4
4
|
/// <reference types="react" />
|
|
@@ -7,5 +7,5 @@ export interface IImageProps extends AntImageProps {
|
|
|
7
7
|
}
|
|
8
8
|
export declare const Image: {
|
|
9
9
|
(props: IImageProps): JSX.Element;
|
|
10
|
-
PreviewGroup: FC<
|
|
10
|
+
PreviewGroup: FC<PreviewGroupProps>;
|
|
11
11
|
};
|
|
@@ -1,6 +1,10 @@
|
|
|
1
|
-
import {
|
|
1
|
+
import { SummaryCellProps } from '@rc-component/table/lib/Footer/Cell';
|
|
2
|
+
import { FooterRowProps } from '@rc-component/table/lib/Footer/Row';
|
|
3
|
+
import { SummaryProps } from '@rc-component/table/lib/Footer/Summary';
|
|
4
|
+
import { FC, PropsWithChildren } from 'react';
|
|
2
5
|
import { ColumnGroupProps } from 'antd/es/table/ColumnGroup';
|
|
3
6
|
import { JSX } from 'react/jsx-runtime';
|
|
7
|
+
/// <reference types="react" />
|
|
4
8
|
import { TableColumnProps, type TableProps as AntTableProps } from 'antd';
|
|
5
9
|
import { type AnyObject } from 'antd/es/_util/type';
|
|
6
10
|
import { type ColumnType, type ExpandableConfig } from 'antd/es/table/interface';
|
|
@@ -12,7 +16,10 @@ export declare const Table: {
|
|
|
12
16
|
<RecordType extends AnyObject = AnyObject>({ className, ...props }: ITableProps<RecordType>): JSX.Element;
|
|
13
17
|
Column: <RecordType_1 extends AnyObject>(_: TableColumnProps<RecordType_1>) => null;
|
|
14
18
|
ColumnGroup: <RecordType_2 extends AnyObject>(_: ColumnGroupProps<RecordType_2>) => null;
|
|
15
|
-
Summary:
|
|
19
|
+
Summary: FC<PropsWithChildren<SummaryProps>> & {
|
|
20
|
+
Row: FC<PropsWithChildren<FooterRowProps>>;
|
|
21
|
+
Cell: FC<PropsWithChildren<SummaryCellProps>>;
|
|
22
|
+
};
|
|
16
23
|
EXPAND_COLUMN: {};
|
|
17
24
|
SELECTION_NONE: "SELECT_NONE";
|
|
18
25
|
SELECTION_ALL: "SELECT_ALL";
|
|
@@ -1,7 +1,8 @@
|
|
|
1
|
+
import { TabPaneProps } from 'antd/es/tabs/TabPane';
|
|
1
2
|
import { FC } from 'react';
|
|
2
3
|
import { JSX } from 'react/jsx-runtime';
|
|
3
4
|
/// <reference types="react" />
|
|
4
|
-
import {
|
|
5
|
+
import { type TabsProps as AntTabsProps } from 'antd';
|
|
5
6
|
export interface ITabsProps extends AntTabsProps {
|
|
6
7
|
}
|
|
7
8
|
export declare const Tabs: {
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { JSX } from 'react/jsx-runtime';
|
|
2
|
-
import { type
|
|
3
|
-
export interface ITooltipProps extends
|
|
2
|
+
import { type TooltipProps as AntTooltipProps } from 'antd';
|
|
3
|
+
export interface ITooltipProps extends AntTooltipProps {
|
|
4
4
|
}
|
|
5
5
|
export declare const Tooltip: (props: ITooltipProps) => JSX.Element;
|
|
@@ -1,10 +1,9 @@
|
|
|
1
1
|
import { Dayjs } from 'dayjs';
|
|
2
2
|
import { ButtonSize } from 'antd/es/button';
|
|
3
|
-
import { RangePickerProps, PickerRef } from 'rc-picker';
|
|
3
|
+
import { RangePickerProps, PickerRef } from '@rc-component/picker';
|
|
4
4
|
import { ReactElement, JSXElementConstructor, ForwardRefExoticComponent, CSSProperties, RefAttributes } from 'react';
|
|
5
5
|
import { PickerProps, PickerLocale } from 'antd/es/date-picker/generatePicker';
|
|
6
|
-
import { PickerPropsWithMultiple, GenericTimePickerProps } from 'antd/es/date-picker/generatePicker/interface';
|
|
7
|
-
import { GenerateConfig } from 'rc-picker/lib/generate';
|
|
6
|
+
import { PickerPropsWithMultiple, DatePickerPickerClassNames, DatePickerStylesType, GenericTimePickerProps } from 'antd/es/date-picker/generatePicker/interface';
|
|
8
7
|
import { AnyObject } from 'antd/es/_util/type';
|
|
9
8
|
import { JSX } from 'react/jsx-runtime';
|
|
10
9
|
/// <reference types="react" />
|
|
@@ -16,63 +15,67 @@ export interface IRangePickerProps extends AntRangePickerProps {
|
|
|
16
15
|
}
|
|
17
16
|
export declare const DatePicker: {
|
|
18
17
|
(props: IDatePickerProps): JSX.Element;
|
|
19
|
-
generatePicker: <DateType extends AnyObject = AnyObject>(generateConfig: GenerateConfig<DateType>) => (<ValueType = DateType>(props: PickerPropsWithMultiple<DateType, PickerProps<DateType>, ValueType>) => ReactElement<any, string | JSXElementConstructor<any>>) & {
|
|
18
|
+
generatePicker: <DateType extends AnyObject = AnyObject>(generateConfig: GenerateConfig<DateType>) => (<ValueType = DateType, IsMultiple extends boolean = false>(props: PickerPropsWithMultiple<DateType, PickerProps<DateType>, ValueType, IsMultiple>) => ReactElement<any, string | JSXElementConstructor<any>>) & {
|
|
20
19
|
displayName?: string | undefined;
|
|
21
20
|
} & {
|
|
22
21
|
displayName?: string | undefined;
|
|
23
|
-
WeekPicker: (<ValueType_1 = DateType>(props: PickerPropsWithMultiple<DateType, Omit<PickerProps<DateType>, "picker">, ValueType_1>) => ReactElement<any, string | JSXElementConstructor<any>>) & {
|
|
22
|
+
WeekPicker: (<ValueType_1 = DateType, IsMultiple_1 extends boolean = false>(props: PickerPropsWithMultiple<DateType, Omit<PickerProps<DateType>, "picker">, ValueType_1, IsMultiple_1>) => ReactElement<any, string | JSXElementConstructor<any>>) & {
|
|
24
23
|
displayName?: string | undefined;
|
|
25
24
|
};
|
|
26
|
-
MonthPicker: (<ValueType_2 = DateType>(props: PickerPropsWithMultiple<DateType, Omit<PickerProps<DateType>, "picker">, ValueType_2>) => ReactElement<any, string | JSXElementConstructor<any>>) & {
|
|
25
|
+
MonthPicker: (<ValueType_2 = DateType, IsMultiple_2 extends boolean = false>(props: PickerPropsWithMultiple<DateType, Omit<PickerProps<DateType>, "picker">, ValueType_2, IsMultiple_2>) => ReactElement<any, string | JSXElementConstructor<any>>) & {
|
|
27
26
|
displayName?: string | undefined;
|
|
28
27
|
};
|
|
29
|
-
YearPicker: (<ValueType_3 = DateType>(props: PickerPropsWithMultiple<DateType, Omit<PickerProps<DateType>, "picker">, ValueType_3>) => ReactElement<any, string | JSXElementConstructor<any>>) & {
|
|
28
|
+
YearPicker: (<ValueType_3 = DateType, IsMultiple_3 extends boolean = false>(props: PickerPropsWithMultiple<DateType, Omit<PickerProps<DateType>, "picker">, ValueType_3, IsMultiple_3>) => ReactElement<any, string | JSXElementConstructor<any>>) & {
|
|
30
29
|
displayName?: string | undefined;
|
|
31
30
|
};
|
|
32
|
-
RangePicker: ForwardRefExoticComponent<Omit<RangePickerProps<DateType>, "locale" | "generateConfig" | "hideHeader"> & {
|
|
31
|
+
RangePicker: ForwardRefExoticComponent<Omit<RangePickerProps<DateType>, "classNames" | "styles" | "locale" | "generateConfig" | "hideHeader"> & {
|
|
33
32
|
locale?: PickerLocale | undefined;
|
|
34
33
|
size?: ButtonSize;
|
|
35
34
|
placement?: "bottomLeft" | "bottomRight" | "topLeft" | "topRight" | undefined;
|
|
36
35
|
bordered?: boolean | undefined;
|
|
37
|
-
status?: "" | "warning" | "error" | undefined;
|
|
36
|
+
status?: "" | "success" | "warning" | "error" | "validating" | undefined;
|
|
38
37
|
variant?: "filled" | "outlined" | "borderless" | "underlined" | undefined;
|
|
39
38
|
dropdownClassName?: string | undefined;
|
|
40
39
|
popupClassName?: string | undefined;
|
|
41
40
|
rootClassName?: string | undefined;
|
|
42
41
|
popupStyle?: CSSProperties | undefined;
|
|
42
|
+
classNames?: DatePickerPickerClassNames<RangePickerProps<DateType>> | undefined;
|
|
43
|
+
styles?: DatePickerStylesType<RangePickerProps<DateType>> | undefined;
|
|
43
44
|
} & RefAttributes<PickerRef>>;
|
|
44
|
-
TimePicker: (<ValueType_4 = DateType>(props: PickerPropsWithMultiple<DateType, Omit<GenericTimePickerProps<DateType>, "picker">, ValueType_4>) => ReactElement<any, string | JSXElementConstructor<any>>) & {
|
|
45
|
+
TimePicker: (<ValueType_4 = DateType, IsMultiple_4 extends boolean = false>(props: PickerPropsWithMultiple<DateType, Omit<GenericTimePickerProps<DateType>, "picker">, ValueType_4, IsMultiple_4>) => ReactElement<any, string | JSXElementConstructor<any>>) & {
|
|
45
46
|
displayName?: string | undefined;
|
|
46
47
|
};
|
|
47
|
-
QuarterPicker: (<ValueType_5 = DateType>(props: PickerPropsWithMultiple<DateType, Omit<PickerProps<DateType>, "picker">, ValueType_5>) => ReactElement<any, string | JSXElementConstructor<any>>) & {
|
|
48
|
+
QuarterPicker: (<ValueType_5 = DateType, IsMultiple_5 extends boolean = false>(props: PickerPropsWithMultiple<DateType, Omit<PickerProps<DateType>, "picker">, ValueType_5, IsMultiple_5>) => ReactElement<any, string | JSXElementConstructor<any>>) & {
|
|
48
49
|
displayName?: string | undefined;
|
|
49
50
|
};
|
|
50
51
|
};
|
|
51
|
-
QuarterPicker: (<ValueType_6 = Dayjs>(props: PickerPropsWithMultiple<Dayjs, Omit<PickerProps<Dayjs>, "picker">, ValueType_6>) => ReactElement<any, string | JSXElementConstructor<any>>) & {
|
|
52
|
+
QuarterPicker: (<ValueType_6 = Dayjs, IsMultiple_6 extends boolean = false>(props: PickerPropsWithMultiple<Dayjs, Omit<PickerProps<Dayjs>, "picker">, ValueType_6, IsMultiple_6>) => ReactElement<any, string | JSXElementConstructor<any>>) & {
|
|
52
53
|
displayName?: string | undefined;
|
|
53
54
|
};
|
|
54
|
-
MonthPicker: (<ValueType_7 = Dayjs>(props: PickerPropsWithMultiple<Dayjs, Omit<PickerProps<Dayjs>, "picker">, ValueType_7>) => ReactElement<any, string | JSXElementConstructor<any>>) & {
|
|
55
|
+
MonthPicker: (<ValueType_7 = Dayjs, IsMultiple_7 extends boolean = false>(props: PickerPropsWithMultiple<Dayjs, Omit<PickerProps<Dayjs>, "picker">, ValueType_7, IsMultiple_7>) => ReactElement<any, string | JSXElementConstructor<any>>) & {
|
|
55
56
|
displayName?: string | undefined;
|
|
56
57
|
};
|
|
57
|
-
RangePicker: ForwardRefExoticComponent<Omit<RangePickerProps<Dayjs>, "locale" | "generateConfig" | "hideHeader"> & {
|
|
58
|
+
RangePicker: ForwardRefExoticComponent<Omit<RangePickerProps<Dayjs>, "classNames" | "styles" | "locale" | "generateConfig" | "hideHeader"> & {
|
|
58
59
|
locale?: PickerLocale | undefined;
|
|
59
60
|
size?: ButtonSize;
|
|
60
61
|
placement?: "bottomLeft" | "bottomRight" | "topLeft" | "topRight" | undefined;
|
|
61
62
|
bordered?: boolean | undefined;
|
|
62
|
-
status?: "" | "warning" | "error" | undefined;
|
|
63
|
+
status?: "" | "success" | "warning" | "error" | "validating" | undefined;
|
|
63
64
|
variant?: "filled" | "outlined" | "borderless" | "underlined" | undefined;
|
|
64
65
|
dropdownClassName?: string | undefined;
|
|
65
66
|
popupClassName?: string | undefined;
|
|
66
67
|
rootClassName?: string | undefined;
|
|
67
68
|
popupStyle?: CSSProperties | undefined;
|
|
69
|
+
classNames?: DatePickerPickerClassNames<RangePickerProps<Dayjs>> | undefined;
|
|
70
|
+
styles?: DatePickerStylesType<RangePickerProps<Dayjs>> | undefined;
|
|
68
71
|
} & RefAttributes<PickerRef>>;
|
|
69
|
-
TimePicker: (<ValueType_8 = Dayjs>(props: PickerPropsWithMultiple<Dayjs, Omit<GenericTimePickerProps<Dayjs>, "picker">, ValueType_8>) => ReactElement<any, string | JSXElementConstructor<any>>) & {
|
|
72
|
+
TimePicker: (<ValueType_8 = Dayjs, IsMultiple_8 extends boolean = false>(props: PickerPropsWithMultiple<Dayjs, Omit<GenericTimePickerProps<Dayjs>, "picker">, ValueType_8, IsMultiple_8>) => ReactElement<any, string | JSXElementConstructor<any>>) & {
|
|
70
73
|
displayName?: string | undefined;
|
|
71
74
|
};
|
|
72
|
-
WeekPicker: (<ValueType_9 = Dayjs>(props: PickerPropsWithMultiple<Dayjs, Omit<PickerProps<Dayjs>, "picker">, ValueType_9>) => ReactElement<any, string | JSXElementConstructor<any>>) & {
|
|
75
|
+
WeekPicker: (<ValueType_9 = Dayjs, IsMultiple_9 extends boolean = false>(props: PickerPropsWithMultiple<Dayjs, Omit<PickerProps<Dayjs>, "picker">, ValueType_9, IsMultiple_9>) => ReactElement<any, string | JSXElementConstructor<any>>) & {
|
|
73
76
|
displayName?: string | undefined;
|
|
74
77
|
};
|
|
75
|
-
YearPicker: (<ValueType_10 = Dayjs>(props: PickerPropsWithMultiple<Dayjs, Omit<PickerProps<Dayjs>, "picker">, ValueType_10>) => ReactElement<any, string | JSXElementConstructor<any>>) & {
|
|
78
|
+
YearPicker: (<ValueType_10 = Dayjs, IsMultiple_10 extends boolean = false>(props: PickerPropsWithMultiple<Dayjs, Omit<PickerProps<Dayjs>, "picker">, ValueType_10, IsMultiple_10>) => ReactElement<any, string | JSXElementConstructor<any>>) & {
|
|
76
79
|
displayName?: string | undefined;
|
|
77
80
|
};
|
|
78
81
|
};
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { FormProviderProps } from 'antd/es/form/context';
|
|
2
2
|
import { FormListProps, ErrorListProps } from 'antd/es/form';
|
|
3
3
|
import { default as __DTS_2__ } from 'antd/es/form/hooks/useFormInstance';
|
|
4
|
-
import { default as __DTS_1__ } from 'rc-
|
|
4
|
+
import { default as __DTS_1__ } from '@rc-component/form/es/useWatch';
|
|
5
5
|
import { useForm } from 'antd/es/form/Form';
|
|
6
6
|
import { JSX } from 'react/jsx-runtime';
|
|
7
7
|
import { FormItemProps, type FormProps as AntFormProps } from 'antd';
|
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
import { OptionGroupFC } from 'rc-select/lib/OptGroup';
|
|
2
|
-
import { OptionFC } from 'rc-select/lib/Option';
|
|
1
|
+
import { OptionGroupFC } from '@rc-component/select/lib/OptGroup';
|
|
2
|
+
import { OptionFC } from '@rc-component/select/lib/Option';
|
|
3
3
|
import { JSX } from 'react/jsx-runtime';
|
|
4
4
|
import type { SelectProps as AntSelectProps } from 'antd';
|
|
5
5
|
import type { BaseOptionType as AntBaseOptionType, DefaultOptionType as AntDefaultOptionType } from 'antd/es/select';
|
|
@@ -3,11 +3,11 @@ import { SkeletonImageProps } from 'antd/es/skeleton/Image';
|
|
|
3
3
|
import { SkeletonNodeProps } from 'antd/es/skeleton/Node';
|
|
4
4
|
import { SkeletonButtonProps } from 'antd/es/skeleton/Button';
|
|
5
5
|
import { AvatarProps } from 'antd/es/skeleton/Avatar';
|
|
6
|
-
import { FC } from 'react';
|
|
7
6
|
import { JSX } from 'react/jsx-runtime';
|
|
8
|
-
|
|
7
|
+
import { FC, type ReactNode } from 'react';
|
|
9
8
|
import { type SkeletonProps as AntSkeletonProps } from 'antd';
|
|
10
9
|
export interface ISkeletonProps extends Omit<AntSkeletonProps, 'active'> {
|
|
10
|
+
children?: ReactNode;
|
|
11
11
|
}
|
|
12
12
|
export declare const Skeleton: {
|
|
13
13
|
(props: ISkeletonProps): JSX.Element;
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { BackTopProps } from 'antd/es/float-button/
|
|
1
|
+
import { BackTopProps } from 'antd/es/float-button/BackTop';
|
|
2
2
|
import { ForwardRefExoticComponent, RefAttributes, FC } from 'react';
|
|
3
3
|
import { JSX } from 'react/jsx-runtime';
|
|
4
4
|
/// <reference types="react" />
|
|
@@ -42,6 +42,7 @@ import GroupIcon from '../../assets/svg/mp_info_lt_group.svg?react';
|
|
|
42
42
|
import HeartIcon from '../../assets/svg/heart.svg?react';
|
|
43
43
|
import HelpIcon from '../../assets/svg/help.svg?react';
|
|
44
44
|
import HistoryIcon from '../../assets/svg/mp_info_lt_history.svg?react';
|
|
45
|
+
import HybridIcon from '../../assets/svg/mp_info_lt_hybrid.svg?react';
|
|
45
46
|
import IdentityIcon from '../../assets/svg/mp_pm_lt_identity.svg?react';
|
|
46
47
|
import JumpToIcon from '../../assets/svg/mp_act_lt_jump-to.svg?react';
|
|
47
48
|
import LightBulbIcon from '../../assets/svg/lightbulb.svg?react';
|
|
@@ -137,4 +138,4 @@ import StringIcon from '../../assets/svg/mp_data_dt_string.svg?react';
|
|
|
137
138
|
import TimestampIcon from '../../assets/svg/mp_data_dt_timestamp.svg?react';
|
|
138
139
|
import ToggleLogicBlocks from '../../assets/svg/mp_act_lt_toggle-logic-blocks.svg?react';
|
|
139
140
|
import MoveToTop from '../../assets/svg/mp_act_lt_move-to-top.svg?react';
|
|
140
|
-
export { AbSplit, AcceptIcon, Account, ActiveIcon, AgentCopilotIcon, AddIcon, AlicornIcon, ArrayIcon, AudienceGroupIcon, RateDownIcon, RateDownIconDt, RateStarIcon, RateStarIconDt, RateUpIcon, RateUpIconDt, RunIcon, AnalyticsIcon, AnalyticsIconDt, Annotation, C360Icon, C360IconDt, CalculatedAttributeIcon, CriteriaGroupIcon, CatalogIcon, ChartColumnIcon, ChartLineIcon, CheckIcon, CircleNodesIcon, CloudIcon, Cohort, ConnectionsIcon, ConversionIcon, Copy, Dashboard, DatabaseIcon, DataPlatformIcon, DataPlatformIconDt, DateIcon, Delete, DevicesIcon, DirectoryIcon, DragAndDropIcon, DropdownClose, DropdownOpen, DsrIcon, Edit, EmptyIcon, StateError, EnrichmentIcon, EventAttributeIcon, EventIcon, FilterIcon, FitToScreen, Flag, FolderClosedIcon, ForwardingIcon, FullScreen, Funnel, GearIcon, GenericIcon, GridIcon, GroupIcon, HeartIcon, HelpIcon, HelpVideoIcon, HistoryIcon, IdentityIcon, InfoIcon, JourneyAnalysis, JumpToIcon, LightBulbIcon, LinkIcon, LiveStreamIcon, LockIcon, MessageQuestionIcon, MoreActions, MpLogoIcon, NextIcon, NotificationIcon, NotificationSubscribedIcon, NotificationSubscribeIcon, ObservabilityIcon, OpenTabIcon, Organization, OtherIcon, OversightIcon, OversightIconDt, OverviewIcon, OverviewIconDt, PauseIcon, Placeholder, PlayIcon, PrecisionIcon, PredictionsIcon, PredictionsIconDt, PremiumIcon, PremiumIconDt, PreviousIcon, Privileges, RefreshFrequency, Reorder, RemoveIcon, ScheduledReport, SearchIcon, SegmentationAnalysis, SegmentationIconDt, ShieldKeyholeIcon, SignoutIcon, SplitIcon, SubmitFeedback, SystemAlertsIcon, TextWidget, TransformationsIcon, UnlockIcon, UploadIcon, UserAttributeIcon, UserIcon, UserProfilesIcon, UsersIcon, ViewOnlyIcon, WrenchIcon, ZoomIn, ZoomOut, BannerFreemium, PaywallIcon, StateEmpty, StateNoResults, Back, BooleanIcon, Boost, Clone, ListIcon, NumberIcon, OtherDataIcon, RefreshIcon, StringIcon, TimestampIcon, ToggleLogicBlocks, MoveToTop, };
|
|
141
|
+
export { AbSplit, AcceptIcon, Account, ActiveIcon, AgentCopilotIcon, AddIcon, AlicornIcon, ArrayIcon, AudienceGroupIcon, RateDownIcon, RateDownIconDt, RateStarIcon, RateStarIconDt, RateUpIcon, RateUpIconDt, RunIcon, AnalyticsIcon, AnalyticsIconDt, Annotation, C360Icon, C360IconDt, CalculatedAttributeIcon, CriteriaGroupIcon, CatalogIcon, ChartColumnIcon, ChartLineIcon, CheckIcon, CircleNodesIcon, CloudIcon, Cohort, ConnectionsIcon, ConversionIcon, Copy, Dashboard, DatabaseIcon, DataPlatformIcon, DataPlatformIconDt, DateIcon, Delete, DevicesIcon, DirectoryIcon, DragAndDropIcon, DropdownClose, DropdownOpen, DsrIcon, Edit, EmptyIcon, StateError, EnrichmentIcon, EventAttributeIcon, EventIcon, FilterIcon, FitToScreen, Flag, FolderClosedIcon, ForwardingIcon, FullScreen, Funnel, GearIcon, GenericIcon, GridIcon, GroupIcon, HeartIcon, HelpIcon, HelpVideoIcon, HistoryIcon, HybridIcon, IdentityIcon, InfoIcon, JourneyAnalysis, JumpToIcon, LightBulbIcon, LinkIcon, LiveStreamIcon, LockIcon, MessageQuestionIcon, MoreActions, MpLogoIcon, NextIcon, NotificationIcon, NotificationSubscribedIcon, NotificationSubscribeIcon, ObservabilityIcon, OpenTabIcon, Organization, OtherIcon, OversightIcon, OversightIconDt, OverviewIcon, OverviewIconDt, PauseIcon, Placeholder, PlayIcon, PrecisionIcon, PredictionsIcon, PredictionsIconDt, PremiumIcon, PremiumIconDt, PreviousIcon, Privileges, RefreshFrequency, Reorder, RemoveIcon, ScheduledReport, SearchIcon, SegmentationAnalysis, SegmentationIconDt, ShieldKeyholeIcon, SignoutIcon, SplitIcon, SubmitFeedback, SystemAlertsIcon, TextWidget, TransformationsIcon, UnlockIcon, UploadIcon, UserAttributeIcon, UserIcon, UserProfilesIcon, UsersIcon, ViewOnlyIcon, WrenchIcon, ZoomIn, ZoomOut, BannerFreemium, PaywallIcon, StateEmpty, StateNoResults, Back, BooleanIcon, Boost, Clone, ListIcon, NumberIcon, OtherDataIcon, RefreshIcon, StringIcon, TimestampIcon, ToggleLogicBlocks, MoveToTop, };
|
|
@@ -92,7 +92,7 @@ export { useNewExperienceReminder, type INewExperienceReminderOptions, type NewE
|
|
|
92
92
|
export { ChartConfig, ChartAxisStyle } from '../constants/ChartConfig';
|
|
93
93
|
export { ChartColors } from '../constants/ChartColors';
|
|
94
94
|
export { MoreActionsButton, type IMoreActionsButtonProps, type IMoreActionsButtonItem, } from './UXPatterns/MoreActionsButton/MoreActionsButton';
|
|
95
|
-
export { UnauthorizedTooltip, type IUnauthorizedTooltipProps, } from './UXPatterns/
|
|
95
|
+
export { UnauthorizedTooltip, type IUnauthorizedTooltipProps, } from './UXPatterns/PermissionsRestrictions/UnauthorizedTooltip';
|
|
96
96
|
export { Utils } from '../shared/Utils';
|
|
97
97
|
export { RoutesAuthorizationsService } from '../shared/services/RoutesAuthorizationsService';
|
|
98
98
|
export { InitializationService } from '../shared/services/InitializationService';
|
|
@@ -1,11 +1,11 @@
|
|
|
1
1
|
import { MenuDividerProps } from 'antd/es/menu';
|
|
2
|
-
import { MenuItemGroupProps } from 'rc-menu';
|
|
2
|
+
import { MenuItemGroupProps } from '@rc-component/menu';
|
|
3
3
|
import { FC, FunctionComponent, ReactNode, ForwardRefExoticComponent, RefAttributes } from 'react';
|
|
4
4
|
import { JSX } from 'react/jsx-runtime';
|
|
5
5
|
/// <reference types="react" />
|
|
6
6
|
import { SubMenuProps, MenuItemProps, type MenuProps } from 'antd';
|
|
7
7
|
import { type MenuProps as AntMenuProps } from 'antd';
|
|
8
|
-
import { type MenuInfo as RCMenuInfo } from 'rc-menu/lib/interface';
|
|
8
|
+
import { type MenuInfo as RCMenuInfo } from '@rc-component/menu/lib/interface';
|
|
9
9
|
type AntDMenuItemType = Required<MenuProps>['items'][number];
|
|
10
10
|
type AntDMenuItemGroupType = Required<MenuProps>['items'][number];
|
|
11
11
|
type AntDMenuDividerType = Required<MenuProps>['items'][number];
|
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
import { TreeNodeProps } from 'rc-tree';
|
|
2
|
-
import { default as __DTS_1__ } from 'rc-tree/lib/Tree';
|
|
1
|
+
import { TreeNodeProps } from '@rc-component/tree';
|
|
2
|
+
import { default as __DTS_1__ } from '@rc-component/tree/lib/Tree';
|
|
3
3
|
import { ReactNode, RefAttributes, ReactElement, JSXElementConstructor, FC } from 'react';
|
|
4
4
|
import { JSX } from 'react/jsx-runtime';
|
|
5
5
|
/// <reference types="react" />
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
import { default as __DTS_1__ } from 'antd/es/config-provider/hooks/useConfig';
|
|
2
|
+
import { Context } from 'react';
|
|
3
|
+
import { JSX } from 'react/jsx-runtime';
|
|
4
|
+
/// <reference types="react" />
|
|
5
|
+
import { ConfigConsumerProps, GlobalConfigProps, type ConfigProviderProps as AntConfigProviderProps } from 'antd/es/config-provider';
|
|
6
|
+
export interface IConfigProviderProps extends AntConfigProviderProps {
|
|
7
|
+
}
|
|
8
|
+
export declare const ConfigProvider: {
|
|
9
|
+
(props: IConfigProviderProps): JSX.Element;
|
|
10
|
+
ConfigContext: Context<ConfigConsumerProps>;
|
|
11
|
+
useConfig: typeof __DTS_1__;
|
|
12
|
+
config: (props: GlobalConfigProps) => void;
|
|
13
|
+
};
|
|
@@ -2,8 +2,8 @@ export declare const Blue = "#1677FF";
|
|
|
2
2
|
export declare const Purple = "#722ED1";
|
|
3
3
|
export declare const Cyan = "#13C2C2";
|
|
4
4
|
export declare const Green = "#52C41A";
|
|
5
|
-
export declare const Magenta = "#
|
|
6
|
-
export declare const Pink = "#
|
|
5
|
+
export declare const Magenta = "#C20075";
|
|
6
|
+
export declare const Pink = "#C20075";
|
|
7
7
|
export declare const Red = "#F5222D";
|
|
8
8
|
export declare const Orange = "#FA8C16";
|
|
9
9
|
export declare const Yellow = "#FADB14";
|
|
@@ -11,12 +11,12 @@ export declare const Volcano = "#FA541C";
|
|
|
11
11
|
export declare const Geekblue = "#2F54EB";
|
|
12
12
|
export declare const Gold = "#FAAD14";
|
|
13
13
|
export declare const Lime = "#A0D911";
|
|
14
|
-
export declare const ColorPrimary = "#
|
|
14
|
+
export declare const ColorPrimary = "#C20075";
|
|
15
15
|
export declare const ColorSuccess = "#52c41a";
|
|
16
16
|
export declare const ColorWarning = "#faad14";
|
|
17
17
|
export declare const ColorError = "#ff4d4f";
|
|
18
|
-
export declare const ColorInfo = "#
|
|
19
|
-
export declare const ColorLink = "#
|
|
18
|
+
export declare const ColorInfo = "#C20075";
|
|
19
|
+
export declare const ColorLink = "#C20075";
|
|
20
20
|
export declare const ColorTextBase = "#000";
|
|
21
21
|
export declare const ColorBgBase = "#fff";
|
|
22
22
|
export declare const FontFamily = "'GT America', -system-ui, sans-serif";
|
|
@@ -48,56 +48,56 @@ export declare const ColorText = "rgba(0, 0, 0, 0.95)";
|
|
|
48
48
|
export declare const ColorTextSecondary = "rgba(0, 0, 0, 0.75)";
|
|
49
49
|
export declare const ColorTextTertiary = "rgba(0, 0, 0, 0.55)";
|
|
50
50
|
export declare const ColorTextQuaternary = "rgba(0, 0, 0, 0.4)";
|
|
51
|
-
export declare const ColorBorder = "#
|
|
52
|
-
export declare const ColorBorderSecondary = "#
|
|
53
|
-
export declare const ColorFill = "rgba(
|
|
54
|
-
export declare const ColorFillSecondary = "rgba(
|
|
55
|
-
export declare const ColorFillTertiary = "rgba(
|
|
56
|
-
export declare const ColorFillQuaternary = "rgba(
|
|
57
|
-
export declare const ColorInfoBg = "#
|
|
58
|
-
export declare const ColorInfoBgHover = "#
|
|
59
|
-
export declare const ColorInfoBorder = "#
|
|
60
|
-
export declare const ColorInfoBorderHover = "#
|
|
61
|
-
export declare const ColorInfoHover = "#
|
|
62
|
-
export declare const ColorInfoActive = "#
|
|
63
|
-
export declare const ColorInfoTextHover = "#
|
|
64
|
-
export declare const ColorInfoText = "#
|
|
65
|
-
export declare const ColorInfoTextActive = "#
|
|
66
|
-
export declare const ColorPrimaryBg = "#
|
|
67
|
-
export declare const ColorPrimaryBgHover = "#
|
|
68
|
-
export declare const ColorPrimaryBorder = "#
|
|
69
|
-
export declare const ColorPrimaryBorderHover = "#
|
|
70
|
-
export declare const ColorPrimaryHover = "#
|
|
71
|
-
export declare const ColorPrimaryActive = "#
|
|
72
|
-
export declare const ColorPrimaryTextHover = "#
|
|
73
|
-
export declare const ColorPrimaryText = "#
|
|
74
|
-
export declare const ColorPrimaryTextActive = "#
|
|
75
|
-
export declare const ControlOutline = "rgba(
|
|
51
|
+
export declare const ColorBorder = "#E0E0E4";
|
|
52
|
+
export declare const ColorBorderSecondary = "#F8F8FA";
|
|
53
|
+
export declare const ColorFill = "rgba(194, 0, 117, 0.08)";
|
|
54
|
+
export declare const ColorFillSecondary = "rgba(194, 0, 117, 0.04)";
|
|
55
|
+
export declare const ColorFillTertiary = "rgba(194, 0, 117, 0.02)";
|
|
56
|
+
export declare const ColorFillQuaternary = "rgba(194, 0, 117, 0.01)";
|
|
57
|
+
export declare const ColorInfoBg = "#FDF5F9";
|
|
58
|
+
export declare const ColorInfoBgHover = "#F9E5F1";
|
|
59
|
+
export declare const ColorInfoBorder = "#F5B8DC";
|
|
60
|
+
export declare const ColorInfoBorderHover = "#ED87C3";
|
|
61
|
+
export declare const ColorInfoHover = "#E5368A";
|
|
62
|
+
export declare const ColorInfoActive = "#480029";
|
|
63
|
+
export declare const ColorInfoTextHover = "#E5368A";
|
|
64
|
+
export declare const ColorInfoText = "#C20075";
|
|
65
|
+
export declare const ColorInfoTextActive = "#480029";
|
|
66
|
+
export declare const ColorPrimaryBg = "#FDF5F9";
|
|
67
|
+
export declare const ColorPrimaryBgHover = "#F9E5F1";
|
|
68
|
+
export declare const ColorPrimaryBorder = "#F5B8DC";
|
|
69
|
+
export declare const ColorPrimaryBorderHover = "#ED87C3";
|
|
70
|
+
export declare const ColorPrimaryHover = "#E5368A";
|
|
71
|
+
export declare const ColorPrimaryActive = "#480029";
|
|
72
|
+
export declare const ColorPrimaryTextHover = "#E5368A";
|
|
73
|
+
export declare const ColorPrimaryText = "#C20075";
|
|
74
|
+
export declare const ColorPrimaryTextActive = "#480029";
|
|
75
|
+
export declare const ControlOutline = "rgba(194, 0, 117, 0.12)";
|
|
76
76
|
export declare const FontWeightStrong = 500;
|
|
77
|
-
export declare const ColorFillAlterSolid = "#
|
|
78
|
-
export declare const ColorFilledHandleBg = "#
|
|
79
|
-
export declare const MpBrandPrimary1 = "#
|
|
80
|
-
export declare const MpBrandPrimary2 = "#
|
|
81
|
-
export declare const MpBrandPrimary3 = "#
|
|
82
|
-
export declare const MpBrandPrimary4 = "#
|
|
83
|
-
export declare const MpBrandPrimary5 = "#
|
|
84
|
-
export declare const MpBrandPrimary6 = "#
|
|
85
|
-
export declare const MpBrandPrimary7 = "#
|
|
86
|
-
export declare const MpBrandPrimary8 = "#
|
|
87
|
-
export declare const MpBrandPrimary9 = "#
|
|
88
|
-
export declare const MpBrandPrimary10 = "#
|
|
89
|
-
export declare const MpBrandSecondary1 = "#
|
|
90
|
-
export declare const MpBrandSecondary2 = "#
|
|
91
|
-
export declare const MpBrandSecondary3 = "#
|
|
92
|
-
export declare const MpBrandSecondary4 = "#
|
|
93
|
-
export declare const MpBrandSecondary5 = "#
|
|
94
|
-
export declare const MpBrandSecondary6 = "#
|
|
95
|
-
export declare const MpBrandSecondary7 = "#
|
|
96
|
-
export declare const MpBrandSecondary8 = "#
|
|
97
|
-
export declare const MpBrandSecondary9 = "#
|
|
98
|
-
export declare const MpBrandSecondary10 = "#
|
|
99
|
-
export declare const MpColorIconStrong = "#
|
|
100
|
-
export declare const MpColorIconBrand = "#
|
|
77
|
+
export declare const ColorFillAlterSolid = "#FDF5F9";
|
|
78
|
+
export declare const ColorFilledHandleBg = "#F9E5F1";
|
|
79
|
+
export declare const MpBrandPrimary1 = "#FFF5FB";
|
|
80
|
+
export declare const MpBrandPrimary2 = "#FFEAF6";
|
|
81
|
+
export declare const MpBrandPrimary3 = "#FFCFE8";
|
|
82
|
+
export declare const MpBrandPrimary4 = "#F5B8DC";
|
|
83
|
+
export declare const MpBrandPrimary5 = "#ED87C3";
|
|
84
|
+
export declare const MpBrandPrimary6 = "#E5368A";
|
|
85
|
+
export declare const MpBrandPrimary7 = "#C20075";
|
|
86
|
+
export declare const MpBrandPrimary8 = "#9E005E";
|
|
87
|
+
export declare const MpBrandPrimary9 = "#6D0042";
|
|
88
|
+
export declare const MpBrandPrimary10 = "#480029";
|
|
89
|
+
export declare const MpBrandSecondary1 = "#FFFFFF";
|
|
90
|
+
export declare const MpBrandSecondary2 = "#F8F8FA";
|
|
91
|
+
export declare const MpBrandSecondary3 = "#E0E0E4";
|
|
92
|
+
export declare const MpBrandSecondary4 = "#C7C7CC";
|
|
93
|
+
export declare const MpBrandSecondary5 = "#AEAEB2";
|
|
94
|
+
export declare const MpBrandSecondary6 = "#86868B";
|
|
95
|
+
export declare const MpBrandSecondary7 = "#6E6E73";
|
|
96
|
+
export declare const MpBrandSecondary8 = "#48484A";
|
|
97
|
+
export declare const MpBrandSecondary9 = "#2C2C2E";
|
|
98
|
+
export declare const MpBrandSecondary10 = "#1C1C1E";
|
|
99
|
+
export declare const MpColorIconStrong = "#1C1C1E";
|
|
100
|
+
export declare const MpColorIconBrand = "#480029";
|
|
101
101
|
export declare const MpColorBorderDisabled = "#dcdcd8";
|
|
102
102
|
export declare const MpIconSizeXs = "12px";
|
|
103
103
|
export declare const MpIconSizeSm = "16px";
|
|
@@ -113,23 +113,23 @@ export declare const MpQueryItemGap = "4px";
|
|
|
113
113
|
export declare const MpQueryItemBorderWidth = "0 0 1px 0";
|
|
114
114
|
export declare const MpQueryItemBorderWidthActive = "0 0 2px 0";
|
|
115
115
|
export declare const MpQueryItemBorderRadius = "2px";
|
|
116
|
-
export declare const MpQueryItemBorderColor = "#
|
|
117
|
-
export declare const MpQueryItemBorderColorFocus = "#
|
|
118
|
-
export declare const MpQueryItemBorderColorHover = "#
|
|
119
|
-
export declare const MpQueryItemBorderColorActive = "#
|
|
116
|
+
export declare const MpQueryItemBorderColor = "#F5B8DC";
|
|
117
|
+
export declare const MpQueryItemBorderColorFocus = "#C20075";
|
|
118
|
+
export declare const MpQueryItemBorderColorHover = "#C20075";
|
|
119
|
+
export declare const MpQueryItemBorderColorActive = "#C20075";
|
|
120
120
|
export declare const MpQueryItemBorderColorDisabled = "#dcdcd8";
|
|
121
121
|
export declare const MpQueryItemBorderColorError = "#ff4d4f";
|
|
122
122
|
export declare const MpQueryItemBgColor = "#ffffff";
|
|
123
|
-
export declare const MpQueryItemBgColorHover = "#
|
|
124
|
-
export declare const MpQueryItemBgColorActive = "#
|
|
125
|
-
export declare const MpQueryItemBgColorDisabled = "rgba(
|
|
123
|
+
export declare const MpQueryItemBgColorHover = "#FDF5F9";
|
|
124
|
+
export declare const MpQueryItemBgColorActive = "#F9E5F1";
|
|
125
|
+
export declare const MpQueryItemBgColorDisabled = "rgba(28, 28, 30, 0.04)";
|
|
126
126
|
export declare const MpQueryItemColorDisabled = "rgba(0, 0, 0, 0.4)";
|
|
127
127
|
export declare const MpQueryItemShadow = "none";
|
|
128
|
-
export declare const MpQueryItemShadowFocus = "0 0 0 2px rgba(
|
|
129
|
-
export declare const MpQueryItemShadowActive = "0 0 0 2px rgba(
|
|
128
|
+
export declare const MpQueryItemShadowFocus = "0 0 0 2px rgba(194, 0, 117, 0.12)";
|
|
129
|
+
export declare const MpQueryItemShadowActive = "0 0 0 2px rgba(194, 0, 117, 0.12)";
|
|
130
130
|
export declare const MpQueryItemValueSelectorFontWeight = "500";
|
|
131
|
-
export declare const MpQueryItemValueSelectorColor = "#
|
|
132
|
-
export declare const MpQueryItemActionPrimaryColor = "#
|
|
131
|
+
export declare const MpQueryItemValueSelectorColor = "#480029";
|
|
132
|
+
export declare const MpQueryItemActionPrimaryColor = "#C20075";
|
|
133
133
|
export declare const MpQueryItemActionSecondaryColor = "rgba(0, 0, 0, 0.55)";
|
|
134
134
|
export declare const MpQueryItemActionFontWeight = "400";
|
|
135
135
|
export declare const Blue1 = "#e6f4ff";
|
|
@@ -11,4 +11,4 @@ export type IconOptions = RequireAtLeastOne<{
|
|
|
11
11
|
default: IconVariant;
|
|
12
12
|
deprecated?: string | boolean;
|
|
13
13
|
}, IconVariant>;
|
|
14
|
-
export type IconNames = 'abSplit' | 'accept' | 'account' | 'active' | 'agentCopilot' | 'add' | 'alicorn' | 'audienceGroup' | 'analytics' | 'annotation' | 'array' | 'api' | 'audiences' | 'C360' | 'calculatedAttribute' | 'catalog' | 'chartColumn' | 'chartLine' | 'check' | 'circleNodes' | 'close' | 'cloud' | 'cohort' | 'connections' | 'conversion' | 'criteriaGroup' | 'copy' | 'dashboard' | 'database' | 'dataPlatform' | 'date' | 'delete' | 'devices' | 'directory' | 'dragAndDrop' | 'dropdownClose' | 'dropdownOpen' | 'dsr' | 'edit' | 'empty' | 'enrichment' | 'event' | 'eventAttribute' | 'favorite' | 'filter' | 'fitToScreen' | 'flag' | 'folderClosed' | 'forwarding' | 'fullScreen' | 'funnel' | 'gear' | 'generic' | 'grid' | 'group' | 'heart' | 'help' | 'helpVideo' | 'history' | 'identity' | 'info' | 'insights' | 'journeyAnalysis' | 'journeys' | 'jumpTo' | 'lightBulb' | 'link' | 'list' | 'liveStream' | 'lock' | 'logout' | 'messageQuestion' | 'moreActions' | 'mpLogo' | 'myHub' | 'next' | 'notification' | 'number' | 'notificationSubscribed' | 'notificationSubscribe' | 'observability' | 'openTab' | 'organization' | 'other' | 'otherData' | 'oversight' | 'overview' | 'paywall' | 'pause' | 'pipelines' | 'placeholder' | 'play' | 'precision' | 'predictions' | 'premium' | 'premiumDt' | 'previous' | 'privacy' | 'privileges' | 'refreshFrequency' | 'rateDown' | 'rateStar' | 'rateUp' | 'run' | 'remove' | 'savedProjects' | 'scheduledReport' | 'search' | 'segmentation' | 'segmentationAnalysis' | 'selected' | 'settings' | 'setup' | 'shieldKeyhole' | 'signout' | 'siteMap' | 'sparkles' | 'split' | 'string' | 'support' | 'systemAlerts' | 'textWidget' | 'timestamp' | 'transformation' | 'trends' | 'unlock' | 'upload' | 'user' | 'userAttribute' | 'userProfiles' | 'users' | 'viewOnly' | 'wrench' | 'zoomIn' | 'zoomOut' | 'bannerFreemium' | 'boolean' | 'stateEmpty' | 'stateError' | 'stateNoResults' | 'back' | 'submitFeedback' | 'boost' | 'clone' | 'reorder' | 'refresh' | 'toggleLogicBlocks' | 'moveToTop';
|
|
14
|
+
export type IconNames = 'abSplit' | 'accept' | 'account' | 'active' | 'agentCopilot' | 'add' | 'alicorn' | 'audienceGroup' | 'analytics' | 'annotation' | 'array' | 'api' | 'audiences' | 'C360' | 'calculatedAttribute' | 'catalog' | 'chartColumn' | 'chartLine' | 'check' | 'circleNodes' | 'close' | 'cloud' | 'cohort' | 'connections' | 'conversion' | 'criteriaGroup' | 'copy' | 'dashboard' | 'database' | 'dataPlatform' | 'date' | 'delete' | 'devices' | 'directory' | 'dragAndDrop' | 'dropdownClose' | 'dropdownOpen' | 'dsr' | 'edit' | 'empty' | 'enrichment' | 'event' | 'eventAttribute' | 'favorite' | 'filter' | 'fitToScreen' | 'flag' | 'folderClosed' | 'forwarding' | 'fullScreen' | 'funnel' | 'gear' | 'generic' | 'grid' | 'group' | 'heart' | 'help' | 'helpVideo' | 'history' | 'hybrid' | 'identity' | 'info' | 'insights' | 'journeyAnalysis' | 'journeys' | 'jumpTo' | 'lightBulb' | 'link' | 'list' | 'liveStream' | 'lock' | 'logout' | 'messageQuestion' | 'moreActions' | 'mpLogo' | 'myHub' | 'next' | 'notification' | 'number' | 'notificationSubscribed' | 'notificationSubscribe' | 'observability' | 'openTab' | 'organization' | 'other' | 'otherData' | 'oversight' | 'overview' | 'paywall' | 'pause' | 'pipelines' | 'placeholder' | 'play' | 'precision' | 'predictions' | 'premium' | 'premiumDt' | 'previous' | 'privacy' | 'privileges' | 'refreshFrequency' | 'rateDown' | 'rateStar' | 'rateUp' | 'run' | 'remove' | 'savedProjects' | 'scheduledReport' | 'search' | 'segmentation' | 'segmentationAnalysis' | 'selected' | 'settings' | 'setup' | 'shieldKeyhole' | 'signout' | 'siteMap' | 'sparkles' | 'split' | 'string' | 'support' | 'systemAlerts' | 'textWidget' | 'timestamp' | 'transformation' | 'trends' | 'unlock' | 'upload' | 'user' | 'userAttribute' | 'userProfiles' | 'users' | 'viewOnly' | 'wrench' | 'zoomIn' | 'zoomOut' | 'bannerFreemium' | 'boolean' | 'stateEmpty' | 'stateError' | 'stateNoResults' | 'back' | 'submitFeedback' | 'boost' | 'clone' | 'reorder' | 'refresh' | 'toggleLogicBlocks' | 'moveToTop';
|