@hotosm/ui 0.3.4-b1 → 0.3.4-b3
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 +8 -2
- package/dist/chunks/chunk.2LYFUHTS.js +633 -0
- package/dist/chunks/chunk.5EPWWJMT.js +1 -0
- package/dist/chunks/chunk.7M3AMUDU.js +1 -0
- package/dist/chunks/{chunk.3M4SJCXS.js → chunk.CY4WTDL2.js} +49 -35
- package/dist/chunks/chunk.FT6RSQVB.js +25 -0
- package/dist/chunks/chunk.JHIEUZ7A.js +1 -0
- package/dist/chunks/{chunk.E5ZPIWEU.js → chunk.NA3GD2QI.js} +1 -1
- package/dist/chunks/{chunk.5FZHHDGA.js → chunk.SHZIJ2ZS.js} +1 -1
- package/dist/chunks/{chunk.LET777HR.js → chunk.SLQC3DLQ.js} +1 -1
- package/dist/chunks/{chunk.LF3EJYUJ.js → chunk.SVLPRECX.js} +1 -1
- package/dist/chunks/{chunk.OCJJFWT7.js → chunk.TYOVPHVD.js} +55 -50
- package/dist/chunks/chunk.WSMXFTSE.js +28 -0
- package/dist/chunks/chunk.XB4PECPF.js +1 -0
- package/dist/components/consent/consent.component.js +1 -1
- package/dist/components/consent/consent.js +1 -1
- package/dist/components/consent/consent.styles.js +1 -1
- package/dist/components/header/header.component.js +1 -1
- package/dist/components/header/header.js +1 -1
- package/dist/components/header/header.styles.js +1 -1
- package/dist/components/logo/logo.component.js +1 -1
- package/dist/components/logo/logo.js +1 -1
- package/dist/components/logo/logo.styles.js +1 -1
- package/dist/components/tracking/tracking.component.js +1 -1
- package/dist/components/tracking/tracking.js +1 -1
- package/dist/hotosm-ui.js +1 -1
- package/package.json +4 -2
- package/dist/chunks/chunk.6EX2DAUF.js +0 -1
- package/dist/chunks/chunk.6HOFUZAE.js +0 -69
- package/dist/chunks/chunk.6SDZWAD6.js +0 -1
- package/dist/chunks/chunk.ARMPXW7K.js +0 -1
- package/dist/chunks/chunk.C4M3L7JQ.js +0 -1
- package/dist/chunks/chunk.C6I42VVF.js +0 -28
- package/dist/chunks/chunk.D3VBY4HU.js +0 -1531
- package/dist/chunks/chunk.N7VH3RWY.js +0 -688
- package/dist/chunks/chunk.OHYOXYF2.js +0 -25
package/README.md
CHANGED
|
@@ -112,8 +112,9 @@ to your `<html>` block:
|
|
|
112
112
|
> These classes determine the colour usage for different component variants,
|
|
113
113
|
> and probably should not be changed!
|
|
114
114
|
|
|
115
|
-
And import the required styles in your `main.ts` or equivalent (we import from
|
|
116
|
-
rather than CDN, to allow the bundler to work
|
|
115
|
+
And import the required styles in your `main.ts` or equivalent (we import from
|
|
116
|
+
package rather than CDN, to allow the bundler to work its CSS tree-shaking
|
|
117
|
+
magic).
|
|
117
118
|
|
|
118
119
|
```js
|
|
119
120
|
import '@hotosm/ui/dist/style.css';
|
|
@@ -176,6 +177,11 @@ are bound to slightly differently:
|
|
|
176
177
|
></hot-header>
|
|
177
178
|
```
|
|
178
179
|
|
|
180
|
+
### Component Guides
|
|
181
|
+
|
|
182
|
+
- Header: see [`/header.md`](/header.md) for detailed integration, styling, and
|
|
183
|
+
framework examples.
|
|
184
|
+
|
|
179
185
|
### How to contribute
|
|
180
186
|
|
|
181
187
|
- Clone the project `git clone git@github.com:hotosm/ui.git`
|