ngx-rs-ant 1.4.6 → 1.4.8
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/data-grid/file-cell-template/file-cell-template.component.d.ts +1 -3
- package/data-grid/unit-info-template/unit-info-template.component.d.ts +1 -2
- package/data-grid/user-info-template/user-info-template.component.d.ts +1 -2
- package/esm2020/box-container/box-container.component.mjs +3 -3
- package/esm2020/box-container/box-item/box-item-host.directive.mjs +1 -1
- package/esm2020/box-container/box-item/box-item.component.mjs +3 -3
- package/esm2020/box-container/box-item/item-blank/item-blank.component.mjs +3 -3
- package/esm2020/box-container/box-item/item-config/config-blank/config-blank.component.mjs +3 -3
- package/esm2020/box-container/box-item/item-config/item-config.component.mjs +3 -3
- package/esm2020/box-container/box-item/item-style/item-style.component.mjs +3 -3
- package/esm2020/box-container/box-item/item-style/style/style.component.mjs +3 -3
- package/esm2020/box-container/box-item/item-style/style-blank/style-blank.component.mjs +3 -3
- package/esm2020/box-container/plugin-active/divider/divider-line/divider-line.component.mjs +1 -1
- package/esm2020/box-container/plugin-active/divider/divider.component.mjs +3 -3
- package/esm2020/box-container/plugin-hover/plugin-hover.component.mjs +3 -3
- package/esm2020/box-container/plugin-not-found/plugin-not-found.component.mjs +3 -3
- package/esm2020/camunda-bpmn-editor/camunda-bpmn-editor.component.mjs +3 -3
- package/esm2020/camunda-bpmn-editor/camunda-bpmn-editor.module.mjs +1 -1
- package/esm2020/code-editor/code-editor.component.mjs +3 -3
- package/esm2020/code-editor/code-editor.module.mjs +1 -1
- package/esm2020/data-detail/data-detail.component.mjs +3 -3
- package/esm2020/data-detail/data-detail.module.mjs +1 -1
- package/esm2020/data-detail/data-detail.service.mjs +1 -1
- package/esm2020/data-grid/data-grid.component.mjs +3 -3
- package/esm2020/data-grid/data-grid.module.mjs +1 -1
- package/esm2020/data-grid/file-cell-template/file-cell-template.component.mjs +19 -25
- package/esm2020/data-grid/instance-link-template.directive.mjs +1 -1
- package/esm2020/data-grid/master-detail-template.directive.mjs +1 -1
- package/esm2020/data-grid/row-buttons-template.directive.mjs +1 -1
- package/esm2020/data-grid/unit-info-template/unit-info-template.component.mjs +4 -7
- package/esm2020/data-grid/user-info-template/user-info-template.component.mjs +4 -7
- package/esm2020/drawer/drawer.component.mjs +3 -3
- package/esm2020/drawer/drawer.module.mjs +1 -1
- package/esm2020/drawer/drawer.service.mjs +1 -1
- package/esm2020/dynamic-params/dynamic-params.component.mjs +3 -3
- package/esm2020/dynamic-params/dynamic-params.module.mjs +1 -1
- package/esm2020/dynamic-params/tooltip-content-template.directive.mjs +1 -1
- package/esm2020/form/form.module.mjs +1 -1
- package/esm2020/form/form.service.mjs +1 -1
- package/esm2020/fullscreen/fullscreen.directive.mjs +86 -0
- package/esm2020/icon-selector/icon-selector.component.mjs +3 -3
- package/esm2020/icon-selector/icon-selector.module.mjs +1 -1
- package/esm2020/modal/modal.module.mjs +1 -1
- package/esm2020/modal/modal.service.mjs +1 -1
- package/esm2020/public-api.mjs +2 -1
- package/esm2020/websocket/websocket.module.mjs +1 -1
- package/esm2020/websocket/websocket.service.mjs +1 -1
- package/fesm2015/ngx-rs-ant.mjs +149 -73
- package/fesm2015/ngx-rs-ant.mjs.map +1 -1
- package/fesm2020/ngx-rs-ant.mjs +145 -73
- package/fesm2020/ngx-rs-ant.mjs.map +1 -1
- package/fullscreen/fullscreen.directive.d.ts +21 -0
- package/package.json +3 -2
- package/public-api.d.ts +1 -0
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
import { ElementRef, EventEmitter } from '@angular/core';
|
|
2
|
+
import * as i0 from "@angular/core";
|
|
3
|
+
export declare class FullscreenDirective {
|
|
4
|
+
private elementRef;
|
|
5
|
+
mode: 'immersive' | 'normal';
|
|
6
|
+
set isFullscreen(isFullscreen: boolean);
|
|
7
|
+
get isFullscreen(): boolean;
|
|
8
|
+
_isFullscreen: boolean;
|
|
9
|
+
isFullscreenChange: EventEmitter<boolean>;
|
|
10
|
+
constructor(elementRef: ElementRef);
|
|
11
|
+
ngOnInit(): void;
|
|
12
|
+
ngOnDestroy(): void;
|
|
13
|
+
private onFullScreenChange;
|
|
14
|
+
toggle(): void;
|
|
15
|
+
private launchNormalFullscreen;
|
|
16
|
+
private exitNormalFullscreen;
|
|
17
|
+
private launchImmersiveFullScreen;
|
|
18
|
+
private exitImmersiveFullScreen;
|
|
19
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<FullscreenDirective, never>;
|
|
20
|
+
static ɵdir: i0.ɵɵDirectiveDeclaration<FullscreenDirective, "[rsFullscreen]", never, { "mode": "mode"; "isFullscreen": "isFullscreen"; }, { "isFullscreenChange": "isFullscreenChange"; }, never, never, true, never>;
|
|
21
|
+
}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "ngx-rs-ant",
|
|
3
|
-
"version": "1.4.
|
|
3
|
+
"version": "1.4.8",
|
|
4
4
|
"license": "MIT",
|
|
5
5
|
"description": "RsAnt components based on Angular and DevExtreme",
|
|
6
6
|
"exports": {
|
|
@@ -26,7 +26,8 @@
|
|
|
26
26
|
"coast-plugin-register": "^2.1.8",
|
|
27
27
|
"devextreme": "^23.1.4",
|
|
28
28
|
"devextreme-angular": "^23.1.4",
|
|
29
|
-
"monaco-editor": "^0.44.0"
|
|
29
|
+
"monaco-editor": "^0.44.0",
|
|
30
|
+
"ng2-pdfjs-viewer": "^15.0.0"
|
|
30
31
|
},
|
|
31
32
|
"dependencies": {
|
|
32
33
|
"tslib": "^2.3.0"
|
package/public-api.d.ts
CHANGED
|
@@ -25,6 +25,7 @@ export * from './dynamic-params/dynamic-params.module';
|
|
|
25
25
|
export * from './form/form.component';
|
|
26
26
|
export * from './form/form.module';
|
|
27
27
|
export * from './form/form.service';
|
|
28
|
+
export * from './fullscreen/fullscreen.directive';
|
|
28
29
|
export * from './icon-selector/icon-selector.component';
|
|
29
30
|
export * from './icon-selector/icon-selector.module';
|
|
30
31
|
export * from './modal/modal.component';
|