@terraware/web-components 2.0.32 → 2.0.33
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.
|
@@ -82,6 +82,8 @@
|
|
|
82
82
|
button {
|
|
83
83
|
background: none;
|
|
84
84
|
border: none;
|
|
85
|
+
color: $tw-clr-txt;
|
|
86
|
+
font-family: 'Inter';
|
|
85
87
|
padding-right: $tw-spc-base-small;
|
|
86
88
|
padding-left: 20px;
|
|
87
89
|
}
|
|
@@ -151,7 +153,4 @@
|
|
|
151
153
|
margin-bottom: 32px;
|
|
152
154
|
}
|
|
153
155
|
|
|
154
|
-
button {
|
|
155
|
-
font-family: 'Inter';
|
|
156
|
-
}
|
|
157
156
|
}
|
|
@@ -102,7 +102,8 @@ function CellDateRenderer(_ref) {
|
|
|
102
102
|
className: "".concat(classes.date, " ").concat(classes.default, " ").concat(className)
|
|
103
103
|
}, /*#__PURE__*/_react.default.createElement(_material.Typography, {
|
|
104
104
|
component: "p",
|
|
105
|
-
variant: "body1"
|
|
105
|
+
variant: "body1",
|
|
106
|
+
fontSize: "14px"
|
|
106
107
|
}, cellDateFormatter(value)));
|
|
107
108
|
}
|
|
108
109
|
|
|
@@ -122,7 +123,8 @@ function CellTextRenderer(_ref2) {
|
|
|
122
123
|
noWrap: true,
|
|
123
124
|
classes: {
|
|
124
125
|
root: classes.textRoot
|
|
125
|
-
}
|
|
126
|
+
},
|
|
127
|
+
fontSize: "14px"
|
|
126
128
|
}, value));
|
|
127
129
|
}
|
|
128
130
|
|
|
@@ -137,7 +139,8 @@ function CellBooleanRenderer(_ref3) {
|
|
|
137
139
|
className: "".concat(classes.default, " ").concat(className)
|
|
138
140
|
}, /*#__PURE__*/_react.default.createElement(_material.Typography, {
|
|
139
141
|
component: "p",
|
|
140
|
-
variant: "body1"
|
|
142
|
+
variant: "body1",
|
|
143
|
+
fontSize: "14px"
|
|
141
144
|
}, value === 'true' ? 'YES' : 'NO'));
|
|
142
145
|
}
|
|
143
146
|
|
|
@@ -153,7 +156,8 @@ function CellNotesRenderer(_ref4) {
|
|
|
153
156
|
}, /*#__PURE__*/_react.default.createElement(_material.Typography, {
|
|
154
157
|
id: id,
|
|
155
158
|
component: "p",
|
|
156
|
-
variant: "body1"
|
|
159
|
+
variant: "body1",
|
|
160
|
+
fontSize: "14px"
|
|
157
161
|
}, value && value.length > 0 ? /*#__PURE__*/_react.default.createElement(_iconsMaterial.Notes, null) : ''));
|
|
158
162
|
}
|
|
159
163
|
|
|
@@ -180,7 +184,8 @@ function CellEditRenderer(_ref5) {
|
|
|
180
184
|
display: "flex"
|
|
181
185
|
}, /*#__PURE__*/_react.default.createElement(_material.Typography, {
|
|
182
186
|
component: "p",
|
|
183
|
-
variant: "body1"
|
|
187
|
+
variant: "body1",
|
|
188
|
+
fontSize: "14px"
|
|
184
189
|
}, "Edit"), /*#__PURE__*/_react.default.createElement(_iconsMaterial.Edit, {
|
|
185
190
|
fontSize: "small",
|
|
186
191
|
className: classes.editIcon
|