@acorex/components 20.6.13 → 20.6.15
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/index.d.ts +2592 -2512
- package/fesm2022/acorex-components-conversation2.mjs +1457 -941
- package/fesm2022/acorex-components-conversation2.mjs.map +1 -1
- package/fesm2022/acorex-components-time-duration.mjs +5 -0
- package/fesm2022/acorex-components-time-duration.mjs.map +1 -1
- package/fesm2022/acorex-components-tooltip.mjs +21 -15
- package/fesm2022/acorex-components-tooltip.mjs.map +1 -1
- package/package.json +7 -7
- package/tooltip/index.d.ts +1 -0
package/package.json
CHANGED
|
@@ -1,9 +1,9 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@acorex/components",
|
|
3
|
-
"version": "20.6.
|
|
3
|
+
"version": "20.6.15",
|
|
4
4
|
"peerDependencies": {
|
|
5
|
-
"@acorex/core": "20.6.
|
|
6
|
-
"@acorex/cdk": "20.6.
|
|
5
|
+
"@acorex/core": "20.6.15",
|
|
6
|
+
"@acorex/cdk": "20.6.15",
|
|
7
7
|
"polytype": ">=0.17.0",
|
|
8
8
|
"angular-imask": ">=7.6.1",
|
|
9
9
|
"gridstack": ">=12.0.0",
|
|
@@ -452,6 +452,10 @@
|
|
|
452
452
|
"types": "./time-duration/index.d.ts",
|
|
453
453
|
"default": "./fesm2022/acorex-components-time-duration.mjs"
|
|
454
454
|
},
|
|
455
|
+
"./time-line": {
|
|
456
|
+
"types": "./time-line/index.d.ts",
|
|
457
|
+
"default": "./fesm2022/acorex-components-time-line.mjs"
|
|
458
|
+
},
|
|
455
459
|
"./toast": {
|
|
456
460
|
"types": "./toast/index.d.ts",
|
|
457
461
|
"default": "./fesm2022/acorex-components-toast.mjs"
|
|
@@ -483,10 +487,6 @@
|
|
|
483
487
|
"./wysiwyg": {
|
|
484
488
|
"types": "./wysiwyg/index.d.ts",
|
|
485
489
|
"default": "./fesm2022/acorex-components-wysiwyg.mjs"
|
|
486
|
-
},
|
|
487
|
-
"./time-line": {
|
|
488
|
-
"types": "./time-line/index.d.ts",
|
|
489
|
-
"default": "./fesm2022/acorex-components-time-line.mjs"
|
|
490
490
|
}
|
|
491
491
|
}
|
|
492
492
|
}
|
package/tooltip/index.d.ts
CHANGED
|
@@ -46,6 +46,7 @@ declare class AXTooltipDirective {
|
|
|
46
46
|
get closeAfter(): number;
|
|
47
47
|
set closeAfter(v: number);
|
|
48
48
|
private popoverRef;
|
|
49
|
+
private ensurePopover;
|
|
49
50
|
close(): void;
|
|
50
51
|
static ɵfac: i0.ɵɵFactoryDeclaration<AXTooltipDirective, never>;
|
|
51
52
|
static ɵdir: i0.ɵɵDirectiveDeclaration<AXTooltipDirective, "[axTooltip]", never, { "axTooltipDisabled": { "alias": "axTooltipDisabled"; "required": false; "isSignal": true; }; "content": { "alias": "axTooltip"; "required": false; "isSignal": true; }; "context": { "alias": "axTooltipContext"; "required": false; "isSignal": true; }; "placement": { "alias": "axTooltipPlacement"; "required": false; }; "offsetX": { "alias": "axTooltipOffsetX"; "required": false; }; "offsetY": { "alias": "axTooltipOffsetY"; "required": false; }; "openAfter": { "alias": "axTooltipOpenAfter"; "required": false; }; "closeAfter": { "alias": "axTooltipCloseAfter"; "required": false; }; }, {}, never, never, true, never>;
|