@worldresources/wri-design-systems 2.117.0 → 2.119.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 +15 -2
- package/dist/index.cjs.js +690 -507
- package/dist/index.d.ts +105 -6
- package/dist/index.esm.js +692 -509
- package/package.json +3 -3
package/README.md
CHANGED
@@ -23,13 +23,13 @@ npm i @worldresources/wri-design-systems
|
|
23
23
|
## Other dependecies
|
24
24
|
|
25
25
|
```
|
26
|
-
yarn add @chakra-ui/react
|
26
|
+
yarn add @chakra-ui/react@ @emotion/react
|
27
27
|
```
|
28
28
|
|
29
29
|
or
|
30
30
|
|
31
31
|
```
|
32
|
-
npm i @chakra-ui/react
|
32
|
+
npm i @chakra-ui/react@ @emotion/react
|
33
33
|
```
|
34
34
|
|
35
35
|
## Usage
|
@@ -97,6 +97,7 @@ function App() {
|
|
97
97
|
- [Button](https://github.com/wri/wri-design-systems/tree/main/src/components/Forms/Buttons/Button)
|
98
98
|
- [Close Button](https://github.com/wri/wri-design-systems/tree/main/src/components/Forms/Buttons/CloseButton)
|
99
99
|
- [Icon Button](https://github.com/wri/wri-design-systems/tree/main/src/components/Forms/Buttons/IconButton)
|
100
|
+
- [Map Control](https://github.com/wri/wri-design-systems/tree/main/src/components/Forms/Buttons/MapControl)
|
100
101
|
- [Multi Action Button](https://github.com/wri/wri-design-systems/tree/main/src/components/Forms/Buttons/MultiActionButton)
|
101
102
|
|
102
103
|
### Controls
|
@@ -124,6 +125,8 @@ function App() {
|
|
124
125
|
|
125
126
|
## Geospatial
|
126
127
|
|
128
|
+
- [Icon Marker](https://github.com/wri/wri-design-systems/tree/main/src/components/Geospatial/IconMarker)
|
129
|
+
|
127
130
|
### Layers
|
128
131
|
|
129
132
|
- [Layer Group](https://github.com/wri/wri-design-systems/tree/main/src/components/Geospatial/Layers/LayerGroup)
|
@@ -139,6 +142,12 @@ function App() {
|
|
139
142
|
- [Qualitative Attribute](https://github.com/wri/wri-design-systems/tree/main/src/components/Geospatial/Legends/QualitativeAttribute)
|
140
143
|
- [Scale Bar](https://github.com/wri/wri-design-systems/tree/main/src/components/Geospatial/Legends/ScaleBar)
|
141
144
|
|
145
|
+
## Information Display
|
146
|
+
|
147
|
+
- [Item Count](https://github.com/wri/wri-design-systems/tree/main/src/components/InformationDisplay/ItemCount)
|
148
|
+
- [Pagination](https://github.com/wri/wri-design-systems/tree/main/src/components/InformationDisplay/Pagination)
|
149
|
+
- [Table](https://github.com/wri/wri-design-systems/tree/main/src/components/InformationDisplay/Table)
|
150
|
+
|
142
151
|
## Navigation
|
143
152
|
|
144
153
|
- [Breadcrumb](https://github.com/wri/wri-design-systems/tree/main/src/components/Navigation/Breadcrumb)
|
@@ -152,6 +161,10 @@ function App() {
|
|
152
161
|
- [Inline Message](https://github.com/wri/wri-design-systems/tree/main/src/components/Status/InlineMessage)
|
153
162
|
- [Toast](https://github.com/wri/wri-design-systems/tree/main/src/components/Status/Toast)
|
154
163
|
|
164
|
+
## Templates
|
165
|
+
|
166
|
+
- [Next.js](https://github.com/wri/next-js-design-system-template)
|
167
|
+
|
155
168
|
## Building the lib
|
156
169
|
|
157
170
|
```
|