@nikala-ui/core 0.9.0 → 0.9.2
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 +1 -1
- package/registry/create-active-element.json +10 -0
- package/registry/create-audio.json +10 -0
- package/registry/create-battery.json +10 -0
- package/registry/create-click-outside.json +10 -0
- package/registry/create-clipboard.json +10 -0
- package/registry/create-color-mode.json +10 -0
- package/registry/create-controllable-signal.json +10 -0
- package/registry/create-debounce.json +10 -0
- package/registry/create-disclosure.json +10 -0
- package/registry/create-document-title.json +10 -0
- package/registry/create-event-source.json +10 -0
- package/registry/create-favicon.json +10 -0
- package/registry/create-fetch.json +10 -0
- package/registry/create-focus-trap.json +10 -0
- package/registry/create-form.json +10 -0
- package/registry/create-fullscreen.json +10 -0
- package/registry/create-geolocation.json +10 -0
- package/registry/create-hover.json +10 -0
- package/registry/create-idle.json +10 -0
- package/registry/create-infinite-scroll.json +10 -0
- package/registry/create-input-mask.json +10 -0
- package/registry/create-intersection-observer.json +10 -0
- package/registry/create-keybindings.json +10 -0
- package/registry/create-lock-scroll.json +10 -0
- package/registry/create-long-press.json +10 -0
- package/registry/create-media-query.json +10 -0
- package/registry/create-mouse-position.json +10 -0
- package/registry/create-network-status.json +10 -0
- package/registry/create-orientation.json +10 -0
- package/registry/create-permission.json +10 -0
- package/registry/create-previous.json +10 -0
- package/registry/create-resize-observer.json +10 -0
- package/registry/create-scroll-into-view.json +10 -0
- package/registry/create-scroll-position.json +10 -0
- package/registry/create-storage.json +10 -0
- package/registry/create-timer.json +10 -0
- package/registry/create-undo-redo.json +10 -0
- package/registry/create-web-notification.json +10 -0
- package/registry/create-websocket.json +10 -0
- package/registry/create-window-size.json +10 -0
- package/registry/index.json +360 -0
- package/src/registry/index.ts +2 -2
- package/src/registry/metadata.ts +206 -0
package/package.json
CHANGED
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "create-audio",
|
|
3
|
+
"title": "createAudio & createVideo",
|
|
4
|
+
"description": "SolidJS reactive primitives for controlling HTML audio and video playback, duration, volume, and seeking",
|
|
5
|
+
"type": "registry:hook",
|
|
6
|
+
"dependencies": [
|
|
7
|
+
"@nikala-ui/hooks"
|
|
8
|
+
],
|
|
9
|
+
"files": []
|
|
10
|
+
}
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "create-battery",
|
|
3
|
+
"title": "createBattery",
|
|
4
|
+
"description": "SolidJS reactive primitive for observing device battery status, charge level, and charging metrics",
|
|
5
|
+
"type": "registry:hook",
|
|
6
|
+
"dependencies": [
|
|
7
|
+
"@nikala-ui/hooks"
|
|
8
|
+
],
|
|
9
|
+
"files": []
|
|
10
|
+
}
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "create-click-outside",
|
|
3
|
+
"title": "createClickOutside",
|
|
4
|
+
"description": "SolidJS reactive primitive for detecting click and pointer interactions outside target elements",
|
|
5
|
+
"type": "registry:hook",
|
|
6
|
+
"dependencies": [
|
|
7
|
+
"@nikala-ui/hooks"
|
|
8
|
+
],
|
|
9
|
+
"files": []
|
|
10
|
+
}
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "create-controllable-signal",
|
|
3
|
+
"title": "createControllableSignal",
|
|
4
|
+
"description": "SolidJS reactive primitive supporting both controlled and uncontrolled state management",
|
|
5
|
+
"type": "registry:hook",
|
|
6
|
+
"dependencies": [
|
|
7
|
+
"@nikala-ui/hooks"
|
|
8
|
+
],
|
|
9
|
+
"files": []
|
|
10
|
+
}
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "create-debounce",
|
|
3
|
+
"title": "createDebounce",
|
|
4
|
+
"description": "SolidJS reactive primitives for debouncing and throttling rate-limited function execution",
|
|
5
|
+
"type": "registry:hook",
|
|
6
|
+
"dependencies": [
|
|
7
|
+
"@nikala-ui/hooks"
|
|
8
|
+
],
|
|
9
|
+
"files": []
|
|
10
|
+
}
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "create-disclosure",
|
|
3
|
+
"title": "createDisclosure",
|
|
4
|
+
"description": "SolidJS reactive primitive for managing boolean open/close disclosure state with helper controls",
|
|
5
|
+
"type": "registry:hook",
|
|
6
|
+
"dependencies": [
|
|
7
|
+
"@nikala-ui/hooks"
|
|
8
|
+
],
|
|
9
|
+
"files": []
|
|
10
|
+
}
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "create-fetch",
|
|
3
|
+
"title": "createFetch",
|
|
4
|
+
"description": "SolidJS reactive primitive for HTTP REST API fetching, request loading states, error handling, and refetching",
|
|
5
|
+
"type": "registry:hook",
|
|
6
|
+
"dependencies": [
|
|
7
|
+
"@nikala-ui/hooks"
|
|
8
|
+
],
|
|
9
|
+
"files": []
|
|
10
|
+
}
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "create-focus-trap",
|
|
3
|
+
"title": "createFocusTrap",
|
|
4
|
+
"description": "SolidJS reactive primitive for trapping keyboard focus inside target container element for accessibility",
|
|
5
|
+
"type": "registry:hook",
|
|
6
|
+
"dependencies": [
|
|
7
|
+
"@nikala-ui/hooks"
|
|
8
|
+
],
|
|
9
|
+
"files": []
|
|
10
|
+
}
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "create-fullscreen",
|
|
3
|
+
"title": "createFullscreen",
|
|
4
|
+
"description": "SolidJS reactive primitive for requesting and monitoring element or document fullscreen status",
|
|
5
|
+
"type": "registry:hook",
|
|
6
|
+
"dependencies": [
|
|
7
|
+
"@nikala-ui/hooks"
|
|
8
|
+
],
|
|
9
|
+
"files": []
|
|
10
|
+
}
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "create-geolocation",
|
|
3
|
+
"title": "createGeolocation",
|
|
4
|
+
"description": "SolidJS reactive primitive for tracking browser Geolocation position, coordinates, speed, and GPS accuracy",
|
|
5
|
+
"type": "registry:hook",
|
|
6
|
+
"dependencies": [
|
|
7
|
+
"@nikala-ui/hooks"
|
|
8
|
+
],
|
|
9
|
+
"files": []
|
|
10
|
+
}
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "create-infinite-scroll",
|
|
3
|
+
"title": "createInfiniteScroll",
|
|
4
|
+
"description": "SolidJS reactive primitive for dynamic infinite scrolling, auto-fetching pages, and scroll pagination",
|
|
5
|
+
"type": "registry:hook",
|
|
6
|
+
"dependencies": [
|
|
7
|
+
"@nikala-ui/hooks"
|
|
8
|
+
],
|
|
9
|
+
"files": []
|
|
10
|
+
}
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "create-input-mask",
|
|
3
|
+
"title": "createInputMask",
|
|
4
|
+
"description": "SolidJS reactive primitive for input value masking (phone numbers, credit cards, dates)",
|
|
5
|
+
"type": "registry:hook",
|
|
6
|
+
"dependencies": [
|
|
7
|
+
"@nikala-ui/hooks"
|
|
8
|
+
],
|
|
9
|
+
"files": []
|
|
10
|
+
}
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "create-intersection-observer",
|
|
3
|
+
"title": "createIntersectionObserver",
|
|
4
|
+
"description": "SolidJS reactive primitives for observing element visibility and viewport intersection status",
|
|
5
|
+
"type": "registry:hook",
|
|
6
|
+
"dependencies": [
|
|
7
|
+
"@nikala-ui/hooks"
|
|
8
|
+
],
|
|
9
|
+
"files": []
|
|
10
|
+
}
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "create-keybindings",
|
|
3
|
+
"title": "createKeybindings",
|
|
4
|
+
"description": "SolidJS reactive primitives for listening to keyboard shortcuts, key combinations, and Escape key presses",
|
|
5
|
+
"type": "registry:hook",
|
|
6
|
+
"dependencies": [
|
|
7
|
+
"@nikala-ui/hooks"
|
|
8
|
+
],
|
|
9
|
+
"files": []
|
|
10
|
+
}
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "create-lock-scroll",
|
|
3
|
+
"title": "createLockScroll",
|
|
4
|
+
"description": "SolidJS reactive primitive for locking body or container scrolling when overlays are active",
|
|
5
|
+
"type": "registry:hook",
|
|
6
|
+
"dependencies": [
|
|
7
|
+
"@nikala-ui/hooks"
|
|
8
|
+
],
|
|
9
|
+
"files": []
|
|
10
|
+
}
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "create-long-press",
|
|
3
|
+
"title": "createLongPress",
|
|
4
|
+
"description": "SolidJS reactive primitive for detecting long press / hold touch and pointer interactions",
|
|
5
|
+
"type": "registry:hook",
|
|
6
|
+
"dependencies": [
|
|
7
|
+
"@nikala-ui/hooks"
|
|
8
|
+
],
|
|
9
|
+
"files": []
|
|
10
|
+
}
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "create-media-query",
|
|
3
|
+
"title": "createMediaQuery",
|
|
4
|
+
"description": "SolidJS reactive primitives for tracking CSS media queries and responsive Tailwind breakpoints",
|
|
5
|
+
"type": "registry:hook",
|
|
6
|
+
"dependencies": [
|
|
7
|
+
"@nikala-ui/hooks"
|
|
8
|
+
],
|
|
9
|
+
"files": []
|
|
10
|
+
}
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "create-mouse-position",
|
|
3
|
+
"title": "createMousePosition",
|
|
4
|
+
"description": "SolidJS reactive primitive for tracking global and element-relative mouse pointer coordinates",
|
|
5
|
+
"type": "registry:hook",
|
|
6
|
+
"dependencies": [
|
|
7
|
+
"@nikala-ui/hooks"
|
|
8
|
+
],
|
|
9
|
+
"files": []
|
|
10
|
+
}
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "create-network-status",
|
|
3
|
+
"title": "createNetworkStatus",
|
|
4
|
+
"description": "SolidJS reactive primitives for tracking browser network connectivity and connection quality metrics",
|
|
5
|
+
"type": "registry:hook",
|
|
6
|
+
"dependencies": [
|
|
7
|
+
"@nikala-ui/hooks"
|
|
8
|
+
],
|
|
9
|
+
"files": []
|
|
10
|
+
}
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "create-orientation",
|
|
3
|
+
"title": "createOrientation",
|
|
4
|
+
"description": "SolidJS reactive primitive for observing mobile and desktop screen orientation changes and rotation angles",
|
|
5
|
+
"type": "registry:hook",
|
|
6
|
+
"dependencies": [
|
|
7
|
+
"@nikala-ui/hooks"
|
|
8
|
+
],
|
|
9
|
+
"files": []
|
|
10
|
+
}
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "create-permission",
|
|
3
|
+
"title": "createPermission",
|
|
4
|
+
"description": "SolidJS reactive primitive for querying and observing browser permission status changes",
|
|
5
|
+
"type": "registry:hook",
|
|
6
|
+
"dependencies": [
|
|
7
|
+
"@nikala-ui/hooks"
|
|
8
|
+
],
|
|
9
|
+
"files": []
|
|
10
|
+
}
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "create-resize-observer",
|
|
3
|
+
"title": "createResizeObserver",
|
|
4
|
+
"description": "SolidJS reactive primitives for tracking element width and height dimensions dynamically",
|
|
5
|
+
"type": "registry:hook",
|
|
6
|
+
"dependencies": [
|
|
7
|
+
"@nikala-ui/hooks"
|
|
8
|
+
],
|
|
9
|
+
"files": []
|
|
10
|
+
}
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "create-scroll-into-view",
|
|
3
|
+
"title": "createScrollIntoView",
|
|
4
|
+
"description": "SolidJS reactive primitive for scrolling a target element into view smooth or auto behavior",
|
|
5
|
+
"type": "registry:hook",
|
|
6
|
+
"dependencies": [
|
|
7
|
+
"@nikala-ui/hooks"
|
|
8
|
+
],
|
|
9
|
+
"files": []
|
|
10
|
+
}
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "create-scroll-position",
|
|
3
|
+
"title": "createScrollPosition",
|
|
4
|
+
"description": "SolidJS reactive primitive for tracking scroll position, scroll direction, and container bounds",
|
|
5
|
+
"type": "registry:hook",
|
|
6
|
+
"dependencies": [
|
|
7
|
+
"@nikala-ui/hooks"
|
|
8
|
+
],
|
|
9
|
+
"files": []
|
|
10
|
+
}
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "create-storage",
|
|
3
|
+
"title": "createLocalStorage",
|
|
4
|
+
"description": "SolidJS reactive primitives for Web Storage state synchronization across components and browser tabs",
|
|
5
|
+
"type": "registry:hook",
|
|
6
|
+
"dependencies": [
|
|
7
|
+
"@nikala-ui/hooks"
|
|
8
|
+
],
|
|
9
|
+
"files": []
|
|
10
|
+
}
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "create-undo-redo",
|
|
3
|
+
"title": "createUndoRedo",
|
|
4
|
+
"description": "SolidJS reactive primitive for undo/redo state history management, history stack tracking, and reverting actions",
|
|
5
|
+
"type": "registry:hook",
|
|
6
|
+
"dependencies": [
|
|
7
|
+
"@nikala-ui/hooks"
|
|
8
|
+
],
|
|
9
|
+
"files": []
|
|
10
|
+
}
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "create-web-notification",
|
|
3
|
+
"title": "createWebNotification",
|
|
4
|
+
"description": "SolidJS reactive primitive for sending browser desktop notifications and managing notification permissions",
|
|
5
|
+
"type": "registry:hook",
|
|
6
|
+
"dependencies": [
|
|
7
|
+
"@nikala-ui/hooks"
|
|
8
|
+
],
|
|
9
|
+
"files": []
|
|
10
|
+
}
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "create-websocket",
|
|
3
|
+
"title": "createWebSocket",
|
|
4
|
+
"description": "SolidJS reactive primitive for WebSocket client connections, auto-reconnection, and message passing",
|
|
5
|
+
"type": "registry:hook",
|
|
6
|
+
"dependencies": [
|
|
7
|
+
"@nikala-ui/hooks"
|
|
8
|
+
],
|
|
9
|
+
"files": []
|
|
10
|
+
}
|
package/registry/index.json
CHANGED
|
@@ -340,5 +340,365 @@
|
|
|
340
340
|
"tailwind-merge",
|
|
341
341
|
"@kobalte/core"
|
|
342
342
|
]
|
|
343
|
+
},
|
|
344
|
+
{
|
|
345
|
+
"name": "create-controllable-signal",
|
|
346
|
+
"title": "createControllableSignal",
|
|
347
|
+
"description": "SolidJS reactive primitive supporting both controlled and uncontrolled state management",
|
|
348
|
+
"type": "registry:hook",
|
|
349
|
+
"dependencies": [
|
|
350
|
+
"@nikala-ui/hooks"
|
|
351
|
+
]
|
|
352
|
+
},
|
|
353
|
+
{
|
|
354
|
+
"name": "create-click-outside",
|
|
355
|
+
"title": "createClickOutside",
|
|
356
|
+
"description": "SolidJS reactive primitive for detecting click and pointer interactions outside target elements",
|
|
357
|
+
"type": "registry:hook",
|
|
358
|
+
"dependencies": [
|
|
359
|
+
"@nikala-ui/hooks"
|
|
360
|
+
]
|
|
361
|
+
},
|
|
362
|
+
{
|
|
363
|
+
"name": "create-clipboard",
|
|
364
|
+
"title": "createClipboard",
|
|
365
|
+
"description": "SolidJS reactive primitive for copying text to clipboard with automatic status reset",
|
|
366
|
+
"type": "registry:hook",
|
|
367
|
+
"dependencies": [
|
|
368
|
+
"@nikala-ui/hooks"
|
|
369
|
+
]
|
|
370
|
+
},
|
|
371
|
+
{
|
|
372
|
+
"name": "create-keybindings",
|
|
373
|
+
"title": "createKeybindings",
|
|
374
|
+
"description": "SolidJS reactive primitives for listening to keyboard shortcuts, key combinations, and Escape key presses",
|
|
375
|
+
"type": "registry:hook",
|
|
376
|
+
"dependencies": [
|
|
377
|
+
"@nikala-ui/hooks"
|
|
378
|
+
]
|
|
379
|
+
},
|
|
380
|
+
{
|
|
381
|
+
"name": "create-lock-scroll",
|
|
382
|
+
"title": "createLockScroll",
|
|
383
|
+
"description": "SolidJS reactive primitive for locking body or container scrolling when overlays are active",
|
|
384
|
+
"type": "registry:hook",
|
|
385
|
+
"dependencies": [
|
|
386
|
+
"@nikala-ui/hooks"
|
|
387
|
+
]
|
|
388
|
+
},
|
|
389
|
+
{
|
|
390
|
+
"name": "create-disclosure",
|
|
391
|
+
"title": "createDisclosure",
|
|
392
|
+
"description": "SolidJS reactive primitive for managing boolean open/close disclosure state with helper controls",
|
|
393
|
+
"type": "registry:hook",
|
|
394
|
+
"dependencies": [
|
|
395
|
+
"@nikala-ui/hooks"
|
|
396
|
+
]
|
|
397
|
+
},
|
|
398
|
+
{
|
|
399
|
+
"name": "create-media-query",
|
|
400
|
+
"title": "createMediaQuery",
|
|
401
|
+
"description": "SolidJS reactive primitives for tracking CSS media queries and responsive Tailwind breakpoints",
|
|
402
|
+
"type": "registry:hook",
|
|
403
|
+
"dependencies": [
|
|
404
|
+
"@nikala-ui/hooks"
|
|
405
|
+
]
|
|
406
|
+
},
|
|
407
|
+
{
|
|
408
|
+
"name": "create-debounce",
|
|
409
|
+
"title": "createDebounce",
|
|
410
|
+
"description": "SolidJS reactive primitives for debouncing and throttling rate-limited function execution",
|
|
411
|
+
"type": "registry:hook",
|
|
412
|
+
"dependencies": [
|
|
413
|
+
"@nikala-ui/hooks"
|
|
414
|
+
]
|
|
415
|
+
},
|
|
416
|
+
{
|
|
417
|
+
"name": "create-intersection-observer",
|
|
418
|
+
"title": "createIntersectionObserver",
|
|
419
|
+
"description": "SolidJS reactive primitives for observing element visibility and viewport intersection status",
|
|
420
|
+
"type": "registry:hook",
|
|
421
|
+
"dependencies": [
|
|
422
|
+
"@nikala-ui/hooks"
|
|
423
|
+
]
|
|
424
|
+
},
|
|
425
|
+
{
|
|
426
|
+
"name": "create-timer",
|
|
427
|
+
"title": "createTimer",
|
|
428
|
+
"description": "SolidJS reactive primitives for recurring interval ticks and formatted countdown timers",
|
|
429
|
+
"type": "registry:hook",
|
|
430
|
+
"dependencies": [
|
|
431
|
+
"@nikala-ui/hooks"
|
|
432
|
+
]
|
|
433
|
+
},
|
|
434
|
+
{
|
|
435
|
+
"name": "create-resize-observer",
|
|
436
|
+
"title": "createResizeObserver",
|
|
437
|
+
"description": "SolidJS reactive primitives for tracking element width and height dimensions dynamically",
|
|
438
|
+
"type": "registry:hook",
|
|
439
|
+
"dependencies": [
|
|
440
|
+
"@nikala-ui/hooks"
|
|
441
|
+
]
|
|
442
|
+
},
|
|
443
|
+
{
|
|
444
|
+
"name": "create-window-size",
|
|
445
|
+
"title": "createWindowSize",
|
|
446
|
+
"description": "SolidJS reactive primitive for tracking window viewport inner width and height",
|
|
447
|
+
"type": "registry:hook",
|
|
448
|
+
"dependencies": [
|
|
449
|
+
"@nikala-ui/hooks"
|
|
450
|
+
]
|
|
451
|
+
},
|
|
452
|
+
{
|
|
453
|
+
"name": "create-scroll-position",
|
|
454
|
+
"title": "createScrollPosition",
|
|
455
|
+
"description": "SolidJS reactive primitive for tracking scroll position, scroll direction, and container bounds",
|
|
456
|
+
"type": "registry:hook",
|
|
457
|
+
"dependencies": [
|
|
458
|
+
"@nikala-ui/hooks"
|
|
459
|
+
]
|
|
460
|
+
},
|
|
461
|
+
{
|
|
462
|
+
"name": "create-focus-trap",
|
|
463
|
+
"title": "createFocusTrap",
|
|
464
|
+
"description": "SolidJS reactive primitive for trapping keyboard focus inside target container element for accessibility",
|
|
465
|
+
"type": "registry:hook",
|
|
466
|
+
"dependencies": [
|
|
467
|
+
"@nikala-ui/hooks"
|
|
468
|
+
]
|
|
469
|
+
},
|
|
470
|
+
{
|
|
471
|
+
"name": "create-mouse-position",
|
|
472
|
+
"title": "createMousePosition",
|
|
473
|
+
"description": "SolidJS reactive primitive for tracking global and element-relative mouse pointer coordinates",
|
|
474
|
+
"type": "registry:hook",
|
|
475
|
+
"dependencies": [
|
|
476
|
+
"@nikala-ui/hooks"
|
|
477
|
+
]
|
|
478
|
+
},
|
|
479
|
+
{
|
|
480
|
+
"name": "create-long-press",
|
|
481
|
+
"title": "createLongPress",
|
|
482
|
+
"description": "SolidJS reactive primitive for detecting long press / hold touch and pointer interactions",
|
|
483
|
+
"type": "registry:hook",
|
|
484
|
+
"dependencies": [
|
|
485
|
+
"@nikala-ui/hooks"
|
|
486
|
+
]
|
|
487
|
+
},
|
|
488
|
+
{
|
|
489
|
+
"name": "create-hover",
|
|
490
|
+
"title": "createHover",
|
|
491
|
+
"description": "SolidJS reactive primitive for tracking element hover state with entrance and exit delays",
|
|
492
|
+
"type": "registry:hook",
|
|
493
|
+
"dependencies": [
|
|
494
|
+
"@nikala-ui/hooks"
|
|
495
|
+
]
|
|
496
|
+
},
|
|
497
|
+
{
|
|
498
|
+
"name": "create-storage",
|
|
499
|
+
"title": "createLocalStorage",
|
|
500
|
+
"description": "SolidJS reactive primitives for Web Storage state synchronization across components and browser tabs",
|
|
501
|
+
"type": "registry:hook",
|
|
502
|
+
"dependencies": [
|
|
503
|
+
"@nikala-ui/hooks"
|
|
504
|
+
]
|
|
505
|
+
},
|
|
506
|
+
{
|
|
507
|
+
"name": "create-previous",
|
|
508
|
+
"title": "createPrevious",
|
|
509
|
+
"description": "SolidJS reactive primitive for tracking previous value of a signal accessor",
|
|
510
|
+
"type": "registry:hook",
|
|
511
|
+
"dependencies": [
|
|
512
|
+
"@nikala-ui/hooks"
|
|
513
|
+
]
|
|
514
|
+
},
|
|
515
|
+
{
|
|
516
|
+
"name": "create-network-status",
|
|
517
|
+
"title": "createNetworkStatus",
|
|
518
|
+
"description": "SolidJS reactive primitives for tracking browser network connectivity and connection quality metrics",
|
|
519
|
+
"type": "registry:hook",
|
|
520
|
+
"dependencies": [
|
|
521
|
+
"@nikala-ui/hooks"
|
|
522
|
+
]
|
|
523
|
+
},
|
|
524
|
+
{
|
|
525
|
+
"name": "create-color-mode",
|
|
526
|
+
"title": "createColorMode",
|
|
527
|
+
"description": "SolidJS reactive primitive for managing dark/light themes and system preferences",
|
|
528
|
+
"type": "registry:hook",
|
|
529
|
+
"dependencies": [
|
|
530
|
+
"@nikala-ui/hooks"
|
|
531
|
+
]
|
|
532
|
+
},
|
|
533
|
+
{
|
|
534
|
+
"name": "create-form",
|
|
535
|
+
"title": "createForm",
|
|
536
|
+
"description": "SolidJS reactive primitive for form state management, field validation, errors, and submission",
|
|
537
|
+
"type": "registry:hook",
|
|
538
|
+
"dependencies": [
|
|
539
|
+
"@nikala-ui/hooks"
|
|
540
|
+
]
|
|
541
|
+
},
|
|
542
|
+
{
|
|
543
|
+
"name": "create-input-mask",
|
|
544
|
+
"title": "createInputMask",
|
|
545
|
+
"description": "SolidJS reactive primitive for input value masking (phone numbers, credit cards, dates)",
|
|
546
|
+
"type": "registry:hook",
|
|
547
|
+
"dependencies": [
|
|
548
|
+
"@nikala-ui/hooks"
|
|
549
|
+
]
|
|
550
|
+
},
|
|
551
|
+
{
|
|
552
|
+
"name": "create-idle",
|
|
553
|
+
"title": "createIdle",
|
|
554
|
+
"description": "SolidJS reactive primitive for detecting user inactivity with customizable timeout",
|
|
555
|
+
"type": "registry:hook",
|
|
556
|
+
"dependencies": [
|
|
557
|
+
"@nikala-ui/hooks"
|
|
558
|
+
]
|
|
559
|
+
},
|
|
560
|
+
{
|
|
561
|
+
"name": "create-active-element",
|
|
562
|
+
"title": "createActiveElement",
|
|
563
|
+
"description": "SolidJS reactive primitive for tracking the currently focused DOM element",
|
|
564
|
+
"type": "registry:hook",
|
|
565
|
+
"dependencies": [
|
|
566
|
+
"@nikala-ui/hooks"
|
|
567
|
+
]
|
|
568
|
+
},
|
|
569
|
+
{
|
|
570
|
+
"name": "create-infinite-scroll",
|
|
571
|
+
"title": "createInfiniteScroll",
|
|
572
|
+
"description": "SolidJS reactive primitive for dynamic infinite scrolling, auto-fetching pages, and scroll pagination",
|
|
573
|
+
"type": "registry:hook",
|
|
574
|
+
"dependencies": [
|
|
575
|
+
"@nikala-ui/hooks"
|
|
576
|
+
]
|
|
577
|
+
},
|
|
578
|
+
{
|
|
579
|
+
"name": "create-fullscreen",
|
|
580
|
+
"title": "createFullscreen",
|
|
581
|
+
"description": "SolidJS reactive primitive for requesting and monitoring element or document fullscreen status",
|
|
582
|
+
"type": "registry:hook",
|
|
583
|
+
"dependencies": [
|
|
584
|
+
"@nikala-ui/hooks"
|
|
585
|
+
]
|
|
586
|
+
},
|
|
587
|
+
{
|
|
588
|
+
"name": "create-audio",
|
|
589
|
+
"title": "createAudio & createVideo",
|
|
590
|
+
"description": "SolidJS reactive primitives for controlling HTML audio and video playback, duration, volume, and seeking",
|
|
591
|
+
"type": "registry:hook",
|
|
592
|
+
"dependencies": [
|
|
593
|
+
"@nikala-ui/hooks"
|
|
594
|
+
]
|
|
595
|
+
},
|
|
596
|
+
{
|
|
597
|
+
"name": "create-orientation",
|
|
598
|
+
"title": "createOrientation",
|
|
599
|
+
"description": "SolidJS reactive primitive for observing mobile and desktop screen orientation changes and rotation angles",
|
|
600
|
+
"type": "registry:hook",
|
|
601
|
+
"dependencies": [
|
|
602
|
+
"@nikala-ui/hooks"
|
|
603
|
+
]
|
|
604
|
+
},
|
|
605
|
+
{
|
|
606
|
+
"name": "create-undo-redo",
|
|
607
|
+
"title": "createUndoRedo",
|
|
608
|
+
"description": "SolidJS reactive primitive for undo/redo state history management, history stack tracking, and reverting actions",
|
|
609
|
+
"type": "registry:hook",
|
|
610
|
+
"dependencies": [
|
|
611
|
+
"@nikala-ui/hooks"
|
|
612
|
+
]
|
|
613
|
+
},
|
|
614
|
+
{
|
|
615
|
+
"name": "create-fetch",
|
|
616
|
+
"title": "createFetch",
|
|
617
|
+
"description": "SolidJS reactive primitive for HTTP REST API fetching, request loading states, error handling, and refetching",
|
|
618
|
+
"type": "registry:hook",
|
|
619
|
+
"dependencies": [
|
|
620
|
+
"@nikala-ui/hooks"
|
|
621
|
+
]
|
|
622
|
+
},
|
|
623
|
+
{
|
|
624
|
+
"name": "create-geolocation",
|
|
625
|
+
"title": "createGeolocation",
|
|
626
|
+
"description": "SolidJS reactive primitive for tracking browser Geolocation position, coordinates, speed, and GPS accuracy",
|
|
627
|
+
"type": "registry:hook",
|
|
628
|
+
"dependencies": [
|
|
629
|
+
"@nikala-ui/hooks"
|
|
630
|
+
]
|
|
631
|
+
},
|
|
632
|
+
{
|
|
633
|
+
"name": "create-permission",
|
|
634
|
+
"title": "createPermission",
|
|
635
|
+
"description": "SolidJS reactive primitive for querying and observing browser permission status changes",
|
|
636
|
+
"type": "registry:hook",
|
|
637
|
+
"dependencies": [
|
|
638
|
+
"@nikala-ui/hooks"
|
|
639
|
+
]
|
|
640
|
+
},
|
|
641
|
+
{
|
|
642
|
+
"name": "create-battery",
|
|
643
|
+
"title": "createBattery",
|
|
644
|
+
"description": "SolidJS reactive primitive for observing device battery status, charge level, and charging metrics",
|
|
645
|
+
"type": "registry:hook",
|
|
646
|
+
"dependencies": [
|
|
647
|
+
"@nikala-ui/hooks"
|
|
648
|
+
]
|
|
649
|
+
},
|
|
650
|
+
{
|
|
651
|
+
"name": "create-web-notification",
|
|
652
|
+
"title": "createWebNotification",
|
|
653
|
+
"description": "SolidJS reactive primitive for sending browser desktop notifications and managing notification permissions",
|
|
654
|
+
"type": "registry:hook",
|
|
655
|
+
"dependencies": [
|
|
656
|
+
"@nikala-ui/hooks"
|
|
657
|
+
]
|
|
658
|
+
},
|
|
659
|
+
{
|
|
660
|
+
"name": "create-websocket",
|
|
661
|
+
"title": "createWebSocket",
|
|
662
|
+
"description": "SolidJS reactive primitive for WebSocket client connections, auto-reconnection, and message passing",
|
|
663
|
+
"type": "registry:hook",
|
|
664
|
+
"dependencies": [
|
|
665
|
+
"@nikala-ui/hooks"
|
|
666
|
+
]
|
|
667
|
+
},
|
|
668
|
+
{
|
|
669
|
+
"name": "create-document-title",
|
|
670
|
+
"title": "createDocumentTitle",
|
|
671
|
+
"description": "SolidJS reactive primitive for managing document title dynamically",
|
|
672
|
+
"type": "registry:hook",
|
|
673
|
+
"dependencies": [
|
|
674
|
+
"@nikala-ui/hooks"
|
|
675
|
+
]
|
|
676
|
+
},
|
|
677
|
+
{
|
|
678
|
+
"name": "create-favicon",
|
|
679
|
+
"title": "createFavicon",
|
|
680
|
+
"description": "SolidJS reactive primitive for dynamically updating browser favicon element",
|
|
681
|
+
"type": "registry:hook",
|
|
682
|
+
"dependencies": [
|
|
683
|
+
"@nikala-ui/hooks"
|
|
684
|
+
]
|
|
685
|
+
},
|
|
686
|
+
{
|
|
687
|
+
"name": "create-event-source",
|
|
688
|
+
"title": "createEventSource",
|
|
689
|
+
"description": "SolidJS reactive primitive for subscribing to Server-Sent Events (SSE) streams",
|
|
690
|
+
"type": "registry:hook",
|
|
691
|
+
"dependencies": [
|
|
692
|
+
"@nikala-ui/hooks"
|
|
693
|
+
]
|
|
694
|
+
},
|
|
695
|
+
{
|
|
696
|
+
"name": "create-scroll-into-view",
|
|
697
|
+
"title": "createScrollIntoView",
|
|
698
|
+
"description": "SolidJS reactive primitive for scrolling a target element into view smooth or auto behavior",
|
|
699
|
+
"type": "registry:hook",
|
|
700
|
+
"dependencies": [
|
|
701
|
+
"@nikala-ui/hooks"
|
|
702
|
+
]
|
|
343
703
|
}
|
|
344
704
|
]
|
package/src/registry/index.ts
CHANGED
|
@@ -23,7 +23,7 @@ export interface RegistryItem {
|
|
|
23
23
|
/** Short summary describing the component */
|
|
24
24
|
description: string;
|
|
25
25
|
/** Component category type */
|
|
26
|
-
type: "registry:ui";
|
|
26
|
+
type: "registry:ui" | "registry:util" | "registry:hook";
|
|
27
27
|
/** Required NPM dependencies to be installed automatically (e.g., ["clsx", "tailwind-merge"]) */
|
|
28
28
|
dependencies?: string[];
|
|
29
29
|
/** Internal Nikala UI component dependencies required by this component (e.g., ["button"]) */
|
|
@@ -39,7 +39,7 @@ export interface RegistryIndexItem {
|
|
|
39
39
|
name: string;
|
|
40
40
|
title: string;
|
|
41
41
|
description: string;
|
|
42
|
-
type: "registry:ui";
|
|
42
|
+
type: "registry:ui" | "registry:util" | "registry:hook";
|
|
43
43
|
dependencies?: string[];
|
|
44
44
|
registryDependencies?: string[];
|
|
45
45
|
}
|
package/src/registry/metadata.ts
CHANGED
|
@@ -169,4 +169,210 @@ export const COMPONENT_METADATA: Record<string, ComponentMeta> = {
|
|
|
169
169
|
description: "Displays an indicator showing the completion progress of a task or media playback, built on Kobalte primitives.",
|
|
170
170
|
dependencies: ["clsx", "tailwind-merge", "@kobalte/core"],
|
|
171
171
|
},
|
|
172
|
+
};
|
|
173
|
+
|
|
174
|
+
/**
|
|
175
|
+
* Static metadata configuration for all registered Nikala UI primitives / hooks.
|
|
176
|
+
*/
|
|
177
|
+
export const HOOK_METADATA: Record<string, ComponentMeta> = {
|
|
178
|
+
"create-controllable-signal": {
|
|
179
|
+
title: "createControllableSignal",
|
|
180
|
+
description: "SolidJS reactive primitive supporting both controlled and uncontrolled state management",
|
|
181
|
+
dependencies: ["@nikala-ui/hooks"],
|
|
182
|
+
},
|
|
183
|
+
"create-click-outside": {
|
|
184
|
+
title: "createClickOutside",
|
|
185
|
+
description: "SolidJS reactive primitive for detecting click and pointer interactions outside target elements",
|
|
186
|
+
dependencies: ["@nikala-ui/hooks"],
|
|
187
|
+
},
|
|
188
|
+
"create-clipboard": {
|
|
189
|
+
title: "createClipboard",
|
|
190
|
+
description: "SolidJS reactive primitive for copying text to clipboard with automatic status reset",
|
|
191
|
+
dependencies: ["@nikala-ui/hooks"],
|
|
192
|
+
},
|
|
193
|
+
"create-keybindings": {
|
|
194
|
+
title: "createKeybindings",
|
|
195
|
+
description: "SolidJS reactive primitives for listening to keyboard shortcuts, key combinations, and Escape key presses",
|
|
196
|
+
dependencies: ["@nikala-ui/hooks"],
|
|
197
|
+
},
|
|
198
|
+
"create-lock-scroll": {
|
|
199
|
+
title: "createLockScroll",
|
|
200
|
+
description: "SolidJS reactive primitive for locking body or container scrolling when overlays are active",
|
|
201
|
+
dependencies: ["@nikala-ui/hooks"],
|
|
202
|
+
},
|
|
203
|
+
"create-disclosure": {
|
|
204
|
+
title: "createDisclosure",
|
|
205
|
+
description: "SolidJS reactive primitive for managing boolean open/close disclosure state with helper controls",
|
|
206
|
+
dependencies: ["@nikala-ui/hooks"],
|
|
207
|
+
},
|
|
208
|
+
"create-media-query": {
|
|
209
|
+
title: "createMediaQuery",
|
|
210
|
+
description: "SolidJS reactive primitives for tracking CSS media queries and responsive Tailwind breakpoints",
|
|
211
|
+
dependencies: ["@nikala-ui/hooks"],
|
|
212
|
+
},
|
|
213
|
+
"create-debounce": {
|
|
214
|
+
title: "createDebounce",
|
|
215
|
+
description: "SolidJS reactive primitives for debouncing and throttling rate-limited function execution",
|
|
216
|
+
dependencies: ["@nikala-ui/hooks"],
|
|
217
|
+
},
|
|
218
|
+
"create-intersection-observer": {
|
|
219
|
+
title: "createIntersectionObserver",
|
|
220
|
+
description: "SolidJS reactive primitives for observing element visibility and viewport intersection status",
|
|
221
|
+
dependencies: ["@nikala-ui/hooks"],
|
|
222
|
+
},
|
|
223
|
+
"create-timer": {
|
|
224
|
+
title: "createTimer",
|
|
225
|
+
description: "SolidJS reactive primitives for recurring interval ticks and formatted countdown timers",
|
|
226
|
+
dependencies: ["@nikala-ui/hooks"],
|
|
227
|
+
},
|
|
228
|
+
"create-resize-observer": {
|
|
229
|
+
title: "createResizeObserver",
|
|
230
|
+
description: "SolidJS reactive primitives for tracking element width and height dimensions dynamically",
|
|
231
|
+
dependencies: ["@nikala-ui/hooks"],
|
|
232
|
+
},
|
|
233
|
+
"create-window-size": {
|
|
234
|
+
title: "createWindowSize",
|
|
235
|
+
description: "SolidJS reactive primitive for tracking window viewport inner width and height",
|
|
236
|
+
dependencies: ["@nikala-ui/hooks"],
|
|
237
|
+
},
|
|
238
|
+
"create-scroll-position": {
|
|
239
|
+
title: "createScrollPosition",
|
|
240
|
+
description: "SolidJS reactive primitive for tracking scroll position, scroll direction, and container bounds",
|
|
241
|
+
dependencies: ["@nikala-ui/hooks"],
|
|
242
|
+
},
|
|
243
|
+
"create-focus-trap": {
|
|
244
|
+
title: "createFocusTrap",
|
|
245
|
+
description: "SolidJS reactive primitive for trapping keyboard focus inside target container element for accessibility",
|
|
246
|
+
dependencies: ["@nikala-ui/hooks"],
|
|
247
|
+
},
|
|
248
|
+
"create-mouse-position": {
|
|
249
|
+
title: "createMousePosition",
|
|
250
|
+
description: "SolidJS reactive primitive for tracking global and element-relative mouse pointer coordinates",
|
|
251
|
+
dependencies: ["@nikala-ui/hooks"],
|
|
252
|
+
},
|
|
253
|
+
"create-long-press": {
|
|
254
|
+
title: "createLongPress",
|
|
255
|
+
description: "SolidJS reactive primitive for detecting long press / hold touch and pointer interactions",
|
|
256
|
+
dependencies: ["@nikala-ui/hooks"],
|
|
257
|
+
},
|
|
258
|
+
"create-hover": {
|
|
259
|
+
title: "createHover",
|
|
260
|
+
description: "SolidJS reactive primitive for tracking element hover state with entrance and exit delays",
|
|
261
|
+
dependencies: ["@nikala-ui/hooks"],
|
|
262
|
+
},
|
|
263
|
+
"create-storage": {
|
|
264
|
+
title: "createLocalStorage",
|
|
265
|
+
description: "SolidJS reactive primitives for Web Storage state synchronization across components and browser tabs",
|
|
266
|
+
dependencies: ["@nikala-ui/hooks"],
|
|
267
|
+
},
|
|
268
|
+
"create-previous": {
|
|
269
|
+
title: "createPrevious",
|
|
270
|
+
description: "SolidJS reactive primitive for tracking previous value of a signal accessor",
|
|
271
|
+
dependencies: ["@nikala-ui/hooks"],
|
|
272
|
+
},
|
|
273
|
+
"create-network-status": {
|
|
274
|
+
title: "createNetworkStatus",
|
|
275
|
+
description: "SolidJS reactive primitives for tracking browser network connectivity and connection quality metrics",
|
|
276
|
+
dependencies: ["@nikala-ui/hooks"],
|
|
277
|
+
},
|
|
278
|
+
"create-color-mode": {
|
|
279
|
+
title: "createColorMode",
|
|
280
|
+
description: "SolidJS reactive primitive for managing dark/light themes and system preferences",
|
|
281
|
+
dependencies: ["@nikala-ui/hooks"],
|
|
282
|
+
},
|
|
283
|
+
"create-form": {
|
|
284
|
+
title: "createForm",
|
|
285
|
+
description: "SolidJS reactive primitive for form state management, field validation, errors, and submission",
|
|
286
|
+
dependencies: ["@nikala-ui/hooks"],
|
|
287
|
+
},
|
|
288
|
+
"create-input-mask": {
|
|
289
|
+
title: "createInputMask",
|
|
290
|
+
description: "SolidJS reactive primitive for input value masking (phone numbers, credit cards, dates)",
|
|
291
|
+
dependencies: ["@nikala-ui/hooks"],
|
|
292
|
+
},
|
|
293
|
+
"create-idle": {
|
|
294
|
+
title: "createIdle",
|
|
295
|
+
description: "SolidJS reactive primitive for detecting user inactivity with customizable timeout",
|
|
296
|
+
dependencies: ["@nikala-ui/hooks"],
|
|
297
|
+
},
|
|
298
|
+
"create-active-element": {
|
|
299
|
+
title: "createActiveElement",
|
|
300
|
+
description: "SolidJS reactive primitive for tracking the currently focused DOM element",
|
|
301
|
+
dependencies: ["@nikala-ui/hooks"],
|
|
302
|
+
},
|
|
303
|
+
"create-infinite-scroll": {
|
|
304
|
+
title: "createInfiniteScroll",
|
|
305
|
+
description: "SolidJS reactive primitive for dynamic infinite scrolling, auto-fetching pages, and scroll pagination",
|
|
306
|
+
dependencies: ["@nikala-ui/hooks"],
|
|
307
|
+
},
|
|
308
|
+
"create-fullscreen": {
|
|
309
|
+
title: "createFullscreen",
|
|
310
|
+
description: "SolidJS reactive primitive for requesting and monitoring element or document fullscreen status",
|
|
311
|
+
dependencies: ["@nikala-ui/hooks"],
|
|
312
|
+
},
|
|
313
|
+
"create-audio": {
|
|
314
|
+
title: "createAudio & createVideo",
|
|
315
|
+
description: "SolidJS reactive primitives for controlling HTML audio and video playback, duration, volume, and seeking",
|
|
316
|
+
dependencies: ["@nikala-ui/hooks"],
|
|
317
|
+
},
|
|
318
|
+
"create-orientation": {
|
|
319
|
+
title: "createOrientation",
|
|
320
|
+
description: "SolidJS reactive primitive for observing mobile and desktop screen orientation changes and rotation angles",
|
|
321
|
+
dependencies: ["@nikala-ui/hooks"],
|
|
322
|
+
},
|
|
323
|
+
"create-undo-redo": {
|
|
324
|
+
title: "createUndoRedo",
|
|
325
|
+
description: "SolidJS reactive primitive for undo/redo state history management, history stack tracking, and reverting actions",
|
|
326
|
+
dependencies: ["@nikala-ui/hooks"],
|
|
327
|
+
},
|
|
328
|
+
"create-fetch": {
|
|
329
|
+
title: "createFetch",
|
|
330
|
+
description: "SolidJS reactive primitive for HTTP REST API fetching, request loading states, error handling, and refetching",
|
|
331
|
+
dependencies: ["@nikala-ui/hooks"],
|
|
332
|
+
},
|
|
333
|
+
"create-geolocation": {
|
|
334
|
+
title: "createGeolocation",
|
|
335
|
+
description: "SolidJS reactive primitive for tracking browser Geolocation position, coordinates, speed, and GPS accuracy",
|
|
336
|
+
dependencies: ["@nikala-ui/hooks"],
|
|
337
|
+
},
|
|
338
|
+
"create-permission": {
|
|
339
|
+
title: "createPermission",
|
|
340
|
+
description: "SolidJS reactive primitive for querying and observing browser permission status changes",
|
|
341
|
+
dependencies: ["@nikala-ui/hooks"],
|
|
342
|
+
},
|
|
343
|
+
"create-battery": {
|
|
344
|
+
title: "createBattery",
|
|
345
|
+
description: "SolidJS reactive primitive for observing device battery status, charge level, and charging metrics",
|
|
346
|
+
dependencies: ["@nikala-ui/hooks"],
|
|
347
|
+
},
|
|
348
|
+
"create-web-notification": {
|
|
349
|
+
title: "createWebNotification",
|
|
350
|
+
description: "SolidJS reactive primitive for sending browser desktop notifications and managing notification permissions",
|
|
351
|
+
dependencies: ["@nikala-ui/hooks"],
|
|
352
|
+
},
|
|
353
|
+
"create-websocket": {
|
|
354
|
+
title: "createWebSocket",
|
|
355
|
+
description: "SolidJS reactive primitive for WebSocket client connections, auto-reconnection, and message passing",
|
|
356
|
+
dependencies: ["@nikala-ui/hooks"],
|
|
357
|
+
},
|
|
358
|
+
"create-document-title": {
|
|
359
|
+
title: "createDocumentTitle",
|
|
360
|
+
description: "SolidJS reactive primitive for managing document title dynamically",
|
|
361
|
+
dependencies: ["@nikala-ui/hooks"],
|
|
362
|
+
},
|
|
363
|
+
"create-favicon": {
|
|
364
|
+
title: "createFavicon",
|
|
365
|
+
description: "SolidJS reactive primitive for dynamically updating browser favicon element",
|
|
366
|
+
dependencies: ["@nikala-ui/hooks"],
|
|
367
|
+
},
|
|
368
|
+
"create-event-source": {
|
|
369
|
+
title: "createEventSource",
|
|
370
|
+
description: "SolidJS reactive primitive for subscribing to Server-Sent Events (SSE) streams",
|
|
371
|
+
dependencies: ["@nikala-ui/hooks"],
|
|
372
|
+
},
|
|
373
|
+
"create-scroll-into-view": {
|
|
374
|
+
title: "createScrollIntoView",
|
|
375
|
+
description: "SolidJS reactive primitive for scrolling a target element into view smooth or auto behavior",
|
|
376
|
+
dependencies: ["@nikala-ui/hooks"],
|
|
377
|
+
},
|
|
172
378
|
};
|