@cqa-lib/cqa-ui 1.1.556 → 1.1.557
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/esm2020/lib/templates/modular-table-template/folder-sidebar/folder-sidebar.component.mjs +3 -3
- package/esm2020/lib/templates/modular-table-template/modular-table-template.component.mjs +16 -7
- package/esm2020/lib/templates/modular-table-template/modular-table-template.models.mjs +2 -1
- package/esm2020/lib/templates/table-template.component.mjs +16 -7
- package/fesm2015/cqa-lib-cqa-ui.mjs +33 -14
- package/fesm2015/cqa-lib-cqa-ui.mjs.map +1 -1
- package/fesm2020/cqa-lib-cqa-ui.mjs +33 -14
- package/fesm2020/cqa-lib-cqa-ui.mjs.map +1 -1
- package/lib/templates/modular-table-template/modular-table-template.component.d.ts +1 -1
- package/lib/templates/modular-table-template/modular-table-template.models.d.ts +2 -0
- package/lib/templates/table-template.component.d.ts +1 -1
- package/package.json +1 -1
|
@@ -50,7 +50,7 @@ export declare class ModularTableTemplateComponent implements OnInit, OnChanges,
|
|
|
50
50
|
modular: string;
|
|
51
51
|
};
|
|
52
52
|
viewModeChange: EventEmitter<"list" | "modular">;
|
|
53
|
-
|
|
53
|
+
viewModeSegments: Array<{
|
|
54
54
|
label: string;
|
|
55
55
|
value: string;
|
|
56
56
|
icon?: string;
|
|
@@ -113,6 +113,8 @@ export interface ModularLabels {
|
|
|
113
113
|
unorganizedRowLabel: string;
|
|
114
114
|
/** Shown in the folder sidebar when the search input filters out every folder. */
|
|
115
115
|
noFoldersFound: string;
|
|
116
|
+
/** Helper line shown under the empty-folder-list state, hinting at the create action. */
|
|
117
|
+
noFoldersEmptyDescription: string;
|
|
116
118
|
/** Sidebar folder-row hover tooltip count line. `{n}` is the descendant total
|
|
117
119
|
* (FolderNode.totalCount). The host swaps the noun for "step group" when in
|
|
118
120
|
* step-group mode by overriding these two keys. The full tooltip is composed
|
|
@@ -47,7 +47,7 @@ export declare class TableTemplateComponent implements OnInit, OnChanges, OnDest
|
|
|
47
47
|
modular: string;
|
|
48
48
|
};
|
|
49
49
|
viewModeChange: EventEmitter<"list" | "modular">;
|
|
50
|
-
|
|
50
|
+
viewModeSegments: Array<{
|
|
51
51
|
label: string;
|
|
52
52
|
value: string;
|
|
53
53
|
icon?: string;
|