raise-common-lib-new 0.0.88 → 0.0.89
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/esm2022/lib/form/richtexteditor/index.component.mjs +20 -7
- package/fesm2022/raise-common-lib-new.mjs +20 -6
- package/fesm2022/raise-common-lib-new.mjs.map +1 -1
- package/lib/dashboard/pane-group-new.component.d.ts +1 -1
- package/lib/float-box/index.component.d.ts +2 -2
- package/package.json +1 -1
- package/src/assets/style/reset/mat-dialog.scss +6 -5
|
@@ -148,7 +148,7 @@ export declare class PaneGroupNewComponent implements OnInit {
|
|
|
148
148
|
onMenuClose(item: any): void;
|
|
149
149
|
getAsofdate(item: any): any;
|
|
150
150
|
getCurrency(config: any): any;
|
|
151
|
-
getFigurecode(figureCode: any):
|
|
151
|
+
getFigurecode(figureCode: any): 0 | 1 | 2 | 3 | 4;
|
|
152
152
|
getTableName(item: any): boolean;
|
|
153
153
|
pushSlider(): void;
|
|
154
154
|
private getFigureCode;
|
|
@@ -8,8 +8,8 @@ export declare class FloatBoxComponent implements AfterViewInit, OnDestroy {
|
|
|
8
8
|
_animation: "yes" | "no";
|
|
9
9
|
_fixed: "yes" | "no";
|
|
10
10
|
_floatClass: string;
|
|
11
|
-
get placement(): "top" | "
|
|
12
|
-
get position(): "
|
|
11
|
+
get placement(): "top" | "bottom" | "right" | "left";
|
|
12
|
+
get position(): "start" | "center" | "end";
|
|
13
13
|
get trigger(): "hover" | "click" | "rightClick";
|
|
14
14
|
get animation(): "yes" | "no";
|
|
15
15
|
get fixed(): "yes" | "no";
|
package/package.json
CHANGED