vueless 0.0.608 → 0.0.610
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/ui.button-toggle-item/config.ts +0 -6
- package/ui.container-modal-confirm/config.ts +0 -1
- package/ui.dropdown-badge/config.ts +0 -1
- package/ui.dropdown-button/config.ts +0 -1
- package/ui.dropdown-link/config.ts +0 -1
- package/ui.dropdown-list/UDropdownList.vue +12 -2
- package/ui.form-input-search/config.ts +0 -1
- package/ui.form-textarea/config.ts +1 -2
- package/ui.loader-overlay/ULoaderOverlay.vue +1 -1
- package/ui.loader-overlay/types.ts +5 -0
- package/ui.navigation-tab/config.ts +0 -1
- package/web-types.json +10 -1
package/package.json
CHANGED
|
@@ -87,8 +87,18 @@ watch(
|
|
|
87
87
|
const childStyles = childDiv && window.getComputedStyle(childDiv);
|
|
88
88
|
const childMarginTop = parseFloat(childStyles?.marginTop || "0");
|
|
89
89
|
const childMarginBottom = parseFloat(childStyles?.marginBottom || "0");
|
|
90
|
-
|
|
91
|
-
|
|
90
|
+
const childPaddingTop = parseFloat(childStyles?.paddingTop || "0");
|
|
91
|
+
const childPaddingBottom = parseFloat(childStyles?.paddingBottom || "0");
|
|
92
|
+
|
|
93
|
+
return (
|
|
94
|
+
elHeight +
|
|
95
|
+
marginTop +
|
|
96
|
+
marginBottom +
|
|
97
|
+
childMarginTop +
|
|
98
|
+
childMarginBottom +
|
|
99
|
+
childPaddingTop +
|
|
100
|
+
childPaddingBottom
|
|
101
|
+
);
|
|
92
102
|
})
|
|
93
103
|
.reduce((acc, cur) => acc + cur, 0);
|
|
94
104
|
|
|
@@ -19,7 +19,7 @@ export default /*tw*/ {
|
|
|
19
19
|
},
|
|
20
20
|
disabled: {
|
|
21
21
|
true: `
|
|
22
|
-
focus-within:ring-0 focus-within:ring-offset-0 bg-gray-100
|
|
22
|
+
focus-within:ring-0 focus-within:ring-offset-0 bg-gray-100
|
|
23
23
|
hover:border-gray-300 focus-within:border-gray-300 hover:focus-within:border-gray-300
|
|
24
24
|
`,
|
|
25
25
|
},
|
|
@@ -53,7 +53,6 @@ export default /*tw*/ {
|
|
|
53
53
|
defaults: {
|
|
54
54
|
rows: "3",
|
|
55
55
|
size: "md",
|
|
56
|
-
type: "text",
|
|
57
56
|
inputmode: "text",
|
|
58
57
|
labelAlign: "topInside",
|
|
59
58
|
resizable: false,
|
|
@@ -52,7 +52,7 @@ const { config, overlayAttrs, nestedLoaderAttrs } = useUI<Config>(defaultConfig)
|
|
|
52
52
|
|
|
53
53
|
<template>
|
|
54
54
|
<Transition v-bind="config.transition">
|
|
55
|
-
<div v-if="showLoader" v-bind="overlayAttrs">
|
|
55
|
+
<div v-if="showLoader" v-bind="overlayAttrs" :data-test="dataTest">
|
|
56
56
|
<!-- @slot Use it to add something instead of the default loader. -->
|
|
57
57
|
<slot>
|
|
58
58
|
<ULoader :loading="showLoader" size="lg" :color="loaderColor" v-bind="nestedLoaderAttrs" />
|
package/web-types.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"framework": "vue",
|
|
3
3
|
"name": "vueless",
|
|
4
|
-
"version": "0.0.
|
|
4
|
+
"version": "0.0.610",
|
|
5
5
|
"contributions": {
|
|
6
6
|
"html": {
|
|
7
7
|
"description-markup": "markdown",
|
|
@@ -7748,6 +7748,15 @@
|
|
|
7748
7748
|
"kind": "expression",
|
|
7749
7749
|
"type": "ComponentConfig"
|
|
7750
7750
|
}
|
|
7751
|
+
},
|
|
7752
|
+
{
|
|
7753
|
+
"name": "dataTest",
|
|
7754
|
+
"required": false,
|
|
7755
|
+
"description": "Data-test attribute for automated testing.",
|
|
7756
|
+
"value": {
|
|
7757
|
+
"kind": "expression",
|
|
7758
|
+
"type": "string"
|
|
7759
|
+
}
|
|
7751
7760
|
}
|
|
7752
7761
|
],
|
|
7753
7762
|
"slots": [
|