@appscode/design-system 2.17.56 → 2.17.57
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 +1 -1
- package/vue-components/styles/components/_tabs.scss +1 -0
- package/vue-components/v3/form-fields/AcInput.vue +1 -1
- package/vue-components/v3/form-fields/AcSelect.vue +2 -2
- package/vue-components/v3/form-fields/AcTextArea.vue +2 -2
- package/vue-components/v3/form-fields/Switch.vue +1 -1
- package/vue-components/v3/inbox/MessageList.vue +1 -1
package/package.json
CHANGED
|
@@ -101,7 +101,7 @@ onMounted(() => {
|
|
|
101
101
|
</template>
|
|
102
102
|
<div class="is-flex is-flex-direction-column">
|
|
103
103
|
<div v-if="htmlErrorMsg" class="invalid-error is-danger" v-html="errorMsg" />
|
|
104
|
-
<p v-else-if="errorMsg" class="is-danger">{{ errorMsg }}</p>
|
|
104
|
+
<p v-else-if="errorMsg" class="is-danger is-italic">{{ errorMsg }}</p>
|
|
105
105
|
<slot name="message" />
|
|
106
106
|
</div>
|
|
107
107
|
</ac-input-text>
|
|
@@ -172,8 +172,8 @@ const onSelect = (selectedOption: unknown, id: string) => emit("select", selecte
|
|
|
172
172
|
<slot name="option" v-bind="props" />
|
|
173
173
|
</template>
|
|
174
174
|
</multiselect>
|
|
175
|
-
<div v-if="htmlErrorMsg" class="invalid-error is-danger" v-html="errorMsg" />
|
|
176
|
-
<p v-else v-show="errorMsg" class="is-danger">
|
|
175
|
+
<div v-if="htmlErrorMsg" class="invalid-error is-danger is-italic" v-html="errorMsg" />
|
|
176
|
+
<p v-else v-show="errorMsg" class="is-danger is-italic">
|
|
177
177
|
{{ errorMsg }}
|
|
178
178
|
</p>
|
|
179
179
|
</div>
|
|
@@ -82,8 +82,8 @@ watch(
|
|
|
82
82
|
@focusout="onFocusOutInput"
|
|
83
83
|
/>
|
|
84
84
|
<div class="is-flex is-flex-direction-column">
|
|
85
|
-
<div v-if="htmlErrorMsg" class="invalid-error" v-html="errorMsg" />
|
|
86
|
-
<p v-else-if="errorMsg" class="is-danger">{{ errorMsg }}</p>
|
|
85
|
+
<div v-if="htmlErrorMsg" class="invalid-error is-danger is-italic" v-html="errorMsg" />
|
|
86
|
+
<p v-else-if="errorMsg" class="is-danger is-italic">{{ errorMsg }}</p>
|
|
87
87
|
<slot name="message" />
|
|
88
88
|
</div>
|
|
89
89
|
</AcInputText>
|
|
@@ -21,7 +21,7 @@ const Searchbar = defineAsyncComponent(() => import("../form-fields/Searchbar.vu
|
|
|
21
21
|
<div class="is-flex is-justify-content-space-between">
|
|
22
22
|
<div class="is-flex gap-8 dropdown-action dropdown">
|
|
23
23
|
<label class="ac-checkbox" for="checkbox16">
|
|
24
|
-
<input class="is-danger" id="checkbox16" type="checkbox" /><span class="checkmark"></span>
|
|
24
|
+
<input class="is-danger is-italic" id="checkbox16" type="checkbox" /><span class="checkmark"></span>
|
|
25
25
|
</label>
|
|
26
26
|
<button class="button ac-button is-white is-small" title="Filter">
|
|
27
27
|
<span class="icon">
|