source: trip-planner-front/node_modules/@angular/cdk/drag-drop/directives/drop-list-group.d.ts@ fa375fe

Last change on this file since fa375fe was fa375fe, checked in by Ema <ema_spirova@…>, 3 years ago

adding new components

  • Property mode set to 100644
File size: 1.6 KB
Line 
1/**
2 * @license
3 * Copyright Google LLC All Rights Reserved.
4 *
5 * Use of this source code is governed by an MIT-style license that can be
6 * found in the LICENSE file at https://angular.io/license
7 */
8import { OnDestroy, InjectionToken } from '@angular/core';
9import { BooleanInput } from '@angular/cdk/coercion';
10/**
11 * Injection token that can be used to reference instances of `CdkDropListGroup`. It serves as
12 * alternative token to the actual `CdkDropListGroup` class which could cause unnecessary
13 * retention of the class and its directive metadata.
14 */
15import * as ɵngcc0 from '@angular/core';
16export declare const CDK_DROP_LIST_GROUP: InjectionToken<CdkDropListGroup<unknown>>;
17/**
18 * Declaratively connects sibling `cdkDropList` instances together. All of the `cdkDropList`
19 * elements that are placed inside a `cdkDropListGroup` will be connected to each other
20 * automatically. Can be used as an alternative to the `cdkDropListConnectedTo` input
21 * from `cdkDropList`.
22 */
23export declare class CdkDropListGroup<T> implements OnDestroy {
24 /** Drop lists registered inside the group. */
25 readonly _items: Set<T>;
26 /** Whether starting a dragging sequence from inside this group is disabled. */
27 get disabled(): boolean;
28 set disabled(value: boolean);
29 private _disabled;
30 ngOnDestroy(): void;
31 static ngAcceptInputType_disabled: BooleanInput;
32 static ɵfac: ɵngcc0.ɵɵFactoryDeclaration<CdkDropListGroup<any>, never>;
33 static ɵdir: ɵngcc0.ɵɵDirectiveDeclaration<CdkDropListGroup<any>, "[cdkDropListGroup]", ["cdkDropListGroup"], { "disabled": "cdkDropListGroupDisabled"; }, {}, never>;
34}
35
36//# sourceMappingURL=drop-list-group.d.ts.map
Note: See TracBrowser for help on using the repository browser.