@mparticle/aquarium 1.13.0-ups-utils.1 → 1.13.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 +706 -1515
- package/dist/aquarium.umd.cjs +1 -1
- package/dist/index.d.ts +1 -33
- package/package.json +1 -7
package/dist/index.d.ts
CHANGED
|
@@ -31,8 +31,6 @@ import { Col } from 'antd';
|
|
|
31
31
|
import { CollapsePanelProps } from 'antd';
|
|
32
32
|
import { CollapseProps } from 'antd';
|
|
33
33
|
import { ColorPickerProps } from 'antd';
|
|
34
|
-
import { CompositeUserPreferences } from '../services/user-preferences/models/user-preferences/composite-user-preferences';
|
|
35
|
-
import { CompositeUserPreferencesService } from '../services/user-preferences/composite-user-preferences-service';
|
|
36
34
|
import { ConfigOptions } from 'antd/es/message/interface';
|
|
37
35
|
import { ConfigProvider } from './other/ConfigProvider/ConfigProvider';
|
|
38
36
|
import { CountdownProps } from 'antd';
|
|
@@ -201,15 +199,6 @@ import { UploadProps } from 'antd';
|
|
|
201
199
|
import { UploadRef } from 'antd/es/upload/Upload';
|
|
202
200
|
import { useAppProps } from 'antd/es/app/context';
|
|
203
201
|
import { useForm } from 'antd/es/form/Form';
|
|
204
|
-
import { USER_PREFERENCE_SCOPE_SEPARATOR } from '../services/user-preferences/models/storage-models';
|
|
205
|
-
import { UserPreference } from '../services/user-preferences/models/storage-models';
|
|
206
|
-
import { UserPreferenceDefinition } from '../services/user-preferences/models/definitions';
|
|
207
|
-
import { UserPreferenceDefinitions } from '../services/user-preferences/models/definitions';
|
|
208
|
-
import { UserPreferenceGlobalScope } from '../services/user-preferences/models/storage-models';
|
|
209
|
-
import { UserPreferences } from '../services/user-preferences/models/storage-models';
|
|
210
|
-
import { UserPreferenceScope } from '../services/user-preferences/models/storage-models';
|
|
211
|
-
import { UserPreferenceScopeType } from '../services/user-preferences/models/definitions';
|
|
212
|
-
import { UserPreferencesService } from '../services/user-preferences/user-preferences';
|
|
213
202
|
import { WatermarkProps } from 'antd';
|
|
214
203
|
|
|
215
204
|
export declare const Affix: (props: IAffixProps) => JSX_2.Element;
|
|
@@ -291,10 +280,6 @@ export declare const Collapse: {
|
|
|
291
280
|
|
|
292
281
|
export declare const ColorPicker: (props: IColorPickerProps) => JSX_2.Element;
|
|
293
282
|
|
|
294
|
-
export { CompositeUserPreferences }
|
|
295
|
-
|
|
296
|
-
export { CompositeUserPreferencesService }
|
|
297
|
-
|
|
298
283
|
declare type CompoundedComponent = ForwardRefExoticComponent<IInputProps & RefAttributes<InputRef>> & {
|
|
299
284
|
Group: typeof Input_2.Group;
|
|
300
285
|
Search: typeof Input_2.Search;
|
|
@@ -660,6 +645,7 @@ export declare interface ITabsProps extends TabsProps {
|
|
|
660
645
|
}
|
|
661
646
|
|
|
662
647
|
export declare interface ITagProps extends TagProps {
|
|
648
|
+
children: React.ReactNode;
|
|
663
649
|
}
|
|
664
650
|
|
|
665
651
|
declare interface ITextProps extends TextProps {
|
|
@@ -930,24 +916,6 @@ export declare const Upload: {
|
|
|
930
916
|
LIST_IGNORE: string;
|
|
931
917
|
};
|
|
932
918
|
|
|
933
|
-
export { USER_PREFERENCE_SCOPE_SEPARATOR }
|
|
934
|
-
|
|
935
|
-
export { UserPreference }
|
|
936
|
-
|
|
937
|
-
export { UserPreferenceDefinition }
|
|
938
|
-
|
|
939
|
-
export { UserPreferenceDefinitions }
|
|
940
|
-
|
|
941
|
-
export { UserPreferenceGlobalScope }
|
|
942
|
-
|
|
943
|
-
export { UserPreferences }
|
|
944
|
-
|
|
945
|
-
export { UserPreferenceScope }
|
|
946
|
-
|
|
947
|
-
export { UserPreferenceScopeType }
|
|
948
|
-
|
|
949
|
-
export { UserPreferencesService }
|
|
950
|
-
|
|
951
919
|
export declare const Watermark: (props: IWatermarkProps) => JSX_2.Element;
|
|
952
920
|
|
|
953
921
|
export { }
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@mparticle/aquarium",
|
|
3
|
-
"version": "1.13.0
|
|
3
|
+
"version": "1.13.0",
|
|
4
4
|
"description": "mParticle Component Library",
|
|
5
5
|
"license": "Apache-2.0",
|
|
6
6
|
"keywords": [
|
|
@@ -31,7 +31,6 @@
|
|
|
31
31
|
"devDependencies": {
|
|
32
32
|
"@commitlint/cli": "19.2.1",
|
|
33
33
|
"@commitlint/config-conventional": "19.1.0",
|
|
34
|
-
"@faker-js/faker": "8.4.1",
|
|
35
34
|
"@semantic-release/changelog": "6.0.3",
|
|
36
35
|
"@semantic-release/git": "10.0.1",
|
|
37
36
|
"@storybook/addon-essentials": "8.0.0",
|
|
@@ -55,10 +54,8 @@
|
|
|
55
54
|
"eslint-plugin-promise": "6.1.1",
|
|
56
55
|
"eslint-plugin-react": "7.33.2",
|
|
57
56
|
"eslint-plugin-react-hooks": "4.6.0",
|
|
58
|
-
"factory.ts": "1.4.1",
|
|
59
57
|
"http-server": "14.1.1",
|
|
60
58
|
"husky": "8.0.3",
|
|
61
|
-
"jsdom": "24.0.0",
|
|
62
59
|
"prettier": "3.1.1",
|
|
63
60
|
"storybook": "8.0.0",
|
|
64
61
|
"stylelint": "16.2.0",
|
|
@@ -103,8 +100,5 @@
|
|
|
103
100
|
"commitizen": {
|
|
104
101
|
"path": "./node_modules/cz-conventional-changelog"
|
|
105
102
|
}
|
|
106
|
-
},
|
|
107
|
-
"dependencies": {
|
|
108
|
-
"lodash.clonedeep": "4.5.0"
|
|
109
103
|
}
|
|
110
104
|
}
|