@saooti/octopus-sdk 36.0.35 → 36.0.36

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": "36.0.35",
3
+ "version": "36.0.36",
4
4
  "private": false,
5
5
  "description": "Javascript SDK for using octopus",
6
6
  "author": "Saooti",
@@ -69,7 +69,7 @@ input:not([class^="vs__"]), button:not([class^="vs__"]), select:not([class^="vs_
69
69
  }
70
70
  .btn{
71
71
  display: inline-block;
72
- padding: 0.5rem;
72
+ padding: 0.4rem;
73
73
  line-height: 1.5;
74
74
  color: #212529;
75
75
  text-align: center;
@@ -1,6 +1,7 @@
1
1
  .octopus-app{
2
2
  .octopus-form-item{
3
3
  min-height: 1.44rem;
4
+ padding: 0.4rem 0;
4
5
  }
5
6
  .form-label {
6
7
  display: block;
@@ -182,7 +182,7 @@ export default defineComponent({
182
182
  .octopus-app{
183
183
  .header-img{
184
184
  display: flex;
185
- min-height: 15rem;
185
+ min-height: 10rem;
186
186
  background-size: cover;
187
187
  background-position: center;
188
188
  h1{
@@ -14,9 +14,8 @@
14
14
  :label="$t('From the :')"
15
15
  />
16
16
  <ClassicDatePicker
17
- class="ps-3 pe-3"
18
17
  :date="fromDate"
19
- template-class="px-2 py-1 border rounded focus:border-blue-300"
18
+ template-class="mx-2 px-2 py-1 border rounded focus:border-blue-300"
20
19
  @updateDate="fromDate=$event;updateFromDate"
21
20
  />
22
21
  </div>
@@ -28,9 +27,8 @@
28
27
  :label="$t('To the :')"
29
28
  />
30
29
  <ClassicDatePicker
31
- class="ps-3"
32
30
  :date="toDate"
33
- template-class="px-2 py-1 border rounded focus:border-blue-300"
31
+ template-class="ms-2 px-2 py-1 border rounded focus:border-blue-300"
34
32
  @updateDate="toDate=$event;updateToDate"
35
33
  />
36
34
  </div>
@@ -11,7 +11,7 @@
11
11
  />
12
12
  <div
13
13
  v-if="isRubriquage"
14
- class="d-flex flex-column mb-2 flex-grow-1"
14
+ class="d-flex ms-1 flex-column mb-2 flex-grow-1"
15
15
  >
16
16
  <RubriqueChoice
17
17
  v-for="(filter, index) in arrayFilter"
@@ -318,10 +318,10 @@ export default defineComponent({
318
318
  .image-play-button .play-button-error-icon {
319
319
  background: #0000009d !important;
320
320
  cursor: default !important;
321
- align-self: center;
322
- margin-bottom: calc(50% - 1rem);
321
+ /* align-self: center;
322
+ margin-bottom: calc(50% - 1rem); */
323
323
  .big-icon-error {
324
- font-size: 2rem;
324
+ font-size: 1.5rem;
325
325
  position: relative;
326
326
  }
327
327
  }
@@ -174,6 +174,9 @@ import vSelect from "vue-select";
174
174
  .vs__dropdown-option{
175
175
  white-space: initial;
176
176
  }
177
+ .vs--searchable .vs__dropdown-toggle{
178
+ cursor: pointer;
179
+ }
177
180
  .vs__search:focus{
178
181
  min-width: 150px;
179
182
  }
@@ -7,7 +7,7 @@
7
7
  v-for="option in options"
8
8
  :key="option.title"
9
9
  class="octopus-form-item"
10
- :class="isColumn? 'mb-2':'me-2'"
10
+ :class="isColumn? 'd-flex align-items-center':'me-2'"
11
11
  >
12
12
  <input
13
13
  :id="idRadio + option.value"
@@ -167,9 +167,9 @@ export default defineComponent({
167
167
  z-index: 9999;
168
168
  &.octopus-dropdown{
169
169
  min-width: 200px;
170
- padding: 0.5rem 1rem;
171
170
  .octopus-dropdown-item{
172
- display: block;
171
+ display: flex;
172
+ justify-content: center;
173
173
  color: rgb(29, 29, 29);
174
174
  width: 100%;
175
175
  padding: 0.25rem 1rem;
@@ -59,6 +59,7 @@
59
59
  </div>
60
60
  <div class="d-flex align-items-center flex-grow-1">
61
61
  <button
62
+ title="-15''"
62
63
  class="btn fs-1 bg-transparent text-light saooti-backward"
63
64
  @click="seekClick(-15)"
64
65
  />
@@ -78,6 +79,7 @@
78
79
  />
79
80
  </button>
80
81
  <button
82
+ title="+15''"
81
83
  class="btn fs-1 bg-transparent text-light saooti-forward"
82
84
  @click="seekClick(15)"
83
85
  />