Skip to content

Commit b2170dd

Browse files
authored
Merge branch 'main' into copilot/fix-4342
2 parents b891cd8 + b960c95 commit b2170dd

File tree

4 files changed

+7
-4
lines changed

4 files changed

+7
-4
lines changed

showcases/angular-showcase/src/app/components/custom-select/custom-select.component.html

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -62,6 +62,7 @@
6262
[validMessage]="exampleProps?.validMessage"
6363
[validation]="exampleProps?.validation"
6464
(optionSelected)="console.log($event)"
65+
[removeTagsTexts]="exampleProps?.removeTagsTexts"
6566
></db-custom-select>
6667
}
6768
</ng-template>

showcases/react-showcase/src/components/custom-select/index.tsx

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -116,6 +116,7 @@ const getCustomSelect = ({
116116
onOptionSelected={(value) => {
117117
setValue(value);
118118
}}
119+
removeTagsTexts={removeTagsTexts}
119120
/>
120121
);
121122
};

showcases/shared/custom-select.json

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1833,10 +1833,10 @@
18331833
"multiple": true,
18341834
"id": "id-10271",
18351835
"removeTagsTexts": [
1836-
"Removed Option 1",
1837-
"Removed Option 2",
1838-
"Removed Option 3",
1839-
"Removed Option 4"
1836+
"Remove Option entry 1",
1837+
"Remove Option entry 2",
1838+
"Remove Option entry 3",
1839+
"Remove Option entry 4"
18401840
]
18411841
},
18421842
"children": []

showcases/vue-showcase/src/components/custom-select/CustomSelect.vue

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -87,6 +87,7 @@ const getSearchFilter = (option: CustomSelectOptionType, _: string): boolean =>
8787
:selectedType="exampleProps?.selectedType"
8888
:formFieldWidth="exampleProps?.formFieldWidth"
8989
:on-option-selected="(values) => log(values)"
90+
:removeTagsTexts="exampleProps?.removeTagsTexts"
9091
/>
9192
</template>
9293
</DefaultComponent>

0 commit comments

Comments
 (0)