carbon-components-svelte 0.81.2 → 0.82.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 +2 -2
- package/lib/index.js +1 -1
- package/lib/index.mjs +1007 -448
- package/package.json +2 -3
- package/src/Select/SelectItem.svelte +16 -2
- package/src/TreeView/TreeView.svelte +65 -2
- package/src/TreeView/TreeViewNode.svelte +16 -4
- package/src/TreeView/TreeViewNodeList.svelte +17 -7
- package/types/Select/SelectItem.svelte.d.ts +12 -0
- package/types/TreeView/TreeView.svelte.d.ts +19 -1
- package/CHANGELOG.md +0 -2628
package/README.md
CHANGED
|
@@ -18,7 +18,7 @@ The Carbon Svelte portfolio also includes:
|
|
|
18
18
|
- **[Carbon Charts Svelte](https://github.com/carbon-design-system/carbon-charts/tree/master/packages/svelte)**: 20+ charts, powered by d3
|
|
19
19
|
- **[Carbon Preprocess Svelte](https://github.com/carbon-design-system/carbon-preprocess-svelte)**: Collection of Svelte preprocessors for Carbon
|
|
20
20
|
|
|
21
|
-
## [Documentation](https://
|
|
21
|
+
## [Documentation](https://svelte.carbondesignsystem.com)
|
|
22
22
|
|
|
23
23
|
Other forms of documentation are auto-generated:
|
|
24
24
|
|
|
@@ -155,7 +155,7 @@ Programmatically switch between each of the five Carbon themes by setting the "t
|
|
|
155
155
|
|
|
156
156
|
### Importing components
|
|
157
157
|
|
|
158
|
-
Import components from `carbon-components-svelte` in the `script` tag of your Svelte file. Visit the [documentation site](https://
|
|
158
|
+
Import components from `carbon-components-svelte` in the `script` tag of your Svelte file. Visit the [documentation site](https://svelte.carbondesignsystem.com) for examples.
|
|
159
159
|
|
|
160
160
|
```html
|
|
161
161
|
<!-- App.svelte -->
|