@imaginario27/air-ui-ds 1.0.13 → 1.0.14

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.
@@ -40,7 +40,7 @@
40
40
  <!-- Icon -->
41
41
  <span class="text-icon-neutral-subtler">
42
42
  <MdiIcon
43
- icon="mdiMagnify"
43
+ :icon
44
44
  size="20"
45
45
  preserveAspectRatio="xMidYMid meet"
46
46
  />
@@ -100,6 +100,10 @@ const props = defineProps({
100
100
  default: 'Search',
101
101
  },
102
102
  helpText: String as PropType<string>,
103
+ icon: {
104
+ type: String as PropType<any>,
105
+ default: 'mdiMagnify',
106
+ },
103
107
  size: {
104
108
  type: String as PropType<InputSize>,
105
109
  default: InputSize.MD,
@@ -142,6 +142,10 @@ const props = defineProps({
142
142
  type: Boolean as PropType<boolean>,
143
143
  default: false,
144
144
  },
145
+ showLoadingState: {
146
+ type: Boolean as PropType<boolean>,
147
+ default: true,
148
+ },
145
149
  isLoading: {
146
150
  type: Boolean as PropType<boolean>,
147
151
  default: true,
@@ -154,10 +158,6 @@ const props = defineProps({
154
158
  type: String as PropType<string>,
155
159
  default: 'Options are being loaded',
156
160
  },
157
- showLoadingState: {
158
- type: Boolean as PropType<boolean>,
159
- default: true,
160
- },
161
161
  })
162
162
 
163
163
  // Emits
@@ -125,10 +125,7 @@ const props = defineProps({
125
125
  label: String as PropType<string>,
126
126
  legend: String as PropType<string>,
127
127
  helpText: String as PropType<string>,
128
- required: {
129
- type: Boolean as PropType<boolean>,
130
- default: false,
131
- },
128
+
132
129
  modelValue: {
133
130
  type: Boolean as PropType<boolean>,
134
131
  default: false,
@@ -141,6 +138,10 @@ const props = defineProps({
141
138
  type: String as PropType<string>,
142
139
  default: '',
143
140
  },
141
+ required: {
142
+ type: Boolean as PropType<boolean>,
143
+ default: false,
144
+ },
144
145
  disabled: {
145
146
  type: Boolean as PropType<boolean>,
146
147
  default: false,
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@imaginario27/air-ui-ds",
3
- "version": "1.0.13",
3
+ "version": "1.0.14",
4
4
  "author": "imaginario27",
5
5
  "type": "module",
6
6
  "homepage": "https://air-ui.netlify.app/",
@@ -19,7 +19,7 @@
19
19
  "postinstall": "nuxt prepare",
20
20
  "test": "vitest",
21
21
  "generate-theme": "ts-node scripts/generate-theme.ts",
22
- "update-theme-colors": "ts-node app/scripts/update-ui-theme-colors.ts",
22
+ "update-theme-colors": "ts-node scripts/update-ui-theme-colors.ts",
23
23
  "typecheck": "vue-tsc --noEmit -p tsconfig.typecheck.json"
24
24
  },
25
25
  "dependencies": {