@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
|
@@ -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;
|
package/src/assets/form.scss
CHANGED
|
@@ -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;
|
package/src/assets/general.scss
CHANGED