@breadstone/mosaik-elements-angular 0.0.212 → 0.0.214

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,9 @@
1
+ ## 0.0.214 (2026-01-02)
2
+
3
+ ### 🚀 Features
4
+
5
+ - **drawer:** enhance DrawerElement with new slot definitions and update properties ([df154611aa](https://github.com/RueDeRennes/mosaik/commit/df154611aa))
6
+
1
7
  ## 0.0.212 (2026-01-02)
2
8
 
3
9
  ### 🚀 Features
@@ -23156,8 +23156,10 @@ const DRAWER_DEFAULT_PROPS = new InjectionToken('MOSAIK_DRAWER_DEFAULT_PROPS');
23156
23156
  /**
23157
23157
  * @public
23158
23158
  *
23159
- * @slot - The default content element.
23160
- * @slot end - The header end content element.
23159
+ * @slot header - The header content slot.
23160
+ * @slot - The default content slot.
23161
+ * @slot actions - The actions content slot.
23162
+ * @slot footer - The footer content slot.
23161
23163
  */
23162
23164
  let DrawerComponent = class DrawerComponent {
23163
23165
  _element;
@@ -35100,7 +35102,8 @@ const METER_BAR_DEFAULT_PROPS = new InjectionToken('MOSAIK_METER_BAR_DEFAULT_PRO
35100
35102
  /**
35101
35103
  * @public
35102
35104
  *
35103
- *
35105
+ * @slot label - The label slot.
35106
+ * @slot hint - The hint slot.
35104
35107
  */
35105
35108
  let MeterBarComponent = class MeterBarComponent {
35106
35109
  _element;