@bizy/core 19.0.30 → 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
|
@@ -4256,6 +4256,43 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.1", ngImpor
|
|
|
4256
4256
|
}]
|
|
4257
4257
|
}] });
|
|
4258
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
|
+
|
|
4259
4296
|
class BizyTableColumnFixedDirective {
|
|
4260
4297
|
#elementRef = inject(ElementRef);
|
|
4261
4298
|
#renderer = inject(Renderer2);
|
|
@@ -4630,43 +4667,6 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.1", ngImpor
|
|
|
4630
4667
|
args: ['tableScrollingContent']
|
|
4631
4668
|
}] } });
|
|
4632
4669
|
|
|
4633
|
-
class BizyTableScrollingDirective {
|
|
4634
|
-
viewContainerRef;
|
|
4635
|
-
template;
|
|
4636
|
-
ref;
|
|
4637
|
-
#items = new BehaviorSubject([]);
|
|
4638
|
-
get items$() {
|
|
4639
|
-
return this.#items.asObservable();
|
|
4640
|
-
}
|
|
4641
|
-
set tableForIn(value) {
|
|
4642
|
-
this.#items.next(value);
|
|
4643
|
-
}
|
|
4644
|
-
constructor(viewContainerRef, template, ref) {
|
|
4645
|
-
this.viewContainerRef = viewContainerRef;
|
|
4646
|
-
this.template = template;
|
|
4647
|
-
this.ref = ref;
|
|
4648
|
-
}
|
|
4649
|
-
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 });
|
|
4650
|
-
static ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "19.2.1", type: BizyTableScrollingDirective, isStandalone: true, selector: "[tableFor]", inputs: { tableForIn: "tableForIn" }, ngImport: i0 });
|
|
4651
|
-
}
|
|
4652
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.1", ngImport: i0, type: BizyTableScrollingDirective, decorators: [{
|
|
4653
|
-
type: Directive,
|
|
4654
|
-
args: [{
|
|
4655
|
-
selector: '[tableFor]',
|
|
4656
|
-
}]
|
|
4657
|
-
}], ctorParameters: () => [{ type: i0.ViewContainerRef, decorators: [{
|
|
4658
|
-
type: Inject,
|
|
4659
|
-
args: [ViewContainerRef]
|
|
4660
|
-
}] }, { type: i0.TemplateRef, decorators: [{
|
|
4661
|
-
type: Inject,
|
|
4662
|
-
args: [TemplateRef]
|
|
4663
|
-
}] }, { type: i0.ChangeDetectorRef, decorators: [{
|
|
4664
|
-
type: Inject,
|
|
4665
|
-
args: [ChangeDetectorRef]
|
|
4666
|
-
}] }], propDecorators: { tableForIn: [{
|
|
4667
|
-
type: Input
|
|
4668
|
-
}] } });
|
|
4669
|
-
|
|
4670
4670
|
class BizyTableComponent {
|
|
4671
4671
|
ref;
|
|
4672
4672
|
document;
|
|
@@ -4904,7 +4904,8 @@ const COMPONENTS$4 = [
|
|
|
4904
4904
|
BizyTableScrollingComponent
|
|
4905
4905
|
];
|
|
4906
4906
|
const DIRECTIVES$1 = [
|
|
4907
|
-
|
|
4907
|
+
BizyTableScrollingDirective,
|
|
4908
|
+
BizyTableColumnFixedDirective
|
|
4908
4909
|
];
|
|
4909
4910
|
class BizyTableModule {
|
|
4910
4911
|
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.1", ngImport: i0, type: BizyTableModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
|
|
@@ -4915,14 +4916,16 @@ class BizyTableModule {
|
|
|
4915
4916
|
BizyTableHeaderComponent,
|
|
4916
4917
|
BizyTableRowComponent,
|
|
4917
4918
|
BizyTableRowExpandContentComponent,
|
|
4918
|
-
BizyTableScrollingComponent,
|
|
4919
|
+
BizyTableScrollingComponent, BizyTableScrollingDirective,
|
|
4920
|
+
BizyTableColumnFixedDirective], exports: [BizyTableComponent,
|
|
4919
4921
|
BizyTableColumnComponent,
|
|
4920
4922
|
BizyTableColumnArrowsComponent,
|
|
4921
4923
|
BizyTableFooterComponent,
|
|
4922
4924
|
BizyTableHeaderComponent,
|
|
4923
4925
|
BizyTableRowComponent,
|
|
4924
4926
|
BizyTableRowExpandContentComponent,
|
|
4925
|
-
BizyTableScrollingComponent,
|
|
4927
|
+
BizyTableScrollingComponent, BizyTableScrollingDirective,
|
|
4928
|
+
BizyTableColumnFixedDirective] });
|
|
4926
4929
|
static ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "19.2.1", ngImport: i0, type: BizyTableModule, imports: [BizyTableComponent,
|
|
4927
4930
|
BizyTableColumnComponent,
|
|
4928
4931
|
BizyTableColumnArrowsComponent,
|