@saooti/octopus-sdk 30.0.11 → 30.0.12

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/README.md CHANGED
@@ -508,4 +508,5 @@ See [Configuration Reference](https://cli.vuejs.org/config/).
508
508
  * 30.0.8 Améliorations diverses
509
509
  * 30.0.9 Améliorations diverses
510
510
  * 30.0.10 PB clearInterval
511
- * 30.0.11 Version pour release
511
+ * 30.0.11 Version pour release
512
+ * 30.0.12 Export ClasicLoading
package/index.ts CHANGED
@@ -53,6 +53,7 @@ import CommentInput from "./src/components/display/comments/CommentInput.vue";
53
53
  import ClassicSearch from "./src/components/form/ClassicSearch.vue";
54
54
  import ClassicCheckbox from "./src/components/form/ClassicCheckbox.vue";
55
55
  import ClassicRadio from "./src/components/form/ClassicRadio.vue";
56
+ import ClassicLoading from "./src/components/form/ClassicLoading.vue";
56
57
 
57
58
  //mixins
58
59
  import {selenium} from "./src/components/mixins/functions";
@@ -107,7 +108,8 @@ const components = {
107
108
  tagOfMixins,
108
109
  ClassicSearch,
109
110
  ClassicCheckbox,
110
- ClassicRadio
111
+ ClassicRadio,
112
+ ClassicLoading
111
113
  }
112
114
 
113
115
  export default components;
@@ -157,5 +159,6 @@ export {
157
159
  tagOfMixins,
158
160
  ClassicSearch,
159
161
  ClassicCheckbox,
160
- ClassicRadio
162
+ ClassicRadio,
163
+ ClassicLoading
161
164
  };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@saooti/octopus-sdk",
3
- "version": "30.0.11",
3
+ "version": "30.0.12",
4
4
  "private": false,
5
5
  "description": "Javascript SDK for using octopus",
6
6
  "author": "Saooti",
@@ -171,6 +171,7 @@
171
171
  font-size: 1rem;
172
172
  display: inline-flex;
173
173
  align-items: center;
174
+ justify-content: center;
174
175
  }
175
176
  &.btn-arrow {
176
177
  margin: 0.2rem;
@@ -237,9 +238,6 @@
237
238
  }
238
239
  .dropdown-menu {
239
240
  padding: 0.5rem;
240
- @media (max-width: 450px) {
241
- min-width: 15rem;
242
- }
243
241
  }
244
242
  .dropdown-item {
245
243
  cursor: pointer;
@@ -12,7 +12,15 @@
12
12
  border: 0.1rem solid #dee2e6;
13
13
  border-radius: 0.3rem;
14
14
  }
15
-
15
+ .form-check-label {
16
+ cursor: pointer;
17
+ &::before {
18
+ top: 0;
19
+ }
20
+ &::after {
21
+ top: 0;
22
+ }
23
+ }
16
24
  .form-input {
17
25
  -webkit-appearance: none;
18
26
  -moz-appearance: none;
@@ -234,7 +234,6 @@ body{
234
234
  @media (max-width: 960px) {
235
235
  .d-flex:not(.flex-column){
236
236
  flex-wrap: wrap;
237
- flex-grow: 1;
238
237
  }
239
238
  }
240
239
  }
@@ -25,7 +25,6 @@
25
25
  }}</b>
26
26
  <Popover
27
27
  :target="'popover-comment' + comment.comId"
28
- custom-class="wizard-help"
29
28
  >
30
29
  {{ $t('Comment waiting') }}
31
30
  </Popover>