@acorex/components 21.0.0-next.26 → 21.0.0-next.28
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/conversation2/README.md +10 -5
- package/conversation2/index.d.ts +672 -135
- package/fesm2022/acorex-components-conversation2.mjs +15064 -14212
- package/fesm2022/acorex-components-conversation2.mjs.map +1 -1
- package/fesm2022/acorex-components-cron-job.mjs +6 -6
- package/fesm2022/acorex-components-cron-job.mjs.map +1 -1
- package/fesm2022/acorex-components-decorators.mjs +3 -10
- package/fesm2022/acorex-components-decorators.mjs.map +1 -1
- package/fesm2022/acorex-components-form.mjs +28 -5
- package/fesm2022/acorex-components-form.mjs.map +1 -1
- package/fesm2022/acorex-components-media-viewer.mjs +20 -5
- package/fesm2022/acorex-components-media-viewer.mjs.map +1 -1
- package/form/index.d.ts +3 -3
- package/media-viewer/index.d.ts +1 -1
- package/package.json +3 -3
package/form/index.d.ts
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import * as i0 from '@angular/core';
|
|
2
2
|
import { OnDestroy, AfterViewInit, EventEmitter, AfterContentChecked, WritableSignal, InjectionToken } from '@angular/core';
|
|
3
|
-
import { AXEvent,
|
|
3
|
+
import { AXEvent, MXValueComponent, AXStyleLookType, MXBaseComponent } from '@acorex/cdk/common';
|
|
4
4
|
import * as i5 from '@acorex/core/validation';
|
|
5
5
|
import { AXValidationSummary, AXValidationRuleOptions } from '@acorex/core/validation';
|
|
6
6
|
import * as i1 from '@angular/common';
|
|
@@ -28,7 +28,7 @@ type AXLabelMode = 'static' | 'floating' | 'over';
|
|
|
28
28
|
*
|
|
29
29
|
* @category Components
|
|
30
30
|
*/
|
|
31
|
-
declare class AXFormComponent extends
|
|
31
|
+
declare class AXFormComponent extends MXValueComponent implements OnDestroy, AfterViewInit {
|
|
32
32
|
#private;
|
|
33
33
|
/**
|
|
34
34
|
* Specifies the mode of the label in the form field.
|
|
@@ -121,7 +121,7 @@ declare class AXFormComponent extends MXBaseComponent implements OnDestroy, Afte
|
|
|
121
121
|
*/
|
|
122
122
|
ngOnDestroy(): void;
|
|
123
123
|
static ɵfac: i0.ɵɵFactoryDeclaration<AXFormComponent, never>;
|
|
124
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<AXFormComponent, "ax-form", never, { "labelMode": { "alias": "labelMode"; "required": false; "isSignal": true; }; "look": { "alias": "look"; "required": false; "isSignal": true; }; "messageStyle": { "alias": "messageStyle"; "required": false; "isSignal": true; }; "updateOn": { "alias": "updateOn"; "required": false; }; }, { "onValidate": "onValidate"; "updateOnChange": "updateOnChange"; }, ["content"], ["*"], true, never>;
|
|
124
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<AXFormComponent, "ax-form", never, { "disabled": { "alias": "disabled"; "required": false; }; "readonly": { "alias": "readonly"; "required": false; }; "labelMode": { "alias": "labelMode"; "required": false; "isSignal": true; }; "look": { "alias": "look"; "required": false; "isSignal": true; }; "messageStyle": { "alias": "messageStyle"; "required": false; "isSignal": true; }; "updateOn": { "alias": "updateOn"; "required": false; }; }, { "onValidate": "onValidate"; "updateOnChange": "updateOnChange"; }, ["content"], ["*"], true, never>;
|
|
125
125
|
}
|
|
126
126
|
|
|
127
127
|
/**
|
package/media-viewer/index.d.ts
CHANGED
|
@@ -53,7 +53,7 @@ declare class AXMediaViewerContainerComponent implements OnDestroy {
|
|
|
53
53
|
protected sanitizer: DomSanitizer;
|
|
54
54
|
protected thumbnailArray: i0.WritableSignal<Thumbnail[]>;
|
|
55
55
|
protected option: i0.WritableSignal<swiper_types.SwiperOptions>;
|
|
56
|
-
protected
|
|
56
|
+
protected thumbnailOption: i0.WritableSignal<swiper_types.SwiperOptions>;
|
|
57
57
|
isFullScreen: i0.WritableSignal<boolean>;
|
|
58
58
|
private swiperRef;
|
|
59
59
|
private swiperRef2;
|
package/package.json
CHANGED
|
@@ -1,9 +1,9 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@acorex/components",
|
|
3
|
-
"version": "21.0.0-next.
|
|
3
|
+
"version": "21.0.0-next.28",
|
|
4
4
|
"peerDependencies": {
|
|
5
|
-
"@acorex/core": "21.0.0-next.
|
|
6
|
-
"@acorex/cdk": "21.0.0-next.
|
|
5
|
+
"@acorex/core": "21.0.0-next.28",
|
|
6
|
+
"@acorex/cdk": "21.0.0-next.28",
|
|
7
7
|
"@angular/common": "^20.0.0",
|
|
8
8
|
"@angular/core": "^20.0.0",
|
|
9
9
|
"@angular/cdk": "^20.0.0",
|