@memberjunction/ng-skip-chat 2.36.1 → 2.37.0

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.
Files changed (30) hide show
  1. package/README.md +97 -2
  2. package/dist/lib/artifacts/skip-artifact-viewer.component.d.ts +78 -0
  3. package/dist/lib/artifacts/skip-artifact-viewer.component.d.ts.map +1 -0
  4. package/dist/lib/artifacts/skip-artifact-viewer.component.js +520 -0
  5. package/dist/lib/artifacts/skip-artifact-viewer.component.js.map +1 -0
  6. package/dist/lib/artifacts/skip-artifacts-counter.component.d.ts +25 -0
  7. package/dist/lib/artifacts/skip-artifacts-counter.component.d.ts.map +1 -0
  8. package/dist/lib/artifacts/skip-artifacts-counter.component.js +253 -0
  9. package/dist/lib/artifacts/skip-artifacts-counter.component.js.map +1 -0
  10. package/dist/lib/module.d.ts +23 -20
  11. package/dist/lib/module.d.ts.map +1 -1
  12. package/dist/lib/module.js +19 -4
  13. package/dist/lib/module.js.map +1 -1
  14. package/dist/lib/skip-chat/skip-chat.component.d.ts +45 -1
  15. package/dist/lib/skip-chat/skip-chat.component.d.ts.map +1 -1
  16. package/dist/lib/skip-chat/skip-chat.component.js +239 -109
  17. package/dist/lib/skip-chat/skip-chat.component.js.map +1 -1
  18. package/dist/lib/skip-single-message/skip-single-message.component.d.ts +33 -1
  19. package/dist/lib/skip-single-message/skip-single-message.component.d.ts.map +1 -1
  20. package/dist/lib/skip-single-message/skip-single-message.component.js +160 -38
  21. package/dist/lib/skip-single-message/skip-single-message.component.js.map +1 -1
  22. package/dist/lib/split-panel/skip-split-panel.component.d.ts +41 -0
  23. package/dist/lib/split-panel/skip-split-panel.component.d.ts.map +1 -0
  24. package/dist/lib/split-panel/skip-split-panel.component.js +135 -0
  25. package/dist/lib/split-panel/skip-split-panel.component.js.map +1 -0
  26. package/dist/public-api.d.ts +3 -0
  27. package/dist/public-api.d.ts.map +1 -1
  28. package/dist/public-api.js +3 -0
  29. package/dist/public-api.js.map +1 -1
  30. package/package.json +12 -12
