@roadlittledawn/docs-design-system-react 0.15.0 → 0.15.1

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.
package/USAGE.md CHANGED
@@ -274,7 +274,7 @@ import { CardGrid } from "@roadlittledawn/docs-design-system-react";
274
274
 
275
275
  ## Tile
276
276
 
277
- A compact, clickable item designed for dense listing patterns — integrations, frameworks, plugins, skills, etc. Unlike `Card`, Tile has a fixed layout (icon left, title right) and a simpler, more opinionated API.
277
+ A compact, clickable item designed for dense listing patterns — integrations, frameworks, plugins, skills, etc. Unlike `Card`, Tile has a fixed layout (icon left, title right) and a simpler, more opinionated API. Styles are provided via `@roadlittledawn/docs-design-system-react/styles.css` — no per-component CSS import is needed.
278
278
 
279
279
  ### When to Use
280
280
 
@@ -1,5 +1,4 @@
1
1
  import { ReactNode } from "react";
2
- import "./Tile.css";
3
2
  export interface TileProps {
4
3
  /** Tile heading text (required) */
5
4
  title: string;
@@ -1,5 +1,4 @@
1
1
  import { jsx as _jsx, jsxs as _jsxs } from "react/jsx-runtime";
2
- import "./Tile.css";
3
2
  export function Tile(_a) {
4
3
  var title = _a.title, icon = _a.icon, description = _a.description, href = _a.href, _b = _a.showArrow, showArrow = _b === void 0 ? false : _b, _c = _a.className, className = _c === void 0 ? "" : _c;
5
4
  var tileClasses = [
@@ -1,5 +1,4 @@
1
1
  import { ReactNode } from "react";
2
- import "./TileGrid.css";
3
2
  export interface TileGridProps {
4
3
  /**
5
4
  * Number of columns in the grid at full width.
@@ -1,5 +1,4 @@
1
1
  import { jsx as _jsx } from "react/jsx-runtime";
2
- import "./TileGrid.css";
3
2
  export function TileGrid(_a) {
4
3
  var _b = _a.columns, columns = _b === void 0 ? 4 : _b, children = _a.children, _c = _a.className, className = _c === void 0 ? "" : _c;
5
4
  var classNames = [
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@roadlittledawn/docs-design-system-react",
3
- "version": "0.15.0",
3
+ "version": "0.15.1",
4
4
  "license": "MIT",
5
5
  "description": "React components for documentation design system",
6
6
  "repository": {