@deskhero/dh_ui 1.46.0 → 1.46.2
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/dist/dh_ui.es.js +13 -3
- package/dist/dh_ui.umd.js +1 -1
- package/dist/src/components/InputGroup.vue.d.ts +8 -0
- package/dist/style.css +1 -1
- package/package.json +1 -1
package/dist/dh_ui.es.js
CHANGED
|
@@ -24896,7 +24896,7 @@ const _sfc_main$c = {
|
|
|
24896
24896
|
};
|
|
24897
24897
|
var InputGroup_vue_vue_type_style_index_0_lang = "";
|
|
24898
24898
|
const _hoisted_1$b = { class: "input__group" };
|
|
24899
|
-
const _hoisted_2$b = ["type"];
|
|
24899
|
+
const _hoisted_2$b = ["placeholder", "type"];
|
|
24900
24900
|
const _sfc_main$b = {
|
|
24901
24901
|
__name: "InputGroup",
|
|
24902
24902
|
props: {
|
|
@@ -24912,16 +24912,25 @@ const _sfc_main$b = {
|
|
|
24912
24912
|
type: String,
|
|
24913
24913
|
default: "200px"
|
|
24914
24914
|
},
|
|
24915
|
+
heightProp: {
|
|
24916
|
+
type: String,
|
|
24917
|
+
default: "30px"
|
|
24918
|
+
},
|
|
24915
24919
|
direction: {
|
|
24916
24920
|
type: String,
|
|
24917
24921
|
default: "right"
|
|
24922
|
+
},
|
|
24923
|
+
placeholder: {
|
|
24924
|
+
type: String,
|
|
24925
|
+
default: "type here"
|
|
24918
24926
|
}
|
|
24919
24927
|
},
|
|
24920
24928
|
setup(__props) {
|
|
24921
24929
|
const props = __props;
|
|
24922
24930
|
useCssVars((_ctx) => ({
|
|
24923
|
-
"
|
|
24924
|
-
"
|
|
24931
|
+
"07a67823": flexDir.value,
|
|
24932
|
+
"1f0734d8": __props.widthProp,
|
|
24933
|
+
"7a20cc7b": __props.heightProp
|
|
24925
24934
|
}));
|
|
24926
24935
|
const flexDir = ref("row");
|
|
24927
24936
|
onMounted(() => {
|
|
@@ -24933,6 +24942,7 @@ const _sfc_main$b = {
|
|
|
24933
24942
|
return openBlock(), createElementBlock("div", _hoisted_1$b, [
|
|
24934
24943
|
createElementVNode("input", {
|
|
24935
24944
|
class: "input__group_field",
|
|
24945
|
+
placeholder: __props.placeholder,
|
|
24936
24946
|
type: __props.inputType
|
|
24937
24947
|
}, null, 8, _hoisted_2$b),
|
|
24938
24948
|
createVNode(DhIcon, {
|