ca-components 1.3.32 → 1.3.34

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 (63) hide show
  1. package/esm2022/lib/ca-components.module.mjs +10 -4
  2. package/esm2022/lib/components/ca-chart/ca-chart.component.mjs +12 -11
  3. package/esm2022/lib/components/ca-checkbox/ca-checkbox.component.mjs +134 -0
  4. package/esm2022/lib/components/ca-checkbox/interfaces/column-check-action.interface.mjs +2 -0
  5. package/esm2022/lib/components/ca-checkbox/interfaces/index.mjs +2 -0
  6. package/esm2022/lib/components/ca-checkbox/utils/svg-routes/checkbox-svg-routes.mjs +7 -0
  7. package/esm2022/lib/components/ca-checkbox/utils/svg-routes/index.mjs +2 -0
  8. package/esm2022/lib/components/ca-custom-datetime-pickers/ca-custom-datetime-pickers.component.mjs +3 -3
  9. package/esm2022/lib/components/ca-dropdown-menu/ca-dropdown-menu.component.mjs +95 -24
  10. package/esm2022/lib/components/ca-dropdown-menu/enums/dropdown-menu.enum.mjs +19 -0
  11. package/esm2022/lib/components/ca-dropdown-menu/enums/index.mjs +2 -2
  12. package/esm2022/lib/components/ca-dropdown-menu/interfaces/dropdown-menu-item.interface.mjs +2 -0
  13. package/esm2022/lib/components/ca-dropdown-menu/interfaces/dropdown-menu-option-emit.interface.mjs +2 -0
  14. package/esm2022/lib/components/ca-dropdown-menu/interfaces/index.mjs +3 -0
  15. package/esm2022/lib/components/ca-dropdown-menu/pipes/dropdown-menu-placement-class.pipe.mjs +4 -4
  16. package/esm2022/lib/components/ca-dropdown-menu/pipes/group-item-checked-state.pipe.mjs +21 -0
  17. package/esm2022/lib/components/ca-dropdown-menu/pipes/index.mjs +2 -1
  18. package/esm2022/lib/components/ca-main-table/ca-main-table.component.mjs +5 -3
  19. package/esm2022/lib/components/ca-period-content/components/ca-period-content-payment/ca-period-content-payment.component.mjs +1 -1
  20. package/esm2022/lib/components/ca-pickup-delivery-block/components/ca-load/components/ca-load-single/ca-load-single.component.mjs +1 -1
  21. package/esm2022/lib/components/ca-tooltip-list/ca-tooltip-list.component.mjs +3 -3
  22. package/esm2022/lib/enums/dropdown-menu.enum.mjs +20 -0
  23. package/esm2022/lib/pipes/row-class.pipe.mjs +26 -0
  24. package/esm2022/lib/utils/constants/dropdown-menu-content.constants.mjs +26 -26
  25. package/esm2022/lib/utils/helpers/dropdown-menu-content-conditional-items.helper.mjs +4 -4
  26. package/esm2022/lib/utils/helpers/dropdown-menu-content.helper.mjs +6 -6
  27. package/esm2022/public-api.mjs +2 -1
  28. package/fesm2022/ca-components.mjs +350 -99
  29. package/fesm2022/ca-components.mjs.map +1 -1
  30. package/lib/ca-components.module.d.ts +2 -1
  31. package/lib/components/ca-checkbox/ca-checkbox.component.d.ts +39 -0
  32. package/lib/components/ca-checkbox/interfaces/column-check-action.interface.d.ts +6 -0
  33. package/lib/components/ca-checkbox/interfaces/index.d.ts +1 -0
  34. package/lib/components/ca-checkbox/utils/svg-routes/checkbox-svg-routes.d.ts +6 -0
  35. package/lib/components/ca-checkbox/utils/svg-routes/index.d.ts +1 -0
  36. package/lib/components/ca-dropdown-menu/ca-dropdown-menu.component.d.ts +16 -7
  37. package/lib/components/ca-dropdown-menu/enums/{dropdown-menu-string.enum.d.ts → dropdown-menu.enum.d.ts} +5 -2
  38. package/lib/components/ca-dropdown-menu/enums/index.d.ts +1 -1
  39. package/lib/components/ca-dropdown-menu/{models/dropdown-menu-item.model.d.ts → interfaces/dropdown-menu-item.interface.d.ts} +7 -1
  40. package/lib/components/ca-dropdown-menu/{models/dropdown-menu-option-emit.model.d.ts → interfaces/dropdown-menu-option-emit.interface.d.ts} +1 -1
  41. package/lib/components/ca-dropdown-menu/interfaces/index.d.ts +2 -0
  42. package/lib/components/ca-dropdown-menu/pipes/group-item-checked-state.pipe.d.ts +8 -0
  43. package/lib/components/ca-dropdown-menu/pipes/index.d.ts +1 -0
  44. package/lib/components/ca-filters/ca-filter.component.d.ts +2 -2
  45. package/lib/components/ca-period-content/components/ca-period-content-payment/ca-period-content-payment.component.d.ts +4 -4
  46. package/lib/components/ca-pickup-delivery-block/components/ca-load/components/ca-load-single/ca-load-single.component.d.ts +3 -3
  47. package/lib/enums/{dropdown-menu-string.enum.d.ts → dropdown-menu.enum.d.ts} +1 -1
  48. package/lib/pipes/row-class.pipe.d.ts +7 -0
  49. package/lib/utils/constants/dropdown-menu-content.constants.d.ts +3 -3
  50. package/lib/utils/helpers/dropdown-menu-content-conditional-items.helper.d.ts +3 -3
  51. package/lib/utils/helpers/dropdown-menu-content.helper.d.ts +3 -3
  52. package/package.json +1 -1
  53. package/public-api.d.ts +1 -0
  54. package/src/assets/ca-components/svg/common/ic_carriera-logo-active.svg +4 -0
  55. package/src/assets/ca-components/svg/common/ic_carriera-logo-inactive.svg +4 -0
  56. package/src/assets/ca-components/svg/common/ic_columns.svg +8 -0
  57. package/src/assets/ca-components/svg/common/ic_disable.svg +3 -0
  58. package/esm2022/lib/components/ca-dropdown-menu/enums/dropdown-menu-string.enum.mjs +0 -14
  59. package/esm2022/lib/components/ca-dropdown-menu/models/dropdown-menu-item.model.mjs +0 -2
  60. package/esm2022/lib/components/ca-dropdown-menu/models/dropdown-menu-option-emit.model.mjs +0 -2
  61. package/esm2022/lib/components/ca-dropdown-menu/models/index.mjs +0 -3
  62. package/esm2022/lib/enums/dropdown-menu-string.enum.mjs +0 -20
  63. package/lib/components/ca-dropdown-menu/models/index.d.ts +0 -2
@@ -37,8 +37,9 @@ import * as i35 from "./components/ca-right-side-panel/components/ca-right-side-
37
37
  import * as i36 from "./components/ca-progress-range/ca-progress-range.component";
38
38
  import * as i37 from "./components/ca-tooltip-list/ca-tooltip-list.component";
39
39
  import * as i38 from "./components/ca-input/input-test/input-test.component";
