@bizy/core 19.0.29 → 19.0.31
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/fesm2022/bizy-core.mjs
CHANGED
|
@@ -2569,6 +2569,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.1", ngImpor
|
|
|
2569
2569
|
|
|
2570
2570
|
const COMPONENTS$g = [
|
|
2571
2571
|
BizyFilterComponent,
|
|
2572
|
+
BizyFilterSectionComponent,
|
|
2572
2573
|
BizyFilterContentComponent,
|
|
2573
2574
|
BizyFilterSectionCheckboxOptionComponent,
|
|
2574
2575
|
BizyFilterSectionRangeOptionComponent,
|
|
@@ -2582,12 +2583,14 @@ const PIPES$1 = [
|
|
|
2582
2583
|
class BizyFilterModule {
|
|
2583
2584
|
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.1", ngImport: i0, type: BizyFilterModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
|
|
2584
2585
|
static ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "19.2.1", ngImport: i0, type: BizyFilterModule, imports: [BizyFilterComponent,
|
|
2586
|
+
BizyFilterSectionComponent,
|
|
2585
2587
|
BizyFilterContentComponent,
|
|
2586
2588
|
BizyFilterSectionCheckboxOptionComponent,
|
|
2587
2589
|
BizyFilterSectionRangeOptionComponent,
|
|
2588
2590
|
BizyFilterSectionSearchOptionComponent,
|
|
2589
2591
|
BizyFilterSectionsComponent, BizyFilterPipe,
|
|
2590
2592
|
BizyRangeFilterPipe], exports: [BizyFilterComponent,
|
|
2593
|
+
BizyFilterSectionComponent,
|
|
2591
2594
|
BizyFilterContentComponent,
|
|
2592
2595
|
BizyFilterSectionCheckboxOptionComponent,
|
|
2593
2596
|
BizyFilterSectionRangeOptionComponent,
|
|
@@ -2595,6 +2598,7 @@ class BizyFilterModule {
|
|
|
2595
2598
|
BizyFilterSectionsComponent, BizyFilterPipe,
|
|
2596
2599
|
BizyRangeFilterPipe] });
|
|
2597
2600
|
static ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "19.2.1", ngImport: i0, type: BizyFilterModule, providers: PIPES$1, imports: [BizyFilterComponent,
|
|
2601
|
+
BizyFilterSectionComponent,
|
|
2598
2602
|
BizyFilterSectionCheckboxOptionComponent,
|
|
2599
2603
|
BizyFilterSectionRangeOptionComponent,
|
|
2600
2604
|
BizyFilterSectionSearchOptionComponent] });
|
|
@@ -4252,6 +4256,43 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.1", ngImpor
|
|
|
4252
4256
|
}]
|
|
4253
4257
|
}] });
|
|
4254
4258
|
|
|
4259
|
+
class BizyTableScrollingDirective {
|
|
4260
|
+
viewContainerRef;
|
|
4261
|
+
template;
|
|
4262
|
+
ref;
|
|
4263
|
+
#items = new BehaviorSubject([]);
|
|
4264
|
+
get items$() {
|
|
4265
|
+
return this.#items.asObservable();
|
|
4266
|
+
}
|
|
4267
|
+
set tableForIn(value) {
|
|
4268
|
+
this.#items.next(value);
|
|
4269
|
+
}
|
|
4270
|
+
constructor(viewContainerRef, template, ref) {
|
|
4271
|
+
this.viewContainerRef = viewContainerRef;
|
|
4272
|
+
this.template = template;
|
|
4273
|
+
this.ref = ref;
|
|
4274
|
+
}
|
|
4275
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.1", ngImport: i0, type: BizyTableScrollingDirective, deps: [{ token: ViewContainerRef }, { token: TemplateRef }, { token: ChangeDetectorRef }], target: i0.ɵɵFactoryTarget.Directive });
|
|
4276
|
+
static ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "19.2.1", type: BizyTableScrollingDirective, isStandalone: true, selector: "[tableFor]", inputs: { tableForIn: "tableForIn" }, ngImport: i0 });
|
|
4277
|
+
}
|
|
4278
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.1", ngImport: i0, type: BizyTableScrollingDirective, decorators: [{
|
|
4279
|
+
type: Directive,
|
|
4280
|
+
args: [{
|
|
4281
|
+
selector: '[tableFor]',
|
|
4282
|
+
}]
|
|
4283
|
+
}], ctorParameters: () => [{ type: i0.ViewContainerRef, decorators: [{
|
|
4284
|
+
type: Inject,
|
|
4285
|
+
args: [ViewContainerRef]
|
|
4286
|
+
}] }, { type: i0.TemplateRef, decorators: [{
|
|
4287
|
+
type: Inject,
|
|
4288
|
+
args: [TemplateRef]
|
|
4289
|
+
}] }, { type: i0.ChangeDetectorRef, decorators: [{
|
|
4290
|
+
type: Inject,
|
|
4291
|
+
args: [ChangeDetectorRef]
|
|
4292
|
+
}] }], propDecorators: { tableForIn: [{
|
|
4293
|
+
type: Input
|
|
4294
|
+
}] } });
|
|
4295
|
+
|
|
4255
4296
|
class BizyTableColumnFixedDirective {
|
|
4256
4297
|
#elementRef = inject(ElementRef);
|
|
4257
4298
|
#renderer = inject(Renderer2);
|
|
@@ -4626,43 +4667,6 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.1", ngImpor
|
|
|
4626
4667
|
args: ['tableScrollingContent']
|
|
4627
4668
|
}] } });
|
|
4628
4669
|
|
|
4629
|
-
class BizyTableScrollingDirective {
|
|
4630
|
-
viewContainerRef;
|
|
4631
|
-
template;
|
|
4632
|
-
ref;
|
|
4633
|
-
#items = new BehaviorSubject([]);
|
|
4634
|
-
get items$() {
|
|
4635
|
-
return this.#items.asObservable();
|
|
4636
|
-
}
|
|
4637
|
-
set tableForIn(value) {
|
|
4638
|
-
this.#items.next(value);
|
|
4639
|
-
}
|
|
4640
|
-
constructor(viewContainerRef, template, ref) {
|
|
4641
|
-
this.viewContainerRef = viewContainerRef;
|
|
4642
|
-
this.template = template;
|
|
4643
|
-
this.ref = ref;
|
|
4644
|
-
}
|
|
4645
|
-
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.1", ngImport: i0, type: BizyTableScrollingDirective, deps: [{ token: ViewContainerRef }, { token: TemplateRef }, { token: ChangeDetectorRef }], target: i0.ɵɵFactoryTarget.Directive });
|
|
4646
|
-
static ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "19.2.1", type: BizyTableScrollingDirective, isStandalone: true, selector: "[tableFor]", inputs: { tableForIn: "tableForIn" }, ngImport: i0 });
|
|
4647
|
-
}
|
|
4648
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.1", ngImport: i0, type: BizyTableScrollingDirective, decorators: [{
|
|
4649
|
-
type: Directive,
|
|
4650
|
-
args: [{
|
|
4651
|
-
selector: '[tableFor]',
|
|
4652
|
-
}]
|
|
4653
|
-
}], ctorParameters: () => [{ type: i0.ViewContainerRef, decorators: [{
|
|
4654
|
-
type: Inject,
|
|
4655
|
-
args: [ViewContainerRef]
|
|
4656
|
-
}] }, { type: i0.TemplateRef, decorators: [{
|
|
4657
|
-
type: Inject,
|
|
4658
|
-
args: [TemplateRef]
|
|
4659
|
-
}] }, { type: i0.ChangeDetectorRef, decorators: [{
|
|
4660
|
-
type: Inject,
|
|
4661
|
-
args: [ChangeDetectorRef]
|
|
4662
|
-
}] }], propDecorators: { tableForIn: [{
|
|
4663
|
-
type: Input
|
|
4664
|
-
}] } });
|
|
4665
|
-
|
|
4666
4670
|
class BizyTableComponent {
|
|
4667
4671
|
ref;
|
|
4668
4672
|
document;
|
|
@@ -4900,7 +4904,8 @@ const COMPONENTS$4 = [
|
|
|
4900
4904
|
BizyTableScrollingComponent
|
|
4901
4905
|
];
|
|
4902
4906
|
const DIRECTIVES$1 = [
|
|
4903
|
-
|
|
4907
|
+
BizyTableScrollingDirective,
|
|
4908
|
+
BizyTableColumnFixedDirective
|
|
4904
4909
|
];
|
|
4905
4910
|
class BizyTableModule {
|
|
4906
4911
|
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.1", ngImport: i0, type: BizyTableModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
|
|
@@ -4911,14 +4916,16 @@ class BizyTableModule {
|
|
|
4911
4916
|
BizyTableHeaderComponent,
|
|
4912
4917
|
BizyTableRowComponent,
|
|
4913
4918
|
BizyTableRowExpandContentComponent,
|
|
4914
|
-
BizyTableScrollingComponent,
|
|
4919
|
+
BizyTableScrollingComponent, BizyTableScrollingDirective,
|
|
4920
|
+
BizyTableColumnFixedDirective], exports: [BizyTableComponent,
|
|
4915
4921
|
BizyTableColumnComponent,
|
|
4916
4922
|
BizyTableColumnArrowsComponent,
|
|
4917
4923
|
BizyTableFooterComponent,
|
|
4918
4924
|
BizyTableHeaderComponent,
|
|
4919
4925
|
BizyTableRowComponent,
|
|
4920
4926
|
BizyTableRowExpandContentComponent,
|
|
4921
|
-
BizyTableScrollingComponent,
|
|
4927
|
+
BizyTableScrollingComponent, BizyTableScrollingDirective,
|
|
4928
|
+
BizyTableColumnFixedDirective] });
|
|
4922
4929
|
static ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "19.2.1", ngImport: i0, type: BizyTableModule, imports: [BizyTableComponent,
|
|
4923
4930
|
BizyTableColumnComponent,
|
|
4924
4931
|
BizyTableColumnArrowsComponent,
|