@breadstone/mosaik-elements 0.0.71 → 0.0.72
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/CHANGELOG.md +26 -0
- package/README.md +60 -3
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,29 @@
|
|
|
1
|
+
## 0.0.71 (2025-06-30)
|
|
2
|
+
|
|
3
|
+
### 🩹 Fixes
|
|
4
|
+
|
|
5
|
+
- add missing newline at end of package.json ([73866991d5](https://github.com/RueDeRennes/mosaik/commit/73866991d5))
|
|
6
|
+
|
|
7
|
+
## 0.0.70 (2025-06-28)
|
|
8
|
+
|
|
9
|
+
### 🩹 Fixes
|
|
10
|
+
|
|
11
|
+
- update background color to transparent for page header and menu components; update release script to version 0.0.70 ([e8e7c124a4](https://github.com/RueDeRennes/mosaik/commit/e8e7c124a4))
|
|
12
|
+
|
|
13
|
+
## 0.0.69 (2025-06-26)
|
|
14
|
+
|
|
15
|
+
This was a version bump only for mosaik-elements to align it with other projects, there were no code changes.
|
|
16
|
+
|
|
17
|
+
## 0.0.68 (2025-06-26)
|
|
18
|
+
|
|
19
|
+
### 🚀 Features
|
|
20
|
+
|
|
21
|
+
- add copyExecutorsJson script and update build commands ([0a0aba85b9](https://github.com/RueDeRennes/mosaik/commit/0a0aba85b9))
|
|
22
|
+
|
|
23
|
+
## 0.0.67 (2025-06-26)
|
|
24
|
+
|
|
25
|
+
This was a version bump only for mosaik-elements to align it with other projects, there were no code changes.
|
|
26
|
+
|
|
1
27
|
## 0.0.66 (2025-06-25)
|
|
2
28
|
|
|
3
29
|
This was a version bump only for mosaik-elements to align it with other projects, there were no code changes.
|
package/README.md
CHANGED
|
@@ -1,10 +1,67 @@
|
|
|
1
|
-
|
|
1
|
+
# 📦 @breadstone/mosaik-elements
|
|
2
|
+
|
|
3
|
+
| Package Status | Source |
|
|
4
|
+
|----------------|--------|
|
|
5
|
+
| [](https://www.npmjs.com/package/@breadstone/mosaik-elements) | [libs/mosaik-elements](../../libs/mosaik-elements) |
|
|
6
|
+
|
|
7
|
+
> Main web components and shared utilities for the Mosaik design system.
|
|
8
|
+
> Provides all core components, types, and helpers for framework wrappers.
|
|
9
|
+
|
|
10
|
+
---
|
|
11
|
+
|
|
12
|
+
## 📁 Project Structure
|
|
13
|
+
|
|
14
|
+
Part of the monorepo [`mosaik`](https://github.com/RueDeRennes/mosaik)
|
|
15
|
+
Package path: `libs/mosaik-elements`
|
|
16
|
+
Version: see [npm](https://www.npmjs.com/package/@breadstone/mosaik-elements)
|
|
17
|
+
License: MIT
|
|
18
|
+
|
|
19
|
+
---
|
|
20
|
+
|
|
21
|
+
## 📦 Installation
|
|
22
|
+
|
|
23
|
+
```bash
|
|
24
|
+
yarn add @breadstone/mosaik-elements
|
|
25
|
+
# or
|
|
26
|
+
npm install @breadstone/mosaik-elements
|
|
27
|
+
```
|
|
28
|
+
|
|
29
|
+
---
|
|
30
|
+
|
|
31
|
+
## 🔧 Usage
|
|
2
32
|
|
|
3
33
|
```typescript
|
|
4
34
|
import * from '@breadstone/mosaik-elements';
|
|
5
35
|
```
|
|
6
36
|
|
|
7
|
-
|
|
37
|
+
---
|
|
38
|
+
|
|
39
|
+
## ⚙️ Features
|
|
40
|
+
|
|
41
|
+
- All core Mosaik web components
|
|
42
|
+
- Shared types, interfaces, and helpers
|
|
43
|
+
- Foundation for Angular, React, Vue, and Svelte wrappers
|
|
44
|
+
|
|
45
|
+
---
|
|
46
|
+
|
|
47
|
+
## 🛠 Recommendations
|
|
48
|
+
|
|
49
|
+
- Use as the base for all Mosaik component wrappers.
|
|
50
|
+
- Explore the API docs [here](./../../.docs/api/mosaik-elements/index.md)!
|
|
51
|
+
|
|
52
|
+
---
|
|
53
|
+
|
|
54
|
+
## 📦 Publishing
|
|
55
|
+
|
|
56
|
+
```bash
|
|
57
|
+
yarn nx run mosaik-elements:publish
|
|
58
|
+
```
|
|
59
|
+
|
|
60
|
+
---
|
|
61
|
+
|
|
62
|
+
## 📄 License
|
|
63
|
+
|
|
64
|
+
MIT © Breadstone
|
|
8
65
|
|
|
9
|
-
|
|
66
|
+
---
|
|
10
67
|
|
package/package.json
CHANGED