- Timestamp:
- 10/16/21 18:10:51 (3 years ago)
- Branches:
- master
- Children:
- eed0bf8
- Parents:
- 6a3a178
- Location:
- trip-planner-front/node_modules/@angular/cdk/drag-drop
- Files:
-
- 20 added
- 11 edited
Legend:
- Unmodified
- Added
- Removed
-
trip-planner-front/node_modules/@angular/cdk/drag-drop/directives/drag-handle.d.ts
r6a3a178 rfa375fe 14 14 * retention of the class and its directive metadata. 15 15 */ 16 import * as ɵngcc0 from '@angular/core'; 16 17 export declare const CDK_DRAG_HANDLE: InjectionToken<CdkDragHandle>; 17 18 /** Handle that can be used to drag a CdkDrag instance. */ … … 29 30 ngOnDestroy(): void; 30 31 static ngAcceptInputType_disabled: BooleanInput; 32 static ɵfac: ɵngcc0.ɵɵFactoryDeclaration<CdkDragHandle, [null, { optional: true; skipSelf: true; }]>; 33 static ɵdir: ɵngcc0.ɵɵDirectiveDeclaration<CdkDragHandle, "[cdkDragHandle]", never, { "disabled": "cdkDragHandleDisabled"; }, {}, never>; 31 34 } 35 36 //# sourceMappingURL=drag-handle.d.ts.map -
trip-planner-front/node_modules/@angular/cdk/drag-drop/directives/drag-placeholder.d.ts
r6a3a178 rfa375fe 12 12 * retention of the class and its directive metadata. 13 13 */ 14 import * as ɵngcc0 from '@angular/core'; 14 15 export declare const CDK_DRAG_PLACEHOLDER: InjectionToken<CdkDragPlaceholder<any>>; 15 16 /** … … 22 23 data: T; 23 24 constructor(templateRef: TemplateRef<T>); 25 static ɵfac: ɵngcc0.ɵɵFactoryDeclaration<CdkDragPlaceholder<any>, never>; 26 static ɵdir: ɵngcc0.ɵɵDirectiveDeclaration<CdkDragPlaceholder<any>, "ng-template[cdkDragPlaceholder]", never, { "data": "data"; }, {}, never>; 24 27 } 28 29 //# sourceMappingURL=drag-placeholder.d.ts.map -
trip-planner-front/node_modules/@angular/cdk/drag-drop/directives/drag-preview.d.ts
r6a3a178 rfa375fe 13 13 * retention of the class and its directive metadata. 14 14 */ 15 import * as ɵngcc0 from '@angular/core'; 15 16 export declare const CDK_DRAG_PREVIEW: InjectionToken<CdkDragPreview<any>>; 16 17 /** … … 28 29 constructor(templateRef: TemplateRef<T>); 29 30 static ngAcceptInputType_matchSize: BooleanInput; 31 static ɵfac: ɵngcc0.ɵɵFactoryDeclaration<CdkDragPreview<any>, never>; 32 static ɵdir: ɵngcc0.ɵɵDirectiveDeclaration<CdkDragPreview<any>, "ng-template[cdkDragPreview]", never, { "matchSize": "matchSize"; "data": "data"; }, {}, never>; 30 33 } 34 35 //# sourceMappingURL=drag-preview.d.ts.map -
trip-planner-front/node_modules/@angular/cdk/drag-drop/directives/drag.d.ts
r6a3a178 rfa375fe 19 19 import { DragDropConfig, DragStartDelay, DragAxis } from './config'; 20 20 /** Element that can be moved inside a CdkDropList container. */ 21 import * as ɵngcc0 from '@angular/core'; 21 22 export declare class CdkDrag<T = any> implements AfterViewInit, OnChanges, OnDestroy { 22 23 /** Element that the draggable is attached to. */ … … 156 157 private _setupHandlesListener; 157 158 static ngAcceptInputType_disabled: BooleanInput; 159 static ɵfac: ɵngcc0.ɵɵFactoryDeclaration<CdkDrag<any>, [null, { optional: true; skipSelf: true; }, null, null, null, { optional: true; }, { optional: true; }, null, null, { optional: true; self: true; }, { optional: true; skipSelf: true; }]>; 160 static ɵdir: ɵngcc0.ɵɵDirectiveDeclaration<CdkDrag<any>, "[cdkDrag]", ["cdkDrag"], { "disabled": "cdkDragDisabled"; "dragStartDelay": "cdkDragStartDelay"; "lockAxis": "cdkDragLockAxis"; "constrainPosition": "cdkDragConstrainPosition"; "previewClass": "cdkDragPreviewClass"; "boundaryElement": "cdkDragBoundary"; "rootElementSelector": "cdkDragRootElement"; "previewContainer": "cdkDragPreviewContainer"; "data": "cdkDragData"; "freeDragPosition": "cdkDragFreeDragPosition"; }, { "started": "cdkDragStarted"; "released": "cdkDragReleased"; "ended": "cdkDragEnded"; "entered": "cdkDragEntered"; "exited": "cdkDragExited"; "dropped": "cdkDragDropped"; "moved": "cdkDragMoved"; }, ["_previewTemplate", "_placeholderTemplate", "_handles"]>; 158 161 } 162 163 //# sourceMappingURL=drag.d.ts.map -
trip-planner-front/node_modules/@angular/cdk/drag-drop/directives/drop-list-group.d.ts
r6a3a178 rfa375fe 13 13 * retention of the class and its directive metadata. 14 14 */ 15 import * as ɵngcc0 from '@angular/core'; 15 16 export declare const CDK_DROP_LIST_GROUP: InjectionToken<CdkDropListGroup<unknown>>; 16 17 /** … … 29 30 ngOnDestroy(): void; 30 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>; 31 34 } 35 36 //# sourceMappingURL=drop-list-group.d.ts.map -
trip-planner-front/node_modules/@angular/cdk/drag-drop/directives/drop-list.d.ts
r6a3a178 rfa375fe 21 21 * @docs-private 22 22 */ 23 import * as ɵngcc0 from '@angular/core'; 23 24 export interface CdkDropListInternal extends CdkDropList { 24 25 } … … 122 123 static ngAcceptInputType_autoScrollDisabled: BooleanInput; 123 124 static ngAcceptInputType_autoScrollStep: NumberInput; 125 static ɵfac: ɵngcc0.ɵɵFactoryDeclaration<CdkDropList<any>, [null, null, null, null, { optional: true; }, { optional: true; skipSelf: true; }, { optional: true; }]>; 126 static ɵdir: ɵngcc0.ɵɵDirectiveDeclaration<CdkDropList<any>, "[cdkDropList], cdk-drop-list", ["cdkDropList"], { "connectedTo": "cdkDropListConnectedTo"; "id": "id"; "enterPredicate": "cdkDropListEnterPredicate"; "sortPredicate": "cdkDropListSortPredicate"; "disabled": "cdkDropListDisabled"; "sortingDisabled": "cdkDropListSortingDisabled"; "autoScrollDisabled": "cdkDropListAutoScrollDisabled"; "orientation": "cdkDropListOrientation"; "lockAxis": "cdkDropListLockAxis"; "data": "cdkDropListData"; "autoScrollStep": "cdkDropListAutoScrollStep"; }, { "dropped": "cdkDropListDropped"; "entered": "cdkDropListEntered"; "exited": "cdkDropListExited"; "sorted": "cdkDropListSorted"; }, never>; 124 127 } 128 129 //# sourceMappingURL=drop-list.d.ts.map -
trip-planner-front/node_modules/@angular/cdk/drag-drop/drag-drop-module.d.ts
r6a3a178 rfa375fe 6 6 * found in the LICENSE file at https://angular.io/license 7 7 */ 8 import * as ɵngcc0 from '@angular/core'; 9 import * as ɵngcc1 from './directives/drop-list'; 10 import * as ɵngcc2 from './directives/drop-list-group'; 11 import * as ɵngcc3 from './directives/drag'; 12 import * as ɵngcc4 from './directives/drag-handle'; 13 import * as ɵngcc5 from './directives/drag-preview'; 14 import * as ɵngcc6 from './directives/drag-placeholder'; 15 import * as ɵngcc7 from '@angular/cdk/scrolling'; 8 16 export declare class DragDropModule { 17 static ɵfac: ɵngcc0.ɵɵFactoryDeclaration<DragDropModule, never>; 18 static ɵmod: ɵngcc0.ɵɵNgModuleDeclaration<DragDropModule, [typeof ɵngcc1.CdkDropList, typeof ɵngcc2.CdkDropListGroup, typeof ɵngcc3.CdkDrag, typeof ɵngcc4.CdkDragHandle, typeof ɵngcc5.CdkDragPreview, typeof ɵngcc6.CdkDragPlaceholder], never, [typeof ɵngcc7.CdkScrollableModule, typeof ɵngcc1.CdkDropList, typeof ɵngcc2.CdkDropListGroup, typeof ɵngcc3.CdkDrag, typeof ɵngcc4.CdkDragHandle, typeof ɵngcc5.CdkDragPreview, typeof ɵngcc6.CdkDragPlaceholder]>; 19 static ɵinj: ɵngcc0.ɵɵInjectorDeclaration<DragDropModule>; 9 20 } 21 22 //# sourceMappingURL=drag-drop-module.d.ts.map -
trip-planner-front/node_modules/@angular/cdk/drag-drop/drag-drop-registry.d.ts
r6a3a178 rfa375fe 13 13 * @docs-private 14 14 */ 15 import * as ɵngcc0 from '@angular/core'; 15 16 export declare class DragDropRegistry<I extends { 16 17 isDragging(): boolean; … … 84 85 /** Clears out the global event listeners from the `document`. */ 85 86 private _clearGlobalListeners; 87 static ɵfac: ɵngcc0.ɵɵFactoryDeclaration<DragDropRegistry<any, any>, never>; 86 88 } 89 90 //# sourceMappingURL=drag-drop-registry.d.ts.map -
trip-planner-front/node_modules/@angular/cdk/drag-drop/drag-drop.d.ts
r6a3a178 rfa375fe 14 14 * Service that allows for drag-and-drop functionality to be attached to DOM elements. 15 15 */ 16 import * as ɵngcc0 from '@angular/core'; 16 17 export declare class DragDrop { 17 18 private _document; … … 31 32 */ 32 33 createDropList<T = any>(element: ElementRef<HTMLElement> | HTMLElement): DropListRef<T>; 34 static ɵfac: ɵngcc0.ɵɵFactoryDeclaration<DragDrop, never>; 33 35 } 36 37 //# sourceMappingURL=drag-drop.d.ts.map -
trip-planner-front/node_modules/@angular/cdk/drag-drop/index.d.ts
r6a3a178 rfa375fe 4 4 export * from './public-api'; 5 5 export { CdkDropListInternal as ɵangular_material_src_cdk_drag_drop_drag_drop_a } from './directives/drop-list'; 6 7 //# sourceMappingURL=index.d.ts.map -
trip-planner-front/node_modules/@angular/cdk/drag-drop/package.json
r6a3a178 rfa375fe 2 2 "name": "@angular/cdk/drag-drop", 3 3 "main": "../bundles/cdk-drag-drop.umd.js", 4 "fesm2015_ivy_ngcc": "../__ivy_ngcc__/fesm2015/drag-drop.js", 4 5 "fesm2015": "../fesm2015/drag-drop.js", 5 6 "esm2015": "../esm2015/drag-drop/index.js", 6 7 "typings": "./index.d.ts", 8 "module_ivy_ngcc": "../__ivy_ngcc__/fesm2015/drag-drop.js", 7 9 "module": "../fesm2015/drag-drop.js", 8 "es2015": "../fesm2015/drag-drop.js" 10 "es2015_ivy_ngcc": "../__ivy_ngcc__/fesm2015/drag-drop.js", 11 "es2015": "../fesm2015/drag-drop.js", 12 "__processed_by_ivy_ngcc__": { 13 "es2015": "12.2.9", 14 "fesm2015": "12.2.9", 15 "module": "12.2.9", 16 "typings": "12.2.9" 17 }, 18 "scripts": { 19 "prepublishOnly": "node --eval \"console.error('ERROR: Trying to publish a package that has been compiled by NGCC. This is not allowed.\\nPlease delete and rebuild the package, without compiling with NGCC, before attempting to publish.\\nNote that NGCC may have been run by importing this package into another project that is being built with Ivy enabled.\\n')\" && exit 1" 20 } 9 21 }
Note:
See TracChangeset
for help on using the changeset viewer.