@breadstone/mosaik-elements-angular 0.1.47 → 0.1.48
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/CHANGELOG.md
CHANGED
|
@@ -14284,12 +14284,12 @@ let DrawerContentComponent = class DrawerContentComponent {
|
|
|
14284
14284
|
return this._elementRef;
|
|
14285
14285
|
}
|
|
14286
14286
|
/**
|
|
14287
|
-
* Signal input for the `
|
|
14287
|
+
* Signal input for the `isOpen` property.
|
|
14288
14288
|
*
|
|
14289
14289
|
* @public
|
|
14290
14290
|
*/
|
|
14291
|
-
|
|
14292
|
-
...(ngDevMode ? [undefined, { debugName: "
|
|
14291
|
+
isOpen = input(/* @ts-ignore */
|
|
14292
|
+
...(ngDevMode ? [undefined, { debugName: "isOpen" }] : /* istanbul ignore next */ []));
|
|
14293
14293
|
/**
|
|
14294
14294
|
* Signal input for the `themeName` property.
|
|
14295
14295
|
*
|
|
@@ -14320,9 +14320,9 @@ let DrawerContentComponent = class DrawerContentComponent {
|
|
|
14320
14320
|
*/
|
|
14321
14321
|
initInputSyncEffect() {
|
|
14322
14322
|
effect(() => {
|
|
14323
|
-
const
|
|
14324
|
-
if (
|
|
14325
|
-
this._elementRef.nativeElement.
|
|
14323
|
+
const isOpenValue = this.isOpen();
|
|
14324
|
+
if (isOpenValue !== undefined) {
|
|
14325
|
+
this._elementRef.nativeElement.isOpen = isOpenValue;
|
|
14326
14326
|
}
|
|
14327
14327
|
const themeNameValue = this.themeName();
|
|
14328
14328
|
if (themeNameValue !== undefined) {
|
|
@@ -14373,12 +14373,12 @@ let DrawerContentComponent = class DrawerContentComponent {
|
|
|
14373
14373
|
this._elementRef.nativeElement[property] = value;
|
|
14374
14374
|
}
|
|
14375
14375
|
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.5", ngImport: i0, type: DrawerContentComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
|
|
14376
|
-
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.1.0", version: "22.0.5", type: DrawerContentComponent, isStandalone: true, selector: "mosaik-drawer-content", inputs: {
|
|
14376
|
+
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.1.0", version: "22.0.5", type: DrawerContentComponent, isStandalone: true, selector: "mosaik-drawer-content", inputs: { isOpen: { classPropertyName: "isOpen", publicName: "isOpen", isSignal: true, isRequired: false, transformFunction: null }, themeName: { classPropertyName: "themeName", publicName: "themeName", isSignal: true, isRequired: false, transformFunction: null }, dir: { classPropertyName: "dir", publicName: "dir", isSignal: true, isRequired: false, transformFunction: null }, lang: { classPropertyName: "lang", publicName: "lang", isSignal: true, isRequired: false, transformFunction: null } }, outputs: { connected: "connected", disconnected: "disconnected", changed: "changed" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
14377
14377
|
};
|
|
14378
14378
|
DrawerContentComponent = __decorate$4q([
|
|
14379
14379
|
ProxyCmp({
|
|
14380
14380
|
defineCustomElementFn: () => defineCustomElement('mosaik-drawer-content', DrawerContentElement),
|
|
14381
|
-
inputs: ['
|
|
14381
|
+
inputs: ['isOpen', 'themeName', 'dir', 'lang']
|
|
14382
14382
|
}),
|
|
14383
14383
|
__metadata$4q("design:paramtypes", [])
|
|
14384
14384
|
], DrawerContentComponent);
|
|
@@ -14390,7 +14390,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.5", ngImpor
|
|
|
14390
14390
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
14391
14391
|
template: '<ng-content></ng-content>'
|
|
14392
14392
|
}]
|
|
14393
|
-
}], ctorParameters: () => [], propDecorators: {
|
|
14393
|
+
}], ctorParameters: () => [], propDecorators: { isOpen: [{ type: i0.Input, args: [{ isSignal: true, alias: "isOpen", required: false }] }], themeName: [{ type: i0.Input, args: [{ isSignal: true, alias: "themeName", required: false }] }], dir: [{ type: i0.Input, args: [{ isSignal: true, alias: "dir", required: false }] }], lang: [{ type: i0.Input, args: [{ isSignal: true, alias: "lang", required: false }] }], connected: [{ type: i0.Output, args: ["connected"] }], disconnected: [{ type: i0.Output, args: ["disconnected"] }], changed: [{ type: i0.Output, args: ["changed"] }] } });
|
|
14394
14394
|
/**
|
|
14395
14395
|
* @public
|
|
14396
14396
|
*/
|
|
@@ -15544,7 +15544,7 @@ class DrawerPortalComponent extends PortalComponent$1 {
|
|
|
15544
15544
|
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.5", ngImport: i0, type: DrawerPortalComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
|
|
15545
15545
|
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "22.0.5", type: DrawerPortalComponent, isStandalone: true, selector: "mosaik-drawer-portal", host: { classAttribute: "drawer-portal" }, providers: [
|
|
15546
15546
|
provideDrawerSlots()
|
|
15547
|
-
], viewQueries: [{ propertyName: "_portal", first: true, predicate: CdkPortalOutlet, descendants: true, static: true }, { propertyName: "_component", first: true, predicate: DrawerComponent, descendants: true, static: true }], exportAs: ["mosaikDrawerPortal"], usesInheritance: true, ngImport: i0, template: "<mosaik-drawer [closeable]=\"(this.drawerConfig?.closeable | of | async) ?? false\"\n [enter]=\"this.drawerConfig?.enter ?? null\"\n [exit]=\"this.drawerConfig?.exit ?? null\"\n [width]=\"this.drawerConfig?.size?.width ?? 'auto'\"\n [height]=\"this.drawerConfig?.size?.height ?? 'auto'\">\n @if (this.headerTemplate; as template) {\n <ng-container [ngTemplateOutlet]=\"template\" />\n } @else if ((this.drawerConfig?.header | of | async) || (this.drawerConfig?.subheader | of | async) || this.drawerConfig?.closeable) {\n <mosaik-drawer-header>\n <mosaik-drawer-header-text [text]=\"(this.drawerConfig?.header | of | async) ?? ''\" />\n <mosaik-drawer-header-sub-text [text]=\"(this.drawerConfig?.subheader | of | async) ?? ''\" />\n @if (this.drawerConfig?.closeable) {\n <mosaik-dismiss slot=\"suffix\"\n (click)=\"this.drawer.invoke('close')\" />\n }\n </mosaik-drawer-header>\n }\n <mosaik-drawer-content cdkScrollable>\n @if (this.contentTemplate; as template) {\n <ng-container [ngTemplateOutlet]=\"template\" />\n } @else { }\n <ng-template cdkPortalOutlet />\n </mosaik-drawer-content>\n @if (this.actionsTemplate; as template) {\n <mosaik-drawer-actions>\n <ng-container [ngTemplateOutlet]=\"template\" />\n </mosaik-drawer-actions>\n } @else if (this.drawerConfig?.actions) {\n <mosaik-drawer-actions>\n @for (action of this.drawerConfig?.actions; track action.label) {\n @if ((action?.visible | of | async) ?? true) {\n <mosaik-button [appearance]=\"action?.kind === 'primary' ? 'solid' : 'plain'\"\n [label]=\"(action?.label | of | async) ?? ''\"\n [disabled]=\"(action?.disabled | of | async) ?? false\"\n [variant]=\"'primary'\"\n (click)=\"action?.handler()\" />\n }\n }\n </mosaik-drawer-actions>\n }\n @if (this.footerTemplate; as template) {\n <mosaik-drawer-footer>\n <ng-container [ngTemplateOutlet]=\"template\" />\n </mosaik-drawer-footer>\n }\n</mosaik-drawer>", styles: [".cdk-overlay-backdrop.mosaik-cdk-backdrop{--backdrop-background-color: var(--joy-scheme-semi-transparent);--backdrop-blur: 4px;--backdrop-transition-duration: var(--mosaik-duration-short);--backdrop-transition-mode: ease;--backdrop-transition-property: opacity, backdrop-filter;background:var(--backdrop-background-color);-webkit-backdrop-filter:blur(var(--backdrop-blur));backdrop-filter:blur(var(--backdrop-blur));opacity:1;transition-duration:var(--backdrop-transition-duration);transition-timing-function:var(--backdrop-transition-mode);transition-property:var(--backdrop-transition-property)}:root[theme=joy] .cdk-overlay-backdrop.mosaik-cdk-backdrop{--backdrop-background-color: var(--joy-scheme-semi-transparent);--backdrop-blur: 4px;--backdrop-transition-duration: var(--mosaik-duration-short);--backdrop-transition-mode: ease;--backdrop-transition-property: opacity, backdrop-filter}:root[theme=memphis] .cdk-overlay-backdrop.mosaik-cdk-backdrop{--backdrop-background-color: var(--memphis-scheme-semi-transparent);--backdrop-blur: none;--backdrop-transition-duration: .2s;--backdrop-transition-mode: ease;--backdrop-transition-property: opacity}:root[theme=cosmopolitan] .cdk-overlay-backdrop.mosaik-cdk-backdrop{--backdrop-background-color: var(--cosmopolitan-scheme-semi-transparent);--backdrop-blur: none;--backdrop-transition-duration: .2s;--backdrop-transition-mode: ease;--backdrop-transition-property: opacity}@media screen and (prefers-reduced-motion:reduce){.cdk-overlay-backdrop.mosaik-cdk-backdrop{transition-duration:.01ms}}.cdk-overlay-pane.mosaik-cdk-overlay-pane{pointer-events:none}.mosaik-cdk-overlay-pane mosaik-dialog::part(backdrop),.mosaik-cdk-overlay-pane mosaik-drawer::part(backdrop),.mosaik-cdk-overlay-pane mosaik-message-box::part(backdrop),.mosaik-cdk-overlay-pane mosaik-sheet::part(backdrop),.mosaik-cdk-overlay-pane mosaik-toast::part(backdrop){opacity:0;pointer-events:none;background:transparent;-webkit-backdrop-filter:none;backdrop-filter:none}\n"], dependencies: [{ kind: "directive", type: NgTemplateOutlet, selector: "[ngTemplateOutlet]", inputs: ["ngTemplateOutletContext", "ngTemplateOutlet", "ngTemplateOutletInjector"] }, { kind: "directive", type: CdkScrollable, selector: "[cdk-scrollable], [cdkScrollable]" }, { kind: "directive", type: CdkPortalOutlet, selector: "[cdkPortalOutlet]", inputs: ["cdkPortalOutlet"], outputs: ["attached"], exportAs: ["cdkPortalOutlet"] }, { kind: "component", type: DrawerComponent, selector: "mosaik-drawer", inputs: ["isComposed", "isFullScreen", "header", "subHeader", "position", "mode", "hasShadow", "themeName", "animationTarget", "enter", "exit", "width", "height", "elevation", "isOpen", "hasBackdrop", "pressEscapeToClose", "clickOutsideToClose", "closeable", "dir", "lang"], outputs: ["closed", "opened", "connected", "disconnected", "changed"] }, { kind: "component", type: DrawerHeaderComponent, selector: "mosaik-drawer-header", inputs: ["text", "subText", "themeName", "formatter", "dir", "lang"], outputs: ["connected", "disconnected", "changed"] }, { kind: "component", type: DrawerHeaderTextComponent, selector: "mosaik-drawer-header-text", inputs: ["text", "themeName", "formatter", "dir", "lang"], outputs: ["connected", "disconnected", "changed"] }, { kind: "component", type: DrawerHeaderSubTextComponent, selector: "mosaik-drawer-header-sub-text", inputs: ["text", "themeName", "formatter", "dir", "lang"], outputs: ["connected", "disconnected", "changed"] }, { kind: "component", type: DrawerContentComponent, selector: "mosaik-drawer-content", inputs: ["
|
|
15547
|
+
], viewQueries: [{ propertyName: "_portal", first: true, predicate: CdkPortalOutlet, descendants: true, static: true }, { propertyName: "_component", first: true, predicate: DrawerComponent, descendants: true, static: true }], exportAs: ["mosaikDrawerPortal"], usesInheritance: true, ngImport: i0, template: "<mosaik-drawer [closeable]=\"(this.drawerConfig?.closeable | of | async) ?? false\"\n [enter]=\"this.drawerConfig?.enter ?? null\"\n [exit]=\"this.drawerConfig?.exit ?? null\"\n [width]=\"this.drawerConfig?.size?.width ?? 'auto'\"\n [height]=\"this.drawerConfig?.size?.height ?? 'auto'\">\n @if (this.headerTemplate; as template) {\n <ng-container [ngTemplateOutlet]=\"template\" />\n } @else if ((this.drawerConfig?.header | of | async) || (this.drawerConfig?.subheader | of | async) || this.drawerConfig?.closeable) {\n <mosaik-drawer-header>\n <mosaik-drawer-header-text [text]=\"(this.drawerConfig?.header | of | async) ?? ''\" />\n <mosaik-drawer-header-sub-text [text]=\"(this.drawerConfig?.subheader | of | async) ?? ''\" />\n @if (this.drawerConfig?.closeable) {\n <mosaik-dismiss slot=\"suffix\"\n (click)=\"this.drawer.invoke('close')\" />\n }\n </mosaik-drawer-header>\n }\n <mosaik-drawer-content cdkScrollable>\n @if (this.contentTemplate; as template) {\n <ng-container [ngTemplateOutlet]=\"template\" />\n } @else { }\n <ng-template cdkPortalOutlet />\n </mosaik-drawer-content>\n @if (this.actionsTemplate; as template) {\n <mosaik-drawer-actions>\n <ng-container [ngTemplateOutlet]=\"template\" />\n </mosaik-drawer-actions>\n } @else if (this.drawerConfig?.actions) {\n <mosaik-drawer-actions>\n @for (action of this.drawerConfig?.actions; track action.label) {\n @if ((action?.visible | of | async) ?? true) {\n <mosaik-button [appearance]=\"action?.kind === 'primary' ? 'solid' : 'plain'\"\n [label]=\"(action?.label | of | async) ?? ''\"\n [disabled]=\"(action?.disabled | of | async) ?? false\"\n [variant]=\"'primary'\"\n (click)=\"action?.handler()\" />\n }\n }\n </mosaik-drawer-actions>\n }\n @if (this.footerTemplate; as template) {\n <mosaik-drawer-footer>\n <ng-container [ngTemplateOutlet]=\"template\" />\n </mosaik-drawer-footer>\n }\n</mosaik-drawer>", styles: [".cdk-overlay-backdrop.mosaik-cdk-backdrop{--backdrop-background-color: var(--joy-scheme-semi-transparent);--backdrop-blur: 4px;--backdrop-transition-duration: var(--mosaik-duration-short);--backdrop-transition-mode: ease;--backdrop-transition-property: opacity, backdrop-filter;background:var(--backdrop-background-color);-webkit-backdrop-filter:blur(var(--backdrop-blur));backdrop-filter:blur(var(--backdrop-blur));opacity:1;transition-duration:var(--backdrop-transition-duration);transition-timing-function:var(--backdrop-transition-mode);transition-property:var(--backdrop-transition-property)}:root[theme=joy] .cdk-overlay-backdrop.mosaik-cdk-backdrop{--backdrop-background-color: var(--joy-scheme-semi-transparent);--backdrop-blur: 4px;--backdrop-transition-duration: var(--mosaik-duration-short);--backdrop-transition-mode: ease;--backdrop-transition-property: opacity, backdrop-filter}:root[theme=memphis] .cdk-overlay-backdrop.mosaik-cdk-backdrop{--backdrop-background-color: var(--memphis-scheme-semi-transparent);--backdrop-blur: none;--backdrop-transition-duration: .2s;--backdrop-transition-mode: ease;--backdrop-transition-property: opacity}:root[theme=cosmopolitan] .cdk-overlay-backdrop.mosaik-cdk-backdrop{--backdrop-background-color: var(--cosmopolitan-scheme-semi-transparent);--backdrop-blur: none;--backdrop-transition-duration: .2s;--backdrop-transition-mode: ease;--backdrop-transition-property: opacity}@media screen and (prefers-reduced-motion:reduce){.cdk-overlay-backdrop.mosaik-cdk-backdrop{transition-duration:.01ms}}.cdk-overlay-pane.mosaik-cdk-overlay-pane{pointer-events:none}.mosaik-cdk-overlay-pane mosaik-dialog::part(backdrop),.mosaik-cdk-overlay-pane mosaik-drawer::part(backdrop),.mosaik-cdk-overlay-pane mosaik-message-box::part(backdrop),.mosaik-cdk-overlay-pane mosaik-sheet::part(backdrop),.mosaik-cdk-overlay-pane mosaik-toast::part(backdrop){opacity:0;pointer-events:none;background:transparent;-webkit-backdrop-filter:none;backdrop-filter:none}\n"], dependencies: [{ kind: "directive", type: NgTemplateOutlet, selector: "[ngTemplateOutlet]", inputs: ["ngTemplateOutletContext", "ngTemplateOutlet", "ngTemplateOutletInjector"] }, { kind: "directive", type: CdkScrollable, selector: "[cdk-scrollable], [cdkScrollable]" }, { kind: "directive", type: CdkPortalOutlet, selector: "[cdkPortalOutlet]", inputs: ["cdkPortalOutlet"], outputs: ["attached"], exportAs: ["cdkPortalOutlet"] }, { kind: "component", type: DrawerComponent, selector: "mosaik-drawer", inputs: ["isComposed", "isFullScreen", "header", "subHeader", "position", "mode", "hasShadow", "themeName", "animationTarget", "enter", "exit", "width", "height", "elevation", "isOpen", "hasBackdrop", "pressEscapeToClose", "clickOutsideToClose", "closeable", "dir", "lang"], outputs: ["closed", "opened", "connected", "disconnected", "changed"] }, { kind: "component", type: DrawerHeaderComponent, selector: "mosaik-drawer-header", inputs: ["text", "subText", "themeName", "formatter", "dir", "lang"], outputs: ["connected", "disconnected", "changed"] }, { kind: "component", type: DrawerHeaderTextComponent, selector: "mosaik-drawer-header-text", inputs: ["text", "themeName", "formatter", "dir", "lang"], outputs: ["connected", "disconnected", "changed"] }, { kind: "component", type: DrawerHeaderSubTextComponent, selector: "mosaik-drawer-header-sub-text", inputs: ["text", "themeName", "formatter", "dir", "lang"], outputs: ["connected", "disconnected", "changed"] }, { kind: "component", type: DrawerContentComponent, selector: "mosaik-drawer-content", inputs: ["isOpen", "themeName", "dir", "lang"], outputs: ["connected", "disconnected", "changed"] }, { kind: "component", type: DrawerActionsComponent, selector: "mosaik-drawer-actions", inputs: ["themeName", "dir", "lang"], outputs: ["connected", "disconnected", "changed"] }, { kind: "component", type: DismissComponent, selector: "mosaik-dismiss", inputs: ["themeName", "variant", "appearance", "size", "disabled", "isFocused", "dir", "lang"], outputs: ["connected", "disconnected", "changed"] }, { kind: "component", type: ButtonComponent, selector: "mosaik-button", inputs: ["download", "href", "rel", "target", "themeName", "reverse", "orientation", "horizontalContentAlignment", "verticalContentAlignment", "fit", "isBusy", "label", "icon", "iconPosition", "iconSize", "type", "ripple", "variant", "appearance", "size", "value", "disabled", "isFocused", "dir", "lang"], outputs: ["connected", "disconnected", "changed"] }, { kind: "component", type: DrawerFooterComponent, selector: "mosaik-drawer-footer", inputs: ["themeName", "dir", "lang"], outputs: ["connected", "disconnected", "changed"] }, { kind: "pipe", type: AsyncPipe, name: "async" }, { kind: "pipe", type: OfPipe, name: "of" }], changeDetection: i0.ChangeDetectionStrategy.OnPush, encapsulation: i0.ViewEncapsulation.None });
|
|
15548
15548
|
}
|
|
15549
15549
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.5", ngImport: i0, type: DrawerPortalComponent, decorators: [{
|
|
15550
15550
|
type: Component,
|
|
@@ -45773,6 +45773,13 @@ let DrawerContainerComponent = class DrawerContainerComponent {
|
|
|
45773
45773
|
*/
|
|
45774
45774
|
hasBackdrop = input(/* @ts-ignore */
|
|
45775
45775
|
...(ngDevMode ? [undefined, { debugName: "hasBackdrop" }] : /* istanbul ignore next */ []));
|
|
45776
|
+
/**
|
|
45777
|
+
* Signal input for the `isOpen` property.
|
|
45778
|
+
*
|
|
45779
|
+
* @public
|
|
45780
|
+
*/
|
|
45781
|
+
isOpen = input(/* @ts-ignore */
|
|
45782
|
+
...(ngDevMode ? [undefined, { debugName: "isOpen" }] : /* istanbul ignore next */ []));
|
|
45776
45783
|
/**
|
|
45777
45784
|
* Signal input for the `content` property.
|
|
45778
45785
|
*
|
|
@@ -45832,6 +45839,10 @@ let DrawerContainerComponent = class DrawerContainerComponent {
|
|
|
45832
45839
|
if (hasBackdropValue !== undefined) {
|
|
45833
45840
|
this._elementRef.nativeElement.hasBackdrop = hasBackdropValue;
|
|
45834
45841
|
}
|
|
45842
|
+
const isOpenValue = this.isOpen();
|
|
45843
|
+
if (isOpenValue !== undefined) {
|
|
45844
|
+
this._elementRef.nativeElement.isOpen = isOpenValue;
|
|
45845
|
+
}
|
|
45835
45846
|
const contentValue = this.content();
|
|
45836
45847
|
if (contentValue !== undefined) {
|
|
45837
45848
|
this._elementRef.nativeElement.content = contentValue;
|
|
@@ -45906,13 +45917,13 @@ let DrawerContainerComponent = class DrawerContainerComponent {
|
|
|
45906
45917
|
this._elementRef.nativeElement[property] = value;
|
|
45907
45918
|
}
|
|
45908
45919
|
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.5", ngImport: i0, type: DrawerContainerComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
|
|
45909
|
-
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.1.0", version: "22.0.5", type: DrawerContainerComponent, isStandalone: true, selector: "mosaik-drawer-container", inputs: { autoSize: { classPropertyName: "autoSize", publicName: "autoSize", isSignal: true, isRequired: false, transformFunction: null }, hasBackdrop: { classPropertyName: "hasBackdrop", publicName: "hasBackdrop", isSignal: true, isRequired: false, transformFunction: null }, content: { classPropertyName: "content", publicName: "content", isSignal: true, isRequired: false, transformFunction: null }, drawer: { classPropertyName: "drawer", publicName: "drawer", isSignal: true, isRequired: false, transformFunction: null }, themeName: { classPropertyName: "themeName", publicName: "themeName", isSignal: true, isRequired: false, transformFunction: null }, fit: { classPropertyName: "fit", publicName: "fit", isSignal: true, isRequired: false, transformFunction: null }, dir: { classPropertyName: "dir", publicName: "dir", isSignal: true, isRequired: false, transformFunction: null }, lang: { classPropertyName: "lang", publicName: "lang", isSignal: true, isRequired: false, transformFunction: null } }, outputs: { contentMarginChanged: "contentMarginChanged", connected: "connected", disconnected: "disconnected", changed: "changed" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
45920
|
+
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.1.0", version: "22.0.5", type: DrawerContainerComponent, isStandalone: true, selector: "mosaik-drawer-container", inputs: { autoSize: { classPropertyName: "autoSize", publicName: "autoSize", isSignal: true, isRequired: false, transformFunction: null }, hasBackdrop: { classPropertyName: "hasBackdrop", publicName: "hasBackdrop", isSignal: true, isRequired: false, transformFunction: null }, isOpen: { classPropertyName: "isOpen", publicName: "isOpen", isSignal: true, isRequired: false, transformFunction: null }, content: { classPropertyName: "content", publicName: "content", isSignal: true, isRequired: false, transformFunction: null }, drawer: { classPropertyName: "drawer", publicName: "drawer", isSignal: true, isRequired: false, transformFunction: null }, themeName: { classPropertyName: "themeName", publicName: "themeName", isSignal: true, isRequired: false, transformFunction: null }, fit: { classPropertyName: "fit", publicName: "fit", isSignal: true, isRequired: false, transformFunction: null }, dir: { classPropertyName: "dir", publicName: "dir", isSignal: true, isRequired: false, transformFunction: null }, lang: { classPropertyName: "lang", publicName: "lang", isSignal: true, isRequired: false, transformFunction: null } }, outputs: { contentMarginChanged: "contentMarginChanged", connected: "connected", disconnected: "disconnected", changed: "changed" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
45910
45921
|
};
|
|
45911
45922
|
DrawerContainerComponent = __decorate$2S([
|
|
45912
45923
|
ProxyCmp({
|
|
45913
45924
|
defineCustomElementFn: () => defineCustomElement('mosaik-drawer-container', DrawerContainerElement),
|
|
45914
|
-
inputs: ['autoSize', 'hasBackdrop', 'content', 'drawer', 'themeName', 'fit', 'dir', 'lang'],
|
|
45915
|
-
methods: ['open', 'close']
|
|
45925
|
+
inputs: ['autoSize', 'hasBackdrop', 'isOpen', 'content', 'drawer', 'themeName', 'fit', 'dir', 'lang'],
|
|
45926
|
+
methods: ['open', 'close', 'updateDrawerState']
|
|
45916
45927
|
}),
|
|
45917
45928
|
__metadata$2S("design:paramtypes", [])
|
|
45918
45929
|
], DrawerContainerComponent);
|
|
@@ -45924,7 +45935,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.5", ngImpor
|
|
|
45924
45935
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
45925
45936
|
template: '<ng-content></ng-content>'
|
|
45926
45937
|
}]
|
|
45927
|
-
}], ctorParameters: () => [], propDecorators: { autoSize: [{ type: i0.Input, args: [{ isSignal: true, alias: "autoSize", required: false }] }], hasBackdrop: [{ type: i0.Input, args: [{ isSignal: true, alias: "hasBackdrop", required: false }] }], content: [{ type: i0.Input, args: [{ isSignal: true, alias: "content", required: false }] }], drawer: [{ type: i0.Input, args: [{ isSignal: true, alias: "drawer", required: false }] }], themeName: [{ type: i0.Input, args: [{ isSignal: true, alias: "themeName", required: false }] }], fit: [{ type: i0.Input, args: [{ isSignal: true, alias: "fit", required: false }] }], dir: [{ type: i0.Input, args: [{ isSignal: true, alias: "dir", required: false }] }], lang: [{ type: i0.Input, args: [{ isSignal: true, alias: "lang", required: false }] }], contentMarginChanged: [{ type: i0.Output, args: ["contentMarginChanged"] }], connected: [{ type: i0.Output, args: ["connected"] }], disconnected: [{ type: i0.Output, args: ["disconnected"] }], changed: [{ type: i0.Output, args: ["changed"] }] } });
|
|
45938
|
+
}], ctorParameters: () => [], propDecorators: { autoSize: [{ type: i0.Input, args: [{ isSignal: true, alias: "autoSize", required: false }] }], hasBackdrop: [{ type: i0.Input, args: [{ isSignal: true, alias: "hasBackdrop", required: false }] }], isOpen: [{ type: i0.Input, args: [{ isSignal: true, alias: "isOpen", required: false }] }], content: [{ type: i0.Input, args: [{ isSignal: true, alias: "content", required: false }] }], drawer: [{ type: i0.Input, args: [{ isSignal: true, alias: "drawer", required: false }] }], themeName: [{ type: i0.Input, args: [{ isSignal: true, alias: "themeName", required: false }] }], fit: [{ type: i0.Input, args: [{ isSignal: true, alias: "fit", required: false }] }], dir: [{ type: i0.Input, args: [{ isSignal: true, alias: "dir", required: false }] }], lang: [{ type: i0.Input, args: [{ isSignal: true, alias: "lang", required: false }] }], contentMarginChanged: [{ type: i0.Output, args: ["contentMarginChanged"] }], connected: [{ type: i0.Output, args: ["connected"] }], disconnected: [{ type: i0.Output, args: ["disconnected"] }], changed: [{ type: i0.Output, args: ["changed"] }] } });
|
|
45928
45939
|
/**
|
|
45929
45940
|
* @public
|
|
45930
45941
|
*/
|
|
@@ -65918,6 +65929,20 @@ let PaginatorComponent = class PaginatorComponent {
|
|
|
65918
65929
|
*/
|
|
65919
65930
|
hasNextPage = input(/* @ts-ignore */
|
|
65920
65931
|
...(ngDevMode ? [undefined, { debugName: "hasNextPage" }] : /* istanbul ignore next */ []));
|
|
65932
|
+
/**
|
|
65933
|
+
* Signal input for the `isVisible` property.
|
|
65934
|
+
*
|
|
65935
|
+
* @public
|
|
65936
|
+
*/
|
|
65937
|
+
isVisible = input(/* @ts-ignore */
|
|
65938
|
+
...(ngDevMode ? [undefined, { debugName: "isVisible" }] : /* istanbul ignore next */ []));
|
|
65939
|
+
/**
|
|
65940
|
+
* Signal input for the `currentPageReport` property.
|
|
65941
|
+
*
|
|
65942
|
+
* @public
|
|
65943
|
+
*/
|
|
65944
|
+
currentPageReport = input(/* @ts-ignore */
|
|
65945
|
+
...(ngDevMode ? [undefined, { debugName: "currentPageReport" }] : /* istanbul ignore next */ []));
|
|
65921
65946
|
/**
|
|
65922
65947
|
* Signal input for the `total` property.
|
|
65923
65948
|
*
|
|
@@ -65925,6 +65950,13 @@ let PaginatorComponent = class PaginatorComponent {
|
|
|
65925
65950
|
*/
|
|
65926
65951
|
total = input(/* @ts-ignore */
|
|
65927
65952
|
...(ngDevMode ? [undefined, { debugName: "total" }] : /* istanbul ignore next */ []));
|
|
65953
|
+
/**
|
|
65954
|
+
* Signal input for the `totalRecords` property.
|
|
65955
|
+
*
|
|
65956
|
+
* @public
|
|
65957
|
+
*/
|
|
65958
|
+
totalRecords = input(/* @ts-ignore */
|
|
65959
|
+
...(ngDevMode ? [undefined, { debugName: "totalRecords" }] : /* istanbul ignore next */ []));
|
|
65928
65960
|
/**
|
|
65929
65961
|
* Signal input for the `size` property.
|
|
65930
65962
|
*
|
|
@@ -65932,6 +65964,13 @@ let PaginatorComponent = class PaginatorComponent {
|
|
|
65932
65964
|
*/
|
|
65933
65965
|
size = input(/* @ts-ignore */
|
|
65934
65966
|
...(ngDevMode ? [undefined, { debugName: "size" }] : /* istanbul ignore next */ []));
|
|
65967
|
+
/**
|
|
65968
|
+
* Signal input for the `rows` property.
|
|
65969
|
+
*
|
|
65970
|
+
* @public
|
|
65971
|
+
*/
|
|
65972
|
+
rows = input(/* @ts-ignore */
|
|
65973
|
+
...(ngDevMode ? [undefined, { debugName: "rows" }] : /* istanbul ignore next */ []));
|
|
65935
65974
|
/**
|
|
65936
65975
|
* Signal input for the `sizes` property.
|
|
65937
65976
|
*
|
|
@@ -65953,6 +65992,41 @@ let PaginatorComponent = class PaginatorComponent {
|
|
|
65953
65992
|
*/
|
|
65954
65993
|
currentPage = input(/* @ts-ignore */
|
|
65955
65994
|
...(ngDevMode ? [undefined, { debugName: "currentPage" }] : /* istanbul ignore next */ []));
|
|
65995
|
+
/**
|
|
65996
|
+
* Signal input for the `first` property.
|
|
65997
|
+
*
|
|
65998
|
+
* @public
|
|
65999
|
+
*/
|
|
66000
|
+
first = input(/* @ts-ignore */
|
|
66001
|
+
...(ngDevMode ? [undefined, { debugName: "first" }] : /* istanbul ignore next */ []));
|
|
66002
|
+
/**
|
|
66003
|
+
* Signal input for the `pageLinkSize` property.
|
|
66004
|
+
*
|
|
66005
|
+
* @public
|
|
66006
|
+
*/
|
|
66007
|
+
pageLinkSize = input(/* @ts-ignore */
|
|
66008
|
+
...(ngDevMode ? [undefined, { debugName: "pageLinkSize" }] : /* istanbul ignore next */ []));
|
|
66009
|
+
/**
|
|
66010
|
+
* Signal input for the `alwaysShow` property.
|
|
66011
|
+
*
|
|
66012
|
+
* @public
|
|
66013
|
+
*/
|
|
66014
|
+
alwaysShow = input(/* @ts-ignore */
|
|
66015
|
+
...(ngDevMode ? [undefined, { debugName: "alwaysShow" }] : /* istanbul ignore next */ []));
|
|
66016
|
+
/**
|
|
66017
|
+
* Signal input for the `showPageLinks` property.
|
|
66018
|
+
*
|
|
66019
|
+
* @public
|
|
66020
|
+
*/
|
|
66021
|
+
showPageLinks = input(/* @ts-ignore */
|
|
66022
|
+
...(ngDevMode ? [undefined, { debugName: "showPageLinks" }] : /* istanbul ignore next */ []));
|
|
66023
|
+
/**
|
|
66024
|
+
* Signal input for the `showFirstLastIcon` property.
|
|
66025
|
+
*
|
|
66026
|
+
* @public
|
|
66027
|
+
*/
|
|
66028
|
+
showFirstLastIcon = input(/* @ts-ignore */
|
|
66029
|
+
...(ngDevMode ? [undefined, { debugName: "showFirstLastIcon" }] : /* istanbul ignore next */ []));
|
|
65956
66030
|
/**
|
|
65957
66031
|
* Signal input for the `showFirstLastButtons` property.
|
|
65958
66032
|
*
|
|
@@ -65960,6 +66034,20 @@ let PaginatorComponent = class PaginatorComponent {
|
|
|
65960
66034
|
*/
|
|
65961
66035
|
showFirstLastButtons = input(/* @ts-ignore */
|
|
65962
66036
|
...(ngDevMode ? [undefined, { debugName: "showFirstLastButtons" }] : /* istanbul ignore next */ []));
|
|
66037
|
+
/**
|
|
66038
|
+
* Signal input for the `showCurrentPageReport` property.
|
|
66039
|
+
*
|
|
66040
|
+
* @public
|
|
66041
|
+
*/
|
|
66042
|
+
showCurrentPageReport = input(/* @ts-ignore */
|
|
66043
|
+
...(ngDevMode ? [undefined, { debugName: "showCurrentPageReport" }] : /* istanbul ignore next */ []));
|
|
66044
|
+
/**
|
|
66045
|
+
* Signal input for the `currentPageReportTemplate` property.
|
|
66046
|
+
*
|
|
66047
|
+
* @public
|
|
66048
|
+
*/
|
|
66049
|
+
currentPageReportTemplate = input(/* @ts-ignore */
|
|
66050
|
+
...(ngDevMode ? [undefined, { debugName: "currentPageReportTemplate" }] : /* istanbul ignore next */ []));
|
|
65963
66051
|
/**
|
|
65964
66052
|
* Signal input for the `themeName` property.
|
|
65965
66053
|
*
|
|
@@ -66031,14 +66119,30 @@ let PaginatorComponent = class PaginatorComponent {
|
|
|
66031
66119
|
if (hasNextPageValue !== undefined) {
|
|
66032
66120
|
this._elementRef.nativeElement.hasNextPage = hasNextPageValue;
|
|
66033
66121
|
}
|
|
66122
|
+
const isVisibleValue = this.isVisible();
|
|
66123
|
+
if (isVisibleValue !== undefined) {
|
|
66124
|
+
this._elementRef.nativeElement.isVisible = isVisibleValue;
|
|
66125
|
+
}
|
|
66126
|
+
const currentPageReportValue = this.currentPageReport();
|
|
66127
|
+
if (currentPageReportValue !== undefined) {
|
|
66128
|
+
this._elementRef.nativeElement.currentPageReport = currentPageReportValue;
|
|
66129
|
+
}
|
|
66034
66130
|
const totalValue = this.total();
|
|
66035
66131
|
if (totalValue !== undefined) {
|
|
66036
66132
|
this._elementRef.nativeElement.total = totalValue;
|
|
66037
66133
|
}
|
|
66134
|
+
const totalRecordsValue = this.totalRecords();
|
|
66135
|
+
if (totalRecordsValue !== undefined) {
|
|
66136
|
+
this._elementRef.nativeElement.totalRecords = totalRecordsValue;
|
|
66137
|
+
}
|
|
66038
66138
|
const sizeValue = this.size();
|
|
66039
66139
|
if (sizeValue !== undefined) {
|
|
66040
66140
|
this._elementRef.nativeElement.size = sizeValue;
|
|
66041
66141
|
}
|
|
66142
|
+
const rowsValue = this.rows();
|
|
66143
|
+
if (rowsValue !== undefined) {
|
|
66144
|
+
this._elementRef.nativeElement.rows = rowsValue;
|
|
66145
|
+
}
|
|
66042
66146
|
const sizesValue = this.sizes();
|
|
66043
66147
|
if (sizesValue !== undefined) {
|
|
66044
66148
|
this._elementRef.nativeElement.sizes = sizesValue;
|
|
@@ -66051,10 +66155,38 @@ let PaginatorComponent = class PaginatorComponent {
|
|
|
66051
66155
|
if (currentPageValue !== undefined) {
|
|
66052
66156
|
this._elementRef.nativeElement.currentPage = currentPageValue;
|
|
66053
66157
|
}
|
|
66158
|
+
const firstValue = this.first();
|
|
66159
|
+
if (firstValue !== undefined) {
|
|
66160
|
+
this._elementRef.nativeElement.first = firstValue;
|
|
66161
|
+
}
|
|
66162
|
+
const pageLinkSizeValue = this.pageLinkSize();
|
|
66163
|
+
if (pageLinkSizeValue !== undefined) {
|
|
66164
|
+
this._elementRef.nativeElement.pageLinkSize = pageLinkSizeValue;
|
|
66165
|
+
}
|
|
66166
|
+
const alwaysShowValue = this.alwaysShow();
|
|
66167
|
+
if (alwaysShowValue !== undefined) {
|
|
66168
|
+
this._elementRef.nativeElement.alwaysShow = alwaysShowValue;
|
|
66169
|
+
}
|
|
66170
|
+
const showPageLinksValue = this.showPageLinks();
|
|
66171
|
+
if (showPageLinksValue !== undefined) {
|
|
66172
|
+
this._elementRef.nativeElement.showPageLinks = showPageLinksValue;
|
|
66173
|
+
}
|
|
66174
|
+
const showFirstLastIconValue = this.showFirstLastIcon();
|
|
66175
|
+
if (showFirstLastIconValue !== undefined) {
|
|
66176
|
+
this._elementRef.nativeElement.showFirstLastIcon = showFirstLastIconValue;
|
|
66177
|
+
}
|
|
66054
66178
|
const showFirstLastButtonsValue = this.showFirstLastButtons();
|
|
66055
66179
|
if (showFirstLastButtonsValue !== undefined) {
|
|
66056
66180
|
this._elementRef.nativeElement.showFirstLastButtons = showFirstLastButtonsValue;
|
|
66057
66181
|
}
|
|
66182
|
+
const showCurrentPageReportValue = this.showCurrentPageReport();
|
|
66183
|
+
if (showCurrentPageReportValue !== undefined) {
|
|
66184
|
+
this._elementRef.nativeElement.showCurrentPageReport = showCurrentPageReportValue;
|
|
66185
|
+
}
|
|
66186
|
+
const currentPageReportTemplateValue = this.currentPageReportTemplate();
|
|
66187
|
+
if (currentPageReportTemplateValue !== undefined) {
|
|
66188
|
+
this._elementRef.nativeElement.currentPageReportTemplate = currentPageReportTemplateValue;
|
|
66189
|
+
}
|
|
66058
66190
|
const themeNameValue = this.themeName();
|
|
66059
66191
|
if (themeNameValue !== undefined) {
|
|
66060
66192
|
this._elementRef.nativeElement.themeName = themeNameValue;
|
|
@@ -66143,12 +66275,12 @@ let PaginatorComponent = class PaginatorComponent {
|
|
|
66143
66275
|
this._elementRef.nativeElement[property] = value;
|
|
66144
66276
|
}
|
|
66145
66277
|
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.5", ngImport: i0, type: PaginatorComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
|
|
66146
|
-
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.1.0", version: "22.0.5", type: PaginatorComponent, isStandalone: true, selector: "mosaik-paginator", inputs: { intl: { classPropertyName: "intl", publicName: "intl", isSignal: true, isRequired: false, transformFunction: null }, totalPages: { classPropertyName: "totalPages", publicName: "totalPages", isSignal: true, isRequired: false, transformFunction: null }, rangeStart: { classPropertyName: "rangeStart", publicName: "rangeStart", isSignal: true, isRequired: false, transformFunction: null }, rangeEnd: { classPropertyName: "rangeEnd", publicName: "rangeEnd", isSignal: true, isRequired: false, transformFunction: null }, hasPreviousPage: { classPropertyName: "hasPreviousPage", publicName: "hasPreviousPage", isSignal: true, isRequired: false, transformFunction: null }, hasNextPage: { classPropertyName: "hasNextPage", publicName: "hasNextPage", isSignal: true, isRequired: false, transformFunction: null }, total: { classPropertyName: "total", publicName: "total", isSignal: true, isRequired: false, transformFunction: null }, size: { classPropertyName: "size", publicName: "size", isSignal: true, isRequired: false, transformFunction: null }, sizes: { classPropertyName: "sizes", publicName: "sizes", isSignal: true, isRequired: false, transformFunction: null }, showSizes: { classPropertyName: "showSizes", publicName: "showSizes", isSignal: true, isRequired: false, transformFunction: null }, currentPage: { classPropertyName: "currentPage", publicName: "currentPage", isSignal: true, isRequired: false, transformFunction: null }, showFirstLastButtons: { classPropertyName: "showFirstLastButtons", publicName: "showFirstLastButtons", isSignal: true, isRequired: false, transformFunction: null }, themeName: { classPropertyName: "themeName", publicName: "themeName", isSignal: true, isRequired: false, transformFunction: null }, disabled: { classPropertyName: "disabled", publicName: "disabled", isSignal: true, isRequired: false, transformFunction: null }, variant: { classPropertyName: "variant", publicName: "variant", isSignal: true, isRequired: false, transformFunction: null }, appearance: { classPropertyName: "appearance", publicName: "appearance", isSignal: true, isRequired: false, transformFunction: null }, dir: { classPropertyName: "dir", publicName: "dir", isSignal: true, isRequired: false, transformFunction: null }, lang: { classPropertyName: "lang", publicName: "lang", isSignal: true, isRequired: false, transformFunction: null } }, outputs: { pageChanged: "pageChanged", pageSizeChanged: "pageSizeChanged", connected: "connected", disconnected: "disconnected", changed: "changed" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
66278
|
+
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.1.0", version: "22.0.5", type: PaginatorComponent, isStandalone: true, selector: "mosaik-paginator", inputs: { intl: { classPropertyName: "intl", publicName: "intl", isSignal: true, isRequired: false, transformFunction: null }, totalPages: { classPropertyName: "totalPages", publicName: "totalPages", isSignal: true, isRequired: false, transformFunction: null }, rangeStart: { classPropertyName: "rangeStart", publicName: "rangeStart", isSignal: true, isRequired: false, transformFunction: null }, rangeEnd: { classPropertyName: "rangeEnd", publicName: "rangeEnd", isSignal: true, isRequired: false, transformFunction: null }, hasPreviousPage: { classPropertyName: "hasPreviousPage", publicName: "hasPreviousPage", isSignal: true, isRequired: false, transformFunction: null }, hasNextPage: { classPropertyName: "hasNextPage", publicName: "hasNextPage", isSignal: true, isRequired: false, transformFunction: null }, isVisible: { classPropertyName: "isVisible", publicName: "isVisible", isSignal: true, isRequired: false, transformFunction: null }, currentPageReport: { classPropertyName: "currentPageReport", publicName: "currentPageReport", isSignal: true, isRequired: false, transformFunction: null }, total: { classPropertyName: "total", publicName: "total", isSignal: true, isRequired: false, transformFunction: null }, totalRecords: { classPropertyName: "totalRecords", publicName: "totalRecords", isSignal: true, isRequired: false, transformFunction: null }, size: { classPropertyName: "size", publicName: "size", isSignal: true, isRequired: false, transformFunction: null }, rows: { classPropertyName: "rows", publicName: "rows", isSignal: true, isRequired: false, transformFunction: null }, sizes: { classPropertyName: "sizes", publicName: "sizes", isSignal: true, isRequired: false, transformFunction: null }, showSizes: { classPropertyName: "showSizes", publicName: "showSizes", isSignal: true, isRequired: false, transformFunction: null }, currentPage: { classPropertyName: "currentPage", publicName: "currentPage", isSignal: true, isRequired: false, transformFunction: null }, first: { classPropertyName: "first", publicName: "first", isSignal: true, isRequired: false, transformFunction: null }, pageLinkSize: { classPropertyName: "pageLinkSize", publicName: "pageLinkSize", isSignal: true, isRequired: false, transformFunction: null }, alwaysShow: { classPropertyName: "alwaysShow", publicName: "alwaysShow", isSignal: true, isRequired: false, transformFunction: null }, showPageLinks: { classPropertyName: "showPageLinks", publicName: "showPageLinks", isSignal: true, isRequired: false, transformFunction: null }, showFirstLastIcon: { classPropertyName: "showFirstLastIcon", publicName: "showFirstLastIcon", isSignal: true, isRequired: false, transformFunction: null }, showFirstLastButtons: { classPropertyName: "showFirstLastButtons", publicName: "showFirstLastButtons", isSignal: true, isRequired: false, transformFunction: null }, showCurrentPageReport: { classPropertyName: "showCurrentPageReport", publicName: "showCurrentPageReport", isSignal: true, isRequired: false, transformFunction: null }, currentPageReportTemplate: { classPropertyName: "currentPageReportTemplate", publicName: "currentPageReportTemplate", isSignal: true, isRequired: false, transformFunction: null }, themeName: { classPropertyName: "themeName", publicName: "themeName", isSignal: true, isRequired: false, transformFunction: null }, disabled: { classPropertyName: "disabled", publicName: "disabled", isSignal: true, isRequired: false, transformFunction: null }, variant: { classPropertyName: "variant", publicName: "variant", isSignal: true, isRequired: false, transformFunction: null }, appearance: { classPropertyName: "appearance", publicName: "appearance", isSignal: true, isRequired: false, transformFunction: null }, dir: { classPropertyName: "dir", publicName: "dir", isSignal: true, isRequired: false, transformFunction: null }, lang: { classPropertyName: "lang", publicName: "lang", isSignal: true, isRequired: false, transformFunction: null } }, outputs: { pageChanged: "pageChanged", pageSizeChanged: "pageSizeChanged", connected: "connected", disconnected: "disconnected", changed: "changed" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
66147
66279
|
};
|
|
66148
66280
|
PaginatorComponent = __decorate$1E([
|
|
66149
66281
|
ProxyCmp({
|
|
66150
66282
|
defineCustomElementFn: () => defineCustomElement('mosaik-paginator', PaginatorElement),
|
|
66151
|
-
inputs: ['intl', 'totalPages', 'rangeStart', 'rangeEnd', 'hasPreviousPage', 'hasNextPage', 'total', 'size', 'sizes', 'showSizes', 'currentPage', 'showFirstLastButtons', 'themeName', 'disabled', 'variant', 'appearance', 'dir', 'lang'],
|
|
66283
|
+
inputs: ['intl', 'totalPages', 'rangeStart', 'rangeEnd', 'hasPreviousPage', 'hasNextPage', 'isVisible', 'currentPageReport', 'total', 'totalRecords', 'size', 'rows', 'sizes', 'showSizes', 'currentPage', 'first', 'pageLinkSize', 'alwaysShow', 'showPageLinks', 'showFirstLastIcon', 'showFirstLastButtons', 'showCurrentPageReport', 'currentPageReportTemplate', 'themeName', 'disabled', 'variant', 'appearance', 'dir', 'lang'],
|
|
66152
66284
|
methods: ['goToFirstPage', 'goToLastPage', 'goToNextPage', 'goToPreviousPage', 'goToPage', 'changePageSize']
|
|
66153
66285
|
}),
|
|
66154
66286
|
__metadata$1E("design:paramtypes", [])
|
|
@@ -66161,7 +66293,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.5", ngImpor
|
|
|
66161
66293
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
66162
66294
|
template: '<ng-content></ng-content>'
|
|
66163
66295
|
}]
|
|
66164
|
-
}], ctorParameters: () => [], propDecorators: { intl: [{ type: i0.Input, args: [{ isSignal: true, alias: "intl", required: false }] }], totalPages: [{ type: i0.Input, args: [{ isSignal: true, alias: "totalPages", required: false }] }], rangeStart: [{ type: i0.Input, args: [{ isSignal: true, alias: "rangeStart", required: false }] }], rangeEnd: [{ type: i0.Input, args: [{ isSignal: true, alias: "rangeEnd", required: false }] }], hasPreviousPage: [{ type: i0.Input, args: [{ isSignal: true, alias: "hasPreviousPage", required: false }] }], hasNextPage: [{ type: i0.Input, args: [{ isSignal: true, alias: "hasNextPage", required: false }] }], total: [{ type: i0.Input, args: [{ isSignal: true, alias: "total", required: false }] }], size: [{ type: i0.Input, args: [{ isSignal: true, alias: "size", required: false }] }], sizes: [{ type: i0.Input, args: [{ isSignal: true, alias: "sizes", required: false }] }], showSizes: [{ type: i0.Input, args: [{ isSignal: true, alias: "showSizes", required: false }] }], currentPage: [{ type: i0.Input, args: [{ isSignal: true, alias: "currentPage", required: false }] }], showFirstLastButtons: [{ type: i0.Input, args: [{ isSignal: true, alias: "showFirstLastButtons", required: false }] }], themeName: [{ type: i0.Input, args: [{ isSignal: true, alias: "themeName", required: false }] }], disabled: [{ type: i0.Input, args: [{ isSignal: true, alias: "disabled", required: false }] }], variant: [{ type: i0.Input, args: [{ isSignal: true, alias: "variant", required: false }] }], appearance: [{ type: i0.Input, args: [{ isSignal: true, alias: "appearance", required: false }] }], dir: [{ type: i0.Input, args: [{ isSignal: true, alias: "dir", required: false }] }], lang: [{ type: i0.Input, args: [{ isSignal: true, alias: "lang", required: false }] }], pageChanged: [{ type: i0.Output, args: ["pageChanged"] }], pageSizeChanged: [{ type: i0.Output, args: ["pageSizeChanged"] }], connected: [{ type: i0.Output, args: ["connected"] }], disconnected: [{ type: i0.Output, args: ["disconnected"] }], changed: [{ type: i0.Output, args: ["changed"] }] } });
|
|
66296
|
+
}], ctorParameters: () => [], propDecorators: { intl: [{ type: i0.Input, args: [{ isSignal: true, alias: "intl", required: false }] }], totalPages: [{ type: i0.Input, args: [{ isSignal: true, alias: "totalPages", required: false }] }], rangeStart: [{ type: i0.Input, args: [{ isSignal: true, alias: "rangeStart", required: false }] }], rangeEnd: [{ type: i0.Input, args: [{ isSignal: true, alias: "rangeEnd", required: false }] }], hasPreviousPage: [{ type: i0.Input, args: [{ isSignal: true, alias: "hasPreviousPage", required: false }] }], hasNextPage: [{ type: i0.Input, args: [{ isSignal: true, alias: "hasNextPage", required: false }] }], isVisible: [{ type: i0.Input, args: [{ isSignal: true, alias: "isVisible", required: false }] }], currentPageReport: [{ type: i0.Input, args: [{ isSignal: true, alias: "currentPageReport", required: false }] }], total: [{ type: i0.Input, args: [{ isSignal: true, alias: "total", required: false }] }], totalRecords: [{ type: i0.Input, args: [{ isSignal: true, alias: "totalRecords", required: false }] }], size: [{ type: i0.Input, args: [{ isSignal: true, alias: "size", required: false }] }], rows: [{ type: i0.Input, args: [{ isSignal: true, alias: "rows", required: false }] }], sizes: [{ type: i0.Input, args: [{ isSignal: true, alias: "sizes", required: false }] }], showSizes: [{ type: i0.Input, args: [{ isSignal: true, alias: "showSizes", required: false }] }], currentPage: [{ type: i0.Input, args: [{ isSignal: true, alias: "currentPage", required: false }] }], first: [{ type: i0.Input, args: [{ isSignal: true, alias: "first", required: false }] }], pageLinkSize: [{ type: i0.Input, args: [{ isSignal: true, alias: "pageLinkSize", required: false }] }], alwaysShow: [{ type: i0.Input, args: [{ isSignal: true, alias: "alwaysShow", required: false }] }], showPageLinks: [{ type: i0.Input, args: [{ isSignal: true, alias: "showPageLinks", required: false }] }], showFirstLastIcon: [{ type: i0.Input, args: [{ isSignal: true, alias: "showFirstLastIcon", required: false }] }], showFirstLastButtons: [{ type: i0.Input, args: [{ isSignal: true, alias: "showFirstLastButtons", required: false }] }], showCurrentPageReport: [{ type: i0.Input, args: [{ isSignal: true, alias: "showCurrentPageReport", required: false }] }], currentPageReportTemplate: [{ type: i0.Input, args: [{ isSignal: true, alias: "currentPageReportTemplate", required: false }] }], themeName: [{ type: i0.Input, args: [{ isSignal: true, alias: "themeName", required: false }] }], disabled: [{ type: i0.Input, args: [{ isSignal: true, alias: "disabled", required: false }] }], variant: [{ type: i0.Input, args: [{ isSignal: true, alias: "variant", required: false }] }], appearance: [{ type: i0.Input, args: [{ isSignal: true, alias: "appearance", required: false }] }], dir: [{ type: i0.Input, args: [{ isSignal: true, alias: "dir", required: false }] }], lang: [{ type: i0.Input, args: [{ isSignal: true, alias: "lang", required: false }] }], pageChanged: [{ type: i0.Output, args: ["pageChanged"] }], pageSizeChanged: [{ type: i0.Output, args: ["pageSizeChanged"] }], connected: [{ type: i0.Output, args: ["connected"] }], disconnected: [{ type: i0.Output, args: ["disconnected"] }], changed: [{ type: i0.Output, args: ["changed"] }] } });
|
|
66165
66297
|
/**
|
|
66166
66298
|
* @public
|
|
66167
66299
|
*/
|