@telemetryos/sdk-bridge 1.14.0 → 1.15.0

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.
Files changed (2) hide show
  1. package/CHANGELOG.md +16 -0
  2. package/package.json +1 -1
package/CHANGELOG.md CHANGED
@@ -1,5 +1,21 @@
1
1
  # @telemetryos/sdk-bridge
2
2
 
3
+ ## 1.15.0
4
+
5
+ ### Minor Changes
6
+
7
+ - ### New Features
8
+ - **Theme system** — Templates now ship with 8 built-in themes (`telemetryos`, `neon-pulse`, `solar-flare`, `arctic-aurora`, `emerald-matrix`, `the-matrix`, `plain-light`, `plain-dark`), each with a complete color palette including gradients, text colors, accents, and status indicators.
9
+ - **FlickeringGrid component** — New canvas-based animated background component with configurable square size, grid gap, flicker chance, opacity, and color.
10
+ - **SettingsSection component** — New collapsible accordion component exported from `@telemetryos/sdk` for organizing settings into expandable sections. Includes `aria-expanded`/`aria-controls` and `inert` support.
11
+ - **Settings form styles** — New shared CSS (`@telemetryos/sdk/react/styles.css`) with light/dark theme variables for text inputs, selects, sliders, color pickers, toggles, and checkboxes.
12
+ - **Expanded entrance animations** — Added `flip`, `fade`, `scale`, `slide`, `drop`, `fade-in`, `blur`, `zoom`, `unfold`, `rise`, `glitch`, and `breathe-glow` animations; removed `swing`.
13
+ - **Dark wordmark** — Added `telemetryos-wordmark-dark.svg` to template assets.
14
+ - **Root-SDK bridge re-exports** — `@telemetryos/root-sdk` now re-exports `BridgeMessage`, `ClientMessage`, and their validators/formatters from `@telemetryos/sdk-bridge`, so consumers no longer need a direct `sdk-bridge` import.
15
+
16
+ ### Infrastructure
17
+ - Moved template assets from `assets/` to `public/assets/` for automatic Vite build inclusion (both `vite-react-typescript` and `vite-react-typescript-web` templates).
18
+
3
19
  ## 1.14.0
4
20
 
5
21
  ### Minor Changes
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@telemetryos/sdk-bridge",
3
- "version": "1.14.0",
3
+ "version": "1.15.0",
4
4
  "description": "The official TelemetryOS SDK bridge package. Provides the Bridge class and message protocol for host environments to communicate with TelemetryOS applications.",
5
5
  "type": "module",
6
6
  "main": "dist/index.cjs",