mates-devtools 0.1.0-beta.1
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/mates-devtools.es.js +3464 -0
- package/dist/mates-devtools.umd.js +650 -0
- package/dist/types/Mates-DevTools/src/MatesDevTools.d.ts +5 -0
- package/dist/types/Mates-DevTools/src/MatesDevTools.d.ts.map +1 -0
- package/dist/types/Mates-DevTools/src/MatesDevToolsComponent.d.ts +24 -0
- package/dist/types/Mates-DevTools/src/MatesDevToolsComponent.d.ts.map +1 -0
- package/dist/types/Mates-DevTools/src/components/AtomsViewer.d.ts +2 -0
- package/dist/types/Mates-DevTools/src/components/AtomsViewer.d.ts.map +1 -0
- package/dist/types/Mates-DevTools/src/components/ComponentInspector.d.ts +27 -0
- package/dist/types/Mates-DevTools/src/components/ComponentInspector.d.ts.map +1 -0
- package/dist/types/Mates-DevTools/src/components/ComponentList.d.ts +11 -0
- package/dist/types/Mates-DevTools/src/components/ComponentList.d.ts.map +1 -0
- package/dist/types/Mates-DevTools/src/components/ComponentTree.d.ts +9 -0
- package/dist/types/Mates-DevTools/src/components/ComponentTree.d.ts.map +1 -0
- package/dist/types/Mates-DevTools/src/components/Header.d.ts +10 -0
- package/dist/types/Mates-DevTools/src/components/Header.d.ts.map +1 -0
- package/dist/types/Mates-DevTools/src/components/Highlight.d.ts +6 -0
- package/dist/types/Mates-DevTools/src/components/Highlight.d.ts.map +1 -0
- package/dist/types/Mates-DevTools/src/components/HooksViewer.d.ts +7 -0
- package/dist/types/Mates-DevTools/src/components/HooksViewer.d.ts.map +1 -0
- package/dist/types/Mates-DevTools/src/components/LogsViewer.d.ts +6 -0
- package/dist/types/Mates-DevTools/src/components/LogsViewer.d.ts.map +1 -0
- package/dist/types/Mates-DevTools/src/components/PerfViewer.d.ts +7 -0
- package/dist/types/Mates-DevTools/src/components/PerfViewer.d.ts.map +1 -0
- package/dist/types/Mates-DevTools/src/components/PropsViewer.d.ts +2 -0
- package/dist/types/Mates-DevTools/src/components/PropsViewer.d.ts.map +1 -0
- package/dist/types/Mates-DevTools/src/components/ScopesViewer.d.ts +2 -0
- package/dist/types/Mates-DevTools/src/components/ScopesViewer.d.ts.map +1 -0
- package/dist/types/Mates-DevTools/src/components/TimerLogger.d.ts +5 -0
- package/dist/types/Mates-DevTools/src/components/TimerLogger.d.ts.map +1 -0
- package/dist/types/Mates-DevTools/src/components/UseStateViewer.d.ts +12 -0
- package/dist/types/Mates-DevTools/src/components/UseStateViewer.d.ts.map +1 -0
- package/dist/types/Mates-DevTools/src/components/ValueTree.d.ts +19 -0
- package/dist/types/Mates-DevTools/src/components/ValueTree.d.ts.map +1 -0
- package/dist/types/Mates-DevTools/src/index.d.ts +23 -0
- package/dist/types/Mates-DevTools/src/index.d.ts.map +1 -0
- package/dist/types/Mates-DevTools/src/interceptTimers.d.ts +11 -0
- package/dist/types/Mates-DevTools/src/interceptTimers.d.ts.map +1 -0
- package/dist/types/Mates-DevTools/src/logStore.d.ts +38 -0
- package/dist/types/Mates-DevTools/src/logStore.d.ts.map +1 -0
- package/dist/types/Mates-DevTools/src/perfStore.d.ts +36 -0
- package/dist/types/Mates-DevTools/src/perfStore.d.ts.map +1 -0
- package/dist/types/Mates-DevTools/src/registry.d.ts +68 -0
- package/dist/types/Mates-DevTools/src/registry.d.ts.map +1 -0
- package/dist/types/Mates-DevTools/src/styles.d.ts +833 -0
- package/dist/types/Mates-DevTools/src/styles.d.ts.map +1 -0
- package/dist/types/Mates-DevTools/src/types.d.ts +19 -0
- package/dist/types/Mates-DevTools/src/types.d.ts.map +1 -0
- package/dist/types/lib/Directives/$.d.ts +371 -0
- package/dist/types/lib/Directives/$.d.ts.map +1 -0
- package/dist/types/lib/Directives/animatedConditional.d.ts +67 -0
- package/dist/types/lib/Directives/animatedConditional.d.ts.map +1 -0
- package/dist/types/lib/Directives/animationClasses.d.ts +50 -0
- package/dist/types/lib/Directives/animationClasses.d.ts.map +1 -0
- package/dist/types/lib/Directives/attrDirective.d.ts +69 -0
- package/dist/types/lib/Directives/attrDirective.d.ts.map +1 -0
- package/dist/types/lib/Directives/classesDirective.d.ts +79 -0
- package/dist/types/lib/Directives/classesDirective.d.ts.map +1 -0
- package/dist/types/lib/Directives/eleHook.d.ts +84 -0
- package/dist/types/lib/Directives/eleHook.d.ts.map +1 -0
- package/dist/types/lib/Directives/eventBinding.d.ts +29 -0
- package/dist/types/lib/Directives/eventBinding.d.ts.map +1 -0
- package/dist/types/lib/Directives/htmlHook.d.ts +101 -0
- package/dist/types/lib/Directives/htmlHook.d.ts.map +1 -0
- package/dist/types/lib/Directives/index.d.ts +18 -0
- package/dist/types/lib/Directives/index.d.ts.map +1 -0
- package/dist/types/lib/Directives/intersectDirective.d.ts +67 -0
- package/dist/types/lib/Directives/intersectDirective.d.ts.map +1 -0
- package/dist/types/lib/Directives/lazyLoadDirective.d.ts +66 -0
- package/dist/types/lib/Directives/lazyLoadDirective.d.ts.map +1 -0
- package/dist/types/lib/Directives/lifecycleDirectives.d.ts +56 -0
- package/dist/types/lib/Directives/lifecycleDirectives.d.ts.map +1 -0
- package/dist/types/lib/Directives/masonryGrid.d.ts +114 -0
- package/dist/types/lib/Directives/masonryGrid.d.ts.map +1 -0
- package/dist/types/lib/Directives/memoTemplate.d.ts +94 -0
- package/dist/types/lib/Directives/memoTemplate.d.ts.map +1 -0
- package/dist/types/lib/Directives/onDirective.d.ts +71 -0
- package/dist/types/lib/Directives/onDirective.d.ts.map +1 -0
- package/dist/types/lib/Directives/onParentDirective.d.ts +34 -0
- package/dist/types/lib/Directives/onParentDirective.d.ts.map +1 -0
- package/dist/types/lib/Directives/renderSwitch.d.ts +55 -0
- package/dist/types/lib/Directives/renderSwitch.d.ts.map +1 -0
- package/dist/types/lib/Directives/resolveAttrValue.d.ts +35 -0
- package/dist/types/lib/Directives/resolveAttrValue.d.ts.map +1 -0
- package/dist/types/lib/Directives/styleDirective.d.ts +81 -0
- package/dist/types/lib/Directives/styleDirective.d.ts.map +1 -0
- package/dist/types/lib/Directives/timerDirective.d.ts +52 -0
- package/dist/types/lib/Directives/timerDirective.d.ts.map +1 -0
- package/dist/types/lib/Directives/virtualHelpers.d.ts +10 -0
- package/dist/types/lib/Directives/virtualHelpers.d.ts.map +1 -0
- package/dist/types/lib/Fetch/ErrorTypes.d.ts +74 -0
- package/dist/types/lib/Fetch/ErrorTypes.d.ts.map +1 -0
- package/dist/types/lib/Fetch/Fetch.d.ts +168 -0
- package/dist/types/lib/Fetch/Fetch.d.ts.map +1 -0
- package/dist/types/lib/Fetch/index.d.ts +3 -0
- package/dist/types/lib/Fetch/index.d.ts.map +1 -0
- package/dist/types/lib/Mutables/Extended Atoms/cacheAtom.d.ts +156 -0
- package/dist/types/lib/Mutables/Extended Atoms/cacheAtom.d.ts.map +1 -0
- package/dist/types/lib/Mutables/Extended Atoms/index.d.ts +4 -0
- package/dist/types/lib/Mutables/Extended Atoms/index.d.ts.map +1 -0
- package/dist/types/lib/Mutables/Extended Atoms/paginationAtom.d.ts +32 -0
- package/dist/types/lib/Mutables/Extended Atoms/paginationAtom.d.ts.map +1 -0
- package/dist/types/lib/Mutables/Extended Atoms/themeAtom.d.ts +59 -0
- package/dist/types/lib/Mutables/Extended Atoms/themeAtom.d.ts.map +1 -0
- package/dist/types/lib/Mutables/atom/atom.d.ts +148 -0
- package/dist/types/lib/Mutables/atom/atom.d.ts.map +1 -0
- package/dist/types/lib/Mutables/atom/createTimedAtom.d.ts +43 -0
- package/dist/types/lib/Mutables/atom/createTimedAtom.d.ts.map +1 -0
- package/dist/types/lib/Mutables/atom/debouncedAtom.d.ts +37 -0
- package/dist/types/lib/Mutables/atom/debouncedAtom.d.ts.map +1 -0
- package/dist/types/lib/Mutables/atom/index.d.ts +10 -0
- package/dist/types/lib/Mutables/atom/index.d.ts.map +1 -0
- package/dist/types/lib/Mutables/atom/mapAtom.d.ts +105 -0
- package/dist/types/lib/Mutables/atom/mapAtom.d.ts.map +1 -0
- package/dist/types/lib/Mutables/atom/setAtom.d.ts +107 -0
- package/dist/types/lib/Mutables/atom/setAtom.d.ts.map +1 -0
- package/dist/types/lib/Mutables/atom/storageAtom.d.ts +44 -0
- package/dist/types/lib/Mutables/atom/storageAtom.d.ts.map +1 -0
- package/dist/types/lib/Mutables/atom/throttledAtom.d.ts +37 -0
- package/dist/types/lib/Mutables/atom/throttledAtom.d.ts.map +1 -0
- package/dist/types/lib/Mutables/atom/titleAtom.d.ts +20 -0
- package/dist/types/lib/Mutables/atom/titleAtom.d.ts.map +1 -0
- package/dist/types/lib/Mutables/effect/effect.d.ts +31 -0
- package/dist/types/lib/Mutables/effect/effect.d.ts.map +1 -0
- package/dist/types/lib/Mutables/effect/index.d.ts +2 -0
- package/dist/types/lib/Mutables/effect/index.d.ts.map +1 -0
- package/dist/types/lib/Mutables/events/events.d.ts +123 -0
- package/dist/types/lib/Mutables/events/events.d.ts.map +1 -0
- package/dist/types/lib/Mutables/events/index.d.ts +2 -0
- package/dist/types/lib/Mutables/events/index.d.ts.map +1 -0
- package/dist/types/lib/Mutables/events/xTabEvent.d.ts +61 -0
- package/dist/types/lib/Mutables/events/xTabEvent.d.ts.map +1 -0
- package/dist/types/lib/Mutables/form/formAtom.d.ts +56 -0
- package/dist/types/lib/Mutables/form/formAtom.d.ts.map +1 -0
- package/dist/types/lib/Mutables/form/index.d.ts +5 -0
- package/dist/types/lib/Mutables/form/index.d.ts.map +1 -0
- package/dist/types/lib/Mutables/form/transformers.d.ts +4 -0
- package/dist/types/lib/Mutables/form/transformers.d.ts.map +1 -0
- package/dist/types/lib/Mutables/form/validateAll.d.ts +40 -0
- package/dist/types/lib/Mutables/form/validateAll.d.ts.map +1 -0
- package/dist/types/lib/Mutables/form/validators.d.ts +61 -0
- package/dist/types/lib/Mutables/form/validators.d.ts.map +1 -0
- package/dist/types/lib/Mutables/index.d.ts +13 -0
- package/dist/types/lib/Mutables/index.d.ts.map +1 -0
- package/dist/types/lib/Mutables/memo/index.d.ts +2 -0
- package/dist/types/lib/Mutables/memo/index.d.ts.map +1 -0
- package/dist/types/lib/Mutables/memo/memo.d.ts +47 -0
- package/dist/types/lib/Mutables/memo/memo.d.ts.map +1 -0
- package/dist/types/lib/Mutables/reactiveRunner/index.d.ts +4 -0
- package/dist/types/lib/Mutables/reactiveRunner/index.d.ts.map +1 -0
- package/dist/types/lib/Mutables/reactiveRunner/reactiveRunner.d.ts +56 -0
- package/dist/types/lib/Mutables/reactiveRunner/reactiveRunner.d.ts.map +1 -0
- package/dist/types/lib/Mutables/reactiveRunner/trackAndSubscribe.d.ts +6 -0
- package/dist/types/lib/Mutables/reactiveRunner/trackAndSubscribe.d.ts.map +1 -0
- package/dist/types/lib/Mutables/reactiveRunner/validateReactiveFunction.d.ts +6 -0
- package/dist/types/lib/Mutables/reactiveRunner/validateReactiveFunction.d.ts.map +1 -0
- package/dist/types/lib/Mutables/ref/index.d.ts +2 -0
- package/dist/types/lib/Mutables/ref/index.d.ts.map +1 -0
- package/dist/types/lib/Mutables/ref/ref.d.ts +74 -0
- package/dist/types/lib/Mutables/ref/ref.d.ts.map +1 -0
- package/dist/types/lib/Mutables/scope/index.d.ts +2 -0
- package/dist/types/lib/Mutables/scope/index.d.ts.map +1 -0
- package/dist/types/lib/Mutables/scope/scope.d.ts +60 -0
- package/dist/types/lib/Mutables/scope/scope.d.ts.map +1 -0
- package/dist/types/lib/Mutables/store/index.d.ts +2 -0
- package/dist/types/lib/Mutables/store/index.d.ts.map +1 -0
- package/dist/types/lib/Mutables/store/store.d.ts +73 -0
- package/dist/types/lib/Mutables/store/store.d.ts.map +1 -0
- package/dist/types/lib/Mutables/useState/index.d.ts +2 -0
- package/dist/types/lib/Mutables/useState/index.d.ts.map +1 -0
- package/dist/types/lib/Mutables/useState/useState.d.ts +54 -0
- package/dist/types/lib/Mutables/useState/useState.d.ts.map +1 -0
- package/dist/types/lib/Mutables/useStore/hostContext.d.ts +13 -0
- package/dist/types/lib/Mutables/useStore/hostContext.d.ts.map +1 -0
- package/dist/types/lib/Mutables/useStore/index.d.ts +9 -0
- package/dist/types/lib/Mutables/useStore/index.d.ts.map +1 -0
- package/dist/types/lib/Mutables/useStore/lifecycle.d.ts +94 -0
- package/dist/types/lib/Mutables/useStore/lifecycle.d.ts.map +1 -0
- package/dist/types/lib/Mutables/useStore/onError.d.ts +21 -0
- package/dist/types/lib/Mutables/useStore/onError.d.ts.map +1 -0
- package/dist/types/lib/Mutables/useStore/onReferenceChange.d.ts +2 -0
- package/dist/types/lib/Mutables/useStore/onReferenceChange.d.ts.map +1 -0
- package/dist/types/lib/Mutables/useStore/safetyCheck.d.ts +2 -0
- package/dist/types/lib/Mutables/useStore/safetyCheck.d.ts.map +1 -0
- package/dist/types/lib/Mutables/useStore/setter.d.ts +52 -0
- package/dist/types/lib/Mutables/useStore/setter.d.ts.map +1 -0
- package/dist/types/lib/Mutables/useStore/subscription.d.ts +50 -0
- package/dist/types/lib/Mutables/useStore/subscription.d.ts.map +1 -0
- package/dist/types/lib/Mutables/useStore/useContext.d.ts +3 -0
- package/dist/types/lib/Mutables/useStore/useContext.d.ts.map +1 -0
- package/dist/types/lib/Mutables/useStore/useStore.d.ts +7 -0
- package/dist/types/lib/Mutables/useStore/useStore.d.ts.map +1 -0
- package/dist/types/lib/Router/Router.d.ts +54 -0
- package/dist/types/lib/Router/Router.d.ts.map +1 -0
- package/dist/types/lib/Router/animatedRouter.d.ts +48 -0
- package/dist/types/lib/Router/animatedRouter.d.ts.map +1 -0
- package/dist/types/lib/Router/buildPath.d.ts +20 -0
- package/dist/types/lib/Router/buildPath.d.ts.map +1 -0
- package/dist/types/lib/Router/hashAtom.d.ts +12 -0
- package/dist/types/lib/Router/hashAtom.d.ts.map +1 -0
- package/dist/types/lib/Router/index.d.ts +11 -0
- package/dist/types/lib/Router/index.d.ts.map +1 -0
- package/dist/types/lib/Router/isPathMatching.d.ts +12 -0
- package/dist/types/lib/Router/isPathMatching.d.ts.map +1 -0
- package/dist/types/lib/Router/location.d.ts +74 -0
- package/dist/types/lib/Router/location.d.ts.map +1 -0
- package/dist/types/lib/Router/navigateTo.d.ts +31 -0
- package/dist/types/lib/Router/navigateTo.d.ts.map +1 -0
- package/dist/types/lib/Router/navigationLock.d.ts +50 -0
- package/dist/types/lib/Router/navigationLock.d.ts.map +1 -0
- package/dist/types/lib/Router/pathAtom.d.ts +42 -0
- package/dist/types/lib/Router/pathAtom.d.ts.map +1 -0
- package/dist/types/lib/Router/pathResolver.d.ts +9 -0
- package/dist/types/lib/Router/pathResolver.d.ts.map +1 -0
- package/dist/types/lib/Router/qsAtom.d.ts +12 -0
- package/dist/types/lib/Router/qsAtom.d.ts.map +1 -0
- package/dist/types/lib/Template/index.d.ts +6 -0
- package/dist/types/lib/Template/index.d.ts.map +1 -0
- package/dist/types/lib/Template/scheduler.d.ts +59 -0
- package/dist/types/lib/Template/scheduler.d.ts.map +1 -0
- package/dist/types/lib/Template/x-x.d.ts +60 -0
- package/dist/types/lib/Template/x-x.d.ts.map +1 -0
- package/dist/types/lib/Template/x-x.types.d.ts +91 -0
- package/dist/types/lib/Template/x-x.types.d.ts.map +1 -0
- package/dist/types/lib/Template/x-x.utils.d.ts +15 -0
- package/dist/types/lib/Template/x-x.utils.d.ts.map +1 -0
- package/dist/types/lib/Template/x.d.ts +5 -0
- package/dist/types/lib/Template/x.d.ts.map +1 -0
- package/dist/types/lib/Template/xProvider.d.ts +2 -0
- package/dist/types/lib/Template/xProvider.d.ts.map +1 -0
- package/dist/types/lib/Timers/createManagedTimer.d.ts +12 -0
- package/dist/types/lib/Timers/createManagedTimer.d.ts.map +1 -0
- package/dist/types/lib/Timers/index.d.ts +4 -0
- package/dist/types/lib/Timers/index.d.ts.map +1 -0
- package/dist/types/lib/Timers/interval.d.ts +2 -0
- package/dist/types/lib/Timers/interval.d.ts.map +1 -0
- package/dist/types/lib/Timers/timeout.d.ts +2 -0
- package/dist/types/lib/Timers/timeout.d.ts.map +1 -0
- package/dist/types/lib/TrackState/componentStatus.d.ts +105 -0
- package/dist/types/lib/TrackState/componentStatus.d.ts.map +1 -0
- package/dist/types/lib/TrackState/readTracking.d.ts +20 -0
- package/dist/types/lib/TrackState/readTracking.d.ts.map +1 -0
- package/dist/types/lib/Utils/Context.d.ts +6 -0
- package/dist/types/lib/Utils/Context.d.ts.map +1 -0
- package/dist/types/lib/Utils/Date/calendar.d.ts +30 -0
- package/dist/types/lib/Utils/Date/calendar.d.ts.map +1 -0
- package/dist/types/lib/Utils/Date/core.d.ts +29 -0
- package/dist/types/lib/Utils/Date/core.d.ts.map +1 -0
- package/dist/types/lib/Utils/Date/date.d.ts +60 -0
- package/dist/types/lib/Utils/Date/date.d.ts.map +1 -0
- package/dist/types/lib/Utils/Date/index.d.ts +3 -0
- package/dist/types/lib/Utils/Date/index.d.ts.map +1 -0
- package/dist/types/lib/Utils/deepClone.d.ts +7 -0
- package/dist/types/lib/Utils/deepClone.d.ts.map +1 -0
- package/dist/types/lib/Utils/deepFreeze.d.ts +2 -0
- package/dist/types/lib/Utils/deepFreeze.d.ts.map +1 -0
- package/dist/types/lib/Utils/getAllProps.d.ts +2 -0
- package/dist/types/lib/Utils/getAllProps.d.ts.map +1 -0
- package/dist/types/lib/Utils/helpers.d.ts +13 -0
- package/dist/types/lib/Utils/helpers.d.ts.map +1 -0
- package/dist/types/lib/Utils/index.d.ts +13 -0
- package/dist/types/lib/Utils/index.d.ts.map +1 -0
- package/dist/types/lib/Utils/is.d.ts +12 -0
- package/dist/types/lib/Utils/is.d.ts.map +1 -0
- package/dist/types/lib/Utils/isDefinedAsGetter.d.ts +2 -0
- package/dist/types/lib/Utils/isDefinedAsGetter.d.ts.map +1 -0
- package/dist/types/lib/Utils/logger.d.ts +22 -0
- package/dist/types/lib/Utils/logger.d.ts.map +1 -0
- package/dist/types/lib/Utils/notificationManager.d.ts +67 -0
- package/dist/types/lib/Utils/notificationManager.d.ts.map +1 -0
- package/dist/types/lib/Utils/registerCleanup.d.ts +7 -0
- package/dist/types/lib/Utils/registerCleanup.d.ts.map +1 -0
- package/dist/types/lib/Utils/svgIcon.d.ts +95 -0
- package/dist/types/lib/Utils/svgIcon.d.ts.map +1 -0
- package/dist/types/lib/Utils/uuid.d.ts +7 -0
- package/dist/types/lib/Utils/uuid.d.ts.map +1 -0
- package/dist/types/lib/ZeroPromise/index.d.ts +2 -0
- package/dist/types/lib/ZeroPromise/index.d.ts.map +1 -0
- package/dist/types/lib/ZeroPromise/zero.d.ts +23 -0
- package/dist/types/lib/ZeroPromise/zero.d.ts.map +1 -0
- package/dist/types/lib/actions/action.d.ts +14 -0
- package/dist/types/lib/actions/action.d.ts.map +1 -0
- package/dist/types/lib/actions/animatePresets.d.ts +38 -0
- package/dist/types/lib/actions/animatePresets.d.ts.map +1 -0
- package/dist/types/lib/actions/animateSwap.d.ts +79 -0
- package/dist/types/lib/actions/animateSwap.d.ts.map +1 -0
- package/dist/types/lib/actions/animateTypes.d.ts +103 -0
- package/dist/types/lib/actions/animateTypes.d.ts.map +1 -0
- package/dist/types/lib/actions/asyncAction.d.ts +4 -0
- package/dist/types/lib/actions/asyncAction.d.ts.map +1 -0
- package/dist/types/lib/actions/asyncActionCache.d.ts +16 -0
- package/dist/types/lib/actions/asyncActionCache.d.ts.map +1 -0
- package/dist/types/lib/actions/asyncActionPolling.d.ts +14 -0
- package/dist/types/lib/actions/asyncActionPolling.d.ts.map +1 -0
- package/dist/types/lib/actions/asyncActionTypes.d.ts +74 -0
- package/dist/types/lib/actions/asyncActionTypes.d.ts.map +1 -0
- package/dist/types/lib/actions/createTimingFunction.d.ts +23 -0
- package/dist/types/lib/actions/createTimingFunction.d.ts.map +1 -0
- package/dist/types/lib/actions/debounce.d.ts +10 -0
- package/dist/types/lib/actions/debounce.d.ts.map +1 -0
- package/dist/types/lib/actions/index.d.ts +12 -0
- package/dist/types/lib/actions/index.d.ts.map +1 -0
- package/dist/types/lib/actions/paginatedAsyncAction.d.ts +121 -0
- package/dist/types/lib/actions/paginatedAsyncAction.d.ts.map +1 -0
- package/dist/types/lib/actions/taskAction.d.ts +105 -0
- package/dist/types/lib/actions/taskAction.d.ts.map +1 -0
- package/dist/types/lib/actions/throttle.d.ts +9 -0
- package/dist/types/lib/actions/throttle.d.ts.map +1 -0
- package/dist/types/lib/css-in-js/cl.d.ts +37 -0
- package/dist/types/lib/css-in-js/cl.d.ts.map +1 -0
- package/dist/types/lib/css-in-js/index.d.ts +7 -0
- package/dist/types/lib/css-in-js/index.d.ts.map +1 -0
- package/dist/types/lib/css-in-js/sanitize.d.ts +31 -0
- package/dist/types/lib/css-in-js/sanitize.d.ts.map +1 -0
- package/dist/types/lib/css-in-js/serialize.d.ts +98 -0
- package/dist/types/lib/css-in-js/serialize.d.ts.map +1 -0
- package/dist/types/lib/css-in-js/stylesheet.d.ts +188 -0
- package/dist/types/lib/css-in-js/stylesheet.d.ts.map +1 -0
- package/dist/types/lib/css-in-js/theme.d.ts +110 -0
- package/dist/types/lib/css-in-js/theme.d.ts.map +1 -0
- package/dist/types/lib/devtools/devtoolsHooks.d.ts +101 -0
- package/dist/types/lib/devtools/devtoolsHooks.d.ts.map +1 -0
- package/dist/types/lib/devtools/index.d.ts +2 -0
- package/dist/types/lib/devtools/index.d.ts.map +1 -0
- package/dist/types/lib/index.d.ts +46 -0
- package/dist/types/lib/index.d.ts.map +1 -0
- package/dist/types/lib/on/hooks.d.ts +319 -0
- package/dist/types/lib/on/hooks.d.ts.map +1 -0
- package/dist/types/lib/on/index.d.ts +3 -0
- package/dist/types/lib/on/index.d.ts.map +1 -0
- package/dist/types/lib/on/on.d.ts +16 -0
- package/dist/types/lib/on/on.d.ts.map +1 -0
- package/dist/types/lib/portals/dialog.d.ts +56 -0
- package/dist/types/lib/portals/dialog.d.ts.map +1 -0
- package/dist/types/lib/portals/index.d.ts +9 -0
- package/dist/types/lib/portals/index.d.ts.map +1 -0
- package/dist/types/lib/portals/popup.d.ts +37 -0
- package/dist/types/lib/portals/popup.d.ts.map +1 -0
- package/dist/types/lib/portals/portal.d.ts +57 -0
- package/dist/types/lib/portals/portal.d.ts.map +1 -0
- package/dist/types/lib/portals/tip.d.ts +38 -0
- package/dist/types/lib/portals/tip.d.ts.map +1 -0
- package/dist/types/lib/socket/index.d.ts +2 -0
- package/dist/types/lib/socket/index.d.ts.map +1 -0
- package/dist/types/lib/socket/ws.d.ts +83 -0
- package/dist/types/lib/socket/ws.d.ts.map +1 -0
- package/dist/types/lib/ssr/index.d.ts +3 -0
- package/dist/types/lib/ssr/index.d.ts.map +1 -0
- package/dist/types/lib/ssr/ssr-bridge.d.ts +89 -0
- package/dist/types/lib/ssr/ssr-bridge.d.ts.map +1 -0
- package/dist/types/lib/ssr/ssrFlag.d.ts +38 -0
- package/dist/types/lib/ssr/ssrFlag.d.ts.map +1 -0
- package/dist/types/lib/virtualizer/ScrollerController.d.ts +54 -0
- package/dist/types/lib/virtualizer/ScrollerController.d.ts.map +1 -0
- package/dist/types/lib/virtualizer/Virtualizer.d.ts +214 -0
- package/dist/types/lib/virtualizer/Virtualizer.d.ts.map +1 -0
- package/dist/types/lib/virtualizer/events.d.ts +27 -0
- package/dist/types/lib/virtualizer/events.d.ts.map +1 -0
- package/dist/types/lib/virtualizer/layouts/flow.d.ts +123 -0
- package/dist/types/lib/virtualizer/layouts/flow.d.ts.map +1 -0
- package/dist/types/lib/virtualizer/layouts/grid.d.ts +25 -0
- package/dist/types/lib/virtualizer/layouts/grid.d.ts.map +1 -0
- package/dist/types/lib/virtualizer/layouts/masonry.d.ts +37 -0
- package/dist/types/lib/virtualizer/layouts/masonry.d.ts.map +1 -0
- package/dist/types/lib/virtualizer/layouts/shared/BaseLayout.d.ts +204 -0
- package/dist/types/lib/virtualizer/layouts/shared/BaseLayout.d.ts.map +1 -0
- package/dist/types/lib/virtualizer/layouts/shared/GridBaseLayout.d.ts +41 -0
- package/dist/types/lib/virtualizer/layouts/shared/GridBaseLayout.d.ts.map +1 -0
- package/dist/types/lib/virtualizer/layouts/shared/Layout.d.ts +138 -0
- package/dist/types/lib/virtualizer/layouts/shared/Layout.d.ts.map +1 -0
- package/dist/types/lib/virtualizer/layouts/shared/SizeCache.d.ts +19 -0
- package/dist/types/lib/virtualizer/layouts/shared/SizeCache.d.ts.map +1 -0
- package/dist/types/lib/virtualizer/layouts/shared/SizeGapPaddingBaseLayout.d.ts +57 -0
- package/dist/types/lib/virtualizer/layouts/shared/SizeGapPaddingBaseLayout.d.ts.map +1 -0
- package/dist/types/lib/virtualizer/mates-adapter.d.ts +201 -0
- package/dist/types/lib/virtualizer/mates-adapter.d.ts.map +1 -0
- package/dist/types/lib/virtualizer/virtualize.d.ts +52 -0
- package/dist/types/lib/virtualizer/virtualize.d.ts.map +1 -0
- package/package.json +45 -0
|
@@ -0,0 +1,5 @@
|
|
|
1
|
+
export declare function highlightElement(el: HTMLElement): void;
|
|
2
|
+
export declare function navigateToComponent(componentId: number): void;
|
|
3
|
+
export declare function renderDevTools(): void;
|
|
4
|
+
export declare function destroyDevTools(): void;
|
|
5
|
+
//# sourceMappingURL=MatesDevTools.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"MatesDevTools.d.ts","sourceRoot":"","sources":["../../../../src/MatesDevTools.ts"],"names":[],"mappings":"AA0HA,wBAAgB,gBAAgB,CAAC,EAAE,EAAE,WAAW,GAAG,IAAI,CAmFtD;AA2HD,wBAAgB,mBAAmB,CAAC,WAAW,EAAE,MAAM,GAAG,IAAI,CAyB7D;AA4iBD,wBAAgB,cAAc,IAAI,IAAI,CAwCrC;AAED,wBAAgB,eAAe,IAAI,IAAI,CA2BtC"}
|
|
@@ -0,0 +1,24 @@
|
|
|
1
|
+
import { destroyDevTools } from "./MatesDevTools";
|
|
2
|
+
export { destroyDevTools };
|
|
3
|
+
export type DevToolsPosition = "bottom-right" | "bottom-left" | "top-right" | "top-left";
|
|
4
|
+
/**
|
|
5
|
+
* Bootstrap Mates DevTools.
|
|
6
|
+
*
|
|
7
|
+
* Call this **before** `renderX()` so the hooks are installed before any
|
|
8
|
+
* component mounts. DevTools renders its own FAB and panel into
|
|
9
|
+
* `document.body` — it does not need to live inside your component tree.
|
|
10
|
+
*
|
|
11
|
+
* ```ts
|
|
12
|
+
* import { renderMatesDevTools } from "mates-devtools";
|
|
13
|
+
*
|
|
14
|
+
* renderMatesDevTools();
|
|
15
|
+
* renderX(App, document.getElementById("app")!);
|
|
16
|
+
* ```
|
|
17
|
+
*/
|
|
18
|
+
export declare function renderMatesDevTools(): void;
|
|
19
|
+
/**
|
|
20
|
+
* Tear down Mates DevTools completely (FAB, panel, subscriptions, hooks).
|
|
21
|
+
* Safe to call even if DevTools was never started.
|
|
22
|
+
*/
|
|
23
|
+
export declare function destroyMatesDevTools(): void;
|
|
24
|
+
//# sourceMappingURL=MatesDevToolsComponent.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"MatesDevToolsComponent.d.ts","sourceRoot":"","sources":["../../../../src/MatesDevToolsComponent.ts"],"names":[],"mappings":"AAOA,OAAO,EAAkB,eAAe,EAAE,MAAM,iBAAiB,CAAC;AAClE,OAAO,EAAE,eAAe,EAAE,CAAC;AAgG3B,MAAM,MAAM,gBAAgB,GACxB,cAAc,GACd,aAAa,GACb,WAAW,GACX,UAAU,CAAC;AAsCf;;;;;;;;;;;;;GAaG;AACH,wBAAgB,mBAAmB,IAAI,IAAI,CAc1C;AAED;;;GAGG;AACH,wBAAgB,oBAAoB,IAAI,IAAI,CAS3C"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"AtomsViewer.d.ts","sourceRoot":"","sources":["../../../../../src/components/AtomsViewer.ts"],"names":[],"mappings":"AAyCA,wBAAgB,iBAAiB,CAAC,QAAQ,EAAE,GAAG,CAAC,GAAG,EAAE,QAAQ,EAAE,CAAC,GAAG,SAAS,wCAyB3E"}
|
|
@@ -0,0 +1,27 @@
|
|
|
1
|
+
import type { Component } from "mates";
|
|
2
|
+
import type { ComponentGroup } from "../types";
|
|
3
|
+
/**
|
|
4
|
+
* Group mode — used by the flat list.
|
|
5
|
+
* Shows all instances of a component group with collapsible details.
|
|
6
|
+
*/
|
|
7
|
+
export interface GroupInspectorProps {
|
|
8
|
+
selectedGroup: ComponentGroup | null;
|
|
9
|
+
selectedInstanceId: number | null;
|
|
10
|
+
onSelectInstance: (componentId: number) => void;
|
|
11
|
+
onHighlight: (component: Component) => void;
|
|
12
|
+
selectedComponent?: undefined;
|
|
13
|
+
}
|
|
14
|
+
/**
|
|
15
|
+
* Single-component mode — used by the tree view.
|
|
16
|
+
* Shows one component's details directly (no instance picker).
|
|
17
|
+
*/
|
|
18
|
+
export interface SingleInspectorProps {
|
|
19
|
+
selectedComponent: Component | null;
|
|
20
|
+
selectedGroup?: undefined;
|
|
21
|
+
selectedInstanceId?: undefined;
|
|
22
|
+
onSelectInstance?: undefined;
|
|
23
|
+
onHighlight?: undefined;
|
|
24
|
+
}
|
|
25
|
+
export type ComponentInspectorProps = GroupInspectorProps | SingleInspectorProps;
|
|
26
|
+
export declare function renderComponentInspector(props: ComponentInspectorProps): import("lit-html").TemplateResult<1>;
|
|
27
|
+
//# sourceMappingURL=ComponentInspector.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"ComponentInspector.d.ts","sourceRoot":"","sources":["../../../../../src/components/ComponentInspector.ts"],"names":[],"mappings":"AAGA,OAAO,KAAK,EAAE,SAAS,EAAE,MAAM,OAAO,CAAC;AACvC,OAAO,KAAK,EAAE,cAAc,EAAE,MAAM,UAAU,CAAC;AAgB/C;;;GAGG;AACH,MAAM,WAAW,mBAAmB;IAClC,aAAa,EAAE,cAAc,GAAG,IAAI,CAAC;IACrC,kBAAkB,EAAE,MAAM,GAAG,IAAI,CAAC;IAClC,gBAAgB,EAAE,CAAC,WAAW,EAAE,MAAM,KAAK,IAAI,CAAC;IAChD,WAAW,EAAE,CAAC,SAAS,EAAE,SAAS,KAAK,IAAI,CAAC;IAC5C,iBAAiB,CAAC,EAAE,SAAS,CAAC;CAC/B;AAED;;;GAGG;AACH,MAAM,WAAW,oBAAoB;IACnC,iBAAiB,EAAE,SAAS,GAAG,IAAI,CAAC;IACpC,aAAa,CAAC,EAAE,SAAS,CAAC;IAC1B,kBAAkB,CAAC,EAAE,SAAS,CAAC;IAC/B,gBAAgB,CAAC,EAAE,SAAS,CAAC;IAC7B,WAAW,CAAC,EAAE,SAAS,CAAC;CACzB;AAED,MAAM,MAAM,uBAAuB,GAC/B,mBAAmB,GACnB,oBAAoB,CAAC;AA+QzB,wBAAgB,wBAAwB,CAAC,KAAK,EAAE,uBAAuB,wCA4BtE"}
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
import type { ComponentGroup } from "../types";
|
|
2
|
+
import type { Component } from "mates";
|
|
3
|
+
export interface ComponentListProps {
|
|
4
|
+
groups: ComponentGroup[];
|
|
5
|
+
selectedViewFn: Function | null;
|
|
6
|
+
onSelectGroup: (viewFn: Function) => void;
|
|
7
|
+
onHighlight: (component: Component) => void;
|
|
8
|
+
renderCallback: () => void;
|
|
9
|
+
}
|
|
10
|
+
export declare function renderComponentList({ groups, selectedViewFn, onSelectGroup, onHighlight, renderCallback, }: ComponentListProps): import("lit-html").TemplateResult<1>;
|
|
11
|
+
//# sourceMappingURL=ComponentList.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"ComponentList.d.ts","sourceRoot":"","sources":["../../../../../src/components/ComponentList.ts"],"names":[],"mappings":"AAGA,OAAO,KAAK,EAAE,cAAc,EAAE,MAAM,UAAU,CAAC;AAC/C,OAAO,KAAK,EAAE,SAAS,EAAE,MAAM,OAAO,CAAC;AAWvC,MAAM,WAAW,kBAAkB;IACjC,MAAM,EAAE,cAAc,EAAE,CAAC;IACzB,cAAc,EAAE,QAAQ,GAAG,IAAI,CAAC;IAChC,aAAa,EAAE,CAAC,MAAM,EAAE,QAAQ,KAAK,IAAI,CAAC;IAC1C,WAAW,EAAE,CAAC,SAAS,EAAE,SAAS,KAAK,IAAI,CAAC;IAC5C,cAAc,EAAE,MAAM,IAAI,CAAC;CAC5B;AAqCD,wBAAgB,mBAAmB,CAAC,EAClC,MAAM,EACN,cAAc,EACd,aAAa,EACb,WAAW,EACX,cAAc,GACf,EAAE,kBAAkB,wCAiIpB"}
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
import type { Component } from "mates";
|
|
2
|
+
export interface ComponentTreeProps {
|
|
3
|
+
selectedComponentId: number | null;
|
|
4
|
+
onSelectComponent: (componentId: number) => void;
|
|
5
|
+
onHighlight: (component: Component) => void;
|
|
6
|
+
renderCallback: () => void;
|
|
7
|
+
}
|
|
8
|
+
export declare function renderComponentTree({ selectedComponentId, onSelectComponent, onHighlight, renderCallback, }: ComponentTreeProps): import("lit-html").TemplateResult<1>;
|
|
9
|
+
//# sourceMappingURL=ComponentTree.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"ComponentTree.d.ts","sourceRoot":"","sources":["../../../../../src/components/ComponentTree.ts"],"names":[],"mappings":"AAGA,OAAO,KAAK,EAAE,SAAS,EAAE,MAAM,OAAO,CAAC;AAiMvC,MAAM,WAAW,kBAAkB;IACjC,mBAAmB,EAAE,MAAM,GAAG,IAAI,CAAC;IACnC,iBAAiB,EAAE,CAAC,WAAW,EAAE,MAAM,KAAK,IAAI,CAAC;IACjD,WAAW,EAAE,CAAC,SAAS,EAAE,SAAS,KAAK,IAAI,CAAC;IAC5C,cAAc,EAAE,MAAM,IAAI,CAAC;CAC5B;AAED,wBAAgB,mBAAmB,CAAC,EAClC,mBAAmB,EACnB,iBAAiB,EACjB,WAAW,EACX,cAAc,GACf,EAAE,kBAAkB,wCA8BpB"}
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
export type DevToolsTab = "components" | "logs" | "performance";
|
|
2
|
+
export interface HeaderProps {
|
|
3
|
+
activeTab: DevToolsTab;
|
|
4
|
+
onTabChange: (tab: DevToolsTab) => void;
|
|
5
|
+
onMinimise: () => void;
|
|
6
|
+
onClose: () => void;
|
|
7
|
+
unreadLogCount: number;
|
|
8
|
+
}
|
|
9
|
+
export declare function renderHeader({ activeTab, onTabChange, onMinimise, onClose, unreadLogCount, }: HeaderProps): import("lit-html").TemplateResult<1>;
|
|
10
|
+
//# sourceMappingURL=Header.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"Header.d.ts","sourceRoot":"","sources":["../../../../../src/components/Header.ts"],"names":[],"mappings":"AAKA,MAAM,MAAM,WAAW,GAAG,YAAY,GAAG,MAAM,GAAG,aAAa,CAAC;AAEhE,MAAM,WAAW,WAAW;IAC1B,SAAS,EAAE,WAAW,CAAC;IACvB,WAAW,EAAE,CAAC,GAAG,EAAE,WAAW,KAAK,IAAI,CAAC;IACxC,UAAU,EAAE,MAAM,IAAI,CAAC;IACvB,OAAO,EAAE,MAAM,IAAI,CAAC;IACpB,cAAc,EAAE,MAAM,CAAC;CACxB;AAED,wBAAgB,YAAY,CAAC,EAC3B,SAAS,EACT,WAAW,EACX,UAAU,EACV,OAAO,EACP,cAAc,GACf,EAAE,WAAW,wCA0Fb"}
|
|
@@ -0,0 +1,6 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Renders a version badge that briefly flashes green whenever the version
|
|
3
|
+
* number changes. Uses a stable element ID to locate the element for animation.
|
|
4
|
+
*/
|
|
5
|
+
export declare function renderHighlight(version: number, key: object, prevVersions: WeakMap<object, number>): import("lit-html").TemplateResult<1>;
|
|
6
|
+
//# sourceMappingURL=Highlight.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"Highlight.d.ts","sourceRoot":"","sources":["../../../../../src/components/Highlight.ts"],"names":[],"mappings":"AAWA;;;GAGG;AACH,wBAAgB,eAAe,CAC7B,OAAO,EAAE,MAAM,EACf,GAAG,EAAE,MAAM,EACX,YAAY,EAAE,OAAO,CAAC,MAAM,EAAE,MAAM,CAAC,wCA6BtC"}
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
import { nothing } from "mates";
|
|
2
|
+
/**
|
|
3
|
+
* Render a compact summary of all hooks used by a component instance.
|
|
4
|
+
* Only shows hooks that have count > 0.
|
|
5
|
+
*/
|
|
6
|
+
export declare function renderHooksViewer(instance: any): typeof nothing | import("lit-html").TemplateResult<1>;
|
|
7
|
+
//# sourceMappingURL=HooksViewer.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"HooksViewer.d.ts","sourceRoot":"","sources":["../../../../../src/components/HooksViewer.ts"],"names":[],"mappings":"AAAA,OAAO,EAAQ,OAAO,EAAE,MAAM,OAAO,CAAC;AA0JtC;;;GAGG;AACH,wBAAgB,iBAAiB,CAAC,QAAQ,EAAE,GAAG,yDAsC9C"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"LogsViewer.d.ts","sourceRoot":"","sources":["../../../../../src/components/LogsViewer.ts"],"names":[],"mappings":"AA0EA,MAAM,WAAW,eAAe;IAC9B,OAAO,EAAE,MAAM,IAAI,CAAC;IACpB,cAAc,EAAE,MAAM,IAAI,CAAC;CAC5B;AAED,wBAAgB,gBAAgB,CAAC,EAAE,OAAO,EAAE,cAAc,EAAE,EAAE,eAAe,wCAkI5E"}
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
export interface PerfViewerProps {
|
|
2
|
+
onClear: () => void;
|
|
3
|
+
renderCallback: () => void;
|
|
4
|
+
onNavigateToComponent?: (componentId: number) => void;
|
|
5
|
+
}
|
|
6
|
+
export declare function renderPerfViewer({ onClear, renderCallback, onNavigateToComponent, }: PerfViewerProps): import("lit-html").TemplateResult<1>;
|
|
7
|
+
//# sourceMappingURL=PerfViewer.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"PerfViewer.d.ts","sourceRoot":"","sources":["../../../../../src/components/PerfViewer.ts"],"names":[],"mappings":"AAuMA,MAAM,WAAW,eAAe;IAC9B,OAAO,EAAE,MAAM,IAAI,CAAC;IACpB,cAAc,EAAE,MAAM,IAAI,CAAC;IAC3B,qBAAqB,CAAC,EAAE,CAAC,WAAW,EAAE,MAAM,KAAK,IAAI,CAAC;CACvD;AAED,wBAAgB,gBAAgB,CAAC,EAC/B,OAAO,EACP,cAAc,EACd,qBAAqB,GACtB,EAAE,eAAe,wCAoEjB"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"PropsViewer.d.ts","sourceRoot":"","sources":["../../../../../src/components/PropsViewer.ts"],"names":[],"mappings":"AAIA,wBAAgB,iBAAiB,CAAC,KAAK,EAAE,MAAM,CAAC,MAAM,EAAE,GAAG,CAAC,wCAkB3D"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"ScopesViewer.d.ts","sourceRoot":"","sources":["../../../../../src/components/ScopesViewer.ts"],"names":[],"mappings":"AAGA,wBAAgB,kBAAkB,CAAC,MAAM,EAAE,GAAG,CAAC,GAAG,EAAE,GAAG,CAAC,GAAG,SAAS,wCAgGnE"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"TimerLogger.d.ts","sourceRoot":"","sources":["../../../../../src/components/TimerLogger.ts"],"names":[],"mappings":"AAGA,eAAO,MAAM,WAAW;;;CAevB,CAAC"}
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Render all useState instances registered on a component.
|
|
3
|
+
*
|
|
4
|
+
* Each useState call pushes { state, atom } into host._useStates.
|
|
5
|
+
* We display each state object as an expandable tree, labelled
|
|
6
|
+
* "state#1", "state#2", etc.
|
|
7
|
+
*/
|
|
8
|
+
export declare function renderUseStateViewer(useStates: {
|
|
9
|
+
state: any;
|
|
10
|
+
atom: any;
|
|
11
|
+
}[] | undefined): import("lit-html").TemplateResult<1>;
|
|
12
|
+
//# sourceMappingURL=UseStateViewer.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"UseStateViewer.d.ts","sourceRoot":"","sources":["../../../../../src/components/UseStateViewer.ts"],"names":[],"mappings":"AAGA;;;;;;GAMG;AACH,wBAAgB,oBAAoB,CAClC,SAAS,EAAE;IAAE,KAAK,EAAE,GAAG,CAAC;IAAC,IAAI,EAAE,GAAG,CAAA;CAAE,EAAE,GAAG,SAAS,wCAuBnD"}
|
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
import { type TemplateResult } from "mates";
|
|
2
|
+
/** Allow the host (MatesDevTools renderUI) to register a re-render callback. */
|
|
3
|
+
export declare function setValueTreeRenderCallback(cb: (() => void) | null): void;
|
|
4
|
+
/**
|
|
5
|
+
* Render a value as an expandable tree node.
|
|
6
|
+
*
|
|
7
|
+
* @param root - The top-level object (used as a stable key for expansion state)
|
|
8
|
+
* @param key - The property name to display (null for root-level)
|
|
9
|
+
* @param value - The value to render
|
|
10
|
+
* @param path - Dot-separated path string for tracking expansion (default "root")
|
|
11
|
+
* @param depth - Current nesting depth for indentation limit (default 0)
|
|
12
|
+
*/
|
|
13
|
+
export declare function renderValueTree(root: object, key: string | null, value: unknown, path?: string, depth?: number): TemplateResult;
|
|
14
|
+
/**
|
|
15
|
+
* Convenience: render an entire object's entries as a flat list of expandable trees.
|
|
16
|
+
* Each top-level key becomes a root-level row.
|
|
17
|
+
*/
|
|
18
|
+
export declare function renderValueTreeEntries(root: object, obj: Record<string, any>, basePath?: string): TemplateResult;
|
|
19
|
+
//# sourceMappingURL=ValueTree.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"ValueTree.d.ts","sourceRoot":"","sources":["../../../../../src/components/ValueTree.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,KAAK,cAAc,EAAiB,MAAM,OAAO,CAAC;AAgC3D,gFAAgF;AAChF,wBAAgB,0BAA0B,CAAC,EAAE,EAAE,CAAC,MAAM,IAAI,CAAC,GAAG,IAAI,QAMjE;AAuQD;;;;;;;;GAQG;AACH,wBAAgB,eAAe,CAC7B,IAAI,EAAE,MAAM,EACZ,GAAG,EAAE,MAAM,GAAG,IAAI,EAClB,KAAK,EAAE,OAAO,EACd,IAAI,SAAS,EACb,KAAK,SAAI,GACR,cAAc,CA8FhB;AAED;;;GAGG;AACH,wBAAgB,sBAAsB,CACpC,IAAI,EAAE,MAAM,EACZ,GAAG,EAAE,MAAM,CAAC,MAAM,EAAE,GAAG,CAAC,EACxB,QAAQ,SAAS,GAChB,cAAc,CAgBhB"}
|
|
@@ -0,0 +1,23 @@
|
|
|
1
|
+
export { renderMatesDevTools, destroyMatesDevTools, destroyDevTools, } from "./MatesDevToolsComponent";
|
|
2
|
+
export type { DevToolsPosition } from "./MatesDevToolsComponent";
|
|
3
|
+
export { renderAtomsViewer } from "./components/AtomsViewer";
|
|
4
|
+
export { renderComponentInspector } from "./components/ComponentInspector";
|
|
5
|
+
export { renderComponentList } from "./components/ComponentList";
|
|
6
|
+
export { renderComponentTree } from "./components/ComponentTree";
|
|
7
|
+
export { renderHeader } from "./components/Header";
|
|
8
|
+
export type { DevToolsTab } from "./components/Header";
|
|
9
|
+
export { renderHooksViewer } from "./components/HooksViewer";
|
|
10
|
+
export { renderLogsViewer } from "./components/LogsViewer";
|
|
11
|
+
export { renderPerfViewer } from "./components/PerfViewer";
|
|
12
|
+
export { renderPropsViewer } from "./components/PropsViewer";
|
|
13
|
+
export { renderScopesViewer } from "./components/ScopesViewer";
|
|
14
|
+
export { renderUseStateViewer } from "./components/UseStateViewer";
|
|
15
|
+
export { renderValueTree, renderValueTreeEntries, setValueTreeRenderCallback, } from "./components/ValueTree";
|
|
16
|
+
export { devToolsEvent, getAllComponents, getComponentDepth, getComponentGroups, getComponentName, getComponentsByView, getRenderVersion, notifyRender, registerComponent, unregisterComponent, } from "./registry";
|
|
17
|
+
export { styles } from "./styles";
|
|
18
|
+
export { clearLogs, connectLogStore, disconnectLogStore, getLogs, getLogCount, getUnreadLogCount, isLogStoreConnected, logAtomSet, logAtomUpdate, logCleanupEventTrigger, logComponentMount, logComponentRender, logComponentUnmount, logEventTrigger, markLogsRead, onLogEntry, } from "./logStore";
|
|
19
|
+
export type { LogCategory, LogEntry } from "./logStore";
|
|
20
|
+
export { clearPerfData, connectPerfStore, disconnectPerfStore, getPerfSummaries, getRecentTimings, getSlowestRenders, isPerfStoreConnected, onPerfEntry, recordRender, startRenderTiming, } from "./perfStore";
|
|
21
|
+
export type { ComponentPerfSummary, RenderTiming } from "./perfStore";
|
|
22
|
+
export type { ComponentGroup, ComponentInfo } from "./types";
|
|
23
|
+
//# sourceMappingURL=index.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../src/index.ts"],"names":[],"mappings":"AACA,OAAO,EACL,mBAAmB,EACnB,oBAAoB,EACpB,eAAe,GAChB,MAAM,0BAA0B,CAAC;AAClC,YAAY,EAAE,gBAAgB,EAAE,MAAM,0BAA0B,CAAC;AAGjE,OAAO,EAAE,iBAAiB,EAAE,MAAM,0BAA0B,CAAC;AAC7D,OAAO,EAAE,wBAAwB,EAAE,MAAM,iCAAiC,CAAC;AAC3E,OAAO,EAAE,mBAAmB,EAAE,MAAM,4BAA4B,CAAC;AACjE,OAAO,EAAE,mBAAmB,EAAE,MAAM,4BAA4B,CAAC;AACjE,OAAO,EAAE,YAAY,EAAE,MAAM,qBAAqB,CAAC;AACnD,YAAY,EAAE,WAAW,EAAE,MAAM,qBAAqB,CAAC;AACvD,OAAO,EAAE,iBAAiB,EAAE,MAAM,0BAA0B,CAAC;AAC7D,OAAO,EAAE,gBAAgB,EAAE,MAAM,yBAAyB,CAAC;AAC3D,OAAO,EAAE,gBAAgB,EAAE,MAAM,yBAAyB,CAAC;AAC3D,OAAO,EAAE,iBAAiB,EAAE,MAAM,0BAA0B,CAAC;AAC7D,OAAO,EAAE,kBAAkB,EAAE,MAAM,2BAA2B,CAAC;AAC/D,OAAO,EAAE,oBAAoB,EAAE,MAAM,6BAA6B,CAAC;AACnE,OAAO,EACL,eAAe,EACf,sBAAsB,EACtB,0BAA0B,GAC3B,MAAM,wBAAwB,CAAC;AAGhC,OAAO,EACL,aAAa,EACb,gBAAgB,EAChB,iBAAiB,EACjB,kBAAkB,EAClB,gBAAgB,EAChB,mBAAmB,EACnB,gBAAgB,EAChB,YAAY,EACZ,iBAAiB,EACjB,mBAAmB,GACpB,MAAM,YAAY,CAAC;AAGpB,OAAO,EAAE,MAAM,EAAE,MAAM,UAAU,CAAC;AAGlC,OAAO,EACL,SAAS,EACT,eAAe,EACf,kBAAkB,EAClB,OAAO,EACP,WAAW,EACX,iBAAiB,EACjB,mBAAmB,EACnB,UAAU,EACV,aAAa,EACb,sBAAsB,EACtB,iBAAiB,EACjB,kBAAkB,EAClB,mBAAmB,EACnB,eAAe,EACf,YAAY,EACZ,UAAU,GACX,MAAM,YAAY,CAAC;AACpB,YAAY,EAAE,WAAW,EAAE,QAAQ,EAAE,MAAM,YAAY,CAAC;AAGxD,OAAO,EACL,aAAa,EACb,gBAAgB,EAChB,mBAAmB,EACnB,gBAAgB,EAChB,gBAAgB,EAChB,iBAAiB,EACjB,oBAAoB,EACpB,WAAW,EACX,YAAY,EACZ,iBAAiB,GAClB,MAAM,aAAa,CAAC;AACrB,YAAY,EAAE,oBAAoB,EAAE,YAAY,EAAE,MAAM,aAAa,CAAC;AAGtE,YAAY,EAAE,cAAc,EAAE,aAAa,EAAE,MAAM,SAAS,CAAC"}
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
export declare const activeTimersAtom: import("mates").AtomType<number>;
|
|
2
|
+
/**
|
|
3
|
+
* Run `fn` without tracking any timers it creates or clears.
|
|
4
|
+
* Use this for DevTools-internal timers so they don't skew the count.
|
|
5
|
+
*/
|
|
6
|
+
export declare function withoutTracking<T>(fn: () => T): T;
|
|
7
|
+
/** Patch `window.setTimeout`, `setInterval`, `clearTimeout`, `clearInterval`. */
|
|
8
|
+
export declare function installTimerInterceptor(): void;
|
|
9
|
+
/** Restore the original timer functions and reset all state. */
|
|
10
|
+
export declare function uninstallTimerInterceptor(): void;
|
|
11
|
+
//# sourceMappingURL=interceptTimers.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"interceptTimers.d.ts","sourceRoot":"","sources":["../../../../src/interceptTimers.ts"],"names":[],"mappings":"AAgBA,eAAO,MAAM,gBAAgB,kCAAU,CAAC;AAexC;;;GAGG;AACH,wBAAgB,eAAe,CAAC,CAAC,EAAE,EAAE,EAAE,MAAM,CAAC,GAAG,CAAC,CAOjD;AAED,iFAAiF;AACjF,wBAAgB,uBAAuB,IAAI,IAAI,CAkH9C;AAED,gEAAgE;AAChE,wBAAgB,yBAAyB,IAAI,IAAI,CAoBhD"}
|
|
@@ -0,0 +1,38 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* DevTools Log Store
|
|
3
|
+
*
|
|
4
|
+
* Circular buffer (100 entries) that captures component lifecycle
|
|
5
|
+
* and state/event activity.
|
|
6
|
+
*
|
|
7
|
+
* - Zero overhead when disconnected (`isConnected` gate).
|
|
8
|
+
* - No dependency on lit-html or DOM — pure data.
|
|
9
|
+
*/
|
|
10
|
+
export type LogCategory = "mount" | "update" | "cleanup" | "setter" | "action" | "event" | "fetch";
|
|
11
|
+
export interface LogEntry {
|
|
12
|
+
id: number;
|
|
13
|
+
ts: number;
|
|
14
|
+
category: LogCategory;
|
|
15
|
+
label: string;
|
|
16
|
+
detail?: string;
|
|
17
|
+
}
|
|
18
|
+
/** Register a listener called on each new entry. Returns unsubscribe fn. */
|
|
19
|
+
export declare function onLogEntry(fn: () => void): () => void;
|
|
20
|
+
export declare function connectLogStore(): void;
|
|
21
|
+
export declare function disconnectLogStore(): void;
|
|
22
|
+
export declare function isLogStoreConnected(): boolean;
|
|
23
|
+
export declare function getLogs(): readonly LogEntry[];
|
|
24
|
+
export declare function getLogCount(): number;
|
|
25
|
+
export declare function getUnreadLogCount(): number;
|
|
26
|
+
export declare function markLogsRead(): void;
|
|
27
|
+
export declare function clearLogs(): void;
|
|
28
|
+
export declare function logComponentMount(name: string): void;
|
|
29
|
+
export declare function logComponentRender(name: string, durationMs: number): void;
|
|
30
|
+
export declare function logComponentUnmount(name: string): void;
|
|
31
|
+
export declare function logAtomSet(name: string, value: unknown): void;
|
|
32
|
+
export declare function logAtomUpdate(name: string): void;
|
|
33
|
+
export declare function logEventTrigger(name: string, data: unknown): void;
|
|
34
|
+
export declare function logFetchRequest(method: string, url: string, payload?: string): void;
|
|
35
|
+
export declare function logFetchResponse(method: string, url: string, status: number, durationMs: number): void;
|
|
36
|
+
export declare function logFetchError(method: string, url: string, error: string, durationMs: number): void;
|
|
37
|
+
export declare function logCleanupEventTrigger(name: string, data: unknown): void;
|
|
38
|
+
//# sourceMappingURL=logStore.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"logStore.d.ts","sourceRoot":"","sources":["../../../../src/logStore.ts"],"names":[],"mappings":"AAAA;;;;;;;;GAQG;AAEH,MAAM,MAAM,WAAW,GACnB,OAAO,GACP,QAAQ,GACR,SAAS,GACT,QAAQ,GACR,QAAQ,GACR,OAAO,GACP,OAAO,CAAC;AAEZ,MAAM,WAAW,QAAQ;IACvB,EAAE,EAAE,MAAM,CAAC;IACX,EAAE,EAAE,MAAM,CAAC;IACX,QAAQ,EAAE,WAAW,CAAC;IACtB,KAAK,EAAE,MAAM,CAAC;IACd,MAAM,CAAC,EAAE,MAAM,CAAC;CACjB;AAMD,4EAA4E;AAC5E,wBAAgB,UAAU,CAAC,EAAE,EAAE,MAAM,IAAI,GAAG,MAAM,IAAI,CAUrD;AAMD,wBAAgB,eAAe,IAAI,IAAI,CAEtC;AACD,wBAAgB,kBAAkB,IAAI,IAAI,CAEzC;AACD,wBAAgB,mBAAmB,IAAI,OAAO,CAE7C;AAqDD,wBAAgB,OAAO,IAAI,SAAS,QAAQ,EAAE,CAE7C;AACD,wBAAgB,WAAW,IAAI,MAAM,CAEpC;AACD,wBAAgB,iBAAiB,IAAI,MAAM,CAE1C;AACD,wBAAgB,YAAY,IAAI,IAAI,CAMnC;AACD,wBAAgB,SAAS,IAAI,IAAI,CAQhC;AAID,wBAAgB,iBAAiB,CAAC,IAAI,EAAE,MAAM,GAAG,IAAI,CAOpD;AAED,wBAAgB,kBAAkB,CAAC,IAAI,EAAE,MAAM,EAAE,UAAU,EAAE,MAAM,GAAG,IAAI,CAOzE;AAED,wBAAgB,mBAAmB,CAAC,IAAI,EAAE,MAAM,GAAG,IAAI,CAOtD;AAED,wBAAgB,UAAU,CAAC,IAAI,EAAE,MAAM,EAAE,KAAK,EAAE,OAAO,GAAG,IAAI,CAO7D;AAED,wBAAgB,aAAa,CAAC,IAAI,EAAE,MAAM,GAAG,IAAI,CAOhD;AAED,wBAAgB,eAAe,CAAC,IAAI,EAAE,MAAM,EAAE,IAAI,EAAE,OAAO,GAAG,IAAI,CAOjE;AAgBD,wBAAgB,eAAe,CAC7B,MAAM,EAAE,MAAM,EACd,GAAG,EAAE,MAAM,EACX,OAAO,CAAC,EAAE,MAAM,GACf,IAAI,CAQN;AAED,wBAAgB,gBAAgB,CAC9B,MAAM,EAAE,MAAM,EACd,GAAG,EAAE,MAAM,EACX,MAAM,EAAE,MAAM,EACd,UAAU,EAAE,MAAM,GACjB,IAAI,CAWN;AAED,wBAAgB,aAAa,CAC3B,MAAM,EAAE,MAAM,EACd,GAAG,EAAE,MAAM,EACX,KAAK,EAAE,MAAM,EACb,UAAU,EAAE,MAAM,GACjB,IAAI,CAcN;AAED,wBAAgB,sBAAsB,CAAC,IAAI,EAAE,MAAM,EAAE,IAAI,EAAE,OAAO,GAAG,IAAI,CAWxE"}
|
|
@@ -0,0 +1,36 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* DevTools Performance Store
|
|
3
|
+
*
|
|
4
|
+
* Tracks per-component render durations. Zero overhead when disconnected.
|
|
5
|
+
* Fixed-size history per component (100 entries). Pure data, no DOM deps.
|
|
6
|
+
*/
|
|
7
|
+
export interface RenderTiming {
|
|
8
|
+
id: number;
|
|
9
|
+
ts: number;
|
|
10
|
+
durationMs: number;
|
|
11
|
+
componentName: string;
|
|
12
|
+
instanceId: number;
|
|
13
|
+
}
|
|
14
|
+
export interface ComponentPerfSummary {
|
|
15
|
+
name: string;
|
|
16
|
+
renderCount: number;
|
|
17
|
+
avgMs: number;
|
|
18
|
+
maxMs: number;
|
|
19
|
+
minMs: number;
|
|
20
|
+
lastMs: number;
|
|
21
|
+
totalMs: number;
|
|
22
|
+
timings: RenderTiming[];
|
|
23
|
+
}
|
|
24
|
+
export declare function connectPerfStore(): void;
|
|
25
|
+
export declare function disconnectPerfStore(): void;
|
|
26
|
+
export declare function isPerfStoreConnected(): boolean;
|
|
27
|
+
/** Register a listener called on each new entry. Returns unsubscribe fn. */
|
|
28
|
+
export declare function onPerfEntry(fn: () => void): () => void;
|
|
29
|
+
export declare function recordRender(componentName: string, instanceId: number, durationMs: number): void;
|
|
30
|
+
export declare function startRenderTiming(componentName: string, instanceId: number): () => void;
|
|
31
|
+
export declare function getPerfSummaries(): ComponentPerfSummary[];
|
|
32
|
+
export declare function getRecentTimings(limit?: number): RenderTiming[];
|
|
33
|
+
export declare function getSlowestRenders(limit?: number): RenderTiming[];
|
|
34
|
+
export declare function clearPerfData(): void;
|
|
35
|
+
export declare const timersCount: import("mates").AtomType<number>;
|
|
36
|
+
//# sourceMappingURL=perfStore.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"perfStore.d.ts","sourceRoot":"","sources":["../../../../src/perfStore.ts"],"names":[],"mappings":"AAAA;;;;;GAKG;AAIH,MAAM,WAAW,YAAY;IAC3B,EAAE,EAAE,MAAM,CAAC;IACX,EAAE,EAAE,MAAM,CAAC;IACX,UAAU,EAAE,MAAM,CAAC;IACnB,aAAa,EAAE,MAAM,CAAC;IACtB,UAAU,EAAE,MAAM,CAAC;CACpB;AAED,MAAM,WAAW,oBAAoB;IACnC,IAAI,EAAE,MAAM,CAAC;IACb,WAAW,EAAE,MAAM,CAAC;IACpB,KAAK,EAAE,MAAM,CAAC;IACd,KAAK,EAAE,MAAM,CAAC;IACd,KAAK,EAAE,MAAM,CAAC;IACd,MAAM,EAAE,MAAM,CAAC;IACf,OAAO,EAAE,MAAM,CAAC;IAChB,OAAO,EAAE,YAAY,EAAE,CAAC;CACzB;AAMD,wBAAgB,gBAAgB,IAAI,IAAI,CAMvC;AACD,wBAAgB,mBAAmB,IAAI,IAAI,CAM1C;AACD,wBAAgB,oBAAoB,IAAI,OAAO,CAE9C;AAYD,4EAA4E;AAC5E,wBAAgB,WAAW,CAAC,EAAE,EAAE,MAAM,IAAI,GAAG,MAAM,IAAI,CActD;AAID,wBAAgB,YAAY,CAC1B,aAAa,EAAE,MAAM,EACrB,UAAU,EAAE,MAAM,EAClB,UAAU,EAAE,MAAM,GACjB,IAAI,CA4BN;AAED,wBAAgB,iBAAiB,CAC/B,aAAa,EAAE,MAAM,EACrB,UAAU,EAAE,MAAM,GACjB,MAAM,IAAI,CAUZ;AAMD,wBAAgB,gBAAgB,IAAI,oBAAoB,EAAE,CAmCzD;AAgBD,wBAAgB,gBAAgB,CAAC,KAAK,SAAK,GAAG,YAAY,EAAE,CAS3D;AAED,wBAAgB,iBAAiB,CAAC,KAAK,SAAK,GAAG,YAAY,EAAE,CAS5D;AAED,wBAAgB,aAAa,IAAI,IAAI,CAOpC;AAED,eAAO,MAAM,WAAW,kCAAU,CAAC"}
|
|
@@ -0,0 +1,68 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* DevTools Registry
|
|
3
|
+
*
|
|
4
|
+
* Tracks all mounted components for DevTools inspection.
|
|
5
|
+
* Uses a Set for iteration + WeakMap for viewFn → components lookup.
|
|
6
|
+
*/
|
|
7
|
+
import { type EventType, type Component } from "mates";
|
|
8
|
+
import type { ComponentGroup } from "./types";
|
|
9
|
+
/**
|
|
10
|
+
* Event triggered whenever a component mounts or unmounts.
|
|
11
|
+
* DevTools subscribes to this to refresh its view.
|
|
12
|
+
*/
|
|
13
|
+
export declare const devToolsEvent: EventType<{
|
|
14
|
+
type: "mount" | "unmount" | "render";
|
|
15
|
+
component: Component;
|
|
16
|
+
}>;
|
|
17
|
+
/**
|
|
18
|
+
* Register a component when it mounts.
|
|
19
|
+
* Called from Component._mountComponent()
|
|
20
|
+
*/
|
|
21
|
+
export declare function registerComponent(component: Component, viewFn: Function): void;
|
|
22
|
+
/**
|
|
23
|
+
* Unregister a component when it unmounts.
|
|
24
|
+
* Called from Component.disconnectedCallback()
|
|
25
|
+
*/
|
|
26
|
+
export declare function unregisterComponent(component: Component, viewFn: Function | null): void;
|
|
27
|
+
/**
|
|
28
|
+
* Notify DevTools that a component re-rendered.
|
|
29
|
+
* Called from Component._xviewRender()
|
|
30
|
+
*/
|
|
31
|
+
export declare function notifyRender(component: Component): void;
|
|
32
|
+
/**
|
|
33
|
+
* Get the current render version for a component.
|
|
34
|
+
* Returns 0 if the component is not tracked.
|
|
35
|
+
*/
|
|
36
|
+
export declare function getRenderVersion(component: Component): number;
|
|
37
|
+
/**
|
|
38
|
+
* Get the DOM nesting depth of a component.
|
|
39
|
+
*/
|
|
40
|
+
export declare function getComponentDepth(component: Component): number;
|
|
41
|
+
/**
|
|
42
|
+
* Get the nearest parent component (x-x ancestor), or null if root.
|
|
43
|
+
*/
|
|
44
|
+
export declare function getParentComponent(component: Component): Component | null;
|
|
45
|
+
/**
|
|
46
|
+
* Get all currently mounted components.
|
|
47
|
+
*/
|
|
48
|
+
export declare function getAllComponents(): Component[];
|
|
49
|
+
/**
|
|
50
|
+
* Get all components using a specific view function.
|
|
51
|
+
*/
|
|
52
|
+
export declare function getComponentsByView(viewFn: Function): Component[];
|
|
53
|
+
/**
|
|
54
|
+
* Get component display name.
|
|
55
|
+
*/
|
|
56
|
+
export declare function getComponentName(component: Component): string;
|
|
57
|
+
/**
|
|
58
|
+
* Get the view function reference for a component.
|
|
59
|
+
*/
|
|
60
|
+
export declare function getViewFn(component: Component): Function | null;
|
|
61
|
+
/**
|
|
62
|
+
* Group all currently mounted (non-devtools) components by their view function
|
|
63
|
+
* reference. Components that share the same view function are placed into the
|
|
64
|
+
* same group. Each group carries the shared `viewFn`, a display `name`, and
|
|
65
|
+
* the list of live `instances`.
|
|
66
|
+
*/
|
|
67
|
+
export declare function getComponentGroups(): ComponentGroup[];
|
|
68
|
+
//# sourceMappingURL=registry.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"registry.d.ts","sourceRoot":"","sources":["../../../../src/registry.ts"],"names":[],"mappings":"AAAA;;;;;GAKG;AAEH,OAAO,EAAE,KAAK,SAAS,EAAS,KAAK,SAAS,EAAE,MAAM,OAAO,CAAC;AAC9D,OAAO,KAAK,EAAE,cAAc,EAAE,MAAM,SAAS,CAAC;AAe9C;;;GAGG;AACH,eAAO,MAAM,aAAa,EAAE,SAAS,CAAC;IACpC,IAAI,EAAE,OAAO,GAAG,SAAS,GAAG,QAAQ,CAAC;IACrC,SAAS,EAAE,SAAS,CAAC;CACtB,CAAqB,CAAC;AAIvB;;;GAGG;AACH,wBAAgB,iBAAiB,CAC/B,SAAS,EAAE,SAAS,EACpB,MAAM,EAAE,QAAQ,GACf,IAAI,CAqBN;AAED;;;GAGG;AACH,wBAAgB,mBAAmB,CACjC,SAAS,EAAE,SAAS,EACpB,MAAM,EAAE,QAAQ,GAAG,IAAI,GACtB,IAAI,CAmBN;AAED;;;GAGG;AACH,wBAAgB,YAAY,CAAC,SAAS,EAAE,SAAS,GAAG,IAAI,CAUvD;AAED;;;GAGG;AACH,wBAAgB,gBAAgB,CAAC,SAAS,EAAE,SAAS,GAAG,MAAM,CAO7D;AAED;;GAEG;AACH,wBAAgB,iBAAiB,CAAC,SAAS,EAAE,SAAS,GAAG,MAAM,CAO9D;AAED;;GAEG;AACH,wBAAgB,kBAAkB,CAAC,SAAS,EAAE,SAAS,GAAG,SAAS,GAAG,IAAI,CAOzE;AAID;;GAEG;AACH,wBAAgB,gBAAgB,IAAI,SAAS,EAAE,CAU9C;AAED;;GAEG;AACH,wBAAgB,mBAAmB,CAAC,MAAM,EAAE,QAAQ,GAAG,SAAS,EAAE,CAQjE;AAED;;GAEG;AACH,wBAAgB,gBAAgB,CAAC,SAAS,EAAE,SAAS,GAAG,MAAM,CAQ7D;AAED;;GAEG;AACH,wBAAgB,SAAS,CAAC,SAAS,EAAE,SAAS,GAAG,QAAQ,GAAG,IAAI,CAO/D;AAED;;;;;GAKG;AACH,wBAAgB,kBAAkB,IAAI,cAAc,EAAE,CA4CrD"}
|