@mparticle/aquarium 1.37.2 → 1.38.0-chore-update-upload-artifact.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.
|
@@ -83,3 +83,5 @@ export { CompositeUserPreferencesService } from '../services/user-preferences/co
|
|
|
83
83
|
export { UserPreferenceScopeType, type UserPreferenceDefinition, type UserPreferenceDefinitions, type UserPreferencesPerScope, } from '../services/user-preferences/models/definitions';
|
|
84
84
|
export { USER_PREFERENCE_SCOPE_SEPARATOR, UserPreferenceGlobalScope, type UserPreferenceScope, } from '../services/user-preferences/models/storage-models';
|
|
85
85
|
export { useNewExperienceReminder, type INewExperienceReminderOptions, type NewExperienceReminderHook, } from '../hooks/NewExperienceReminder/useNewExperienceReminder';
|
|
86
|
+
export { ChartConfig, ChartAxisStyle } from '../constants/ChartConfig';
|
|
87
|
+
export { ChartColors } from '../constants/ChartColors';
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export declare const ChartColors: string[];
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
import { type Options } from 'highcharts';
|
|
2
|
+
export declare const ChartAxisStyle: {
|
|
3
|
+
readonly 'font-family': "'GT America', Helvetica, Arial, sans-serif";
|
|
4
|
+
readonly 'font-size': ".9em";
|
|
5
|
+
readonly 'font-weight': "initial";
|
|
6
|
+
readonly color: "rgba(56, 60, 67, 0.7)";
|
|
7
|
+
};
|
|
8
|
+
export declare const ChartConfig: Options;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@mparticle/aquarium",
|
|
3
|
-
"version": "1.
|
|
3
|
+
"version": "1.38.0-chore-update-upload-artifact.1",
|
|
4
4
|
"description": "mParticle Component Library",
|
|
5
5
|
"license": "Apache-2.0",
|
|
6
6
|
"keywords": [
|
|
@@ -64,6 +64,7 @@
|
|
|
64
64
|
"eslint-plugin-react-hooks": "4.6.0",
|
|
65
65
|
"factory.ts": "1.4.1",
|
|
66
66
|
"http-server": "14.1.1",
|
|
67
|
+
"highcharts": "12.1.2",
|
|
67
68
|
"husky": "9.0.11",
|
|
68
69
|
"jsdom": "24.1.3",
|
|
69
70
|
"mdx-mermaid": "^2.0.1",
|
|
@@ -87,6 +88,7 @@
|
|
|
87
88
|
"wait-on": "7.2.0"
|
|
88
89
|
},
|
|
89
90
|
"optionalDependencies": {
|
|
91
|
+
"@esbuild/darwin-x64": "0.24.2",
|
|
90
92
|
"@rollup/rollup-linux-x64-gnu": "4.18.0",
|
|
91
93
|
"@swc/core-linux-x64-gnu": "1.4.0",
|
|
92
94
|
"@swc/core-linux-x64-musl": "1.4.0"
|