@acorex/components 21.0.1-next.56 → 21.0.1-next.58
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-accordion.mjs +8 -6
- package/fesm2022/acorex-components-accordion.mjs.map +1 -1
- package/fesm2022/acorex-components-conversation2.mjs +1457 -941
- package/fesm2022/acorex-components-conversation2.mjs.map +1 -1
- package/fesm2022/acorex-components-data-table.mjs +21 -3
- package/fesm2022/acorex-components-data-table.mjs.map +1 -1
- package/fesm2022/acorex-components-number-box.mjs +36 -17
- package/fesm2022/acorex-components-number-box.mjs.map +1 -1
- package/package.json +3 -3
- package/types/acorex-components-accordion.d.ts +7 -3
- package/types/acorex-components-conversation2.d.ts +2281 -2201
- package/types/acorex-components-data-table.d.ts +1 -0
- package/types/acorex-components-number-box.d.ts +3 -0
|
@@ -32,6 +32,9 @@ declare class AXNumberBoxComponent extends AXNumberBoxComponent_base {
|
|
|
32
32
|
protected internalValueChanged(value: number | undefined): void;
|
|
33
33
|
private plusValue;
|
|
34
34
|
private minusValue;
|
|
35
|
+
private getNumericValue;
|
|
36
|
+
private getSteppedValue;
|
|
37
|
+
private getFractionDigits;
|
|
35
38
|
protected handleOnKeydownEvent(e: KeyboardEvent): void;
|
|
36
39
|
protected handleUpClick(): void;
|
|
37
40
|
protected handleDownClick(): void;
|