Skip to content

Commit e1ec893

Browse files
author
Vic Shóstak
committed
Add daisyUI to docs
1 parent 90ae137 commit e1ec893

File tree

9 files changed

+27
-23
lines changed

9 files changed

+27
-23
lines changed

docs/complete-user-guide/configuration.md

Lines changed: 7 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ backend:
3535
3636
frontend:
3737
package_name: project # (string) option can be any name of your `package.json`
38-
css_framework: default # (string) option can be one of the values: `tailwindcss`, `unocss`, or `default`
38+
css_framework: default # (string) option can be one of the values: `tailwindcss`, `unocss`, `daisyui`, or `default`
3939
runtime_environment: default # (string) option can be one of the values: `bun`, or `default`
4040
htmx: latest # (string) option can be any existing version of htmx
4141
hyperscript: latest # (string) option can be any existing version of hyperscript
@@ -176,11 +176,12 @@ frontend:
176176

177177
The `css_framework` option can be one of the string values:
178178

179-
| Value | Description |
180-
| ------------- | ---------------------------------------------------------------------- |
181-
| `default` | Don't use any CSS framework (only default styles for the code example) |
182-
| `tailwindcss` | Use the [Tailwind CSS][frontend_tailwindcss_url] as a CSS framework |
183-
| `unocss` | Use the [UnoCSS][frontend_unocss_url] as a CSS framework |
179+
| Value | Description |
180+
| ------------- | ------------------------------------------------------------------------------------------ |
181+
| `default` | Don't use any CSS framework (only default styles for the code example) |
182+
| `tailwindcss` | Use the [Tailwind CSS][frontend_tailwindcss_url] as a CSS framework |
183+
| `unocss` | Use the [UnoCSS][frontend_unocss_url] as a CSS framework |
184+
| `daisyui` | Use the [daisyUI][frontend_daisyui_url] component library with Tailwind as a CSS framework |
184185

185186
Default value is `default`.
186187

docs/es/complete-user-guide/configuration.md

Lines changed: 7 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ backend:
3535
3636
frontend:
3737
package_name: project # (string) option can be any name of your `package.json`
38-
css_framework: default # (string) option can be one of the values: `tailwindcss`, `unocss`, or `default`
38+
css_framework: default # (string) option can be one of the values: `tailwindcss`, `unocss`, `daisyui`, or `default`
3939
runtime_environment: default # (string) option can be one of the values: `bun`, or `default`
4040
htmx: latest # (string) option can be any existing version of htmx
4141
hyperscript: latest # (string) option can be any existing version of hyperscript
@@ -176,11 +176,12 @@ frontend:
176176

177177
La opción `css_framework` puede ser uno de los siguientes valores de cadena:
178178

179-
| Valor | Descripción |
180-
| ------------- | ------------------------------------------------------------------------------------- |
181-
| `default` | No utilizar ningún framework CSS (sólo estilos por defecto para el ejemplo de código) |
182-
| `tailwindcss` | Utilizar [Tailwind CSS][frontend_tailwindcss_url] como framework CSS |
183-
| `unocss` | Utilizar [UnoCSS][frontend_unocss_url] como framework CSS |
179+
| Valor | Descripción |
180+
| ------------- | ----------------------------------------------------------------------------------------------------- |
181+
| `default` | No utilizar ningún framework CSS (sólo estilos por defecto para el ejemplo de código) |
182+
| `tailwindcss` | Utilizar [Tailwind CSS][frontend_tailwindcss_url] como framework CSS |
183+
| `unocss` | Utilizar [UnoCSS][frontend_unocss_url] como framework CSS |
184+
| `daisyui` | Utilizar la biblioteca de componentes [daisyUI][frontend_daisyui_url] con Tailwind como framework CSS |
184185

185186
El valor por defecto es `default`.
186187