@@ -0,0 +1,135 @@
1
+ import { Component, Input, Output, EventEmitter } from '@angular/core';
2
+ import { BaseAngularComponent } from '@memberjunction/ng-base-types';
3
+ import * as i0 from "@angular/core";
4
+ import * as i1 from "@progress/kendo-angular-layout";
5
+ const _c0 = [[["", "left-panel", ""]], [["", "right-panel", ""]]];
6
+ const _c1 = ["[left-panel]", "[right-panel]"];
7
+ export class SkipSplitPanelComponent extends BaseAngularComponent {
8
+ set Mode(value) {
9
+ const oldMode = this._mode;
10
+ this._mode = value;
11
+ if (oldMode !== value) {
12
+ // Update the pane sizes when mode changes
13
+ this.updatePaneSizes();
14
+ }
15
+ }
16
+ get Mode() {
17
+ return this._mode;
18
+ }
19
+ constructor() {
20
+ super();
21
+ this.SplitRatio = 0.6; // Default left panel takes 60% of width
22
+ this.MinLeftPanelWidth = '30%';
23
+ this.MinRightPanelWidth = '30%';
24
+ this._mode = 'BothSides';
25
+ this.SplitRatioChanged = new EventEmitter();
26
+ // Properties for pane sizes
27
+ this.leftPaneSize = '50%';
28
+ this.rightPaneSize = '50%';
29
+ this._lastRatioBeforeClosing = 0.5; // Default value
30
+ }
31
+ ngOnInit() {
32
+ this.updatePaneSizes();
33
+ }
34
+ ngAfterViewInit() {
35
+ setTimeout(() => {
36
+ this.updatePaneSizes();
37
+ }, 10);
38
+ }
39
+ ngOnChanges(changes) {
40
+ if (changes['SplitRatio'] && !changes['SplitRatio'].firstChange) {
41
+ this.updatePaneSizes();
42
+ }
43
+ }
44
+ /**
45
+ * Updates the pane sizes based on the current SplitRatio
46
+ */
47
+ updatePaneSizes() {
48
+ // Convert split ratio to percentages for the panes
49
+ const leftPct = Math.round(this.SplitRatio * 100);
50
+ const rightPct = 100 - leftPct;
51
+ this.leftPaneSize = `${leftPct}%`;
52
+ this.rightPaneSize = `${rightPct}%`;
53
+ }
54
+ /**
55
+ * Handler for the Kendo Splitter's resize event
56
+ * @param event The resize event data
57
+ */
58
+ onResize(event) {
59
+ if (this.Mode === 'BothSides') {
60
+ // Calculate the new split ratio from the sizes in the event
61
+ const totalSize = event.panes[0].size + event.panes[1].size;
62
+ const leftSize = event.panes[0].size;
63
+ const newRatio = leftSize / totalSize;
64
+ // Update the split ratio and emit the change
65
+ this.SplitRatio = newRatio;
66
+ this.SplitRatioChanged.emit(newRatio);
67
+ // Update our pane size properties
68
+ this.updatePaneSizes();
69
+ }
70
+ }
71
+ /**
72
+ * Closes the right panel by switching to LeftOnly mode
73
+ */
74
+ closeRightPanel() {
75
+ // Store the current ratio before closing, so we can restore it later when reopening
76
+ this._lastRatioBeforeClosing = this.SplitRatio;
77
+ // Close the right panel by switching to LeftOnly mode
78
+ this.Mode = 'LeftOnly';
79
+ this.SplitRatioChanged.emit(this.SplitRatio);
80
+ }
81
+ /**
82
+ * Sets the mode for the split panel
83
+ * @param mode The new mode to set
84
+ */
85
+ setMode(mode) {
86
+ const wasLeftOnly = this.Mode === 'LeftOnly';
87
+ this.Mode = mode;
88
+ // If we're switching from LeftOnly to BothSides, restore the previous ratio
89
+ if (wasLeftOnly && mode === 'BothSides') {
90
+ this.SplitRatio = this._lastRatioBeforeClosing;
91
+ this.updatePaneSizes();
92
+ }
93
+ }
94
+ }
95
+ SkipSplitPanelComponent.ɵfac = function SkipSplitPanelComponent_Factory(t) { return new (t || SkipSplitPanelComponent)(); };
96
+ SkipSplitPanelComponent.ɵcmp = /*@__PURE__*/ i0.ɵɵdefineComponent({ type: SkipSplitPanelComponent, selectors: [["skip-split-panel"]], inputs: { SplitRatio: "SplitRatio", MinLeftPanelWidth: "MinLeftPanelWidth", MinRightPanelWidth: "MinRightPanelWidth", Mode: "Mode" }, outputs: { SplitRatioChanged: "SplitRatioChanged" }, features: [i0.ɵɵInheritDefinitionFeature, i0.ɵɵNgOnChangesFeature], ngContentSelectors: _c1, decls: 11, vars: 13, consts: [[1, "skip-split-panel-container"], [1, "skip-splitter", 3, "resize", "orientation"], [3, "size", "min", "resizable", "collapsible"], [3, "size", "min", "collapsible", "resizable"], [1, "skip-split-panel-right-wrapper"], [1, "skip-split-panel-right-header"], [1, "skip-split-panel-close-button", 3, "click"], [1, "fa-solid", "fa-xmark"], [1, "skip-split-panel-right-content"]], template: function SkipSplitPanelComponent_Template(rf, ctx) { if (rf & 1) {
97
+ i0.ɵɵprojectionDef(_c0);
98
+ i0.ɵɵelementStart(0, "div", 0)(1, "kendo-splitter", 1);
99
+ i0.ɵɵlistener("resize", function SkipSplitPanelComponent_Template_kendo_splitter_resize_1_listener($event) { return ctx.onResize($event); });
100
+ i0.ɵɵelementStart(2, "kendo-splitter-pane", 2);
101
+ i0.ɵɵprojection(3);
102
+ i0.ɵɵelementEnd();
103
+ i0.ɵɵelementStart(4, "kendo-splitter-pane", 3)(5, "div", 4)(6, "div", 5)(7, "button", 6);
104
+ i0.ɵɵlistener("click", function SkipSplitPanelComponent_Template_button_click_7_listener() { return ctx.closeRightPanel(); });
105
+ i0.ɵɵelement(8, "i", 7);
106
+ i0.ɵɵelementEnd()();
107
+ i0.ɵɵelementStart(9, "div", 8);
108
+ i0.ɵɵprojection(10, 1);
109
+ i0.ɵɵelementEnd()()()()();
110
+ } if (rf & 2) {
111
+ i0.ɵɵadvance();
112
+ i0.ɵɵproperty("orientation", "horizontal");
113
+ i0.ɵɵadvance();
114
+ i0.ɵɵstyleProp("display", ctx.Mode === "RightOnly" ? "none" : "block");
115
+ i0.ɵɵproperty("size", ctx.Mode === "LeftOnly" ? "100%" : ctx.leftPaneSize)("min", ctx.MinLeftPanelWidth)("resizable", true)("collapsible", true);
116
+ i0.ɵɵadvance(2);
117
+ i0.ɵɵstyleProp("display", ctx.Mode === "LeftOnly" ? "none" : "block");
118
+ i0.ɵɵproperty("size", ctx.Mode === "RightOnly" ? "100%" : ctx.rightPaneSize)("min", ctx.MinRightPanelWidth)("collapsible", false)("resizable", true);
119
+ } }, dependencies: [i1.SplitterComponent, i1.SplitterPaneComponent], styles: [".skip-split-panel-container[_ngcontent-%COMP%] {\n width: 100%;\n height: 100%;\n position: relative;\n overflow: hidden;\n display: flex;\n flex-direction: column;\n}\n\n\n\n.skip-splitter[_ngcontent-%COMP%] {\n width: 100%;\n height: 100%;\n flex: 1;\n}\n\n.skip-split-panel-left[_ngcontent-%COMP%], \n.skip-split-panel-right[_ngcontent-%COMP%] {\n overflow-y: auto;\n overflow-x: hidden;\n}\n\n\n\n.skip-split-panel-right-wrapper[_ngcontent-%COMP%] {\n display: flex;\n flex-direction: column;\n height: 100%;\n}\n\n.skip-split-panel-right-header[_ngcontent-%COMP%] {\n display: flex;\n justify-content: flex-end;\n padding: 8px 12px;\n border-bottom: 1px solid #eee;\n background-color: #f8f8f8;\n min-height: 24px;\n z-index: 10;\n}\n\n.skip-split-panel-close-button[_ngcontent-%COMP%] {\n background: transparent;\n border: none;\n color: #666;\n cursor: pointer;\n padding: 4px 8px;\n font-size: 14px;\n border-radius: 4px;\n outline: none;\n}\n\n.skip-split-panel-close-button[_ngcontent-%COMP%]:hover {\n background-color: #f0f0f0;\n color: #333;\n}\n\n.skip-split-panel-right-content[_ngcontent-%COMP%] {\n height: calc(100% - 41px); \n\n overflow: auto;\n padding: 12px;\n flex: 1;\n display: flex;\n flex-direction: column;\n}\n\n\n\n .k-splitbar {\n background-color: #f0f0f0;\n border-left: 1px solid #ddd;\n border-right: 1px solid #ddd;\n}\n\n .k-splitbar:hover, \n .k-splitbar.k-splitbar-dragging-to {\n background-color: #e0e0e0;\n}\n\n .k-splitbar .k-resize-handle {\n background-color: #666;\n}"] });
120
+ (() => { (typeof ngDevMode === "undefined" || ngDevMode) && i0.ɵsetClassMetadata(SkipSplitPanelComponent, [{
121
+ type: Component,
122
+ args: [{ selector: 'skip-split-panel', template: "<div class=\"skip-split-panel-container\">\n <kendo-splitter \n [orientation]=\"'horizontal'\"\n (resize)=\"onResize($event)\"\n class=\"skip-splitter\">\n \n <!-- Left Panel -->\n <kendo-splitter-pane \n [size]=\"Mode === 'LeftOnly' ? '100%' : leftPaneSize\"\n [min]=\"MinLeftPanelWidth\"\n [resizable]=\"true\"\n [collapsible]=\"true\"\n [style.display]=\"Mode === 'RightOnly' ? 'none' : 'block'\">\n <ng-content select=\"[left-panel]\"></ng-content>\n </kendo-splitter-pane>\n \n <!-- Right Panel -->\n <kendo-splitter-pane \n [size]=\"Mode === 'RightOnly' ? '100%' : rightPaneSize\"\n [min]=\"MinRightPanelWidth\"\n [collapsible]=\"false\"\n [resizable]=\"true\"\n [style.display]=\"Mode === 'LeftOnly' ? 'none' : 'block'\">\n <div class=\"skip-split-panel-right-wrapper\">\n <div class=\"skip-split-panel-right-header\">\n <button class=\"skip-split-panel-close-button\" (click)=\"closeRightPanel()\">\n <i class=\"fa-solid fa-xmark\"></i>\n </button>\n </div>\n <div class=\"skip-split-panel-right-content\">\n <ng-content select=\"[right-panel]\"></ng-content>\n </div>\n </div>\n </kendo-splitter-pane>\n </kendo-splitter>\n</div>", styles: [".skip-split-panel-container {\n width: 100%;\n height: 100%;\n position: relative;\n overflow: hidden;\n display: flex;\n flex-direction: column;\n}\n\n/* Add specific styles for the Kendo splitter */\n.skip-splitter {\n width: 100%;\n height: 100%;\n flex: 1;\n}\n\n.skip-split-panel-left, \n.skip-split-panel-right {\n overflow-y: auto;\n overflow-x: hidden;\n}\n\n/* Ensure the right panel content fills the available space */\n.skip-split-panel-right-wrapper {\n display: flex;\n flex-direction: column;\n height: 100%;\n}\n\n.skip-split-panel-right-header {\n display: flex;\n justify-content: flex-end;\n padding: 8px 12px;\n border-bottom: 1px solid #eee;\n background-color: #f8f8f8;\n min-height: 24px;\n z-index: 10;\n}\n\n.skip-split-panel-close-button {\n background: transparent;\n border: none;\n color: #666;\n cursor: pointer;\n padding: 4px 8px;\n font-size: 14px;\n border-radius: 4px;\n outline: none;\n}\n\n.skip-split-panel-close-button:hover {\n background-color: #f0f0f0;\n color: #333;\n}\n\n.skip-split-panel-right-content {\n height: calc(100% - 41px); /* Account for header height */\n overflow: auto;\n padding: 12px;\n flex: 1;\n display: flex;\n flex-direction: column;\n}\n\n/* Improve the appearance of the Kendo Splitter's handle */\n::ng-deep .k-splitbar {\n background-color: #f0f0f0;\n border-left: 1px solid #ddd;\n border-right: 1px solid #ddd;\n}\n\n::ng-deep .k-splitbar:hover,\n::ng-deep .k-splitbar.k-splitbar-dragging-to {\n background-color: #e0e0e0;\n}\n\n::ng-deep .k-splitbar .k-resize-handle {\n background-color: #666;\n}"] }]
123
+ }], () => [], { SplitRatio: [{
124
+ type: Input
125
+ }], MinLeftPanelWidth: [{
126
+ type: Input
127
+ }], MinRightPanelWidth: [{
128
+ type: Input
129
+ }], Mode: [{
130
+ type: Input
131
+ }], SplitRatioChanged: [{
132
+ type: Output
133
+ }] }); })();
134
+ (() => { (typeof ngDevMode === "undefined" || ngDevMode) && i0.ɵsetClassDebugInfo(SkipSplitPanelComponent, { className: "SkipSplitPanelComponent", filePath: "src/lib/split-panel/skip-split-panel.component.ts", lineNumber: 11 }); })();
135
+ //# sourceMappingURL=skip-split-panel.component.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"skip-split-panel.component.js","sourceRoot":"","sources":["../../../src/lib/split-panel/skip-split-panel.component.ts","../../../src/lib/split-panel/skip-split-panel.component.html"],"names":[],"mappings":"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"}
@@ -8,4 +8,7 @@ export * from './lib/dynamic-report/dynamic-grid';
8
8
  export * from './lib/dynamic-report/dynamic-html-report';
