tgui-core 1.5.2 → 1.5.3

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -1,15 +1,14 @@
1
1
  type Props = Partial<{
2
- /** Removes the line, simply adding a gap. */
2
+ /** Divider can divide content without creating a dividing line. */
3
3
  hidden: boolean;
4
- /** Rotate the divider to vertical. */
4
+ /** Divide content vertically. */
5
5
  vertical: boolean;
6
6
  }>;
7
7
  /**
8
8
  *
9
- * ## Dimmer
10
- * Dims surrounding area to emphasize content placed inside.
11
- *
12
- * Content is automatically centered inside the dimmer.
9
+ * ## Divider
10
+ * Draws a horizontal or vertical line, dividing a section into groups.
11
+ * Works like the good old `<hr>` element, but it's fancier.
13
12
  */
14
13
  export declare function Divider(props: Props): import("react/jsx-runtime").JSX.Element;
15
14
  export {};
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "tgui-core",
3
- "version": "1.5.2",
3
+ "version": "1.5.3",
4
4
  "description": "TGUI core component library",
5
5
  "keywords": ["TGUI", "library", "typescript"],
6
6
  "files": ["dist"],