Changeset fa375fe for trip-planner-front/node_modules/@angular/cdk
- Timestamp:
- 10/16/21 18:10:51 (3 years ago)
- Branches:
- master
- Children:
- eed0bf8
- Parents:
- 6a3a178
- Location:
- trip-planner-front/node_modules/@angular/cdk
- Files:
-
- 22 added
- 19 edited
Legend:
- Unmodified
- Added
- Removed
-
trip-planner-front/node_modules/@angular/cdk/bundles/cdk.umd.js
r6a3a178 rfa375fe 13 13 */ 14 14 /** Current version of the Angular Component Development Kit. */ 15 var VERSION = new core.Version('12.2. 9');15 var VERSION = new core.Version('12.2.10'); 16 16 17 17 /** -
trip-planner-front/node_modules/@angular/cdk/bundles/cdk.umd.js.map
r6a3a178 rfa375fe 1 {"version":3,"file":"cdk.umd.js","sources":["../../../../../src/cdk/version.ts","../../../../../src/cdk/public-api.ts","../../../../../src/cdk/index.ts"],"sourcesContent":["/**\n * @license\n * Copyright Google LLC All Rights Reserved.\n *\n * Use of this source code is governed by an MIT-style license that can be\n * found in the LICENSE file at https://angular.io/license\n */\n\nimport {Version} from '@angular/core';\n\n/** Current version of the Angular Component Development Kit. */\nexport const VERSION = new Version('12.2. 9');\n","/**\n * @license\n * Copyright Google LLC All Rights Reserved.\n *\n * Use of this source code is governed by an MIT-style license that can be\n * found in the LICENSE file at https://angular.io/license\n */\n\nexport * from './version';\n","/**\n * @license\n * Copyright Google LLC All Rights Reserved.\n *\n * Use of this source code is governed by an MIT-style license that can be\n * found in the LICENSE file at https://angular.io/license\n */\n\nexport * from './public-api';\n"],"names":["Version"],"mappings":";;;;;;CAAA;;;;;;;CAUA;KACa,OAAO,GAAG,IAAIA,YAAO,CAAC,mBAAmB;;CCXtD;;;;;;;;CCAA;;;;;;;;;;;;;;;;"}1 {"version":3,"file":"cdk.umd.js","sources":["../../../../../src/cdk/version.ts","../../../../../src/cdk/public-api.ts","../../../../../src/cdk/index.ts"],"sourcesContent":["/**\n * @license\n * Copyright Google LLC All Rights Reserved.\n *\n * Use of this source code is governed by an MIT-style license that can be\n * found in the LICENSE file at https://angular.io/license\n */\n\nimport {Version} from '@angular/core';\n\n/** Current version of the Angular Component Development Kit. */\nexport const VERSION = new Version('12.2.10');\n","/**\n * @license\n * Copyright Google LLC All Rights Reserved.\n *\n * Use of this source code is governed by an MIT-style license that can be\n * found in the LICENSE file at https://angular.io/license\n */\n\nexport * from './version';\n","/**\n * @license\n * Copyright Google LLC All Rights Reserved.\n *\n * Use of this source code is governed by an MIT-style license that can be\n * found in the LICENSE file at https://angular.io/license\n */\n\nexport * from './public-api';\n"],"names":["Version"],"mappings":";;;;;;CAAA;;;;;;;CAUA;KACa,OAAO,GAAG,IAAIA,YAAO,CAAC,mBAAmB;;CCXtD;;;;;;;;CCAA;;;;;;;;;;;;;;;;"} -
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 } -
trip-planner-front/node_modules/@angular/cdk/esm2015/version.js
r6a3a178 rfa375fe 8 8 import { Version } from '@angular/core'; 9 9 /** Current version of the Angular Component Development Kit. */ 10 export const VERSION = new Version('12.2. 9');10 export const VERSION = new Version('12.2.10'); 11 11 //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoidmVyc2lvbi5qcyIsInNvdXJjZVJvb3QiOiIiLCJzb3VyY2VzIjpbIi4uLy4uLy4uLy4uLy4uL3NyYy9jZGsvdmVyc2lvbi50cyJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiQUFBQTs7Ozs7O0dBTUc7QUFFSCxPQUFPLEVBQUMsT0FBTyxFQUFDLE1BQU0sZUFBZSxDQUFDO0FBRXRDLGdFQUFnRTtBQUNoRSxNQUFNLENBQUMsTUFBTSxPQUFPLEdBQUcsSUFBSSxPQUFPLENBQUMsbUJBQW1CLENBQUMsQ0FBQyIsInNvdXJjZXNDb250ZW50IjpbIi8qKlxuICogQGxpY2Vuc2VcbiAqIENvcHlyaWdodCBHb29nbGUgTExDIEFsbCBSaWdodHMgUmVzZXJ2ZWQuXG4gKlxuICogVXNlIG9mIHRoaXMgc291cmNlIGNvZGUgaXMgZ292ZXJuZWQgYnkgYW4gTUlULXN0eWxlIGxpY2Vuc2UgdGhhdCBjYW4gYmVcbiAqIGZvdW5kIGluIHRoZSBMSUNFTlNFIGZpbGUgYXQgaHR0cHM6Ly9hbmd1bGFyLmlvL2xpY2Vuc2VcbiAqL1xuXG5pbXBvcnQge1ZlcnNpb259IGZyb20gJ0Bhbmd1bGFyL2NvcmUnO1xuXG4vKiogQ3VycmVudCB2ZXJzaW9uIG9mIHRoZSBBbmd1bGFyIENvbXBvbmVudCBEZXZlbG9wbWVudCBLaXQuICovXG5leHBvcnQgY29uc3QgVkVSU0lPTiA9IG5ldyBWZXJzaW9uKCcwLjAuMC1QTEFDRUhPTERFUicpO1xuIl19 -
trip-planner-front/node_modules/@angular/cdk/fesm2015/cdk.js
r6a3a178 rfa375fe 9 9 */ 10 10 /** Current version of the Angular Component Development Kit. */ 11 const VERSION = new Version('12.2. 9');11 const VERSION = new Version('12.2.10'); 12 12 13 13 /** -
trip-planner-front/node_modules/@angular/cdk/fesm2015/cdk.js.map
r6a3a178 rfa375fe 1 {"version":3,"file":"cdk.js","sources":["../../../../../../src/cdk/version.ts","../../../../../../src/cdk/public-api.ts","../../../../../../src/cdk/index.ts"],"sourcesContent":["/**\n * @license\n * Copyright Google LLC All Rights Reserved.\n *\n * Use of this source code is governed by an MIT-style license that can be\n * found in the LICENSE file at https://angular.io/license\n */\n\nimport {Version} from '@angular/core';\n\n/** Current version of the Angular Component Development Kit. */\nexport const VERSION = new Version('12.2. 9');\n","/**\n * @license\n * Copyright Google LLC All Rights Reserved.\n *\n * Use of this source code is governed by an MIT-style license that can be\n * found in the LICENSE file at https://angular.io/license\n */\n\nexport * from './version';\n","/**\n * @license\n * Copyright Google LLC All Rights Reserved.\n *\n * Use of this source code is governed by an MIT-style license that can be\n * found in the LICENSE file at https://angular.io/license\n */\n\nexport * from './public-api';\n"],"names":[],"mappings":";;AAAA;;;;;;;AAUA;MACa,OAAO,GAAG,IAAI,OAAO,CAAC,mBAAmB;;ACXtD;;;;;;;;ACAA;;;;;;;;;;"}1 {"version":3,"file":"cdk.js","sources":["../../../../../../src/cdk/version.ts","../../../../../../src/cdk/public-api.ts","../../../../../../src/cdk/index.ts"],"sourcesContent":["/**\n * @license\n * Copyright Google LLC All Rights Reserved.\n *\n * Use of this source code is governed by an MIT-style license that can be\n * found in the LICENSE file at https://angular.io/license\n */\n\nimport {Version} from '@angular/core';\n\n/** Current version of the Angular Component Development Kit. */\nexport const VERSION = new Version('12.2.10');\n","/**\n * @license\n * Copyright Google LLC All Rights Reserved.\n *\n * Use of this source code is governed by an MIT-style license that can be\n * found in the LICENSE file at https://angular.io/license\n */\n\nexport * from './version';\n","/**\n * @license\n * Copyright Google LLC All Rights Reserved.\n *\n * Use of this source code is governed by an MIT-style license that can be\n * found in the LICENSE file at https://angular.io/license\n */\n\nexport * from './public-api';\n"],"names":[],"mappings":";;AAAA;;;;;;;AAUA;MACa,OAAO,GAAG,IAAI,OAAO,CAAC,mBAAmB;;ACXtD;;;;;;;;ACAA;;;;;;;;;;"} -
trip-planner-front/node_modules/@angular/cdk/package.json
r6a3a178 rfa375fe 1 1 { 2 2 "name": "@angular/cdk", 3 "version": "12.2. 9",3 "version": "12.2.10", 4 4 "description": "Angular Material Component Development Kit", 5 5 "repository": { -
trip-planner-front/node_modules/@angular/cdk/schematics/ng-add/index.js
r6a3a178 rfa375fe 29 29 // `@schematics/angular`, we use tilde instead of caret. This is default for Angular 30 30 // dependencies in new CLI projects. 31 package_config_1.addPackageToPackageJson(host, '@angular/cdk', `~12.2. 9`);31 package_config_1.addPackageToPackageJson(host, '@angular/cdk', `~12.2.10`); 32 32 // Add a task to run the package manager. This is necessary because we updated the 33 33 // workspace "package.json" file and we want lock files to reflect the new version range. -
trip-planner-front/node_modules/@angular/cdk/schematics/ng-add/index.mjs
r6a3a178 rfa375fe 29 29 // `@schematics/angular`, we use tilde instead of caret. This is default for Angular 30 30 // dependencies in new CLI projects. 31 package_config_1.addPackageToPackageJson(host, '@angular/cdk', `~12.2. 9`);31 package_config_1.addPackageToPackageJson(host, '@angular/cdk', `~12.2.10`); 32 32 // Add a task to run the package manager. This is necessary because we updated the 33 33 // workspace "package.json" file and we want lock files to reflect the new version range.
Note:
See TracChangeset
for help on using the changeset viewer.