@avakhula/ui 0.0.100 → 0.0.102

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": "@avakhula/ui",
3
- "version": "0.0.100",
3
+ "version": "0.0.102",
4
4
  "main": "dist/index.js",
5
5
  "module": "dist/index.umd.cjs",
6
6
  "source": "src/index.js",
@@ -2,7 +2,7 @@
2
2
  <div class="report-limit-selector">
3
3
  <ib-label>{{ labelSelect }}</ib-label>
4
4
  <ib-select
5
- class="report-limit-selector-select"
5
+ classList="report-limit-selector-select"
6
6
  :value="value"
7
7
  :options="prepareOptions"
8
8
  :is-multiple="false"
@@ -39,6 +39,7 @@ export default {
39
39
 
40
40
  if (
41
41
  this.states === progressBarStates.FAILED ||
42
+ this.states === progressBarStates.CANCELING ||
42
43
  this.states === progressBarStates.CANCELED
43
44
  ) {
44
45
  return "close-circle";
@@ -2,5 +2,6 @@ export const progressBarStates = {
2
2
  PROGRESS: "progress",
3
3
  SUCCESS: "success",
4
4
  FAILED: "failed",
5
+ CANCELING: "canceling",
5
6
  CANCELED: "canceled",
6
7
  };
@@ -102,6 +102,13 @@ $progress-bar-canceled-bg: $gray-500;
102
102
  }
103
103
  }
104
104
 
105
+ &.progress-bar-canceling {
106
+ .gradient {
107
+ display: block;
108
+ }
109
+ }
110
+
111
+ &.progress-bar-canceling,
105
112
  &.progress-bar-canceled {
106
113
  .progress {
107
114
  min-width: 100%;
@@ -387,7 +387,7 @@ export default {
387
387
  default: false,
388
388
  },
389
389
  },
390
- emits: ["close", "input", "search", "resize", "submit"],
390
+ emits: ["close", "input", "search", "resize", "submit", "update:modelValue"],
391
391
  watch: {
392
392
  value(value) {
393
393
  this.val = value;