ato-water-lib 0.0.19 → 0.0.21
Sign up to get free protection for your applications and to get access to all the features.
- package/esm2020/lib/ato-water-lib.module.mjs +9 -4
- package/esm2020/lib/components/asset-flow/asset-flow.component.mjs +3 -3
- package/esm2020/lib/components/asset-params-view/asset-params-view.component.mjs +3 -3
- package/esm2020/lib/components/svg/svg.component.mjs +23 -0
- package/esm2020/lib/constants/components-group-const.mjs +2 -2
- package/esm2020/lib/constants/icon-svg.const.mjs +10 -0
- package/esm2020/public-api.mjs +2 -1
- package/fesm2015/ato-water-lib.mjs +62 -29
- package/fesm2015/ato-water-lib.mjs.map +1 -1
- package/fesm2020/ato-water-lib.mjs +75 -42
- package/fesm2020/ato-water-lib.mjs.map +1 -1
- package/lib/ato-water-lib.module.d.ts +5 -4
- package/lib/components/asset-flow/asset-flow.component.d.ts +0 -891
- package/lib/components/svg/svg.component.d.ts +9 -0
- package/lib/constants/components-group-const.d.ts +1 -1
- package/lib/constants/icon-svg.const.d.ts +8 -0
- package/package.json +1 -1
- package/public-api.d.ts +1 -0
@@ -0,0 +1,9 @@
|
|
1
|
+
import * as i0 from "@angular/core";
|
2
|
+
export declare class SvgComponent {
|
3
|
+
type: string;
|
4
|
+
width: string;
|
5
|
+
height: string;
|
6
|
+
htmlStr: string;
|
7
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<SvgComponent, never>;
|
8
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<SvgComponent, "ato-svg", never, { "type": "type"; "width": "width"; "height": "height"; }, {}, never, never, false, never>;
|
9
|
+
}
|
package/package.json
CHANGED
package/public-api.d.ts
CHANGED
@@ -4,5 +4,6 @@ export * from './lib/ato-water-lib.module';
|
|
4
4
|
export * from './lib/components/flow-diagram-lib/flow-diagram-lib.component';
|
5
5
|
export * from './lib/components/asset-flow/asset-flow.component';
|
6
6
|
export * from './lib/components/asset-params-view/asset-params-view.component';
|
7
|
+
export * from './lib/components/svg/svg.component';
|
7
8
|
export * from './lib/directive/ato-loading.directive';
|
8
9
|
export * from './lib/directive/ng-var.directive';
|