@acorex/components 16.19.38 → 16.19.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/fesm2022/acorex-components.mjs +11 -3
- package/fesm2022/acorex-components.mjs.map +1 -1
- package/lib/property-editor/editors/number-editor/number.editor.d.ts +1 -0
- package/lib/property-editor/editors/text-editor/text.editor.d.ts +1 -0
- package/lib/search-bar/search-bar.component.d.ts +1 -0
- package/package.json +1 -1
|
@@ -12046,6 +12046,10 @@ class AXSearchBarComponent {
|
|
|
12046
12046
|
const editor = this._editors.find((x) => x.property.property.uniqueName === uniqueName);
|
|
12047
12047
|
editor.instance[editorOptionsKey] = value;
|
|
12048
12048
|
}
|
|
12049
|
+
setValue(uniqueName, value) {
|
|
12050
|
+
const editor = this._editors.find((x) => x.property.property.uniqueName === uniqueName);
|
|
12051
|
+
editor.property.value = value;
|
|
12052
|
+
}
|
|
12049
12053
|
ngOnInit() {
|
|
12050
12054
|
if (this.rtl == null) {
|
|
12051
12055
|
this.rtl =
|
|
@@ -13532,6 +13536,7 @@ class AXNumberBoxPropertyEditorComponent extends AXProperyEditorComponent {
|
|
|
13532
13536
|
showCounter = true;
|
|
13533
13537
|
scrollWeel = true;
|
|
13534
13538
|
readonly = false;
|
|
13539
|
+
placeholder = '';
|
|
13535
13540
|
textBox;
|
|
13536
13541
|
constructor(cdr) {
|
|
13537
13542
|
super(cdr);
|
|
@@ -13557,6 +13562,7 @@ class AXNumberBoxPropertyEditorComponent extends AXProperyEditorComponent {
|
|
|
13557
13562
|
[showCounter]="showCounter"
|
|
13558
13563
|
[readonly]="readonly"
|
|
13559
13564
|
[scrollWeel]="scrollWeel"
|
|
13565
|
+
[placeholder]="placeholder"
|
|
13560
13566
|
>
|
|
13561
13567
|
<ax-validation [rules]="validation?.rules"> </ax-validation>
|
|
13562
13568
|
</ax-number-box>
|
|
@@ -13577,11 +13583,12 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.0.5", ngImpor
|
|
|
13577
13583
|
[showCounter]="showCounter"
|
|
13578
13584
|
[readonly]="readonly"
|
|
13579
13585
|
[scrollWeel]="scrollWeel"
|
|
13586
|
+
[placeholder]="placeholder"
|
|
13580
13587
|
>
|
|
13581
13588
|
<ax-validation [rules]="validation?.rules"> </ax-validation>
|
|
13582
13589
|
</ax-number-box>
|
|
13583
13590
|
`,
|
|
13584
|
-
standalone: false
|
|
13591
|
+
standalone: false,
|
|
13585
13592
|
}]
|
|
13586
13593
|
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }], propDecorators: { textBox: [{
|
|
13587
13594
|
type: ViewChild,
|
|
@@ -14133,6 +14140,7 @@ class AXTextPropertyEditorComponent extends AXProperyEditorComponent {
|
|
|
14133
14140
|
mask;
|
|
14134
14141
|
maskGuid = false;
|
|
14135
14142
|
showMask = false;
|
|
14143
|
+
placeholder = '';
|
|
14136
14144
|
constructor(cdr) {
|
|
14137
14145
|
super(cdr);
|
|
14138
14146
|
this.cdr = cdr;
|
|
@@ -14145,11 +14153,11 @@ class AXTextPropertyEditorComponent extends AXProperyEditorComponent {
|
|
|
14145
14153
|
this.onRenderCompleted.emit();
|
|
14146
14154
|
}
|
|
14147
14155
|
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.0.5", ngImport: i0, type: AXTextPropertyEditorComponent, deps: [{ token: i0.ChangeDetectorRef }], target: i0.ɵɵFactoryTarget.Component });
|
|
14148
|
-
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "19.0.5", type: AXTextPropertyEditorComponent, isStandalone: false, selector: "ng-component", viewQueries: [{ propertyName: "textBox", first: true, predicate: AXTextBoxComponent, descendants: true }], usesInheritance: true, ngImport: i0, template: "<ax-text-box
|
|
14156
|
+
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "19.0.5", type: AXTextPropertyEditorComponent, isStandalone: false, selector: "ng-component", viewQueries: [{ propertyName: "textBox", first: true, predicate: AXTextBoxComponent, descendants: true }], usesInheritance: true, ngImport: i0, template: "<ax-text-box\n (onValueChanged)=\"handleValueChange($event)\"\n [value]=\"value\"\n [readonly]=\"readonly\"\n [placeholder]=\"placeholder\"\n [allowClear]=\"clearButton\"\n [mask]=\"mask\"\n [showMask]=\"showMask\"\n>\n <ax-validation [rules]=\"validation?.rules\"> </ax-validation>\n</ax-text-box>\n", dependencies: [{ kind: "component", type: AXTextBoxComponent, selector: "ax-text-box", inputs: ["mask", "showMask", "type", "maxLength", "maskGuid", "maskPlaceholder", "maskKeepCharPositions", "leadZeroDateTime"] }, { kind: "component", type: AXValidationComponent, selector: "ax-validation", inputs: ["rules", "validateOn"], outputs: ["rulesChange", "showMessage"] }] });
|
|
14149
14157
|
}
|
|
14150
14158
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.0.5", ngImport: i0, type: AXTextPropertyEditorComponent, decorators: [{
|
|
14151
14159
|
type: Component,
|
|
14152
|
-
args: [{ standalone: false, template: "<ax-text-box
|
|
14160
|
+
args: [{ standalone: false, template: "<ax-text-box\n (onValueChanged)=\"handleValueChange($event)\"\n [value]=\"value\"\n [readonly]=\"readonly\"\n [placeholder]=\"placeholder\"\n [allowClear]=\"clearButton\"\n [mask]=\"mask\"\n [showMask]=\"showMask\"\n>\n <ax-validation [rules]=\"validation?.rules\"> </ax-validation>\n</ax-text-box>\n" }]
|
|
14153
14161
|
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }], propDecorators: { textBox: [{
|
|
14154
14162
|
type: ViewChild,
|
|
14155
14163
|
args: [AXTextBoxComponent]
|