frappe-ui 0.1.239 → 0.1.240

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.
@@ -1,5 +1,5 @@
1
1
  <template>
2
- <div class="w-[85%] lg:w-[700px] mx-auto py-12 space-y-8">
2
+ <div class="w-[85%] lg:w-[700px] mx-auto py-12 space-y-8 text-base">
3
3
  <div class="flex justify-between">
4
4
  <div class="space-y-2">
5
5
  <div class="text-lg font-semibold text-ink-gray-9">
@@ -10,7 +10,7 @@
10
10
  {{ data?.status }}
11
11
  </Badge>
12
12
  </div>
13
- <div class="leading-5">
13
+ <div class="leading-5 text-ink-gray-7">
14
14
  Change the mapping of columns from your file to fields in the system
15
15
  </div>
16
16
  </div>
@@ -17,7 +17,7 @@
17
17
  variant="solid" @click="startImport" />
18
18
  <Button v-else-if="listRoute" label="Done" @click="redirectToList()" />
19
19
  </div>
20
- <div class="leading-5">
20
+ <div class="leading-5 text-ink-gray-7">
21
21
  Verify the data before starting the import process
22
22
  </div>
23
23
  </div>
@@ -26,7 +26,7 @@
26
26
  <div class="text-ink-gray-5 text-sm">
27
27
  Column Mapping
28
28
  </div>
29
- <div class="border rounded-md bg-surface-gray-2 p-4 space-y-4 text-sm">
29
+ <div class="border rounded-md bg-surface-gray-2 p-4 space-y-4 text-sm text-ink-gray-7">
30
30
  <div v-for="map in mapping" class="grid grid-cols-[40%,10%,40%] lg:grid-cols-3 space-x-3 items-center">
31
31
  <div class="">
32
32
  {{ map[0] }}
@@ -48,7 +48,7 @@
48
48
  <div class="rounded-md bg-surface-amber-2 p-2 space-y-2 text-xs">
49
49
  <div v-for="warning in warnings" class="flex items-center space-x-2">
50
50
  <FeatherIcon name="alert-circle" class="size-3 text-ink-amber-3" />
51
- <div v-html="warning.message" class=""></div>
51
+ <div v-html="warning.message" class="text-ink-amber-3"></div>
52
52
  </div>
53
53
  </div>
54
54
  </div>
@@ -67,7 +67,7 @@
67
67
  <div v-else-if="importFile" class="h-[300px] flex items-center justify-center bg-surface-gray-1 border border-dashed border-outline-gray-3 rounded-md">
68
68
  <div class="w-4/5 lg:w-2/5 bg-surface-white border rounded-md p-2 flex items-center justify-between items-center">
69
69
  <div class="space-y-2">
70
- <div class="font-medium leading-5">
70
+ <div class="font-medium leading-5 text-ink-gray-9">
71
71
  {{ importFile.file_name || importFile.split("/").pop() }}
72
72
  </div>
73
73
  <div v-if="importFile.file_size" class="text-ink-gray-6">
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "frappe-ui",
3
- "version": "0.1.239",
3
+ "version": "0.1.240",
4
4
  "description": "A set of components and utilities for rapid UI development",
5
5
  "type": "module",
6
6
  "sideEffects": false,
@@ -84,7 +84,7 @@ const selectOptions = computed(() => {
84
84
  <template>
85
85
  <SelectRoot v-model="model">
86
86
  <SelectTrigger
87
- class="inline-flex items-center gap-2 outline-none text-base data-[placeholder]:text-ink-gray-4 data-[disabled]:text-ink-gray-4"
87
+ class="inline-flex items-center gap-2 outline-none text-base text-ink-gray-7 data-[placeholder]:text-ink-gray-4 data-[disabled]:text-ink-gray-4"
88
88
  aria-label="Customise options"
89
89
  :class="selectClasses"
90
90
  :disabled="props.disabled"