@askrjs/askr 0.0.8 → 0.0.10
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/chunk-37RC6ZT3.js +1 -0
- package/dist/chunk-4RTKQ7SC.js +1 -0
- package/dist/chunk-534P7OMI.js +2 -0
- package/dist/chunk-62D2TNHX.js +1 -0
- package/dist/chunk-CI6AOGB5.js +1 -0
- package/dist/chunk-D2JSJKCW.js +1 -0
- package/dist/chunk-DPHQ4JD6.js +1 -0
- package/dist/chunk-FFSNBDHN.js +1 -0
- package/dist/chunk-JJDSOK6C.js +1 -0
- package/dist/chunk-LOSY3JCR.js +1 -0
- package/dist/chunk-OQMK7H2R.js +1 -0
- package/dist/chunk-Q7GRUZHR.js +1 -0
- package/dist/chunk-XKFPM4SY.js +2 -0
- package/dist/chunk-Y3Q3LOFT.js +1 -0
- package/dist/chunk-YRY4OLQF.js +1 -0
- package/dist/{component-DHAn9JxU.d.ts → component-mtwBWhUr.d.ts} +1 -1
- package/dist/for/index.d.ts +61 -0
- package/dist/for/index.js +1 -0
- package/dist/foundations/core.d.ts +449 -0
- package/dist/foundations/core.js +1 -0
- package/dist/foundations/index.d.ts +4 -372
- package/dist/foundations/index.js +1 -1073
- package/dist/foundations/structures.d.ts +223 -0
- package/dist/foundations/structures.js +1 -0
- package/dist/fx/index.js +1 -636
- package/dist/index.d.ts +2 -2
- package/dist/index.js +1 -3955
- package/dist/jsx-dev-runtime.js +1 -17
- package/dist/jsx-runtime.js +1 -23
- package/dist/logger-MPMIVXAP.js +1 -0
- package/dist/main-EPE35NMW.js +65 -0
- package/dist/navigate-6CC6IXXF.js +1 -0
- package/dist/resources/index.d.ts +1 -1
- package/dist/resources/index.js +1 -792
- package/dist/route-4QZ3RYN5.js +1 -0
- package/dist/router/index.d.ts +5 -0
- package/dist/router/index.js +1 -3194
- package/dist/ssr/index.js +1 -3935
- package/dist/vite/index.js +1 -2306
- package/package.json +19 -5
- package/dist/foundations/index.js.map +0 -1
- package/dist/fx/index.js.map +0 -1
- package/dist/index.js.map +0 -1
- package/dist/jsx-dev-runtime.js.map +0 -1
- package/dist/jsx-runtime.js.map +0 -1
- package/dist/resources/index.js.map +0 -1
- package/dist/router/index.js.map +0 -1
- package/dist/ssr/index.js.map +0 -1
- package/dist/vite/index.js.map +0 -1
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export{c as _lockRouteRegistrationForTests,d as _unlockRouteRegistrationForTests,i as clearRoutes,k as getLoadedNamespaces,g as getNamespaceRoutes,f as getRoutes,b as lockRouteRegistration,j as registerRoute,l as resolveRoute,e as route,a as setServerLocation,h as unloadNamespace}from'./chunk-XKFPM4SY.js';import'./chunk-D2JSJKCW.js';import'./chunk-534P7OMI.js';import'./chunk-JJDSOK6C.js';import'./chunk-OQMK7H2R.js';import'./chunk-37RC6ZT3.js';import'./chunk-62D2TNHX.js';
|
package/dist/router/index.d.ts
CHANGED
|
@@ -46,6 +46,11 @@ interface LinkProps {
|
|
|
46
46
|
* - Ctrl/Cmd+click (opens in new tab)
|
|
47
47
|
* - Shift+click (opens in new window)
|
|
48
48
|
* - Right-click context menu
|
|
49
|
+
*
|
|
50
|
+
* Uses applyInteractionPolicy to enforce pit-of-success principles:
|
|
51
|
+
* - Interaction behavior centralized in foundations
|
|
52
|
+
* - Keyboard handling (Enter/Space) automatic
|
|
53
|
+
* - Composable via mergeProps
|
|
49
54
|
*/
|
|
50
55
|
declare function Link({ href, children }: LinkProps): unknown;
|
|
51
56
|
|