raise-common-lib-new 0.0.20 → 0.0.22

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 (125) hide show
  1. package/assets/language/fr.d.ts +3377 -0
  2. package/assets/language/ja.d.ts +3351 -0
  3. package/assets/language/ko.d.ts +3351 -0
  4. package/assets/language/zh-CN.d.ts +3064 -0
  5. package/assets/language/zh-TW.d.ts +3354 -0
  6. package/esm2022/assets/language/fr.mjs +3378 -0
  7. package/esm2022/assets/language/ja.mjs +3352 -0
  8. package/esm2022/assets/language/ko.mjs +3352 -0
  9. package/esm2022/assets/language/zh-CN.mjs +3065 -0
  10. package/esm2022/assets/language/zh-TW.mjs +3355 -0
  11. package/esm2022/lib/commentary/constants.mjs +2 -0
  12. package/esm2022/lib/commentary/index.component.mjs +146 -0
  13. package/esm2022/lib/common-grid/grid-action/grid-action-item/grid-action-item.component.mjs +44 -0
  14. package/esm2022/lib/common-grid/grid-action/grid-action.component.mjs +18 -0
  15. package/esm2022/lib/common-grid/index.component.mjs +52 -30
  16. package/esm2022/lib/dialog/common-delete-dialog/index.component.mjs +2 -2
  17. package/esm2022/lib/dialog/common-dialog/index.component.mjs +4 -4
  18. package/esm2022/lib/form/checkbox-group/index.component.mjs +2 -2
  19. package/esm2022/lib/form/drawer-form/constants.mjs +10 -0
  20. package/esm2022/lib/form/drawer-form/drawer-form.component.mjs +336 -0
  21. package/esm2022/lib/form/encrypted-input/index.component.mjs +35 -0
  22. package/esm2022/lib/form/radio-group/index.component.mjs +2 -2
  23. package/esm2022/lib/form/switch-input/index.component.mjs +2 -2
  24. package/esm2022/lib/form/tag-input/index.component.mjs +31 -11
  25. package/esm2022/lib/form/toolbar-item/index.component.mjs +56 -0
  26. package/esm2022/lib/layout/drawer/index.component.mjs +165 -0
  27. package/esm2022/lib/layout/grid-box/index.component.mjs +37 -12
  28. package/esm2022/lib/layout/main-container/index.component.mjs +47 -9
  29. package/esm2022/lib/layout/multi-tab/index.component.mjs +137 -30
  30. package/esm2022/lib/layout/nav-card-group/constants.mjs +2 -0
  31. package/esm2022/lib/layout/nav-card-group/index.component.mjs +37 -0
  32. package/esm2022/lib/layout/page-list/index.component.mjs +38 -8
  33. package/esm2022/lib/layout/page-tab/index.component.mjs +25 -6
  34. package/esm2022/lib/layout/rs-aside/index.component.mjs +54 -9
  35. package/esm2022/lib/layout/rs-footer/index.component.mjs +2 -2
  36. package/esm2022/lib/layout/rs-header/index.component.mjs +38 -29
  37. package/esm2022/lib/layout/toolbar/constants.mjs +2 -0
  38. package/esm2022/lib/layout/toolbar/index.component.mjs +79 -0
  39. package/esm2022/lib/raise-common-lib.module.mjs +76 -7
  40. package/esm2022/lib/service/common-function.service.mjs +87 -1
  41. package/esm2022/lib/service/dialog.service.mjs +5 -5
  42. package/esm2022/lib/service/drawer.service.mjs +111 -0
  43. package/esm2022/lib/service/keep-alive.service.mjs +51 -12
  44. package/esm2022/lib/service/translation.service.mjs +98 -0
  45. package/esm2022/lib/utils/decorator.mjs +14 -0
  46. package/esm2022/public-api.mjs +35 -20
  47. package/fesm2022/raise-common-lib-new.mjs +18751 -676
  48. package/fesm2022/raise-common-lib-new.mjs.map +1 -1
  49. package/lib/commentary/constants.d.ts +15 -0
  50. package/lib/commentary/index.component.d.ts +38 -0
  51. package/lib/common-grid/grid-action/grid-action-item/grid-action-item.component.d.ts +10 -0
  52. package/lib/common-grid/grid-action/grid-action.component.d.ts +14 -0
  53. package/lib/common-grid/index.component.d.ts +8 -5
  54. package/lib/form/drawer-form/constants.d.ts +34 -0
  55. package/lib/form/drawer-form/drawer-form.component.d.ts +67 -0
  56. package/lib/form/encrypted-input/index.component.d.ts +14 -0
  57. package/lib/form/tag-input/index.component.d.ts +9 -3
  58. package/lib/form/toolbar-item/index.component.d.ts +17 -0
  59. package/lib/layout/drawer/index.component.d.ts +45 -0
  60. package/lib/layout/grid-box/index.component.d.ts +9 -5
  61. package/lib/layout/main-container/index.component.d.ts +10 -1
  62. package/lib/layout/multi-tab/index.component.d.ts +19 -6
  63. package/lib/layout/nav-card-group/constants.d.ts +14 -0
  64. package/lib/layout/nav-card-group/index.component.d.ts +16 -0
  65. package/lib/layout/page-list/index.component.d.ts +9 -3
  66. package/lib/layout/page-tab/index.component.d.ts +6 -2
  67. package/lib/layout/rs-aside/index.component.d.ts +8 -3
  68. package/lib/layout/rs-header/index.component.d.ts +12 -12
  69. package/lib/layout/toolbar/constants.d.ts +8 -0
  70. package/lib/layout/toolbar/index.component.d.ts +22 -0
  71. package/lib/raise-common-lib.module.d.ts +48 -37
  72. package/lib/service/common-function.service.d.ts +9 -0
  73. package/lib/service/drawer.service.d.ts +46 -0
  74. package/lib/service/keep-alive.service.d.ts +4 -0
  75. package/lib/service/translation.service.d.ts +12 -0
  76. package/lib/utils/decorator.d.ts +1 -0
  77. package/package.json +1 -1
  78. package/public-api.d.ts +34 -19
  79. package/src/assets/img/comment-cancel.svg +4 -0
  80. package/src/assets/img/comment-check.svg +5 -0
  81. package/src/assets/img/down-arrow.svg +3 -0
  82. package/src/assets/img/drawer-back.svg +4 -0
  83. package/src/assets/img/eye-close.svg +4 -0
  84. package/src/assets/img/eye-open.svg +4 -0
  85. package/src/assets/img/grid-action-copy.svg +6 -0
  86. package/src/assets/img/grid-action-delete.svg +14 -0
  87. package/src/assets/img/grid-action-detail.svg +7 -0
  88. package/src/assets/img/grid-action-download.svg +7 -0
  89. package/src/assets/img/grid-action-edit.svg +4 -0
  90. package/src/assets/img/grid-action-export.svg +12 -0
  91. package/src/assets/img/grid-action-move.svg +8 -0
  92. package/src/assets/img/grid-action-note.svg +10 -0
  93. package/src/assets/img/grid-action-send.svg +5 -0
  94. package/src/assets/img/grid-action-settle.svg +13 -0
  95. package/src/assets/img/grid-menu-arrow-right.svg +3 -0
  96. package/src/assets/img/grid-pager-arrow-left.svg +3 -0
  97. package/src/assets/img/grid-pager-arrows-left.svg +4 -0
  98. package/src/assets/img/more.svg +5 -0
  99. package/src/assets/img/table-column-menu.svg +5 -0
  100. package/src/assets/img/table-sort-arrow.svg +6 -0
  101. package/src/assets/img/toolbar-action-add.svg +4 -0
  102. package/src/assets/img/toolbar-action-delete.svg +14 -0
  103. package/src/assets/img/toolbar-action-download.svg +5 -0
  104. package/src/assets/img/toolbar-action-duplicate.svg +6 -0
  105. package/src/assets/img/toolbar-action-export.svg +5 -0
  106. package/src/assets/img/toolbar-action-import.svg +5 -0
  107. package/src/assets/img/toolbar-action-refresh.svg +14 -0
  108. package/src/assets/img/toolbar-action-upload.svg +5 -0
  109. package/src/assets/img/tooltip-icon.svg +4 -0
  110. package/src/assets/language/fr.ts +3603 -0
  111. package/src/assets/language/ja.ts +3501 -0
  112. package/src/assets/language/ko.ts +3478 -0
  113. package/src/assets/language/zh-CN.ts +3115 -0
  114. package/src/assets/language/zh-TW.ts +3411 -0
  115. package/src/assets/style/reset/button.scss +41 -8
  116. package/src/assets/style/reset/checkbox.scss +33 -0
  117. package/src/assets/style/reset/dropdown.scss +42 -10
  118. package/src/assets/style/reset/grid.scss +733 -132
  119. package/src/assets/style/reset/input.scss +45 -12
  120. package/src/assets/style/reset/mat-dialog.scss +6 -2
  121. package/src/assets/style/reset/radio.scss +37 -0
  122. package/src/assets/style/reset/switch.scss +32 -0
  123. package/src/assets/style/style.scss +6 -0
  124. package/src/assets/style/syncfusion.min.css +1 -1
  125. package/src/assets/style/variables.scss +4 -4
