pruebatlp20v17-design-system 0.0.1

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 (136) hide show
  1. package/README.md +25 -0
  2. package/esm2022/lib/algeciras-port-logo/algeciras-port-logo.component.mjs +21 -0
  3. package/esm2022/lib/bottom-panel/bottom-panel-content.directive.mjs +14 -0
  4. package/esm2022/lib/bottom-panel/bottom-panel-footer.component.mjs +24 -0
  5. package/esm2022/lib/bottom-panel/bottom-panel-header-heading.directive.mjs +14 -0
  6. package/esm2022/lib/bottom-panel/bottom-panel-header-label.directive.mjs +14 -0
  7. package/esm2022/lib/bottom-panel/bottom-panel-header.component.mjs +30 -0
  8. package/esm2022/lib/bottom-panel/bottom-panel.component.mjs +68 -0
  9. package/esm2022/lib/button/button.component.mjs +24 -0
  10. package/esm2022/lib/checkbox/checkbox.component.mjs +79 -0
  11. package/esm2022/lib/combobox/combobox.component.mjs +185 -0
  12. package/esm2022/lib/data-table/data-table-container.component.mjs +15 -0
  13. package/esm2022/lib/data-table/data-table-header-item.class.mjs +7 -0
  14. package/esm2022/lib/data-table/data-table-item.class.mjs +7 -0
  15. package/esm2022/lib/data-table/data-table-model.class.mjs +4 -0
  16. package/esm2022/lib/data-table/data-table-toolbar-content.component.mjs +15 -0
  17. package/esm2022/lib/data-table/data-table-toolbar.component.mjs +26 -0
  18. package/esm2022/lib/data-table/data-table.component.mjs +76 -0
  19. package/esm2022/lib/datepicker/datepicker.component.mjs +114 -0
  20. package/esm2022/lib/design-system.module.mjs +311 -0
  21. package/esm2022/lib/expandable-tile/expandable-tile.component.mjs +155 -0
  22. package/esm2022/lib/global-styles.component.mjs +11 -0
  23. package/esm2022/lib/header/hamburger.component.mjs +16 -0
  24. package/esm2022/lib/header/header-action.component.mjs +27 -0
  25. package/esm2022/lib/header/header-global.component.mjs +24 -0
  26. package/esm2022/lib/header/header.component.mjs +16 -0
  27. package/esm2022/lib/icons/icon.directive.mjs +39 -0
  28. package/esm2022/lib/icons/icon.service.mjs +2 -0
  29. package/esm2022/lib/input/input.component.mjs +98 -0
  30. package/esm2022/lib/link/link.directive.mjs +14 -0
  31. package/esm2022/lib/loading/loading.component.mjs +16 -0
  32. package/esm2022/lib/modal/base-modal.class.mjs +4 -0
  33. package/esm2022/lib/modal/modal-content.directive.mjs +14 -0
  34. package/esm2022/lib/modal/modal-footer.component.mjs +24 -0
  35. package/esm2022/lib/modal/modal-header-heading.directive.mjs +14 -0
  36. package/esm2022/lib/modal/modal-header-label.directive.mjs +14 -0
  37. package/esm2022/lib/modal/modal-header.component.mjs +30 -0
  38. package/esm2022/lib/modal/modal.component.mjs +27 -0
  39. package/esm2022/lib/modal/modal.service.mjs +11 -0
  40. package/esm2022/lib/modal/placeholder.component.mjs +16 -0
  41. package/esm2022/lib/notification/notification.component.mjs +24 -0
  42. package/esm2022/lib/notification/notification.service.mjs +19 -0
  43. package/esm2022/lib/notification/toast.component.mjs +27 -0
  44. package/esm2022/lib/overflow-menu/overflow-menu-option.component.mjs +13 -0
  45. package/esm2022/lib/overflow-menu/overflow-menu.component.mjs +19 -0
  46. package/esm2022/lib/pagination/pagination-model.class.mjs +4 -0
  47. package/esm2022/lib/pagination/pagination-translations.mjs +2 -0
  48. package/esm2022/lib/pagination/pagination.component.mjs +57 -0
  49. package/esm2022/lib/progress-indicator/progress-indicator.component.mjs +33 -0
  50. package/esm2022/lib/radio/radio-group.component.mjs +94 -0
  51. package/esm2022/lib/radio/radio.component.mjs +77 -0
  52. package/esm2022/lib/search/search.component.mjs +30 -0
  53. package/esm2022/lib/select/select.component.mjs +73 -0
  54. package/esm2022/lib/side-panel/side-panel.component.mjs +68 -0
  55. package/esm2022/lib/sidenav/sidenav-item.component.mjs +13 -0
  56. package/esm2022/lib/sidenav/sidenav-menu.component.mjs +25 -0
  57. package/esm2022/lib/sidenav/sidenav.component.mjs +13 -0
  58. package/esm2022/lib/subheader/subheader.component.mjs +11 -0
  59. package/esm2022/lib/table/table.directive.mjs +17 -0
  60. package/esm2022/lib/tabs/tab.component.mjs +135 -0
  61. package/esm2022/lib/tabs/tabs.component.mjs +100 -0
  62. package/esm2022/lib/tag/tag.component.mjs +31 -0
  63. package/esm2022/lib/tag-filter/tag-filter.component.mjs +16 -0
  64. package/esm2022/lib/textarea/textarea.component.mjs +86 -0
  65. package/esm2022/lib/toggle/toggle.component.mjs +67 -0
  66. package/esm2022/pruebatlp20v17-design-system.mjs +5 -0
  67. package/esm2022/public-api.mjs +75 -0
  68. package/fesm2022/pruebatlp20v17-design-system.mjs +2421 -0
  69. package/fesm2022/pruebatlp20v17-design-system.mjs.map +1 -0
  70. package/index.d.ts +5 -0
  71. package/lib/algeciras-port-logo/algeciras-port-logo.component.d.ts +8 -0
  72. package/lib/bottom-panel/bottom-panel-content.directive.d.ts +6 -0
  73. package/lib/bottom-panel/bottom-panel-footer.component.d.ts +6 -0
  74. package/lib/bottom-panel/bottom-panel-header-heading.directive.d.ts +6 -0
  75. package/lib/bottom-panel/bottom-panel-header-label.directive.d.ts +6 -0
  76. package/lib/bottom-panel/bottom-panel-header.component.d.ts +6 -0
  77. package/lib/bottom-panel/bottom-panel.component.d.ts +10 -0
  78. package/lib/button/button.component.d.ts +9 -0
  79. package/lib/checkbox/checkbox.component.d.ts +26 -0
  80. package/lib/combobox/combobox.component.d.ts +65 -0
  81. package/lib/data-table/data-table-container.component.d.ts +6 -0
  82. package/lib/data-table/data-table-header-item.class.d.ts +15 -0
  83. package/lib/data-table/data-table-item.class.d.ts +13 -0
  84. package/lib/data-table/data-table-model.class.d.ts +3 -0
  85. package/lib/data-table/data-table-toolbar-content.component.d.ts +6 -0
  86. package/lib/data-table/data-table-toolbar.component.d.ts +7 -0
  87. package/lib/data-table/data-table.component.d.ts +25 -0
  88. package/lib/datepicker/datepicker.component.d.ts +43 -0
  89. package/lib/design-system.module.d.ts +87 -0
  90. package/lib/expandable-tile/expandable-tile.component.d.ts +20 -0
  91. package/lib/global-styles.component.d.ts +5 -0
  92. package/lib/header/hamburger.component.d.ts +6 -0
  93. package/lib/header/header-action.component.d.ts +7 -0
  94. package/lib/header/header-global.component.d.ts +6 -0
  95. package/lib/header/header.component.d.ts +7 -0
  96. package/lib/icons/icon.directive.d.ts +16 -0
  97. package/lib/icons/icon.service.d.ts +1 -0
  98. package/lib/input/input.component.d.ts +42 -0
  99. package/lib/link/link.directive.d.ts +6 -0
  100. package/lib/loading/loading.component.d.ts +7 -0
  101. package/lib/modal/base-modal.class.d.ts +3 -0
  102. package/lib/modal/modal-content.directive.d.ts +6 -0
  103. package/lib/modal/modal-footer.component.d.ts +6 -0
  104. package/lib/modal/modal-header-heading.directive.d.ts +6 -0
  105. package/lib/modal/modal-header-label.directive.d.ts +6 -0
  106. package/lib/modal/modal-header.component.d.ts +6 -0
  107. package/lib/modal/modal.component.d.ts +11 -0
  108. package/lib/modal/modal.service.d.ts +6 -0
  109. package/lib/modal/placeholder.component.d.ts +6 -0
  110. package/lib/notification/notification.component.d.ts +9 -0
  111. package/lib/notification/notification.service.d.ts +10 -0
  112. package/lib/notification/toast.component.d.ts +10 -0
  113. package/lib/overflow-menu/overflow-menu-option.component.d.ts +6 -0
  114. package/lib/overflow-menu/overflow-menu.component.d.ts +9 -0
  115. package/lib/pagination/pagination-model.class.d.ts +3 -0
  116. package/lib/pagination/pagination-translations.d.ts +3 -0
  117. package/lib/pagination/pagination.component.d.ts +37 -0
  118. package/lib/progress-indicator/progress-indicator.component.d.ts +29 -0
  119. package/lib/radio/radio-group.component.d.ts +25 -0
  120. package/lib/radio/radio.component.d.ts +24 -0
  121. package/lib/search/search.component.d.ts +7 -0
  122. package/lib/select/select.component.d.ts +23 -0
  123. package/lib/side-panel/side-panel.component.d.ts +9 -0
  124. package/lib/sidenav/sidenav-item.component.d.ts +6 -0
  125. package/lib/sidenav/sidenav-menu.component.d.ts +11 -0
  126. package/lib/sidenav/sidenav.component.d.ts +7 -0
  127. package/lib/subheader/subheader.component.d.ts +5 -0
  128. package/lib/table/table.directive.d.ts +7 -0
  129. package/lib/tabs/tab.component.d.ts +67 -0
  130. package/lib/tabs/tabs.component.d.ts +60 -0
  131. package/lib/tag/tag.component.d.ts +12 -0
  132. package/lib/tag-filter/tag-filter.component.d.ts +7 -0
  133. package/lib/textarea/textarea.component.d.ts +26 -0
  134. package/lib/toggle/toggle.component.d.ts +21 -0
  135. package/package.json +30 -0
  136. package/public-api.d.ts +64 -0
