@acorex/components 19.10.0-next.13 → 19.10.0-next.15
Sign up to get free protection for your applications and to get access to all the features.
- package/cron-job/lib/cron-job-container/cron-job-container.component.d.ts +1 -1
- package/decorators/lib/components/heading/heading.component.d.ts +3 -4
- package/fesm2022/acorex-components-button.mjs +4 -4
- package/fesm2022/acorex-components-button.mjs.map +1 -1
- package/fesm2022/acorex-components-collapse.mjs +2 -2
- package/fesm2022/acorex-components-collapse.mjs.map +1 -1
- package/fesm2022/acorex-components-conversation.mjs +2 -2
- package/fesm2022/acorex-components-conversation.mjs.map +1 -1
- package/fesm2022/acorex-components-cron-job.mjs +7 -5
- package/fesm2022/acorex-components-cron-job.mjs.map +1 -1
- package/fesm2022/acorex-components-decorators.mjs +8 -30
- package/fesm2022/acorex-components-decorators.mjs.map +1 -1
- package/fesm2022/acorex-components-image-editor.mjs +2 -2
- package/fesm2022/acorex-components-image-editor.mjs.map +1 -1
- package/fesm2022/acorex-components-kbd.mjs +2 -2
- package/fesm2022/acorex-components-kbd.mjs.map +1 -1
- package/fesm2022/acorex-components-paint.mjs +2 -2
- package/fesm2022/acorex-components-paint.mjs.map +1 -1
- package/fesm2022/acorex-components-phone-box.mjs +2 -2
- package/fesm2022/acorex-components-phone-box.mjs.map +1 -1
- package/fesm2022/acorex-components-popup.mjs +2 -0
- package/fesm2022/acorex-components-popup.mjs.map +1 -1
- package/fesm2022/acorex-components-query-builder.mjs +2 -2
- package/fesm2022/acorex-components-query-builder.mjs.map +1 -1
- package/fesm2022/acorex-components-select-box.mjs +2 -2
- package/fesm2022/acorex-components-select-box.mjs.map +1 -1
- package/fesm2022/acorex-components-text-box.mjs +2 -2
- package/fesm2022/acorex-components-text-box.mjs.map +1 -1
- package/fesm2022/acorex-components-tree-view.mjs +2 -2
- package/fesm2022/acorex-components-tree-view.mjs.map +1 -1
- package/package.json +1 -1
- package/popup/lib/popup.interface.d.ts +1 -0
@@ -17,12 +17,12 @@ export declare class AXCronJobContainerComponent extends MXInputBaseValueCompone
|
|
17
17
|
protected yearService: YearService;
|
18
18
|
protected tabComponent: import("@angular/core").Signal<AXTabsComponent>;
|
19
19
|
protected activeTab: import("@angular/core").WritableSignal<string>;
|
20
|
+
private onGetModelFired;
|
20
21
|
protected options: import("@angular/core").WritableSignal<{
|
21
22
|
fit: boolean;
|
22
23
|
look: AXTabLook;
|
23
24
|
location: AXTabLocation;
|
24
25
|
}>;
|
25
|
-
onGetModelFired: import("@angular/core").WritableSignal<boolean>;
|
26
26
|
onGetModel(): void;
|
27
27
|
protected internalValueChanged(cronExpressionPattern: string): void;
|
28
28
|
static ɵfac: i0.ɵɵFactoryDeclaration<AXCronJobContainerComponent, never>;
|
@@ -1,6 +1,6 @@
|
|
1
1
|
import { AXSurfaceType, MXBaseComponent } from '@acorex/components/common';
|
2
2
|
import * as i0 from "@angular/core";
|
3
|
-
type AXHeadingSize = '
|
3
|
+
type AXHeadingSize = '2xl' | 'xl' | 'lg' | 'md' | 'sm' | 'xs';
|
4
4
|
type AXHeadingWeight = 'regular' | 'medium' | 'semibold' | 'bold';
|
5
5
|
/**
|
6
6
|
* A button component that displays a close icon and triggers an action when clicked.
|
@@ -10,11 +10,10 @@ type AXHeadingWeight = 'regular' | 'medium' | 'semibold' | 'bold';
|
|
10
10
|
export declare class AXDecoratorHeadingComponent extends MXBaseComponent {
|
11
11
|
darkMode: import("@angular/core").InputSignal<boolean>;
|
12
12
|
size: import("@angular/core").InputSignal<AXHeadingSize>;
|
13
|
+
color: import("@angular/core").InputSignal<AXSurfaceType>;
|
13
14
|
weight: import("@angular/core").InputSignal<AXHeadingWeight>;
|
14
|
-
bgColor: import("@angular/core").InputSignal<AXSurfaceType>;
|
15
|
-
color: import("@angular/core").Signal<AXSurfaceType>;
|
16
15
|
private get __hostClass();
|
17
16
|
static ɵfac: i0.ɵɵFactoryDeclaration<AXDecoratorHeadingComponent, never>;
|
18
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<AXDecoratorHeadingComponent, "ax-heading", never, { "darkMode": { "alias": "darkMode"; "required": false; "isSignal": true; }; "size": { "alias": "size"; "required": false; "isSignal": true; }; "
|
17
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<AXDecoratorHeadingComponent, "ax-heading", never, { "darkMode": { "alias": "darkMode"; "required": false; "isSignal": true; }; "size": { "alias": "size"; "required": false; "isSignal": true; }; "color": { "alias": "color"; "required": false; "isSignal": true; }; "weight": { "alias": "weight"; "required": false; "isSignal": true; }; }, {}, never, ["ax-title, ax-subtitle"], false, never>;
|
19
18
|
}
|
20
19
|
export {};
|