iguazio.dashboard-react-controls 2.0.0 → 2.0.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/dist/scss/variables.scss
CHANGED
|
@@ -14,13 +14,15 @@ $secondaryTextColor: $topaz;
|
|
|
14
14
|
|
|
15
15
|
$actionsCellWidth: 82px;
|
|
16
16
|
|
|
17
|
-
//Fields and button heights
|
|
17
|
+
// Fields and button heights
|
|
18
18
|
$fieldDense: 36px;
|
|
19
19
|
$fieldNormal: 40px;
|
|
20
20
|
$fieldMedium: 44px;
|
|
21
21
|
$fieldChunky: 48px;
|
|
22
22
|
|
|
23
|
+
// Table row heights
|
|
23
24
|
$headerRowHeight: 40;
|
|
24
25
|
$headerRowHeightBig: 50;
|
|
26
|
+
$rowHeightSmall: 50;
|
|
25
27
|
$rowHeight: 57;
|
|
26
28
|
$rowHeightExtended: 82;
|
|
@@ -331,6 +331,10 @@ const validationRules = {
|
|
|
331
331
|
value: [generateRule.beginEndNotWith('s')]
|
|
332
332
|
}
|
|
333
333
|
},
|
|
334
|
+
nodeSelectors: {
|
|
335
|
+
key: commonRules.k8sLabels.key,
|
|
336
|
+
value: commonRules.k8sLabels.value
|
|
337
|
+
},
|
|
334
338
|
environmentVariables: {
|
|
335
339
|
secretName: [generateRule.validCharacters('a-z A-Z 0-9 - _ .'), generateRule.beginEndWith('a-z A-Z 0-9'), generateRule.noConsecutiveCharacters('.., .–, –.'), generateRule.maxLengthBetweenDelimiters(/[\.\-\_]/, 63, 'periods'), generateRule.length({
|
|
336
340
|
max: 253
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "iguazio.dashboard-react-controls",
|
|
3
|
-
"version": "2.0.
|
|
3
|
+
"version": "2.0.1",
|
|
4
4
|
"description": "Collection of resources (such as CSS styles, fonts and images) and ReactJS 17.x components to share among different Iguazio React repos.",
|
|
5
5
|
"main": "dist/index.js",
|
|
6
6
|
"module": "dist/index.js",
|