@bfme-technology/styled 0.1.1 → 0.1.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 +37 -0
- package/bfme-technology-styled-0.1.2.tgz +0 -0
- package/package.json +5 -1
package/README.md
ADDED
|
@@ -0,0 +1,37 @@
|
|
|
1
|
+
# @bfme-technology/styled
|
|
2
|
+
|
|
3
|
+
Shared styling primitives for BFME apps.
|
|
4
|
+
|
|
5
|
+
## Install
|
|
6
|
+
|
|
7
|
+
```bash
|
|
8
|
+
npm install @bfme-technology/styled
|
|
9
|
+
```
|
|
10
|
+
|
|
11
|
+
## Exports
|
|
12
|
+
|
|
13
|
+
- `documentationBaseStyles`
|
|
14
|
+
- `documentationBaseLayoutStyles`
|
|
15
|
+
- Studio admin style class constants (layout, breadcrumb, dashboard, grid)
|
|
16
|
+
|
|
17
|
+
## Usage
|
|
18
|
+
|
|
19
|
+
```ts
|
|
20
|
+
import {
|
|
21
|
+
documentationBaseStyles,
|
|
22
|
+
gridContainerClass,
|
|
23
|
+
gridHeaderSectionClass,
|
|
24
|
+
} from "@bfme-technology/styled";
|
|
25
|
+
```
|
|
26
|
+
|
|
27
|
+
## Local development
|
|
28
|
+
|
|
29
|
+
This package is consumed locally in workspace projects via `file:` dependencies.
|
|
30
|
+
|
|
31
|
+
Example:
|
|
32
|
+
|
|
33
|
+
```json
|
|
34
|
+
"@bfme-technology/styled": "file:../npm_packages/@bfme-technology/styled"
|
|
35
|
+
```
|
|
36
|
+
|
|
37
|
+
After local changes, run `npm install` in the consuming project to refresh linked metadata when needed.
|
|
Binary file
|