@waaelg/dga-design-system 0.5.4 → 0.7.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 +7 -3
- package/dist/index.js +451 -126
- package/dist/index.js.map +1 -1
- package/dist/style.css +1 -1
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -178,15 +178,15 @@ Load the package straight from **jsDelivr** or **unpkg** — no install, no bund
|
|
|
178
178
|
```html
|
|
179
179
|
<link
|
|
180
180
|
rel="stylesheet"
|
|
181
|
-
href="https://cdn.jsdelivr.net/npm/@waaelg/dga-design-system@0.
|
|
181
|
+
href="https://cdn.jsdelivr.net/npm/@waaelg/dga-design-system@0.7.0/dist/style.css"
|
|
182
182
|
/>
|
|
183
183
|
|
|
184
184
|
<script type="module">
|
|
185
|
-
import 'https://cdn.jsdelivr.net/npm/@waaelg/dga-design-system@0.
|
|
185
|
+
import 'https://cdn.jsdelivr.net/npm/@waaelg/dga-design-system@0.7.0/dist/index.js';
|
|
186
186
|
</script>
|
|
187
187
|
```
|
|
188
188
|
|
|
189
|
-
Same files are on unpkg (`https://unpkg.com/@waaelg/dga-design-system@0.
|
|
189
|
+
Same files are on unpkg (`https://unpkg.com/@waaelg/dga-design-system@0.7.0/dist/…`). Pin a version for reproducible builds, or use `@latest` to always fetch the newest release. See the [installation docs](./docs/getting-started/installation.md#cdn-no-build-step) for a full example.
|
|
190
190
|
|
|
191
191
|
---
|
|
192
192
|
|
|
@@ -252,6 +252,8 @@ import {
|
|
|
252
252
|
DGAAccordion,
|
|
253
253
|
DGAAlert,
|
|
254
254
|
DGAChart,
|
|
255
|
+
DGABarChart,
|
|
256
|
+
DGALineChart,
|
|
255
257
|
DGACodeSnippet,
|
|
256
258
|
DGAMenuDropDown,
|
|
257
259
|
DGAVerifyBar,
|
|
@@ -266,6 +268,8 @@ Importing the package also registers **web components** — prefer these in Vue/
|
|
|
266
268
|
| `<dga-accordion>` + `<dga-accordion-item>` | `DGAAccordion` |
|
|
267
269
|
| `<dga-code-snippet>` | `DGACodeSnippet` |
|
|
268
270
|
| `<dga-pie-chart>` | `DGAChart` |
|
|
271
|
+
| `<dga-bar-chart>` | `DGABarChart` |
|
|
272
|
+
| `<dga-line-chart>` | `DGALineChart` |
|
|
269
273
|
| `<dga-verify-bar>` | `DGAVerifyBar` |
|
|
270
274
|
|
|
271
275
|
See [Web Components](./docs/getting-started/web-components.md) for framework setup.
|