@hestia-earth/ui-components 0.40.6 → 0.40.8
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 {
|
|
@@ -1324,20 +1324,24 @@ interface ButtonGroupItem {
|
|
|
1324
1324
|
name: string;
|
|
1325
1325
|
id: string;
|
|
1326
1326
|
removable?: boolean;
|
|
1327
|
+
sortable?: boolean;
|
|
1327
1328
|
}
|
|
1328
1329
|
declare class HorizontalButtonsGroupComponent extends ControlValueAccessor<string> {
|
|
1329
1330
|
protected readonly value: _angular_core.WritableSignal<string>;
|
|
1330
|
-
protected readonly buttons: _angular_core.
|
|
1331
|
+
protected readonly buttons: _angular_core.ModelSignal<ButtonGroupItem[]>;
|
|
1331
1332
|
protected readonly defaultSelectedIndex: _angular_core.InputSignal<number>;
|
|
1332
1333
|
protected readonly removable: _angular_core.InputSignal<boolean>;
|
|
1334
|
+
protected readonly sortable: _angular_core.InputSignal<boolean>;
|
|
1333
1335
|
protected readonly styles: _angular_core.InputSignal<"primary" | "secondary">;
|
|
1334
1336
|
readonly itemRemoved: _angular_core.OutputEmitterRef<string>;
|
|
1337
|
+
readonly itemMoved: _angular_core.OutputEmitterRef<ButtonGroupItem[]>;
|
|
1335
1338
|
writeValue(value: string): void;
|
|
1339
|
+
protected drop(event: CdkDragDrop<ButtonGroupItem[]>): void;
|
|
1336
1340
|
protected select({ id }: ButtonGroupItem): void;
|
|
1337
1341
|
protected remove(event: Event, { id }: ButtonGroupItem): void;
|
|
1338
1342
|
constructor();
|
|
1339
1343
|
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>;
|
|
1344
|
+
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
1345
|
}
|
|
1342
1346
|
|
|
1343
1347
|
declare class IssueConfirmComponent {
|