lau-ecom-design-system 1.0.15 → 1.0.16
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.
@@ -954,9 +954,13 @@ var script = /*@__PURE__*/vue.defineComponent({
|
|
954
954
|
"lau-ecom-button--disabled": props.type === LauEcomButtonType.Primary && props.isDisabled
|
955
955
|
};
|
956
956
|
});
|
957
|
-
|
958
|
-
|
959
|
-
|
957
|
+
|
958
|
+
// const iconClasses = computed(() => {
|
959
|
+
// return [
|
960
|
+
// `lau-ecom-icon-button${props.type === LauEcomButtonType.Secondary ? '-secondary' : ''}`
|
961
|
+
// ]
|
962
|
+
// })
|
963
|
+
|
960
964
|
var handleClick = function handleClick() {
|
961
965
|
emit("onClick");
|
962
966
|
};
|
@@ -974,9 +978,8 @@ var script = /*@__PURE__*/vue.defineComponent({
|
|
974
978
|
onMouseout: handleMouseOut,
|
975
979
|
onClick: handleClick
|
976
980
|
}, [_ctx.hasArrow ? (vue.openBlock(), vue.createBlock(vue.unref(script$n), {
|
977
|
-
key: 0
|
978
|
-
|
979
|
-
}, null, 8 /* PROPS */, ["class"])) : vue.createCommentVNode("v-if", true), vue.renderSlot(_ctx.$slots, "default")], 42 /* CLASS, PROPS, NEED_HYDRATION */, _hoisted_1);
|
981
|
+
key: 0
|
982
|
+
})) : vue.createCommentVNode("v-if", true), vue.renderSlot(_ctx.$slots, "default")], 42 /* CLASS, PROPS, NEED_HYDRATION */, _hoisted_1);
|
980
983
|
};
|
981
984
|
}
|
982
985
|
});script.__scopeId = "data-v-7cd3bda6";
|
package/package.json
CHANGED
@@ -37,11 +37,11 @@ const lauEcomButtonClasses = computed(() => {
|
|
37
37
|
};
|
38
38
|
});
|
39
39
|
|
40
|
-
const iconClasses = computed(() => {
|
41
|
-
|
42
|
-
|
43
|
-
|
44
|
-
})
|
40
|
+
// const iconClasses = computed(() => {
|
41
|
+
// return [
|
42
|
+
// `lau-ecom-icon-button${props.type === LauEcomButtonType.Secondary ? '-secondary' : ''}`
|
43
|
+
// ]
|
44
|
+
// })
|
45
45
|
|
46
46
|
const handleClick = () => {
|
47
47
|
emit("onClick");
|
@@ -65,8 +65,7 @@ const handleMouseOut = () => {
|
|
65
65
|
@click="handleClick"
|
66
66
|
>
|
67
67
|
<LauEcomUpcIconNavArrow
|
68
|
-
v-if="hasArrow"
|
69
|
-
:class="iconClasses" />
|
68
|
+
v-if="hasArrow" />
|
70
69
|
<slot></slot>
|
71
70
|
</button>
|
72
71
|
</template>
|