9
9
  export * from './lib/report-cache';
10
10
  export * from './lib/drill-down-info';
11
+ export * from './lib/split-panel/skip-split-panel.component';
12
+ export * from './lib/artifacts/skip-artifact-viewer.component';
13
+ export * from './lib/artifacts/skip-artifacts-counter.component';
11
14
  //# sourceMappingURL=public-api.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"public-api.d.ts","sourceRoot":"","sources":["../src/public-api.ts"],"names":[],"mappings":"AAGA,cAAc,cAAc,CAAC;AAC7B,cAAc,qCAAqC,CAAC;AACpD,cAAc,yDAAyD,CAAC;AACxE,cAAc,kDAAkD,CAAC;AACjE,cAAc,oCAAoC,CAAC;AACnD,cAAc,oCAAoC,CAAC;AACnD,cAAc,mCAAmC,CAAC;AAClD,cAAc,0CAA0C,CAAC;AACzD,cAAc,oBAAoB,CAAC;AACnC,cAAc,uBAAuB,CAAC"}
1
+ {"version":3,"file":"public-api.d.ts","sourceRoot":"","sources":["../src/public-api.ts"],"names":[],"mappings":"AAGA,cAAc,cAAc,CAAC;AAC7B,cAAc,qCAAqC,CAAC;AACpD,cAAc,yDAAyD,CAAC;AACxE,cAAc,kDAAkD,CAAC;AACjE,cAAc,oCAAoC,CAAC;AACnD,cAAc,oCAAoC,CAAC;AACnD,cAAc,mCAAmC,CAAC;AAClD,cAAc,0CAA0C,CAAC;AACzD,cAAc,oBAAoB,CAAC;AACnC,cAAc,uBAAuB,CAAC;AACtC,cAAc,8CAA8C,CAAC;AAC7D,cAAc,gDAAgD,CAAC;AAC/D,cAAc,kDAAkD,CAAC"}
@@ -11,4 +11,7 @@ export * from './lib/dynamic-report/dynamic-grid';
11
11
  export * from './lib/dynamic-report/dynamic-html-report';
