@tetacom/ng-components 1.0.50 → 1.0.53
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/default/numeric-cell/numeric-cell.component.d.ts +1 -0
- package/component/table/service/table.service.d.ts +2 -0
- package/component/table/table/table.component.d.ts +2 -2
- package/component/table/table-body/table-body.component.d.ts +1 -1
- package/esm2020/common/util/position-util.mjs +7 -1
- package/esm2020/component/table/default/numeric-cell/numeric-cell.component.mjs +6 -3
- package/esm2020/component/table/service/table.service.mjs +11 -1
- package/esm2020/component/table/table/table.component.mjs +28 -23
- package/esm2020/component/table/table-body/table-body.component.mjs +7 -16
- package/esm2020/directive/context-menu/context-menu.directive.mjs +1 -1
- package/esm2020/directive/only-number/only-number.directive.mjs +2 -2
- package/fesm2015/tetacom-ng-components.mjs +56 -42
- package/fesm2015/tetacom-ng-components.mjs.map +1 -1
- package/fesm2020/tetacom-ng-components.mjs +55 -41
- package/fesm2020/tetacom-ng-components.mjs.map +1 -1
- package/package.json +1 -1
- package/style/presets/color-presets.scss +30 -30
- package/style/table.scss +2 -2
package/package.json
CHANGED
|
@@ -100,40 +100,40 @@ $themes: (
|
|
|
100
100
|
'5': rgba(57, 57, 65, 1)
|
|
101
101
|
),
|
|
102
102
|
'red': (
|
|
103
|
-
'90': rgba(
|
|
104
|
-
'80': rgba(
|
|
105
|
-
'70': rgba(
|
|
106
|
-
'60': rgba(
|
|
107
|
-
'50': rgba(
|
|
108
|
-
'40': rgba(
|
|
109
|
-
'30': rgba(
|
|
110
|
-
'20': rgba(
|
|
111
|
-
'10': rgba(
|
|
112
|
-
'5': rgba(
|
|
103
|
+
'90': rgba(255,204,182,1),
|
|
104
|
+
'80': rgba(252,179,152,1),
|
|
105
|
+
'70': rgba(246,153,125,1),
|
|
106
|
+
'60': rgba(236,128,101,1),
|
|
107
|
+
'50': rgba(224,104,80,1),
|
|
108
|
+
'40': rgba(186,85,77,1),
|
|
109
|
+
'30': rgba(150,71,72,1),
|
|
110
|
+
'20': rgba(117,63,69,1),
|
|
111
|
+
'10': rgba(86,53,59,1),
|
|
112
|
+
'5': rgba(58,40,45,1)
|
|
113
113
|
),
|
|
114
114
|
'green': (
|
|
115
|
-
'90': rgba(
|
|
116
|
-
'80': rgba(
|
|
117
|
-
'70': rgba(
|
|
118
|
-
'60': rgba(
|
|
119
|
-
'50': rgba(89,
|
|
120
|
-
'40': rgba(
|
|
121
|
-
'30': rgba(
|
|
122
|
-
'20': rgba(
|
|
123
|
-
'10': rgba(
|
|
124
|
-
'5': rgba(
|
|
115
|
+
'90': rgba(196,245,209,1),
|
|
116
|
+
'80': rgba(157,222,168,1),
|
|
117
|
+
'70': rgba(129,208,136,1),
|
|
118
|
+
'60': rgba(104,192,104,1),
|
|
119
|
+
'50': rgba(89,174,80,1),
|
|
120
|
+
'40': rgba(76,145,74,1),
|
|
121
|
+
'30': rgba(67,118,69,1),
|
|
122
|
+
'20': rgba(58,93,61,1),
|
|
123
|
+
'10': rgba(47,69,51,1),
|
|
124
|
+
'5': rgba(35,47,38,1),
|
|
125
125
|
),
|
|
126
126
|
'yellow': (
|
|
127
|
-
'90': rgba(
|
|
128
|
-
'80': rgba(
|
|
129
|
-
'70': rgba(
|
|
130
|
-
'60': rgba(
|
|
131
|
-
'50': rgba(
|
|
132
|
-
'40': rgba(
|
|
133
|
-
'30': rgba(
|
|
134
|
-
'20': rgba(
|
|
135
|
-
'10': rgba(
|
|
136
|
-
'5': rgba(
|
|
127
|
+
'90': rgba(255,252,191,1),
|
|
128
|
+
'80': rgba(255,241,143,1),
|
|
129
|
+
'70': rgba(255,223,96,1),
|
|
130
|
+
'60': rgba(253,199,48,1),
|
|
131
|
+
'50': rgba(238,171,0,1),
|
|
132
|
+
'40': rgba(196,137,13,1),
|
|
133
|
+
'30': rgba(157,108,23,1),
|
|
134
|
+
'20': rgba(122,84,29,1),
|
|
135
|
+
'10': rgba(91,64,31,1),
|
|
136
|
+
'5': rgba(64,47,29,1)
|
|
137
137
|
),
|
|
138
138
|
'background': (
|
|
139
139
|
'50': rgba(34, 34, 41, 1),
|
package/style/table.scss
CHANGED
|
@@ -85,7 +85,7 @@
|
|
|
85
85
|
}
|
|
86
86
|
|
|
87
87
|
&:hover, &_active {
|
|
88
|
-
background: getColorVar('text',
|
|
88
|
+
background: getColorVar('text', 20);
|
|
89
89
|
}
|
|
90
90
|
|
|
91
91
|
&:hover &__menu, &__menu_open {
|
|
@@ -222,7 +222,7 @@
|
|
|
222
222
|
padding: 0 8px;
|
|
223
223
|
overflow: hidden;
|
|
224
224
|
text-overflow: ellipsis;
|
|
225
|
-
user-select:
|
|
225
|
+
user-select: contain;
|
|
226
226
|
|
|
227
227
|
&_numeric {
|
|
228
228
|
text-align: right;
|