@saooti/octopus-sdk 39.0.43 → 39.0.44

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@saooti/octopus-sdk",
3
- "version": "39.0.43",
3
+ "version": "39.0.44",
4
4
  "private": false,
5
5
  "description": "Javascript SDK for using octopus",
6
6
  "author": "Saooti",
@@ -83,7 +83,7 @@ input:not([class^="vs__"]), button:not([class^="vs__"]), select:not([class^="vs_
83
83
  text-decoration: none !important;
84
84
  white-space: nowrap;
85
85
  border-width: 0;
86
- min-width: 24px;
86
+ //min-width: 24px; Problème avec flex-shrink
87
87
  @media (max-width: 960px) {
88
88
  white-space: normal;
89
89
  }
@@ -138,6 +138,9 @@ input:not([class^="vs__"]), button:not([class^="vs__"]), select:not([class^="vs_
138
138
  left: 0;
139
139
  }
140
140
  }
141
+ &.btn-min-width{
142
+ min-width: 24px;
143
+ }
141
144
 
142
145
  &.btn-primary {
143
146
  display: flex;
@@ -23,10 +23,10 @@
23
23
  </svg>
24
24
  </button>
25
25
  <div v-for="pageNumber in pagination" :key="pageNumber">
26
- <span v-if="null === pageNumber" class="btn"> ... </span>
26
+ <span v-if="null === pageNumber" class="btn btn-min-width"> ... </span>
27
27
  <button
28
28
  v-else
29
- class="btn"
29
+ class="btn btn-min-width"
30
30
  :class="{ active: page === pageNumber - 1 }"
31
31
  @click="changeFirst((pageNumber - 1) * rowsPerPage)"
32
32
  >
@@ -36,7 +36,7 @@
36
36
  <button
37
37
  v-for="paginateButton in buttonsRight"
38
38
  :key="paginateButton.title"
39
- class="btn"
39
+ class="btn btn-min-width"
40
40
  :title="paginateButton.title"
41
41
  :disabled="paginateButton.disabled"
42
42
  @click="paginateButton.action"