@@ -0,0 +1,65 @@
1
+ import { EventEmitter } from "@angular/core";
2
+ import { ControlValueAccessor } from "@angular/forms";
3
+ import { ListItem as IbmListItem } from "carbon-components-angular/dropdown";
4
+ import * as i0 from "@angular/core";
5
+ export type ComboboxItem = Pick<IbmListItem, "content" | "disabled"> & Record<string, any>;
6
+ export type ComboboxValue = string | ComboboxItem | null | Array<string> | Array<ComboboxItem>;
7
+ type INTERNAL_SelectedIbmListItem = IbmListItem & {
8
+ selected: true;
9
+ };
10
+ type INTERNAL_Value = string | INTERNAL_SelectedIbmListItem | null | Array<string> | Array<INTERNAL_SelectedIbmListItem>;
11
+ export declare class ComboboxComponent implements ControlValueAccessor {
12
+ items: Array<ComboboxItem>;
13
+ /**
14
+ * When `true`, the dropdown is open on top of the input
15
+ *
16
+ * @default false
17
+ */
18
+ dropUp: boolean;
19
+ disabled: boolean;
20
+ /**
21
+ * Specifies the property to be used for `ngModel`
22
+ */
23
+ itemValueKey: string | undefined;
24
+ /**
25
+ * Combo box type (supporting single or multi selection of items).
26
+ */
27
+ type: "single" | "multi";
28
+ label: string;
29
+ helperText: string;
30
+ invalid: boolean;
31
+ invalidText: string;
32
+ placeholder: string;
33
+ size: "sm" | "md" | "lg";
34
+ /**
35
+ * Specify feedback (mode) of the selection.
36
+ * `top`: selected item jumps to top
37
+ * `fixed`: selected item stays at its position
38
+ * @default `top-after-reopen`: selected item jump to top after reopen dropdown
39
+ */
40
+ selectionFeedback: "top" | "fixed" | "top-after-reopen";
41
+ /** Emits an empty event when the menu is closed */
42
+ close: EventEmitter<void>;
43
+ /** Emits the search string from the input */
44
+ search: EventEmitter<string>;
45
+ /** Emits an event when the clear button is clicked. */
46
+ clear: EventEmitter<Event>;
47
+ _value: INTERNAL_Value;
48
+ isTouched: boolean;
49
+ _onChangeCallback: ((value: ComboboxValue) => void) | undefined;
50
+ _onTouchCallback: ((event: Event) => void) | undefined;
51
+ handleChange(newValue: INTERNAL_Value): void;
52
+ writeValue(newValue: ComboboxValue): void;
53
+ mapToInternalValue(value: ComboboxItem): INTERNAL_SelectedIbmListItem;
54
+ mapToConsumerValue(ibmListItem: INTERNAL_SelectedIbmListItem): ComboboxItem;
55
+ handleTouch(event: Event): void;
56
+ registerOnChange(fn: any): void;
57
+ registerOnTouched(fn: any): void;
58
+ setDisabledState(isDisabled: boolean): void;
59
+ onClose(): void;
60
+ onSearch(value: string): void;
61
+ onClear(): void;
62
+ static ɵfac: i0.ɵɵFactoryDeclaration<ComboboxComponent, never>;
63
+ static ɵcmp: i0.ɵɵComponentDeclaration<ComboboxComponent, "tlp-combobox", never, { "items": { "alias": "items"; "required": false; }; "dropUp": { "alias": "dropUp"; "required": false; }; "disabled": { "alias": "disabled"; "required": false; }; "itemValueKey": { "alias": "itemValueKey"; "required": false; }; "type": { "alias": "type"; "required": false; }; "label": { "alias": "label"; "required": false; }; "helperText": { "alias": "helperText"; "required": false; }; "invalid": { "alias": "invalid"; "required": false; }; "invalidText": { "alias": "invalidText"; "required": false; }; "placeholder": { "alias": "placeholder"; "required": false; }; "size": { "alias": "size"; "required": false; }; "selectionFeedback": { "alias": "selectionFeedback"; "required": false; }; }, { "close": "close"; "search": "search"; "clear": "clear"; }, never, never, false, never>;
64
+ }
65
+ export {};
@@ -0,0 +1,6 @@
1
+ import { TableContainer as IbmTableContainer } from "carbon-components-angular/table";
2
+ import * as i0 from "@angular/core";
3
+ export declare class DataTableContainerComponent extends IbmTableContainer {
4
+ static ɵfac: i0.ɵɵFactoryDeclaration<DataTableContainerComponent, never>;
5
+ static ɵcmp: i0.ɵɵComponentDeclaration<DataTableContainerComponent, "tlp-data-table-container", never, {}, {}, never, ["*"], false, never>;
6
+ }
@@ -0,0 +1,15 @@
1
+ import { TemplateRef } from "@angular/core";
2
+ import { TableHeaderItem as IbmTableHeaderItem } from "carbon-components-angular/table";
3
+ interface Options {
4
+ data?: unknown;
5
+ sortable?: boolean;
6
+ style?: {
7
+ width: string;
8
+ };
9
+ template?: TemplateRef<any>;
10
+ visible?: boolean;
11
+ }
12
+ export declare class DataTableHeaderItem extends IbmTableHeaderItem {
13
+ constructor(options: Options);
14
+ }
15
+ export {};
@@ -0,0 +1,13 @@
1
+ import { TemplateRef } from "@angular/core";
2
+ import { TableItem as IbmTableItem } from "carbon-components-angular/table";
3
+ interface Options {
4
+ data?: unknown;
5
+ template?: TemplateRef<unknown>;
6
+ expandedTemplate?: TemplateRef<unknown>;
7
+ expandedData?: unknown;
8
+ expandAsTable?: boolean;
9
+ }
10
+ export declare class DataTableItem extends IbmTableItem {
11
+ constructor(options: Options);
12
+ }
13
+ export {};
@@ -0,0 +1,3 @@
1
+ import { TableModel as IbmTableModel } from "carbon-components-angular/table";
2
+ export declare class DataTableModel extends IbmTableModel {
3
+ }
@@ -0,0 +1,6 @@
1
+ import { TableToolbarContent as IbmTableToolbarContent } from "carbon-components-angular/table";
2
+ import * as i0 from "@angular/core";
3
+ export declare class DataTableToolbarContentComponent extends IbmTableToolbarContent {
4
+ static ɵfac: i0.ɵɵFactoryDeclaration<DataTableToolbarContentComponent, never>;
5
+ static ɵcmp: i0.ɵɵComponentDeclaration<DataTableToolbarContentComponent, "tlp-data-table-toolbar-content", never, {}, {}, never, ["*"], false, never>;
6
+ }
@@ -0,0 +1,7 @@
1
+ import { DataTableModel } from "./data-table-model.class";
2
+ import * as i0 from "@angular/core";
3
+ export declare class DataTableToolbarComponent {
4
+ model?: DataTableModel;
5
+ static ɵfac: i0.ɵɵFactoryDeclaration<DataTableToolbarComponent, never>;
6
+ static ɵcmp: i0.ɵɵComponentDeclaration<DataTableToolbarComponent, "tlp-data-table-toolbar", never, { "model": { "alias": "model"; "required": false; }; }, {}, never, ["*"], false, never>;
7
+ }
@@ -0,0 +1,25 @@
1
+ import { EventEmitter } from "@angular/core";
2
+ import { DataTableModel } from "./data-table-model.class";
3
+ import * as i0 from "@angular/core";
4
+ export declare class DataTableComponent {
5
+ model: DataTableModel;
6
+ showSelectionColumn: boolean;
7
+ sortable: boolean;
8
+ striped: boolean;
9
+ stickyHeader: boolean;
10
+ size: "sm" | "md" | "lg";
11
+ sort: EventEmitter<number>;
12
+ selectAll: EventEmitter<Object>;
13
+ deselectAll: EventEmitter<Object>;
14
+ selectRow: EventEmitter<Object>;
15
+ deselectRow: EventEmitter<Object>;
16
+ rowClick: EventEmitter<number>;
17
+ doSort(index: number): void;
18
+ onSelectAll(model: Object): void;
19
+ onDeselectAll(model: Object): void;
20
+ onSelectRow(event: Object): void;
21
+ onDeselectRow(event: Object): void;
22
+ onRowClick(index: number): void;
23
+ static ɵfac: i0.ɵɵFactoryDeclaration<DataTableComponent, never>;
24
+ static ɵcmp: i0.ɵɵComponentDeclaration<DataTableComponent, "tlp-data-table", never, { "model": { "alias": "model"; "required": false; }; "showSelectionColumn": { "alias": "showSelectionColumn"; "required": false; }; "sortable": { "alias": "sortable"; "required": false; }; "striped": { "alias": "striped"; "required": false; }; "stickyHeader": { "alias": "stickyHeader"; "required": false; }; "size": { "alias": "size"; "required": false; }; }, { "sort": "sort"; "selectAll": "selectAll"; "deselectAll": "deselectAll"; "selectRow": "selectRow"; "deselectRow": "deselectRow"; "rowClick": "rowClick"; }, never, never, false, never>;
25
+ }
@@ -0,0 +1,43 @@
1
+ import { ControlValueAccessor } from "@angular/forms";
2
+ import * as i0 from "@angular/core";
3
+ type Value = [] | [Date] | [Date, Date];
4
+ export type DatepickerValue = Value;
5
+ export declare class DatepickerComponent implements ControlValueAccessor {
6
+ disabled: boolean;
7
+ invalid: boolean;
8
+ invalidText: string;
9
+ range: boolean;
10
+ /** Set to `true` to display the invalid state for the second datepicker input. */
11
+ rangeInvalid: boolean;
12
+ /** Value displayed if the second datepicker input is in an invalid state. */
13
+ rangeInvalidText: string;
14
+ /**
15
+ * Format of the displayed date
16
+ *
17
+ * @see https://flatpickr.js.org/formatting/
18
+ */
19
+ dateFormat: string;
20
+ /** Language of the calendar panel. Doesn't affect the format of the displayed date */
21
+ language: "en" | "de" | "fi" | "ja" | "zh" | "es" | "fr" | "it" | "ko" | "pt";
22
+ label: string;
23
+ rangeLabel: string;
24
+ placeholder: string;
25
+ size: "sm" | "md" | "lg";
26
+ /** Forces the width to be same as calendar panel, making it more visually aligned */
27
+ fixedWidth: boolean;
28
+ /** When setting it to `true`, make sure to provide a `dateFormat` with time, so the time value is tracked */
29
+ enableTime: boolean;
30
+ value: Value;
31
+ isTouched: boolean;
32
+ _onChangeCallback: ((value: Value) => void) | undefined;
33
+ _onTouchCallback: ((event: Event) => void) | undefined;
34
+ handleChange(value: Value): void;
35
+ handleTouch(event: Event): void;
36
+ writeValue(value: Value | null): void;
37
+ registerOnChange(fn: any): void;
38
+ registerOnTouched(fn: any): void;
39
+ setDisabledState(isDisabled: boolean): void;
40
+ static ɵfac: i0.ɵɵFactoryDeclaration<DatepickerComponent, never>;
41
+ static ɵcmp: i0.ɵɵComponentDeclaration<DatepickerComponent, "tlp-datepicker", never, { "disabled": { "alias": "disabled"; "required": false; }; "invalid": { "alias": "invalid"; "required": false; }; "invalidText": { "alias": "invalidText"; "required": false; }; "range": { "alias": "range"; "required": false; }; "rangeInvalid": { "alias": "rangeInvalid"; "required": false; }; "rangeInvalidText": { "alias": "rangeInvalidText"; "required": false; }; "dateFormat": { "alias": "dateFormat"; "required": false; }; "language": { "alias": "language"; "required": false; }; "label": { "alias": "label"; "required": false; }; "rangeLabel": { "alias": "rangeLabel"; "required": false; }; "placeholder": { "alias": "placeholder"; "required": false; }; "size": { "alias": "size"; "required": false; }; "fixedWidth": { "alias": "fixedWidth"; "required": false; }; "enableTime": { "alias": "enableTime"; "required": false; }; }, {}, never, never, false, never>;
42
+ }
43
+ export {};
@@ -0,0 +1,87 @@
1
+ import * as i0 from "@angular/core";
2
+ import * as i1 from "./global-styles.component";
3
+ import * as i2 from "./button/button.component";
4
+ import * as i3 from "./input/input.component";
5
+ import * as i4 from "./select/select.component";
6
+ import * as i5 from "./radio/radio.component";
7
+ import * as i6 from "./radio/radio-group.component";
8
+ import * as i7 from "./checkbox/checkbox.component";
9
+ import * as i8 from "./link/link.directive";
10
+ import * as i9 from "./table/table.directive";
11
+ import * as i10 from "./overflow-menu/overflow-menu.component";
12
+ import * as i11 from "./overflow-menu/overflow-menu-option.component";
13
+ import * as i12 from "./modal/modal.component";
14
+ import * as i13 from "./modal/placeholder.component";
15
+ import * as i14 from "./modal/modal-content.directive";
16
+ import * as i15 from "./modal/modal-footer.component";
17
+ import * as i16 from "./modal/modal-header-heading.directive";
18
+ import * as i17 from "./modal/modal-header-label.directive";
19
+ import * as i18 from "./modal/modal-header.component";
20
+ import * as i19 from "./header/header.component";
21
+ import * as i20 from "./header/header-global.component";
22
+ import * as i21 from "./header/header-action.component";
23
+ import * as i22 from "./header/hamburger.component";
24
+ import * as i23 from "./notification/notification.component";
25
+ import * as i24 from "./notification/toast.component";
26
+ import * as i25 from "./sidenav/sidenav.component";
27
+ import * as i26 from "./sidenav/sidenav-item.component";
28
+ import * as i27 from "./sidenav/sidenav-menu.component";
29
+ import * as i28 from "./search/search.component";
30
+ import * as i29 from "./bottom-panel/bottom-panel.component";
31
+ import * as i30 from "./bottom-panel/bottom-panel-footer.component";
32
+ import * as i31 from "./bottom-panel/bottom-panel-content.directive";
33
+ import * as i32 from "./bottom-panel/bottom-panel-header.component";
34
+ import * as i33 from "./bottom-panel/bottom-panel-header-label.directive";
35
+ import * as i34 from "./bottom-panel/bottom-panel-header-heading.directive";
36
+ import * as i35 from "./loading/loading.component";
37
+ import * as i36 from "./tag-filter/tag-filter.component";
38
+ import * as i37 from "./side-panel/side-panel.component";
39
+ import * as i38 from "./icons/icon.directive";
40
+ import * as i39 from "./datepicker/datepicker.component";
41
+ import * as i40 from "./pagination/pagination.component";
42
+ import * as i41 from "./data-table/data-table.component";
43
+ import * as i42 from "./data-table/data-table-container.component";
44
+ import * as i43 from "./data-table/data-table-toolbar.component";
45
+ import * as i44 from "./data-table/data-table-toolbar-content.component";
46
+ import * as i45 from "./tabs/tabs.component";
47
+ import * as i46 from "./tabs/tab.component";
48
+ import * as i47 from "./expandable-tile/expandable-tile.component";
49
+ import * as i48 from "./textarea/textarea.component";
50
+ import * as i49 from "./progress-indicator/progress-indicator.component";
51
+ import * as i50 from "./subheader/subheader.component";
52
+ import * as i51 from "./tag/tag.component";
53
+ import * as i52 from "./algeciras-port-logo/algeciras-port-logo.component";
54
+ import * as i53 from "./combobox/combobox.component";
55
+ import * as i54 from "./toggle/toggle.component";
56
+ import * as i55 from "@angular/platform-browser/animations";
57
+ import * as i56 from "@angular/common";
58
+ import * as i57 from "@angular/forms";
59
+ import * as i58 from "carbon-components-angular/button";
60
+ import * as i59 from "carbon-components-angular/icon";
61
+ import * as i60 from "carbon-components-angular/input";
62
+ import * as i61 from "carbon-components-angular/select";
63
+ import * as i62 from "carbon-components-angular/radio";
64
+ import * as i63 from "carbon-components-angular/checkbox";
65
+ import * as i64 from "carbon-components-angular/link";
66
+ import * as i65 from "carbon-components-angular/table";
67
+ import * as i66 from "carbon-components-angular/dialog";
68
+ import * as i67 from "carbon-components-angular/ui-shell";
69
+ import * as i68 from "carbon-components-angular/modal";
70
+ import * as i69 from "carbon-components-angular/placeholder";
71
+ import * as i70 from "carbon-components-angular/notification";
72
+ import * as i71 from "carbon-components-angular/search";
73
+ import * as i72 from "carbon-components-angular/loading";
74
+ import * as i73 from "carbon-components-angular/tag";
75
+ import * as i74 from "carbon-components-angular/datepicker";
76
+ import * as i75 from "carbon-components-angular/pagination";
77
+ import * as i76 from "carbon-components-angular/tabs";
78
+ import * as i77 from "carbon-components-angular/tiles";
79
+ import * as i78 from "carbon-components-angular/i18n";
80
+ import * as i79 from "carbon-components-angular/progress-indicator";
81
+ import * as i80 from "carbon-components-angular/combobox";
82
+ import * as i81 from "carbon-components-angular/toggle";
83
+ export declare class DesignSystemModule {
84
+ static ɵfac: i0.ɵɵFactoryDeclaration<DesignSystemModule, never>;
85
+ static ɵmod: i0.ɵɵNgModuleDeclaration<DesignSystemModule, [typeof i1.GlobalStylesComponent, typeof i2.ButtonComponent, typeof i3.InputComponent, typeof i4.SelectComponent, typeof i5.RadioComponent, typeof i6.RadioGroupComponent, typeof i7.CheckboxComponent, typeof i8.LinkDirective, typeof i9.TableDirective, typeof i10.OverflowMenu, typeof i11.OverflowMenuOption, typeof i12.ModalComponent, typeof i13.PlaceholderComponent, typeof i14.ModalContentDirective, typeof i15.ModalFooterComponent, typeof i16.ModalHeaderHeadingDirective, typeof i17.ModalHeaderLabelDirective, typeof i18.ModalHeaderComponent, typeof i19.HeaderComponent, typeof i20.HeaderGlobalComponent, typeof i21.HeaderActionComponent, typeof i22.HamburgerComponent, typeof i23.NotificationComponent, typeof i24.ToastComponent, typeof i25.SideNavComponent, typeof i26.SideNavItemComponent, typeof i27.SideNavMenuComponent, typeof i28.SearchComponent, typeof i29.BottomPanelComponent, typeof i30.BottomPanelFooterComponent, typeof i31.BottomPanelContentDirective, typeof i32.BottomPanelHeaderComponent, typeof i33.BottomPanelHeaderLabelDirective, typeof i34.BottomPanelHeaderHeadingDirective, typeof i35.LoadingComponent, typeof i36.TagFilterComponent, typeof i37.SidePanelComponent, typeof i38.IconDirective, typeof i39.DatepickerComponent, typeof i40.PaginationComponent, typeof i41.DataTableComponent, typeof i42.DataTableContainerComponent, typeof i43.DataTableToolbarComponent, typeof i44.DataTableToolbarContentComponent, typeof i45.TabsComponent, typeof i46.TabComponent, typeof i47.ExpandableTileComponent, typeof i48.TextareaComponent, typeof i49.ProgressIndicatorComponent, typeof i50.SubheaderComponent, typeof i51.TagComponent, typeof i52.AlgecirasPortLogoComponent, typeof i53.ComboboxComponent, typeof i54.ToggleComponent], [typeof i55.NoopAnimationsModule, typeof i56.CommonModule, typeof i57.FormsModule, typeof i58.ButtonModule, typeof i59.IconModule, typeof i60.InputModule, typeof i61.SelectModule, typeof i62.RadioModule, typeof i63.CheckboxModule, typeof i64.LinkModule, typeof i65.TableModule, typeof i66.DialogModule, typeof i67.UIShellModule, typeof i68.ModalModule, typeof i69.PlaceholderModule, typeof i70.NotificationModule, typeof i71.SearchModule, typeof i72.LoadingModule, typeof i73.TagModule, typeof i74.DatePickerModule, typeof i75.PaginationModule, typeof i76.TabsModule, typeof i77.TilesModule, typeof i78.I18nModule, typeof i79.ProgressIndicatorModule, typeof i80.ComboBoxModule, typeof i81.ToggleModule], [typeof i1.GlobalStylesComponent, typeof i2.ButtonComponent, typeof i3.InputComponent, typeof i4.SelectComponent, typeof i5.RadioComponent, typeof i6.RadioGroupComponent, typeof i7.CheckboxComponent, typeof i8.LinkDirective, typeof i9.TableDirective, typeof i10.OverflowMenu, typeof i11.OverflowMenuOption, typeof i12.ModalComponent, typeof i13.PlaceholderComponent, typeof i14.ModalContentDirective, typeof i15.ModalFooterComponent, typeof i16.ModalHeaderHeadingDirective, typeof i17.ModalHeaderLabelDirective, typeof i18.ModalHeaderComponent, typeof i19.HeaderComponent, typeof i20.HeaderGlobalComponent, typeof i21.HeaderActionComponent, typeof i22.HamburgerComponent, typeof i23.NotificationComponent, typeof i24.ToastComponent, typeof i25.SideNavComponent, typeof i26.SideNavItemComponent, typeof i27.SideNavMenuComponent, typeof i28.SearchComponent, typeof i29.BottomPanelComponent, typeof i30.BottomPanelFooterComponent, typeof i31.BottomPanelContentDirective, typeof i32.BottomPanelHeaderComponent, typeof i33.BottomPanelHeaderLabelDirective, typeof i34.BottomPanelHeaderHeadingDirective, typeof i35.LoadingComponent, typeof i36.TagFilterComponent, typeof i37.SidePanelComponent, typeof i38.IconDirective, typeof i39.DatepickerComponent, typeof i40.PaginationComponent, typeof i41.DataTableComponent, typeof i42.DataTableContainerComponent, typeof i43.DataTableToolbarComponent, typeof i44.DataTableToolbarContentComponent, typeof i45.TabsComponent, typeof i46.TabComponent, typeof i47.ExpandableTileComponent, typeof i48.TextareaComponent, typeof i49.ProgressIndicatorComponent, typeof i50.SubheaderComponent, typeof i51.TagComponent, typeof i52.AlgecirasPortLogoComponent, typeof i53.ComboboxComponent, typeof i54.ToggleComponent, typeof i59.IconModule]>;
86
+ static ɵinj: i0.ɵɵInjectorDeclaration<DesignSystemModule>;
87
+ }
@@ -0,0 +1,20 @@
1
+ import { AfterContentInit, ElementRef } from "@angular/core";
2
+ import { I18n as IbmI18n } from "carbon-components-angular/i18n";
3
+ import * as i0 from "@angular/core";
4
+ export declare class ExpandableTileComponent implements AfterContentInit {
5
+ protected i18n: IbmI18n;
6
+ protected elementRef: ElementRef;
7
+ expanded: boolean;
8
+ tileMaxHeight: number;
9
+ currentExpandedHeight: number;
10
+ element: HTMLElement;
11
+ expand: ReturnType<IbmI18n["getOverridable"]>;
12
+ collapse: ReturnType<IbmI18n["getOverridable"]>;
13
+ constructor(i18n: IbmI18n, elementRef: ElementRef);
14
+ ngAfterContentInit(): void;
15
+ get expandedHeight(): number;
16
+ updateMaxHeight(): void;
17
+ onClick(): void;
18
+ static ɵfac: i0.ɵɵFactoryDeclaration<ExpandableTileComponent, never>;
19
+ static ɵcmp: i0.ɵɵComponentDeclaration<ExpandableTileComponent, "tlp-expandable-tile", never, {}, {}, never, ["[above]", "[below]"], false, never>;
20
+ }
@@ -0,0 +1,5 @@
1
+ import * as i0 from "@angular/core";
2
+ export declare class GlobalStylesComponent {
3
+ static ɵfac: i0.ɵɵFactoryDeclaration<GlobalStylesComponent, never>;
4
+ static ɵcmp: i0.ɵɵComponentDeclaration<GlobalStylesComponent, "tlp-global-styles", never, {}, {}, never, never, false, never>;
5
+ }
@@ -0,0 +1,6 @@
1
+ import { Hamburger as IbmHamburger } from "carbon-components-angular/ui-shell";
2
+ import * as i0 from "@angular/core";
3
+ export declare class HamburgerComponent extends IbmHamburger {
4
+ static ɵfac: i0.ɵɵFactoryDeclaration<HamburgerComponent, never>;
5
+ static ɵcmp: i0.ɵɵComponentDeclaration<HamburgerComponent, "tlp-hamburger", never, {}, {}, never, never, false, never>;
6
+ }
@@ -0,0 +1,7 @@
1
+ import { HeaderAction as IbmHeaderAction } from "carbon-components-angular/ui-shell";
2
+ import * as i0 from "@angular/core";
3
+ export declare class HeaderActionComponent extends IbmHeaderAction {
4
+ title: string;
5
+ static ɵfac: i0.ɵɵFactoryDeclaration<HeaderActionComponent, never>;
6
+ static ɵcmp: i0.ɵɵComponentDeclaration<HeaderActionComponent, "tlp-header-action", never, { "title": { "alias": "title"; "required": false; }; }, {}, never, ["*"], false, never>;
7
+ }
@@ -0,0 +1,6 @@
1
+ import { HeaderGlobal as IbmHeaderGlobal } from "carbon-components-angular/ui-shell";
2
+ import * as i0 from "@angular/core";
3
+ export declare class HeaderGlobalComponent extends IbmHeaderGlobal {
4
+ static ɵfac: i0.ɵɵFactoryDeclaration<HeaderGlobalComponent, never>;
5
+ static ɵcmp: i0.ɵɵComponentDeclaration<HeaderGlobalComponent, "tlp-header-global", never, {}, {}, never, ["*"], false, never>;
6
+ }
@@ -0,0 +1,7 @@
1
+ import { Header as IbmHeader } from "carbon-components-angular/ui-shell";
2
+ import * as i0 from "@angular/core";
3
+ export declare class HeaderComponent extends IbmHeader {
4
+ locale: "en" | "es";
5
+ static ɵfac: i0.ɵɵFactoryDeclaration<HeaderComponent, never>;
6
+ static ɵcmp: i0.ɵɵComponentDeclaration<HeaderComponent, "tlp-header", never, { "locale": { "alias": "locale"; "required": false; }; }, {}, never, ["tlp-hamburger", "*"], false, never>;
7
+ }
@@ -0,0 +1,16 @@
1
+ import { OnInit } from "@angular/core";
2
+ import { IconDirective as IbmIconDirective } from "carbon-components-angular/icon";
3
+ import * as i0 from "@angular/core";
4
+ export declare class IconDirective extends IbmIconDirective implements OnInit {
5
+ static titleIdCounter: number;
6
+ tlpIcon: string;
7
+ size: string;
8
+ title: string;
9
+ ariaLabel: string;
10
+ ariaLabelledBy: string;
11
+ ariaHidden: string;
12
+ isFocusable: boolean;
13
+ ngOnInit(): void;
14
+ static ɵfac: i0.ɵɵFactoryDeclaration<IconDirective, never>;
15
+ static ɵdir: i0.ɵɵDirectiveDeclaration<IconDirective, "[tlpIcon]", never, { "tlpIcon": { "alias": "tlpIcon"; "required": false; }; "size": { "alias": "size"; "required": false; }; "title": { "alias": "title"; "required": false; }; "ariaLabel": { "alias": "ariaLabel"; "required": false; }; "ariaLabelledBy": { "alias": "ariaLabelledBy"; "required": false; }; "ariaHidden": { "alias": "ariaHidden"; "required": false; }; "isFocusable": { "alias": "isFocusable"; "required": false; }; }, {}, never, never, false, never>;
16
+ }
@@ -0,0 +1 @@
1
+ export { IconService } from "carbon-components-angular/icon";
@@ -0,0 +1,42 @@
1
+ import { ControlValueAccessor } from "@angular/forms";
2
+ import * as i0 from "@angular/core";
3
+ type Value = string | number | null;
4
+ export type InputValue = Value;
5
+ export declare class InputComponent implements ControlValueAccessor {
6
+ label: string;
7
+ helperText: string;
8
+ placeholder: string;
9
+ disabled: boolean;
10
+ invalidText: string;
11
+ invalid: boolean;
12
+ size: "sm" | "md" | "lg";
13
+ /**
14
+ * https://developer.mozilla.org/en-US/docs/Web/HTML/Element/input#input_types
15
+ */
16
+ type: "text" | "password" | "email" | "number" | "tel" | "url";
17
+ /**
18
+ * Only supported with `[type]="number"`
19
+ */
20
+ max: number | null;
21
+ /**
22
+ * Only supported with `[type]="number"`
23
+ */
24
+ min: number | null;
25
+ /**
26
+ * Only supported with `[type]="number"`
27
+ */
28
+ step: number | null;
29
+ value: Value;
30
+ isTouched: boolean;
31
+ _onChangeCallback: ((value: Value) => void) | undefined;
32
+ _onTouchCallback: ((event: Event) => void) | undefined;
33
+ handleModelChange(newValue: Value): void;
34
+ handleTouch(event: Event): void;
35
+ writeValue(newValue: Value): void;
36
+ registerOnChange(fn: any): void;
37
+ registerOnTouched(fn: any): void;
38
+ setDisabledState(isDisabled: boolean): void;
39
+ static ɵfac: i0.ɵɵFactoryDeclaration<InputComponent, never>;
40
+ static ɵcmp: i0.ɵɵComponentDeclaration<InputComponent, "tlp-input", never, { "label": { "alias": "label"; "required": false; }; "helperText": { "alias": "helperText"; "required": false; }; "placeholder": { "alias": "placeholder"; "required": false; }; "disabled": { "alias": "disabled"; "required": false; }; "invalidText": { "alias": "invalidText"; "required": false; }; "invalid": { "alias": "invalid"; "required": false; }; "size": { "alias": "size"; "required": false; }; "type": { "alias": "type"; "required": false; }; "max": { "alias": "max"; "required": false; }; "min": { "alias": "min"; "required": false; }; "step": { "alias": "step"; "required": false; }; }, {}, never, never, false, never>;
41
+ }
42
+ export {};
@@ -0,0 +1,6 @@
1
+ import { Link } from "carbon-components-angular/link";
2
+ import * as i0 from "@angular/core";
3
+ export declare class LinkDirective extends Link {
4
+ static ɵfac: i0.ɵɵFactoryDeclaration<LinkDirective, never>;
5
+ static ɵdir: i0.ɵɵDirectiveDeclaration<LinkDirective, "[tlpLink]", never, {}, {}, never, never, false, never>;
6
+ }
@@ -0,0 +1,7 @@
1
+ import { Loading as IbmLoading } from "carbon-components-angular/loading";
2
+ import * as i0 from "@angular/core";
3
+ export declare class LoadingComponent extends IbmLoading {
4
+ size: "normal" | "sm";
5
+ static ɵfac: i0.ɵɵFactoryDeclaration<LoadingComponent, never>;
6
+ static ɵcmp: i0.ɵɵComponentDeclaration<LoadingComponent, "tlp-loading", never, { "size": { "alias": "size"; "required": false; }; }, {}, never, never, false, never>;
7
+ }
@@ -0,0 +1,3 @@
1
+ import { BaseModal as IbmBaseModal } from "carbon-components-angular";
2
+ export declare class BaseModal extends IbmBaseModal {
3
+ }
@@ -0,0 +1,6 @@
1
+ import { ModalContent as IbmModalContent } from "carbon-components-angular/modal";
2
+ import * as i0 from "@angular/core";
3
+ export declare class ModalContentDirective extends IbmModalContent {
4
+ static ɵfac: i0.ɵɵFactoryDeclaration<ModalContentDirective, never>;
5
+ static ɵdir: i0.ɵɵDirectiveDeclaration<ModalContentDirective, "[tlpModalContent]", never, {}, {}, never, never, false, never>;
6
+ }
@@ -0,0 +1,6 @@
1
+ import { ModalFooter } from "carbon-components-angular/modal";
2
+ import * as i0 from "@angular/core";
3
+ export declare class ModalFooterComponent extends ModalFooter {
4
+ static ɵfac: i0.ɵɵFactoryDeclaration<ModalFooterComponent, never>;
5
+ static ɵcmp: i0.ɵɵComponentDeclaration<ModalFooterComponent, "tlp-modal-footer", never, {}, {}, never, ["*"], false, never>;
6
+ }
@@ -0,0 +1,6 @@
1
+ import { ModalHeaderHeading as IbmModalHeaderHeading } from "carbon-components-angular/modal";
2
+ import * as i0 from "@angular/core";
3
+ export declare class ModalHeaderHeadingDirective extends IbmModalHeaderHeading {
4
+ static ɵfac: i0.ɵɵFactoryDeclaration<ModalHeaderHeadingDirective, never>;
5
+ static ɵdir: i0.ɵɵDirectiveDeclaration<ModalHeaderHeadingDirective, "[tlpModalHeaderHeading]", never, {}, {}, never, never, false, never>;
6
+ }
@@ -0,0 +1,6 @@
1
+ import { ModalHeaderLabel as IbmModalHeaderLabel } from "carbon-components-angular/modal";
2
+ import * as i0 from "@angular/core";
3
+ export declare class ModalHeaderLabelDirective extends IbmModalHeaderLabel {
4
+ static ɵfac: i0.ɵɵFactoryDeclaration<ModalHeaderLabelDirective, never>;
5
+ static ɵdir: i0.ɵɵDirectiveDeclaration<ModalHeaderLabelDirective, "[tlpModalHeaderLabel]", never, {}, {}, never, never, false, never>;
6
+ }
@@ -0,0 +1,6 @@
1
+ import { ModalHeader } from "carbon-components-angular/modal";
2
+ import * as i0 from "@angular/core";
3
+ export declare class ModalHeaderComponent extends ModalHeader {
4
+ static ɵfac: i0.ɵɵFactoryDeclaration<ModalHeaderComponent, never>;
5
+ static ɵcmp: i0.ɵɵComponentDeclaration<ModalHeaderComponent, "tlp-modal-header", never, {}, {}, never, ["*"], false, never>;
6
+ }
@@ -0,0 +1,11 @@
1
+ import { EventEmitter } from "@angular/core";
2
+ import * as i0 from "@angular/core";
3
+ export declare class ModalComponent {
4
+ open: boolean;
5
+ overlaySelected: EventEmitter<any>;
6
+ close: EventEmitter<any>;
7
+ size: "xs" | "sm" | "lg";
8
+ hasScrollingContent: boolean;
9
+ static ɵfac: i0.ɵɵFactoryDeclaration<ModalComponent, never>;
10
+ static ɵcmp: i0.ɵɵComponentDeclaration<ModalComponent, "tlp-modal", never, { "open": { "alias": "open"; "required": false; }; "size": { "alias": "size"; "required": false; }; "hasScrollingContent": { "alias": "hasScrollingContent"; "required": false; }; }, { "overlaySelected": "overlaySelected"; "close": "close"; }, never, ["*"], false, never>;
11
+ }
@@ -0,0 +1,6 @@
1
+ import { ModalService as IbmModalService } from "carbon-components-angular";
2
+ import * as i0 from "@angular/core";
3
+ export declare class ModalService extends IbmModalService {
4
+ static ɵfac: i0.ɵɵFactoryDeclaration<ModalService, never>;
5
+ static ɵprov: i0.ɵɵInjectableDeclaration<ModalService>;
6
+ }
@@ -0,0 +1,6 @@
1
+ import { Placeholder as IbmPlaceholder } from "carbon-components-angular/placeholder";
2
+ import * as i0 from "@angular/core";
3
+ export declare class PlaceholderComponent extends IbmPlaceholder {
4
+ static ɵfac: i0.ɵɵFactoryDeclaration<PlaceholderComponent, never>;
5
+ static ɵcmp: i0.ɵɵComponentDeclaration<PlaceholderComponent, "tlp-placeholder", never, {}, {}, never, never, false, never>;
6
+ }
@@ -0,0 +1,9 @@
1
+ import { Notification as IbmNotification } from "carbon-components-angular/notification";
2
+ import * as i0 from "@angular/core";
3
+ export declare class NotificationComponent extends IbmNotification {
4
+ title: string;
5
+ message: string;
6
+ type: "info" | "warning" | "error" | "success";
7
+ static ɵfac: i0.ɵɵFactoryDeclaration<NotificationComponent, never>;
8
+ static ɵcmp: i0.ɵɵComponentDeclaration<NotificationComponent, "tlp-notification", never, { "title": { "alias": "title"; "required": false; }; "message": { "alias": "message"; "required": false; }; "type": { "alias": "type"; "required": false; }; }, {}, never, never, false, never>;
9
+ }
@@ -0,0 +1,10 @@
1
+ import { NotificationContent, NotificationService as IbmNotificationService, ToastContent } from "carbon-components-angular";
2
+ import { NotificationComponent } from "./notification.component";
3
+ import { ToastComponent } from "./toast.component";
4
+ import * as i0 from "@angular/core";
5
+ export declare class NotificationService extends IbmNotificationService {
6
+ showNotification(notificationObj: NotificationContent, notificationComp?: typeof NotificationComponent): import("carbon-components-angular").Notification;
7
+ showToast(notificationObj: NotificationContent | ToastContent, notificationComp?: typeof ToastComponent): import("carbon-components-angular").Notification;
8
+ static ɵfac: i0.ɵɵFactoryDeclaration<NotificationService, never>;
9
+ static ɵprov: i0.ɵɵInjectableDeclaration<NotificationService>;
10
+ }
@@ -0,0 +1,10 @@
1
+ import { Toast as IbmToast } from "carbon-components-angular/notification";
2
+ import * as i0 from "@angular/core";
3
+ export declare class ToastComponent extends IbmToast {
4
+ title: string;
5
+ subtitle: string;
6
+ caption: string;
7
+ type: "info" | "warning" | "error" | "success";
8
+ static ɵfac: i0.ɵɵFactoryDeclaration<ToastComponent, never>;
9
+ static ɵcmp: i0.ɵɵComponentDeclaration<ToastComponent, "tlp-toast", never, { "title": { "alias": "title"; "required": false; }; "subtitle": { "alias": "subtitle"; "required": false; }; "caption": { "alias": "caption"; "required": false; }; "type": { "alias": "type"; "required": false; }; }, {}, never, never, false, never>;
10
+ }
@@ -0,0 +1,6 @@
1
+ import { OverflowMenuOption as IbmOverflowMenuOption } from "carbon-components-angular/dialog";
2
+ import * as i0 from "@angular/core";
3
+ export declare class OverflowMenuOption extends IbmOverflowMenuOption {
4
+ static ɵfac: i0.ɵɵFactoryDeclaration<OverflowMenuOption, never>;
5
+ static ɵcmp: i0.ɵɵComponentDeclaration<OverflowMenuOption, "tlp-overflow-menu-option", never, {}, {}, never, ["*"], false, never>;
6
+ }
@@ -0,0 +1,9 @@
1
+ import { TemplateRef } from "@angular/core";
2
+ import { OverflowMenu as IbmOverflowMenu } from "carbon-components-angular/dialog";
3
+ import * as i0 from "@angular/core";
4
+ export declare class OverflowMenu extends IbmOverflowMenu {
5
+ flip: boolean;
6
+ customTrigger: TemplateRef<any>;
7
+ static ɵfac: i0.ɵɵFactoryDeclaration<OverflowMenu, never>;
8
+ static ɵcmp: i0.ɵɵComponentDeclaration<OverflowMenu, "tlp-overflow-menu", never, { "flip": { "alias": "flip"; "required": false; }; "customTrigger": { "alias": "customTrigger"; "required": false; }; }, {}, never, ["*"], false, never>;
9
+ }
@@ -0,0 +1,3 @@
1
+ import { PaginationModel as IbmPaginationModel } from "carbon-components-angular/pagination";
2
+ export declare class PaginationModel extends IbmPaginationModel {
3
+ }
@@ -0,0 +1,3 @@
1
+ import { PaginationTranslations as IbmPaginationTranslations } from "carbon-components-angular/pagination";
2
+ export interface PaginationTranslations extends IbmPaginationTranslations {
3
+ }
@@ -0,0 +1,37 @@
1
+ import { EventEmitter } from "@angular/core";
2
+ import { PaginationModel } from "./pagination-model.class";
3
+ import { PaginationTranslations } from "./pagination-translations";
4
+ import * as i0 from "@angular/core";
5
+ export declare class PaginationComponent {
6
+ model?: PaginationModel;
7
+ disabled: boolean;
8
+ pageInputDisabled: boolean;
9
+ showPageInput: boolean;
10
+ /**
11
+ * Options for items per page select
12
+ *
13
+ * A default array of options will be defined: [10, 20, 30, 40, 50]
14
+ */
15
+ itemsPerPageOptions: number[];
16
+ /**
17
+ * Expects an object that contains some or all of:
18
+ * ```
19
+ * {
20
+ * "ITEMS_PER_PAGE": "Items per page:",
21
+ * "OPEN_LIST_OF_OPTIONS": "Open list of options",
22
+ * "BACKWARD": "Backward",
23
+ * "FORWARD": "Forward",
24
+ * "TOTAL_ITEMS_UNKNOWN": "{{start}}-{{end}} items",
25
+ * "TOTAL_ITEMS": "{{start}}-{{end}} of {{total}} items",
26
+ * "TOTAL_ITEM": "{{start}}-{{end}} of {{total}} item",
27
+ * "OF_LAST_PAGES": "of {{last}} pages",
28
+ * "OF_LAST_PAGE": "of {{last}} page"
29
+ * }
30
+ * ```
31
+ */
32
+ translations?: Partial<PaginationTranslations>;
33
+ selectPage: EventEmitter<number>;
34
+ handleSelectPage(page: number): void;
35
+ static ɵfac: i0.ɵɵFactoryDeclaration<PaginationComponent, never>;
36
+ static ɵcmp: i0.ɵɵComponentDeclaration<PaginationComponent, "tlp-pagination", never, { "model": { "alias": "model"; "required": false; }; "disabled": { "alias": "disabled"; "required": false; }; "pageInputDisabled": { "alias": "pageInputDisabled"; "required": false; }; "showPageInput": { "alias": "showPageInput"; "required": false; }; "itemsPerPageOptions": { "alias": "itemsPerPageOptions"; "required": false; }; "translations": { "alias": "translations"; "required": false; }; }, { "selectPage": "selectPage"; }, never, never, false, never>;
37
+ }