@breadstone/mosaik-elements-angular 0.0.233 → 0.0.235
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
CHANGED
|
@@ -1,3 +1,13 @@
|
|
|
1
|
+
## 0.0.235 (2026-04-27)
|
|
2
|
+
|
|
3
|
+
### 🚀 Features
|
|
4
|
+
|
|
5
|
+
- **table:** add caption and summary slots to DataTable and Table components ([2e857032c3](https://github.com/RueDeRennes/mosaik/commit/2e857032c3))
|
|
6
|
+
|
|
7
|
+
## 0.0.234 (2026-04-27)
|
|
8
|
+
|
|
9
|
+
This was a version bump only for mosaik-elements-angular to align it with other projects, there were no code changes.
|
|
10
|
+
|
|
1
11
|
## 0.0.233 (2026-04-26)
|
|
2
12
|
|
|
3
13
|
### 🚀 Features
|
|
@@ -5289,6 +5289,8 @@ const DATA_TABLE_DEFAULT_PROPS = new InjectionToken('MOSAIK_DATA_TABLE_DEFAULT_P
|
|
|
5289
5289
|
/**
|
|
5290
5290
|
* @public
|
|
5291
5291
|
*
|
|
5292
|
+
* @slot caption - The caption slot.
|
|
5293
|
+
* @slot summary - The summary slot.
|
|
5292
5294
|
* @slot style - Custom styles injection slot for shadow DOM styling escape hatch
|
|
5293
5295
|
*/
|
|
5294
5296
|
let DataTableComponent = class DataTableComponent {
|
|
@@ -77588,6 +77590,7 @@ const TABLE_DEFAULT_PROPS = new InjectionToken('MOSAIK_TABLE_DEFAULT_PROPS');
|
|
|
77588
77590
|
*
|
|
77589
77591
|
* @slot - The default slot.
|
|
77590
77592
|
* @slot caption - The caption slot for the table title or description.
|
|
77593
|
+
* @slot summary - The summary slot.
|
|
77591
77594
|
* @slot style - Custom styles injection slot for shadow DOM styling escape hatch
|
|
77592
77595
|
*/
|
|
77593
77596
|
let TableComponent = class TableComponent {
|