ngx-rs-ant 1.5.9 → 1.6.1
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/camunda-bpmn-editor/camunda-bpmn-editor.component.d.ts +4 -1
- package/data-grid/instance-link-template/instance-link-template.component.d.ts +1 -3
- package/esm2020/camunda-bpmn-editor/camunda-bpmn-editor.component.mjs +13 -3
- package/esm2020/data-grid/instance-link-template/instance-link-template.component.mjs +10 -12
- package/esm2020/drawer/drawer.component.mjs +10 -10
- package/esm2020/modal/modal.component.mjs +4 -6
- package/fesm2015/ngx-rs-ant.mjs +42 -35
- package/fesm2015/ngx-rs-ant.mjs.map +1 -1
- package/fesm2020/ngx-rs-ant.mjs +42 -35
- package/fesm2020/ngx-rs-ant.mjs.map +1 -1
- package/modal/modal.component.d.ts +2 -3
- package/package.json +2 -2
- package/styles/coast-var.scss +2 -2
|
@@ -1,8 +1,7 @@
|
|
|
1
|
-
import {
|
|
1
|
+
import { ElementRef, OnDestroy, OnInit, TemplateRef } from '@angular/core';
|
|
2
2
|
import * as i0 from "@angular/core";
|
|
3
3
|
export declare class ModalComponent implements OnInit, OnDestroy {
|
|
4
4
|
private elementRef;
|
|
5
|
-
private changeDetectorRef;
|
|
6
5
|
title: string;
|
|
7
6
|
size: 'default' | 'large' | 'full';
|
|
8
7
|
_width: number;
|
|
@@ -16,7 +15,7 @@ export declare class ModalComponent implements OnInit, OnDestroy {
|
|
|
16
15
|
footerTemplate?: TemplateRef<any>;
|
|
17
16
|
footerTemplateContext: any;
|
|
18
17
|
_parentViewContainerRef: any;
|
|
19
|
-
constructor(elementRef: ElementRef
|
|
18
|
+
constructor(elementRef: ElementRef);
|
|
20
19
|
ngOnInit(): void;
|
|
21
20
|
show(): void;
|
|
22
21
|
hide(): void;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "ngx-rs-ant",
|
|
3
|
-
"version": "1.
|
|
3
|
+
"version": "1.6.1",
|
|
4
4
|
"license": "MIT",
|
|
5
5
|
"description": "RsAnt components based on Angular and DevExtreme",
|
|
6
6
|
"exports": {
|
|
@@ -22,7 +22,7 @@
|
|
|
22
22
|
"peerDependencies": {
|
|
23
23
|
"@angular/common": "^15.2.0",
|
|
24
24
|
"@angular/core": "^15.2.0",
|
|
25
|
-
"camunda-bpmn-js": "^3.
|
|
25
|
+
"camunda-bpmn-js": "^3.10.2",
|
|
26
26
|
"coast-plugin-register": "^2.1.8",
|
|
27
27
|
"devextreme": "^23.1.4",
|
|
28
28
|
"devextreme-angular": "^23.1.4",
|
package/styles/coast-var.scss
CHANGED
|
@@ -11,8 +11,8 @@ $coast-empty-color: var(--coast-empty-color, #d4d4d4); // 空白背景色
|
|
|
11
11
|
|
|
12
12
|
// 统一z-index
|
|
13
13
|
$coast-z-index-framework: var(--coast-z-index-framework, 1000); // 框架层
|
|
14
|
-
$coast-z-index-drawer: var(--coast-z-index-drawer, 1040); // 抽屉
|
|
15
14
|
$coast-z-index-modal: var(--coast-z-index-modal, 1050); // 模态框
|
|
16
15
|
$coast-z-index-dropdown: var(--coast-z-index-dropdown, 1052); //下拉菜单
|
|
17
|
-
$coast-z-index-
|
|
16
|
+
$coast-z-index-drawer: var(--coast-z-index-drawer, 1060); // 抽屉
|
|
17
|
+
$coast-z-index-pop-up: var(--coast-z-index-pop-up, 1070); // 全局提示类信息
|
|
18
18
|
$coast-z-index-full-page-overlay: var(--coast-z-index-full-page-overlay, 1080); // 全局覆盖元素
|