@bspk/ui-ngx 0.0.4 → 1.0.1

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 +10 -0
  2. package/package.json +2 -2
package/README.md CHANGED
@@ -14,6 +14,16 @@ npm install @bspk/ui-ngx
14
14
  npm install --peer @bspk/styles @floating-ui/dom
15
15
  ```
16
16
 
17
+ ## Setup
18
+
19
+ Ensure you your theme stylesheet from `@bspk/styles` and the base and color stylesheets.
20
+
21
+ ```scss
22
+ @use '@bspk/styles/anywhere.css';
23
+ @use '@bspk/ui-ngx/src/styles/base';
24
+ @use '@bspk/ui-ngx/src/styles/colors';
25
+ ```
26
+
17
27
  ## Testing
18
28
 
19
29
  To test all components
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@bspk/ui-ngx",
3
- "version": "0.0.4",
3
+ "version": "1.0.1",
4
4
  "peerDependencies": {
5
5
  "@angular/common": "^20.3.0",
6
6
  "@angular/core": "^20.3.0",
@@ -28,4 +28,4 @@
28
28
  },
29
29
  "module": "fesm2022/bspk-ui-ngx.mjs",
30
30
  "typings": "index.d.ts"
31
- }
31
+ }