@acorex/components 20.2.38 → 20.2.40
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/button/index.d.ts +38 -17
- package/conversation2/README.md +426 -0
- package/conversation2/index.d.ts +6139 -0
- package/data-table/index.d.ts +78 -6
- package/fesm2022/acorex-components-button.mjs +50 -10
- package/fesm2022/acorex-components-button.mjs.map +1 -1
- package/fesm2022/acorex-components-command.mjs +1 -1
- package/fesm2022/acorex-components-command.mjs.map +1 -1
- package/fesm2022/acorex-components-conversation.mjs +1 -1
- package/fesm2022/acorex-components-conversation.mjs.map +1 -1
- package/fesm2022/acorex-components-conversation2.mjs +17641 -0
- package/fesm2022/acorex-components-conversation2.mjs.map +1 -0
- package/fesm2022/acorex-components-cron-job.mjs +6 -6
- package/fesm2022/acorex-components-cron-job.mjs.map +1 -1
- package/fesm2022/acorex-components-data-pager.mjs +1 -1
- package/fesm2022/acorex-components-data-pager.mjs.map +1 -1
- package/fesm2022/acorex-components-data-table.mjs +416 -62
- package/fesm2022/acorex-components-data-table.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-editor.mjs +5 -2
- package/fesm2022/acorex-components-editor.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/fesm2022/acorex-components-phone-box.mjs +1 -1
- package/fesm2022/acorex-components-phone-box.mjs.map +1 -1
- package/fesm2022/acorex-components-rrule.mjs +1 -1
- package/fesm2022/acorex-components-rrule.mjs.map +1 -1
- package/fesm2022/acorex-components-search-box.mjs +8 -3
- package/fesm2022/acorex-components-search-box.mjs.map +1 -1
- package/fesm2022/acorex-components-wysiwyg.mjs +11 -5
- package/fesm2022/acorex-components-wysiwyg.mjs.map +1 -1
- package/form/index.d.ts +3 -3
- package/media-viewer/index.d.ts +1 -1
- package/package.json +11 -7
- package/search-box/index.d.ts +6 -1
- package/wysiwyg/index.d.ts +2 -0
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": "20.2.
|
|
3
|
+
"version": "20.2.40",
|
|
4
4
|
"peerDependencies": {
|
|
5
|
-
"@acorex/core": "20.2.
|
|
6
|
-
"@acorex/cdk": "20.2.
|
|
5
|
+
"@acorex/core": "20.2.40",
|
|
6
|
+
"@acorex/cdk": "20.2.40",
|
|
7
7
|
"@angular/common": "^20.0.0",
|
|
8
8
|
"@angular/core": "^20.0.0",
|
|
9
9
|
"@angular/cdk": "^20.0.0",
|
|
@@ -156,6 +156,10 @@
|
|
|
156
156
|
"types": "./conversation/index.d.ts",
|
|
157
157
|
"default": "./fesm2022/acorex-components-conversation.mjs"
|
|
158
158
|
},
|
|
159
|
+
"./conversation2": {
|
|
160
|
+
"types": "./conversation2/index.d.ts",
|
|
161
|
+
"default": "./fesm2022/acorex-components-conversation2.mjs"
|
|
162
|
+
},
|
|
159
163
|
"./cron-job": {
|
|
160
164
|
"types": "./cron-job/index.d.ts",
|
|
161
165
|
"default": "./fesm2022/acorex-components-cron-job.mjs"
|
|
@@ -248,14 +252,14 @@
|
|
|
248
252
|
"types": "./kbd/index.d.ts",
|
|
249
253
|
"default": "./fesm2022/acorex-components-kbd.mjs"
|
|
250
254
|
},
|
|
251
|
-
"./label": {
|
|
252
|
-
"types": "./label/index.d.ts",
|
|
253
|
-
"default": "./fesm2022/acorex-components-label.mjs"
|
|
254
|
-
},
|
|
255
255
|
"./list": {
|
|
256
256
|
"types": "./list/index.d.ts",
|
|
257
257
|
"default": "./fesm2022/acorex-components-list.mjs"
|
|
258
258
|
},
|
|
259
|
+
"./label": {
|
|
260
|
+
"types": "./label/index.d.ts",
|
|
261
|
+
"default": "./fesm2022/acorex-components-label.mjs"
|
|
262
|
+
},
|
|
259
263
|
"./loading": {
|
|
260
264
|
"types": "./loading/index.d.ts",
|
|
261
265
|
"default": "./fesm2022/acorex-components-loading.mjs"
|
package/search-box/index.d.ts
CHANGED
|
@@ -30,6 +30,11 @@ declare class AXSearchBoxComponent extends AXSearchBoxComponent_base {
|
|
|
30
30
|
*/
|
|
31
31
|
delayTime: number;
|
|
32
32
|
readonly type: i0.InputSignal<string>;
|
|
33
|
+
/**
|
|
34
|
+
* Determines whether executing the parent search logic is allowed.
|
|
35
|
+
* @defaultValue true
|
|
36
|
+
*/
|
|
37
|
+
readonly autoSearch: i0.InputSignal<boolean>;
|
|
33
38
|
/**
|
|
34
39
|
* Handles changes to the model and triggers a search in the parent component if available.
|
|
35
40
|
*
|
|
@@ -40,7 +45,7 @@ declare class AXSearchBoxComponent extends AXSearchBoxComponent_base {
|
|
|
40
45
|
get __hostClass(): string[];
|
|
41
46
|
private get __hostName();
|
|
42
47
|
static ɵfac: i0.ɵɵFactoryDeclaration<AXSearchBoxComponent, never>;
|
|
43
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<AXSearchBoxComponent, "ax-search-box", never, { "disabled": { "alias": "disabled"; "required": false; }; "readonly": { "alias": "readonly"; "required": false; }; "tabIndex": { "alias": "tabIndex"; "required": false; }; "placeholder": { "alias": "placeholder"; "required": false; }; "value": { "alias": "value"; "required": false; }; "state": { "alias": "state"; "required": false; }; "name": { "alias": "name"; "required": false; }; "id": { "alias": "id"; "required": false; }; "look": { "alias": "look"; "required": false; }; "classNames": { "alias": "class"; "required": false; }; "delayTime": { "alias": "delayTime"; "required": false; }; "type": { "alias": "type"; "required": false; "isSignal": true; }; }, { "valueChange": "valueChange"; "stateChange": "stateChange"; "onValueChanged": "onValueChanged"; "onBlur": "onBlur"; "onFocus": "onFocus"; "readonlyChange": "readonlyChange"; "disabledChange": "disabledChange"; "onKeyDown": "onKeyDown"; "onKeyUp": "onKeyUp"; "onKeyPress": "onKeyPress"; }, never, ["ax-prefix", "ax-clear-button", "ax-suffix"], true, never>;
|
|
48
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<AXSearchBoxComponent, "ax-search-box", never, { "disabled": { "alias": "disabled"; "required": false; }; "readonly": { "alias": "readonly"; "required": false; }; "tabIndex": { "alias": "tabIndex"; "required": false; }; "placeholder": { "alias": "placeholder"; "required": false; }; "value": { "alias": "value"; "required": false; }; "state": { "alias": "state"; "required": false; }; "name": { "alias": "name"; "required": false; }; "id": { "alias": "id"; "required": false; }; "look": { "alias": "look"; "required": false; }; "classNames": { "alias": "class"; "required": false; }; "delayTime": { "alias": "delayTime"; "required": false; }; "type": { "alias": "type"; "required": false; "isSignal": true; }; "autoSearch": { "alias": "autoSearch"; "required": false; "isSignal": true; }; }, { "valueChange": "valueChange"; "stateChange": "stateChange"; "onValueChanged": "onValueChanged"; "onBlur": "onBlur"; "onFocus": "onFocus"; "readonlyChange": "readonlyChange"; "disabledChange": "disabledChange"; "onKeyDown": "onKeyDown"; "onKeyUp": "onKeyUp"; "onKeyPress": "onKeyPress"; }, never, ["ax-prefix", "ax-clear-button", "ax-suffix"], true, never>;
|
|
44
49
|
}
|
|
45
50
|
|
|
46
51
|
declare class AXSearchBoxModule {
|
package/wysiwyg/index.d.ts
CHANGED
|
@@ -62,6 +62,8 @@ declare class AXWysiwygContainerComponent extends AXWysiwygContainerComponent_ba
|
|
|
62
62
|
* @returns void - No return value.
|
|
63
63
|
*/
|
|
64
64
|
setDisabledState(isDisabled: boolean): void;
|
|
65
|
+
protected internalValueChanged(value: string): void;
|
|
66
|
+
setWysiwygContent(value: string): void;
|
|
65
67
|
private get __hostName();
|
|
66
68
|
get __hostClass(): string;
|
|
67
69
|
static ɵfac: i0.ɵɵFactoryDeclaration<AXWysiwygContainerComponent, never>;
|