@theseam/ui-common 1.0.2-beta.83 → 1.0.2-beta.85
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/ai/index.d.ts +170 -17
- package/carousel/index.d.ts +21 -1
- package/datatable/index.d.ts +299 -3
- package/datatable-alterations-display/index.d.ts +61 -1
- package/fesm2022/theseam-ui-common-ai.mjs +433 -103
- package/fesm2022/theseam-ui-common-ai.mjs.map +1 -1
- package/fesm2022/theseam-ui-common-carousel.mjs +48 -1
- package/fesm2022/theseam-ui-common-carousel.mjs.map +1 -1
- package/fesm2022/theseam-ui-common-datatable-alterations-display.mjs +197 -1
- package/fesm2022/theseam-ui-common-datatable-alterations-display.mjs.map +1 -1
- package/fesm2022/theseam-ui-common-datatable.mjs +668 -4
- package/fesm2022/theseam-ui-common-datatable.mjs.map +1 -1
- package/fesm2022/theseam-ui-common-file-input.mjs +156 -1
- package/fesm2022/theseam-ui-common-file-input.mjs.map +1 -1
- package/fesm2022/theseam-ui-common-icon.mjs +72 -1
- package/fesm2022/theseam-ui-common-icon.mjs.map +1 -1
- package/fesm2022/theseam-ui-common-tooltip.mjs +110 -1
- package/fesm2022/theseam-ui-common-tooltip.mjs.map +1 -1
- package/fesm2022/theseam-ui-common-widget.mjs +23 -1
- package/fesm2022/theseam-ui-common-widget.mjs.map +1 -1
- package/file-input/index.d.ts +78 -1
- package/icon/index.d.ts +33 -3
- package/package.json +1 -1
- package/tooltip/index.d.ts +40 -2
- package/widget/index.d.ts +17 -2
|
@@ -2,6 +2,7 @@ import * as i0 from '@angular/core';
|
|
|
2
2
|
import { OnInit, OnDestroy } from '@angular/core';
|
|
3
3
|
import * as _fortawesome_fontawesome_common_types from '@fortawesome/fontawesome-common-types';
|
|
4
4
|
import { TheSeamLayoutService } from '@theseam/ui-common/layout';
|
|
5
|
+
import { ComponentHarness } from '@angular/cdk/testing';
|
|
5
6
|
|
|
6
7
|
interface AlterationDisplayItem {
|
|
7
8
|
id: string;
|
|
@@ -97,5 +98,64 @@ declare class AlterationsDiffComponent implements OnInit, OnDestroy {
|
|
|
97
98
|
static ɵcmp: i0.ɵɵComponentDeclaration<AlterationsDiffComponent, "seam-alterations-diff", never, { "currentItems": { "alias": "currentItems"; "required": false; }; "pendingItems": { "alias": "pendingItems"; "required": false; }; "diffMode": { "alias": "diffMode"; "required": false; }; "initialDiffState": { "alias": "initialDiffState"; "required": false; }; "compact": { "alias": "compact"; "required": false; }; }, {}, never, never, true, never>;
|
|
98
99
|
}
|
|
99
100
|
|
|
100
|
-
|
|
101
|
+
declare class AlterationItemHarness extends ComponentHarness {
|
|
102
|
+
static hostSelector: string;
|
|
103
|
+
private _getCard;
|
|
104
|
+
private _getTypeBadge;
|
|
105
|
+
private _getIcon;
|
|
106
|
+
private _getSummary;
|
|
107
|
+
private _getDiffState;
|
|
108
|
+
private _getDetails;
|
|
109
|
+
getType(): Promise<string>;
|
|
110
|
+
getTypeDisplayName(): Promise<string>;
|
|
111
|
+
getSummary(): Promise<string>;
|
|
112
|
+
getDiffState(): Promise<string | null>;
|
|
113
|
+
getDetails(): Promise<string[]>;
|
|
114
|
+
hasDetails(): Promise<boolean>;
|
|
115
|
+
hasBorderSuccess(): Promise<boolean>;
|
|
116
|
+
hasBorderDanger(): Promise<boolean>;
|
|
117
|
+
hasBorderWarning(): Promise<boolean>;
|
|
118
|
+
getBadgeClass(): Promise<string>;
|
|
119
|
+
isVisible(): Promise<boolean>;
|
|
120
|
+
}
|
|
121
|
+
|
|
122
|
+
declare class AlterationsListHarness extends ComponentHarness {
|
|
123
|
+
static hostSelector: string;
|
|
124
|
+
private _getTitle;
|
|
125
|
+
private _getCount;
|
|
126
|
+
private _getEmptyState;
|
|
127
|
+
private _getItems;
|
|
128
|
+
getTitle(): Promise<string | null>;
|
|
129
|
+
getCount(): Promise<string | null>;
|
|
130
|
+
hasEmptyState(): Promise<boolean>;
|
|
131
|
+
getEmptyStateText(): Promise<string | null>;
|
|
132
|
+
getItems(): Promise<AlterationItemHarness[]>;
|
|
133
|
+
getItemCount(): Promise<number>;
|
|
134
|
+
getItemByType(type: string): Promise<AlterationItemHarness | null>;
|
|
135
|
+
getItemTypes(): Promise<string[]>;
|
|
136
|
+
hasItems(): Promise<boolean>;
|
|
137
|
+
}
|
|
138
|
+
|
|
139
|
+
declare class AlterationsDiffHarness extends ComponentHarness {
|
|
140
|
+
static hostSelector: string;
|
|
141
|
+
private _getDiffSummary;
|
|
142
|
+
private _getCurrentList;
|
|
143
|
+
private _getPendingList;
|
|
144
|
+
private _getCurrentListMobile;
|
|
145
|
+
private _getPendingListMobile;
|
|
146
|
+
private _getDesktopLayout;
|
|
147
|
+
private _getMobileLayout;
|
|
148
|
+
hasDiffSummary(): Promise<boolean>;
|
|
149
|
+
getDiffSummaryText(): Promise<string | null>;
|
|
150
|
+
isDesktopLayout(): Promise<boolean>;
|
|
151
|
+
isMobileLayout(): Promise<boolean>;
|
|
152
|
+
getCurrentList(): Promise<AlterationsListHarness | null>;
|
|
153
|
+
getPendingList(): Promise<AlterationsListHarness | null>;
|
|
154
|
+
getCurrentItemCount(): Promise<number>;
|
|
155
|
+
getPendingItemCount(): Promise<number>;
|
|
156
|
+
hasCurrentEmptyState(): Promise<boolean>;
|
|
157
|
+
hasPendingEmptyState(): Promise<boolean>;
|
|
158
|
+
}
|
|
159
|
+
|
|
160
|
+
export { AlterationDisplayService, AlterationItemComponent, AlterationItemHarness, AlterationsDiffComponent, AlterationsDiffHarness, AlterationsListComponent, AlterationsListHarness };
|
|
101
161
|
export type { AlterationDiffMode, AlterationDiffState, AlterationDisplayItem, AlterationVisualState };
|