diff --git a/client/web/admin/src/components/User/CUserEditorAvatar.vue b/client/web/admin/src/components/User/CUserEditorAvatar.vue
index 12d685506..c79999f94 100644
--- a/client/web/admin/src/components/User/CUserEditorAvatar.vue
+++ b/client/web/admin/src/components/User/CUserEditorAvatar.vue
@@ -48,10 +48,13 @@
:label="$t('initial.color')"
class="col"
>
-
@@ -59,10 +62,13 @@
:label="$t('initial.backgroundColor')"
class="col"
>
-
@@ -82,6 +88,8 @@
diff --git a/client/web/compose/src/components/PageBlocks/CalendarConfigurator/FeedSource/configs/Record.vue b/client/web/compose/src/components/PageBlocks/CalendarConfigurator/FeedSource/configs/Record.vue
index 079d64a42..0eefb901f 100644
--- a/client/web/compose/src/components/PageBlocks/CalendarConfigurator/FeedSource/configs/Record.vue
+++ b/client/web/compose/src/components/PageBlocks/CalendarConfigurator/FeedSource/configs/Record.vue
@@ -30,14 +30,13 @@
breakpoint="md"
:label="$t('calendar.recordFeed.colorLabel')"
>
-
-
-
+
import base from './base'
+import { components } from '@cortezaproject/corteza-vue'
+const { CInputColorPicker } = components
export default {
i18nOptions: {
namespaces: 'block',
},
+ components: {
+ CInputColorPicker,
+ },
+
extends: base,
computed: {
diff --git a/client/web/compose/src/components/PageBlocks/CalendarConfigurator/FeedSource/configs/Reminder.vue b/client/web/compose/src/components/PageBlocks/CalendarConfigurator/FeedSource/configs/Reminder.vue
index 3dba4b3bb..19887b052 100644
--- a/client/web/compose/src/components/PageBlocks/CalendarConfigurator/FeedSource/configs/Reminder.vue
+++ b/client/web/compose/src/components/PageBlocks/CalendarConfigurator/FeedSource/configs/Reminder.vue
@@ -6,26 +6,31 @@
breakpoint="md"
:label="$t('calendar.reminderFeed.colorLabel')"
>
-
-
-
+
diff --git a/client/web/compose/src/components/PageBlocks/FileConfigurator.vue b/client/web/compose/src/components/PageBlocks/FileConfigurator.vue
index ce3818ec2..d823aa682 100644
--- a/client/web/compose/src/components/PageBlocks/FileConfigurator.vue
+++ b/client/web/compose/src/components/PageBlocks/FileConfigurator.vue
@@ -168,10 +168,12 @@
:label="$t('kind.file.view.background')"
label-class="text-primary"
>
-
@@ -183,6 +185,8 @@
import base from './base'
import Uploader from 'corteza-webapp-compose/src/components/Public/Page/Attachment/Uploader'
import ListLoader from 'corteza-webapp-compose/src/components/Public/Page/Attachment/ListLoader'
+import { components } from '@cortezaproject/corteza-vue'
+const { CInputColorPicker } = components
export default {
i18nOptions: {
@@ -194,6 +198,7 @@ export default {
components: {
Uploader,
ListLoader,
+ CInputColorPicker,
},
extends: base,
diff --git a/client/web/compose/src/components/PageBlocks/GeometryConfigurator/FeedSource/configs/Record.vue b/client/web/compose/src/components/PageBlocks/GeometryConfigurator/FeedSource/configs/Record.vue
index 651b658e7..180abeed9 100644
--- a/client/web/compose/src/components/PageBlocks/GeometryConfigurator/FeedSource/configs/Record.vue
+++ b/client/web/compose/src/components/PageBlocks/GeometryConfigurator/FeedSource/configs/Record.vue
@@ -85,14 +85,13 @@
breakpoint="md"
:label="$t('geometry.recordFeed.colorLabel')"
>
-
-
-
+
import base from './base'
+import { components } from '@cortezaproject/corteza-vue'
+const { CInputColorPicker } = components
export default {
i18nOptions: {
namespaces: 'block',
},
+ components: {
+ CInputColorPicker,
+ },
+
extends: base,
computed: {
diff --git a/client/web/compose/src/components/PageBlocks/MetricConfigurator/MStyle.vue b/client/web/compose/src/components/PageBlocks/MetricConfigurator/MStyle.vue
index 942a75f2f..0b7297990 100644
--- a/client/web/compose/src/components/PageBlocks/MetricConfigurator/MStyle.vue
+++ b/client/web/compose/src/components/PageBlocks/MetricConfigurator/MStyle.vue
@@ -5,31 +5,32 @@