@analogjs/platform 0.2.22 → 0.2.23

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@analogjs/platform",
3
- "version": "0.2.22",
3
+ "version": "0.2.23",
4
4
  "type": "commonjs",
5
5
  "description": "The fullstack meta-framework for Angular",
6
6
  "author": "Brandon Roberts <robertsbt@gmail.com>",
@@ -25,8 +25,8 @@
25
25
  },
26
26
  "dependencies": {
27
27
  "nitropack": "^2.6.0",
28
- "@analogjs/vite-plugin-angular": "^0.2.22",
29
- "@analogjs/vite-plugin-nitro": "^0.2.22"
28
+ "@analogjs/vite-plugin-angular": "^0.2.23",
29
+ "@analogjs/vite-plugin-nitro": "^0.2.23"
30
30
  },
31
31
  "devDependencies": {
32
32
  "@nx/devkit": "^16.0.0 || ^17.0.0"
@@ -356,8 +356,8 @@ import { Note } from '../../note';
356
356
  <div class="trpc-container">
357
357
  <h2 class="trpc-heading">Leave a note</h2>
358
358
  <p class="trpc-description">
359
- This is an example of how to you can use tRPC to superpower you
360
- client server interaction.
359
+ This is an example of how you can use tRPC to superpower your
360
+ client-server interaction.
361
361
  </p>
362
362
  </div>
363
363
  <form class="trpc-form" #f="ngForm" (ngSubmit)="addNote(f)">
@@ -64,8 +64,8 @@ import { Note } from '../../note';
64
64
  <p
65
65
  class="max-w-[85%] leading-normal sm:text-lg sm:leading-7"
66
66
  >
67
- This is an example of how to you can use tRPC to superpower you
68
- client server interaction.
67
+ This is an example of how you can use tRPC to superpower your
68
+ client-server interaction.
69
69
  </p>
70
70
  </div>
71
71
  <form
@@ -96,7 +96,7 @@ import { Note } from '../../note';
96
96
  <p class="text-sm text-zinc-400">{{ note.createdAt | date }}</p>
97
97
  <button
98
98
  [attr.data-testid]="'removeNoteAtIndexBtn' + i"
99
- class="text-xs inline-flex items-center justify-center text-sm font-medium transition-colors focus-visible:outline-none focus-visible:ring-2 focus-visible:ring-ring focus-visible:ring-offset-2 disabled:opacity-50 disabled:pointer-events-none ring-offset-background hover:bg-zinc-100 hover:text-zinc-950 h-6 w-6 rounded-md"
99
+ class="inline-flex items-center justify-center text-sm font-medium transition-colors focus-visible:outline-none focus-visible:ring-2 focus-visible:ring-ring focus-visible:ring-offset-2 disabled:opacity-50 disabled:pointer-events-none ring-offset-background hover:bg-zinc-100 hover:text-zinc-950 h-6 w-6 rounded-md"
100
100
  (click)="removeNote(note.id)"
101
101
  >
102
102
  x