@@ -1,43 +1,54 @@
1
1
  import * as i0 from "@angular/core";
2
2
  import * as i1 from "./common-grid/index.component";
3
- import * as i2 from "./float-box/index.component";
4
- import * as i3 from "./layout/page-list/index.component";
5
- import * as i4 from "./layout/page-tab/index.component";
6
- import * as i5 from "./layout/grid-box/index.component";
7
- import * as i6 from "./layout/rs-header/index.component";
8
- import * as i7 from "./layout/rs-footer/index.component";
9
- import * as i8 from "./layout/rs-aside/index.component";
10
- import * as i9 from "./layout/multi-tab/index.component";
11
- import * as i10 from "./layout/main-container/index.component";
12
- import * as i11 from "./form/tag-input/index.component";
13
- import * as i12 from "./form/radio-group/index.component";
14
- import * as i13 from "./form/checkbox-group/index.component";
15
- import * as i14 from "./form/switch-input/index.component";
16
- import * as i15 from "./dialog/new-action-notification/new-action-notification.component";
17
- import * as i16 from "./dialog/common-dialog/index.component";
18
- import * as i17 from "./dialog/common-delete-dialog/index.component";
19
- import * as i18 from "@angular/common";
20
- import * as i19 from "@angular/common/http";
21
- import * as i20 from "@angular/forms";
22
- import * as i21 from "@angular/material/snack-bar";
23
- import * as i22 from "@angular/material/dialog";
24
- import * as i23 from "@angular/material/icon";
25
- import * as i24 from "@syncfusion/ej2-angular-grids";
26
- import * as i25 from "@syncfusion/ej2-angular-buttons";
27
- import * as i26 from "@syncfusion/ej2-angular-diagrams";
28
- import * as i27 from "@syncfusion/ej2-angular-popups";
29
- import * as i28 from "@syncfusion/ej2-angular-calendars";
30
- import * as i29 from "@syncfusion/ej2-angular-inputs";
31
- import * as i30 from "@syncfusion/ej2-angular-dropdowns";
32
- import * as i31 from "@syncfusion/ej2-angular-pivotview";
33
- import * as i32 from "@syncfusion/ej2-angular-charts";
34
- import * as i33 from "@syncfusion/ej2-angular-layouts";
35
- import * as i34 from "@syncfusion/ej2-angular-navigations";
36
- import * as i35 from "@syncfusion/ej2-angular-pdfviewer";
37
- import * as i36 from "@syncfusion/ej2-angular-splitbuttons";
38
- import * as i37 from "@syncfusion/ej2-angular-richtexteditor";
3
+ import * as i2 from "./common-grid/grid-action/grid-action.component";
4
+ import * as i3 from "./common-grid/grid-action/grid-action-item/grid-action-item.component";
5
+ import * as i4 from "./float-box/index.component";
6
+ import * as i5 from "./layout/page-list/index.component";
7
+ import * as i6 from "./layout/page-tab/index.component";
8
+ import * as i7 from "./layout/grid-box/index.component";
9
+ import * as i8 from "./layout/rs-header/index.component";
10
+ import * as i9 from "./layout/rs-footer/index.component";
11
+ import * as i10 from "./layout/rs-aside/index.component";
12
+ import * as i11 from "./layout/multi-tab/index.component";
13
+ import * as i12 from "./layout/main-container/index.component";
14
+ import * as i13 from "./form/tag-input/index.component";
15
+ import * as i14 from "./form/radio-group/index.component";
16
+ import * as i15 from "./form/checkbox-group/index.component";
17
+ import * as i16 from "./form/switch-input/index.component";
18
+ import * as i17 from "./form/encrypted-input/index.component";
19
+ import * as i18 from "./dialog/new-action-notification/new-action-notification.component";
20
+ import * as i19 from "./dialog/common-dialog/index.component";
21
+ import * as i20 from "./dialog/common-delete-dialog/index.component";
22
+ import * as i21 from "./layout/drawer/index.component";
23
+ import * as i22 from "./form/drawer-form/drawer-form.component";
24
+ import * as i23 from "./form/toolbar-item/index.component";
25
+ import * as i24 from "./commentary/index.component";
26
+ import * as i25 from "./layout/nav-card-group/index.component";
27
+ import * as i26 from "./layout/toolbar/index.component";
28
+ import * as i27 from "@angular/common";
29
+ import * as i28 from "@angular/common/http";
30
+ import * as i29 from "@angular/forms";
31
+ import * as i30 from "@angular/material/snack-bar";
32
+ import * as i31 from "@angular/material/menu";
33
+ import * as i32 from "@angular/material/tooltip";
34
+ import * as i33 from "@angular/material/dialog";
35
+ import * as i34 from "@angular/material/icon";
36
+ import * as i35 from "@syncfusion/ej2-angular-grids";
37
+ import * as i36 from "@syncfusion/ej2-angular-buttons";
38
+ import * as i37 from "@syncfusion/ej2-angular-diagrams";
39
+ import * as i38 from "@syncfusion/ej2-angular-popups";
40
+ import * as i39 from "@syncfusion/ej2-angular-calendars";
41
+ import * as i40 from "@syncfusion/ej2-angular-inputs";
42
+ import * as i41 from "@syncfusion/ej2-angular-dropdowns";
43
+ import * as i42 from "@syncfusion/ej2-angular-pivotview";
44
+ import * as i43 from "@syncfusion/ej2-angular-charts";
45
+ import * as i44 from "@syncfusion/ej2-angular-layouts";
46
+ import * as i45 from "@syncfusion/ej2-angular-navigations";
47
+ import * as i46 from "@syncfusion/ej2-angular-pdfviewer";
48
+ import * as i47 from "@syncfusion/ej2-angular-splitbuttons";
49
+ import * as i48 from "@syncfusion/ej2-angular-richtexteditor";
39
50
  export declare class RaiseCommonLibModule {
40
51
  static ɵfac: i0.ɵɵFactoryDeclaration<RaiseCommonLibModule, never>;
41
- static ɵmod: i0.ɵɵNgModuleDeclaration<RaiseCommonLibModule, [typeof i1.CommonGridComponent, typeof i2.FloatBoxComponent, typeof i3.RsPageListComponent, typeof i4.RsPageTabComponent, typeof i5.GridBoxComponent, typeof i6.RSHeaderComponent, typeof i7.RSFooterComponent, typeof i8.RSAsideComponent, typeof i9.MultiTabComponent, typeof i10.MainContainerComponent, typeof i11.TagInputComponent, typeof i12.RadioGroupComponent, typeof i13.CheckboxGroupComponent, typeof i14.SwitchInputComponent, typeof i15.NewActionNotificationComponent, typeof i16.CommonDialogComponent, typeof i17.CommonDeleteComponent], [typeof i18.CommonModule, typeof i19.HttpClientModule, typeof i20.ReactiveFormsModule, typeof i20.FormsModule, typeof i21.MatSnackBarModule, typeof i22.MatDialogModule, typeof i23.MatIconModule, typeof i24.GridModule, typeof i24.PagerModule, typeof i24.GridAllModule, typeof i25.SwitchModule, typeof i25.CheckBoxModule, typeof i25.RadioButtonModule, typeof i25.ButtonModule, typeof i26.DiagramModule, typeof i27.TooltipModule, typeof i27.DialogModule, typeof i28.DatePickerModule, typeof i28.DateRangePickerModule, typeof i28.DateTimePickerModule, typeof i29.TextBoxModule, typeof i29.ColorPickerModule, typeof i29.UploaderModule, typeof i29.NumericTextBoxModule, typeof i30.DropDownListModule, typeof i30.DropDownTreeModule, typeof i30.MultiSelectAllModule, typeof i30.AutoCompleteModule, typeof i30.ListBoxModule, typeof i31.PivotViewAllModule, typeof i31.PivotFieldListAllModule, typeof i32.ChartAllModule, typeof i32.AccumulationChartAllModule, typeof i32.RangeNavigatorAllModule, typeof i32.AccumulationChartModule, typeof i33.DashboardLayoutModule, typeof i34.CarouselAllModule, typeof i34.ToolbarModule, typeof i34.TabModule, typeof i35.PdfViewerModule, typeof i36.DropDownButtonModule, typeof i36.SplitButtonModule, typeof i37.RichTextEditorAllModule], [typeof i18.CommonModule, typeof i19.HttpClientModule, typeof i20.ReactiveFormsModule, typeof i20.FormsModule, typeof i21.MatSnackBarModule, typeof i22.MatDialogModule, typeof i24.GridModule, typeof i24.PagerModule, typeof i24.GridAllModule, typeof i25.SwitchModule, typeof i25.CheckBoxModule, typeof i25.RadioButtonModule, typeof i25.ButtonModule, typeof i26.DiagramModule, typeof i27.TooltipModule, typeof i27.DialogModule, typeof i28.DatePickerModule, typeof i28.DateRangePickerModule, typeof i28.DateTimePickerModule, typeof i29.TextBoxModule, typeof i29.ColorPickerModule, typeof i29.UploaderModule, typeof i29.NumericTextBoxModule, typeof i30.DropDownListModule, typeof i30.DropDownTreeModule, typeof i30.MultiSelectAllModule, typeof i30.AutoCompleteModule, typeof i30.ListBoxModule, typeof i31.PivotViewAllModule, typeof i31.PivotFieldListAllModule, typeof i32.ChartAllModule, typeof i32.AccumulationChartAllModule, typeof i32.RangeNavigatorAllModule, typeof i32.AccumulationChartModule, typeof i33.DashboardLayoutModule, typeof i34.CarouselAllModule, typeof i34.ToolbarModule, typeof i34.TabModule, typeof i35.PdfViewerModule, typeof i36.DropDownButtonModule, typeof i36.SplitButtonModule, typeof i37.RichTextEditorAllModule, typeof i1.CommonGridComponent, typeof i2.FloatBoxComponent, typeof i3.RsPageListComponent, typeof i4.RsPageTabComponent, typeof i5.GridBoxComponent, typeof i6.RSHeaderComponent, typeof i7.RSFooterComponent, typeof i8.RSAsideComponent, typeof i9.MultiTabComponent, typeof i10.MainContainerComponent, typeof i11.TagInputComponent, typeof i12.RadioGroupComponent, typeof i13.CheckboxGroupComponent, typeof i14.SwitchInputComponent]>;
52
+ static ɵmod: i0.ɵɵNgModuleDeclaration<RaiseCommonLibModule, [typeof i1.CommonGridComponent, typeof i2.GridActionComponent, typeof i3.GridActionItemComponent, typeof i4.FloatBoxComponent, typeof i5.RsPageListComponent, typeof i6.RsPageTabComponent, typeof i7.GridBoxComponent, typeof i8.RSHeaderComponent, typeof i9.RSFooterComponent, typeof i10.RSAsideComponent, typeof i11.MultiTabComponent, typeof i12.MainContainerComponent, typeof i13.TagInputComponent, typeof i14.RadioGroupComponent, typeof i15.CheckboxGroupComponent, typeof i16.SwitchInputComponent, typeof i17.EncryptedInputComponent, typeof i18.NewActionNotificationComponent, typeof i19.CommonDialogComponent, typeof i20.CommonDeleteComponent, typeof i21.DrawerComponent, typeof i22.DrawerFormComponent, typeof i23.ToolbarItemComponent, typeof i24.RsCommentaryComponent, typeof i25.RSNavCardGroupComponent, typeof i26.RSToolbarComponent], [typeof i27.CommonModule, typeof i28.HttpClientModule, typeof i29.ReactiveFormsModule, typeof i29.FormsModule, typeof i30.MatSnackBarModule, typeof i31.MatMenuModule, typeof i32.MatTooltipModule, typeof i33.MatDialogModule, typeof i34.MatIconModule, typeof i35.GridModule, typeof i35.PagerModule, typeof i35.GridAllModule, typeof i36.SwitchModule, typeof i36.CheckBoxModule, typeof i36.RadioButtonModule, typeof i36.ButtonModule, typeof i37.DiagramModule, typeof i38.TooltipModule, typeof i38.DialogModule, typeof i39.DatePickerModule, typeof i39.DateRangePickerModule, typeof i39.DateTimePickerModule, typeof i40.TextBoxModule, typeof i40.ColorPickerModule, typeof i40.UploaderModule, typeof i40.NumericTextBoxModule, typeof i41.DropDownListModule, typeof i41.DropDownTreeModule, typeof i41.MultiSelectAllModule, typeof i41.AutoCompleteModule, typeof i41.ListBoxModule, typeof i42.PivotViewAllModule, typeof i42.PivotFieldListAllModule, typeof i43.ChartAllModule, typeof i43.AccumulationChartAllModule, typeof i43.RangeNavigatorAllModule, typeof i43.AccumulationChartModule, typeof i44.DashboardLayoutModule, typeof i45.CarouselAllModule, typeof i45.ToolbarModule, typeof i45.TabModule, typeof i46.PdfViewerModule, typeof i47.DropDownButtonModule, typeof i47.SplitButtonModule, typeof i48.RichTextEditorAllModule], [typeof i27.CommonModule, typeof i28.HttpClientModule, typeof i29.ReactiveFormsModule, typeof i29.FormsModule, typeof i30.MatSnackBarModule, typeof i31.MatMenuModule, typeof i32.MatTooltipModule, typeof i33.MatDialogModule, typeof i34.MatIconModule, typeof i35.GridModule, typeof i35.PagerModule, typeof i35.GridAllModule, typeof i36.SwitchModule, typeof i36.CheckBoxModule, typeof i36.RadioButtonModule, typeof i36.ButtonModule, typeof i37.DiagramModule, typeof i38.TooltipModule, typeof i38.DialogModule, typeof i39.DatePickerModule, typeof i39.DateRangePickerModule, typeof i39.DateTimePickerModule, typeof i40.TextBoxModule, typeof i40.ColorPickerModule, typeof i40.UploaderModule, typeof i40.NumericTextBoxModule, typeof i41.DropDownListModule, typeof i41.DropDownTreeModule, typeof i41.MultiSelectAllModule, typeof i41.AutoCompleteModule, typeof i41.ListBoxModule, typeof i42.PivotViewAllModule, typeof i42.PivotFieldListAllModule, typeof i43.ChartAllModule, typeof i43.AccumulationChartAllModule, typeof i43.RangeNavigatorAllModule, typeof i43.AccumulationChartModule, typeof i44.DashboardLayoutModule, typeof i45.CarouselAllModule, typeof i45.ToolbarModule, typeof i45.TabModule, typeof i46.PdfViewerModule, typeof i47.DropDownButtonModule, typeof i47.SplitButtonModule, typeof i48.RichTextEditorAllModule, typeof i1.CommonGridComponent, typeof i2.GridActionComponent, typeof i3.GridActionItemComponent, typeof i4.FloatBoxComponent, typeof i5.RsPageListComponent, typeof i6.RsPageTabComponent, typeof i7.GridBoxComponent, typeof i8.RSHeaderComponent, typeof i9.RSFooterComponent, typeof i10.RSAsideComponent, typeof i11.MultiTabComponent, typeof i12.MainContainerComponent, typeof i13.TagInputComponent, typeof i14.RadioGroupComponent, typeof i15.CheckboxGroupComponent, typeof i16.SwitchInputComponent, typeof i17.EncryptedInputComponent, typeof i21.DrawerComponent, typeof i22.DrawerFormComponent, typeof i23.ToolbarItemComponent, typeof i24.RsCommentaryComponent, typeof i25.RSNavCardGroupComponent, typeof i26.RSToolbarComponent, typeof i18.NewActionNotificationComponent, typeof i19.CommonDialogComponent, typeof i20.CommonDeleteComponent]>;
42
53
  static ɵinj: i0.ɵɵInjectorDeclaration<RaiseCommonLibModule>;
43
54
  }
