@avakhula/ui 0.0.156 → 0.0.158

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.156",
3
+ "version": "0.0.158",
4
4
  "main": "dist/index.js",
5
5
  "module": "dist/index.umd.cjs",
6
6
  "source": "src/index.js",
@@ -167,6 +167,11 @@ export default {
167
167
  showPassword: false,
168
168
  };
169
169
  },
170
+ mounted() {
171
+ setTimeout(() => {
172
+ this.$globalEvents.$emit(`label:disabled:${this.id}`, this.disabled);
173
+ }, 10);
174
+ },
170
175
  methods: {
171
176
  toggleShowPassword() {
172
177
  this.showPassword = !this.showPassword;
@@ -99,6 +99,10 @@ export default {
99
99
  color: $neutral-500;
100
100
  }
101
101
  }
102
+
103
+ span.required {
104
+ color: $neutral-500;
105
+ }
102
106
  }
103
107
 
104
108
  .info-button {