@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"
@@ -129,6 +129,7 @@ export interface FieldSelectColumn {
129
129
 
130
130
  export interface FieldSelectOption {
131
131
  icon?: string
132
+ iconColor?: BaseColor
132
133
  text: string
133
134
  value: string
134
135
  }
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@saasmakers/ui",
3
3
  "type": "module",
4
- "version": "0.1.102",
4
+ "version": "0.1.103",
5
5
  "private": false,
6
6
  "description": "Reusable Nuxt UI components for SaaS Makers projects",
7
7
  "license": "MIT",