@hestia-earth/ui-components 0.41.1 → 0.41.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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@hestia-earth/ui-components",
3
- "version": "0.41.1",
3
+ "version": "0.41.2",
4
4
  "description": "HESTIA reusable components",
5
5
  "repository": {
6
6
  "type": "git",
@@ -1188,9 +1188,10 @@ declare enum CollapsibleBoxStyle {
1188
1188
  declare class CollapsibleBoxComponent {
1189
1189
  readonly open: _angular_core.ModelSignal<boolean>;
1190
1190
  protected readonly hasShadow: _angular_core.InputSignal<boolean>;
1191
+ protected readonly hasBorder: _angular_core.InputSignal<boolean>;
1191
1192
  protected readonly boxStyle: _angular_core.InputSignal<CollapsibleBoxStyle>;
1192
1193
  static ɵfac: _angular_core.ɵɵFactoryDeclaration<CollapsibleBoxComponent, never>;
1193
- static ɵcmp: _angular_core.ɵɵComponentDeclaration<CollapsibleBoxComponent, "he-collapsible-box", never, { "open": { "alias": "open"; "required": false; "isSignal": true; }; "hasShadow": { "alias": "hasShadow"; "required": false; "isSignal": true; }; "boxStyle": { "alias": "boxStyle"; "required": false; "isSignal": true; }; }, { "open": "openChange"; }, never, ["[box-title]", "[box-content]"], true, never>;
1194
+ static ɵcmp: _angular_core.ɵɵComponentDeclaration<CollapsibleBoxComponent, "he-collapsible-box", never, { "open": { "alias": "open"; "required": false; "isSignal": true; }; "hasShadow": { "alias": "hasShadow"; "required": false; "isSignal": true; }; "hasBorder": { "alias": "hasBorder"; "required": false; "isSignal": true; }; "boxStyle": { "alias": "boxStyle"; "required": false; "isSignal": true; }; }, { "open": "openChange"; }, never, ["[box-title]", "[box-content]"], true, never>;
1194
1195
  }
1195
1196
 
1196
1197
  declare class DataTableComponent {