@filip.mazev/blocks-core 1.0.0 → 1.0.2
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 +12 -0
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -4,6 +4,18 @@
|
|
|
4
4
|
|
|
5
5
|
**Blocks Core** is the foundational library for the Blocks ecosystem. It provides the essential infrastructure for building responsive, theme-aware Angular applications. It bridges the gap between TypeScript logic and SCSS styling, offering a unified system for breakpoints, device detection, scroll management and theming.
|
|
6
6
|
|
|
7
|
+
## Installation
|
|
8
|
+
|
|
9
|
+
```bash
|
|
10
|
+
npm i @filip.mazev/blocks-core@latest
|
|
11
|
+
```
|
|
12
|
+
|
|
13
|
+
Or with the global blocks `ng` command which adds all blocks packages and sets up your styles.scss
|
|
14
|
+
|
|
15
|
+
```bash
|
|
16
|
+
ng add @filip.mazev/blocks@latest
|
|
17
|
+
```
|
|
18
|
+
|
|
7
19
|
## Styles & Theming
|
|
8
20
|
|
|
9
21
|
Blocks Core utilizes a robust SCSS architecture to manage design tokens and responsiveness.
|