@fxlt/common-ui 0.0.3 → 0.0.4-beta1
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/components.css +57 -5
- package/fesm2022/fxlt-common-ui.mjs +127 -23
- package/fesm2022/fxlt-common-ui.mjs.map +1 -1
- package/index.d.ts +54 -27
- package/package.json +1 -1
- package/src/lib/styles/components.css +57 -5
- package/src/lib/styles/theme.css +3 -3
- package/src/lib/ui/components/tree-diagram/tree-diagram.component.html +40 -0
- package/theme.css +3 -3
package/components.css
CHANGED
|
@@ -166,6 +166,58 @@ input[type='password'] {
|
|
|
166
166
|
}
|
|
167
167
|
|
|
168
168
|
/* system style */
|
|
169
|
+
.txt-heading-03 {
|
|
170
|
+
@apply font-semibold text-2xl tracking-normal leading-10 text-text-primary;
|
|
171
|
+
}
|
|
172
|
+
.txt-heading-04 {
|
|
173
|
+
@apply font-semibold text-xl tracking-normal leading-7 text-text-primary;
|
|
174
|
+
}
|
|
175
|
+
.txt-heading-05 {
|
|
176
|
+
@apply font-semibold text-lg tracking-normal leading-7 text-text-primary;
|
|
177
|
+
}
|
|
178
|
+
.txt-heading-06 {
|
|
179
|
+
@apply font-semibold text-base tracking-normal leading-6 text-text-primary;
|
|
180
|
+
}
|
|
181
|
+
.txt-heading-07 {
|
|
182
|
+
@apply font-semibold text-sm tracking-normal leading-5 text-text-primary;
|
|
183
|
+
}
|
|
184
|
+
.txt-heading-compact-02 {
|
|
185
|
+
@apply font-semibold text-sm tracking-normal leading-5 text-text-primary;
|
|
186
|
+
}
|
|
187
|
+
.txt-body-compact-01 {
|
|
188
|
+
@apply font-normal text-sm tracking-normal leading-5 text-text-primary;
|
|
189
|
+
}
|
|
190
|
+
.txt-body-01 {
|
|
191
|
+
@apply font-normal text-sm tracking-normal leading-5 text-text-primary;
|
|
192
|
+
}
|
|
193
|
+
.txt-body-02 {
|
|
194
|
+
@apply font-normal text-base tracking-normal leading-6 text-text-primary;
|
|
195
|
+
}
|
|
196
|
+
.txt-body-medium-01 {
|
|
197
|
+
@apply font-medium text-sm tracking-normal leading-5 text-text-primary;
|
|
198
|
+
}
|
|
199
|
+
.txt-body-medium-02 {
|
|
200
|
+
@apply font-medium text-base tracking-normal leading-6 text-text-primary;
|
|
201
|
+
}
|
|
202
|
+
.txt-body-p-bold {
|
|
203
|
+
@apply font-semibold text-sm tracking-normal leading-5 text-text-primary;
|
|
204
|
+
}
|
|
205
|
+
.txt-body-p-normal {
|
|
206
|
+
@apply font-normal text-sm tracking-normal leading-5 text-text-primary;
|
|
207
|
+
}
|
|
208
|
+
.txt-utility-caption {
|
|
209
|
+
@apply font-normal text-xs tracking-normal leading-4 text-text-primary;
|
|
210
|
+
}
|
|
211
|
+
.txt-utility-button {
|
|
212
|
+
@apply font-semibold text-sm tracking-normal leading-5 text-text-primary;
|
|
213
|
+
}
|
|
214
|
+
.txt-utility-description {
|
|
215
|
+
@apply font-light text-xs tracking-normal leading-4 text-text-secondary;
|
|
216
|
+
}
|
|
217
|
+
.txt-tag-label {
|
|
218
|
+
@apply font-medium text-xs;
|
|
219
|
+
}
|
|
220
|
+
|
|
169
221
|
.txt-page-title {
|
|
170
222
|
@apply text-3xl text-text-primary font-semibold tracking-normal leading-10;
|
|
171
223
|
}
|
|
@@ -190,9 +242,6 @@ input[type='password'] {
|
|
|
190
242
|
.txt-section-header {
|
|
191
243
|
@apply mb-1 text-xl text-text-primary font-semibold tracking-normal leading-7;
|
|
192
244
|
}
|
|
193
|
-
.txt-dialog-header {
|
|
194
|
-
@apply text-xl text-text-primary font-semibold tracking-normal leading-7 px-xl py-semi;
|
|
195
|
-
}
|
|
196
245
|
.txt-section-subtitle {
|
|
197
246
|
@apply text-sm text-text-secondary font-normal tracking-normal;
|
|
198
247
|
}
|
|
@@ -393,9 +442,12 @@ input[type='password'] {
|
|
|
393
442
|
.table-status-col {
|
|
394
443
|
width: 200px;
|
|
395
444
|
}
|
|
445
|
+
.table-empty {
|
|
446
|
+
@apply w-full h-[100px] flex items-center justify-center;
|
|
447
|
+
}
|
|
396
448
|
.dialog-container {
|
|
397
449
|
@apply rounded-lg border border-border-default;
|
|
398
450
|
}
|
|
399
|
-
.
|
|
400
|
-
@apply
|
|
451
|
+
.dialog-header {
|
|
452
|
+
@apply px-xl py-semi;
|
|
401
453
|
}
|
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
import * as i0 from '@angular/core';
|
|
2
|
-
import { Directive, Input, Component, createComponent, Injectable, ViewChild, Inject, EventEmitter, NgModule, HostListener, PLATFORM_ID, Output, Optional, Self, ChangeDetectionStrategy, TemplateRef, ContentChildren, importProvidersFrom } from '@angular/core';
|
|
3
|
-
import * as
|
|
2
|
+
import { Directive, Input, Component, createComponent, Injectable, ViewChild, Inject, EventEmitter, NgModule, HostListener, PLATFORM_ID, Output, Optional, Self, ChangeDetectionStrategy, TemplateRef, ContentChildren, ViewChildren, importProvidersFrom } from '@angular/core';
|
|
3
|
+
import * as i32 from '@angular/material/paginator';
|
|
4
4
|
import { MatPaginator, MatPaginatorModule } from '@angular/material/paginator';
|
|
5
|
-
import * as
|
|
5
|
+
import * as i33 from '@angular/material/table';
|
|
6
6
|
import { MatTableDataSource, MatTable, MatTableModule } from '@angular/material/table';
|
|
7
7
|
import * as i2 from '@angular/common';
|
|
8
8
|
import { isPlatformBrowser, CommonModule } from '@angular/common';
|
|
@@ -23,36 +23,36 @@ import * as i2$2 from '@angular/router';
|
|
|
23
23
|
import { catchError } from 'rxjs/operators';
|
|
24
24
|
import * as i3$1 from '@angular/material/select';
|
|
25
25
|
import { MatSelectModule } from '@angular/material/select';
|
|
26
|
-
import * as
|
|
26
|
+
import * as i29 from '@angular/material/radio';
|
|
27
27
|
import { MatRadioModule } from '@angular/material/radio';
|
|
28
|
-
import * as
|
|
28
|
+
import * as i30 from '@angular/material/button';
|
|
29
29
|
import { MatButtonModule } from '@angular/material/button';
|
|
30
|
-
import * as
|
|
30
|
+
import * as i31 from '@angular/material/icon';
|
|
31
31
|
import { MatIconModule } from '@angular/material/icon';
|
|
32
|
-
import * as
|
|
32
|
+
import * as i34 from '@angular/material/snack-bar';
|
|
33
33
|
import { MatSnackBarModule } from '@angular/material/snack-bar';
|
|
34
|
-
import * as
|
|
34
|
+
import * as i36 from '@angular/material/checkbox';
|
|
35
35
|
import { MatCheckboxModule } from '@angular/material/checkbox';
|
|
36
|
-
import * as
|
|
36
|
+
import * as i37 from '@angular/material/card';
|
|
37
37
|
import { MatCardModule } from '@angular/material/card';
|
|
38
|
-
import * as
|
|
38
|
+
import * as i38 from '@angular/material/datepicker';
|
|
39
39
|
import { MatDatepickerModule } from '@angular/material/datepicker';
|
|
40
|
-
import * as
|
|
40
|
+
import * as i39 from '@angular/material/timepicker';
|
|
41
41
|
import { MatTimepickerModule } from '@angular/material/timepicker';
|
|
42
|
-
import * as
|
|
42
|
+
import * as i40 from '@angular/material/badge';
|
|
43
43
|
import { MatBadgeModule } from '@angular/material/badge';
|
|
44
|
-
import * as
|
|
44
|
+
import * as i41 from '@angular/material/expansion';
|
|
45
45
|
import { MatExpansionModule } from '@angular/material/expansion';
|
|
46
|
-
import * as
|
|
46
|
+
import * as i42 from '@angular/material/form-field';
|
|
47
47
|
import { MatFormFieldModule } from '@angular/material/form-field';
|
|
48
|
-
import * as
|
|
48
|
+
import * as i43 from '@angular/material/menu';
|
|
49
49
|
import { MatMenuModule } from '@angular/material/menu';
|
|
50
50
|
import * as i3 from '@danielmoncada/angular-datetime-picker';
|
|
51
51
|
import { OwlDateTimeModule, OwlNativeDateTimeModule, OWL_DATE_TIME_FORMATS } from '@danielmoncada/angular-datetime-picker';
|
|
52
52
|
import * as i2$3 from 'ngx-echarts';
|
|
53
53
|
import { NgxEchartsModule } from 'ngx-echarts';
|
|
54
54
|
import { __decorate, __param } from 'tslib';
|
|
55
|
-
import * as
|
|
55
|
+
import * as i26 from 'ngx-vflow';
|
|
56
56
|
import { Vflow } from 'ngx-vflow';
|
|
57
57
|
import { OwlMomentDateTimeModule } from '@danielmoncada/angular-datetime-picker-moment-adapter';
|
|
58
58
|
|
|
@@ -1863,7 +1863,7 @@ class FlowConnection {
|
|
|
1863
1863
|
];
|
|
1864
1864
|
}
|
|
1865
1865
|
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.4", ngImport: i0, type: FlowConnection, deps: [], target: i0.ɵɵFactoryTarget.Component });
|
|
1866
|
-
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "20.3.4", type: FlowConnection, isStandalone: false, selector: "fx-ui-flow-connection", inputs: { nodes: "nodes", edges: "edges", backgroundColor: "backgroundColor", view: "view" }, ngImport: i0, template: "<vflow\n [background]=\"{\n type: 'solid',\n color: `rgba(var(${backgroundColor})`\n}\"\n [nodes]=\"nodes\"\n [edges]=\"edges\"\n (onConnect)=\"handleConnection($event)\"\n [view]=\"view\"\n/>\n", styles: [""], dependencies: [{ kind: "component", type:
|
|
1866
|
+
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "20.3.4", type: FlowConnection, isStandalone: false, selector: "fx-ui-flow-connection", inputs: { nodes: "nodes", edges: "edges", backgroundColor: "backgroundColor", view: "view" }, ngImport: i0, template: "<vflow\n [background]=\"{\n type: 'solid',\n color: `rgba(var(${backgroundColor})`\n}\"\n [nodes]=\"nodes\"\n [edges]=\"edges\"\n (onConnect)=\"handleConnection($event)\"\n [view]=\"view\"\n/>\n", styles: [""], dependencies: [{ kind: "component", type: i26.VflowComponent, selector: "vflow", inputs: ["view", "minZoom", "maxZoom", "background", "optimization", "entitiesSelectable", "keyboardShortcuts", "connection", "snapGrid", "elevateNodesOnSelect", "elevateEdgesOnSelect", "nodes", "alignmentHelper", "edges"], outputs: ["onComponentNodeEvent"] }, { kind: "directive", type: i26.ConnectionControllerDirective, selector: "[onConnect], [onReconnect]", outputs: ["onConnect", "onReconnect"] }] });
|
|
1867
1867
|
}
|
|
1868
1868
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.4", ngImport: i0, type: FlowConnection, decorators: [{
|
|
1869
1869
|
type: Component,
|
|
@@ -2662,6 +2662,109 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.4", ngImpor
|
|
|
2662
2662
|
type: Input
|
|
2663
2663
|
}] } });
|
|
2664
2664
|
|
|
2665
|
+
class TreeDiagram {
|
|
2666
|
+
zone;
|
|
2667
|
+
cdr;
|
|
2668
|
+
data;
|
|
2669
|
+
container;
|
|
2670
|
+
root;
|
|
2671
|
+
children;
|
|
2672
|
+
lines = [];
|
|
2673
|
+
svgWidth = 0;
|
|
2674
|
+
svgHeight = 0;
|
|
2675
|
+
resizeObserver;
|
|
2676
|
+
rafId;
|
|
2677
|
+
constructor(zone, cdr) {
|
|
2678
|
+
this.zone = zone;
|
|
2679
|
+
this.cdr = cdr;
|
|
2680
|
+
}
|
|
2681
|
+
ngAfterViewInit() {
|
|
2682
|
+
this.zone.runOutsideAngular(() => {
|
|
2683
|
+
this.resizeObserver = new ResizeObserver((entries) => {
|
|
2684
|
+
const rect = entries[0].contentRect;
|
|
2685
|
+
if (rect.width === 0 || rect.height === 0)
|
|
2686
|
+
return;
|
|
2687
|
+
this.scheduleDraw();
|
|
2688
|
+
});
|
|
2689
|
+
this.resizeObserver.observe(this.container.nativeElement);
|
|
2690
|
+
setTimeout(() => this.scheduleDraw(), 50);
|
|
2691
|
+
setTimeout(() => this.scheduleDraw(), 150);
|
|
2692
|
+
});
|
|
2693
|
+
this.children.changes.subscribe(() => this.scheduleDraw());
|
|
2694
|
+
}
|
|
2695
|
+
ngOnDestroy() {
|
|
2696
|
+
this.resizeObserver?.disconnect();
|
|
2697
|
+
if (this.rafId)
|
|
2698
|
+
cancelAnimationFrame(this.rafId);
|
|
2699
|
+
}
|
|
2700
|
+
scheduleDraw() {
|
|
2701
|
+
if (this.rafId)
|
|
2702
|
+
cancelAnimationFrame(this.rafId);
|
|
2703
|
+
this.rafId = requestAnimationFrame(() => {
|
|
2704
|
+
this.drawLines();
|
|
2705
|
+
});
|
|
2706
|
+
}
|
|
2707
|
+
drawLines() {
|
|
2708
|
+
if (!this.root || !this.children.length)
|
|
2709
|
+
return;
|
|
2710
|
+
const containerEl = this.container.nativeElement;
|
|
2711
|
+
const rect = containerEl.getBoundingClientRect();
|
|
2712
|
+
if (rect.width === 0 || rect.height === 0)
|
|
2713
|
+
return;
|
|
2714
|
+
const rootRect = this.root.nativeElement.getBoundingClientRect();
|
|
2715
|
+
const rootX = rootRect.left + rootRect.width / 2 - rect.left;
|
|
2716
|
+
const rootBottomY = rootRect.bottom - rect.top;
|
|
2717
|
+
const childRects = this.children.map(c => c.nativeElement.getBoundingClientRect());
|
|
2718
|
+
const childCenters = childRects.map(r => ({
|
|
2719
|
+
x: r.left + r.width / 2 - rect.left,
|
|
2720
|
+
y: r.top - rect.top
|
|
2721
|
+
}));
|
|
2722
|
+
const horizontalY = childCenters[0].y - 24;
|
|
2723
|
+
this.zone.run(() => {
|
|
2724
|
+
this.svgWidth = rect.width;
|
|
2725
|
+
this.svgHeight = rect.height;
|
|
2726
|
+
this.lines = [
|
|
2727
|
+
{
|
|
2728
|
+
x1: rootX,
|
|
2729
|
+
y1: rootBottomY,
|
|
2730
|
+
x2: rootX,
|
|
2731
|
+
y2: horizontalY
|
|
2732
|
+
},
|
|
2733
|
+
{
|
|
2734
|
+
x1: childCenters[0].x,
|
|
2735
|
+
y1: horizontalY,
|
|
2736
|
+
x2: childCenters[childCenters.length - 1].x,
|
|
2737
|
+
y2: horizontalY
|
|
2738
|
+
},
|
|
2739
|
+
...childCenters.map(c => ({
|
|
2740
|
+
x1: c.x,
|
|
2741
|
+
y1: horizontalY,
|
|
2742
|
+
x2: c.x,
|
|
2743
|
+
y2: c.y
|
|
2744
|
+
}))
|
|
2745
|
+
];
|
|
2746
|
+
});
|
|
2747
|
+
this.cdr.detectChanges();
|
|
2748
|
+
}
|
|
2749
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.4", ngImport: i0, type: TreeDiagram, deps: [{ token: i0.NgZone }, { token: i0.ChangeDetectorRef }], target: i0.ɵɵFactoryTarget.Component });
|
|
2750
|
+
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "20.3.4", type: TreeDiagram, isStandalone: false, selector: "fx-ui-tree-diagram", inputs: { data: "data" }, viewQueries: [{ propertyName: "container", first: true, predicate: ["container"], descendants: true }, { propertyName: "root", first: true, predicate: ["root"], descendants: true }, { propertyName: "children", predicate: ["child"], descendants: true }], ngImport: i0, template: "<div class=\"relative p-8\" #container>\n\n <!-- ROOT -->\n <div\n #root\n class=\"mx-auto w-fit bg-blue-600 text-white px-7 py-3 rounded-md font-semibold text-center\"\n >\n {{ data.label }}\n </div>\n\n <!-- CHILDREN -->\n <div class=\"mt-16 flex justify-center gap-16\">\n <div\n *ngFor=\"let child of data.children\"\n #child\n class=\"w-48 bg-rose-600 text-white px-4 py-4 rounded-lg text-center\"\n >\n <div class=\"font-semibold text-lg\">{{ child.label }}</div>\n <div class=\"mt-1 text-sm opacity-90\">{{ child.status }}</div>\n </div>\n </div>\n\n <!-- SVG CONNECTORS -->\n <svg\n class=\"absolute inset-0 pointer-events-none\"\n [attr.width]=\"svgWidth\"\n [attr.height]=\"svgHeight\"\n >\n <line\n *ngFor=\"let line of lines\"\n [attr.x1]=\"line.x1\"\n [attr.y1]=\"line.y1\"\n [attr.x2]=\"line.x2\"\n [attr.y2]=\"line.y2\"\n stroke=\"#1f2937\"\n stroke-width=\"2\"\n />\n </svg>\n\n</div>\n", styles: [""], dependencies: [{ kind: "directive", type: i2.NgForOf, selector: "[ngFor][ngForOf]", inputs: ["ngForOf", "ngForTrackBy", "ngForTemplate"] }] });
|
|
2751
|
+
}
|
|
2752
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.4", ngImport: i0, type: TreeDiagram, decorators: [{
|
|
2753
|
+
type: Component,
|
|
2754
|
+
args: [{ selector: 'fx-ui-tree-diagram', standalone: false, template: "<div class=\"relative p-8\" #container>\n\n <!-- ROOT -->\n <div\n #root\n class=\"mx-auto w-fit bg-blue-600 text-white px-7 py-3 rounded-md font-semibold text-center\"\n >\n {{ data.label }}\n </div>\n\n <!-- CHILDREN -->\n <div class=\"mt-16 flex justify-center gap-16\">\n <div\n *ngFor=\"let child of data.children\"\n #child\n class=\"w-48 bg-rose-600 text-white px-4 py-4 rounded-lg text-center\"\n >\n <div class=\"font-semibold text-lg\">{{ child.label }}</div>\n <div class=\"mt-1 text-sm opacity-90\">{{ child.status }}</div>\n </div>\n </div>\n\n <!-- SVG CONNECTORS -->\n <svg\n class=\"absolute inset-0 pointer-events-none\"\n [attr.width]=\"svgWidth\"\n [attr.height]=\"svgHeight\"\n >\n <line\n *ngFor=\"let line of lines\"\n [attr.x1]=\"line.x1\"\n [attr.y1]=\"line.y1\"\n [attr.x2]=\"line.x2\"\n [attr.y2]=\"line.y2\"\n stroke=\"#1f2937\"\n stroke-width=\"2\"\n />\n </svg>\n\n</div>\n" }]
|
|
2755
|
+
}], ctorParameters: () => [{ type: i0.NgZone }, { type: i0.ChangeDetectorRef }], propDecorators: { data: [{
|
|
2756
|
+
type: Input
|
|
2757
|
+
}], container: [{
|
|
2758
|
+
type: ViewChild,
|
|
2759
|
+
args: ['container']
|
|
2760
|
+
}], root: [{
|
|
2761
|
+
type: ViewChild,
|
|
2762
|
+
args: ['root']
|
|
2763
|
+
}], children: [{
|
|
2764
|
+
type: ViewChildren,
|
|
2765
|
+
args: ['child']
|
|
2766
|
+
}] } });
|
|
2767
|
+
|
|
2665
2768
|
const FX_COMPONENTS = [
|
|
2666
2769
|
InputComponent,
|
|
2667
2770
|
SelectComponent,
|
|
@@ -2686,6 +2789,7 @@ const FX_COMPONENTS = [
|
|
|
2686
2789
|
SkeletonTableLoadingComponent,
|
|
2687
2790
|
FlowConnection,
|
|
2688
2791
|
CircleProgressBar,
|
|
2792
|
+
TreeDiagram,
|
|
2689
2793
|
];
|
|
2690
2794
|
|
|
2691
2795
|
class ConfirmationDialogComponent {
|
|
@@ -2741,7 +2845,7 @@ const MY_MOMENT_FORMATS = {
|
|
|
2741
2845
|
};
|
|
2742
2846
|
class UiModule {
|
|
2743
2847
|
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.4", ngImport: i0, type: UiModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
|
|
2744
|
-
static ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "20.3.4", ngImport: i0, type: UiModule, declarations: [InputComponent, SelectComponent, RadioButtonComponent, CheckboxComponent, DndUploadComponent, ButtonComponent, RadioButtonToggleComponent, DatetimePicker, LoadingPanel, SearchBarComponent, TabGroupComponent, TabComponent, HeroIconComponent, ToastComponent, ToastContainerComponent, TagComponent, ChartComponent, SliderComponent, SwitchComponent, RichTextAreaComponent, SkeletonTableLoadingComponent, FlowConnection, CircleProgressBar, ConfirmationDialogComponent], imports: [CommonModule,
|
|
2848
|
+
static ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "20.3.4", ngImport: i0, type: UiModule, declarations: [InputComponent, SelectComponent, RadioButtonComponent, CheckboxComponent, DndUploadComponent, ButtonComponent, RadioButtonToggleComponent, DatetimePicker, LoadingPanel, SearchBarComponent, TabGroupComponent, TabComponent, HeroIconComponent, ToastComponent, ToastContainerComponent, TagComponent, ChartComponent, SliderComponent, SwitchComponent, RichTextAreaComponent, SkeletonTableLoadingComponent, FlowConnection, CircleProgressBar, TreeDiagram, ConfirmationDialogComponent], imports: [CommonModule,
|
|
2745
2849
|
FormsModule,
|
|
2746
2850
|
ReactiveFormsModule,
|
|
2747
2851
|
OwlDateTimeModule,
|
|
@@ -2749,14 +2853,14 @@ class UiModule {
|
|
|
2749
2853
|
OwlMomentDateTimeModule,
|
|
2750
2854
|
HasPermissionDirective,
|
|
2751
2855
|
TrimOnBlurDirective,
|
|
2752
|
-
NgHeroiconsModule,
|
|
2856
|
+
NgHeroiconsModule, i26.VflowComponent, i26.HandleComponent, i26.ResizableComponent, i26.SelectableDirective, i26.MiniMapComponent, i26.NodeToolbarComponent, i26.CustomTemplateEdgeComponent, i26.DragHandleDirective, i26.ConnectionControllerDirective, i26.NodeHtmlTemplateDirective, i26.NodeSvgTemplateDirective, i26.GroupNodeTemplateDirective, i26.EdgeLabelHtmlTemplateDirective, i26.EdgeTemplateDirective, i26.ConnectionTemplateDirective, i26.HandleTemplateDirective, i2$3.NgxEchartsModule, i3$1.MatSelectModule, i29.MatRadioModule, i30.MatButtonModule, i31.MatIconModule, i32.MatPaginatorModule, i33.MatTableModule, i34.MatSnackBarModule, i1$1.MatDialogModule, i36.MatCheckboxModule, i37.MatCardModule, i38.MatDatepickerModule, i39.MatTimepickerModule, i40.MatBadgeModule, i41.MatExpansionModule, i42.MatFormFieldModule, i43.MatMenuModule], exports: [InputComponent, SelectComponent, RadioButtonComponent, CheckboxComponent, DndUploadComponent, ButtonComponent, RadioButtonToggleComponent, DatetimePicker, LoadingPanel, SearchBarComponent, TabGroupComponent, TabComponent, HeroIconComponent, ToastComponent, ToastContainerComponent, TagComponent, ChartComponent, SliderComponent, SwitchComponent, RichTextAreaComponent, SkeletonTableLoadingComponent, FlowConnection, CircleProgressBar, TreeDiagram, ConfirmationDialogComponent,
|
|
2753
2857
|
// Module
|
|
2754
2858
|
FormsModule,
|
|
2755
2859
|
ReactiveFormsModule,
|
|
2756
2860
|
OwlDateTimeModule,
|
|
2757
2861
|
OwlNativeDateTimeModule,
|
|
2758
2862
|
HasPermissionDirective,
|
|
2759
|
-
NgHeroiconsModule, i3$1.MatSelectModule,
|
|
2863
|
+
NgHeroiconsModule, i3$1.MatSelectModule, i29.MatRadioModule, i30.MatButtonModule, i31.MatIconModule, i32.MatPaginatorModule, i33.MatTableModule, i34.MatSnackBarModule, i1$1.MatDialogModule, i36.MatCheckboxModule, i37.MatCardModule, i38.MatDatepickerModule, i39.MatTimepickerModule, i40.MatBadgeModule, i41.MatExpansionModule, i42.MatFormFieldModule, i43.MatMenuModule] });
|
|
2760
2864
|
static ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "20.3.4", ngImport: i0, type: UiModule, providers: [
|
|
2761
2865
|
importProvidersFrom(NgHeroiconsModule.forRoot()),
|
|
2762
2866
|
{ provide: OWL_DATE_TIME_FORMATS, useValue: MY_MOMENT_FORMATS },
|
|
@@ -2766,13 +2870,13 @@ class UiModule {
|
|
|
2766
2870
|
OwlDateTimeModule,
|
|
2767
2871
|
OwlNativeDateTimeModule,
|
|
2768
2872
|
OwlMomentDateTimeModule,
|
|
2769
|
-
NgHeroiconsModule,
|
|
2873
|
+
NgHeroiconsModule, i26.VflowComponent, i26.HandleComponent, i26.ResizableComponent, i26.MiniMapComponent, i26.NodeToolbarComponent, i26.CustomTemplateEdgeComponent, NgxEchartsModule.forRoot({ echarts: () => import('echarts') }), MATERIAL_MODULE,
|
|
2770
2874
|
// Module
|
|
2771
2875
|
FormsModule,
|
|
2772
2876
|
ReactiveFormsModule,
|
|
2773
2877
|
OwlDateTimeModule,
|
|
2774
2878
|
OwlNativeDateTimeModule,
|
|
2775
|
-
NgHeroiconsModule, i3$1.MatSelectModule,
|
|
2879
|
+
NgHeroiconsModule, i3$1.MatSelectModule, i29.MatRadioModule, i30.MatButtonModule, i31.MatIconModule, i32.MatPaginatorModule, i33.MatTableModule, i34.MatSnackBarModule, i1$1.MatDialogModule, i36.MatCheckboxModule, i37.MatCardModule, i38.MatDatepickerModule, i39.MatTimepickerModule, i40.MatBadgeModule, i41.MatExpansionModule, i42.MatFormFieldModule, i43.MatMenuModule] });
|
|
2776
2880
|
}
|
|
2777
2881
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.4", ngImport: i0, type: UiModule, decorators: [{
|
|
2778
2882
|
type: NgModule,
|
|
@@ -2820,5 +2924,5 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.4", ngImpor
|
|
|
2820
2924
|
* Generated bundle index. Do not edit.
|
|
2821
2925
|
*/
|
|
2822
2926
|
|
|
2823
|
-
export { AuthInterceptor, AuthStateService, BaseComponent, BaseDialogComponent, BaseResolver, BaseTableComponent, BreadcrumbService, ButtonComponent, ChartComponent, CheckboxComponent, CircleProgressBar, ConfirmationDialogComponent, DatetimePicker, DndUploadComponent, FlowConnection, FxLoadingService, FxStorageService, FxToastrService, FxUtils, HasPermissionDirective, HeroIconComponent, HttpLoaderFactory, HttpWrapper, InputComponent, LoadingPanel, MY_MOMENT_FORMATS, PermissionGuard, PermissionService, QuillStyleLoaderService, RadioButtonComponent, RadioButtonToggleComponent, RichTextAreaComponent, SearchBarComponent, SelectComponent, SkeletonTableLoadingComponent, SliderComponent, SwitchComponent, TabComponent, TabGroupComponent, TagComponent, ToastComponent, ToastContainerComponent, TranslationModule, TranslationService, TrimOnBlurDirective, UiModule };
|
|
2927
|
+
export { AuthInterceptor, AuthStateService, BaseComponent, BaseDialogComponent, BaseResolver, BaseTableComponent, BreadcrumbService, ButtonComponent, ChartComponent, CheckboxComponent, CircleProgressBar, ConfirmationDialogComponent, DatetimePicker, DndUploadComponent, FlowConnection, FxLoadingService, FxStorageService, FxToastrService, FxUtils, HasPermissionDirective, HeroIconComponent, HttpLoaderFactory, HttpWrapper, InputComponent, LoadingPanel, MY_MOMENT_FORMATS, PermissionGuard, PermissionService, QuillStyleLoaderService, RadioButtonComponent, RadioButtonToggleComponent, RichTextAreaComponent, SearchBarComponent, SelectComponent, SkeletonTableLoadingComponent, SliderComponent, SwitchComponent, TabComponent, TabGroupComponent, TagComponent, ToastComponent, ToastContainerComponent, TranslationModule, TranslationService, TreeDiagram, TrimOnBlurDirective, UiModule };
|
|
2824
2928
|
//# sourceMappingURL=fxlt-common-ui.mjs.map
|