@mparticle/aquarium 1.8.2 → 1.8.3-beta.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 +929 -928
- package/dist/aquarium.umd.cjs +38 -38
- package/dist/index.d.ts +3 -0
- package/dist/style.ts +0 -5
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -2,6 +2,7 @@ import AddIcon from '../../../../../../../../src/assets/svg/add.svg?react';
|
|
|
2
2
|
import { AffixProps } from 'antd';
|
|
3
3
|
import { AlertProps } from 'antd';
|
|
4
4
|
import AlicornIcon from '../../../../../../../../src/assets/svg/alicorn.svg?react';
|
|
5
|
+
import AnalyticsIcon from '../../../../../../../../src/assets/svg/analytics.svg?react';
|
|
5
6
|
import { AnchorProps } from 'antd';
|
|
6
7
|
import { AppProps } from 'antd';
|
|
7
8
|
import { AutoCompleteProps } from 'antd';
|
|
@@ -173,6 +174,8 @@ export declare const Alert: {
|
|
|
173
174
|
|
|
174
175
|
export { AlicornIcon }
|
|
175
176
|
|
|
177
|
+
export { AnalyticsIcon }
|
|
178
|
+
|
|
176
179
|
export declare const Anchor: (props: IAnchorProps) => JSX_2.Element;
|
|
177
180
|
|
|
178
181
|
declare type AntDatePickerProps = PickerDateProps<Dayjs>;
|
package/dist/style.ts
CHANGED