windows-plus-utilities 0.0.40 → 0.0.41
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/context-menu/components/context-menu/context-menu.component.d.ts +34 -0
- package/context-menu/context-menu.module.d.ts +8 -0
- package/context-menu/index.d.ts +5 -0
- package/context-menu/public-api.d.ts +4 -0
- package/context-menu/util/interface/items/context-menu-items.interface.d.ts +8 -0
- package/context-menu/util/interface/position/context-menu-positions.interface.d.ts +8 -0
- package/esm2020/context-menu/components/context-menu/context-menu.component.mjs +51 -0
- package/esm2020/context-menu/context-menu.module.mjs +24 -0
- package/esm2020/context-menu/public-api.mjs +8 -0
- package/esm2020/context-menu/util/interface/items/context-menu-items.interface.mjs +2 -0
- package/esm2020/context-menu/util/interface/position/context-menu-positions.interface.mjs +2 -0
- package/esm2020/context-menu/windows-plus-utilities-context-menu.mjs +5 -0
- package/fesm2015/windows-plus-utilities-context-menu.mjs +83 -0
- package/fesm2015/windows-plus-utilities-context-menu.mjs.map +1 -0
- package/fesm2020/windows-plus-utilities-context-menu.mjs +83 -0
- package/fesm2020/windows-plus-utilities-context-menu.mjs.map +1 -0
- package/package.json +9 -1
|
@@ -0,0 +1,34 @@
|
|
|
1
|
+
import { ContextMenuItem } from '../../public-api';
|
|
2
|
+
import { ContextMenuPosition } from '../../util/interface/position/context-menu-positions.interface';
|
|
3
|
+
import * as i0 from "@angular/core";
|
|
4
|
+
export declare class ContextMenuComponent {
|
|
5
|
+
/**
|
|
6
|
+
* @description an array containing the context menu items to be displayed
|
|
7
|
+
*/
|
|
8
|
+
items: ContextMenuItem[];
|
|
9
|
+
/**
|
|
10
|
+
* @description an object containing the required context menu position
|
|
11
|
+
*/
|
|
12
|
+
positions: ContextMenuPosition;
|
|
13
|
+
/**
|
|
14
|
+
* @description indicates whether the context menu is being shown
|
|
15
|
+
*/
|
|
16
|
+
showContextMenu: boolean;
|
|
17
|
+
/**
|
|
18
|
+
* @author Alex Hodson
|
|
19
|
+
* @description toggles the component member which indicates the context menu visibility
|
|
20
|
+
*/
|
|
21
|
+
toggleContextMenu(): void;
|
|
22
|
+
/**
|
|
23
|
+
* @author Alex Hodson
|
|
24
|
+
* @description handles a click outside of the context menu which will toggle the context menu display
|
|
25
|
+
*/
|
|
26
|
+
documentClick(): void;
|
|
27
|
+
/**
|
|
28
|
+
* @author Alex Hodson
|
|
29
|
+
* @description handles the escape button being typed which will toggle the context menu display
|
|
30
|
+
*/
|
|
31
|
+
escKeyClick(): void;
|
|
32
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<ContextMenuComponent, never>;
|
|
33
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<ContextMenuComponent, "wp-context-menu", never, { "items": "items"; "positions": "positions"; }, {}, never, never, false, never>;
|
|
34
|
+
}
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
import * as i0 from "@angular/core";
|
|
2
|
+
import * as i1 from "./components/context-menu/context-menu.component";
|
|
3
|
+
import * as i2 from "@angular/common";
|
|
4
|
+
export declare class ContextMenuModule {
|
|
5
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<ContextMenuModule, never>;
|
|
6
|
+
static ɵmod: i0.ɵɵNgModuleDeclaration<ContextMenuModule, [typeof i1.ContextMenuComponent], [typeof i2.CommonModule], [typeof i1.ContextMenuComponent]>;
|
|
7
|
+
static ɵinj: i0.ɵɵInjectorDeclaration<ContextMenuModule>;
|
|
8
|
+
}
|
|
@@ -0,0 +1,51 @@
|
|
|
1
|
+
import { Component, HostListener, Input } from '@angular/core';
|
|
2
|
+
import * as i0 from "@angular/core";
|
|
3
|
+
import * as i1 from "@angular/common";
|
|
4
|
+
export class ContextMenuComponent {
|
|
5
|
+
constructor() {
|
|
6
|
+
/**
|
|
7
|
+
* @description indicates whether the context menu is being shown
|
|
8
|
+
*/
|
|
9
|
+
this.showContextMenu = false;
|
|
10
|
+
}
|
|
11
|
+
/**
|
|
12
|
+
* @author Alex Hodson
|
|
13
|
+
* @description toggles the component member which indicates the context menu visibility
|
|
14
|
+
*/
|
|
15
|
+
toggleContextMenu() {
|
|
16
|
+
this.showContextMenu = !this.showContextMenu;
|
|
17
|
+
}
|
|
18
|
+
/**
|
|
19
|
+
* @author Alex Hodson
|
|
20
|
+
* @description handles a click outside of the context menu which will toggle the context menu display
|
|
21
|
+
*/
|
|
22
|
+
documentClick() {
|
|
23
|
+
if (this.showContextMenu)
|
|
24
|
+
this.toggleContextMenu();
|
|
25
|
+
}
|
|
26
|
+
/**
|
|
27
|
+
* @author Alex Hodson
|
|
28
|
+
* @description handles the escape button being typed which will toggle the context menu display
|
|
29
|
+
*/
|
|
30
|
+
escKeyClick() {
|
|
31
|
+
if (this.showContextMenu)
|
|
32
|
+
this.toggleContextMenu();
|
|
33
|
+
}
|
|
34
|
+
}
|
|
35
|
+
ContextMenuComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.1.2", ngImport: i0, type: ContextMenuComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
|
|
36
|
+
ContextMenuComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "15.1.2", type: ContextMenuComponent, selector: "wp-context-menu", inputs: { items: "items", positions: "positions" }, host: { listeners: { "document:click": "documentClick()", "document:keyup.escape": "escKeyClick()" } }, ngImport: i0, template: "<div id=\"context-menu\" [ngClass]=\"{ 'show': showContextMenu }\" [ngStyle]=\"positions\">\n\t<div id=\"context-menu-container\" class=\"context-menu\">\n\t\t<ul class=\"menu\">\n\t\t\t<li class=\"text-grey\">Edit</li>\n\t\t\t<li class=\"text-grey\">Delete</li>\n\t\t</ul>\n\t</div>\n</div>", styles: ["#context-menu.show{display:block;position:absolute;left:0;right:0}#context-menu{display:none;position:relative;max-width:100px;width:100px}#context-menu #context-menu-container{border:1px solid var(--wp-lightGrey);background:#FFF;width:100%;box-shadow:0 8px 16px #0000004d}#context-menu #context-menu-container ul{list-style-type:none;padding:0;margin:0}#context-menu #context-menu-container ul li{padding:.5rem 1rem;border-bottom:1px solid var(--wp-lightGrey)}#context-menu #context-menu-container ul li:hover{background:var(--wp-lightGrey);cursor:pointer}\n"], dependencies: [{ kind: "directive", type: i1.NgClass, selector: "[ngClass]", inputs: ["class", "ngClass"] }, { kind: "directive", type: i1.NgStyle, selector: "[ngStyle]", inputs: ["ngStyle"] }] });
|
|
37
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.1.2", ngImport: i0, type: ContextMenuComponent, decorators: [{
|
|
38
|
+
type: Component,
|
|
39
|
+
args: [{ selector: 'wp-context-menu', template: "<div id=\"context-menu\" [ngClass]=\"{ 'show': showContextMenu }\" [ngStyle]=\"positions\">\n\t<div id=\"context-menu-container\" class=\"context-menu\">\n\t\t<ul class=\"menu\">\n\t\t\t<li class=\"text-grey\">Edit</li>\n\t\t\t<li class=\"text-grey\">Delete</li>\n\t\t</ul>\n\t</div>\n</div>", styles: ["#context-menu.show{display:block;position:absolute;left:0;right:0}#context-menu{display:none;position:relative;max-width:100px;width:100px}#context-menu #context-menu-container{border:1px solid var(--wp-lightGrey);background:#FFF;width:100%;box-shadow:0 8px 16px #0000004d}#context-menu #context-menu-container ul{list-style-type:none;padding:0;margin:0}#context-menu #context-menu-container ul li{padding:.5rem 1rem;border-bottom:1px solid var(--wp-lightGrey)}#context-menu #context-menu-container ul li:hover{background:var(--wp-lightGrey);cursor:pointer}\n"] }]
|
|
40
|
+
}], propDecorators: { items: [{
|
|
41
|
+
type: Input
|
|
42
|
+
}], positions: [{
|
|
43
|
+
type: Input
|
|
44
|
+
}], documentClick: [{
|
|
45
|
+
type: HostListener,
|
|
46
|
+
args: ['document:click']
|
|
47
|
+
}], escKeyClick: [{
|
|
48
|
+
type: HostListener,
|
|
49
|
+
args: ['document:keyup.escape']
|
|
50
|
+
}] } });
|
|
51
|
+
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiY29udGV4dC1tZW51LmNvbXBvbmVudC5qcyIsInNvdXJjZVJvb3QiOiIiLCJzb3VyY2VzIjpbIi4uLy4uLy4uLy4uLy4uLy4uL3Byb2plY3RzL3dpbmRvd3MtcGx1cy11dGlsaXRpZXMvY29udGV4dC1tZW51L2NvbXBvbmVudHMvY29udGV4dC1tZW51L2NvbnRleHQtbWVudS5jb21wb25lbnQudHMiLCIuLi8uLi8uLi8uLi8uLi8uLi9wcm9qZWN0cy93aW5kb3dzLXBsdXMtdXRpbGl0aWVzL2NvbnRleHQtbWVudS9jb21wb25lbnRzL2NvbnRleHQtbWVudS9jb250ZXh0LW1lbnUuY29tcG9uZW50Lmh0bWwiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6IkFBQUEsT0FBTyxFQUFFLFNBQVMsRUFBRSxZQUFZLEVBQUUsS0FBSyxFQUFFLE1BQU0sZUFBZSxDQUFDOzs7QUFTL0QsTUFBTSxPQUFPLG9CQUFvQjtJQUxqQztRQWNDOztXQUVHO1FBQ0gsb0JBQWUsR0FBWSxLQUFLLENBQUE7S0F5QmhDO0lBeEJBOzs7T0FHRztJQUNILGlCQUFpQjtRQUNoQixJQUFJLENBQUMsZUFBZSxHQUFHLENBQUMsSUFBSSxDQUFDLGVBQWUsQ0FBQTtJQUM3QyxDQUFDO0lBQ0Q7OztPQUdHO0lBRUYsYUFBYTtRQUNYLElBQUksSUFBSSxDQUFDLGVBQWU7WUFBRSxJQUFJLENBQUMsaUJBQWlCLEVBQUUsQ0FBQTtJQUNwRCxDQUFDO0lBRUY7OztPQUdHO0lBRUYsV0FBVztRQUNULElBQUksSUFBSSxDQUFDLGVBQWU7WUFBRSxJQUFJLENBQUMsaUJBQWlCLEVBQUUsQ0FBQTtJQUNwRCxDQUFDOztpSEFwQ1Usb0JBQW9CO3FHQUFwQixvQkFBb0IsbU5DVGpDLHFTQU9NOzJGREVPLG9CQUFvQjtrQkFMaEMsU0FBUzsrQkFDRSxpQkFBaUI7OEJBUW5CLEtBQUs7c0JBQWIsS0FBSztnQkFJRyxTQUFTO3NCQUFqQixLQUFLO2dCQWlCTCxhQUFhO3NCQURiLFlBQVk7dUJBQUMsZ0JBQWdCO2dCQVU3QixXQUFXO3NCQURWLFlBQVk7dUJBQUMsdUJBQXVCIiwic291cmNlc0NvbnRlbnQiOlsiaW1wb3J0IHsgQ29tcG9uZW50LCBIb3N0TGlzdGVuZXIsIElucHV0IH0gZnJvbSAnQGFuZ3VsYXIvY29yZSc7XG5pbXBvcnQgeyBDb250ZXh0TWVudUl0ZW0gfSBmcm9tICcuLi8uLi9wdWJsaWMtYXBpJ1xuaW1wb3J0IHsgQ29udGV4dE1lbnVQb3NpdGlvbiB9IGZyb20gJy4uLy4uL3V0aWwvaW50ZXJmYWNlL3Bvc2l0aW9uL2NvbnRleHQtbWVudS1wb3NpdGlvbnMuaW50ZXJmYWNlJ1xuXG5AQ29tcG9uZW50KHtcbiAgc2VsZWN0b3I6ICd3cC1jb250ZXh0LW1lbnUnLFxuICB0ZW1wbGF0ZVVybDogJy4vY29udGV4dC1tZW51LmNvbXBvbmVudC5odG1sJyxcbiAgc3R5bGVVcmxzOiBbJy4vY29udGV4dC1tZW51LmNvbXBvbmVudC5zYXNzJ11cbn0pXG5leHBvcnQgY2xhc3MgQ29udGV4dE1lbnVDb21wb25lbnQge1xuXHQvKipcblx0ICogQGRlc2NyaXB0aW9uIGFuIGFycmF5IGNvbnRhaW5pbmcgdGhlIGNvbnRleHQgbWVudSBpdGVtcyB0byBiZSBkaXNwbGF5ZWRcblx0ICovXG5cdEBJbnB1dCgpIGl0ZW1zOiBDb250ZXh0TWVudUl0ZW1bXVxuXHQvKipcblx0ICogQGRlc2NyaXB0aW9uIGFuIG9iamVjdCBjb250YWluaW5nIHRoZSByZXF1aXJlZCBjb250ZXh0IG1lbnUgcG9zaXRpb25cblx0ICovXG5cdEBJbnB1dCgpIHBvc2l0aW9uczogQ29udGV4dE1lbnVQb3NpdGlvblxuXHQvKipcblx0ICogQGRlc2NyaXB0aW9uIGluZGljYXRlcyB3aGV0aGVyIHRoZSBjb250ZXh0IG1lbnUgaXMgYmVpbmcgc2hvd24gXG5cdCAqL1xuXHRzaG93Q29udGV4dE1lbnU6IGJvb2xlYW4gPSBmYWxzZVxuXHQvKipcblx0ICogQGF1dGhvciBBbGV4IEhvZHNvblxuXHQgKiBAZGVzY3JpcHRpb24gdG9nZ2xlcyB0aGUgY29tcG9uZW50IG1lbWJlciB3aGljaCBpbmRpY2F0ZXMgdGhlIGNvbnRleHQgbWVudSB2aXNpYmlsaXR5XG5cdCAqL1xuXHR0b2dnbGVDb250ZXh0TWVudSgpOiB2b2lkIHtcblx0XHR0aGlzLnNob3dDb250ZXh0TWVudSA9ICF0aGlzLnNob3dDb250ZXh0TWVudVxuXHR9XG5cdC8qKlxuXHQgKiBAYXV0aG9yIEFsZXggSG9kc29uXG5cdCAqIEBkZXNjcmlwdGlvbiBoYW5kbGVzIGEgY2xpY2sgb3V0c2lkZSBvZiB0aGUgY29udGV4dCBtZW51IHdoaWNoIHdpbGwgdG9nZ2xlIHRoZSBjb250ZXh0IG1lbnUgZGlzcGxheVxuXHQgKi9cblx0QEhvc3RMaXN0ZW5lcignZG9jdW1lbnQ6Y2xpY2snKVxuICBkb2N1bWVudENsaWNrKCk6IHZvaWQge1xuICAgIGlmICh0aGlzLnNob3dDb250ZXh0TWVudSkgdGhpcy50b2dnbGVDb250ZXh0TWVudSgpXG4gIH1cblxuXHQvKipcblx0ICogQGF1dGhvciBBbGV4IEhvZHNvblxuXHQgKiBAZGVzY3JpcHRpb24gaGFuZGxlcyB0aGUgZXNjYXBlIGJ1dHRvbiBiZWluZyB0eXBlZCB3aGljaCB3aWxsIHRvZ2dsZSB0aGUgY29udGV4dCBtZW51IGRpc3BsYXlcblx0ICovXG4gIEBIb3N0TGlzdGVuZXIoJ2RvY3VtZW50OmtleXVwLmVzY2FwZScpXG4gIGVzY0tleUNsaWNrKCk6IHZvaWQge1xuICAgIGlmICh0aGlzLnNob3dDb250ZXh0TWVudSkgdGhpcy50b2dnbGVDb250ZXh0TWVudSgpXG4gIH1cbn1cbiIsIjxkaXYgaWQ9XCJjb250ZXh0LW1lbnVcIiBbbmdDbGFzc109XCJ7ICdzaG93Jzogc2hvd0NvbnRleHRNZW51IH1cIiBbbmdTdHlsZV09XCJwb3NpdGlvbnNcIj5cblx0PGRpdiBpZD1cImNvbnRleHQtbWVudS1jb250YWluZXJcIiBjbGFzcz1cImNvbnRleHQtbWVudVwiPlxuXHRcdDx1bCBjbGFzcz1cIm1lbnVcIj5cblx0XHRcdDxsaSBjbGFzcz1cInRleHQtZ3JleVwiPkVkaXQ8L2xpPlxuXHRcdFx0PGxpIGNsYXNzPVwidGV4dC1ncmV5XCI+RGVsZXRlPC9saT5cblx0XHQ8L3VsPlxuXHQ8L2Rpdj5cbjwvZGl2PiJdfQ==
|
|
@@ -0,0 +1,24 @@
|
|
|
1
|
+
import { NgModule } from '@angular/core';
|
|
2
|
+
import { CommonModule } from '@angular/common';
|
|
3
|
+
import { ContextMenuComponent } from './components/context-menu/context-menu.component';
|
|
4
|
+
import * as i0 from "@angular/core";
|
|
5
|
+
export class ContextMenuModule {
|
|
6
|
+
}
|
|
7
|
+
ContextMenuModule.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.1.2", ngImport: i0, type: ContextMenuModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
|
|
8
|
+
ContextMenuModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "15.1.2", ngImport: i0, type: ContextMenuModule, declarations: [ContextMenuComponent], imports: [CommonModule], exports: [ContextMenuComponent] });
|
|
9
|
+
ContextMenuModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "15.1.2", ngImport: i0, type: ContextMenuModule, imports: [CommonModule] });
|
|
10
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.1.2", ngImport: i0, type: ContextMenuModule, decorators: [{
|
|
11
|
+
type: NgModule,
|
|
12
|
+
args: [{
|
|
13
|
+
declarations: [
|
|
14
|
+
ContextMenuComponent
|
|
15
|
+
],
|
|
16
|
+
imports: [
|
|
17
|
+
CommonModule
|
|
18
|
+
],
|
|
19
|
+
exports: [
|
|
20
|
+
ContextMenuComponent
|
|
21
|
+
]
|
|
22
|
+
}]
|
|
23
|
+
}] });
|
|
24
|
+
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiY29udGV4dC1tZW51Lm1vZHVsZS5qcyIsInNvdXJjZVJvb3QiOiIiLCJzb3VyY2VzIjpbIi4uLy4uLy4uLy4uL3Byb2plY3RzL3dpbmRvd3MtcGx1cy11dGlsaXRpZXMvY29udGV4dC1tZW51L2NvbnRleHQtbWVudS5tb2R1bGUudHMiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6IkFBQUEsT0FBTyxFQUFFLFFBQVEsRUFBRSxNQUFNLGVBQWUsQ0FBQztBQUN6QyxPQUFPLEVBQUUsWUFBWSxFQUFFLE1BQU0saUJBQWlCLENBQUM7QUFDL0MsT0FBTyxFQUFFLG9CQUFvQixFQUFFLE1BQU0sa0RBQWtELENBQUM7O0FBZXhGLE1BQU0sT0FBTyxpQkFBaUI7OzhHQUFqQixpQkFBaUI7K0dBQWpCLGlCQUFpQixpQkFUMUIsb0JBQW9CLGFBR3BCLFlBQVksYUFHWixvQkFBb0I7K0dBR1gsaUJBQWlCLFlBTjFCLFlBQVk7MkZBTUgsaUJBQWlCO2tCQVg3QixRQUFRO21CQUFDO29CQUNSLFlBQVksRUFBRTt3QkFDWixvQkFBb0I7cUJBQ3JCO29CQUNELE9BQU8sRUFBRTt3QkFDUCxZQUFZO3FCQUNiO29CQUNGLE9BQU8sRUFBRTt3QkFDTixvQkFBb0I7cUJBQ3RCO2lCQUNEIiwic291cmNlc0NvbnRlbnQiOlsiaW1wb3J0IHsgTmdNb2R1bGUgfSBmcm9tICdAYW5ndWxhci9jb3JlJztcbmltcG9ydCB7IENvbW1vbk1vZHVsZSB9IGZyb20gJ0Bhbmd1bGFyL2NvbW1vbic7XG5pbXBvcnQgeyBDb250ZXh0TWVudUNvbXBvbmVudCB9IGZyb20gJy4vY29tcG9uZW50cy9jb250ZXh0LW1lbnUvY29udGV4dC1tZW51LmNvbXBvbmVudCc7XG5cblxuXG5ATmdNb2R1bGUoe1xuICBkZWNsYXJhdGlvbnM6IFtcbiAgICBDb250ZXh0TWVudUNvbXBvbmVudFxuICBdLFxuICBpbXBvcnRzOiBbXG4gICAgQ29tbW9uTW9kdWxlXG4gIF0sXG5cdGV4cG9ydHM6IFtcbiAgICBDb250ZXh0TWVudUNvbXBvbmVudFxuXHRdXG59KVxuZXhwb3J0IGNsYXNzIENvbnRleHRNZW51TW9kdWxlIHsgfVxuIl19
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
/*
|
|
2
|
+
* Public API Surface of windows-plus-utilities
|
|
3
|
+
*/
|
|
4
|
+
export * from './components/context-menu/context-menu.component';
|
|
5
|
+
export * from './context-menu.module';
|
|
6
|
+
export * from './util/interface/items/context-menu-items.interface';
|
|
7
|
+
export * from './util/interface/position/context-menu-positions.interface';
|
|
8
|
+
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoicHVibGljLWFwaS5qcyIsInNvdXJjZVJvb3QiOiIiLCJzb3VyY2VzIjpbIi4uLy4uLy4uLy4uL3Byb2plY3RzL3dpbmRvd3MtcGx1cy11dGlsaXRpZXMvY29udGV4dC1tZW51L3B1YmxpYy1hcGkudHMiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6IkFBQUE7O0dBRUc7QUFFSCxjQUFjLGtEQUFrRCxDQUFDO0FBQ2pFLGNBQWMsdUJBQXVCLENBQUM7QUFDdEMsY0FBYyxxREFBcUQsQ0FBQTtBQUNuRSxjQUFjLDREQUE0RCxDQUFBIiwic291cmNlc0NvbnRlbnQiOlsiLypcclxuICogUHVibGljIEFQSSBTdXJmYWNlIG9mIHdpbmRvd3MtcGx1cy11dGlsaXRpZXNcclxuICovXHJcblxyXG5leHBvcnQgKiBmcm9tICcuL2NvbXBvbmVudHMvY29udGV4dC1tZW51L2NvbnRleHQtbWVudS5jb21wb25lbnQnO1xyXG5leHBvcnQgKiBmcm9tICcuL2NvbnRleHQtbWVudS5tb2R1bGUnO1xyXG5leHBvcnQgKiBmcm9tICcuL3V0aWwvaW50ZXJmYWNlL2l0ZW1zL2NvbnRleHQtbWVudS1pdGVtcy5pbnRlcmZhY2UnXHJcbmV4cG9ydCAqIGZyb20gJy4vdXRpbC9pbnRlcmZhY2UvcG9zaXRpb24vY29udGV4dC1tZW51LXBvc2l0aW9ucy5pbnRlcmZhY2UnXHJcbiJdfQ==
|
|
@@ -0,0 +1,2 @@
|
|
|
1
|
+
export {};
|
|
2
|
+
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiY29udGV4dC1tZW51LWl0ZW1zLmludGVyZmFjZS5qcyIsInNvdXJjZVJvb3QiOiIiLCJzb3VyY2VzIjpbIi4uLy4uLy4uLy4uLy4uLy4uLy4uL3Byb2plY3RzL3dpbmRvd3MtcGx1cy11dGlsaXRpZXMvY29udGV4dC1tZW51L3V0aWwvaW50ZXJmYWNlL2l0ZW1zL2NvbnRleHQtbWVudS1pdGVtcy5pbnRlcmZhY2UudHMiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6IiIsInNvdXJjZXNDb250ZW50IjpbIi8qKlxyXG4gKiBAYXV0aG9yIEFsZXggSG9kc29uXHJcbiAqIEBkZXNjcmlwdGlvbiBhbiBpbnRlcmZhY2Ugd2hpY2ggZGVmaW5lcyB0aGUgcmVxdWlyZWQgcHJvcGVydGllcyBmb3IgdGhlIGNvbnRleHQgbWVudSBpdGVtc1xyXG4gKi9cclxuZXhwb3J0IGludGVyZmFjZSBDb250ZXh0TWVudUl0ZW0ge1xyXG5cdCdsYWJlbCc6IHN0cmluZyxcclxuXHQnaGFuZGxlQ2xpY2snOiAoLi4uYXJnczogYW55W10pID0+IHZvaWRcclxufSJdfQ==
|
|
@@ -0,0 +1,2 @@
|
|
|
1
|
+
export {};
|
|
2
|
+
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiY29udGV4dC1tZW51LXBvc2l0aW9ucy5pbnRlcmZhY2UuanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi8uLi8uLi8uLi8uLi8uLi8uLi9wcm9qZWN0cy93aW5kb3dzLXBsdXMtdXRpbGl0aWVzL2NvbnRleHQtbWVudS91dGlsL2ludGVyZmFjZS9wb3NpdGlvbi9jb250ZXh0LW1lbnUtcG9zaXRpb25zLmludGVyZmFjZS50cyJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiIiwic291cmNlc0NvbnRlbnQiOlsiLyoqXHJcbiAqIEBhdXRob3IgQWxleCBIb2Rzb25cclxuICogQGRlc2NyaXB0aW9uIGFuIGludGVyZmFjZSB3aGljaCBkZWZpbmVzIHRoZSByZXF1aXJlZCBwcm9wZXJ0aWVzIHdoZW4gZGVmaW5pbmcgdGhlIGNvbnRleHQgbWVudXMgcG9zaXRpb25cclxuICovXHJcbmV4cG9ydCBpbnRlcmZhY2UgQ29udGV4dE1lbnVQb3NpdGlvbiB7XHJcblx0J2xlZnQucHgnOiBudW1iZXIsXHJcblx0J3RvcC5weCc6IG51bWJlclxyXG59Il19
|
|
@@ -0,0 +1,5 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Generated bundle index. Do not edit.
|
|
3
|
+
*/
|
|
4
|
+
export * from './public-api';
|
|
5
|
+
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoid2luZG93cy1wbHVzLXV0aWxpdGllcy1jb250ZXh0LW1lbnUuanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi8uLi8uLi8uLi9wcm9qZWN0cy93aW5kb3dzLXBsdXMtdXRpbGl0aWVzL2NvbnRleHQtbWVudS93aW5kb3dzLXBsdXMtdXRpbGl0aWVzLWNvbnRleHQtbWVudS50cyJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiQUFBQTs7R0FFRztBQUVILGNBQWMsY0FBYyxDQUFDIiwic291cmNlc0NvbnRlbnQiOlsiLyoqXG4gKiBHZW5lcmF0ZWQgYnVuZGxlIGluZGV4LiBEbyBub3QgZWRpdC5cbiAqL1xuXG5leHBvcnQgKiBmcm9tICcuL3B1YmxpYy1hcGknO1xuIl19
|
|
@@ -0,0 +1,83 @@
|
|
|
1
|
+
import * as i0 from '@angular/core';
|
|
2
|
+
import { Component, Input, HostListener, NgModule } from '@angular/core';
|
|
3
|
+
import * as i1 from '@angular/common';
|
|
4
|
+
import { CommonModule } from '@angular/common';
|
|
5
|
+
|
|
6
|
+
class ContextMenuComponent {
|
|
7
|
+
constructor() {
|
|
8
|
+
/**
|
|
9
|
+
* @description indicates whether the context menu is being shown
|
|
10
|
+
*/
|
|
11
|
+
this.showContextMenu = false;
|
|
12
|
+
}
|
|
13
|
+
/**
|
|
14
|
+
* @author Alex Hodson
|
|
15
|
+
* @description toggles the component member which indicates the context menu visibility
|
|
16
|
+
*/
|
|
17
|
+
toggleContextMenu() {
|
|
18
|
+
this.showContextMenu = !this.showContextMenu;
|
|
19
|
+
}
|
|
20
|
+
/**
|
|
21
|
+
* @author Alex Hodson
|
|
22
|
+
* @description handles a click outside of the context menu which will toggle the context menu display
|
|
23
|
+
*/
|
|
24
|
+
documentClick() {
|
|
25
|
+
if (this.showContextMenu)
|
|
26
|
+
this.toggleContextMenu();
|
|
27
|
+
}
|
|
28
|
+
/**
|
|
29
|
+
* @author Alex Hodson
|
|
30
|
+
* @description handles the escape button being typed which will toggle the context menu display
|
|
31
|
+
*/
|
|
32
|
+
escKeyClick() {
|
|
33
|
+
if (this.showContextMenu)
|
|
34
|
+
this.toggleContextMenu();
|
|
35
|
+
}
|
|
36
|
+
}
|
|
37
|
+
ContextMenuComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.1.2", ngImport: i0, type: ContextMenuComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
|
|
38
|
+
ContextMenuComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "15.1.2", type: ContextMenuComponent, selector: "wp-context-menu", inputs: { items: "items", positions: "positions" }, host: { listeners: { "document:click": "documentClick()", "document:keyup.escape": "escKeyClick()" } }, ngImport: i0, template: "<div id=\"context-menu\" [ngClass]=\"{ 'show': showContextMenu }\" [ngStyle]=\"positions\">\n\t<div id=\"context-menu-container\" class=\"context-menu\">\n\t\t<ul class=\"menu\">\n\t\t\t<li class=\"text-grey\">Edit</li>\n\t\t\t<li class=\"text-grey\">Delete</li>\n\t\t</ul>\n\t</div>\n</div>", styles: ["#context-menu.show{display:block;position:absolute;left:0;right:0}#context-menu{display:none;position:relative;max-width:100px;width:100px}#context-menu #context-menu-container{border:1px solid var(--wp-lightGrey);background:#FFF;width:100%;box-shadow:0 8px 16px #0000004d}#context-menu #context-menu-container ul{list-style-type:none;padding:0;margin:0}#context-menu #context-menu-container ul li{padding:.5rem 1rem;border-bottom:1px solid var(--wp-lightGrey)}#context-menu #context-menu-container ul li:hover{background:var(--wp-lightGrey);cursor:pointer}\n"], dependencies: [{ kind: "directive", type: i1.NgClass, selector: "[ngClass]", inputs: ["class", "ngClass"] }, { kind: "directive", type: i1.NgStyle, selector: "[ngStyle]", inputs: ["ngStyle"] }] });
|
|
39
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.1.2", ngImport: i0, type: ContextMenuComponent, decorators: [{
|
|
40
|
+
type: Component,
|
|
41
|
+
args: [{ selector: 'wp-context-menu', template: "<div id=\"context-menu\" [ngClass]=\"{ 'show': showContextMenu }\" [ngStyle]=\"positions\">\n\t<div id=\"context-menu-container\" class=\"context-menu\">\n\t\t<ul class=\"menu\">\n\t\t\t<li class=\"text-grey\">Edit</li>\n\t\t\t<li class=\"text-grey\">Delete</li>\n\t\t</ul>\n\t</div>\n</div>", styles: ["#context-menu.show{display:block;position:absolute;left:0;right:0}#context-menu{display:none;position:relative;max-width:100px;width:100px}#context-menu #context-menu-container{border:1px solid var(--wp-lightGrey);background:#FFF;width:100%;box-shadow:0 8px 16px #0000004d}#context-menu #context-menu-container ul{list-style-type:none;padding:0;margin:0}#context-menu #context-menu-container ul li{padding:.5rem 1rem;border-bottom:1px solid var(--wp-lightGrey)}#context-menu #context-menu-container ul li:hover{background:var(--wp-lightGrey);cursor:pointer}\n"] }]
|
|
42
|
+
}], propDecorators: { items: [{
|
|
43
|
+
type: Input
|
|
44
|
+
}], positions: [{
|
|
45
|
+
type: Input
|
|
46
|
+
}], documentClick: [{
|
|
47
|
+
type: HostListener,
|
|
48
|
+
args: ['document:click']
|
|
49
|
+
}], escKeyClick: [{
|
|
50
|
+
type: HostListener,
|
|
51
|
+
args: ['document:keyup.escape']
|
|
52
|
+
}] } });
|
|
53
|
+
|
|
54
|
+
class ContextMenuModule {
|
|
55
|
+
}
|
|
56
|
+
ContextMenuModule.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.1.2", ngImport: i0, type: ContextMenuModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
|
|
57
|
+
ContextMenuModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "15.1.2", ngImport: i0, type: ContextMenuModule, declarations: [ContextMenuComponent], imports: [CommonModule], exports: [ContextMenuComponent] });
|
|
58
|
+
ContextMenuModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "15.1.2", ngImport: i0, type: ContextMenuModule, imports: [CommonModule] });
|
|
59
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.1.2", ngImport: i0, type: ContextMenuModule, decorators: [{
|
|
60
|
+
type: NgModule,
|
|
61
|
+
args: [{
|
|
62
|
+
declarations: [
|
|
63
|
+
ContextMenuComponent
|
|
64
|
+
],
|
|
65
|
+
imports: [
|
|
66
|
+
CommonModule
|
|
67
|
+
],
|
|
68
|
+
exports: [
|
|
69
|
+
ContextMenuComponent
|
|
70
|
+
]
|
|
71
|
+
}]
|
|
72
|
+
}] });
|
|
73
|
+
|
|
74
|
+
/*
|
|
75
|
+
* Public API Surface of windows-plus-utilities
|
|
76
|
+
*/
|
|
77
|
+
|
|
78
|
+
/**
|
|
79
|
+
* Generated bundle index. Do not edit.
|
|
80
|
+
*/
|
|
81
|
+
|
|
82
|
+
export { ContextMenuComponent, ContextMenuModule };
|
|
83
|
+
//# sourceMappingURL=windows-plus-utilities-context-menu.mjs.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"windows-plus-utilities-context-menu.mjs","sources":["../../../projects/windows-plus-utilities/context-menu/components/context-menu/context-menu.component.ts","../../../projects/windows-plus-utilities/context-menu/components/context-menu/context-menu.component.html","../../../projects/windows-plus-utilities/context-menu/context-menu.module.ts","../../../projects/windows-plus-utilities/context-menu/public-api.ts","../../../projects/windows-plus-utilities/context-menu/windows-plus-utilities-context-menu.ts"],"sourcesContent":["import { Component, HostListener, Input } from '@angular/core';\nimport { ContextMenuItem } from '../../public-api'\nimport { ContextMenuPosition } from '../../util/interface/position/context-menu-positions.interface'\n\n@Component({\n selector: 'wp-context-menu',\n templateUrl: './context-menu.component.html',\n styleUrls: ['./context-menu.component.sass']\n})\nexport class ContextMenuComponent {\n\t/**\n\t * @description an array containing the context menu items to be displayed\n\t */\n\t@Input() items: ContextMenuItem[]\n\t/**\n\t * @description an object containing the required context menu position\n\t */\n\t@Input() positions: ContextMenuPosition\n\t/**\n\t * @description indicates whether the context menu is being shown \n\t */\n\tshowContextMenu: boolean = false\n\t/**\n\t * @author Alex Hodson\n\t * @description toggles the component member which indicates the context menu visibility\n\t */\n\ttoggleContextMenu(): void {\n\t\tthis.showContextMenu = !this.showContextMenu\n\t}\n\t/**\n\t * @author Alex Hodson\n\t * @description handles a click outside of the context menu which will toggle the context menu display\n\t */\n\t@HostListener('document:click')\n documentClick(): void {\n if (this.showContextMenu) this.toggleContextMenu()\n }\n\n\t/**\n\t * @author Alex Hodson\n\t * @description handles the escape button being typed which will toggle the context menu display\n\t */\n @HostListener('document:keyup.escape')\n escKeyClick(): void {\n if (this.showContextMenu) this.toggleContextMenu()\n }\n}\n","<div id=\"context-menu\" [ngClass]=\"{ 'show': showContextMenu }\" [ngStyle]=\"positions\">\n\t<div id=\"context-menu-container\" class=\"context-menu\">\n\t\t<ul class=\"menu\">\n\t\t\t<li class=\"text-grey\">Edit</li>\n\t\t\t<li class=\"text-grey\">Delete</li>\n\t\t</ul>\n\t</div>\n</div>","import { NgModule } from '@angular/core';\nimport { CommonModule } from '@angular/common';\nimport { ContextMenuComponent } from './components/context-menu/context-menu.component';\n\n\n\n@NgModule({\n declarations: [\n ContextMenuComponent\n ],\n imports: [\n CommonModule\n ],\n\texports: [\n ContextMenuComponent\n\t]\n})\nexport class ContextMenuModule { }\n","/*\r\n * Public API Surface of windows-plus-utilities\r\n */\r\n\r\nexport * from './components/context-menu/context-menu.component';\r\nexport * from './context-menu.module';\r\nexport * from './util/interface/items/context-menu-items.interface'\r\nexport * from './util/interface/position/context-menu-positions.interface'\r\n","/**\n * Generated bundle index. Do not edit.\n */\n\nexport * from './public-api';\n"],"names":[],"mappings":";;;;;MASa,oBAAoB,CAAA;AALjC,IAAA,WAAA,GAAA;AAcC;;AAEG;AACH,QAAA,IAAe,CAAA,eAAA,GAAY,KAAK,CAAA;KAyBhC;AAxBA;;;AAGG;IACH,iBAAiB,GAAA;AAChB,QAAA,IAAI,CAAC,eAAe,GAAG,CAAC,IAAI,CAAC,eAAe,CAAA;KAC5C;AACD;;;AAGG;IAEF,aAAa,GAAA;QACX,IAAI,IAAI,CAAC,eAAe;YAAE,IAAI,CAAC,iBAAiB,EAAE,CAAA;KACnD;AAEF;;;AAGG;IAEF,WAAW,GAAA;QACT,IAAI,IAAI,CAAC,eAAe;YAAE,IAAI,CAAC,iBAAiB,EAAE,CAAA;KACnD;;iHApCU,oBAAoB,EAAA,IAAA,EAAA,EAAA,EAAA,MAAA,EAAA,EAAA,CAAA,eAAA,CAAA,SAAA,EAAA,CAAA,CAAA;AAApB,oBAAA,CAAA,IAAA,GAAA,EAAA,CAAA,oBAAA,CAAA,EAAA,UAAA,EAAA,QAAA,EAAA,OAAA,EAAA,QAAA,EAAA,IAAA,EAAA,oBAAoB,mNCTjC,qSAOM,EAAA,MAAA,EAAA,CAAA,ijBAAA,CAAA,EAAA,YAAA,EAAA,CAAA,EAAA,IAAA,EAAA,WAAA,EAAA,IAAA,EAAA,EAAA,CAAA,OAAA,EAAA,QAAA,EAAA,WAAA,EAAA,MAAA,EAAA,CAAA,OAAA,EAAA,SAAA,CAAA,EAAA,EAAA,EAAA,IAAA,EAAA,WAAA,EAAA,IAAA,EAAA,EAAA,CAAA,OAAA,EAAA,QAAA,EAAA,WAAA,EAAA,MAAA,EAAA,CAAA,SAAA,CAAA,EAAA,CAAA,EAAA,CAAA,CAAA;2FDEO,oBAAoB,EAAA,UAAA,EAAA,CAAA;kBALhC,SAAS;+BACE,iBAAiB,EAAA,QAAA,EAAA,qSAAA,EAAA,MAAA,EAAA,CAAA,ijBAAA,CAAA,EAAA,CAAA;8BAQnB,KAAK,EAAA,CAAA;sBAAb,KAAK;gBAIG,SAAS,EAAA,CAAA;sBAAjB,KAAK;gBAiBL,aAAa,EAAA,CAAA;sBADb,YAAY;uBAAC,gBAAgB,CAAA;gBAU7B,WAAW,EAAA,CAAA;sBADV,YAAY;uBAAC,uBAAuB,CAAA;;;MEzB1B,iBAAiB,CAAA;;8GAAjB,iBAAiB,EAAA,IAAA,EAAA,EAAA,EAAA,MAAA,EAAA,EAAA,CAAA,eAAA,CAAA,QAAA,EAAA,CAAA,CAAA;AAAjB,iBAAA,CAAA,IAAA,GAAA,EAAA,CAAA,mBAAA,CAAA,EAAA,UAAA,EAAA,QAAA,EAAA,OAAA,EAAA,QAAA,EAAA,QAAA,EAAA,EAAA,EAAA,IAAA,EAAA,iBAAiB,EAT1B,YAAA,EAAA,CAAA,oBAAoB,CAGpB,EAAA,OAAA,EAAA,CAAA,YAAY,aAGZ,oBAAoB,CAAA,EAAA,CAAA,CAAA;AAGX,iBAAA,CAAA,IAAA,GAAA,EAAA,CAAA,mBAAA,CAAA,EAAA,UAAA,EAAA,QAAA,EAAA,OAAA,EAAA,QAAA,EAAA,QAAA,EAAA,EAAA,EAAA,IAAA,EAAA,iBAAiB,YAN1B,YAAY,CAAA,EAAA,CAAA,CAAA;2FAMH,iBAAiB,EAAA,UAAA,EAAA,CAAA;kBAX7B,QAAQ;AAAC,YAAA,IAAA,EAAA,CAAA;AACR,oBAAA,YAAY,EAAE;wBACZ,oBAAoB;AACrB,qBAAA;AACD,oBAAA,OAAO,EAAE;wBACP,YAAY;AACb,qBAAA;AACF,oBAAA,OAAO,EAAE;wBACN,oBAAoB;AACtB,qBAAA;iBACD,CAAA;;;AChBD;;AAEG;;ACFH;;AAEG;;;;"}
|
|
@@ -0,0 +1,83 @@
|
|
|
1
|
+
import * as i0 from '@angular/core';
|
|
2
|
+
import { Component, Input, HostListener, NgModule } from '@angular/core';
|
|
3
|
+
import * as i1 from '@angular/common';
|
|
4
|
+
import { CommonModule } from '@angular/common';
|
|
5
|
+
|
|
6
|
+
class ContextMenuComponent {
|
|
7
|
+
constructor() {
|
|
8
|
+
/**
|
|
9
|
+
* @description indicates whether the context menu is being shown
|
|
10
|
+
*/
|
|
11
|
+
this.showContextMenu = false;
|
|
12
|
+
}
|
|
13
|
+
/**
|
|
14
|
+
* @author Alex Hodson
|
|
15
|
+
* @description toggles the component member which indicates the context menu visibility
|
|
16
|
+
*/
|
|
17
|
+
toggleContextMenu() {
|
|
18
|
+
this.showContextMenu = !this.showContextMenu;
|
|
19
|
+
}
|
|
20
|
+
/**
|
|
21
|
+
* @author Alex Hodson
|
|
22
|
+
* @description handles a click outside of the context menu which will toggle the context menu display
|
|
23
|
+
*/
|
|
24
|
+
documentClick() {
|
|
25
|
+
if (this.showContextMenu)
|
|
26
|
+
this.toggleContextMenu();
|
|
27
|
+
}
|
|
28
|
+
/**
|
|
29
|
+
* @author Alex Hodson
|
|
30
|
+
* @description handles the escape button being typed which will toggle the context menu display
|
|
31
|
+
*/
|
|
32
|
+
escKeyClick() {
|
|
33
|
+
if (this.showContextMenu)
|
|
34
|
+
this.toggleContextMenu();
|
|
35
|
+
}
|
|
36
|
+
}
|
|
37
|
+
ContextMenuComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.1.2", ngImport: i0, type: ContextMenuComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
|
|
38
|
+
ContextMenuComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "15.1.2", type: ContextMenuComponent, selector: "wp-context-menu", inputs: { items: "items", positions: "positions" }, host: { listeners: { "document:click": "documentClick()", "document:keyup.escape": "escKeyClick()" } }, ngImport: i0, template: "<div id=\"context-menu\" [ngClass]=\"{ 'show': showContextMenu }\" [ngStyle]=\"positions\">\n\t<div id=\"context-menu-container\" class=\"context-menu\">\n\t\t<ul class=\"menu\">\n\t\t\t<li class=\"text-grey\">Edit</li>\n\t\t\t<li class=\"text-grey\">Delete</li>\n\t\t</ul>\n\t</div>\n</div>", styles: ["#context-menu.show{display:block;position:absolute;left:0;right:0}#context-menu{display:none;position:relative;max-width:100px;width:100px}#context-menu #context-menu-container{border:1px solid var(--wp-lightGrey);background:#FFF;width:100%;box-shadow:0 8px 16px #0000004d}#context-menu #context-menu-container ul{list-style-type:none;padding:0;margin:0}#context-menu #context-menu-container ul li{padding:.5rem 1rem;border-bottom:1px solid var(--wp-lightGrey)}#context-menu #context-menu-container ul li:hover{background:var(--wp-lightGrey);cursor:pointer}\n"], dependencies: [{ kind: "directive", type: i1.NgClass, selector: "[ngClass]", inputs: ["class", "ngClass"] }, { kind: "directive", type: i1.NgStyle, selector: "[ngStyle]", inputs: ["ngStyle"] }] });
|
|
39
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.1.2", ngImport: i0, type: ContextMenuComponent, decorators: [{
|
|
40
|
+
type: Component,
|
|
41
|
+
args: [{ selector: 'wp-context-menu', template: "<div id=\"context-menu\" [ngClass]=\"{ 'show': showContextMenu }\" [ngStyle]=\"positions\">\n\t<div id=\"context-menu-container\" class=\"context-menu\">\n\t\t<ul class=\"menu\">\n\t\t\t<li class=\"text-grey\">Edit</li>\n\t\t\t<li class=\"text-grey\">Delete</li>\n\t\t</ul>\n\t</div>\n</div>", styles: ["#context-menu.show{display:block;position:absolute;left:0;right:0}#context-menu{display:none;position:relative;max-width:100px;width:100px}#context-menu #context-menu-container{border:1px solid var(--wp-lightGrey);background:#FFF;width:100%;box-shadow:0 8px 16px #0000004d}#context-menu #context-menu-container ul{list-style-type:none;padding:0;margin:0}#context-menu #context-menu-container ul li{padding:.5rem 1rem;border-bottom:1px solid var(--wp-lightGrey)}#context-menu #context-menu-container ul li:hover{background:var(--wp-lightGrey);cursor:pointer}\n"] }]
|
|
42
|
+
}], propDecorators: { items: [{
|
|
43
|
+
type: Input
|
|
44
|
+
}], positions: [{
|
|
45
|
+
type: Input
|
|
46
|
+
}], documentClick: [{
|
|
47
|
+
type: HostListener,
|
|
48
|
+
args: ['document:click']
|
|
49
|
+
}], escKeyClick: [{
|
|
50
|
+
type: HostListener,
|
|
51
|
+
args: ['document:keyup.escape']
|
|
52
|
+
}] } });
|
|
53
|
+
|
|
54
|
+
class ContextMenuModule {
|
|
55
|
+
}
|
|
56
|
+
ContextMenuModule.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.1.2", ngImport: i0, type: ContextMenuModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
|
|
57
|
+
ContextMenuModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "15.1.2", ngImport: i0, type: ContextMenuModule, declarations: [ContextMenuComponent], imports: [CommonModule], exports: [ContextMenuComponent] });
|
|
58
|
+
ContextMenuModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "15.1.2", ngImport: i0, type: ContextMenuModule, imports: [CommonModule] });
|
|
59
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.1.2", ngImport: i0, type: ContextMenuModule, decorators: [{
|
|
60
|
+
type: NgModule,
|
|
61
|
+
args: [{
|
|
62
|
+
declarations: [
|
|
63
|
+
ContextMenuComponent
|
|
64
|
+
],
|
|
65
|
+
imports: [
|
|
66
|
+
CommonModule
|
|
67
|
+
],
|
|
68
|
+
exports: [
|
|
69
|
+
ContextMenuComponent
|
|
70
|
+
]
|
|
71
|
+
}]
|
|
72
|
+
}] });
|
|
73
|
+
|
|
74
|
+
/*
|
|
75
|
+
* Public API Surface of windows-plus-utilities
|
|
76
|
+
*/
|
|
77
|
+
|
|
78
|
+
/**
|
|
79
|
+
* Generated bundle index. Do not edit.
|
|
80
|
+
*/
|
|
81
|
+
|
|
82
|
+
export { ContextMenuComponent, ContextMenuModule };
|
|
83
|
+
//# sourceMappingURL=windows-plus-utilities-context-menu.mjs.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"windows-plus-utilities-context-menu.mjs","sources":["../../../projects/windows-plus-utilities/context-menu/components/context-menu/context-menu.component.ts","../../../projects/windows-plus-utilities/context-menu/components/context-menu/context-menu.component.html","../../../projects/windows-plus-utilities/context-menu/context-menu.module.ts","../../../projects/windows-plus-utilities/context-menu/public-api.ts","../../../projects/windows-plus-utilities/context-menu/windows-plus-utilities-context-menu.ts"],"sourcesContent":["import { Component, HostListener, Input } from '@angular/core';\nimport { ContextMenuItem } from '../../public-api'\nimport { ContextMenuPosition } from '../../util/interface/position/context-menu-positions.interface'\n\n@Component({\n selector: 'wp-context-menu',\n templateUrl: './context-menu.component.html',\n styleUrls: ['./context-menu.component.sass']\n})\nexport class ContextMenuComponent {\n\t/**\n\t * @description an array containing the context menu items to be displayed\n\t */\n\t@Input() items: ContextMenuItem[]\n\t/**\n\t * @description an object containing the required context menu position\n\t */\n\t@Input() positions: ContextMenuPosition\n\t/**\n\t * @description indicates whether the context menu is being shown \n\t */\n\tshowContextMenu: boolean = false\n\t/**\n\t * @author Alex Hodson\n\t * @description toggles the component member which indicates the context menu visibility\n\t */\n\ttoggleContextMenu(): void {\n\t\tthis.showContextMenu = !this.showContextMenu\n\t}\n\t/**\n\t * @author Alex Hodson\n\t * @description handles a click outside of the context menu which will toggle the context menu display\n\t */\n\t@HostListener('document:click')\n documentClick(): void {\n if (this.showContextMenu) this.toggleContextMenu()\n }\n\n\t/**\n\t * @author Alex Hodson\n\t * @description handles the escape button being typed which will toggle the context menu display\n\t */\n @HostListener('document:keyup.escape')\n escKeyClick(): void {\n if (this.showContextMenu) this.toggleContextMenu()\n }\n}\n","<div id=\"context-menu\" [ngClass]=\"{ 'show': showContextMenu }\" [ngStyle]=\"positions\">\n\t<div id=\"context-menu-container\" class=\"context-menu\">\n\t\t<ul class=\"menu\">\n\t\t\t<li class=\"text-grey\">Edit</li>\n\t\t\t<li class=\"text-grey\">Delete</li>\n\t\t</ul>\n\t</div>\n</div>","import { NgModule } from '@angular/core';\nimport { CommonModule } from '@angular/common';\nimport { ContextMenuComponent } from './components/context-menu/context-menu.component';\n\n\n\n@NgModule({\n declarations: [\n ContextMenuComponent\n ],\n imports: [\n CommonModule\n ],\n\texports: [\n ContextMenuComponent\n\t]\n})\nexport class ContextMenuModule { }\n","/*\r\n * Public API Surface of windows-plus-utilities\r\n */\r\n\r\nexport * from './components/context-menu/context-menu.component';\r\nexport * from './context-menu.module';\r\nexport * from './util/interface/items/context-menu-items.interface'\r\nexport * from './util/interface/position/context-menu-positions.interface'\r\n","/**\n * Generated bundle index. Do not edit.\n */\n\nexport * from './public-api';\n"],"names":[],"mappings":";;;;;MASa,oBAAoB,CAAA;AALjC,IAAA,WAAA,GAAA;AAcC;;AAEG;QACH,IAAe,CAAA,eAAA,GAAY,KAAK,CAAA;AAyBhC,KAAA;AAxBA;;;AAGG;IACH,iBAAiB,GAAA;AAChB,QAAA,IAAI,CAAC,eAAe,GAAG,CAAC,IAAI,CAAC,eAAe,CAAA;KAC5C;AACD;;;AAGG;IAEF,aAAa,GAAA;QACX,IAAI,IAAI,CAAC,eAAe;YAAE,IAAI,CAAC,iBAAiB,EAAE,CAAA;KACnD;AAEF;;;AAGG;IAEF,WAAW,GAAA;QACT,IAAI,IAAI,CAAC,eAAe;YAAE,IAAI,CAAC,iBAAiB,EAAE,CAAA;KACnD;;iHApCU,oBAAoB,EAAA,IAAA,EAAA,EAAA,EAAA,MAAA,EAAA,EAAA,CAAA,eAAA,CAAA,SAAA,EAAA,CAAA,CAAA;AAApB,oBAAA,CAAA,IAAA,GAAA,EAAA,CAAA,oBAAA,CAAA,EAAA,UAAA,EAAA,QAAA,EAAA,OAAA,EAAA,QAAA,EAAA,IAAA,EAAA,oBAAoB,mNCTjC,qSAOM,EAAA,MAAA,EAAA,CAAA,ijBAAA,CAAA,EAAA,YAAA,EAAA,CAAA,EAAA,IAAA,EAAA,WAAA,EAAA,IAAA,EAAA,EAAA,CAAA,OAAA,EAAA,QAAA,EAAA,WAAA,EAAA,MAAA,EAAA,CAAA,OAAA,EAAA,SAAA,CAAA,EAAA,EAAA,EAAA,IAAA,EAAA,WAAA,EAAA,IAAA,EAAA,EAAA,CAAA,OAAA,EAAA,QAAA,EAAA,WAAA,EAAA,MAAA,EAAA,CAAA,SAAA,CAAA,EAAA,CAAA,EAAA,CAAA,CAAA;2FDEO,oBAAoB,EAAA,UAAA,EAAA,CAAA;kBALhC,SAAS;+BACE,iBAAiB,EAAA,QAAA,EAAA,qSAAA,EAAA,MAAA,EAAA,CAAA,ijBAAA,CAAA,EAAA,CAAA;8BAQnB,KAAK,EAAA,CAAA;sBAAb,KAAK;gBAIG,SAAS,EAAA,CAAA;sBAAjB,KAAK;gBAiBL,aAAa,EAAA,CAAA;sBADb,YAAY;uBAAC,gBAAgB,CAAA;gBAU7B,WAAW,EAAA,CAAA;sBADV,YAAY;uBAAC,uBAAuB,CAAA;;;MEzB1B,iBAAiB,CAAA;;8GAAjB,iBAAiB,EAAA,IAAA,EAAA,EAAA,EAAA,MAAA,EAAA,EAAA,CAAA,eAAA,CAAA,QAAA,EAAA,CAAA,CAAA;AAAjB,iBAAA,CAAA,IAAA,GAAA,EAAA,CAAA,mBAAA,CAAA,EAAA,UAAA,EAAA,QAAA,EAAA,OAAA,EAAA,QAAA,EAAA,QAAA,EAAA,EAAA,EAAA,IAAA,EAAA,iBAAiB,EAT1B,YAAA,EAAA,CAAA,oBAAoB,CAGpB,EAAA,OAAA,EAAA,CAAA,YAAY,aAGZ,oBAAoB,CAAA,EAAA,CAAA,CAAA;AAGX,iBAAA,CAAA,IAAA,GAAA,EAAA,CAAA,mBAAA,CAAA,EAAA,UAAA,EAAA,QAAA,EAAA,OAAA,EAAA,QAAA,EAAA,QAAA,EAAA,EAAA,EAAA,IAAA,EAAA,iBAAiB,YAN1B,YAAY,CAAA,EAAA,CAAA,CAAA;2FAMH,iBAAiB,EAAA,UAAA,EAAA,CAAA;kBAX7B,QAAQ;AAAC,YAAA,IAAA,EAAA,CAAA;AACR,oBAAA,YAAY,EAAE;wBACZ,oBAAoB;AACrB,qBAAA;AACD,oBAAA,OAAO,EAAE;wBACP,YAAY;AACb,qBAAA;AACF,oBAAA,OAAO,EAAE;wBACN,oBAAoB;AACtB,qBAAA;AACD,iBAAA,CAAA;;;AChBD;;AAEG;;ACFH;;AAEG;;;;"}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "windows-plus-utilities",
|
|
3
|
-
"version": "0.0.
|
|
3
|
+
"version": "0.0.41",
|
|
4
4
|
"peerDependencies": {
|
|
5
5
|
"@angular/common": "^15.1.2",
|
|
6
6
|
"@angular/core": "^15.1.2",
|
|
@@ -32,6 +32,14 @@
|
|
|
32
32
|
"node": "./fesm2015/windows-plus-utilities.mjs",
|
|
33
33
|
"default": "./fesm2020/windows-plus-utilities.mjs"
|
|
34
34
|
},
|
|
35
|
+
"./context-menu": {
|
|
36
|
+
"types": "./context-menu/index.d.ts",
|
|
37
|
+
"esm2020": "./esm2020/context-menu/windows-plus-utilities-context-menu.mjs",
|
|
38
|
+
"es2020": "./fesm2020/windows-plus-utilities-context-menu.mjs",
|
|
39
|
+
"es2015": "./fesm2015/windows-plus-utilities-context-menu.mjs",
|
|
40
|
+
"node": "./fesm2015/windows-plus-utilities-context-menu.mjs",
|
|
41
|
+
"default": "./fesm2020/windows-plus-utilities-context-menu.mjs"
|
|
42
|
+
},
|
|
35
43
|
"./custom-card": {
|
|
36
44
|
"types": "./custom-card/index.d.ts",
|
|
37
45
|
"esm2020": "./esm2020/custom-card/windows-plus-utilities-custom-card.mjs",
|