ui-core-abv 0.3.5 → 0.3.6
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/ui-core-abv.mjs +105 -21
- package/fesm2022/ui-core-abv.mjs.map +1 -1
- package/lib/components/overlay-card/overlay-card.component.d.ts +17 -0
- package/lib/components/table/table.component.d.ts +1 -0
- package/lib/components/table/table.models.d.ts +1 -0
- package/lib/components/work-panel/work-panel.component.d.ts +1 -0
- package/lib/pipes/first-capital.pipe.d.ts +7 -0
- package/package.json +1 -1
- package/public-api.d.ts +2 -0
- package/src/lib/styles/_mixins.scss +3 -3
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
import { ConnectedPosition } from '@angular/cdk/overlay';
|
|
2
|
+
import { TemplateRef } from '@angular/core';
|
|
3
|
+
import * as i0 from "@angular/core";
|
|
4
|
+
export declare class UicOverlayCardComponent {
|
|
5
|
+
menuTemplate: TemplateRef<any>;
|
|
6
|
+
private overlayRef;
|
|
7
|
+
private readonly overlay;
|
|
8
|
+
private readonly vcr;
|
|
9
|
+
private readonly host;
|
|
10
|
+
selectedSet: Set<string | number>;
|
|
11
|
+
allSelected: boolean;
|
|
12
|
+
overlayPositions: ConnectedPosition[];
|
|
13
|
+
openMenu(): void;
|
|
14
|
+
close(): void;
|
|
15
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<UicOverlayCardComponent, never>;
|
|
16
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<UicOverlayCardComponent, "ui-overlay-card", never, {}, {}, never, ["[button]", "[content]"], true, never>;
|
|
17
|
+
}
|
|
@@ -44,6 +44,7 @@ export declare class UicTableComponent {
|
|
|
44
44
|
filter: string;
|
|
45
45
|
page: number;
|
|
46
46
|
getValue(data: TableRowData[], key: string): string;
|
|
47
|
+
getSubtext(data: TableRowData[], key: string): string;
|
|
47
48
|
isChecked(data: TableRowData[], key: string): boolean;
|
|
48
49
|
getMoreActions(actions: TableButton[], row: TableRowData[]): ActionMenuOption[];
|
|
49
50
|
getFontColor(data: TableRowData[], key: string): string;
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
import { PipeTransform } from '@angular/core';
|
|
2
|
+
import * as i0 from "@angular/core";
|
|
3
|
+
export declare class FirstCapitalPipe implements PipeTransform {
|
|
4
|
+
transform(str: string, max?: number): string;
|
|
5
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<FirstCapitalPipe, never>;
|
|
6
|
+
static ɵpipe: i0.ɵɵPipeDeclaration<FirstCapitalPipe, "firstCapital", true>;
|
|
7
|
+
}
|
package/package.json
CHANGED
package/public-api.d.ts
CHANGED
|
@@ -28,6 +28,7 @@ export * from './lib/components/kpi-card/kpi-card.component';
|
|
|
28
28
|
export * from './lib/components/uic-portlet-card/uic-portlet-card.component';
|
|
29
29
|
export * from './lib/components/tabs-button/tabs-button.component';
|
|
30
30
|
export * from './lib/components/work-panel/work-panel.component';
|
|
31
|
+
export * from './lib/components/overlay-card/overlay-card.component';
|
|
31
32
|
export * from './lib/animations/animatios.index';
|
|
32
33
|
export * from './lib/components/dynamic-form/form.models';
|
|
33
34
|
export * from './lib/services/modal.service';
|
|
@@ -37,5 +38,6 @@ export * from './lib/services/tiny-alert.service';
|
|
|
37
38
|
export * from './lib/components/tiny-alert/tiny-alert.model';
|
|
38
39
|
export * from './lib/services/push-alert.service';
|
|
39
40
|
export * from './lib/pipes/name-inits.pipe';
|
|
41
|
+
export * from './lib/pipes/first-capital.pipe';
|
|
40
42
|
export * from './lib/directives/tool-tip.directive';
|
|
41
43
|
export * from './lib/helpers';
|
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
$breakpoint-md: 480px !default;
|
|
2
|
-
$breakpoint-tablet: 768px !default;
|
|
1
|
+
$breakpoint-md: 480px !default;
|
|
2
|
+
$breakpoint-tablet: 768px !default;
|
|
3
3
|
|
|
4
4
|
@mixin mobile {
|
|
5
5
|
@media (max-width: #{$breakpoint-md - 1}) {
|
|
@@ -17,4 +17,4 @@ $breakpoint-tablet: 768px !default;
|
|
|
17
17
|
@media (min-width: #{$breakpoint-tablet}) {
|
|
18
18
|
@content;
|
|
19
19
|
}
|
|
20
|
-
}
|
|
20
|
+
}
|