12
12
  export * from './lib/report-cache';
13
13
  export * from './lib/drill-down-info';
14
+ export * from './lib/split-panel/skip-split-panel.component';
15
+ export * from './lib/artifacts/skip-artifact-viewer.component';
16
+ export * from './lib/artifacts/skip-artifacts-counter.component';
14
17
  //# sourceMappingURL=public-api.js.map
@@ -1 +1 @@
1
- {"version":3,"file":"public-api.js","sourceRoot":"","sources":["../src/public-api.ts"],"names":[],"mappings":"AAAA;;GAEG;AACH,cAAc,cAAc,CAAC;AAC7B,cAAc,qCAAqC,CAAC;AACpD,cAAc,yDAAyD,CAAC;AACxE,cAAc,kDAAkD,CAAC;AACjE,cAAc,oCAAoC,CAAC;AACnD,cAAc,oCAAoC,CAAC;AACnD,cAAc,mCAAmC,CAAC;AAClD,cAAc,0CAA0C,CAAC;AACzD,cAAc,oBAAoB,CAAC;AACnC,cAAc,uBAAuB,CAAC"}
1
+ {"version":3,"file":"public-api.js","sourceRoot":"","sources":["../src/public-api.ts"],"names":[],"mappings":"AAAA;;GAEG;AACH,cAAc,cAAc,CAAC;AAC7B,cAAc,qCAAqC,CAAC;AACpD,cAAc,yDAAyD,CAAC;AACxE,cAAc,kDAAkD,CAAC;AACjE,cAAc,oCAAoC,CAAC;AACnD,cAAc,oCAAoC,CAAC;AACnD,cAAc,mCAAmC,CAAC;AAClD,cAAc,0CAA0C,CAAC;AACzD,cAAc,oBAAoB,CAAC;AACnC,cAAc,uBAAuB,CAAC;AACtC,cAAc,8CAA8C,CAAC;AAC7D,cAAc,gDAAgD,CAAC;AAC/D,cAAc,kDAAkD,CAAC"}
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@memberjunction/ng-skip-chat",
3
- "version": "2.36.1",
3
+ "version": "2.37.0",
4
4
  "description": "MemberJunction: Simple Skip Chat components usable in any Angular project",