@@ -1,9 +1,18 @@
1
+ import { Observable, Subject } from "rxjs";
1
2
  import * as i0 from "@angular/core";
2
3
  export declare class CommonFunctionService {
3
4
  constructor();
5
+ private closeTabSubject;
6
+ closeTab$: Observable<number>;
7
+ pub: Subject<any>;
8
+ pub$: Observable<any>;
4
9
  testMethod(): string;
5
10
  setMiddleEllipsis(text: any, maxWidth?: number, fontSize?: number): any;
6
11
  getPureUrl(url: string): string;
12
+ closeTab(tabIndex?: number): void;
13
+ publish(event: any): void;
14
+ rtn(str: any): string;
15
+ Guid(): string;
7
16
  static ɵfac: i0.ɵɵFactoryDeclaration<CommonFunctionService, never>;
8
17
  static ɵprov: i0.ɵɵInjectableDeclaration<CommonFunctionService>;
9
18
  }
@@ -0,0 +1,46 @@
1
+ import { OnDestroy } from "@angular/core";
2
+ import { Router } from "@angular/router";
3
+ import { DrawerComponent } from "../layout/drawer/index.component";
4
+ import * as i0 from "@angular/core";
5
+ export type DrawerConfig = {
6
+ title: string;
7
+ subTitle?: string;
8
+ mode?: "outer" | "inner";
9
+ top?: number;
10
+ };
11
+ export declare const DefaultDrawerConfig: Readonly<DrawerConfig>;
12
+ export type DrawerShowInstance<T> = {
13
+ instance: T;
14
+ result: Promise<{
15
+ type: "complete" | "hide";
16
+ data?: any;
17
+ }>;
18
+ };
19
+ export type DrawerChangeEvent = {
20
+ type: "show" | "hide" | "complete";
21
+ cancel: () => void;
22
+ detail: Record<string, any>;
23
+ };
24
+ export type DrawerChangeListener = (event: DrawerChangeEvent) => void;
25
+ export declare class DrawerService implements OnDestroy {
26
+ private router;
27
+ private uniqueDrawerComponent;
28
+ private resultPromiseResolveMap;
29
+ private openedSubscription;
30
+ private routerSubscription;
31
+ private ListenChangeCbs;
32
+ constructor(router: Router);
33
+ get cacheKey(): string;
34
+ ngOnDestroy(): void;
35
+ listenRouterChange(): void;
36
+ setDrawer(component: DrawerComponent): void;
37
+ removeDrawer(): void;
38
+ show<T>(component: new (...args: any[]) => T, config: DrawerConfig, data?: {}): DrawerShowInstance<T>;
39
+ hide(): void;
40
+ complete(data?: any): void;
41
+ deleteCache(cacheKey: string): void;
42
+ onChange(callback: DrawerChangeListener): () => void;
43
+ private checkChange;
44
+ static ɵfac: i0.ɵɵFactoryDeclaration<DrawerService, never>;
45
+ static ɵprov: i0.ɵɵInjectableDeclaration<DrawerService>;
46
+ }
@@ -1,4 +1,5 @@
1
1
  import { RouteReuseStrategy, ActivatedRouteSnapshot, DetachedRouteHandle } from "@angular/router";
