@sebgroup/green-angular 6.1.1 → 6.1.2-rc.20250806093238700
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/esm2022/src/v-angular/table/table.component.mjs +3 -3
- package/esm2022/src/v-angular/table/table.models.mjs +1 -1
- package/esm2022/v-angular/table/table.component.mjs +3 -3
- package/esm2022/v-angular/table/table.models.mjs +1 -1
- package/fesm2022/sebgroup-green-angular-src-v-angular-table.mjs +2 -2
- package/fesm2022/sebgroup-green-angular-src-v-angular-table.mjs.map +1 -1
- package/fesm2022/sebgroup-green-angular-v-angular.mjs +2 -2
- package/fesm2022/sebgroup-green-angular-v-angular.mjs.map +1 -1
- package/package.json +1 -1
- package/src/v-angular/table/table.models.d.ts +3 -3
- package/v-angular/table/table.models.d.ts +3 -3
package/package.json
CHANGED
|
@@ -38,10 +38,10 @@ export interface TableHeaderOptions {
|
|
|
38
38
|
*/
|
|
39
39
|
boldTextOnMobile?: boolean;
|
|
40
40
|
/**
|
|
41
|
-
* Used to set
|
|
42
|
-
* This is useful when the column has an additional
|
|
41
|
+
* Used to set label for the column.
|
|
42
|
+
* This is useful when the column has an additional information that needs to be shown.
|
|
43
43
|
*/
|
|
44
|
-
|
|
44
|
+
columnLabel?: string;
|
|
45
45
|
}
|
|
46
46
|
/** Options applying to table rows */
|
|
47
47
|
export interface TableRowOptions {
|
|
@@ -38,10 +38,10 @@ export interface TableHeaderOptions {
|
|
|
38
38
|
*/
|
|
39
39
|
boldTextOnMobile?: boolean;
|
|
40
40
|
/**
|
|
41
|
-
* Used to set
|
|
42
|
-
* This is useful when the column has an additional
|
|
41
|
+
* Used to set label for the column.
|
|
42
|
+
* This is useful when the column has an additional information that needs to be shown.
|
|
43
43
|
*/
|
|
44
|
-
|
|
44
|
+
columnLabel?: string;
|
|
45
45
|
}
|
|
46
46
|
/** Options applying to table rows */
|
|
47
47
|
export interface TableRowOptions {
|