40
+ import * as i39 from "./components/ca-checkbox/ca-checkbox.component";
40
41
  export declare class CaComponentsLibModule {
41
42
  static ɵfac: i0.ɵɵFactoryDeclaration<CaComponentsLibModule, never>;
42
- static ɵmod: i0.ɵɵNgModuleDeclaration<CaComponentsLibModule, never, [typeof i1.CommonModule, typeof i2.CaProfileImageComponent, typeof i3.CaRatingReviewComponent, typeof i4.CaAppTooltipV2Component, typeof i5.CaDetailsDropdownComponent, typeof i6.CaFilterComponent, typeof i7.CaInputComponent, typeof i8.CaInputDatetimePickerComponent, typeof i9.CaInputRadiobuttonsComponent, typeof i10.CaInputDropdownComponent, typeof i11.CaMapComponent, typeof i12.CaMapDropdownComponent, typeof i13.CaNoteComponent, typeof i14.CaNoteContainerComponent, typeof i15.CaPayrollListSummaryOverviewComponent, typeof i16.CaPayrollListSummaryOverviewTableComponent, typeof i17.PickupDeliveryBlockComponent, typeof i18.ProgressBarComponent, typeof i19.CaSearchMultipleStatesComponent, typeof i20.CaSpinnerComponent, typeof i21.CaTodoComponent, typeof i22.CaTruckTrailerProgresBarComponent, typeof i23.CaPeriodContentComponent, typeof i24.CaInputNoteComponent, typeof i25.CaInputAddressDropdownComponent, typeof i26.CaMainTableComponent, typeof i27.CaActivityLogListComponent, typeof i28.CaRightSidePanelMenuComponent, typeof i29.CaRightSidePanelTopBarComponent, typeof i30.CaRightSidePanelComponent, typeof i31.CaChartComponent, typeof i32.CaChartManagerComponent, typeof i33.CaDropdownMenuComponent, typeof i34.CaUploadFilesComponent, typeof i35.CaRightSidePanelCompanyComponent, typeof i36.CaProgressRangeComponent, typeof i37.CaTooltipListComponent, typeof i38.InputTestComponent], [typeof i2.CaProfileImageComponent, typeof i4.CaAppTooltipV2Component, typeof i5.CaDetailsDropdownComponent, typeof i3.CaRatingReviewComponent, typeof i6.CaFilterComponent, typeof i7.CaInputComponent, typeof i8.CaInputDatetimePickerComponent, typeof i9.CaInputRadiobuttonsComponent, typeof i10.CaInputDropdownComponent, typeof i11.CaMapComponent, typeof i12.CaMapDropdownComponent, typeof i13.CaNoteComponent, typeof i14.CaNoteContainerComponent, typeof i15.CaPayrollListSummaryOverviewComponent, typeof i16.CaPayrollListSummaryOverviewTableComponent, typeof i17.PickupDeliveryBlockComponent, typeof i18.ProgressBarComponent, typeof i19.CaSearchMultipleStatesComponent, typeof i20.CaSpinnerComponent, typeof i22.CaTruckTrailerProgresBarComponent, typeof i23.CaPeriodContentComponent, typeof i24.CaInputNoteComponent, typeof i26.CaMainTableComponent, typeof i27.CaActivityLogListComponent, typeof i28.CaRightSidePanelMenuComponent, typeof i29.CaRightSidePanelTopBarComponent, typeof i30.CaRightSidePanelComponent, typeof i31.CaChartComponent, typeof i32.CaChartManagerComponent, typeof i33.CaDropdownMenuComponent, typeof i34.CaUploadFilesComponent, typeof i35.CaRightSidePanelCompanyComponent, typeof i36.CaProgressRangeComponent, typeof i37.CaTooltipListComponent, typeof i25.CaInputAddressDropdownComponent, typeof i38.InputTestComponent]>;
43
+ static ɵmod: i0.ɵɵNgModuleDeclaration<CaComponentsLibModule, never, [typeof i1.CommonModule, typeof i2.CaProfileImageComponent, typeof i3.CaRatingReviewComponent, typeof i4.CaAppTooltipV2Component, typeof i5.CaDetailsDropdownComponent, typeof i6.CaFilterComponent, typeof i7.CaInputComponent, typeof i8.CaInputDatetimePickerComponent, typeof i9.CaInputRadiobuttonsComponent, typeof i10.CaInputDropdownComponent, typeof i11.CaMapComponent, typeof i12.CaMapDropdownComponent, typeof i13.CaNoteComponent, typeof i14.CaNoteContainerComponent, typeof i15.CaPayrollListSummaryOverviewComponent, typeof i16.CaPayrollListSummaryOverviewTableComponent, typeof i17.PickupDeliveryBlockComponent, typeof i18.ProgressBarComponent, typeof i19.CaSearchMultipleStatesComponent, typeof i20.CaSpinnerComponent, typeof i21.CaTodoComponent, typeof i22.CaTruckTrailerProgresBarComponent, typeof i23.CaPeriodContentComponent, typeof i24.CaInputNoteComponent, typeof i25.CaInputAddressDropdownComponent, typeof i26.CaMainTableComponent, typeof i27.CaActivityLogListComponent, typeof i28.CaRightSidePanelMenuComponent, typeof i29.CaRightSidePanelTopBarComponent, typeof i30.CaRightSidePanelComponent, typeof i31.CaChartComponent, typeof i32.CaChartManagerComponent, typeof i33.CaDropdownMenuComponent, typeof i34.CaUploadFilesComponent, typeof i35.CaRightSidePanelCompanyComponent, typeof i36.CaProgressRangeComponent, typeof i37.CaTooltipListComponent, typeof i38.InputTestComponent, typeof i39.CaCheckboxComponent], [typeof i2.CaProfileImageComponent, typeof i4.CaAppTooltipV2Component, typeof i5.CaDetailsDropdownComponent, typeof i3.CaRatingReviewComponent, typeof i6.CaFilterComponent, typeof i7.CaInputComponent, typeof i8.CaInputDatetimePickerComponent, typeof i9.CaInputRadiobuttonsComponent, typeof i10.CaInputDropdownComponent, typeof i11.CaMapComponent, typeof i12.CaMapDropdownComponent, typeof i13.CaNoteComponent, typeof i14.CaNoteContainerComponent, typeof i15.CaPayrollListSummaryOverviewComponent, typeof i16.CaPayrollListSummaryOverviewTableComponent, typeof i17.PickupDeliveryBlockComponent, typeof i18.ProgressBarComponent, typeof i19.CaSearchMultipleStatesComponent, typeof i20.CaSpinnerComponent, typeof i22.CaTruckTrailerProgresBarComponent, typeof i23.CaPeriodContentComponent, typeof i24.CaInputNoteComponent, typeof i26.CaMainTableComponent, typeof i27.CaActivityLogListComponent, typeof i28.CaRightSidePanelMenuComponent, typeof i29.CaRightSidePanelTopBarComponent, typeof i30.CaRightSidePanelComponent, typeof i31.CaChartComponent, typeof i32.CaChartManagerComponent, typeof i33.CaDropdownMenuComponent, typeof i34.CaUploadFilesComponent, typeof i35.CaRightSidePanelCompanyComponent, typeof i36.CaProgressRangeComponent, typeof i37.CaTooltipListComponent, typeof i25.CaInputAddressDropdownComponent, typeof i38.InputTestComponent, typeof i39.CaCheckboxComponent]>;
43
44
  static ɵinj: i0.ɵɵInjectorDeclaration<CaComponentsLibModule>;
44
45
  }
@@ -0,0 +1,39 @@
1
+ import { EventEmitter } from '@angular/core';
2
+ import { ControlValueAccessor, NgControl } from '@angular/forms';
3
+ import { IColumnCheckAction } from './interfaces';
4
+ import { CheckboxSvgRoutes } from './utils/svg-routes';
5
+ import * as i0 from "@angular/core";
6
+ export declare class CaCheckboxComponent implements ControlValueAccessor {
7
+ superControl?: NgControl | undefined;
8
+ label: string;
9
+ required: boolean;
10
+ disabled?: boolean;
11
+ disabledStillCheckMark: boolean;
12
+ svg: string;
13
+ name: string;
14
+ customClass: string;
15
+ moveIconDown: boolean;
16
+ isUseCarrieraACHCheckBox: boolean;
17
+ isDisabledBlue: boolean;
18
+ isDisabledRegularCheck: boolean;
19
+ isLabelDisabled: boolean;
20
+ isRegularCheckbox: boolean;
21
+ isChecked?: boolean;
22
+ isGroupPartialyChecked: boolean;
23
+ groupIndex: number;
24
+ itemIndex: number;
25
+ formArrayAction: EventEmitter<boolean>;
26
+ columnCheckAction: EventEmitter<IColumnCheckAction>;
27
+ private formArrayCheck;
28
+ checkboxSvgRoutes: typeof CheckboxSvgRoutes;
29
+ get getSuperControl(): import("@angular/forms").AbstractControl<any, any> | null | undefined;
30
+ constructor(superControl?: NgControl | undefined);
31
+ private handleColumnDropdownCheckboxEmit;
32
+ writeValue(_: any): void;
33
+ registerOnChange(fn: any): void;
34
+ onChange(): void;
35
+ registerOnTouched(_: any): void;
36
+ onAction(): void;
37
+ static ɵfac: i0.ɵɵFactoryDeclaration<CaCheckboxComponent, [{ optional: true; self: true; }]>;
38
+ static ɵcmp: i0.ɵɵComponentDeclaration<CaCheckboxComponent, "app-ca-checkbox", never, { "label": { "alias": "label"; "required": false; }; "required": { "alias": "required"; "required": false; }; "disabled": { "alias": "disabled"; "required": false; }; "disabledStillCheckMark": { "alias": "disabledStillCheckMark"; "required": false; }; "svg": { "alias": "svg"; "required": false; }; "name": { "alias": "name"; "required": false; }; "customClass": { "alias": "customClass"; "required": false; }; "moveIconDown": { "alias": "moveIconDown"; "required": false; }; "isUseCarrieraACHCheckBox": { "alias": "isUseCarrieraACHCheckBox"; "required": false; }; "isDisabledBlue": { "alias": "isDisabledBlue"; "required": false; }; "isDisabledRegularCheck": { "alias": "isDisabledRegularCheck"; "required": false; }; "isLabelDisabled": { "alias": "isLabelDisabled"; "required": false; }; "isRegularCheckbox": { "alias": "isRegularCheckbox"; "required": false; }; "isChecked": { "alias": "isChecked"; "required": false; }; "isGroupPartialyChecked": { "alias": "isGroupPartialyChecked"; "required": false; }; "groupIndex": { "alias": "groupIndex"; "required": false; }; "itemIndex": { "alias": "itemIndex"; "required": false; }; }, { "formArrayAction": "formArrayAction"; "columnCheckAction": "columnCheckAction"; }, never, never, true, never>;
39
+ }
@@ -0,0 +1,6 @@
1
+ export interface IColumnCheckAction {
2
+ isChecked: boolean;
3
+ name: string;
4
+ groupIndex: number;
5
+ itemIndex: number;
6
+ }
@@ -0,0 +1 @@
1
+ export * from './column-check-action.interface';
@@ -0,0 +1,6 @@
1
+ export declare class CheckboxSvgRoutes {
2
+ static carrieraLogoActiveIcon: string;
3
+ static carrieraLogoInactiveIcon: string;
4
+ static checkedIcon: string;
5
+ static disabledIcon: string;
6
+ }
@@ -0,0 +1 @@
1
+ export * from './checkbox-svg-routes';
@@ -1,27 +1,36 @@
1
1
  import { EventEmitter } from '@angular/core';
2
2
  import { NgbPopover } from '@ng-bootstrap/ng-bootstrap';
3
- import { DropdownMenuStringEnum } from './enums';
3
+ import { IDropdownMenuItem, IDropdownMenuOptionEmit } from './interfaces';
4
+ import { IColumnCheckAction } from '../ca-checkbox/interfaces';
5
+ import { eDropdownMenu } from './enums';
4
6
  import { DropdownMenuSvgRoutes } from './utils/svg-routes';
5
7
  import { DropdownMenuType } from './types';
6
- import { DropdownMenuItem, DropdownMenuOptionEmit } from './models';
7
8
  import * as i0 from "@angular/core";
8
9
  export declare class CaDropdownMenuComponent {
9
10
  type: DropdownMenuType;
10
- options: DropdownMenuItem[];
11
+ options: IDropdownMenuItem[];
11
12
  placement: string;
12
13
  isDarkBackground?: boolean;
13
14
  isLeftSideIconPosition?: boolean;
14
15
  isPositionTranslateUnset?: boolean;
15
- dropdownOptionEmitter: EventEmitter<DropdownMenuOptionEmit>;
16
+ dropdownOptionEmitter: EventEmitter<IDropdownMenuOptionEmit>;
16
17
  dropdownMenuSvgRoutes: typeof DropdownMenuSvgRoutes;
17
- dropdownMenuStringEnum: typeof DropdownMenuStringEnum;
18
+ eDropdownMenu: typeof eDropdownMenu;
18
19
  dropdownPopover: NgbPopover | null;
19
20
  activeInnerDropdownOptionIndex: number;
20
21
  isSelectMenuTypeActionItemSelected: boolean;
21
- constructor();
22
+ isBackToMainDropdownItemHovered: boolean;
22
23
  get isDropdownMenuActive(): boolean | undefined;
23
- handleDropdownOptionClick(option: DropdownMenuItem, optionIndex?: number): void;
24
+ constructor();
25
+ private handleCheckboxAction;
26
+ private handleChildCheckboxAction;
27
+ private handleParentCheckboxAction;
28
+ private updateParentCheckedState;
29
+ handleDropdownOptionClick(option: IDropdownMenuItem, itemIndex?: number, groupIndex?: number): void;
24
30
  handleDropdownOpenCloseClick(dropdownPopover: NgbPopover): void;
31
+ handleCheckboxActionEmit(action: IColumnCheckAction): void;
32
+ handleResetTableClick(): void;
33
+ handleBackToMainDropdownListItemHover(isHovered: boolean): void;
25
34
  static ɵfac: i0.ɵɵFactoryDeclaration<CaDropdownMenuComponent, never>;
26
35
  static ɵcmp: i0.ɵɵComponentDeclaration<CaDropdownMenuComponent, "ca-dropdown-menu", never, { "type": { "alias": "type"; "required": false; }; "options": { "alias": "options"; "required": false; }; "placement": { "alias": "placement"; "required": false; }; "isDarkBackground": { "alias": "isDarkBackground"; "required": false; }; "isLeftSideIconPosition": { "alias": "isLeftSideIconPosition"; "required": false; }; "isPositionTranslateUnset": { "alias": "isPositionTranslateUnset"; "required": false; }; }, { "dropdownOptionEmitter": "dropdownOptionEmitter"; }, never, never, true, never>;
27
36
  }
