@mparticle/aquarium 2.1.0 → 2.3.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/README.md +13 -4
- package/dist/aquarium.js +3919 -2709
- package/dist/aquarium.umd.cjs +1 -1
- package/dist/src/components/UXPatterns/DimensionPicker/DimensionPicker.d.ts +49 -0
- package/dist/src/components/charts/ChartTooltip.d.ts +12 -0
- package/dist/src/components/charts/HighChart.d.ts +8 -0
- package/dist/src/components/charts/chartColors.d.ts +40 -0
- package/dist/src/components/charts/chartUtils.d.ts +4 -0
- package/dist/src/components/data-entry/QueryItem/Action.d.ts +4 -0
- package/dist/src/components/data-entry/QueryItem/Cascader.d.ts +4 -0
- package/dist/src/components/data-entry/QueryItem/NumberInput.d.ts +4 -0
- package/dist/src/components/data-entry/QueryItem/Qualifier.d.ts +4 -0
- package/dist/src/components/data-entry/QueryItem/QueryItem.d.ts +4 -0
- package/dist/src/components/data-entry/QueryItem/Text.d.ts +4 -0
- package/dist/src/components/data-entry/QueryItem/TextInput.d.ts +4 -0
- package/dist/src/components/data-entry/QueryItem/ValueSelector.d.ts +4 -0
- package/dist/src/components/data-entry/Upload/Upload.d.ts +4 -5
- package/dist/src/components/general/Typography/Typography.d.ts +1 -0
- package/dist/src/components/icons/index.d.ts +4 -2
- package/dist/src/components/index.d.ts +2 -1
- package/dist/src/types/icons.d.ts +1 -1
- package/package.json +3 -2
package/README.md
CHANGED
|
@@ -3,9 +3,9 @@
|
|
|
3
3
|
<a href="https://mparticle.github.io/aquarium/" target="_blank"><img src="https://raw.githubusercontent.com/storybooks/brand/master/badge/badge-storybook.svg"></a>
|
|
4
4
|
|
|
5
5
|
|
|
6
|
-
#
|
|
6
|
+
# Aquarium — Rokt UI Library
|
|
7
7
|
|
|
8
|
-
|
|
8
|
+
Component library for Rokt applications, built on top of [Ant Design](https://ant.design/).
|
|
9
9
|
|
|
10
10
|
_Components That Scale_
|
|
11
11
|
|
|
@@ -63,6 +63,14 @@ export const MyComponent = () => {
|
|
|
63
63
|
}
|
|
64
64
|
```
|
|
65
65
|
|
|
66
|
+
## Adopting Aquarium
|
|
67
|
+
|
|
68
|
+
New to Aquarium? See [ADOPTING.md](ADOPTING.md) for a step-by-step onboarding guide.
|
|
69
|
+
|
|
70
|
+
## Requesting Components
|
|
71
|
+
|
|
72
|
+
Need a component that doesn't exist yet? [Open a Component Request](https://github.com/mParticle/aquarium/issues/new?template=component-request.yml) on GitHub Issues.
|
|
73
|
+
|
|
66
74
|
## Development
|
|
67
75
|
|
|
68
76
|
Clone the repository and install dependencies:
|
|
@@ -93,8 +101,9 @@ Please make sure any new or updated components are present, tested and verified
|
|
|
93
101
|
|
|
94
102
|
## Support
|
|
95
103
|
|
|
96
|
-
|
|
104
|
+
- **Internal**: Join the Aquarium GChat space for weekly updates and discussions
|
|
105
|
+
- **Public**: [GitHub Issues](https://github.com/mParticle/aquarium/issues/new/choose) — component requests, bug reports, questions
|
|
97
106
|
|
|
98
107
|
## License
|
|
99
108
|
|
|
100
|
-
|
|
109
|
+
Aquarium is available under the [Apache License, Version 2.0](http://www.apache.org/licenses/LICENSE-2.0). See the LICENSE file for more info.
|