Skip to content

Commit

Permalink
HT-554:Fix issue in checkbox component and select input story
Browse files Browse the repository at this point in the history
  • Loading branch information
Nuwa-Hub committed Nov 12, 2024
1 parent 0dfd150 commit ff259e2
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 5 deletions.
4 changes: 3 additions & 1 deletion changelog.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,6 @@
2024-11-08 - 30e71393cff4e116c842c56bf35ef84bd659448d - Update OXD CheckBox/SelectInput Component
2024-11-11 - 30e71393cff4e116c842c56bf35ef84bd659448d - Icons.ts - Add oxd-on-leave,oxd-holiday,oxd-disabled-url,oxd-generate-link,oxd-enable-url icons

2024-11-11 - 30e71393cff4e116c842c56bf35ef84bd659448d - Update OXD CheckBox Component - Add a border prop to enable borders for the checkbox and an optionInfoIconPosition prop to adjust optional icon position.

2024-11-08 - cca468f6ad704248ff1de9f34672f3cf29d516e2 - components/CardTable/Cell/LinkWithPill.vue - header pass as props

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -235,7 +235,6 @@ OptionInfoIcon.parameters = {
export const EnableBorder= Template.bind({
optionLabel: 'check this!',
border: true,

});

EnableBorder.parameters = {
Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<template>
<oxd-select :options="options" v-model="value">
<template v-slot:option="{data}">
<oxd-icon name="eye-fill" />
<template v-slot:option="{ data }">
<oxd-icon name="eye-fill" />
<span >{{ data.label }}</span>
</template>
</oxd-select>
Expand Down Expand Up @@ -36,4 +36,5 @@
'oxd-icon': Icon,
},
};
</script>
</script>

0 comments on commit ff259e2

Please sign in to comment.