@tetacom/ng-components 1.3.5 → 1.3.7
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/component/table/public-api.d.ts +1 -0
- package/component/table/table-row/table-row.component.d.ts +14 -0
- package/docs/tableDocs.mdx +136 -125
- package/esm2022/component/table/public-api.mjs +2 -1
- package/esm2022/component/table/service/table.service.mjs +8 -6
- package/esm2022/component/table/table-body/table-body.component.mjs +5 -3
- package/esm2022/component/table/table-row/table-row.component.mjs +42 -0
- package/fesm2022/tetacom-ng-components.mjs +49 -8
- package/fesm2022/tetacom-ng-components.mjs.map +1 -1
- package/package.json +1 -1
- package/style/table.scss +12 -6
package/package.json
CHANGED
package/style/table.scss
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
@import
|
|
2
|
-
@import
|
|
1
|
+
@import 'util/color-util.scss';
|
|
2
|
+
@import 'util/font-util.scss';
|
|
3
3
|
|
|
4
4
|
.table {
|
|
5
5
|
display: flex;
|
|
@@ -84,11 +84,13 @@
|
|
|
84
84
|
}
|
|
85
85
|
}
|
|
86
86
|
|
|
87
|
-
&:hover,
|
|
87
|
+
&:hover,
|
|
88
|
+
&_active {
|
|
88
89
|
background: var(--color-text-20);
|
|
89
90
|
}
|
|
90
91
|
|
|
91
|
-
&:hover &__menu,
|
|
92
|
+
&:hover &__menu,
|
|
93
|
+
&__menu_open {
|
|
92
94
|
display: flex;
|
|
93
95
|
}
|
|
94
96
|
|
|
@@ -143,7 +145,6 @@
|
|
|
143
145
|
&:hover &__resize {
|
|
144
146
|
display: block;
|
|
145
147
|
}
|
|
146
|
-
|
|
147
148
|
}
|
|
148
149
|
|
|
149
150
|
&__dropdown {
|
|
@@ -191,9 +192,14 @@
|
|
|
191
192
|
background-color: var(--color-global-bgmain);
|
|
192
193
|
}
|
|
193
194
|
|
|
194
|
-
&_selected,
|
|
195
|
+
&_selected,
|
|
196
|
+
&_selected:hover {
|
|
195
197
|
background-color: var(--color-primary-10);
|
|
196
198
|
}
|
|
199
|
+
|
|
200
|
+
&_disabled {
|
|
201
|
+
color: var(--color-text-50);
|
|
202
|
+
}
|
|
197
203
|
}
|
|
198
204
|
}
|
|
199
205
|
|