@annalib/anna-core 35.3.0 → 35.3.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/fesm2022/annalib-anna-core.mjs +33 -6
- package/fesm2022/annalib-anna-core.mjs.map +1 -1
- package/lib/anna-core-shared-lib/models/anna-global-dropdown-config.model.d.ts +3 -0
- package/lib/anna-core-shared-lib/models/anna-non-editable-gt-models.d.ts +19 -1
- package/lib/anna-dropdown-lib/components/anna-single-select/anna-single-select.component.d.ts +1 -0
- package/package.json +1 -1
|
@@ -1,3 +1,4 @@
|
|
|
1
|
+
import { SingleSelectIdText } from "../../anna-dropdown-lib/components/anna-single-select/models/anna-single-select.model";
|
|
1
2
|
export interface IRadioButton {
|
|
2
3
|
value: any;
|
|
3
4
|
isDisabled: boolean;
|
|
@@ -92,6 +93,8 @@ export interface ICustomSingleSelect {
|
|
|
92
93
|
placeholder: string;
|
|
93
94
|
classes: string;
|
|
94
95
|
position: Position;
|
|
96
|
+
showBlueBorderOnEdit?: boolean;
|
|
97
|
+
initialSelectedItem?: SingleSelectIdText;
|
|
95
98
|
maxHeightOfList: number;
|
|
96
99
|
minHeightOfList?: number;
|
|
97
100
|
}
|
|
@@ -29,7 +29,7 @@ export interface IHeaderInfo {
|
|
|
29
29
|
showSplitedOptionsInFilter?: boolean[];
|
|
30
30
|
splitDelimiter?: string[];
|
|
31
31
|
}
|
|
32
|
-
type DATATYPE = "CHECKBOX" | "ICON" | "STRING" | "RADIO" | "" | "SVG_ICON" | "TEXT_ACTIONS" | "CLICKABLE_DATA" | "STRING__TEXT_ACTION" | "STRING__ICON_ACTION" | "STRING___ICON_OR_TEXT_ACTION" | "HTML" | "HTML_STRING" | "ICON_CELL" | "STRING_OR_INPUT" | "SINGLE_RADIO" | "STRING_WITH_TOOLTIP" | "STRING_WITH_ELLIPSIS_AND_READ_MORE_TOOLTIP" | "STRING_ELLIPSIS_WITH_TABLE_TOOLTIP" | "STRING_WITH_TOOLTIP_INNER_HTML" | "ICON_CELL_AND_STRING_WITH_ELLIPSIS_AND_READ_MORE_TOOLTIP" | "SINGLE_SELECT_DROPDOWN" | "DIGIT_ONLY_INPUT";
|
|
32
|
+
type DATATYPE = "CHECKBOX" | "ICON" | "STRING" | "RADIO" | "" | "SVG_ICON" | "TEXT_ACTIONS" | "CLICKABLE_DATA" | "STRING__TEXT_ACTION" | "STRING__ICON_ACTION" | "STRING___ICON_OR_TEXT_ACTION" | "HTML" | "HTML_STRING" | "ICON_CELL" | "STRING_OR_INPUT" | "SINGLE_RADIO" | "STRING_WITH_TOOLTIP" | "STRING_WITH_ELLIPSIS_AND_READ_MORE_TOOLTIP" | "STRING_ELLIPSIS_WITH_TABLE_TOOLTIP" | "STRING_WITH_TOOLTIP_INNER_HTML" | "ICON_CELL_AND_STRING_WITH_ELLIPSIS_AND_READ_MORE_TOOLTIP" | "SINGLE_SELECT_DROPDOWN" | "SINGLE_SELECT_DROPDOWN_AND_ICON" | "DIGIT_ONLY_INPUT" | "HTML_STRING_AND_CLICKABLE_DATA";
|
|
33
33
|
type FILTERTYPE = "CHECKBOX" | "SLIDER" | "DATE" | "TIME" | "WEEK";
|
|
34
34
|
export interface ISvgOrIconTypeInGTTable {
|
|
35
35
|
showObjectKey: boolean;
|
|
@@ -146,6 +146,15 @@ export declare class ClickableItem {
|
|
|
146
146
|
value: string;
|
|
147
147
|
});
|
|
148
148
|
}
|
|
149
|
+
export declare class ITextAndClickableDataActionKey {
|
|
150
|
+
id: string | number;
|
|
151
|
+
innerHTMLText: string;
|
|
152
|
+
linkName: string;
|
|
153
|
+
showLink: boolean;
|
|
154
|
+
showText: boolean;
|
|
155
|
+
class: string;
|
|
156
|
+
constructor(id: string | number, innerHTMLText: string, linkName: string, showLink: boolean, showText: boolean, className?: string);
|
|
157
|
+
}
|
|
149
158
|
export declare class IconCellActionKey {
|
|
150
159
|
id: number | string;
|
|
151
160
|
showIcon: boolean;
|
|
@@ -233,4 +242,13 @@ export interface IDropdownConfigForGT {
|
|
|
233
242
|
selectedItem: SingleSelectIdText;
|
|
234
243
|
dropdownConfig: ICustomSingleSelect;
|
|
235
244
|
}
|
|
245
|
+
export interface IDropdownConfigWithIconForGT {
|
|
246
|
+
itemList: SingleSelectIdText[];
|
|
247
|
+
selectedItem: SingleSelectIdText;
|
|
248
|
+
dropdownConfig: ICustomSingleSelect;
|
|
249
|
+
showIcon: boolean;
|
|
250
|
+
iconClass: string;
|
|
251
|
+
showTooltip: boolean;
|
|
252
|
+
tooltipData?: string;
|
|
253
|
+
}
|
|
236
254
|
export {};
|
package/lib/anna-dropdown-lib/components/anna-single-select/anna-single-select.component.d.ts
CHANGED
|
@@ -28,6 +28,7 @@ export declare class AnnaSingleSelectComponent implements OnInit, OnChanges {
|
|
|
28
28
|
yPosition: any;
|
|
29
29
|
width: number;
|
|
30
30
|
heightOfCheckboxTooltipFilter: number;
|
|
31
|
+
showBlueBorder: boolean;
|
|
31
32
|
buttonElement: ElementRef;
|
|
32
33
|
constructor(annaGlobalConfig: AnnaGlobalConfigService, searchFilterPipe: AnnaFilterSearchedTextPipe);
|
|
33
34
|
ngOnChanges(changes: SimpleChanges): void;
|