@breadstone/mosaik-elements-angular 0.0.125 → 0.0.126
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.126 (2025-08-21)
|
|
2
|
+
|
|
3
|
+
### 🚀 Features
|
|
4
|
+
|
|
5
|
+
- add new state components and their samples ([662149d135](https://github.com/RueDeRennes/mosaik/commit/662149d135))
|
|
6
|
+
|
|
1
7
|
## 0.0.125 (2025-08-20)
|
|
2
8
|
|
|
3
9
|
This was a version bump only for mosaik-elements-angular to align it with other projects, there were no code changes.
|
|
@@ -22840,6 +22840,9 @@ const ERROR_STATE_DEFAULT_PROPS = new InjectionToken('MOSAIK_ERROR_STATE_DEFAULT
|
|
|
22840
22840
|
* @public
|
|
22841
22841
|
*
|
|
22842
22842
|
* @slot - The default slot for placing additional content or elements related to the error.
|
|
22843
|
+
* @slot header - The header slot for placing the error header content.
|
|
22844
|
+
* @slot content - The content slot for placing the error content.
|
|
22845
|
+
* @slot code - The code slot for placing the error code or additional information.
|
|
22843
22846
|
* @slot actions - The actions slot for placing actionable elements such as buttons or links for error resolution.
|
|
22844
22847
|
*/
|
|
22845
22848
|
let ErrorStateComponent = class ErrorStateComponent {
|
|
@@ -45896,6 +45899,8 @@ const SUCCESS_STATE_DEFAULT_PROPS = new InjectionToken('MOSAIK_SUCCESS_STATE_DEF
|
|
|
45896
45899
|
* @public
|
|
45897
45900
|
*
|
|
45898
45901
|
* @slot - The default slot, used for displaying the success state content.
|
|
45902
|
+
* @slot header - The header slot, used for displaying the success state header.
|
|
45903
|
+
* @slot content - The content slot, used for displaying the success state content.
|
|
45899
45904
|
* @slot actions - The actions slot, used for displaying action buttons or links related to the success state.
|
|
45900
45905
|
*/
|
|
45901
45906
|
let SuccessStateComponent = class SuccessStateComponent {
|