From e91fa9a8c6a2fe728c271a3c33a01ea3e1e779a2 Mon Sep 17 00:00:00 2001 From: robuddybot <65057909+robuddybot@users.noreply.github.com> Date: Wed, 25 Dec 2024 23:57:07 +0000 Subject: [PATCH] Build & Release v1.5.3 --- dist/components/Divider.d.ts | 11 +++++------ package.json | 2 +- 2 files changed, 6 insertions(+), 7 deletions(-) diff --git a/dist/components/Divider.d.ts b/dist/components/Divider.d.ts index d239be0..f3e7d97 100644 --- a/dist/components/Divider.d.ts +++ b/dist/components/Divider.d.ts @@ -1,15 +1,14 @@ type Props = Partial<{ - /** Removes the line, simply adding a gap. */ + /** Divider can divide content without creating a dividing line. */ hidden: boolean; - /** Rotate the divider to vertical. */ + /** Divide content vertically. */ vertical: boolean; }>; /** * - * ## Dimmer - * Dims surrounding area to emphasize content placed inside. - * - * Content is automatically centered inside the dimmer. + * ## Divider + * Draws a horizontal or vertical line, dividing a section into groups. + * Works like the good old `
` element, but it's fancier. */ export declare function Divider(props: Props): import("react/jsx-runtime").JSX.Element; export {}; diff --git a/package.json b/package.json index 2ad7bf1..d53d991 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "tgui-core", - "version": "1.5.2", + "version": "1.5.3", "description": "TGUI core component library", "keywords": ["TGUI", "library", "typescript"], "files": ["dist"],