@gravitee/ui-particles-angular 13.0.0 → 13.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.
@@ -1823,6 +1823,10 @@
1823
1823
  <path fill="currentColor" d="M8.102 11.13V21h10.454c.495.005.927-.358 1.003-.854l1.4-8.995a.99.99 0 0 0-.237-.807 1.035 1.035 0 0 0-.8-.344h-6.746V5c0-.893-.594-1.649-1.413-1.906l-3.48 7.718c-.051.113-.112.22-.18.319ZM6.073 21v-9h-2.03c-.56 0-1.014.448-1.014 1v7c0 .552.455 1 1.015 1h2.03Zm-2.03 2C2.364 23 1 21.657 1 20v-7c0-1.657 1.363-3 3.044-3h2.385l3.79-8.406c.163-.361.527-.594.927-.594 2.242 0 4.059 1.79 4.059 4v3h4.717a3.064 3.064 0 0 1 2.331 1.031 2.97 2.97 0 0 1 .712 2.42l-1.4 8.998c-.227 1.48-1.526 2.567-3.032 2.55H4.044Z"></path>
1824
1824
  </g>
1825
1825
  </symbol>
1826
+ <symbol fill="none" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" id="top-bar">
1827
+ <path fill-rule="evenodd" clip-rule="evenodd" d="M5 4C4.44772 4 4 4.44772 4 5V19C4 19.5523 4.44772 20 5 20H19C19.5523 20 20 19.5523 20 19V5C20 4.44772 19.5523 4 19 4H5ZM2 5C2 3.34315 3.34315 2 5 2H19C20.6569 2 22 3.34315 22 5V19C22 20.6569 20.6569 22 19 22H5C3.34315 22 2 20.6569 2 19V5Z" fill="currentColor"></path>
1828
+ <path fill-rule="evenodd" clip-rule="evenodd" d="M2 9C2 8.44772 2.44772 8 3 8H21C21.5523 8 22 8.44772 22 9C22 9.55228 21.5523 10 21 10H3C2.44772 10 2 9.55228 2 9Z" fill="currentColor"></path>
1829
+ </symbol>
1826
1830
  <symbol fill="none" viewBox="0 0 24 24" id="trash">
1827
1831
  <g>
1828
1832
  <path fill="currentColor" d="M2.836 6.5H3.85l1.47 13.237A3.666 3.666 0 0 0 8.964 23h6.078a3.666 3.666 0 0 0 3.644-3.263L20.157 6.5h1.013a.917.917 0 1 0 0-1.834h-5.5V3.75A2.75 2.75 0 0 0 12.92 1h-1.833a2.75 2.75 0 0 0-2.75 2.75v.916h-5.5a.917.917 0 0 0 0 1.834Zm7.334-2.75c0-.506.41-.917.916-.917h1.834a.916.916 0 0 1 .916.917v.916H10.17V3.75ZM9.253 6.5h9.061l-1.453 13.035a1.833 1.833 0 0 1-1.833 1.631H8.964a1.832 1.832 0 0 1-1.833-1.631L5.691 6.5h3.562Z"></path>
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@gravitee/ui-particles-angular",
3
- "version": "13.0.0",
3
+ "version": "13.1.0",
4
4
  "description": "Gravitee.io - UI Particles Angular",
5
5
  "repository": {
6
6
  "type": "git",
@@ -41,6 +41,14 @@ $typography: map.get(theme.$mat-theme, typography);
41
41
  background-color: mat.m2-get-color-from-palette(palettes.$mat-dove-palette, default);
42
42
  text-align: left;
43
43
  text-transform: uppercase;
44
+
45
+ & > tr:first-child > th:first-child {
46
+ border-top-left-radius: 4px;
47
+ }
48
+
49
+ & > tr:first-child > th:last-child {
50
+ border-top-right-radius: 4px;
51
+ }
44
52
  }
45
53
 
46
54
  tbody {
@@ -48,8 +56,14 @@ $typography: map.get(theme.$mat-theme, typography);
48
56
 
49
57
  background-color: mat.m2-get-color-from-palette(palettes.$mat-basic-palette, white);
50
58
 
51
- & > tr:last-child > td {
59
+ & > tr:last-child > td:first-child {
60
+ border-bottom: 0;
61
+ border-bottom-left-radius: 4px;
62
+ }
63
+
64
+ & > tr:last-child > td:last-child {
52
65
  border-bottom: 0;
66
+ border-bottom-right-radius: 4px;
53
67
  }
54
68
  }
55
69