@telemetryos/cli 1.7.3 → 1.7.4

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/CHANGELOG.md CHANGED
@@ -1,5 +1,13 @@
1
1
  # @telemetryos/cli
2
2
 
3
+ ## 1.7.4
4
+
5
+ ### Patch Changes
6
+
7
+ - Fix broken tos init project
8
+ - Updated dependencies
9
+ - @telemetryos/development-application-host-ui@1.7.4
10
+
3
11
  ## 1.7.3
4
12
 
5
13
  ### Patch Changes
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@telemetryos/cli",
3
- "version": "1.7.3",
3
+ "version": "1.7.4",
4
4
  "description": "The official TelemetryOS application CLI package. Use it to build applications that run on the TelemetryOS platform",
5
5
  "type": "module",
6
6
  "bin": {
@@ -25,7 +25,7 @@
25
25
  "license": "",
26
26
  "repository": "github:TelemetryTV/Application-API",
27
27
  "dependencies": {
28
- "@telemetryos/development-application-host-ui": "^1.7.3",
28
+ "@telemetryos/development-application-host-ui": "^1.7.4",
29
29
  "@types/serve-handler": "^6.1.4",
30
30
  "commander": "^14.0.0",
31
31
  "inquirer": "^12.9.6",
@@ -1,12 +1,12 @@
1
1
  import { store } from '@telemetryos/sdk'
2
- import { useUiScaleFactorToSetRem } from '@telemetryos/sdk/react'
2
+ import { useUiScaleToSetRem } from '@telemetryos/sdk/react'
3
3
  import wordMarkPath from '../../assets/telemetryos-wordmark.svg'
4
4
  import { useSubtitleStoreState, useUiScaleStoreState } from '../hooks/store'
5
5
  import './Render.css'
6
6
 
7
7
  export function Render() {
8
8
  const [_isUiScaleLoading, uiScale] = useUiScaleStoreState(store().instance)
9
- useUiScaleFactorToSetRem(uiScale)
9
+ useUiScaleToSetRem(uiScale)
10
10
  const [isLoading, subtitle] = useSubtitleStoreState(store().instance)
11
11
 
12
12
  return (