@lunora/solid 1.0.0-alpha.2 → 1.0.0-alpha.21

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/LICENSE.md CHANGED
@@ -103,3 +103,9 @@ Unless required by applicable law or agreed to in writing, software distributed
103
103
  under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR
104
104
  CONDITIONS OF ANY KIND, either express or implied. See the License for the
105
105
  specific language governing permissions and limitations under the License.
106
+
107
+ <!-- DEPENDENCIES -->
108
+ <!-- /DEPENDENCIES -->
109
+
110
+ <!-- TYPE_DEPENDENCIES -->
111
+ <!-- /TYPE_DEPENDENCIES -->
package/README.md CHANGED
@@ -103,6 +103,8 @@ render(
103
103
  | `createAuth` | `useAuth` | Reactive auth state (`token`, `user` signals + `setToken`). |
104
104
  | `Authenticated` / `AuthLoading` / `Unauthenticated` | — | Auth-gate components rendering `children` per identity state. |
105
105
  | `createPresence` | `usePresence` | Collaborative-awareness — heartbeat + live present-members signal. |
106
+ | `createFlag` | `useFlag` | Live OpenFeature flag accessor — returns `default` until the server answers. |
107
+ | `createFlags` | `useFlags` | Batch variant — an accessor of one value per key in the defaults map. |
106
108
  | `createRateLimit` | `useRateLimit` | Client-side rate-limit mirror — `ok`, `disabled`, `retryAfter` as signals. |
107
109
  | `createConnectionStatus` | `useConnectionStatus` | Reactive connection state signal. |
108
110
  | `hydratePreloaded` | `usePreloadedQuery` | Seed a query synchronously from an SSR `Preloaded` token, then go live. |