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

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

adding photos

  • Property mode set to 100644
File size: 1.3 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 */
15export declare const CDK_DROP_LIST_GROUP: InjectionToken<CdkDropListGroup<unknown>>;
16/**
17 * Declaratively connects sibling `cdkDropList` instances together. All of the `cdkDropList`
18 * elements that are placed inside a `cdkDropListGroup` will be connected to each other
19 * automatically. Can be used as an alternative to the `cdkDropListConnectedTo` input
20 * from `cdkDropList`.
21 */
22export declare class CdkDropListGroup<T> implements OnDestroy {
23 /** Drop lists registered inside the group. */
24 readonly _items: Set<T>;
25 /** Whether starting a dragging sequence from inside this group is disabled. */
26 get disabled(): boolean;
27 set disabled(value: boolean);
28 private _disabled;
29 ngOnDestroy(): void;
30 static ngAcceptInputType_disabled: BooleanInput;
31}
Note: See TracBrowser for help on using the repository browser.