iguazio.dashboard-react-controls 0.0.39 → 1.1.0

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.
@@ -10,8 +10,8 @@
10
10
  display: flex;
11
11
  align-items: center;
12
12
  justify-content: center;
13
- width: 30px;
14
- height: 30px;
13
+ width: 36px;
14
+ height: 36px;
15
15
  padding: 4px;
16
16
 
17
17
  & > * {
@@ -3,7 +3,6 @@
3
3
  $activeJobTabBorder: 3px solid $cornflowerBlue;
4
4
  $disabledBorder: 1px solid rgba($spunPearl, 0.3);
5
5
  $errorBorder: 1px solid $amaranth;
6
- $gitBorder: 1px solid $white;
7
6
  $labelBorder: 1px solid $amethyst;
8
7
  $parametersBorder: 1px solid $burntSiennaTwo;
9
8
  $primaryBorder: 1px solid rgba($black, 0.2);
@@ -18,3 +17,4 @@ $uploadFileIdleBorder: 1px dashed $silver;
18
17
  $labelEditBorder: 1px solid rgba($amethyst, 0.34);
19
18
  $applyBtnBorder: 4px solid $brightTurquoise;
20
19
  $focusBorder: 1px solid $topaz;
20
+ $tableRowBorder: 1px solid $titanWhite;
@@ -21,6 +21,7 @@ $doveGrayTwo: #6e6e6e;
21
21
  $ebonyClay: #293445;
22
22
  $gallery: #eee;
23
23
  $gossamer: #0b9b7b;
24
+ $ghostWhite: #f5f7ff;
24
25
  $grandis: #ffd077;
25
26
  $grandisTwo: rgba($grandis, 0.36);
26
27
  $gunsmoke: #7f8d89;
@@ -33,6 +34,7 @@ $java: #13bbb1;
33
34
  $javaLight: #1fcc9e;
34
35
  $javaTwo: rgba($java, 0.24);
35
36
  $kimberly: #6d5e92;
37
+ $magnoliaWhite: #eef1ff;
36
38
  $malibu: #869cff;
37
39
  $malibuTwo: rgba($malibu, 0.12);
38
40
  $maroonFlash: #bc2553;
@@ -241,7 +241,7 @@ textarea {
241
241
  .form-table__actions-cell {
242
242
  visibility: hidden;
243
243
  justify-content: flex-end;
244
- width: 72px;
244
+ min-width: 72px;
245
245
  padding: 0;
246
246
 
247
247
  & > * {
@@ -14,14 +14,9 @@
14
14
  flex-shrink: 1;
15
15
  }
16
16
 
17
- @mixin tableDet {
18
- display: inline-flex;
19
- align-items: center;
17
+ @mixin tableDet($topPadding, $rightPadding, $bottomPadding, $leftPadding) {
18
+ padding: $topPadding $rightPadding $bottomPadding $leftPadding;
20
19
  text-align: left;
21
-
22
- &:first-child {
23
- margin-left: 10px;
24
- }
25
20
  }
26
21
 
27
22
  @mixin detailsMetadataStatisticsTable {
@@ -30,7 +25,6 @@
30
25
  flex: 1;
31
26
  flex-direction: column;
32
27
  align-items: flex-start;
33
- overflow-x: auto;
34
28
 
35
29
  &-wrapper {
36
30
  min-width: 100%;
@@ -380,16 +374,8 @@
380
374
  line-height: $lineHeight;
381
375
  }
382
376
 
383
- @mixin tableHeader($topPadding, $rightPadding, $bottomPadding, $leftPadding) {
384
- flex-direction: row;
385
- justify-content: flex-start;
386
- align-items: center;
387
- height: auto;
388
- min-height: 50px;
389
- margin: 0 1px;
390
- padding: $topPadding $rightPadding $bottomPadding $leftPadding;
391
- text-align: left;
392
- color: $topaz;
377
+ @mixin tableHeader {
378
+ background-color: $magnoliaWhite;
393
379
  font-weight: bold;
394
380
  font-size: 14px;
395
381
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "iguazio.dashboard-react-controls",
3
- "version": "0.0.39",
3
+ "version": "1.1.0",
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",