@acorex/components 21.0.0-next.5 → 21.0.0-next.6
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-data-table.mjs +2 -0
- package/fesm2022/acorex-components-data-table.mjs.map +1 -1
- package/fesm2022/acorex-components-form.mjs +3 -9
- package/fesm2022/acorex-components-form.mjs.map +1 -1
- package/fesm2022/acorex-components-wysiwyg.mjs +187 -438
- package/fesm2022/acorex-components-wysiwyg.mjs.map +1 -1
- package/package.json +9 -7
- package/wysiwyg/index.d.ts +55 -158
@@ -720,6 +720,7 @@ class AXRowCommandColumnComponent extends AXBaseRowCommandColumnComponent {
|
|
720
720
|
[disabled]="item.disabled"
|
721
721
|
[class.ax-state-disabled]="item.disabled"
|
722
722
|
[axRipple]="!item.disabled"
|
723
|
+
[title]="item.text"
|
723
724
|
(click)="handleOnItemClick($event, item, row.data)"
|
724
725
|
>
|
725
726
|
<ax-icon [icon]="item.icon"></ax-icon>
|
@@ -742,6 +743,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.3", ngImpor
|
|
742
743
|
[disabled]="item.disabled"
|
743
744
|
[class.ax-state-disabled]="item.disabled"
|
744
745
|
[axRipple]="!item.disabled"
|
746
|
+
[title]="item.text"
|
745
747
|
(click)="handleOnItemClick($event, item, row.data)"
|
746
748
|
>
|
747
749
|
<ax-icon [icon]="item.icon"></ax-icon>
|