raise-common-lib 0.0.200 → 0.0.201

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.
Files changed (30) hide show
  1. package/bundles/raise-common-lib.umd.js +182 -110
  2. package/bundles/raise-common-lib.umd.js.map +1 -1
  3. package/bundles/raise-common-lib.umd.min.js +1 -1
  4. package/bundles/raise-common-lib.umd.min.js.map +1 -1
  5. package/esm2015/lib/form/drawer-form/drawer-form.component.js +1 -1
  6. package/esm2015/lib/layout/page-list/index.component.js +10 -15
  7. package/esm2015/lib/layout/rs-stepper/constants.js +6 -0
  8. package/esm2015/lib/layout/rs-stepper/index.component.js +68 -0
  9. package/esm2015/lib/raise-common-lib.module.js +4 -1
  10. package/esm2015/public-api.js +3 -1
  11. package/esm2015/raise-common-lib.js +2 -2
  12. package/esm5/lib/form/drawer-form/drawer-form.component.js +1 -1
  13. package/esm5/lib/layout/page-list/index.component.js +10 -19
  14. package/esm5/lib/layout/rs-stepper/constants.js +6 -0
  15. package/esm5/lib/layout/rs-stepper/index.component.js +75 -0
  16. package/esm5/lib/raise-common-lib.module.js +4 -1
  17. package/esm5/public-api.js +3 -1
  18. package/esm5/raise-common-lib.js +2 -2
  19. package/fesm2015/raise-common-lib.js +161 -92
  20. package/fesm2015/raise-common-lib.js.map +1 -1
  21. package/fesm5/raise-common-lib.js +182 -111
  22. package/fesm5/raise-common-lib.js.map +1 -1
  23. package/lib/layout/page-list/index.component.d.ts +2 -3
  24. package/lib/layout/rs-stepper/constants.d.ts +5 -0
  25. package/lib/layout/rs-stepper/index.component.d.ts +12 -0
  26. package/package.json +1 -1
  27. package/public-api.d.ts +2 -0
  28. package/raise-common-lib.metadata.json +1 -1
  29. package/src/assets/img/step-arrow.svg +3 -0
  30. package/src/assets/style/variables.scss +1 -0
@@ -1,21 +1,20 @@
1
1
  import { AfterContentInit, EventEmitter, OnInit } from "@angular/core";
2
- import { SearchInputComponent } from "../../form/search-input/index.component";
3
2
  export declare class RsPageListComponent implements OnInit, AfterContentInit {
4
3
  gridContent: any;
5
4
  orignGrid: any;
6
5
  treeGrid: any;
7
6
  wholeToolbarSlot: any;
8
- searchInput: SearchInputComponent;
7
+ leftContentSlot: any;
9
8
  pageTitle: any;
10
9
  customPageTitle: boolean;
11
10
  hideSearch: boolean;
12
11
  isInner: boolean;
13
12
  onGridSearch: EventEmitter<any>;
14
13
  hasWholeToolbarSlot: boolean;
14
+ hasLeftContentSlot: boolean;
15
15
  translation: any;
16
16
  ngOnInit(): void;
17
17
  getInfo(): void;
18
18
  ngAfterContentInit(): void;
19
- setSearchValue(value: any): void;
20
19
  onSeach(value: any): void;
21
20
  }
@@ -0,0 +1,5 @@
1
+ export declare type StepItem = {
2
+ label: string;
3
+ step: number;
4
+ displayTitle?: string;
5
+ };
@@ -0,0 +1,12 @@
1
+ import { EventEmitter, OnInit } from '@angular/core';
2
+ import { StepItem } from './constants';
3
+ import { CommonFunctionService } from '../../service/common-function.service';
4
+ export declare class RSStepperComponent implements OnInit {
5
+ cf: CommonFunctionService;
6
+ steps: StepItem[];
7
+ currentStep: number;
8
+ constructor(cf: CommonFunctionService);
9
+ stepClick: EventEmitter<StepItem>;
10
+ ngOnInit(): void;
11
+ onStepClick(step: StepItem): void;
12
+ }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "raise-common-lib",
3
- "version": "0.0.200",
3
+ "version": "0.0.201",
4
4
  "peerDependencies": {
5
5
  "@angular/common": "^8.2.3 || ^9.0.0",
6
6
  "@angular/core": "^8.2.3 || ^9.0.0"
package/public-api.d.ts CHANGED
@@ -16,6 +16,8 @@ export * from "./lib/layout/main-container/index.component";
16
16
  export * from "./lib/layout/rs-header/index.component";
17
17
  export * from "./lib/layout/rs-footer/index.component";
18
18
  export * from "./lib/layout/rs-aside/index.component";
19
+ export * from "./lib/layout/rs-stepper/index.component";
20
+ export * from "./lib/layout/rs-stepper/constants";
19
21
  export * from "./lib/form/tag-input/index.component";
20
22
  export * from "./lib/form/radio-group/index.component";
21
23
  export * from "./lib/form/checkbox-group/index.component";