verben-workflow-ui 0.5.38 → 0.5.40
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/esm2022/src/lib/components/form-group/form-fields/form-fields.component.mjs +3 -4
- package/esm2022/src/lib/components/my-queue/my-queue.component.mjs +18 -4
- package/esm2022/src/lib/components/my-queue/my-queue.facade.mjs +2 -2
- package/esm2022/src/lib/components/tasks/tasks.component.mjs +15 -6
- package/esm2022/src/lib/components/tasks/tasks.module.mjs +7 -3
- package/fesm2022/verben-workflow-ui-src-lib-components-form-group.mjs +2 -3
- package/fesm2022/verben-workflow-ui-src-lib-components-form-group.mjs.map +1 -1
- package/fesm2022/verben-workflow-ui-src-lib-components-my-queue.mjs +18 -4
- package/fesm2022/verben-workflow-ui-src-lib-components-my-queue.mjs.map +1 -1
- package/fesm2022/verben-workflow-ui-src-lib-components-tasks.mjs +21 -8
- package/fesm2022/verben-workflow-ui-src-lib-components-tasks.mjs.map +1 -1
- package/package.json +31 -31
- package/src/lib/components/my-queue/my-queue.component.d.ts +3 -1
- package/src/lib/components/tasks/tasks.component.d.ts +2 -1
- package/src/lib/components/tasks/tasks.module.d.ts +2 -1
- package/styles/styles.css +47 -4
|
@@ -9,7 +9,7 @@ export declare class TasksComponent extends BaseDataViewComponent<Task> {
|
|
|
9
9
|
private cdr;
|
|
10
10
|
private taskFacade;
|
|
11
11
|
config: DataViewConfig<Task>;
|
|
12
|
-
|
|
12
|
+
popups: import("@angular/core").Signal<readonly VerbenPopUpComponent[]>;
|
|
13
13
|
selectedTaskCode: string | null;
|
|
14
14
|
activeActionType: ActionType | null;
|
|
15
15
|
comment: string;
|
|
@@ -28,6 +28,7 @@ export declare class TasksComponent extends BaseDataViewComponent<Task> {
|
|
|
28
28
|
constructor(cdr: ChangeDetectorRef, taskFacade: TaskFacade);
|
|
29
29
|
loadInitialData(): void;
|
|
30
30
|
handlePopupClose(event: boolean): void;
|
|
31
|
+
onPopupToggled(isOpen: boolean, currentPopup: VerbenPopUpComponent): void;
|
|
31
32
|
handleAction(task: Task, popup: VerbenPopUpComponent): void;
|
|
32
33
|
onStateChange(event: {
|
|
33
34
|
key: string;
|
|
@@ -7,8 +7,9 @@ import * as i5 from "verben-workflow-ui/src/lib/components/task-form";
|
|
|
7
7
|
import * as i6 from "verben-workflow-ui/src/lib/components/form-control";
|
|
8
8
|
import * as i7 from "verben-workflow-ui/src/lib/components/form-timer";
|
|
9
9
|
import * as i8 from "@angular/router";
|
|
10
|
+
import * as i9 from "verben-ng-ui";
|
|
10
11
|
export declare class TasksModule {
|
|
11
12
|
static ɵfac: i0.ɵɵFactoryDeclaration<TasksModule, never>;
|
|
12
|
-
static ɵmod: i0.ɵɵNgModuleDeclaration<TasksModule, [typeof i1.TasksComponent, typeof i2.TasksFormComponent], [typeof i3.CommonModule, typeof i4.SharedModule, typeof i5.TaskFormModule, typeof i6.FormControlerModule, typeof i7.FormTimerModule, typeof i8.RouterLink], [typeof i1.TasksComponent]>;
|
|
13
|
+
static ɵmod: i0.ɵɵNgModuleDeclaration<TasksModule, [typeof i1.TasksComponent, typeof i2.TasksFormComponent], [typeof i3.CommonModule, typeof i4.SharedModule, typeof i5.TaskFormModule, typeof i6.FormControlerModule, typeof i7.FormTimerModule, typeof i8.RouterLink, typeof i9.TooltipModule], [typeof i1.TasksComponent]>;
|
|
13
14
|
static ɵinj: i0.ɵɵInjectorDeclaration<TasksModule>;
|
|
14
15
|
}
|
package/styles/styles.css
CHANGED
|
@@ -532,6 +532,9 @@ video {
|
|
|
532
532
|
max-width: 1536px;
|
|
533
533
|
}
|
|
534
534
|
}
|
|
535
|
+
.pointer-events-none {
|
|
536
|
+
pointer-events: none;
|
|
537
|
+
}
|
|
535
538
|
.visible {
|
|
536
539
|
visibility: visible;
|
|
537
540
|
}
|
|
@@ -574,6 +577,9 @@ video {
|
|
|
574
577
|
.right-0 {
|
|
575
578
|
right: 0px;
|
|
576
579
|
}
|
|
580
|
+
.z-10 {
|
|
581
|
+
z-index: 10;
|
|
582
|
+
}
|
|
577
583
|
.z-\[10000\] {
|
|
578
584
|
z-index: 10000;
|
|
579
585
|
}
|
|
@@ -684,6 +690,9 @@ video {
|
|
|
684
690
|
.flex {
|
|
685
691
|
display: flex;
|
|
686
692
|
}
|
|
693
|
+
.inline-flex {
|
|
694
|
+
display: inline-flex;
|
|
695
|
+
}
|
|
687
696
|
.grid {
|
|
688
697
|
display: grid;
|
|
689
698
|
}
|
|
@@ -708,6 +717,9 @@ video {
|
|
|
708
717
|
.h-\[100px\] {
|
|
709
718
|
height: 100px;
|
|
710
719
|
}
|
|
720
|
+
.h-\[30px\] {
|
|
721
|
+
height: 30px;
|
|
722
|
+
}
|
|
711
723
|
.h-\[31px\] {
|
|
712
724
|
height: 31px;
|
|
713
725
|
}
|
|
@@ -769,9 +781,15 @@ video {
|
|
|
769
781
|
.w-\[150px\] {
|
|
770
782
|
width: 150px;
|
|
771
783
|
}
|
|
784
|
+
.w-\[30px\] {
|
|
785
|
+
width: 30px;
|
|
786
|
+
}
|
|
772
787
|
.w-\[326px\] {
|
|
773
788
|
width: 326px;
|
|
774
789
|
}
|
|
790
|
+
.w-\[350px\] {
|
|
791
|
+
width: 350px;
|
|
792
|
+
}
|
|
775
793
|
.w-\[400px\] {
|
|
776
794
|
width: 400px;
|
|
777
795
|
}
|
|
@@ -800,6 +818,10 @@ video {
|
|
|
800
818
|
.min-w-\[250px\] {
|
|
801
819
|
min-width: 250px;
|
|
802
820
|
}
|
|
821
|
+
.max-w-fit {
|
|
822
|
+
max-width: -moz-fit-content;
|
|
823
|
+
max-width: fit-content;
|
|
824
|
+
}
|
|
803
825
|
.flex-1 {
|
|
804
826
|
flex: 1 1 0%;
|
|
805
827
|
}
|
|
@@ -810,9 +832,18 @@ video {
|
|
|
810
832
|
.transform {
|
|
811
833
|
transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
|
|
812
834
|
}
|
|
835
|
+
.cursor-not-allowed {
|
|
836
|
+
cursor: not-allowed;
|
|
837
|
+
}
|
|
813
838
|
.cursor-pointer {
|
|
814
839
|
cursor: pointer;
|
|
815
840
|
}
|
|
841
|
+
.list-inside {
|
|
842
|
+
list-style-position: inside;
|
|
843
|
+
}
|
|
844
|
+
.list-disc {
|
|
845
|
+
list-style-type: disc;
|
|
846
|
+
}
|
|
816
847
|
.grid-cols-12 {
|
|
817
848
|
grid-template-columns: repeat(12, minmax(0, 1fr));
|
|
818
849
|
}
|
|
@@ -957,6 +988,9 @@ video {
|
|
|
957
988
|
.border-b {
|
|
958
989
|
border-bottom-width: 1px;
|
|
959
990
|
}
|
|
991
|
+
.border-b-2 {
|
|
992
|
+
border-bottom-width: 2px;
|
|
993
|
+
}
|
|
960
994
|
.border-b-4 {
|
|
961
995
|
border-bottom-width: 4px;
|
|
962
996
|
}
|
|
@@ -1114,10 +1148,6 @@ video {
|
|
|
1114
1148
|
padding-left: 0.5rem;
|
|
1115
1149
|
padding-right: 0.5rem;
|
|
1116
1150
|
}
|
|
1117
|
-
.px-2\.5 {
|
|
1118
|
-
padding-left: 0.625rem;
|
|
1119
|
-
padding-right: 0.625rem;
|
|
1120
|
-
}
|
|
1121
1151
|
.px-3 {
|
|
1122
1152
|
padding-left: 0.75rem;
|
|
1123
1153
|
padding-right: 0.75rem;
|
|
@@ -1150,6 +1180,9 @@ video {
|
|
|
1150
1180
|
padding-top: 1.5rem;
|
|
1151
1181
|
padding-bottom: 1.5rem;
|
|
1152
1182
|
}
|
|
1183
|
+
.pb-1 {
|
|
1184
|
+
padding-bottom: 0.25rem;
|
|
1185
|
+
}
|
|
1153
1186
|
.pb-3 {
|
|
1154
1187
|
padding-bottom: 0.75rem;
|
|
1155
1188
|
}
|
|
@@ -1239,6 +1272,9 @@ video {
|
|
|
1239
1272
|
.font-semibold {
|
|
1240
1273
|
font-weight: 600;
|
|
1241
1274
|
}
|
|
1275
|
+
.capitalize {
|
|
1276
|
+
text-transform: capitalize;
|
|
1277
|
+
}
|
|
1242
1278
|
.leading-\[12\.1px\] {
|
|
1243
1279
|
line-height: 12.1px;
|
|
1244
1280
|
}
|
|
@@ -1303,6 +1339,10 @@ video {
|
|
|
1303
1339
|
--tw-text-opacity: 1;
|
|
1304
1340
|
color: rgb(205 98 0 / var(--tw-text-opacity, 1));
|
|
1305
1341
|
}
|
|
1342
|
+
.text-\[\#fff\] {
|
|
1343
|
+
--tw-text-opacity: 1;
|
|
1344
|
+
color: rgb(255 255 255 / var(--tw-text-opacity, 1));
|
|
1345
|
+
}
|
|
1306
1346
|
.text-muted {
|
|
1307
1347
|
color: rgba(0, 0, 0, 0.6);
|
|
1308
1348
|
}
|
|
@@ -1313,6 +1353,9 @@ video {
|
|
|
1313
1353
|
.underline {
|
|
1314
1354
|
text-decoration-line: underline;
|
|
1315
1355
|
}
|
|
1356
|
+
.opacity-50 {
|
|
1357
|
+
opacity: 0.5;
|
|
1358
|
+
}
|
|
1316
1359
|
.shadow {
|
|
1317
1360
|
--tw-shadow: 0 1px 3px 0 rgb(0 0 0 / 0.1), 0 1px 2px -1px rgb(0 0 0 / 0.1);
|
|
1318
1361
|
--tw-shadow-colored: 0 1px 3px 0 var(--tw-shadow-color), 0 1px 2px -1px var(--tw-shadow-color);
|