2
+ import * as i0 from "@angular/core";
2
3
  export declare class KeepAliveService implements RouteReuseStrategy {
3
4
  setExcludeRoutes(routes: string[]): void;
4
5
  shouldDetach(route: ActivatedRouteSnapshot): boolean;
@@ -8,4 +9,7 @@ export declare class KeepAliveService implements RouteReuseStrategy {
8
9
  shouldReuseRoute(future: ActivatedRouteSnapshot, curr: ActivatedRouteSnapshot): boolean;
9
10
  getRoutePath(route: any): string;
10
11
  clearCache(path: string): void;
12
+ clearAllCache(): void;
13
+ static ɵfac: i0.ɵɵFactoryDeclaration<KeepAliveService, never>;
14
+ static ɵprov: i0.ɵɵInjectableDeclaration<KeepAliveService>;
11
15
  }
@@ -0,0 +1,12 @@
1
+ import { HttpClient } from "@angular/common/http";
2
+ import * as i0 from "@angular/core";
3
+ export declare class TranslationService {
4
+ private http;
5
+ constructor(http: HttpClient);
6
+ getTranslation(selectLang?: string): Promise<unknown>;
7
+ convertLangValue(code: any): number;
8
+ convertLangCode(value: any): string;
9
+ updateSyncfusionLanguage(): void;
10
+ static ɵfac: i0.ɵɵFactoryDeclaration<TranslationService, never>;
11
+ static ɵprov: i0.ɵɵInjectableDeclaration<TranslationService>;
12
+ }
@@ -0,0 +1 @@
1
+ export declare function Debounce(delay?: number): (target: any, propertyKey: string, descriptor: PropertyDescriptor) => PropertyDescriptor;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "raise-common-lib-new",
3
- "version": "0.0.20",
3
+ "version": "0.0.22",
4
4
  "peerDependencies": {
5
5
  "@angular/common": "^16.0.0",
6
6
  "@angular/core": "^16.0.0"
package/public-api.d.ts CHANGED
@@ -1,19 +1,34 @@
1
- export * from './lib/common-grid/index.component';
2
- export * from './lib/float-box/index.component';
3
- export * from './lib/layout/page-list/index.component';
4
- export * from './lib/layout/page-tab/index.component';
5
- export * from './lib/layout/grid-box/index.component';
6
- export * from './lib/layout/multi-tab/index.component';
7
- export * from './lib/layout/main-container/index.component';
8
- export * from './lib/layout/rs-header/index.component';
9
- export * from './lib/layout/rs-footer/index.component';
10
- export * from './lib/layout/rs-aside/index.component';
11
- export * from './lib/form/tag-input/index.component';
12
- export * from './lib/form/radio-group/index.component';
13
- export * from './lib/form/checkbox-group/index.component';
14
- export * from './lib/form/switch-input/index.component';
15
- export * from './lib/service/common-function.service';
16
- export * from './lib/service/icon-loader.service';
17
- export * from './lib/service/dialog.service';
18
- export * from './lib/service/keep-alive.service';
19
- export * from './lib/raise-common-lib.module';
1
+ export * from "./lib/common-grid/index.component";
2
+ export * from "./lib/common-grid/grid-action/grid-action.component";
3
+ export * from "./lib/common-grid/grid-action/grid-action-item/grid-action-item.component";
4
+ export * from "./lib/float-box/index.component";
5
+ export * from "./lib/commentary/index.component";
6
+ export * from "./lib/layout/page-list/index.component";
7
+ export * from "./lib/layout/page-tab/index.component";
8
+ export * from "./lib/layout/grid-box/index.component";
9
+ export * from "./lib/layout/multi-tab/index.component";
10
+ export * from "./lib/layout/drawer/index.component";
11
+ export * from "./lib/layout/nav-card-group/index.component";
12
+ export * from "./lib/layout/toolbar/index.component";
13
+ export * from "./lib/layout/main-container/index.component";
14
+ export * from "./lib/layout/rs-header/index.component";
15
+ export * from "./lib/layout/rs-footer/index.component";
16
+ export * from "./lib/layout/rs-aside/index.component";
17
+ export * from "./lib/form/tag-input/index.component";
18
+ export * from "./lib/form/radio-group/index.component";
19
+ export * from "./lib/form/checkbox-group/index.component";
20
+ export * from "./lib/form/switch-input/index.component";
21
+ export * from "./lib/form/encrypted-input/index.component";
22
+ export * from "./lib/form/drawer-form/drawer-form.component";
23
+ export * from "./lib/form/drawer-form/constants";
24
+ export * from "./lib/form/toolbar-item/index.component";
25
+ export * from "./lib/dialog/common-delete-dialog/index.component";
26
+ export * from "./lib/dialog/common-dialog/index.component";
27
+ export * from "./lib/dialog/new-action-notification/new-action-notification.component";
28
+ export * from "./lib/service/common-function.service";
29
+ export * from "./lib/service/icon-loader.service";
30
+ export * from "./lib/service/dialog.service";
31
+ export * from "./lib/service/keep-alive.service";
32
+ export * from "./lib/service/drawer.service";
33
+ export * from "./lib/service/translation.service";
34
+ export * from "./lib/raise-common-lib.module";
@@ -0,0 +1,4 @@
1
+ <svg width="16" height="16" viewBox="0 0 16 16" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <path d="M4.5 11.5L11.5 4.5" stroke="#6C7C90" stroke-linecap="round"/>
3
+ <path d="M11.5 11.5L4.5 4.5" stroke="#6C7C90" stroke-linecap="round"/>
4
+ </svg>
@@ -0,0 +1,5 @@
1
+ <svg width="16" height="16" viewBox="0 0 16 16" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <g id="check, sm">
3
+ <path id="Vector 10" d="M3 8L5.96745 12L12.7778 4" stroke="#6C7C90" stroke-linecap="round"/>
4
+ </g>
5
+ </svg>
@@ -0,0 +1,3 @@
1
+ <svg width="16" height="16" viewBox="0 0 16 16" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <path d="M12.2426 6.24264L8 9.5L3.75736 6.24264" stroke="#6B6B6B"/>
3
+ </svg>
@@ -0,0 +1,4 @@
1
+ <svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <path d="M12 18L7.54986 12L12 6" stroke="#6C7C90" stroke-linecap="round"/>
3
+ <path d="M17.427 12.5C17.7031 12.5 17.927 12.2761 17.927 12C17.927 11.7239 17.7031 11.5 17.427 11.5L17.427 12.5ZM7.39893 12.5L17.427 12.5L17.427 11.5L7.39893 11.5L7.39893 12.5Z" fill="#6C7C90"/>
4
+ </svg>
@@ -0,0 +1,4 @@
1
+ <svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <line y1="-0.5" x2="19.799" y2="-0.5" transform="matrix(0.707107 0.707107 0.707107 -0.707107 6 5)" stroke="#6C7C90"/>
3
+ <path fill-rule="evenodd" clip-rule="evenodd" d="M8.68802 6.71316C9.71309 6.2768 10.8305 6 12 6C16.9706 6 21 11 21 12C21 12.5554 19.7572 14.3445 17.8005 15.8257L17.0862 15.1113C17.3051 14.9494 17.5163 14.7819 17.7189 14.6109C18.4773 13.9706 19.0835 13.3069 19.4917 12.7607C19.6966 12.4866 19.8406 12.2567 19.9284 12.0865C19.946 12.0524 19.9598 12.0237 19.9705 12C19.9598 11.9763 19.946 11.9476 19.9284 11.9135C19.8406 11.7433 19.6966 11.5134 19.4917 11.2393C19.0835 10.6931 18.4773 10.0294 17.7189 9.38911C16.1847 8.09389 14.1569 7 12 7C11.123 7 10.2673 7.18086 9.45744 7.48258L8.68802 6.71316ZM11.1093 9.13444C11.3907 9.04706 11.6899 9 12 9C13.6569 9 15 10.3431 15 12C15 12.3101 14.9529 12.6093 14.8656 12.8907L13.9998 12.025C13.9999 12.0167 14 12.0083 14 12C14 10.8954 13.1046 10 12 10C11.9917 10 11.9833 10.0001 11.975 10.0002L11.1093 9.13444ZM10.0206 12.2884L9.07272 11.3405C9.02512 11.5527 9 11.7734 9 12C9 13.6569 10.3431 15 12 15C12.2266 15 12.4473 14.9749 12.6595 14.9273L11.7116 13.9794C10.8378 13.8532 10.1468 13.1622 10.0206 12.2884ZM14.3268 16.5946C13.5813 16.8497 12.7995 17 12 17C9.84311 17 7.8153 15.9061 6.28113 14.6109C5.52268 13.9706 4.91649 13.3069 4.50828 12.7607C4.30341 12.4866 4.15937 12.2567 4.07158 12.0865C4.05401 12.0524 4.04023 12.0237 4.02947 12C4.04023 11.9763 4.05401 11.9476 4.07158 11.9135C4.15937 11.7433 4.30341 11.5134 4.50828 11.2393C4.91649 10.6931 5.52268 10.0294 6.28113 9.38911C6.43168 9.26201 6.58698 9.13685 6.74669 9.01447L6.0339 8.30169C4.17299 9.7565 3 11.4605 3 12C3 13 7.02944 18 12 18C13.0911 18 14.1369 17.7591 15.1046 17.3724L14.3268 16.5946Z" fill="#6C7C90"/>
4
+ </svg>
@@ -0,0 +1,4 @@
1
+ <svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <path d="M20.5 12C20.5 11.9997 20.4999 12.0002 20.4997 12.0013C20.4972 12.014 20.4781 12.1116 20.3728 12.3157C20.2689 12.517 20.1085 12.7706 19.8922 13.0601C19.4604 13.6378 18.8278 14.329 18.0414 14.9929C16.46 16.3281 14.3211 17.5 12 17.5C9.67891 17.5 7.54001 16.3281 5.95858 14.9929C5.17219 14.329 4.53959 13.6378 4.10777 13.0601C3.89148 12.7706 3.73105 12.517 3.62721 12.3157C3.52192 12.1116 3.50279 12.014 3.50032 12.0013C3.50009 12.0002 3.5 11.9997 3.5 12C3.5 12.0003 3.50009 11.9998 3.50032 11.9987C3.50279 11.986 3.52192 11.8884 3.62721 11.6843C3.73105 11.483 3.89148 11.2294 4.10777 10.9399C4.53959 10.3622 5.17219 9.67096 5.95858 9.00705C7.54001 7.67195 9.67891 6.5 12 6.5C14.3211 6.5 16.46 7.67195 18.0414 9.00705C18.8278 9.67096 19.4604 10.3622 19.8922 10.9399C20.1085 11.2294 20.2689 11.483 20.3728 11.6843C20.4781 11.8884 20.4972 11.986 20.4997 11.9987C20.4999 11.9998 20.5 12.0003 20.5 12Z" stroke="#6C7C90"/>
3
+ <circle cx="12" cy="12" r="2.5" stroke="#6C7C90"/>
4
+ </svg>
@@ -0,0 +1,6 @@
1
+ <svg width="16" height="16" viewBox="0 0 16 16" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <rect x="2.5" y="2.5" width="8" height="8" rx="1.5" stroke="#6C7C90"/>
3
+ <rect x="5.5" y="5.5" width="8" height="8" rx="1.5" fill="white" stroke="#6C7C90"/>
4
+ <path d="M7.5 9.5H11.5" stroke="#6C7C90" stroke-linecap="round"/>
5
+ <path d="M9.5 11.5L9.5 7.5" stroke="#6C7C90" stroke-linecap="round"/>
6
+ </svg>
@@ -0,0 +1,14 @@
1
+ <svg width="16" height="16" viewBox="0 0 16 16" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <g clip-path="url(#clip0_9705_16204)">
3
+ <line x1="2" y1="4.5" x2="14" y2="4.5" stroke="#6C7C90" stroke-linecap="round"/>
4
+ <path d="M3.5 4V12C3.5 13.1046 4.39543 14 5.5 14H10.5C11.6046 14 12.5 13.1046 12.5 12V4" stroke="#6C7C90"/>
5
+ <line x1="6.5" y1="2.5" x2="9.5" y2="2.5" stroke="#6C7C90" stroke-linecap="round"/>
6
+ <path d="M6.5 7.5L6.5 10.5" stroke="#6C7C90" stroke-linecap="round"/>
7
+ <path d="M9.5 7.5L9.5 10.5" stroke="#6C7C90" stroke-linecap="round"/>
8
+ </g>
9
+ <defs>
10
+ <clipPath id="clip0_9705_16204">
11
+ <rect width="16" height="16" fill="white"/>
12
+ </clipPath>
13
+ </defs>
14
+ </svg>
@@ -0,0 +1,7 @@
1
+ <svg width="16" height="16" viewBox="0 0 16 16" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <path d="M6.91387 13.5H5.44643H4.5C3.39543 13.5 2.5 12.6046 2.5 11.5V3.5C2.5 2.39543 3.39543 1.5 4.5 1.5H11.5C12.6046 1.5 13.5 2.39543 13.5 3.5V7.5" stroke="#6C7C90" stroke-linecap="round"/>
3
+ <path d="M5 7H8" stroke="#6C7C90" stroke-linecap="round"/>
4
+ <path d="M5 5H9" stroke="#6C7C90" stroke-linecap="round"/>
5
+ <path d="M14.9642 11.9359C14.9769 11.9637 14.9854 11.9848 14.9911 12C14.9854 12.0152 14.9769 12.0363 14.9642 12.0641C14.9246 12.1505 14.8601 12.2661 14.7692 12.403C14.5878 12.6761 14.3191 13.0067 13.9841 13.325C13.3019 13.9729 12.4199 14.5 11.5 14.5C10.5801 14.5 9.69806 13.9729 9.0159 13.325C8.68087 13.0067 8.41225 12.6761 8.23081 12.403C8.13985 12.2661 8.07542 12.1505 8.03577 12.0641C8.02305 12.0363 8.01455 12.0152 8.00893 12C8.01455 11.9848 8.02305 11.9637 8.03577 11.9359C8.07542 11.8495 8.13985 11.7339 8.23081 11.597C8.41225 11.3239 8.68087 10.9933 9.0159 10.675C9.69806 10.0271 10.5801 9.5 11.5 9.5C12.4199 9.5 13.3019 10.0271 13.9841 10.675C14.3191 10.9933 14.5878 11.3239 14.7692 11.597C14.8601 11.7339 14.9246 11.8495 14.9642 11.9359Z" stroke="#6C7C90"/>
6
+ <circle cx="11.5" cy="12" r="0.5" stroke="#6C7C90"/>
7
+ </svg>
@@ -0,0 +1,7 @@
1
+ <svg width="16" height="16" viewBox="0 0 16 16" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <path d="M11.75 8.43198L8 11.614L4.25 8.43198" stroke="#6C7C90" stroke-linecap="round" />
3
+ <path
4
+ d="M8.5 3C8.5 2.72386 8.27614 2.5 8 2.5C7.72386 2.5 7.5 2.72386 7.5 3L8.5 3ZM7.5 3L7.5 11.25L8.5 11.25L8.5 3L7.5 3Z"
5
+ fill="#6C7C90" />
6
+ <path d="M2 14H14" stroke="#6C7C90" stroke-linecap="round" />
7
+ </svg>
@@ -0,0 +1,4 @@
1
+ <svg width="16" height="16" viewBox="0 0 16 16" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <path fill-rule="evenodd" clip-rule="evenodd" d="M8.88478 4H3.9043C2.79973 4 1.9043 4.89543 1.9043 6V12C1.9043 13.1046 2.79973 14 3.9043 14H9.9043C11.0089 14 11.9043 13.1046 11.9043 12V9.53764L10.9043 10.425V12C10.9043 12.5523 10.4566 13 9.9043 13H3.9043C3.35201 13 2.9043 12.5523 2.9043 12V6C2.9043 5.44772 3.35201 5 3.9043 5H7.75785L8.88478 4Z" fill="#6C7C90"/>
3
+ <path d="M12.4755 3.22159C12.866 2.83106 13.4992 2.83106 13.8897 3.22159C14.2802 3.61211 14.2802 4.24528 13.8897 4.6358L8.27291 10.2526L6.52181 10.5895L6.85869 8.8384L12.4755 3.22159Z" stroke="#6C7C90"/>
4
+ </svg>
@@ -0,0 +1,12 @@
1
+ <svg width="16" height="16" viewBox="0 0 16 16" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <path
3
+ d="M10 11L10 12C10 13.1046 9.10457 14 8 14L7.75 14L5.5 14L3 14C1.89543 14 1 13.1046 1 12L1 4C1 2.89543 1.89543 2 3 2L7.58579 2C7.851 2 8.10536 2.10536 8.29289 2.29289L9.70711 3.70711C9.89464 3.89464 10 4.149 10 4.41421L10 8"
4
+ stroke="#6C7C90" />
5
+ <path d="M11.7816 13.0083L14.7249 10.0042L11.7816 6.99998" stroke="#6C7C90" stroke-linecap="round" />
6
+ <line x1="0.5" y1="-0.5" x2="9.5" y2="-0.5" transform="matrix(-1 0 0 1 15 10.5414)" stroke="#6C7C90"
7
+ stroke-linecap="round" />
8
+ <line x1="4.5" y1="5.5" x2="7.5" y2="5.5" stroke="#6C7C90" />
9
+ <line x1="5.5" y1="7.5" x2="8.5" y2="7.5" stroke="#6C7C90" />
10
+ <line x1="2.5" y1="5.5" x2="3.5" y2="5.5" stroke="#6C7C90" />
11
+ <line x1="3.5" y1="7.5" x2="4.5" y2="7.5" stroke="#6C7C90" />
12
+ </svg>
@@ -0,0 +1,8 @@
1
+ <svg width="16" height="16" viewBox="0 0 16 16" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <mask id="path-1-inside-1_1401_11010" fill="white">
3
+ <path fill-rule="evenodd" clip-rule="evenodd" d="M1.01548 3.74994C1.13853 2.76339 1.98012 2 3 2H5.25C5.87951 2 6.47229 2.29639 6.85 2.8L7.56245 3.74994H13C14.02 3.74994 14.8616 4.51344 14.9845 5.50009H15V5.74994V6.37494V12.2501C15 13.3547 14.1046 14.2501 13 14.2501H3C1.89543 14.2501 1 13.3547 1 12.2501V6.37494V5.50009V5.5V4V3.74994H1.01548Z"/>
4
+ </mask>
5
+ <path d="M1.01548 3.74994V4.74994H1.8985L2.00779 3.87371L1.01548 3.74994ZM6.85 2.8L7.65 2.2L6.85 2.8ZM7.56245 3.74994L6.76245 4.34994L7.06245 4.74994H7.56245V3.74994ZM14.9845 5.50009L13.9922 5.62375L14.1014 6.50009H14.9845V5.50009ZM15 5.50009H16V4.50009H15V5.50009ZM1 3.74994V2.74994H0V3.74994H1ZM3 1C1.46942 1 0.207877 2.14532 0.0231705 3.62617L2.00779 3.87371C2.06919 3.38146 2.49081 3 3 3V1ZM5.25 1H3V3H5.25V1ZM7.65 2.2C7.08344 1.44458 6.19427 1 5.25 1V3C5.56476 3 5.86115 3.14819 6.05 3.4L7.65 2.2ZM8.36245 3.14994L7.65 2.2L6.05 3.4L6.76245 4.34994L8.36245 3.14994ZM13 2.74994H7.56245V4.74994H13V2.74994ZM15.9769 5.37642C15.7923 3.89542 14.5307 2.74994 13 2.74994V4.74994C13.5092 4.74994 13.9309 5.13145 13.9922 5.62375L15.9769 5.37642ZM14.9845 6.50009H15V4.50009H14.9845V6.50009ZM14 5.50009V5.74994H16V5.50009H14ZM14 5.74994V6.37494H16V5.74994H14ZM14 6.37494V12.2501H16V6.37494H14ZM14 12.2501C14 12.8024 13.5523 13.2501 13 13.2501V15.2501C14.6569 15.2501 16 13.9069 16 12.2501H14ZM13 13.2501H3V15.2501H13V13.2501ZM3 13.2501C2.44772 13.2501 2 12.8024 2 12.2501H0C0 13.9069 1.34315 15.2501 3 15.2501V13.2501ZM2 12.2501V6.37494H0V12.2501H2ZM2 6.37494V5.50009H0V6.37494H2ZM0 5.5V5.50009H2V5.5H0ZM0 4V5.5H2V4H0ZM0 3.74994V4H2V3.74994H0ZM1.01548 2.74994H1V4.74994H1.01548V2.74994Z" fill="#6B6B6B" mask="url(#path-1-inside-1_1401_11010)"/>
6
+ <path d="M7.91283 11.1178L10.0123 8.97485L7.91283 6.83191" stroke="#6B6B6B" stroke-linecap="round"/>
7
+ <line x1="0.5" y1="-0.5" x2="5.5" y2="-0.5" transform="matrix(-1 8.42937e-08 8.42937e-08 1 9.97485 9.47485)" stroke="#6B6B6B" stroke-linecap="round"/>
8
+ </svg>
@@ -0,0 +1,10 @@
1
+ <svg width="16" height="16" viewBox="0 0 16 16" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <mask id="path-1-inside-1_9752_963" fill="white">
3
+ <path fill-rule="evenodd" clip-rule="evenodd" d="M3.66195 6.12714C3.66195 3.57164 5.73359 1.5 8.28909 1.5C10.8446 1.5 12.9162 3.57164 12.9162 6.12714V8.10408V8.55356L14.3504 10.2995C14.8864 10.9521 14.4222 11.9342 13.5776 11.9342H3.0019C2.15737 11.9342 1.69311 10.9521 2.22917 10.2995L3.66195 8.55522V8.10408V6.12714Z"/>
4
+ </mask>
5
+ <path d="M12.9162 8.55356H11.9162V8.91162L12.1435 9.1883L12.9162 8.55356ZM14.3504 10.2995L13.5776 10.9342V10.9342L14.3504 10.2995ZM2.22917 10.2995L3.0019 10.9342L3.0019 10.9342L2.22917 10.2995ZM3.66195 8.55522L4.43468 9.18996L4.66195 8.91327V8.55522H3.66195ZM8.28909 0.5C5.1813 0.5 2.66195 3.01936 2.66195 6.12714H4.66195C4.66195 4.12392 6.28587 2.5 8.28909 2.5V0.5ZM13.9162 6.12714C13.9162 3.01935 11.3969 0.5 8.28909 0.5V2.5C10.2923 2.5 11.9162 4.12392 11.9162 6.12714H13.9162ZM13.9162 8.10408V6.12714H11.9162V8.10408H13.9162ZM13.9162 8.55356V8.10408H11.9162V8.55356H13.9162ZM12.1435 9.1883L13.5776 10.9342L15.1231 9.66473L13.6889 7.91882L12.1435 9.1883ZM13.5776 10.9342V10.9342V12.9342C15.2667 12.9342 16.1952 10.9699 15.1231 9.66473L13.5776 10.9342ZM13.5776 10.9342H3.0019V12.9342H13.5776V10.9342ZM3.0019 10.9342L3.0019 10.9342L1.45645 9.66473C0.384328 10.9699 1.31284 12.9342 3.0019 12.9342V10.9342ZM3.0019 10.9342L4.43468 9.18996L2.88922 7.92048L1.45645 9.66473L3.0019 10.9342ZM2.66195 8.10408V8.55522H4.66195V8.10408H2.66195ZM2.66195 6.12714V8.10408H4.66195V6.12714H2.66195Z" fill="#6C7C90" mask="url(#path-1-inside-1_9752_963)"/>
6
+ <mask id="path-3-inside-2_9752_963" fill="white">
7
+ <path fill-rule="evenodd" clip-rule="evenodd" d="M6.00098 12.7105C6.00103 13.915 6.97752 14.8915 8.18207 14.8915C9.38662 14.8915 10.3631 13.915 10.3632 12.7105H9.36316C9.36311 13.3627 8.83434 13.8915 8.18207 13.8915C7.5298 13.8915 7.00103 13.3627 7.00098 12.7105H6.00098Z"/>
8
+ </mask>
9
+ <path d="M6.00098 12.7105V11.7105H5.00093L5.00098 12.7105L6.00098 12.7105ZM10.3632 12.7105L11.3632 12.7105L11.3632 11.7105H10.3632V12.7105ZM9.36316 12.7105V11.7105H8.36324L8.36316 12.7104L9.36316 12.7105ZM7.00098 12.7105L8.00098 12.7104L8.0009 11.7105H7.00098V12.7105ZM5.00098 12.7105C5.00105 14.4673 6.42525 15.8915 8.18207 15.8915V13.8915C7.52979 13.8915 7.001 13.3627 7.00098 12.7104L5.00098 12.7105ZM8.18207 15.8915C9.93889 15.8915 11.3631 14.4673 11.3632 12.7105L9.36316 12.7104C9.36314 13.3627 8.83435 13.8915 8.18207 13.8915V15.8915ZM10.3632 11.7105H9.36316V13.7105H10.3632V11.7105ZM8.18207 14.8915C9.3866 14.8915 10.3631 13.915 10.3632 12.7105L8.36316 12.7104C8.36316 12.8104 8.28208 12.8915 8.18207 12.8915V14.8915ZM6.00098 12.7105C6.00107 13.915 6.97754 14.8915 8.18207 14.8915V12.8915C8.08206 12.8915 8.00098 12.8104 8.00098 12.7104L6.00098 12.7105ZM7.00098 11.7105H6.00098V13.7105H7.00098V11.7105Z" fill="#6C7C90" mask="url(#path-3-inside-2_9752_963)"/>
10
+ </svg>
@@ -0,0 +1,5 @@
1
+ <svg width="16" height="16" viewBox="0 0 16 16" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <path d="M10.5 14.5L5.5 14.5C4.11929 14.5 3 13.3807 3 12L3 4C3 2.61929 4.11929 1.5 5.5 1.5L9.01903 1.5C9.72873 1.5 10.405 1.80164 10.8791 2.32969L12.3601 3.97895C12.7721 4.43776 13 5.03263 13 5.64927L13 12C13 13.3807 11.8807 14.5 10.5 14.5Z" stroke="#6C7C90"/>
3
+ <path d="M8.14733 11.118L10.2468 8.9751L8.14733 6.83216" stroke="#6C7C90" stroke-linecap="round"/>
4
+ <line x1="0.5" y1="-0.5" x2="4.5" y2="-0.5" transform="matrix(-1 8.42937e-08 8.42937e-08 1 10.209 9.4751)" stroke="#6C7C90" stroke-linecap="round"/>
5
+ </svg>
@@ -0,0 +1,13 @@
1
+ <svg width="16" height="16" viewBox="0 0 18 18" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <path d="M0 0h18v18H0z" />
3
+ <g clip-path="url(#h8jgjrhila)">
4
+ <path
5
+ d="M7.833 15.417c0 .322-.26.583-.583.583H4.917A2.92 2.92 0 0 1 2 13.083V4.917A2.92 2.92 0 0 1 4.917 2h4.666A2.92 2.92 0 0 1 12.5 4.917v1.166a.583.583 0 1 1-1.167 0V4.917c0-.965-.785-1.75-1.75-1.75H4.917c-.965 0-1.75.785-1.75 1.75v8.166c0 .965.785 1.75 1.75 1.75H7.25c.323 0 .583.261.583.584zM10.167 5.5a.583.583 0 0 0-.584-.583H4.917a.583.583 0 1 0 0 1.166h4.666c.323 0 .584-.26.584-.583zM7.833 8.417a.583.583 0 0 0-.583-.584H4.917a.583.583 0 1 0 0 1.167H7.25c.323 0 .583-.26.583-.583zM4.917 10.75a.583.583 0 1 0 0 1.167h1.166a.583.583 0 1 0 0-1.167H4.917zM16 11.917A4.089 4.089 0 0 1 11.917 16a4.089 4.089 0 0 1-4.084-4.083 4.089 4.089 0 0 1 4.084-4.084A4.089 4.089 0 0 1 16 11.917zm-1.167 0A2.92 2.92 0 0 0 11.917 9 2.92 2.92 0 0 0 9 11.917a2.92 2.92 0 0 0 2.917 2.916 2.92 2.92 0 0 0 2.916-2.916zm-1.862-.724-1.296 1.245a.218.218 0 0 1-.305 0l-.66-.646a.583.583 0 1 0-.817.833l.661.647c.268.262.62.393.97.393s.7-.13.964-.39l1.291-1.24a.584.584 0 0 0-.808-.842z"
6
+ fill="#6C7C90" />
7
+ </g>
8
+ <defs>
9
+ <clipPath id="h8jgjrhila">
10
+ <path fill="#fff" transform="translate(2 2)" d="M0 0h14v14H0z" />
11
+ </clipPath>
12
+ </defs>
13
+ </svg>
@@ -0,0 +1,3 @@
1
+ <svg width="16" height="16" viewBox="0 0 16 16" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <path d="M6.53553 4.46447L9.25 8L6.53553 11.5355" stroke="#929DAB" stroke-linecap="round"/>
3
+ </svg>
@@ -0,0 +1,3 @@
1
+ <svg width="16" height="16" viewBox="0 0 16 16" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <path d="M9.53576 4.46447L6.82129 8L9.53576 11.5355" stroke="#6C7C90" stroke-linecap="round" />
3
+ </svg>
@@ -0,0 +1,4 @@
1
+ <svg width="16" height="16" viewBox="0 0 16 16" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <path d="M11.2427 12.4853L7.98535 8.24268L11.2427 4.00003" stroke="#6C7C90" stroke-linecap="round" />
3
+ <path d="M8.24271 12.4853L4.98535 8.24268L8.24271 4.00003" stroke="#6C7C90" stroke-linecap="round" />
4
+ </svg>
@@ -0,0 +1,5 @@
1
+ <svg width="16" height="16" viewBox="0 0 16 16" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <circle cx="3.76172" cy="8" r="1" transform="rotate(-90 3.76172 8)" fill="#44566C"/>
3
+ <circle cx="8.26172" cy="8" r="1" transform="rotate(-90 8.26172 8)" fill="#44566C"/>
4
+ <circle cx="12.7617" cy="8" r="1" transform="rotate(-90 12.7617 8)" fill="#44566C"/>
5
+ </svg>
@@ -0,0 +1,5 @@
1
+ <svg width="16" height="16" viewBox="0 0 16 16" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <circle cx="8" cy="4" r="1" fill="#929DAB"/>
3
+ <circle cx="8" cy="8" r="1" fill="#929DAB"/>
4
+ <circle cx="8" cy="12" r="1" fill="#929DAB"/>
5
+ </svg>
@@ -0,0 +1,6 @@
1
+ <svg width="6" height="10" viewBox="0 0 6 10" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <g id="Group 1000004256">
3
+ <path id="Rectangle 860" d="M5.5 6.05061L3 8.4999L0.5 6.05061" stroke="#6C7C90" stroke-linecap="round"/>
4
+ <line id="Line 163" x1="3" y1="7.90723" x2="3" y2="0.585474" stroke="#6C7C90" stroke-linecap="round"/>
5
+ </g>
6
+ </svg>
@@ -0,0 +1,4 @@
1
+ <svg width="16" height="16" viewBox="0 0 16 16" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <line x1="3.5" y1="8" x2="12.5" y2="8" stroke="#6C7C90" stroke-linecap="round"/>
3
+ <path d="M8 12.5L8 3.5" stroke="#6C7C90" stroke-linecap="round"/>
4
+ </svg>
@@ -0,0 +1,14 @@
1
+ <svg width="16" height="16" viewBox="0 0 16 16" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <g clip-path="url(#clip0_12438_9113)">
3
+ <line x1="2" y1="4.5" x2="14" y2="4.5" stroke="#6C7C90" stroke-linecap="round"/>
4
+ <path d="M3.5 4V12C3.5 13.1046 4.39543 14 5.5 14H10.5C11.6046 14 12.5 13.1046 12.5 12V4" stroke="#6C7C90"/>
5
+ <line x1="6.5" y1="2.5" x2="9.5" y2="2.5" stroke="#6C7C90" stroke-linecap="round"/>
6
+ <path d="M6.5 7.5L6.5 10.5" stroke="#6C7C90" stroke-linecap="round"/>
7
+ <path d="M9.5 7.5L9.5 10.5" stroke="#6C7C90" stroke-linecap="round"/>
8
+ </g>
9
+ <defs>
10
+ <clipPath id="clip0_12438_9113">
11
+ <rect width="16" height="16" fill="white"/>
12
+ </clipPath>
13
+ </defs>
14
+ </svg>
@@ -0,0 +1,5 @@
1
+ <svg width="16" height="16" viewBox="0 0 16 16" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <path d="M11.75 7.93198L8 11.114L4.25 7.93198" stroke="#6C7C90" stroke-linecap="round"/>
3
+ <path d="M8.5 2.5C8.5 2.22386 8.27614 2 8 2C7.72386 2 7.5 2.22386 7.5 2.5L8.5 2.5ZM7.5 2.5L7.5 10.75L8.5 10.75L8.5 2.5L7.5 2.5Z" fill="#6C7C90"/>
4
+ <path d="M3 13.5H13" stroke="#6C7C90" stroke-linecap="round"/>
5
+ </svg>
@@ -0,0 +1,6 @@
1
+ <svg width="16" height="16" viewBox="0 0 16 16" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <rect x="2.5" y="2.5" width="8" height="8" rx="1.5" stroke="#6C7C90"/>
3
+ <rect x="5.5" y="5.5" width="8" height="8" rx="1.5" fill="white" stroke="#6C7C90"/>
4
+ <path d="M7.5 9.5H11.5" stroke="#6C7C90" stroke-linecap="round"/>
5
+ <path d="M9.5 11.5L9.5 7.5" stroke="#6C7C90" stroke-linecap="round"/>
6
+ </svg>
@@ -0,0 +1,5 @@
1
+ <svg width="16" height="16" viewBox="0 0 16 16" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <path d="M11 11L11 12C11 13.1046 10.1046 14 9 14L8.75 14L6.5 14L4 14C2.89543 14 2 13.1046 2 12L2 4C2 2.89543 2.89543 2 4 2L7.96864 2C8.26056 2 8.53791 2.12756 8.72789 2.34921L10.7593 4.71913C10.9146 4.90038 11 5.13121 11 5.36992L11 8" stroke="#6C7C90"/>
3
+ <path d="M13.0995 11.2859L15.199 9.14294L13.0995 7" stroke="#6C7C90" stroke-linecap="round"/>
4
+ <line x1="0.5" y1="-0.5" x2="7.5" y2="-0.5" transform="matrix(-1 0 0 1 15 9.68018)" stroke="#6C7C90" stroke-linecap="round"/>
5
+ </svg>
@@ -0,0 +1,5 @@
1
+ <svg width="16" height="16" viewBox="0 0 16 16" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <path d="M12 11L12 12C12 13.1046 11.1046 14 10 14L9.5 14L7 14L4 14C2.89543 14 2 13.1046 2 12L2 4C2 2.89543 2.89543 2 4 2L8.71429 2C8.98796 2 9.24968 2.11216 9.43842 2.31034L11.7241 4.71035C11.9012 4.89629 12 5.14322 12 5.4L12 8" stroke="#6C7C90"/>
3
+ <path d="M8.06214 11.2859L5.96267 9.14294L8.06214 7" stroke="#6C7C90" stroke-linecap="round"/>
4
+ <line x1="6.5" y1="9.18018" x2="14.5" y2="9.18018" stroke="#6C7C90" stroke-linecap="round"/>
5
+ </svg>
@@ -0,0 +1,14 @@
1
+ <svg width="16" height="16" viewBox="0 0 16 16" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <g clip-path="url(#clip0_12438_2348)">
3
+ <path d="M5.01261 13H4.67857H4C2.89543 13 2 12.1046 2 11V4C2 2.89543 2.89543 2 4 2H10C11.1046 2 12 2.89543 12 4V5.5" stroke="#6C7C90" stroke-linecap="round"/>
4
+ <path d="M4.72754 7.45459H6.54572" stroke="#6C7C90" stroke-linecap="round"/>
5
+ <path d="M4.72754 5.27271H7.45481" stroke="#6C7C90" stroke-linecap="round"/>
6
+ <path d="M11.8168 8.69026C11.4235 8.58488 11.0133 8.55799 10.6096 8.61114C10.206 8.66428 9.81671 8.79642 9.4641 9C9.11149 9.20358 8.80243 9.47462 8.55457 9.79764C8.3067 10.1207 8.12489 10.4893 8.01951 10.8826C7.91413 11.2759 7.88724 11.6861 7.94039 12.0898C7.99353 12.4935 8.12567 12.8827 8.32925 13.2353L6.87031 12.5074" stroke="#6C7C90" stroke-linecap="round"/>
7
+ <path d="M10.212 14.6798C10.6053 14.7852 11.0155 14.8121 11.4192 14.759C11.8229 14.7058 12.2121 14.5737 12.5647 14.3701C12.9173 14.1665 13.2264 13.8955 13.4743 13.5725C13.7221 13.2494 13.9039 12.8808 14.0093 12.4875C14.1147 12.0942 14.1416 11.684 14.0884 11.2803C14.0353 10.8766 13.9032 10.4874 13.6996 10.1348L15.2159 10.9622" stroke="#6C7C90" stroke-linecap="round"/>
8
+ </g>
9
+ <defs>
10
+ <clipPath id="clip0_12438_2348">
11
+ <rect width="16" height="16" fill="white"/>
12
+ </clipPath>
13
+ </defs>
14
+ </svg>
@@ -0,0 +1,5 @@
1
+ <svg width="16" height="16" viewBox="0 0 16 16" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <path d="M4.67284 6.6665L8.00635 3.33299L11.3399 6.6665" stroke="#6C7C90" stroke-linecap="round"/>
3
+ <path d="M7.49951 11C7.49951 11.2761 7.72337 11.5 7.99951 11.5C8.27565 11.5 8.49951 11.2761 8.49951 11L7.49951 11ZM8.49951 11L8.49951 3L7.49951 3L7.49951 11L8.49951 11Z" fill="#6C7C90"/>
4
+ <path d="M2.5 13.5H13.5" stroke="#6C7C90" stroke-linecap="round"/>
5
+ </svg>
@@ -0,0 +1,4 @@
1
+ <svg width="18" height="18" viewBox="0 0 18 18" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <path d="M9 1a8 8 0 1 0 8 8 8.009 8.009 0 0 0-8-8zm0 14.667A6.666 6.666 0 1 1 15.667 9 6.674 6.674 0 0 1 9 15.667z" fill="#44566C"/>
3
+ <path d="M9 7.667h-.667a.667.667 0 1 0 0 1.333h.666v4a.667.667 0 0 0 1.334 0V9a1.333 1.333 0 0 0-1.334-1.333zM9 6.333a1 1 0 1 0 0-2 1 1 0 0 0 0 2z" fill="#44566C"/>
4
+ </svg>