@acorex/platform 20.6.0-next.18 → 20.6.0-next.19
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-platform-layout-entity.mjs +1134 -413
- package/fesm2022/acorex-platform-layout-entity.mjs.map +1 -1
- package/fesm2022/acorex-platform-layout-views.mjs +3 -2
- package/fesm2022/acorex-platform-layout-views.mjs.map +1 -1
- package/fesm2022/acorex-platform-layout-widgets.mjs +4 -4
- package/fesm2022/acorex-platform-layout-widgets.mjs.map +1 -1
- package/fesm2022/{acorex-platform-themes-default-entity-master-list-view.component-4nWLEm89.mjs → acorex-platform-themes-default-entity-master-list-view.component-BbACUabi.mjs} +406 -173
- package/fesm2022/acorex-platform-themes-default-entity-master-list-view.component-BbACUabi.mjs.map +1 -0
- package/fesm2022/acorex-platform-themes-default.mjs +2 -2
- package/layout/entity/index.d.ts +168 -24
- package/layout/views/index.d.ts +1 -0
- package/package.json +1 -1
- package/fesm2022/acorex-platform-themes-default-entity-master-list-view.component-4nWLEm89.mjs.map +0 -1
|
@@ -9975,13 +9975,13 @@ class AXPGalleryWidgetEditComponent extends AXPValueWidgetComponent {
|
|
|
9975
9975
|
|
|
9976
9976
|
<ax-prefix>
|
|
9977
9977
|
<ax-button class="ax-sm" (click)="c.next()">
|
|
9978
|
-
<ax-icon class="ax-icon ax-icon-chevron-right"> </ax-icon>
|
|
9978
|
+
<ax-icon class="rtl:ax-rotate-180 ax-icon ax-icon-chevron-right"> </ax-icon>
|
|
9979
9979
|
</ax-button>
|
|
9980
9980
|
</ax-prefix>
|
|
9981
9981
|
|
|
9982
9982
|
<ax-suffix>
|
|
9983
9983
|
<ax-button class="ax-sm" (click)="c.prev()">
|
|
9984
|
-
<ax-icon class="ax-icon ax-icon-chevron-left"> </ax-icon>
|
|
9984
|
+
<ax-icon class="rtl:ax-rotate-180 ax-icon ax-icon-chevron-left"> </ax-icon>
|
|
9985
9985
|
</ax-button>
|
|
9986
9986
|
</ax-suffix>
|
|
9987
9987
|
</ax-media-viewer-container>`, isInline: true, dependencies: [{ kind: "ngmodule", type: AXMediaViewerModule }, { kind: "component", type: i1$a.AXMediaViewerContainerComponent, selector: "ax-media-viewer-container", inputs: ["dataArray", "thumbnail"] }, { kind: "component", type: i1$a.AXFileInfoComponent, selector: "ax-file-info" }, { kind: "ngmodule", type: AXDecoratorModule }, { kind: "component", type: i2.AXDecoratorIconComponent, selector: "ax-icon", inputs: ["icon"] }, { kind: "component", type: i2.AXDecoratorGenericComponent, selector: "ax-footer, ax-header, ax-content, ax-divider, ax-form-hint, ax-prefix, ax-suffix, ax-text, ax-title, ax-subtitle, ax-placeholder, ax-overlay" }, { kind: "component", type: i2.AXDecoratorFullScreenButtonComponent, selector: "ax-fullscreen-button", inputs: ["isActive"], outputs: ["isActiveChange"] }, { kind: "ngmodule", type: AXButtonModule }, { kind: "component", type: i1.AXButtonComponent, selector: "ax-button", inputs: ["disabled", "size", "tabIndex", "color", "look", "text", "toggleable", "selected", "iconOnly", "type", "loadingText"], outputs: ["onBlur", "onFocus", "onClick", "selectedChange", "toggleableChange", "lookChange", "colorChange", "disabledChange", "loadingTextChange"] }], changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
@@ -10006,13 +10006,13 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.12", ngImpo
|
|
|
10006
10006
|
|
|
10007
10007
|
<ax-prefix>
|
|
10008
10008
|
<ax-button class="ax-sm" (click)="c.next()">
|
|
10009
|
-
<ax-icon class="ax-icon ax-icon-chevron-right"> </ax-icon>
|
|
10009
|
+
<ax-icon class="rtl:ax-rotate-180 ax-icon ax-icon-chevron-right"> </ax-icon>
|
|
10010
10010
|
</ax-button>
|
|
10011
10011
|
</ax-prefix>
|
|
10012
10012
|
|
|
10013
10013
|
<ax-suffix>
|
|
10014
10014
|
<ax-button class="ax-sm" (click)="c.prev()">
|
|
10015
|
-
<ax-icon class="ax-icon ax-icon-chevron-left"> </ax-icon>
|
|
10015
|
+
<ax-icon class="rtl:ax-rotate-180 ax-icon ax-icon-chevron-left"> </ax-icon>
|
|
10016
10016
|
</ax-button>
|
|
10017
10017
|
</ax-suffix>
|
|
10018
10018
|
</ax-media-viewer-container>`,
|