ngx-rs-ant 1.6.9 → 1.7.0
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/custom-template.directive.d.ts +8 -0
- package/data-grid/data-grid.component.d.ts +4 -1
- package/data-grid/data-grid.module.d.ts +5 -4
- 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/form-item-config-error/form-item-config-error.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/custom-template.directive.mjs +16 -0
- package/esm2020/data-grid/data-grid.component.mjs +8 -3
- package/esm2020/data-grid/data-grid.module.mjs +10 -5
- package/esm2020/data-grid/instance-link-template/instance-link-template.component.mjs +3 -3
- package/esm2020/data-grid/row-buttons-template.directive.mjs +1 -1
- package/esm2020/data-grid/unit-info-template/unit-info-template.component.mjs +3 -3
- package/esm2020/data-grid/user-info-template/user-info-template.component.mjs +3 -3
- 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/field-selector/field-selector.component.mjs +3 -3
- package/esm2020/form/form.module.mjs +1 -1
- package/esm2020/form/form.service.mjs +1 -1
- package/esm2020/fullscreen/fullscreen.directive.mjs +1 -1
- 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 +73 -51
- package/fesm2015/ngx-rs-ant.mjs.map +1 -1
- package/fesm2020/ngx-rs-ant.mjs +73 -51
- package/fesm2020/ngx-rs-ant.mjs.map +1 -1
- package/package.json +1 -1
- package/public-api.d.ts +1 -0
package/package.json
CHANGED
package/public-api.d.ts
CHANGED
|
@@ -10,6 +10,7 @@ export * from './code-editor/code-editor.module';
|
|
|
10
10
|
export * from './data-grid/data-grid.component';
|
|
11
11
|
export * from './data-grid/data-grid.factory';
|
|
12
12
|
export * from './data-grid/row-buttons-template.directive';
|
|
13
|
+
export * from './data-grid/custom-template.directive';
|
|
13
14
|
export * from './data-grid/data-grid.module';
|
|
14
15
|
export * from './data-grid/data-grid.service';
|
|
15
16
|
export * from './data-detail/data-detail.component';
|