@hestia-earth/ui-components 0.40.6 → 0.40.7
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
|
@@ -20,12 +20,12 @@ import * as _hestia_earth_ui_components from '@hestia-earth/ui-components';
|
|
|
20
20
|
import { DeltaDisplayType } from '@hestia-earth/utils/dist/delta';
|
|
21
21
|
import { AnimationEvent } from '@angular/animations';
|
|
22
22
|
import { IsActiveMatchOptions } from '@angular/router';
|
|
23
|
+
import { CdkDragDrop } from '@angular/cdk/drag-drop';
|
|
23
24
|
import { definition, definitions, IDefinition, IDefinitionObject } from '@hestia-earth/json-schema';
|
|
24
25
|
import { ErrorKeys, IJSONConversionParams, IConvertCSVOptions } from '@hestia-earth/schema-convert';
|
|
25
26
|
import * as _angular_platform_browser from '@angular/platform-browser';
|
|
26
27
|
import { ConnectedPosition } from '@angular/cdk/overlay';
|
|
27
28
|
import { ResizeEvent } from 'angular-resizable-element';
|
|
28
|
-
import { CdkDragDrop } from '@angular/cdk/drag-drop';
|
|
29
29
|
import * as chartjs_plugin_annotation from 'chartjs-plugin-annotation';
|
|
30
30
|
|
|
31
31
|
declare class HeAuthService {
|
|
@@ -1327,17 +1327,20 @@ interface ButtonGroupItem {
|
|
|
1327
1327
|
}
|
|
1328
1328
|
declare class HorizontalButtonsGroupComponent extends ControlValueAccessor<string> {
|
|
1329
1329
|
protected readonly value: _angular_core.WritableSignal<string>;
|
|
1330
|
-
protected readonly buttons: _angular_core.
|
|
1330
|
+
protected readonly buttons: _angular_core.ModelSignal<ButtonGroupItem[]>;
|
|
1331
1331
|
protected readonly defaultSelectedIndex: _angular_core.InputSignal<number>;
|
|
1332
1332
|
protected readonly removable: _angular_core.InputSignal<boolean>;
|
|
1333
|
+
protected readonly sortable: _angular_core.InputSignal<boolean>;
|
|
1333
1334
|
protected readonly styles: _angular_core.InputSignal<"primary" | "secondary">;
|
|
1334
1335
|
readonly itemRemoved: _angular_core.OutputEmitterRef<string>;
|
|
1336
|
+
readonly itemMoved: _angular_core.OutputEmitterRef<ButtonGroupItem[]>;
|
|
1335
1337
|
writeValue(value: string): void;
|
|
1338
|
+
protected drop(event: CdkDragDrop<ButtonGroupItem[]>): void;
|
|
1336
1339
|
protected select({ id }: ButtonGroupItem): void;
|
|
1337
1340
|
protected remove(event: Event, { id }: ButtonGroupItem): void;
|
|
1338
1341
|
constructor();
|
|
1339
1342
|
static ɵfac: _angular_core.ɵɵFactoryDeclaration<HorizontalButtonsGroupComponent, never>;
|
|
1340
|
-
static ɵcmp: _angular_core.ɵɵComponentDeclaration<HorizontalButtonsGroupComponent, "he-horizontal-buttons-group", never, { "buttons": { "alias": "buttons"; "required": true; "isSignal": true; }; "defaultSelectedIndex": { "alias": "defaultSelectedIndex"; "required": false; "isSignal": true; }; "removable": { "alias": "removable"; "required": false; "isSignal": true; }; "styles": { "alias": "styles"; "required": false; "isSignal": true; }; }, { "itemRemoved": "itemRemoved"; }, never, never, true, never>;
|
|
1343
|
+
static ɵcmp: _angular_core.ɵɵComponentDeclaration<HorizontalButtonsGroupComponent, "he-horizontal-buttons-group", never, { "buttons": { "alias": "buttons"; "required": true; "isSignal": true; }; "defaultSelectedIndex": { "alias": "defaultSelectedIndex"; "required": false; "isSignal": true; }; "removable": { "alias": "removable"; "required": false; "isSignal": true; }; "sortable": { "alias": "sortable"; "required": false; "isSignal": true; }; "styles": { "alias": "styles"; "required": false; "isSignal": true; }; }, { "buttons": "buttonsChange"; "itemRemoved": "itemRemoved"; "itemMoved": "itemMoved"; }, never, never, true, never>;
|
|
1341
1344
|
}
|
|
1342
1345
|
|
|
1343
1346
|
declare class IssueConfirmComponent {
|