@@ -1,9 +1,12 @@
1
- export declare enum DropdownMenuStringEnum {
1
+ export declare enum eDropdownMenu {
2
2
  CLOSE = "Close",
3
3
  OPEN = "Open",
4
4
  RIGHT_TOP = "right-top",
5
5
  BOTTOM_RIGHT = "bottom-right",
6
6
  DOTS_MENU_TYPE = "dots-menu-type",
7
7
  HAMBURGER_MENU_TYPE = "hamburger-menu-type",
8
- SELECT_MENU_TYPE = "select-menu-type"
8
+ SELECT_MENU_TYPE = "select-menu-type",
9
+ RESET_TABLE_TYPE = "reset-table-type",
10
+ EMPTY_STRING_PLACEHOLDER = "",
11
+ BACK_TO_MENU = "Back To Menu"
9
12
  }
@@ -1 +1 @@
1
- export * from './dropdown-menu-string.enum';
1
+ export * from './dropdown-menu.enum';
@@ -1,4 +1,4 @@
1
- export interface DropdownMenuItem {
1
+ export interface IDropdownMenuItem {
2
2
  id?: number;
3
3
  title: string;
4
4
  titleOptionalClass?: string;
@@ -10,6 +10,12 @@ export interface DropdownMenuItem {
10
10
  innerDropdownContent?: {
11
11
  title: string;
12
12
  type: string;
13
+ isChecked?: boolean;
14
+ isColumnDropdown?: boolean;
13
15
  }[];
14
16
  isSelectMenuTypeActionItem?: boolean;
17
+ isChecked?: boolean;
18
+ groupName?: string;
19
+ isColumnDropdown?: boolean;
20
+ isCheckBoxDisabled?: boolean;
15
21
  }
@@ -1,4 +1,4 @@
1
- export interface DropdownMenuOptionEmit {
1
+ export interface IDropdownMenuOptionEmit {
2
2
  id?: number;
3
3
  type?: string;
4
4
  isActive?: boolean;
@@ -0,0 +1,2 @@
1
+ export * from './dropdown-menu-item.interface';
2
+ export * from './dropdown-menu-option-emit.interface';
@@ -0,0 +1,8 @@
1
+ import { PipeTransform } from '@angular/core';
2
+ import { IDropdownMenuItem } from '../interfaces';
3
+ import * as i0 from "@angular/core";
4
+ export declare class GroupItemCheckedStatePipe implements PipeTransform {
5
+ transform(option: IDropdownMenuItem): boolean;
6
+ static ɵfac: i0.ɵɵFactoryDeclaration<GroupItemCheckedStatePipe, never>;
7
+ static ɵpipe: i0.ɵɵPipeDeclaration<GroupItemCheckedStatePipe, "groupItemCheckedState", true>;
8
+ }
@@ -1 +1,2 @@
1
1
  export * from './dropdown-menu-placement-class.pipe';
2
+ export * from './group-item-checked-state.pipe';
@@ -60,8 +60,8 @@ export declare class CaFilterComponent implements OnDestroy {
60
60
  addressList: AddressList[];
61
61
  usaStates: ArrayStatus[];
62
62
  canadaStates: ArrayStatus[];
63
- setFilter: EventEmitter<filterOutput | filterOutputWithParams>;
64
- clearAll: EventEmitter<filterOutput | filterOutputWithParams>;
63
+ setFilter: EventEmitter<filterOutputWithParams | filterOutput>;
64
+ clearAll: EventEmitter<filterOutputWithParams | filterOutput>;
65
65
  private destroy$;
66
66
  isSearchExpanded: boolean;
67
67
  isFilterActive: boolean;
@@ -3,7 +3,7 @@ import { PeriodContentSvgRoutes } from '../../utils/svg-routes';
3
3
  import { CdkDragDrop } from '@angular/cdk/drag-drop';
4
4
  import { CaDropdownMenuComponent } from '../../../ca-dropdown-menu/ca-dropdown-menu.component';
5
5
  import { PayrollReportTableResponse } from '../../models/payroll-report-tables.type';
6
- import { DropdownMenuItem, DropdownMenuOptionEmit } from '../../../ca-dropdown-menu/models';
6
+ import { IDropdownMenuItem, IDropdownMenuOptionEmit } from '../../../ca-dropdown-menu/interfaces';
7
7
  import * as i0 from "@angular/core";
8
8
  export declare class CaPeriodContentPaymentComponent implements OnInit {
9
9
  private cdr;
@@ -14,14 +14,14 @@ export declare class CaPeriodContentPaymentComponent implements OnInit {
14
14
  set excluded(excluded: PayrollReportTableResponse[] | undefined);
15
15
  dropdownMenu: CaDropdownMenuComponent;
16
16
  _isOpen: boolean;
17
- dropdownOptions: DropdownMenuItem[];
17
+ dropdownOptions: IDropdownMenuItem[];
18
18
  set isOpen(open: boolean);
19
19
  get isOpen(): boolean;
20
20
  title: string;
21
21
  hideTotal: boolean;
22
22
  openAddNewModalEmiter: EventEmitter<string>;
23
23
  openEditEntryItem: EventEmitter<{
24
- $event: DropdownMenuOptionEmit;
24
+ $event: IDropdownMenuOptionEmit;
25
25
  data: any;
26
26
  title: string;
27
27
  }>;
@@ -41,7 +41,7 @@ export declare class CaPeriodContentPaymentComponent implements OnInit {
41
41
  identity(index: number): number;
42
42
  openAddNewModal(): void;
43
43
  handleMenuOpen(event: {
44
- $event: DropdownMenuOptionEmit;
44
+ $event: IDropdownMenuOptionEmit;
45
45
  data: PayrollReportTableResponse;
46
46
  title: string;
47
47
  }): void;
@@ -1,18 +1,18 @@
1
1
  import { PickupDeliverySvgRoutes } from '../../../../utils/svg-routes';
2
2
  import { FormatCurrencyPipe } from '../../../../../../pipes/format-currency.pipe';
3
3
  import { LoadShortResponse, StatusTypeEnum } from '../../../../models';
4
- import { DropdownMenuItem, DropdownMenuOptionEmit } from '../../../../../ca-dropdown-menu/models';
4
+ import { IDropdownMenuItem, IDropdownMenuOptionEmit } from '../../../../../ca-dropdown-menu/interfaces';
5
5
  import * as i0 from "@angular/core";
6
6
  export declare class ActiveLoadComponent {
7
7
  formatCurrencyPipe: FormatCurrencyPipe;
8
8
  activeLoad: Array<LoadShortResponse>;
9
9
  status: StatusTypeEnum;
10
- dropdownOptions: DropdownMenuItem[];
10
+ dropdownOptions: IDropdownMenuItem[];
11
11
  constructor(formatCurrencyPipe: FormatCurrencyPipe);
12
12
  ngOnInit(): void;
13
13
  private setDropdownOptions;
14
14
  getSvgPath(propertyName: keyof typeof PickupDeliverySvgRoutes): string;
15
- handleMenuOpen(event: DropdownMenuOptionEmit): void;
15
+ handleMenuOpen(event: IDropdownMenuOptionEmit): void;
16
16
  static ɵfac: i0.ɵɵFactoryDeclaration<ActiveLoadComponent, never>;
17
17
  static ɵcmp: i0.ɵɵComponentDeclaration<ActiveLoadComponent, "app-ca-load-single", never, { "activeLoad": { "alias": "activeLoad"; "required": false; }; "status": { "alias": "status"; "required": false; }; }, {}, never, never, true, never>;
18
18
  }
@@ -1,4 +1,4 @@
1
- export declare enum DropdownMenuStringEnum {
1
+ export declare enum eDropdownMenu {
2
2
  EDIT = "Edit",
3
3
  VIEW_DETAILS = "View Details",
4
4
  SHARE = "Share",
@@ -0,0 +1,7 @@
1
+ import { PipeTransform } from '@angular/core';
2
+ import * as i0 from "@angular/core";
3
+ export declare class RowClassPipe implements PipeTransform {
4
+ transform(row: any, tableData: any[] | null, rowIndex: number): any;
5
+ static ɵfac: i0.ɵɵFactoryDeclaration<RowClassPipe, never>;
6
+ static ɵpipe: i0.ɵɵPipeDeclaration<RowClassPipe, "rowClass", true>;
7
+ }
@@ -1,5 +1,5 @@
1
- import { DropdownMenuItem } from '../../components/ca-dropdown-menu/models';
1
+ import { IDropdownMenuItem } from '../../components/ca-dropdown-menu/interfaces';
2
2
  export declare class DropdownMenuContentConstants {
3
- static DROPDOWN_MENU_SHARED_ITEMS: Record<string, DropdownMenuItem>;
4
- static DROPDOWN_MENU_CONDITIONAL_ITEMS: Record<string, DropdownMenuItem>;
3
+ static DROPDOWN_MENU_SHARED_ITEMS: Record<string, IDropdownMenuItem>;
4
+ static DROPDOWN_MENU_CONDITIONAL_ITEMS: Record<string, IDropdownMenuItem>;
5
5
  }
@@ -1,5 +1,5 @@
1
- import { DropdownMenuItem } from '../../components/ca-dropdown-menu/models';
1
+ import { IDropdownMenuItem } from '../../components/ca-dropdown-menu/interfaces';
2
2
  export declare class DropdownMenuContentConditionalItemsHelper {
3
- static getConditionalItems(requestedItemTitles: string[], isSharedConditionalItems: boolean, modifiers?: Partial<DropdownMenuItem>[]): DropdownMenuItem[];
4
- static getPickupDeliveryModifierItems(loadStatus: string): Partial<DropdownMenuItem>[];
3
+ static getConditionalItems(requestedItemTitles: string[], isSharedConditionalItems: boolean, modifiers?: Partial<IDropdownMenuItem>[]): IDropdownMenuItem[];
4
+ static getPickupDeliveryModifierItems(loadStatus: string): Partial<IDropdownMenuItem>[];
5
5
  }
@@ -1,5 +1,5 @@
1
- import { DropdownMenuItem } from '../../components/ca-dropdown-menu/models';
1
+ import { IDropdownMenuItem } from '../../components/ca-dropdown-menu/interfaces';
2
2
  export declare class DropdownMenuContentHelper {
3
- static getPayrollDropdownContent(isOpenPayroll: boolean): DropdownMenuItem[];
4
- static getPickupDeliveryDropdownContent(loadStatus: string): DropdownMenuItem[];
3
+ static getPayrollDropdownContent(isOpenPayroll: boolean): IDropdownMenuItem[];
4
+ static getPickupDeliveryDropdownContent(loadStatus: string): IDropdownMenuItem[];
5
5
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "ca-components",
3
- "version": "1.3.32",
3
+ "version": "1.3.34",
4
4
  "peerDependencies": {
5
5
  "@angular/common": "^18.2.13",
6
6
  "@angular/core": "^18.2.13",
package/public-api.d.ts CHANGED
@@ -59,4 +59,5 @@ export * from './lib/components/ca-chart-manager/ca-chart-manager.component';
59
59
  export * from './lib/components/ca-custom-scrollbar/ca-custom-scrollbar.component';
60
60
  export * from './lib/components/ca-map/utils/services';
61
61
  export * from './lib/components/ca-input/input-test/input-test.component';
62
+ export * from './lib/components/ca-checkbox/ca-checkbox.component';
62
63
  export * from './lib/components/ca-modal-button/enums';
@@ -0,0 +1,4 @@
1
+ <svg width="126" height="13" viewBox="0 0 126 13" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <path d="M4.53 12.112C3.242 12.112 2.22933 11.7433 1.492 11.006C0.754667 10.2687 0.386 9.19067 0.386 7.772V2.2H1.786V7.716C1.786 8.808 2.024 9.606 2.5 10.11C2.98533 10.614 3.66667 10.866 4.544 10.866C5.43067 10.866 6.112 10.614 6.588 10.11C7.07333 9.606 7.316 8.808 7.316 7.716V2.2H8.674V7.772C8.674 9.19067 8.30533 10.2687 7.568 11.006C6.84 11.7433 5.82733 12.112 4.53 12.112ZM13.4762 12.084C12.8602 12.084 12.2722 12 11.7122 11.832C11.1616 11.664 10.7276 11.4587 10.4102 11.216L10.9702 10.152C11.2876 10.3667 11.6796 10.5487 12.1462 10.698C12.6129 10.8473 13.0889 10.922 13.5742 10.922C14.1996 10.922 14.6476 10.8333 14.9182 10.656C15.1982 10.4787 15.3382 10.2313 15.3382 9.914C15.3382 9.68067 15.2542 9.49867 15.0862 9.368C14.9182 9.23733 14.6942 9.13933 14.4142 9.074C14.1436 9.00867 13.8402 8.95267 13.5042 8.906C13.1682 8.85 12.8322 8.78467 12.4962 8.71C12.1602 8.626 11.8522 8.514 11.5722 8.374C11.2922 8.22467 11.0682 8.024 10.9002 7.772C10.7322 7.51067 10.6482 7.16533 10.6482 6.736C10.6482 6.288 10.7742 5.896 11.0262 5.56C11.2782 5.224 11.6329 4.96733 12.0902 4.79C12.5569 4.60333 13.1076 4.51 13.7422 4.51C14.2276 4.51 14.7176 4.57067 15.2122 4.692C15.7162 4.804 16.1269 4.96733 16.4442 5.182L15.8702 6.246C15.5342 6.022 15.1842 5.868 14.8202 5.784C14.4562 5.7 14.0922 5.658 13.7282 5.658C13.1402 5.658 12.7016 5.756 12.4122 5.952C12.1229 6.13867 11.9782 6.38133 11.9782 6.68C11.9782 6.932 12.0622 7.128 12.2302 7.268C12.4076 7.39867 12.6316 7.50133 12.9022 7.576C13.1822 7.65067 13.4902 7.716 13.8262 7.772C14.1622 7.81867 14.4982 7.884 14.8342 7.968C15.1702 8.04267 15.4736 8.15 15.7442 8.29C16.0242 8.43 16.2482 8.626 16.4162 8.878C16.5936 9.13 16.6822 9.466 16.6822 9.886C16.6822 10.334 16.5516 10.7213 16.2902 11.048C16.0289 11.3747 15.6602 11.6313 15.1842 11.818C14.7082 11.9953 14.1389 12.084 13.4762 12.084ZM21.6659 12.084C20.8726 12.084 20.1726 11.9207 19.5659 11.594C18.9686 11.2673 18.5019 10.8193 18.1659 10.25C17.8392 9.68067 17.6759 9.02733 17.6759 8.29C17.6759 7.55267 17.8346 6.89933 18.1519 6.33C18.4786 5.76067 18.9219 5.31733 19.4819 5C20.0512 4.67333 20.6906 4.51 21.3999 4.51C22.1186 4.51 22.7532 4.66867 23.3039 4.986C23.8546 5.30333 24.2839 5.75133 24.5919 6.33C24.9092 6.89933 25.0679 7.56667 25.0679 8.332C25.0679 8.388 25.0632 8.45333 25.0539 8.528C25.0539 8.60267 25.0492 8.67267 25.0399 8.738H18.7259V7.772H24.3399L23.7939 8.108C23.8032 7.632 23.7052 7.20733 23.4999 6.834C23.2946 6.46067 23.0099 6.17133 22.6459 5.966C22.2912 5.75133 21.8759 5.644 21.3999 5.644C20.9332 5.644 20.5179 5.75133 20.1539 5.966C19.7899 6.17133 19.5052 6.46533 19.2999 6.848C19.0946 7.22133 18.9919 7.65067 18.9919 8.136V8.36C18.9919 8.85467 19.1039 9.298 19.3279 9.69C19.5612 10.0727 19.8832 10.3713 20.2939 10.586C20.7046 10.8007 21.1759 10.908 21.7079 10.908C22.1466 10.908 22.5432 10.8333 22.8979 10.684C23.2619 10.5347 23.5792 10.3107 23.8499 10.012L24.5919 10.88C24.2559 11.272 23.8359 11.5707 23.3319 11.776C22.8372 11.9813 22.2819 12.084 21.6659 12.084ZM34.1519 12.126C33.3119 12.126 32.5606 11.958 31.8979 11.622C31.2446 11.286 30.7313 10.824 30.3579 10.236C29.9846 9.63867 29.7979 8.95733 29.7979 8.192C29.7979 7.42667 29.9846 6.75 30.3579 6.162C30.7313 5.574 31.2446 5.11667 31.8979 4.79C32.5606 4.454 33.3119 4.286 34.1519 4.286C35.0106 4.286 35.7526 4.468 36.3779 4.832C37.0033 5.196 37.4466 5.70933 37.7079 6.372L35.6499 7.422C35.4726 7.06733 35.2533 6.81067 34.9919 6.652C34.7306 6.484 34.4459 6.4 34.1379 6.4C33.8299 6.4 33.5499 6.47 33.2979 6.61C33.0459 6.75 32.8453 6.95533 32.6959 7.226C32.5559 7.48733 32.4859 7.80933 32.4859 8.192C32.4859 8.584 32.5559 8.91533 32.6959 9.186C32.8453 9.45667 33.0459 9.662 33.2979 9.802C33.5499 9.942 33.8299 10.012 34.1379 10.012C34.4459 10.012 34.7306 9.93267 34.9919 9.774C35.2533 9.606 35.4726 9.34467 35.6499 8.99L37.7079 10.04C37.4466 10.7027 37.0033 11.216 36.3779 11.58C35.7526 11.944 35.0106 12.126 34.1519 12.126ZM43.3435 12V10.586L43.1615 10.236V7.632C43.1615 7.212 43.0308 6.89 42.7695 6.666C42.5175 6.43267 42.1115 6.316 41.5515 6.316C41.1875 6.316 40.8188 6.37667 40.4455 6.498C40.0721 6.61 39.7548 6.76867 39.4935 6.974L38.5975 5.168C39.0268 4.888 39.5401 4.67333 40.1375 4.524C40.7441 4.36533 41.3461 4.286 41.9435 4.286C43.1755 4.286 44.1275 4.57067 44.7995 5.14C45.4808 5.7 45.8215 6.582 45.8215 7.786V12H43.3435ZM41.1035 12.126C40.4968 12.126 39.9835 12.0233 39.5635 11.818C39.1435 11.6127 38.8215 11.3327 38.5975 10.978C38.3828 10.6233 38.2755 10.2267 38.2755 9.788C38.2755 9.32133 38.3921 8.92 38.6255 8.584C38.8681 8.23867 39.2368 7.97733 39.7315 7.8C40.2261 7.61333 40.8655 7.52 41.6495 7.52H43.4415V8.906H42.0135C41.5841 8.906 41.2808 8.976 41.1035 9.116C40.9355 9.256 40.8515 9.44267 40.8515 9.676C40.8515 9.90933 40.9401 10.096 41.1175 10.236C41.2948 10.376 41.5375 10.446 41.8455 10.446C42.1348 10.446 42.3961 10.376 42.6295 10.236C42.8721 10.0867 43.0495 9.86267 43.1615 9.564L43.5255 10.544C43.3855 11.0667 43.1101 11.4633 42.6995 11.734C42.2981 11.9953 41.7661 12.126 41.1035 12.126ZM47.5005 12V4.412H50.0345V6.624L49.6565 5.994C49.8805 5.42467 50.2445 5 50.7485 4.72C51.2525 4.43067 51.8638 4.286 52.5825 4.286V6.68C52.4612 6.66133 52.3538 6.652 52.2605 6.652C52.1765 6.64267 52.0832 6.638 51.9805 6.638C51.4392 6.638 51.0005 6.78733 50.6645 7.086C50.3285 7.37533 50.1605 7.85133 50.1605 8.514V12H47.5005ZM53.6802 12V4.412H56.2142V6.624L55.8362 5.994C56.0602 5.42467 56.4242 5 56.9282 4.72C57.4322 4.43067 58.0435 4.286 58.7622 4.286V6.68C58.6408 6.66133 58.5335 6.652 58.4402 6.652C58.3562 6.64267 58.2628 6.638 58.1602 6.638C57.6188 6.638 57.1802 6.78733 56.8442 7.086C56.5082 7.37533 56.3402 7.85133 56.3402 8.514V12H53.6802ZM59.8599 12V4.412H62.5199V12H59.8599ZM61.1899 3.572C60.7045 3.572 60.3125 3.43667 60.0139 3.166C59.7152 2.89533 59.5659 2.55933 59.5659 2.158C59.5659 1.75667 59.7152 1.42067 60.0139 1.15C60.3125 0.879333 60.7045 0.744 61.1899 0.744C61.6752 0.744 62.0672 0.874666 62.3659 1.136C62.6645 1.388 62.8139 1.71467 62.8139 2.116C62.8139 2.536 62.6645 2.886 62.3659 3.166C62.0765 3.43667 61.6845 3.572 61.1899 3.572ZM68.2245 12.126C67.3285 12.126 66.5445 11.958 65.8725 11.622C65.2099 11.2767 64.6919 10.81 64.3185 10.222C63.9545 9.62467 63.7725 8.948 63.7725 8.192C63.7725 7.436 63.9499 6.764 64.3045 6.176C64.6685 5.57867 65.1679 5.11667 65.8025 4.79C66.4372 4.454 67.1512 4.286 67.9445 4.286C68.6912 4.286 69.3725 4.44 69.9885 4.748C70.6045 5.04667 71.0945 5.49 71.4585 6.078C71.8225 6.666 72.0045 7.38 72.0045 8.22C72.0045 8.31333 71.9999 8.42067 71.9905 8.542C71.9812 8.66333 71.9719 8.77533 71.9625 8.878H65.9565V7.478H70.5485L69.5405 7.87C69.5499 7.52467 69.4845 7.226 69.3445 6.974C69.2139 6.722 69.0272 6.526 68.7845 6.386C68.5512 6.246 68.2759 6.176 67.9585 6.176C67.6412 6.176 67.3612 6.246 67.1185 6.386C66.8852 6.526 66.7032 6.72667 66.5725 6.988C66.4419 7.24 66.3765 7.53867 66.3765 7.884V8.29C66.3765 8.66333 66.4512 8.98533 66.6005 9.256C66.7592 9.52667 66.9832 9.73667 67.2725 9.886C67.5619 10.026 67.9072 10.096 68.3085 10.096C68.6819 10.096 68.9992 10.0447 69.2605 9.942C69.5312 9.83 69.7972 9.662 70.0585 9.438L71.4585 10.894C71.0945 11.2953 70.6465 11.6033 70.1145 11.818C69.5825 12.0233 68.9525 12.126 68.2245 12.126ZM73.231 12V4.412H75.765V6.624L75.387 5.994C75.611 5.42467 75.975 5 76.479 4.72C76.983 4.43067 77.5943 4.286 78.313 4.286V6.68C78.1916 6.66133 78.0843 6.652 77.991 6.652C77.907 6.64267 77.8136 6.638 77.711 6.638C77.1696 6.638 76.731 6.78733 76.395 7.086C76.059 7.37533 75.891 7.85133 75.891 8.514V12H73.231ZM94.9215 12L99.3595 2.2H100.746L105.198 12H103.728L99.7655 2.984H100.326L96.3635 12H94.9215ZM96.8115 9.55L97.1895 8.43H102.706L103.112 9.55H96.8115ZM110.905 12.112C110.158 12.112 109.467 11.9907 108.833 11.748C108.207 11.496 107.661 11.146 107.195 10.698C106.737 10.2407 106.378 9.70867 106.117 9.102C105.855 8.49533 105.725 7.828 105.725 7.1C105.725 6.372 105.855 5.70467 106.117 5.098C106.378 4.49133 106.742 3.964 107.209 3.516C107.675 3.05867 108.221 2.70867 108.847 2.466C109.481 2.214 110.172 2.088 110.919 2.088C111.675 2.088 112.37 2.21867 113.005 2.48C113.649 2.732 114.195 3.11 114.643 3.614L113.733 4.496C113.359 4.104 112.939 3.81467 112.473 3.628C112.006 3.432 111.507 3.334 110.975 3.334C110.424 3.334 109.911 3.42733 109.435 3.614C108.968 3.80067 108.562 4.062 108.217 4.398C107.871 4.734 107.601 5.13533 107.405 5.602C107.218 6.05933 107.125 6.55867 107.125 7.1C107.125 7.64133 107.218 8.14533 107.405 8.612C107.601 9.06933 107.871 9.466 108.217 9.802C108.562 10.138 108.968 10.3993 109.435 10.586C109.911 10.7727 110.424 10.866 110.975 10.866C111.507 10.866 112.006 10.7727 112.473 10.586C112.939 10.39 113.359 10.0913 113.733 9.69L114.643 10.572C114.195 11.076 113.649 11.4587 113.005 11.72C112.37 11.9813 111.67 12.112 110.905 12.112ZM123.668 2.2H125.068V12H123.668V2.2ZM118.04 12H116.64V2.2H118.04V12ZM123.794 7.632H117.9V6.414H123.794V7.632Z" fill="#424242"/>
3
+ <path d="M83.5935 12V10.586L83.4115 10.236V7.632C83.4115 7.212 83.2808 6.89 83.0195 6.666C82.7675 6.43267 82.3615 6.316 81.8015 6.316C81.4375 6.316 81.0688 6.37667 80.6955 6.498C80.3221 6.61 80.0048 6.76867 79.7435 6.974L78.8475 5.168C79.2768 4.888 79.7901 4.67333 80.3875 4.524C80.9941 4.36533 81.5961 4.286 82.1935 4.286C83.4255 4.286 84.3775 4.57067 85.0495 5.14C85.7308 5.7 86.0715 6.582 86.0715 7.786V12H83.5935ZM81.3535 12.126C80.7468 12.126 80.2335 12.0233 79.8135 11.818C79.3935 11.6127 79.0715 11.3327 78.8475 10.978C78.6328 10.6233 78.5255 10.2267 78.5255 9.788C78.5255 9.32133 78.6421 8.92 78.8755 8.584C79.1181 8.23867 79.4868 7.97733 79.9815 7.8C80.4761 7.61333 81.1155 7.52 81.8995 7.52H83.6915V8.906H82.2635C81.8341 8.906 81.5308 8.976 81.3535 9.116C81.1855 9.256 81.1015 9.44267 81.1015 9.676C81.1015 9.90933 81.1901 10.096 81.3675 10.236C81.5448 10.376 81.7875 10.446 82.0955 10.446C82.3848 10.446 82.6461 10.376 82.8795 10.236C83.1221 10.0867 83.2995 9.86267 83.4115 9.564L83.7755 10.544C83.6355 11.0667 83.3601 11.4633 82.9495 11.734C82.5481 11.9953 82.0161 12.126 81.3535 12.126ZM88.8705 12.126C88.4225 12.126 88.0445 11.9767 87.7365 11.678C87.4285 11.3793 87.2745 11.0013 87.2745 10.544C87.2745 10.068 87.4285 9.69 87.7365 9.41C88.0445 9.12067 88.4225 8.976 88.8705 8.976C89.3185 8.976 89.6965 9.12067 90.0045 9.41C90.3125 9.69 90.4665 10.068 90.4665 10.544C90.4665 11.0013 90.3125 11.3793 90.0045 11.678C89.6965 11.9767 89.3185 12.126 88.8705 12.126Z" fill="#3B73ED"/>
4
+ </svg>
@@ -0,0 +1,4 @@
1
+ <svg width="126" height="13" viewBox="0 0 126 13" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <path d="M4.53 12.112C3.242 12.112 2.22933 11.7433 1.492 11.006C0.754667 10.2687 0.386 9.19067 0.386 7.772V2.2H1.786V7.716C1.786 8.808 2.024 9.606 2.5 10.11C2.98533 10.614 3.66667 10.866 4.544 10.866C5.43067 10.866 6.112 10.614 6.588 10.11C7.07333 9.606 7.316 8.808 7.316 7.716V2.2H8.674V7.772C8.674 9.19067 8.30533 10.2687 7.568 11.006C6.84 11.7433 5.82733 12.112 4.53 12.112ZM13.4762 12.084C12.8602 12.084 12.2722 12 11.7122 11.832C11.1616 11.664 10.7276 11.4587 10.4102 11.216L10.9702 10.152C11.2876 10.3667 11.6796 10.5487 12.1462 10.698C12.6129 10.8473 13.0889 10.922 13.5742 10.922C14.1996 10.922 14.6476 10.8333 14.9182 10.656C15.1982 10.4787 15.3382 10.2313 15.3382 9.914C15.3382 9.68067 15.2542 9.49867 15.0862 9.368C14.9182 9.23733 14.6942 9.13933 14.4142 9.074C14.1436 9.00867 13.8402 8.95267 13.5042 8.906C13.1682 8.85 12.8322 8.78467 12.4962 8.71C12.1602 8.626 11.8522 8.514 11.5722 8.374C11.2922 8.22467 11.0682 8.024 10.9002 7.772C10.7322 7.51067 10.6482 7.16533 10.6482 6.736C10.6482 6.288 10.7742 5.896 11.0262 5.56C11.2782 5.224 11.6329 4.96733 12.0902 4.79C12.5569 4.60333 13.1076 4.51 13.7422 4.51C14.2276 4.51 14.7176 4.57067 15.2122 4.692C15.7162 4.804 16.1269 4.96733 16.4442 5.182L15.8702 6.246C15.5342 6.022 15.1842 5.868 14.8202 5.784C14.4562 5.7 14.0922 5.658 13.7282 5.658C13.1402 5.658 12.7016 5.756 12.4122 5.952C12.1229 6.13867 11.9782 6.38133 11.9782 6.68C11.9782 6.932 12.0622 7.128 12.2302 7.268C12.4076 7.39867 12.6316 7.50133 12.9022 7.576C13.1822 7.65067 13.4902 7.716 13.8262 7.772C14.1622 7.81867 14.4982 7.884 14.8342 7.968C15.1702 8.04267 15.4736 8.15 15.7442 8.29C16.0242 8.43 16.2482 8.626 16.4162 8.878C16.5936 9.13 16.6822 9.466 16.6822 9.886C16.6822 10.334 16.5516 10.7213 16.2902 11.048C16.0289 11.3747 15.6602 11.6313 15.1842 11.818C14.7082 11.9953 14.1389 12.084 13.4762 12.084ZM21.6659 12.084C20.8726 12.084 20.1726 11.9207 19.5659 11.594C18.9686 11.2673 18.5019 10.8193 18.1659 10.25C17.8392 9.68067 17.6759 9.02733 17.6759 8.29C17.6759 7.55267 17.8346 6.89933 18.1519 6.33C18.4786 5.76067 18.9219 5.31733 19.4819 5C20.0512 4.67333 20.6906 4.51 21.3999 4.51C22.1186 4.51 22.7532 4.66867 23.3039 4.986C23.8546 5.30333 24.2839 5.75133 24.5919 6.33C24.9092 6.89933 25.0679 7.56667 25.0679 8.332C25.0679 8.388 25.0632 8.45333 25.0539 8.528C25.0539 8.60267 25.0492 8.67267 25.0399 8.738H18.7259V7.772H24.3399L23.7939 8.108C23.8032 7.632 23.7052 7.20733 23.4999 6.834C23.2946 6.46067 23.0099 6.17133 22.6459 5.966C22.2912 5.75133 21.8759 5.644 21.3999 5.644C20.9332 5.644 20.5179 5.75133 20.1539 5.966C19.7899 6.17133 19.5052 6.46533 19.2999 6.848C19.0946 7.22133 18.9919 7.65067 18.9919 8.136V8.36C18.9919 8.85467 19.1039 9.298 19.3279 9.69C19.5612 10.0727 19.8832 10.3713 20.2939 10.586C20.7046 10.8007 21.1759 10.908 21.7079 10.908C22.1466 10.908 22.5432 10.8333 22.8979 10.684C23.2619 10.5347 23.5792 10.3107 23.8499 10.012L24.5919 10.88C24.2559 11.272 23.8359 11.5707 23.3319 11.776C22.8372 11.9813 22.2819 12.084 21.6659 12.084ZM34.1519 12.126C33.3119 12.126 32.5606 11.958 31.8979 11.622C31.2446 11.286 30.7313 10.824 30.3579 10.236C29.9846 9.63867 29.7979 8.95733 29.7979 8.192C29.7979 7.42667 29.9846 6.75 30.3579 6.162C30.7313 5.574 31.2446 5.11667 31.8979 4.79C32.5606 4.454 33.3119 4.286 34.1519 4.286C35.0106 4.286 35.7526 4.468 36.3779 4.832C37.0033 5.196 37.4466 5.70933 37.7079 6.372L35.6499 7.422C35.4726 7.06733 35.2533 6.81067 34.9919 6.652C34.7306 6.484 34.4459 6.4 34.1379 6.4C33.8299 6.4 33.5499 6.47 33.2979 6.61C33.0459 6.75 32.8453 6.95533 32.6959 7.226C32.5559 7.48733 32.4859 7.80933 32.4859 8.192C32.4859 8.584 32.5559 8.91533 32.6959 9.186C32.8453 9.45667 33.0459 9.662 33.2979 9.802C33.5499 9.942 33.8299 10.012 34.1379 10.012C34.4459 10.012 34.7306 9.93267 34.9919 9.774C35.2533 9.606 35.4726 9.34467 35.6499 8.99L37.7079 10.04C37.4466 10.7027 37.0033 11.216 36.3779 11.58C35.7526 11.944 35.0106 12.126 34.1519 12.126ZM43.3435 12V10.586L43.1615 10.236V7.632C43.1615 7.212 43.0308 6.89 42.7695 6.666C42.5175 6.43267 42.1115 6.316 41.5515 6.316C41.1875 6.316 40.8188 6.37667 40.4455 6.498C40.0721 6.61 39.7548 6.76867 39.4935 6.974L38.5975 5.168C39.0268 4.888 39.5401 4.67333 40.1375 4.524C40.7441 4.36533 41.3461 4.286 41.9435 4.286C43.1755 4.286 44.1275 4.57067 44.7995 5.14C45.4808 5.7 45.8215 6.582 45.8215 7.786V12H43.3435ZM41.1035 12.126C40.4968 12.126 39.9835 12.0233 39.5635 11.818C39.1435 11.6127 38.8215 11.3327 38.5975 10.978C38.3828 10.6233 38.2755 10.2267 38.2755 9.788C38.2755 9.32133 38.3921 8.92 38.6255 8.584C38.8681 8.23867 39.2368 7.97733 39.7315 7.8C40.2261 7.61333 40.8655 7.52 41.6495 7.52H43.4415V8.906H42.0135C41.5841 8.906 41.2808 8.976 41.1035 9.116C40.9355 9.256 40.8515 9.44267 40.8515 9.676C40.8515 9.90933 40.9401 10.096 41.1175 10.236C41.2948 10.376 41.5375 10.446 41.8455 10.446C42.1348 10.446 42.3961 10.376 42.6295 10.236C42.8721 10.0867 43.0495 9.86267 43.1615 9.564L43.5255 10.544C43.3855 11.0667 43.1101 11.4633 42.6995 11.734C42.2981 11.9953 41.7661 12.126 41.1035 12.126ZM47.5005 12V4.412H50.0345V6.624L49.6565 5.994C49.8805 5.42467 50.2445 5 50.7485 4.72C51.2525 4.43067 51.8638 4.286 52.5825 4.286V6.68C52.4612 6.66133 52.3538 6.652 52.2605 6.652C52.1765 6.64267 52.0832 6.638 51.9805 6.638C51.4392 6.638 51.0005 6.78733 50.6645 7.086C50.3285 7.37533 50.1605 7.85133 50.1605 8.514V12H47.5005ZM53.6802 12V4.412H56.2142V6.624L55.8362 5.994C56.0602 5.42467 56.4242 5 56.9282 4.72C57.4322 4.43067 58.0435 4.286 58.7622 4.286V6.68C58.6408 6.66133 58.5335 6.652 58.4402 6.652C58.3562 6.64267 58.2628 6.638 58.1602 6.638C57.6188 6.638 57.1802 6.78733 56.8442 7.086C56.5082 7.37533 56.3402 7.85133 56.3402 8.514V12H53.6802ZM59.8599 12V4.412H62.5199V12H59.8599ZM61.1899 3.572C60.7045 3.572 60.3125 3.43667 60.0139 3.166C59.7152 2.89533 59.5659 2.55933 59.5659 2.158C59.5659 1.75667 59.7152 1.42067 60.0139 1.15C60.3125 0.879333 60.7045 0.744 61.1899 0.744C61.6752 0.744 62.0672 0.874666 62.3659 1.136C62.6645 1.388 62.8139 1.71467 62.8139 2.116C62.8139 2.536 62.6645 2.886 62.3659 3.166C62.0765 3.43667 61.6845 3.572 61.1899 3.572ZM68.2245 12.126C67.3285 12.126 66.5445 11.958 65.8725 11.622C65.2099 11.2767 64.6919 10.81 64.3185 10.222C63.9545 9.62467 63.7725 8.948 63.7725 8.192C63.7725 7.436 63.9499 6.764 64.3045 6.176C64.6685 5.57867 65.1679 5.11667 65.8025 4.79C66.4372 4.454 67.1512 4.286 67.9445 4.286C68.6912 4.286 69.3725 4.44 69.9885 4.748C70.6045 5.04667 71.0945 5.49 71.4585 6.078C71.8225 6.666 72.0045 7.38 72.0045 8.22C72.0045 8.31333 71.9999 8.42067 71.9905 8.542C71.9812 8.66333 71.9719 8.77533 71.9625 8.878H65.9565V7.478H70.5485L69.5405 7.87C69.5499 7.52467 69.4845 7.226 69.3445 6.974C69.2139 6.722 69.0272 6.526 68.7845 6.386C68.5512 6.246 68.2759 6.176 67.9585 6.176C67.6412 6.176 67.3612 6.246 67.1185 6.386C66.8852 6.526 66.7032 6.72667 66.5725 6.988C66.4419 7.24 66.3765 7.53867 66.3765 7.884V8.29C66.3765 8.66333 66.4512 8.98533 66.6005 9.256C66.7592 9.52667 66.9832 9.73667 67.2725 9.886C67.5619 10.026 67.9072 10.096 68.3085 10.096C68.6819 10.096 68.9992 10.0447 69.2605 9.942C69.5312 9.83 69.7972 9.662 70.0585 9.438L71.4585 10.894C71.0945 11.2953 70.6465 11.6033 70.1145 11.818C69.5825 12.0233 68.9525 12.126 68.2245 12.126ZM73.231 12V4.412H75.765V6.624L75.387 5.994C75.611 5.42467 75.975 5 76.479 4.72C76.983 4.43067 77.5943 4.286 78.313 4.286V6.68C78.1916 6.66133 78.0843 6.652 77.991 6.652C77.907 6.64267 77.8136 6.638 77.711 6.638C77.1696 6.638 76.731 6.78733 76.395 7.086C76.059 7.37533 75.891 7.85133 75.891 8.514V12H73.231ZM94.9215 12L99.3595 2.2H100.746L105.198 12H103.728L99.7655 2.984H100.326L96.3635 12H94.9215ZM96.8115 9.55L97.1895 8.43H102.706L103.112 9.55H96.8115ZM110.905 12.112C110.158 12.112 109.467 11.9907 108.833 11.748C108.207 11.496 107.661 11.146 107.195 10.698C106.737 10.2407 106.378 9.70867 106.117 9.102C105.855 8.49533 105.725 7.828 105.725 7.1C105.725 6.372 105.855 5.70467 106.117 5.098C106.378 4.49133 106.742 3.964 107.209 3.516C107.675 3.05867 108.221 2.70867 108.847 2.466C109.481 2.214 110.172 2.088 110.919 2.088C111.675 2.088 112.37 2.21867 113.005 2.48C113.649 2.732 114.195 3.11 114.643 3.614L113.733 4.496C113.359 4.104 112.939 3.81467 112.473 3.628C112.006 3.432 111.507 3.334 110.975 3.334C110.424 3.334 109.911 3.42733 109.435 3.614C108.968 3.80067 108.562 4.062 108.217 4.398C107.871 4.734 107.601 5.13533 107.405 5.602C107.218 6.05933 107.125 6.55867 107.125 7.1C107.125 7.64133 107.218 8.14533 107.405 8.612C107.601 9.06933 107.871 9.466 108.217 9.802C108.562 10.138 108.968 10.3993 109.435 10.586C109.911 10.7727 110.424 10.866 110.975 10.866C111.507 10.866 112.006 10.7727 112.473 10.586C112.939 10.39 113.359 10.0913 113.733 9.69L114.643 10.572C114.195 11.076 113.649 11.4587 113.005 11.72C112.37 11.9813 111.67 12.112 110.905 12.112ZM123.668 2.2H125.068V12H123.668V2.2ZM118.04 12H116.64V2.2H118.04V12ZM123.794 7.632H117.9V6.414H123.794V7.632Z" fill="#AAAAAA"/>
3
+ <path d="M83.5935 12V10.586L83.4115 10.236V7.632C83.4115 7.212 83.2808 6.89 83.0195 6.666C82.7675 6.43267 82.3615 6.316 81.8015 6.316C81.4375 6.316 81.0688 6.37667 80.6955 6.498C80.3221 6.61 80.0048 6.76867 79.7435 6.974L78.8475 5.168C79.2768 4.888 79.7901 4.67333 80.3875 4.524C80.9941 4.36533 81.5961 4.286 82.1935 4.286C83.4255 4.286 84.3775 4.57067 85.0495 5.14C85.7308 5.7 86.0715 6.582 86.0715 7.786V12H83.5935ZM81.3535 12.126C80.7468 12.126 80.2335 12.0233 79.8135 11.818C79.3935 11.6127 79.0715 11.3327 78.8475 10.978C78.6328 10.6233 78.5255 10.2267 78.5255 9.788C78.5255 9.32133 78.6421 8.92 78.8755 8.584C79.1181 8.23867 79.4868 7.97733 79.9815 7.8C80.4761 7.61333 81.1155 7.52 81.8995 7.52H83.6915V8.906H82.2635C81.8341 8.906 81.5308 8.976 81.3535 9.116C81.1855 9.256 81.1015 9.44267 81.1015 9.676C81.1015 9.90933 81.1901 10.096 81.3675 10.236C81.5448 10.376 81.7875 10.446 82.0955 10.446C82.3848 10.446 82.6461 10.376 82.8795 10.236C83.1221 10.0867 83.2995 9.86267 83.4115 9.564L83.7755 10.544C83.6355 11.0667 83.3601 11.4633 82.9495 11.734C82.5481 11.9953 82.0161 12.126 81.3535 12.126ZM88.8705 12.126C88.4225 12.126 88.0445 11.9767 87.7365 11.678C87.4285 11.3793 87.2745 11.0013 87.2745 10.544C87.2745 10.068 87.4285 9.69 87.7365 9.41C88.0445 9.12067 88.4225 8.976 88.8705 8.976C89.3185 8.976 89.6965 9.12067 90.0045 9.41C90.3125 9.69 90.4665 10.068 90.4665 10.544C90.4665 11.0013 90.3125 11.3793 90.0045 11.678C89.6965 11.9767 89.3185 12.126 88.8705 12.126Z" fill="#92B1F5"/>
4
+ </svg>
@@ -0,0 +1,8 @@
1
+ <svg width="20" height="20" viewBox="0 0 20 20" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <path d="M8.1242 1.00002H2.26642C2.12654 0.999143 1.98786 1.02584 1.85831 1.0786C1.72875 1.13135 1.61088 1.20912 1.5114 1.30746C1.41192 1.4058 1.3328 1.52279 1.27857 1.65173C1.22433 1.78067 1.19604 1.91903 1.19531 2.05891V4.17669C1.19604 4.31657 1.22433 4.45493 1.27857 4.58387C1.3328 4.71281 1.41192 4.82979 1.5114 4.92814C1.61088 5.02648 1.72875 5.10425 1.85831 5.157C1.98786 5.20975 2.12654 5.23645 2.26642 5.23558H8.1242C8.40661 5.23705 8.67806 5.12636 8.8789 4.92781C9.07974 4.72926 9.19355 4.4591 9.19531 4.17669V2.05891C9.19355 1.7765 9.07974 1.50634 8.8789 1.30779C8.67806 1.10924 8.40661 0.998543 8.1242 1.00002Z" fill="black"/>
3
+ <path d="M17.7271 1.00001H11.8682C11.7284 0.999283 11.5898 1.02609 11.4604 1.07891C11.331 1.13173 11.2132 1.20952 11.1139 1.30785C11.0145 1.40618 10.9355 1.52311 10.8813 1.65198C10.8272 1.78084 10.7989 1.91912 10.7982 2.0589V4.17668C10.7989 4.31656 10.8272 4.45493 10.8814 4.58386C10.9357 4.7128 11.0148 4.82979 11.1143 4.92813C11.2137 5.02647 11.3316 5.10424 11.4612 5.15699C11.5907 5.20975 11.7294 5.23645 11.8693 5.23557H17.7271C18.0095 5.23705 18.2809 5.12635 18.4818 4.9278C18.6826 4.72925 18.7964 4.45909 18.7982 4.17668V2.0589C18.7964 1.77649 18.6826 1.50633 18.4818 1.30778C18.2809 1.10923 18.0095 0.998537 17.7271 1.00001Z" fill="black"/>
4
+ <path d="M2.26642 7.88804H8.1242C8.40661 7.88656 8.67806 7.99726 8.8789 8.19581C9.07974 8.39436 9.19355 8.66452 9.19531 8.94693V11.0647C9.19355 11.3471 9.07974 11.6173 8.8789 11.8158C8.67806 12.0144 8.40661 12.1251 8.1242 12.1236H2.26642C2.12654 12.1245 1.98786 12.0978 1.85831 12.045C1.72875 11.9923 1.61088 11.9145 1.5114 11.8162C1.41192 11.7178 1.3328 11.6008 1.27857 11.4719C1.22433 11.343 1.19604 11.2046 1.19531 11.0647V8.94693C1.19604 8.80705 1.22433 8.66869 1.27857 8.53975C1.3328 8.41081 1.41192 8.29383 1.5114 8.19548C1.61088 8.09714 1.72875 8.01937 1.85831 7.96662C1.98786 7.91387 2.12654 7.88716 2.26642 7.88804Z" fill="black"/>
5
+ <path d="M17.7271 7.88804H11.8693C11.7294 7.88716 11.5907 7.91387 11.4612 7.96662C11.3316 8.01937 11.2137 8.09714 11.1143 8.19548C11.0148 8.29383 10.9357 8.41081 10.8814 8.53975C10.8272 8.66869 10.7989 8.80705 10.7982 8.94693V11.0647C10.7989 11.2046 10.8272 11.343 10.8814 11.4719C10.9357 11.6008 11.0148 11.7178 11.1143 11.8162C11.2137 11.9145 11.3316 11.9923 11.4612 12.045C11.5907 12.0978 11.7294 12.1245 11.8693 12.1236H17.7271C18.0095 12.1251 18.2809 12.0144 18.4818 11.8158C18.6826 11.6173 18.7964 11.3471 18.7982 11.0647V8.94693C18.7964 8.66452 18.6826 8.39436 18.4818 8.19581C18.2809 7.99726 18.0095 7.88656 17.7271 7.88804Z" fill="black"/>
6
+ <path d="M2.26642 14.7696H8.1242C8.40661 14.7681 8.67806 14.8788 8.8789 15.0773C9.07974 15.2759 9.19355 15.546 9.19531 15.8284V17.9462C9.19355 18.2286 9.07974 18.4988 8.8789 18.6973C8.67806 18.8959 8.40661 19.0066 8.1242 19.0051H2.26642C2.12654 19.006 1.98786 18.9793 1.85831 18.9265C1.72875 18.8738 1.61088 18.796 1.5114 18.6977C1.41192 18.5993 1.3328 18.4823 1.27857 18.3534C1.22433 18.2245 1.19604 18.0861 1.19531 17.9462V15.8284C1.19604 15.6886 1.22433 15.5502 1.27857 15.4213C1.3328 15.2923 1.41192 15.1753 1.5114 15.077C1.61088 14.9787 1.72875 14.9009 1.85831 14.8481C1.98786 14.7954 2.12654 14.7687 2.26642 14.7696Z" fill="black"/>
7
+ <path d="M17.7271 14.7696H11.8693C11.7294 14.7687 11.5907 14.7954 11.4612 14.8481C11.3316 14.9009 11.2137 14.9787 11.1143 15.077C11.0148 15.1753 10.9357 15.2923 10.8814 15.4213C10.8272 15.5502 10.7989 15.6886 10.7982 15.8284V17.9462C10.7989 18.0861 10.8272 18.2245 10.8814 18.3534C10.9357 18.4823 11.0148 18.5993 11.1143 18.6977C11.2137 18.796 11.3316 18.8738 11.4612 18.9265C11.5907 18.9793 11.7294 19.006 11.8693 19.0051H17.7271C18.0095 19.0066 18.2809 18.8959 18.4818 18.6973C18.6826 18.4988 18.7964 18.2286 18.7982 17.9462V15.8284C18.7964 15.546 18.6826 15.2759 18.4818 15.0773C18.2809 14.8788 18.0095 14.7681 17.7271 14.7696Z" fill="black"/>
8
+ </svg>
@@ -0,0 +1,3 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" width="14" height="14" viewBox="0 0 14 14">
2
+ <path id="Path_33818" data-name="Path 33818" d="M633.115,349.709h0a7,7,0,1,0,7,7A7,7,0,0,0,633.113,349.709Zm-3.678,10.675a5.189,5.189,0,0,1-.605-6.6l7.267,7.162A5.185,5.185,0,0,1,629.437,360.384Zm7.942-.717-7.277-7.172a5.185,5.185,0,0,1,7.277,7.172Z" transform="translate(-626.113 -349.709)" fill="#dadada"/>
3
+ </svg>
@@ -1,14 +0,0 @@
1
- export var DropdownMenuStringEnum;
2
- (function (DropdownMenuStringEnum) {
3
- // actions
4
- DropdownMenuStringEnum["CLOSE"] = "Close";
5
- DropdownMenuStringEnum["OPEN"] = "Open";
6
- // positions
7
- DropdownMenuStringEnum["RIGHT_TOP"] = "right-top";
8
- DropdownMenuStringEnum["BOTTOM_RIGHT"] = "bottom-right";
9
- // types
10
- DropdownMenuStringEnum["DOTS_MENU_TYPE"] = "dots-menu-type";
11
- DropdownMenuStringEnum["HAMBURGER_MENU_TYPE"] = "hamburger-menu-type";
12
- DropdownMenuStringEnum["SELECT_MENU_TYPE"] = "select-menu-type";
13
- })(DropdownMenuStringEnum || (DropdownMenuStringEnum = {}));
14
- //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiZHJvcGRvd24tbWVudS1zdHJpbmcuZW51bS5qcyIsInNvdXJjZVJvb3QiOiIiLCJzb3VyY2VzIjpbIi4uLy4uLy4uLy4uLy4uLy4uLy4uL3Byb2plY3RzL2NhLWNvbXBvbmVudHMvc3JjL2xpYi9jb21wb25lbnRzL2NhLWRyb3Bkb3duLW1lbnUvZW51bXMvZHJvcGRvd24tbWVudS1zdHJpbmcuZW51bS50cyJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiQUFBQSxNQUFNLENBQU4sSUFBWSxzQkFhWDtBQWJELFdBQVksc0JBQXNCO0lBQzlCLFVBQVU7SUFDVix5Q0FBZSxDQUFBO0lBQ2YsdUNBQWEsQ0FBQTtJQUViLFlBQVk7SUFDWixpREFBdUIsQ0FBQTtJQUN2Qix1REFBNkIsQ0FBQTtJQUU3QixRQUFRO0lBQ1IsMkRBQWlDLENBQUE7SUFDakMscUVBQTJDLENBQUE7SUFDM0MsK0RBQXFDLENBQUE7QUFDekMsQ0FBQyxFQWJXLHNCQUFzQixLQUF0QixzQkFBc0IsUUFhakMiLCJzb3VyY2VzQ29udGVudCI6WyJleHBvcnQgZW51bSBEcm9wZG93bk1lbnVTdHJpbmdFbnVtIHtcbiAgICAvLyBhY3Rpb25zXG4gICAgQ0xPU0UgPSAnQ2xvc2UnLFxuICAgIE9QRU4gPSAnT3BlbicsXG5cbiAgICAvLyBwb3NpdGlvbnNcbiAgICBSSUdIVF9UT1AgPSAncmlnaHQtdG9wJyxcbiAgICBCT1RUT01fUklHSFQgPSAnYm90dG9tLXJpZ2h0JyxcblxuICAgIC8vIHR5cGVzXG4gICAgRE9UU19NRU5VX1RZUEUgPSAnZG90cy1tZW51LXR5cGUnLFxuICAgIEhBTUJVUkdFUl9NRU5VX1RZUEUgPSAnaGFtYnVyZ2VyLW1lbnUtdHlwZScsXG4gICAgU0VMRUNUX01FTlVfVFlQRSA9ICdzZWxlY3QtbWVudS10eXBlJyxcbn1cbiJdfQ==
@@ -1,2 +0,0 @@
1
- export {};
2
- //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiZHJvcGRvd24tbWVudS1pdGVtLm1vZGVsLmpzIiwic291cmNlUm9vdCI6IiIsInNvdXJjZXMiOlsiLi4vLi4vLi4vLi4vLi4vLi4vLi4vcHJvamVjdHMvY2EtY29tcG9uZW50cy9zcmMvbGliL2NvbXBvbmVudHMvY2EtZHJvcGRvd24tbWVudS9tb2RlbHMvZHJvcGRvd24tbWVudS1pdGVtLm1vZGVsLnRzIl0sIm5hbWVzIjpbXSwibWFwcGluZ3MiOiIiLCJzb3VyY2VzQ29udGVudCI6WyJleHBvcnQgaW50ZXJmYWNlIERyb3Bkb3duTWVudUl0ZW0ge1xuICAgIGlkPzogbnVtYmVyO1xuICAgIHRpdGxlOiBzdHJpbmc7XG4gICAgdGl0bGVPcHRpb25hbENsYXNzPzogc3RyaW5nO1xuICAgIHR5cGU/OiBzdHJpbmc7XG4gICAgc3ZnVXJsPzogc3RyaW5nO1xuICAgIHN2Z0NsYXNzPzogc3RyaW5nO1xuICAgIGhhc0JvcmRlcj86IGJvb2xlYW47XG4gICAgaXNEaXNhYmxlZD86IGJvb2xlYW47XG4gICAgaW5uZXJEcm9wZG93bkNvbnRlbnQ/OiB7IHRpdGxlOiBzdHJpbmc7IHR5cGU6IHN0cmluZyB9W107XG4gICAgaXNTZWxlY3RNZW51VHlwZUFjdGlvbkl0ZW0/OiBib29sZWFuO1xufVxuIl19
@@ -1,2 +0,0 @@
1
- export {};
2
- //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiZHJvcGRvd24tbWVudS1vcHRpb24tZW1pdC5tb2RlbC5qcyIsInNvdXJjZVJvb3QiOiIiLCJzb3VyY2VzIjpbIi4uLy4uLy4uLy4uLy4uLy4uLy4uL3Byb2plY3RzL2NhLWNvbXBvbmVudHMvc3JjL2xpYi9jb21wb25lbnRzL2NhLWRyb3Bkb3duLW1lbnUvbW9kZWxzL2Ryb3Bkb3duLW1lbnUtb3B0aW9uLWVtaXQubW9kZWwudHMiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6IiIsInNvdXJjZXNDb250ZW50IjpbImV4cG9ydCBpbnRlcmZhY2UgRHJvcGRvd25NZW51T3B0aW9uRW1pdCB7XG4gICAgaWQ/OiBudW1iZXI7XG4gICAgdHlwZT86IHN0cmluZztcbiAgICBpc0FjdGl2ZT86IGJvb2xlYW47XG59XG4iXX0=
@@ -1,3 +0,0 @@
1
- export * from './dropdown-menu-item.model';
2
- export * from './dropdown-menu-option-emit.model';
3
- //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiaW5kZXguanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi8uLi8uLi8uLi8uLi8uLi8uLi9wcm9qZWN0cy9jYS1jb21wb25lbnRzL3NyYy9saWIvY29tcG9uZW50cy9jYS1kcm9wZG93bi1tZW51L21vZGVscy9pbmRleC50cyJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiQUFBQSxjQUFjLDRCQUE0QixDQUFDO0FBQzNDLGNBQWMsbUNBQW1DLENBQUMiLCJzb3VyY2VzQ29udGVudCI6WyJleHBvcnQgKiBmcm9tICcuL2Ryb3Bkb3duLW1lbnUtaXRlbS5tb2RlbCc7XG5leHBvcnQgKiBmcm9tICcuL2Ryb3Bkb3duLW1lbnUtb3B0aW9uLWVtaXQubW9kZWwnO1xuIl19
@@ -1,20 +0,0 @@
1
- export var DropdownMenuStringEnum;
2
- (function (DropdownMenuStringEnum) {
3
- // titles
4
- DropdownMenuStringEnum["EDIT"] = "Edit";
5
- DropdownMenuStringEnum["VIEW_DETAILS"] = "View Details";
6
- DropdownMenuStringEnum["SHARE"] = "Share";
7
- DropdownMenuStringEnum["PRINT"] = "Print";
8
- DropdownMenuStringEnum["DELETE"] = "Delete";
9
- DropdownMenuStringEnum["UNASSIGN"] = "Unassign";
10
- // types
11
- DropdownMenuStringEnum["EDIT_TYPE"] = "edit";
12
- DropdownMenuStringEnum["VIEW_DETAILS_TYPE"] = "view-details";
13
- DropdownMenuStringEnum["SHARE_TYPE"] = "share";
14
- DropdownMenuStringEnum["PRINT_TYPE"] = "print";
15
- DropdownMenuStringEnum["DELETE_TYPE"] = "delete";
16
- DropdownMenuStringEnum["UNASSIGN_TYPE"] = "unassign";
17
- // svg classes
18
- DropdownMenuStringEnum["REGULAR"] = "regular";
19
- })(DropdownMenuStringEnum || (DropdownMenuStringEnum = {}));
20
- //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiZHJvcGRvd24tbWVudS1zdHJpbmcuZW51bS5qcyIsInNvdXJjZVJvb3QiOiIiLCJzb3VyY2VzIjpbIi4uLy4uLy4uLy4uLy4uL3Byb2plY3RzL2NhLWNvbXBvbmVudHMvc3JjL2xpYi9lbnVtcy9kcm9wZG93bi1tZW51LXN0cmluZy5lbnVtLnRzIl0sIm5hbWVzIjpbXSwibWFwcGluZ3MiOiJBQUFBLE1BQU0sQ0FBTixJQUFZLHNCQW1CWDtBQW5CRCxXQUFZLHNCQUFzQjtJQUM5QixTQUFTO0lBQ1QsdUNBQWEsQ0FBQTtJQUNiLHVEQUE2QixDQUFBO0lBQzdCLHlDQUFlLENBQUE7SUFDZix5Q0FBZSxDQUFBO0lBQ2YsMkNBQWlCLENBQUE7SUFDakIsK0NBQXFCLENBQUE7SUFFckIsUUFBUTtJQUNSLDRDQUFrQixDQUFBO0lBQ2xCLDREQUFrQyxDQUFBO0lBQ2xDLDhDQUFvQixDQUFBO0lBQ3BCLDhDQUFvQixDQUFBO0lBQ3BCLGdEQUFzQixDQUFBO0lBQ3RCLG9EQUEwQixDQUFBO0lBRTFCLGNBQWM7SUFDZCw2Q0FBbUIsQ0FBQTtBQUN2QixDQUFDLEVBbkJXLHNCQUFzQixLQUF0QixzQkFBc0IsUUFtQmpDIiwic291cmNlc0NvbnRlbnQiOlsiZXhwb3J0IGVudW0gRHJvcGRvd25NZW51U3RyaW5nRW51bSB7XG4gICAgLy8gdGl0bGVzXG4gICAgRURJVCA9ICdFZGl0JyxcbiAgICBWSUVXX0RFVEFJTFMgPSAnVmlldyBEZXRhaWxzJyxcbiAgICBTSEFSRSA9ICdTaGFyZScsXG4gICAgUFJJTlQgPSAnUHJpbnQnLFxuICAgIERFTEVURSA9ICdEZWxldGUnLFxuICAgIFVOQVNTSUdOID0gJ1VuYXNzaWduJyxcblxuICAgIC8vIHR5cGVzXG4gICAgRURJVF9UWVBFID0gJ2VkaXQnLFxuICAgIFZJRVdfREVUQUlMU19UWVBFID0gJ3ZpZXctZGV0YWlscycsXG4gICAgU0hBUkVfVFlQRSA9ICdzaGFyZScsXG4gICAgUFJJTlRfVFlQRSA9ICdwcmludCcsXG4gICAgREVMRVRFX1RZUEUgPSAnZGVsZXRlJyxcbiAgICBVTkFTU0lHTl9UWVBFID0gJ3VuYXNzaWduJyxcblxuICAgIC8vIHN2ZyBjbGFzc2VzXG4gICAgUkVHVUxBUiA9ICdyZWd1bGFyJyxcbn1cbiJdfQ==
@@ -1,2 +0,0 @@
1
- export * from './dropdown-menu-item.model';
2
- export * from './dropdown-menu-option-emit.model';