From ee0681b91fecc91dade535314afdf8c87deda146 Mon Sep 17 00:00:00 2001 From: Aleksandr Lossenko Date: Sun, 1 Dec 2024 18:44:10 +0100 Subject: [PATCH] fix docs and wording --- README.md | 4 +++- lib/mix/tasks/salad.init.ex | 2 +- 2 files changed, 4 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 83c274e..133f48c 100644 --- a/README.md +++ b/README.md @@ -141,9 +141,11 @@ It's also important to note that you must format your code with `mix format` bef - ✅ Dropdown Menu - ✅ Form - ✅ Hover Card +- ✅ Icon - ✅ Input - [ ] Input OTP - ✅ Label +- ✅ Menu - ✅ Pagination - ✅ Popover - ✅ Progress @@ -159,9 +161,9 @@ It's also important to note that you must format your code with `mix format` bef - ✅ Table - ✅ Tabs - ✅ Textarea -- ✅ Tooltip - ✅ Toggle - ✅ Toggle Group +- ✅ Tooltip ## 🌟 Contributors diff --git a/lib/mix/tasks/salad.init.ex b/lib/mix/tasks/salad.init.ex index 0289db4..5494361 100644 --- a/lib/mix/tasks/salad.init.ex +++ b/lib/mix/tasks/salad.init.ex @@ -50,7 +50,7 @@ defmodule Mix.Tasks.Salad.Init do :ok <- maybe_write_component_module(component_path, app_name, opts), :ok <- install_node_dependencies(node_opts) do if opts[:as_lib] do - Mix.shell().info("Done. Now you can use any component by importSaladUI. in your project.") + Mix.shell().info("Done. Now you can use any component by `import SaladUI.` in your project.") else Mix.shell().info("Done. Now you can add components by running mix salad.add ") end