@saooti/octopus-sdk 29.0.24 → 29.0.28
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
|
@@ -491,4 +491,8 @@ See [Configuration Reference](https://cli.vuejs.org/config/).
|
|
|
491
491
|
* 29.0.22 Eslint
|
|
492
492
|
* 29.0.23 Eslint
|
|
493
493
|
* 29.0.24 Version stable vue3
|
|
494
|
+
* 29.0.25 Specific category does not display in correct order
|
|
495
|
+
* 29.0.26 Snackbar position
|
|
496
|
+
* 29.0.27 Petit cursor:pointer des familles
|
|
497
|
+
* 29.0.28 Petite couleur des familles
|
|
494
498
|
|
package/package.json
CHANGED
package/src/assets/form.scss
CHANGED
package/src/assets/modal.scss
CHANGED
|
@@ -116,8 +116,9 @@ export default defineComponent({
|
|
|
116
116
|
return undefined;
|
|
117
117
|
},
|
|
118
118
|
sort(): string {
|
|
119
|
-
if (
|
|
120
|
-
return
|
|
119
|
+
if (this.popularSort) return "POPULARITY";
|
|
120
|
+
if (this.sortCriteria) return this.sortCriteria;
|
|
121
|
+
return 'DATE';
|
|
121
122
|
},
|
|
122
123
|
sortText(): string {
|
|
123
124
|
switch (this.sortCriteria) {
|