@carto/ps-react-ui 0.0.2-alpha.17
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 +23 -0
- package/dist/ps-react-ui.es.js +1390 -0
- package/dist/ps-react-ui.umd.js +9 -0
- package/dist/types/index.d.ts +3 -0
- package/dist/types/input-file/InputFile.d.ts +26 -0
- package/dist/types/input-file/types.d.ts +14 -0
- package/dist/types/styling/types.d.ts +4 -0
- package/package.json +74 -0
package/README.md
ADDED
@@ -0,0 +1,23 @@
|
|
1
|
+
# CARTO PS Library - React UI
|
2
|
+
|
3
|
+
This repository contains the packages with react ui helpers.
|
4
|
+
|
5
|
+
The see what helpers are available, the interfaces and examples, see [docs](https://github.com/CartoDB/carto-ps-lib/blob/main/packages/react-ui/docs/README.md) section.
|
6
|
+
|
7
|
+
## Contributing
|
8
|
+
|
9
|
+
See [the contributing guide](https://github.com/CartoDB/carto-ps-lib/blob/main/CONTRIBUTING.md) for detailed instructions on how to get started with our project.
|
10
|
+
|
11
|
+
If you're looking for a way to contribute, you can scan through our [existing issues](https://github.com/github/docs/issues) for something to work on. When ready, check out [Getting Started with Contributing](https://github.com/CartoDB/carto-ps-lib/blob/main/CONTRIBUTING.md) for detailed instructions.
|
12
|
+
|
13
|
+
## Running Cosmos
|
14
|
+
|
15
|
+
We use React Cosmos as a blank canvas for UI components development and testing.
|
16
|
+
|
17
|
+
To run Cosmos, you need to run the following command:
|
18
|
+
|
19
|
+
```
|
20
|
+
npm run ui:start
|
21
|
+
```
|
22
|
+
|
23
|
+
Open http://localhost:6006. You will see our UI components catalog!
|