@tanstack/cta-ui 0.32.2 → 0.33.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.
package/dist/index.html CHANGED
@@ -11,7 +11,7 @@
11
11
  href="https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap"
12
12
  />
13
13
  <!-- PRELOAD-->
14
- <script type="module" crossorigin src="/assets/index-BMNLJ_vl.js"></script>
14
+ <script type="module" crossorigin src="/assets/index-Dw3IdVvR.js"></script>
15
15
  <link rel="stylesheet" crossorigin href="/assets/index-CMi5ddsE.css">
16
16
  </head>
17
17
  <body class="dark">
@@ -28,6 +28,7 @@ function convertAddOnToAddOnInfo(addOn: AddOn): AddOnInfo {
28
28
  return {
29
29
  id: addOn.id,
30
30
  name: addOn.name,
31
+ priority: addOn.priority,
31
32
  description: addOn.description,
32
33
  modes: addOn.modes as Array<'code-router' | 'file-router'>,
33
34
  type: addOn.type,
package/lib/types.d.ts CHANGED
@@ -11,6 +11,7 @@ export type AddOnInfo = {
11
11
  id: string
12
12
  name: string
13
13
  description: string
14
+ priority?: number
14
15
  type: 'add-on' | 'example' | 'starter' | 'toolchain' | 'host'
15
16
  modes: Array<'code-router' | 'file-router'>
16
17
  smallLogo?: string
@@ -7,6 +7,7 @@ function convertAddOnToAddOnInfo(addOn) {
7
7
  return {
8
8
  id: addOn.id,
9
9
  name: addOn.name,
10
+ priority: addOn.priority,
10
11
  description: addOn.description,
11
12
  modes: addOn.modes,
12
13
  type: addOn.type,
package/package.json CHANGED
@@ -17,8 +17,8 @@
17
17
  "tailwindcss": "^4.1.6",
18
18
  "tailwindcss-animate": "^1.0.7",
19
19
  "vite-tsconfig-paths": "^5.1.4",
20
- "@tanstack/cta-engine": "0.32.2",
21
- "@tanstack/cta-ui-base": "0.32.2"
20
+ "@tanstack/cta-ui-base": "0.33.0",
21
+ "@tanstack/cta-engine": "0.33.0"
22
22
  },
23
23
  "devDependencies": {
24
24
  "@tailwindcss/typography": "^0.5.16",
@@ -37,6 +37,6 @@
37
37
  "vitest": "^3.0.5",
38
38
  "web-vitals": "^4.2.4"
39
39
  },
40
- "version": "0.32.2",
40
+ "version": "0.33.0",
41
41
  "scripts": {}
42
42
  }