@saasmakers/ui 0.1.102 → 0.1.103
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.
|
@@ -185,6 +185,7 @@ function onOptionClick(event: MouseEvent, option: FieldSelectOption) {
|
|
|
185
185
|
<BaseIcon
|
|
186
186
|
v-if="selectedOption.icon"
|
|
187
187
|
class="pointer-events-none mr-2"
|
|
188
|
+
:color="selectedOption.iconColor"
|
|
188
189
|
:icon="selectedOption.icon"
|
|
189
190
|
/>
|
|
190
191
|
|
|
@@ -262,6 +263,7 @@ function onOptionClick(event: MouseEvent, option: FieldSelectOption) {
|
|
|
262
263
|
<BaseIcon
|
|
263
264
|
v-if="option.text"
|
|
264
265
|
class="pointer-events-none mr-2 flex-initial"
|
|
266
|
+
:color="option.iconColor"
|
|
265
267
|
:icon="option.icon"
|
|
266
268
|
:size="size"
|
|
267
269
|
:text="option.text"
|
package/app/types/fields.d.ts
CHANGED