5
5
  "main": "./dist/public-api.js",
6
6
  "typings": "./dist/public-api.d.ts",
@@ -25,17 +25,17 @@
25
25
  "@angular/platform-browser": "18.0.2"
26
26
  },
27
27
  "dependencies": {
28
- "@memberjunction/core-entities": "2.36.1",
29
- "@memberjunction/core": "2.36.1",
30
- "@memberjunction/global": "2.36.1",
31
- "@memberjunction/graphql-dataprovider": "2.36.1",
32
- "@memberjunction/skip-types": "2.36.1",
33
- "@memberjunction/data-context": "2.36.1",
34
- "@memberjunction/ng-container-directives": "2.36.1",
35
- "@memberjunction/ng-data-context": "2.36.1",
36
- "@memberjunction/ng-base-types": "2.36.1",
37
- "@memberjunction/ng-notifications": "2.36.1",
38
- "@memberjunction/ng-resource-permissions": "2.36.1",
28
+ "@memberjunction/core-entities": "2.37.0",
29
+ "@memberjunction/core": "2.37.0",
30
+ "@memberjunction/global": "2.37.0",
31
+ "@memberjunction/graphql-dataprovider": "2.37.0",
32
+ "@memberjunction/skip-types": "2.37.0",
33
+ "@memberjunction/data-context": "2.37.0",
34
+ "@memberjunction/ng-container-directives": "2.37.0",
35
+ "@memberjunction/ng-data-context": "2.37.0",
36
+ "@memberjunction/ng-base-types": "2.37.0",
37
+ "@memberjunction/ng-notifications": "2.37.0",
38
+ "@memberjunction/ng-resource-permissions": "2.37.0",
39
39
  "@progress/kendo-angular-grid": "16.2.0",
40
40
  "@progress/kendo-angular-listview": "16.2.0",
41
41
  "@progress/kendo-angular-notification": "16.2.0",