From 7952b120a72ec4a7b5c68e94d47c38d7b6278c71 Mon Sep 17 00:00:00 2001 From: Karuna-Mendix Date: Wed, 2 Apr 2025 17:01:32 +0530 Subject: [PATCH 1/8] add mf-in-use icon --- static/mx-icons/mf-in-use (1).svg | 5 +++++ 1 file changed, 5 insertions(+) create mode 100644 static/mx-icons/mf-in-use (1).svg diff --git a/static/mx-icons/mf-in-use (1).svg b/static/mx-icons/mf-in-use (1).svg new file mode 100644 index 00000000000..c2e52124b5f --- /dev/null +++ b/static/mx-icons/mf-in-use (1).svg @@ -0,0 +1,5 @@ + + + + + From 66ae6971fea2456126f0228b865abefbca16f12e Mon Sep 17 00:00:00 2001 From: Karuna-Mendix Date: Thu, 3 Apr 2025 11:26:41 +0530 Subject: [PATCH 2/8] change the file --- static/mx-icons/{mf-in-use (1).svg => mf_in_use.svg} | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) rename static/mx-icons/{mf-in-use (1).svg => mf_in_use.svg} (51%) diff --git a/static/mx-icons/mf-in-use (1).svg b/static/mx-icons/mf_in_use.svg similarity index 51% rename from static/mx-icons/mf-in-use (1).svg rename to static/mx-icons/mf_in_use.svg index c2e52124b5f..410618693ed 100644 --- a/static/mx-icons/mf-in-use (1).svg +++ b/static/mx-icons/mf_in_use.svg @@ -1,5 +1,5 @@ - - - + + + From 4b45a59c2a05fbc62ade29d9a16f984daa7f7e3b Mon Sep 17 00:00:00 2001 From: Karuna-Mendix Date: Thu, 3 Apr 2025 11:54:36 +0530 Subject: [PATCH 3/8] add ellipsis icon --- static/mx-icons/ellipsis.svg | 5 +++++ 1 file changed, 5 insertions(+) create mode 100644 static/mx-icons/ellipsis.svg diff --git a/static/mx-icons/ellipsis.svg b/static/mx-icons/ellipsis.svg new file mode 100644 index 00000000000..06825e2e534 --- /dev/null +++ b/static/mx-icons/ellipsis.svg @@ -0,0 +1,5 @@ + + + + + From 925b071e2e9d837557f126604546cc0fc1814ae2 Mon Sep 17 00:00:00 2001 From: Karuna-Mendix Date: Thu, 3 Apr 2025 12:26:30 +0530 Subject: [PATCH 4/8] changed resolution of ellipsis --- .../modules/genai/how-to/ground_your_llm_in_data.md | 2 ++ 1 file changed, 2 insertions(+) diff --git a/content/en/docs/appstore/use-content/platform-supported-content/modules/genai/how-to/ground_your_llm_in_data.md b/content/en/docs/appstore/use-content/platform-supported-content/modules/genai/how-to/ground_your_llm_in_data.md index a24777e25ef..e000876d663 100644 --- a/content/en/docs/appstore/use-content/platform-supported-content/modules/genai/how-to/ground_your_llm_in_data.md +++ b/content/en/docs/appstore/use-content/platform-supported-content/modules/genai/how-to/ground_your_llm_in_data.md @@ -8,6 +8,8 @@ description: "This document guides you on grounding your large language model in ## Introduction +{{% icon name="pencil" height=150 %}} + This document explains how to add data to your smart app to integrate with a Large Language Model (LLM). To do this, you can use your existing app or follow the [Build a Smart App from a Blank GenAI App](/appstore/modules/genai/how-to/blank-app/) guide to start from scratch. In this document, you will: From b946c0347f2096e5862cfb1b540125a534035460 Mon Sep 17 00:00:00 2001 From: Karuna-Mendix Date: Thu, 3 Apr 2025 12:30:13 +0530 Subject: [PATCH 5/8] mf not in use --- static/mx-icons/mf_not_in_use.svg | 5 +++++ 1 file changed, 5 insertions(+) create mode 100644 static/mx-icons/mf_not_in_use.svg diff --git a/static/mx-icons/mf_not_in_use.svg b/static/mx-icons/mf_not_in_use.svg new file mode 100644 index 00000000000..dbafc8f70b5 --- /dev/null +++ b/static/mx-icons/mf_not_in_use.svg @@ -0,0 +1,5 @@ + + + + + From 3c0fbbf36ad9925f1c7f3db298231d7895afcb41 Mon Sep 17 00:00:00 2001 From: Mark van Ments Date: Thu, 3 Apr 2025 09:46:59 +0200 Subject: [PATCH 6/8] Add black as an icon color --- layouts/shortcodes/icon.html | 1 + 1 file changed, 1 insertion(+) diff --git a/layouts/shortcodes/icon.html b/layouts/shortcodes/icon.html index f5763fe065c..99fe77439b3 100644 --- a/layouts/shortcodes/icon.html +++ b/layouts/shortcodes/icon.html @@ -12,6 +12,7 @@ "purple" "#5b1bef" "blue" "#146ff4" "gray" "#9ea2a9" + "black" "#000000" -}} {{- if ne $color nil -}} From 474e0c627816cdb24dcbdd9d2663159001f8408f Mon Sep 17 00:00:00 2001 From: Karuna-Mendix Date: Thu, 3 Apr 2025 16:23:24 +0530 Subject: [PATCH 7/8] added corrected images --- static/mx-icons/ellipsis.svg | 8 ++++---- static/mx-icons/{mf_in_use.svg => mf-in-use.svg} | 8 ++++---- static/mx-icons/{mf_not_in_use.svg => mf-not-in-use.svg} | 8 ++++---- 3 files changed, 12 insertions(+), 12 deletions(-) rename static/mx-icons/{mf_in_use.svg => mf-in-use.svg} (76%) rename static/mx-icons/{mf_not_in_use.svg => mf-not-in-use.svg} (81%) diff --git a/static/mx-icons/ellipsis.svg b/static/mx-icons/ellipsis.svg index 06825e2e534..5b94a13ff30 100644 --- a/static/mx-icons/ellipsis.svg +++ b/static/mx-icons/ellipsis.svg @@ -1,5 +1,5 @@ - - - - + + + + diff --git a/static/mx-icons/mf_in_use.svg b/static/mx-icons/mf-in-use.svg similarity index 76% rename from static/mx-icons/mf_in_use.svg rename to static/mx-icons/mf-in-use.svg index 410618693ed..c8072c0b121 100644 --- a/static/mx-icons/mf_in_use.svg +++ b/static/mx-icons/mf-in-use.svg @@ -1,5 +1,5 @@ - - - - + + + + diff --git a/static/mx-icons/mf_not_in_use.svg b/static/mx-icons/mf-not-in-use.svg similarity index 81% rename from static/mx-icons/mf_not_in_use.svg rename to static/mx-icons/mf-not-in-use.svg index dbafc8f70b5..430478bdf87 100644 --- a/static/mx-icons/mf_not_in_use.svg +++ b/static/mx-icons/mf-not-in-use.svg @@ -1,5 +1,5 @@ - - - - + + + + From 410e628c50cf069d246bf50feac75c13b41f8fde Mon Sep 17 00:00:00 2001 From: Mark van Ments <35492184+MarkvanMents@users.noreply.github.com> Date: Fri, 4 Apr 2025 17:14:25 +0200 Subject: [PATCH 8/8] Add "dark" for coloring icons @Karuna-Mendix - I've added "dark" to the icons. It is the text color, so should use instead of "black" if needed. --- layouts/shortcodes/icon.html | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/layouts/shortcodes/icon.html b/layouts/shortcodes/icon.html index 99fe77439b3..dbb7614d72c 100644 --- a/layouts/shortcodes/icon.html +++ b/layouts/shortcodes/icon.html @@ -4,7 +4,7 @@ {{- $fill := " + {{- $colorDictionary := dict "green" "#0D990D" "red" "#D31E23" @@ -13,6 +13,7 @@ "blue" "#146ff4" "gray" "#9ea2a9" "black" "#000000" + "dark" "#0a1325" -}} {{- if ne $color nil -}} @@ -23,4 +24,4 @@ {{- $content := replace $content " \ No newline at end of file +