docs/es/getting-started/how-does-it-work.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ Para ser más eficiente, la CLI soporta el motor de plantillas [Templ][backend_a
2727

2828
Para crear una compilación para la parte **frontend**, se eligió el rápido y fácil [Parcel][frontend_parcel_url] bundler versión `2`. Esto nos permitió reducir al máximo el momento innecesariamente estresante de la construcción del frontend. Ya no es necesario entender configuraciones, el CLI ya lo ha preparado por ti.
2929

30-
En este momento, el CLI soportaba los siguientes frameworks CSS: [Tailwind CSS][frontend_tailwindcss_url] y [UnoCSS][frontend_unocss_url]. Por defecto, el proyecto creado utilizará los estilos CSS mínimos para la demostración.
30+
En este momento, la CLI soporta los siguientes frameworks CSS: [Tailwind CSS][frontend_tailwindcss_url], [UnoCSS][frontend_unocss_url] y [daisyUI][frontend_daisyui_url] biblioteca de componentes. Por defecto, el proyecto creado utilizará los estilos CSS mínimos para la demostración.
3131

3232
### Entorno de ejecución de JavaScript
3333

docs/getting-started/how-does-it-work.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ To be more efficient, the CLI supports the [Templ][backend_ah_templ_url] templat
2727

2828
To create a build for the **frontend** part, the quick and easy [Parcel][frontend_parcel_url] bundler version `2` was chosen. This allowed us to reduce the unnecessarily stressful moment of frontend build to the maximum. No more need to understand configurations, the CLI has already prepared it for you.
2929

30-
At this moment, the CLI supported the following CSS frameworks: [Tailwind CSS][frontend_tailwindcss_url] and [UnoCSS][frontend_unocss_url]. By default, created project will use the minimal CSS styles to demonstration.
30+
At this moment, the CLI supported the following CSS frameworks: [Tailwind CSS][frontend_tailwindcss_url], [UnoCSS][frontend_unocss_url] and [daisyUI][frontend_daisyui_url] components library. By default, created project will use the minimal CSS styles to demonstration.
3131

3232
### JavaScript runtime environment
3333

docs/parts/links.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -34,6 +34,7 @@
3434
[frontend_htmx_url]: https://htmx.org
3535
[frontend_hyperscript_url]: https://hyperscript.org
3636
[frontend_tailwindcss_url]: https://tailwindcss.com
37+
[frontend_daisyui_url]: https://daisyui.com
3738
[frontend_unocss_url]: https://unocss.dev
3839
[frontend_nodejs_url]: https://nodejs.org
3940
[frontend_bun_url]: https://bun.sh

docs/ru/complete-user-guide/configuration.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ backend:
3535
3636
frontend:
3737
package_name: project # (string) option can be any name of your `package.json`
38-
css_framework: default # (string) option can be one of the values: `tailwindcss`, `unocss`, or `default`
38+
css_framework: default # (string) option can be one of the values: `tailwindcss`, `unocss`, `daisyui`, or `default`
3939
runtime_environment: default # (string) option can be one of the values: `bun`, or `default`
4040
htmx: latest # (string) option can be any existing version of htmx
4141
hyperscript: latest # (string) option can be any existing version of hyperscript

docs/ru/getting-started/how-does-it-work.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ CLI **Gowebly** построен на базе языка программиро
2727

2828
Для создания сборки для **фронтенд**-части был выбран быстрый и простой бандлер [Parcel][frontend_parcel_url] версии `2`. Это позволило максимально сократить излишне напряженный момент сборки фронтенда. Больше не нужно разбираться в конфигурациях, CLI уже все подготовил за вас.
2929

30-
На данный момент CLI поддерживал следующие CSS-фреймворки: [Tailwind CSS][frontend_tailwindcss_url] и [UnoCSS][frontend_unocss_url]. По умолчанию созданный проект будет использовать минимальные стили CSS для демонстрации.
30+
На данный момент CLI поддерживает следующие CSS-фреймворки: [Tailwind CSS][frontend_tailwindcss_url], [UnoCSS][frontend_unocss_url] и библиотеку компонентов [daisyUI][frontend_daisyui_url]. По умолчанию созданный проект будет использовать минимальные стили CSS для демонстрации.
3131

3232
### Среда выполнения JavaScript
3333

docs/zh_HK/complete-user-guide/configuration.md

Lines changed: 7 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ backend:
3535
3636
frontend:
3737
package_name: project # (string) option can be any name of your `package.json`
38-
css_framework: default # (string) option can be one of the values: `tailwindcss`, `unocss`, or `default`
38+
css_framework: default # (string) option can be one of the values: `tailwindcss`, `unocss`, `daisyui`, or `default`
3939
runtime_environment: default # (string) option can be one of the values: `bun`, or `default`
4040
htmx: latest # (string) option can be any existing version of htmx
4141
hyperscript: latest # (string) option can be any existing version of hyperscript
@@ -176,11 +176,12 @@ frontend:
176176

177177
`css_framework` 选项可以是字符串值之一:
178178

179-
| 价值 | 说明 |
180-
| ------------- | ----------------------------------------------------------- |
181-
| `default` | 不使用任何 CSS 框架(代码示例仅使用默认样式) |
182-
| `tailwindcss` | 使用 [Tailwind CSS][frontend_tailwindcss_url] 作为 CSS 框架 |
183-
| `unocss` | 使用 [UnoCSS][frontend_unocss_url] 作为 CSS 框架 |
179+
| 价值 | 说明 |
180+
| ------------- | -------------------------------------------------------------------- |
181+
| `default` | 不使用任何 CSS 框架(代码示例仅使用默认样式) |
182+
| `tailwindcss` | 使用 [Tailwind CSS][frontend_tailwindcss_url] 作为 CSS 框架 |
183+
| `unocss` | 使用 [UnoCSS][frontend_unocss_url] 作为 CSS 框架 |
184+
| `daisyui` | 使用 [daisyUI][frontend_daisyui_url] 组件库和 Tailwind 作为 CSS 框架 |
184185

185186
默认值为 `default`。
186187

docs/zh_HK/getting-started/how-does-it-work.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ Gowebly CLI 建立在 [Go][go_url] 编程语言之上。
2727

2828
为了创建前端部分的构建,我们选择了快速简便的 [Parcel][frontend_parcel_url] 捆绑程序 `2` 版本。这让我们最大限度地减少了前端构建过程中不必要的压力。无需再了解配置,CLI 已经为你准备好了。
2929

30-
目前,CLI 支持以下 CSS 框架: [Tailwind CSS][frontend_tailwindcss_url][UnoCSS][frontend_unocss_url]默认情况下,创建的项目将使用最少的 CSS 样式进行演示。
30+
目前,CLI 支持以下 CSS 框架: [Tailwind CSS][frontend_tailwindcss_url][UnoCSS][frontend_unocss_url][daisyUI][frontend_daisyui_url] 组件库。 默认情况下,创建的项目将使用最少的 CSS 样式进行演示。
3131

3232
### JavaScript 运行时环境
3333

0 commit comments

Comments
 (0)