Skip to content

Commit

Permalink
chore: remove unwanted comment
Browse files Browse the repository at this point in the history
  • Loading branch information
jd-solanki committed Feb 19, 2023
1 parent eec949f commit 053e034
Show file tree
Hide file tree
Showing 6 changed files with 0 additions and 8 deletions.
1 change: 0 additions & 1 deletion packages/anu-vue/src/components/card/ACard.vue
Original file line number Diff line number Diff line change
Expand Up @@ -75,7 +75,6 @@ else
v-for="name in Object.keys(cardTypographySlots)"
#[name]="slotProps"
>
<!-- 鈩癸笍 v-if condition will omit passing slots. Here, we don't want to pass default slot. -->
<slot
:name="name"
v-bind="slotProps || {}"
Expand Down
1 change: 0 additions & 1 deletion packages/anu-vue/src/components/input/AInput.vue
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,6 @@ const handleInputWrapperClick = () => {
v-for="name in Object.keys($slots).filter(slotName => slotName !== 'default')"
#[name]="slotProps"
>
<!-- 鈩癸笍 v-if condition will omit passing slots defined in array. Here, we don't want to pass default slot. -->
<slot
:name="name"
v-bind="slotProps || {}"
Expand Down
1 change: 0 additions & 1 deletion packages/anu-vue/src/components/loader/ALoader.vue
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,6 @@ if (props.fullPage) {
v-for="name in Object.keys($slots).filter(slotName => slotName !== 'default')"
#[name]="slotProps"
>
<!-- 鈩癸笍 v-if condition will omit passing slots. Here, we don't want to pass default slot. -->
<slot
:name="name"
v-bind="slotProps || {}"
Expand Down
3 changes: 0 additions & 3 deletions packages/anu-vue/src/components/select/ASelect.vue
Original file line number Diff line number Diff line change
Expand Up @@ -110,7 +110,6 @@ const cardSlotsToPass = computed(() => Object.fromEntries(Object.entries(selectC
v-for="name in Object.keys(selectBaseInputSlots)"
#[name]="slotProps"
>
<!-- 鈩癸笍 v-if condition will omit passing slots defined in array. Here, we don't want to pass default slot. -->
<slot
:name="name"
v-bind="slotProps || {}"
Expand Down Expand Up @@ -146,7 +145,6 @@ const cardSlotsToPass = computed(() => Object.fromEntries(Object.entries(selectC
v-for="name in Object.keys(cardSlotsToPass)"
#[name]="slotProps"
>
<!-- 鈩癸笍 v-if condition will omit passing slots defined in array. Here, we don't want to pass default slot. -->
<slot
:name="name"
v-bind="slotProps || {}"
Expand All @@ -164,7 +162,6 @@ const cardSlotsToPass = computed(() => Object.fromEntries(Object.entries(selectC
v-for="{ originalKey: originalSlotName, prefixedKey: updatedSlotName } in selectListSlots"
#[originalSlotName]="slotProps"
>
<!-- 鈩癸笍 v-if condition will omit passing slots. Here, we don't want to pass default slot. -->
<slot
:name="updatedSlotName"
v-bind="{
Expand Down
1 change: 0 additions & 1 deletion packages/anu-vue/src/components/table/ATable.vue
Original file line number Diff line number Diff line change
Expand Up @@ -111,7 +111,6 @@ const _cols = computed<PropColumn[]>(() => {
v-for="name in Object.keys($slots).filter(slotName => slotName !== 'default')"
#[name]="slotProps"
>
<!-- 鈩癸笍 v-if condition will omit passing slots. Here, we don't want to pass default slot. -->
<slot
:name="name"
v-bind="slotProps || {}"
Expand Down
1 change: 0 additions & 1 deletion packages/anu-vue/src/components/textarea/ATextarea.vue
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,6 @@ const handleInputWrapperClick = () => {
v-for="name in Object.keys($slots).filter(slotName => slotName !== 'default')"
#[name]="slotProps"
>
<!-- 鈩癸笍 v-if condition will omit passing slots defined in array. Here, we don't want to pass default slot. -->
<slot
v-if="name !== 'default'"
:name="name"
Expand Down

0 comments on commit 053e034

Please sign in to comment.