@saooti/octopus-sdk 30.0.9 → 30.0.13

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
@@ -506,4 +506,8 @@ See [Configuration Reference](https://cli.vuejs.org/config/).
506
506
  * 30.0.6 Merge 29
507
507
  * 30.0.7 Améliorations css
508
508
  * 30.0.8 Améliorations diverses
509
- * 30.0.9 Améliorations diverses
509
+ * 30.0.9 Améliorations diverses
510
+ * 30.0.10 PB clearInterval
511
+ * 30.0.11 Version pour release
512
+ * 30.0.12 Export ClasicLoading
513
+ * 30.0.13 Améliorations css
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.9",
3
+ "version": "30.0.13",
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;
@@ -1,6 +1,7 @@
1
1
 
2
2
  html{
3
3
  font-size: 20px;
4
+ height: 100%;
4
5
  }
5
6
  body{
6
7
  color: #353535;
@@ -8,6 +9,8 @@ body{
8
9
  font-size: 0.8rem;
9
10
  overflow-x: hidden;
10
11
  background: #fff;
12
+ min-height: 100%;
13
+ overscroll-behavior-y: contain;
11
14
  }
12
15
  .octopus-app{
13
16
  h1,h2,h3,h4,h5,h6{
@@ -95,6 +98,7 @@ body{
95
98
  margin: 0.5rem 0.5rem 0 0.5rem;
96
99
  border-radius: 1rem;
97
100
  flex-grow: 1;
101
+ overflow: auto;
98
102
  @media (max-width: 500px){
99
103
  margin: 0.3rem;
100
104
  padding: 0.8rem;
@@ -107,7 +111,12 @@ body{
107
111
  box-shadow:0px 6px 20px 3px rgba($octopus-primary-color, 0.2) !important;
108
112
  }
109
113
  }
110
-
114
+ a.btn{
115
+ color: #383838;
116
+ &:hover{
117
+ color: #383838;
118
+ }
119
+ }
111
120
  a, a:hover{
112
121
  text-decoration: none;
113
122
  outline-width: 0;
@@ -208,6 +217,9 @@ body{
208
217
  .c-hand{
209
218
  cursor: pointer;
210
219
  }
220
+ .c-hand-auto {
221
+ cursor: auto;
222
+ }
211
223
 
212
224
  .html-wysiwyg-content{
213
225
  h3,h4{
@@ -229,7 +241,6 @@ body{
229
241
  @media (max-width: 960px) {
230
242
  .d-flex:not(.flex-column){
231
243
  flex-wrap: wrap;
232
- flex-grow: 1;
233
244
  }
234
245
  }
235
246
  }
@@ -16,40 +16,6 @@
16
16
  }
17
17
  }
18
18
 
19
- .multiselect.light-multiselect {
20
-
21
- .multiselect__single {
22
- margin-bottom: 0;
23
- }
24
- }
25
-
26
- .light-multiselect{
27
- min-height: auto;
28
- .multiselect__tags {
29
- padding: 0 40px 0 0;
30
- min-height: auto;
31
- }
32
- .multiselect__single {
33
- margin-bottom: 0;
34
- }
35
- .multiselect__input,
36
- .multiselect__single,
37
- .multiselect__tags,
38
- .multiselect--active .multiselect__select,
39
- .multiselect__spinner {
40
- background: transparent;
41
- }
42
- .multiselect--active .multiselect__select {
43
- transform: unset;
44
- }
45
- .option__title {
46
- font-weight: bold;
47
- }
48
- .octopus-arrow-down {
49
- top: 2px;
50
- }
51
- }
52
-
53
19
  .multiselect-octopus-proposition{
54
20
  display: flex;
55
21
  align-items: center;
@@ -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>
@@ -44,7 +44,7 @@ export default defineComponent({
44
44
  }, 1000);
45
45
  },
46
46
  unmounted() {
47
- clearInterval(this.countdownTimer);
47
+ clearInterval((this.countdownTimer as unknown as number));
48
48
  },
49
49
 
50
50
  methods: {
@@ -28,7 +28,7 @@
28
28
  :show-no-results="true"
29
29
  :hide-selected="true"
30
30
  :show-labels="false"
31
- :class="{ 'light-multiselect': light }"
31
+ :class="{ 'multiselect-transparent': light }"
32
32
  @search-change="onSearchOrganisation"
33
33
  @open="onOpen"
34
34
  @close="onClose"
@@ -51,7 +51,6 @@
51
51
  >
52
52
  <span
53
53
  class="option__title"
54
- :class="{ descriptionText: light }"
55
54
  >
56
55
  {{ option.name }}
57
56
  </span>
@@ -72,7 +71,6 @@
72
71
  >
73
72
  <span
74
73
  class="option__title"
75
- :class="{ descriptionText: light }"
76
74
  >
77
75
  {{ option.name }}
78
76
  </span>
@@ -99,7 +97,6 @@
99
97
  </template>
100
98
  <template #caret="">
101
99
  <div
102
- v-if="!light"
103
100
  class="position-relative"
104
101
  >
105
102
  <span
@@ -10,7 +10,7 @@
10
10
  </div>
11
11
  <div
12
12
  v-else-if="errorText"
13
- class="text-center"
13
+ class="text-center text-danger"
14
14
  >
15
15
  <h3>{{ errorText }}</h3>
16
16
  </div>
@@ -81,7 +81,6 @@
81
81
  page="leftMenu"
82
82
  :defaultanswer="$t('No organisation filter')"
83
83
  :value="organisationId"
84
- :light="true"
85
84
  :reset="reset"
86
85
  @selected="onOrganisationSelected"
87
86
  />
@@ -30,7 +30,6 @@
30
30
  width="auto"
31
31
  :defaultanswer="$t('No organisation filter')"
32
32
  :value="organisationId"
33
- :light="true"
34
33
  class="me-2"
35
34
  :reset="reset"
36
35
  @selected="onOrganisationSelected"