@sebgroup/green-angular 5.11.0 → 5.11.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.
- 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 +6 -0
- package/v-angular/table/table.models.d.ts +6 -0
package/package.json
CHANGED
|
@@ -28,9 +28,15 @@ export interface TableHeaderOptions {
|
|
|
28
28
|
order?: SortingOrder;
|
|
29
29
|
/**
|
|
30
30
|
* Dynamically hide or show the label and data on mobile view.
|
|
31
|
+
* This is useful when the table is displayed on a small screen and the data is not relevant.
|
|
31
32
|
*/
|
|
32
33
|
hideLabelOnMobile?: boolean;
|
|
33
34
|
hidePropertyOnMobile?: boolean;
|
|
35
|
+
/**
|
|
36
|
+
* Set to true to make the text bold on mobile view.
|
|
37
|
+
* This is useful when the label is hidden on mobile view but the data is still displayed.
|
|
38
|
+
*/
|
|
39
|
+
boldTextOnMobile?: boolean;
|
|
34
40
|
}
|
|
35
41
|
/** Options applying to table rows */
|
|
36
42
|
export interface TableRowOptions {
|
|
@@ -28,9 +28,15 @@ export interface TableHeaderOptions {
|
|
|
28
28
|
order?: SortingOrder;
|
|
29
29
|
/**
|
|
30
30
|
* Dynamically hide or show the label and data on mobile view.
|
|
31
|
+
* This is useful when the table is displayed on a small screen and the data is not relevant.
|
|
31
32
|
*/
|
|
32
33
|
hideLabelOnMobile?: boolean;
|
|
33
34
|
hidePropertyOnMobile?: boolean;
|
|
35
|
+
/**
|
|
36
|
+
* Set to true to make the text bold on mobile view.
|
|
37
|
+
* This is useful when the label is hidden on mobile view but the data is still displayed.
|
|
38
|
+
*/
|
|
39
|
+
boldTextOnMobile?: boolean;
|
|
34
40
|
}
|
|
35
41
|
/** Options applying to table rows */
|
|
36
42
|
export interface TableRowOptions {
|