@bcc-code/component-library-vue 0.7.2 → 0.7.3
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 +9 -0
- package/dist/component-library.js +2623 -2621
- package/dist/component-library.umd.cjs +162 -162
- package/dist/index.css +1 -1
- package/dist/theme.css +4 -53
- package/dist-types/components/custom/BccStepIndicator/BccStepIndicator.vue.d.ts +1 -0
- package/dist-types/components/wrapped/BccChip/BccChip.vue.d.ts +18 -0
- package/package.json +2 -3
package/README.md
CHANGED
|
@@ -16,6 +16,15 @@ yarn add @bcc-code/component-library-vue
|
|
|
16
16
|
|
|
17
17
|
**Peer dependency:** Vue 3.
|
|
18
18
|
|
|
19
|
+
**pnpm and BCC packages:** The library depends on `@bcc-code/icons-vue` and `@bcc-code/design-tokens`. To use them in your app (e.g. `import { CheckIcon } from '@bcc-code/icons-vue'` or design token imports) without adding those packages to your own `package.json`, add this to your project’s **`.npmrc`** so pnpm hoists them:
|
|
20
|
+
|
|
21
|
+
```ini
|
|
22
|
+
public-hoist-pattern[]=@bcc-code/icons-vue
|
|
23
|
+
public-hoist-pattern[]=@bcc-code/design-tokens
|
|
24
|
+
```
|
|
25
|
+
|
|
26
|
+
Then run `pnpm install` again. With npm or Yarn this is not needed.
|
|
27
|
+
|
|
19
28
|
## Quick start
|
|
20
29
|
|
|
21
30
|
1. **Register the library** in your app (e.g. `main.ts`):
|