@hotosm/ui 0.2.0-a3 → 0.2.0-a4

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.
Files changed (2) hide show
  1. package/README.md +3 -3
  2. package/package.json +1 -1
package/README.md CHANGED
@@ -65,13 +65,13 @@ pnpm install @hotosm/ui
65
65
  // Import the components
66
66
  <script
67
67
  type="module"
68
- src="https://s3.amazonaws.com/hotosm-ui/latest/ui.js"
68
+ src="https://s3.amazonaws.com/hotosm-ui/latest/components/Button.js"
69
69
  ></script>
70
70
 
71
71
  // Import the styles (or create your own)
72
72
  <link
73
73
  rel="stylesheet"
74
- href="https://s3.amazonaws.com/hotosm-ui/latest/style.css"
74
+ href="https://s3.amazonaws.com/hotosm-ui/latest/theme/hot.css"
75
75
  />
76
76
 
77
77
  <div>
@@ -96,7 +96,7 @@ pnpm install @hotosm/ui
96
96
  ```
97
97
 
98
98
  ```js
99
- import { hot-button } from '@hotosm/ui';
99
+ import '@hotosm/ui/components/Button'
100
100
 
101
101
  const HomePage = ({}) => {
102
102
  return (
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@hotosm/ui",
3
- "version": "0.2.0a3",
3
+ "version": "0.2.0a4",
4
4
  "description": "Shared UI components with theming for use across HOTOSM tools.",
5
5
  "type": "module",
6
6
  "engines": {