@posiwise/shared-components 0.0.28 → 0.0.30
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/esm2020/index.mjs +3 -1
- package/esm2020/lib/shared-components.module.mjs +20 -4
- package/fesm2015/shared-components.mjs +22 -3
- package/fesm2015/shared-components.mjs.map +1 -1
- package/fesm2020/shared-components.mjs +22 -3
- package/fesm2020/shared-components.mjs.map +1 -1
- package/lib/shared-components.module.d.ts +5 -4
- package/package.json +4 -2
|
@@ -15,6 +15,7 @@ import { DirectivesModule } from '@posiwise/directives';
|
|
|
15
15
|
import { CoreTranslocoModule } from '@posiwise/core-transloco';
|
|
16
16
|
import * as i3 from '@posiwise/shared-public-components';
|
|
17
17
|
import { SharedPublicComponentsModule } from '@posiwise/shared-public-components';
|
|
18
|
+
import { PipesModule } from '@posiwise/pipes';
|
|
18
19
|
import { AB_TEST_ACTIONS, MAX_TIMEOUT_FOR_AUTO_CLOSE_LOADER } from '@posiwise/common-utilities';
|
|
19
20
|
import * as i1 from '@posiwise/common-services';
|
|
20
21
|
import { PermissionService } from '@posiwise/common-services';
|
|
@@ -824,6 +825,8 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.5", ngImpor
|
|
|
824
825
|
type: Input
|
|
825
826
|
}] } });
|
|
826
827
|
|
|
828
|
+
// import { PushbackPopupComponent } from './pushback-popup/pushback-popup.component';
|
|
829
|
+
// import { EntityGroupComponent } from './label-management/entity-group/entity-group.component';
|
|
827
830
|
const primeNgModules = [TabMenuModule];
|
|
828
831
|
class SharedComponentsModule {
|
|
829
832
|
}
|
|
@@ -846,10 +849,14 @@ SharedComponentsModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0",
|
|
|
846
849
|
AuthenticatorComponent,
|
|
847
850
|
ClearbitIconComponent,
|
|
848
851
|
ComingSoonComponent,
|
|
849
|
-
NoDataComponent
|
|
852
|
+
NoDataComponent
|
|
853
|
+
// PushbackPopupComponent,
|
|
854
|
+
// EntityGroupComponent
|
|
855
|
+
], imports: [FormsModule,
|
|
850
856
|
DirectivesModule,
|
|
851
857
|
CoreTranslocoModule,
|
|
852
|
-
ImageCropperModule, TabMenuModule,
|
|
858
|
+
ImageCropperModule, TabMenuModule, PipesModule,
|
|
859
|
+
CommonModule,
|
|
853
860
|
SharedPublicComponentsModule,
|
|
854
861
|
NgbModule], exports: [AbTestContainerComponent,
|
|
855
862
|
AbAlternativeComponent,
|
|
@@ -869,12 +876,16 @@ SharedComponentsModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0",
|
|
|
869
876
|
AuthenticatorComponent,
|
|
870
877
|
ClearbitIconComponent,
|
|
871
878
|
ComingSoonComponent,
|
|
872
|
-
NoDataComponent
|
|
879
|
+
NoDataComponent
|
|
880
|
+
// PushbackPopupComponent,
|
|
881
|
+
// EntityGroupComponent
|
|
882
|
+
] });
|
|
873
883
|
SharedComponentsModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "15.2.5", ngImport: i0, type: SharedComponentsModule, imports: [FormsModule,
|
|
874
884
|
DirectivesModule,
|
|
875
885
|
CoreTranslocoModule,
|
|
876
886
|
ImageCropperModule,
|
|
877
887
|
primeNgModules,
|
|
888
|
+
PipesModule,
|
|
878
889
|
CommonModule,
|
|
879
890
|
SharedPublicComponentsModule,
|
|
880
891
|
NgbModule, ImageCropperModule, TabMenuModule] });
|
|
@@ -901,6 +912,8 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.5", ngImpor
|
|
|
901
912
|
ClearbitIconComponent,
|
|
902
913
|
ComingSoonComponent,
|
|
903
914
|
NoDataComponent
|
|
915
|
+
// PushbackPopupComponent,
|
|
916
|
+
// EntityGroupComponent
|
|
904
917
|
],
|
|
905
918
|
imports: [
|
|
906
919
|
FormsModule,
|
|
@@ -908,6 +921,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.5", ngImpor
|
|
|
908
921
|
CoreTranslocoModule,
|
|
909
922
|
ImageCropperModule,
|
|
910
923
|
primeNgModules,
|
|
924
|
+
PipesModule,
|
|
911
925
|
CommonModule,
|
|
912
926
|
SharedPublicComponentsModule,
|
|
913
927
|
NgbModule
|
|
@@ -934,10 +948,15 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.5", ngImpor
|
|
|
934
948
|
ClearbitIconComponent,
|
|
935
949
|
ComingSoonComponent,
|
|
936
950
|
NoDataComponent
|
|
951
|
+
// PushbackPopupComponent,
|
|
952
|
+
// EntityGroupComponent
|
|
937
953
|
]
|
|
938
954
|
}]
|
|
939
955
|
}] });
|
|
940
956
|
|
|
957
|
+
// export * from './lib/pushback-popup/pushback-popup.component';
|
|
958
|
+
// export * from './lib/label-management/entity-group/entity-group.component';
|
|
959
|
+
|
|
941
960
|
/**
|
|
942
961
|
* Generated bundle index. Do not edit.
|
|
943
962
|
*/
|