raise-common-lib 0.0.237-beta → 0.0.239-beta
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/bundles/raise-common-lib.umd.js +144 -44
- package/bundles/raise-common-lib.umd.js.map +1 -1
- package/bundles/raise-common-lib.umd.min.js +1 -1
- package/bundles/raise-common-lib.umd.min.js.map +1 -1
- package/esm2015/lib/actions/toolbar-item/index.component.js +1 -1
- package/esm2015/lib/layout/drawer/index.component.js +67 -13
- package/esm2015/lib/layout/rs-stepper/constants.js +1 -1
- package/esm2015/lib/layout/rs-stepper/index.component.js +39 -21
- package/esm2015/lib/service/drawer.service.js +27 -10
- package/esm5/lib/actions/toolbar-item/index.component.js +1 -1
- package/esm5/lib/layout/drawer/index.component.js +79 -14
- package/esm5/lib/layout/rs-stepper/constants.js +1 -1
- package/esm5/lib/layout/rs-stepper/index.component.js +40 -22
- package/esm5/lib/service/drawer.service.js +28 -10
- package/fesm2015/raise-common-lib.js +131 -42
- package/fesm2015/raise-common-lib.js.map +1 -1
- package/fesm5/raise-common-lib.js +145 -45
- package/fesm5/raise-common-lib.js.map +1 -1
- package/lib/layout/drawer/index.component.d.ts +3 -1
- package/lib/layout/rs-stepper/constants.d.ts +2 -0
- package/lib/layout/rs-stepper/index.component.d.ts +4 -2
- package/package.json +1 -1
- package/raise-common-lib.metadata.json +1 -1
- package/src/assets/style/syncfusion.min.css +1 -1
|
@@ -35,7 +35,9 @@ export declare class DrawerComponent {
|
|
|
35
35
|
show<T>(component: new (...args: any[]) => T, config: DrawerConfig, data: Record<string, any>): T;
|
|
36
36
|
hide(): void;
|
|
37
37
|
back(): void;
|
|
38
|
-
deleteCache
|
|
38
|
+
private deleteCache;
|
|
39
|
+
private toggleCache;
|
|
40
|
+
deleteAllCache(cacheKey: string): void;
|
|
39
41
|
onRouteChange(): void;
|
|
40
42
|
toggleOpenStatus(isOpen: boolean, useAnimation?: boolean): void;
|
|
41
43
|
onAnimationEnd(): void;
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { EventEmitter, OnInit, SimpleChanges, ElementRef, ChangeDetectorRef, AfterViewInit } from "@angular/core";
|
|
2
|
-
import { StepItem } from "./constants";
|
|
2
|
+
import { StepItem, StepperOrientation } from "./constants";
|
|
3
3
|
import { CommonFunctionService } from "../../service/common-function.service";
|
|
4
4
|
export declare class RSStepperComponent implements OnInit, AfterViewInit {
|
|
5
5
|
cf: CommonFunctionService;
|
|
@@ -7,6 +7,8 @@ export declare class RSStepperComponent implements OnInit, AfterViewInit {
|
|
|
7
7
|
menu: ElementRef;
|
|
8
8
|
steps: StepItem[];
|
|
9
9
|
currentStep: number;
|
|
10
|
+
/** Layout direction: 'horizontal' (default) or 'vertical' */
|
|
11
|
+
orientation: StepperOrientation;
|
|
10
12
|
constructor(cf: CommonFunctionService, ref: ChangeDetectorRef);
|
|
11
13
|
stepClick: EventEmitter<StepItem>;
|
|
12
14
|
unlockedStep: number;
|
|
@@ -17,7 +19,7 @@ export declare class RSStepperComponent implements OnInit, AfterViewInit {
|
|
|
17
19
|
private syncUnlockedStep;
|
|
18
20
|
onStepClick(step: StepItem, index?: number): void;
|
|
19
21
|
private scrollToStep;
|
|
20
|
-
onResize(
|
|
22
|
+
onResize(_event: Event): void;
|
|
21
23
|
checkBtnShow(init?: boolean): void;
|
|
22
24
|
scrollLeft(): void;
|
|
23
25
|
scrollRight(): void;
|