├── dist └── manifest.json ├── src ├── Features │ ├── SupportConsoleCommands │ │ ├── Commands │ │ │ ├── livewire.view.stub │ │ │ ├── livewire.form.stub │ │ │ ├── livewire.attribute.stub │ │ │ ├── livewire.pest.stub │ │ │ ├── livewire.stub │ │ │ ├── MakeLivewireCommand.php │ │ │ ├── livewire.inline.stub │ │ │ ├── MvCommand.php │ │ │ ├── RmCommand.php │ │ │ ├── CpCommand.php │ │ │ ├── TouchCommand.php │ │ │ ├── livewire.layout.stub │ │ │ ├── Upgrade │ │ │ │ ├── ClearViewCache.php │ │ │ │ ├── RemoveDeferModifierFromWireModelDirectives.php │ │ │ │ ├── AddLiveModifierToWireModelDirectives.php │ │ │ │ ├── RemovePrefetchModifierFromWireClickDirective.php │ │ │ │ ├── ChangeLazyToBlurModifierOnWireModelDirectives.php │ │ │ │ ├── RemovePreventModifierFromWireSubmitDirective.php │ │ │ │ ├── ChangeWireLoadDirectiveToWireInit.php │ │ │ │ ├── RemoveDeferModifierFromEntangleDirectives.php │ │ │ │ ├── ThirdPartyUpgradeNotice.php │ │ │ │ ├── ReplaceTemporaryUploadedFileNamespace.php │ │ │ │ ├── RepublishNavigation.php │ │ │ │ ├── UpgradeConfigInstructions.php │ │ │ │ ├── UpgradeIntroduction.php │ │ │ │ ├── AddLiveModifierToEntangleDirectives.php │ │ │ │ ├── ChangeForgetComputedToUnset.php │ │ │ │ ├── UpgradeAlpineInstructions.php │ │ │ │ ├── ChangeDefaultLayoutView.php │ │ │ │ └── ChangeTestAssertionMethods.php │ │ │ ├── livewire.test.stub │ │ │ ├── the-tao.php │ │ │ ├── FormCommand.php │ │ │ ├── AttributeCommand.php │ │ │ ├── PublishCommand.php │ │ │ ├── FileManipulationCommand.php │ │ │ ├── StubsCommand.php │ │ │ ├── ComponentParserFromExistingComponent.php │ │ │ ├── LayoutCommand.php │ │ │ └── DeleteCommand.php │ │ └── SupportConsoleCommands.php │ ├── SupportScriptsAndAssets │ │ ├── test.js │ │ └── non-livewire-asset.js │ ├── SupportFileUploads │ │ ├── browser_test_image.png │ │ ├── browser_test_image2.png │ │ ├── browser_test_image_big.jpg │ │ ├── FileNotPreviewableException.php │ │ ├── MissingFileUploadsTraitException.php │ │ ├── S3DoesntSupportMultipleFileUploads.php │ │ ├── FilePreviewController.php │ │ ├── SupportFileUploads.php │ │ ├── FileUploadController.php │ │ ├── FileUploadSynth.php │ │ └── GenerateSignedUploadUrl.php │ ├── SupportWireLoading │ │ └── browser_test_image.png │ ├── SupportPagination │ │ ├── WithoutUrlPagination.php │ │ ├── PaginationUrl.php │ │ ├── HandlesPagination.php │ │ └── views │ │ │ └── simple-bootstrap.blade.php │ ├── SupportNavigate │ │ ├── test-views │ │ │ ├── test-navigate-asset.js │ │ │ ├── layout.blade.php │ │ │ ├── changed-layout.blade.php │ │ │ ├── tracked-layout.blade.php │ │ │ ├── changed-tracked-layout.blade.php │ │ │ ├── html-attributes1.blade.php │ │ │ ├── html-attributes2.blade.php │ │ │ ├── layout-with-noscript.blade.php │ │ │ └── layout-with-navigate-outside.blade.php │ │ └── SupportNavigate.php │ ├── SupportAttributes │ │ ├── AttributeLevel.php │ │ ├── HandlesAttributes.php │ │ ├── AttributeCollection.php │ │ └── Attribute.php │ ├── SupportIsolating │ │ ├── BaseIsolate.php │ │ └── SupportIsolating.php │ ├── SupportJsEvaluation │ │ ├── HandlesJsEvaluation.php │ │ ├── SupportJsEvaluation.php │ │ └── BaseJs.php │ ├── SupportValidation │ │ ├── BaseRule.php │ │ └── SupportValidation.php │ ├── SupportTesting │ │ ├── ShowDuskComponent.php │ │ ├── Render.php │ │ ├── RequestBroker.php │ │ ├── ComponentState.php │ │ ├── SubsequentRender.php │ │ └── InitialRender.php │ ├── SupportWireables │ │ ├── SupportWireables.php │ │ └── WireableSynth.php │ ├── SupportPageComponents │ │ ├── BaseTitle.php │ │ ├── BaseLayout.php │ │ ├── MissingLayoutException.php │ │ ├── HandlesPageComponents.php │ │ └── PageComponentConfig.php │ ├── SupportLazyLoading │ │ └── BaseLazy.php │ ├── SupportModels │ │ ├── SupportModels.php │ │ ├── ModelSynth.php │ │ └── EloquentCollectionSynth.php │ ├── SupportLockedProperties │ │ ├── BaseLocked.php │ │ └── CannotUpdateLockedPropertyException.php │ ├── SupportStreaming │ │ ├── HandlesStreaming.php │ │ └── SupportStreaming.php │ ├── SupportReactiveProps │ │ ├── CannotMutateReactivePropException.php │ │ ├── SupportReactiveProps.php │ │ └── BaseReactive.php │ ├── SupportLocales │ │ └── SupportLocales.php │ ├── SupportFormObjects │ │ ├── HandlesFormObjects.php │ │ ├── SupportFormObjects.php │ │ └── FormObjectSynth.php │ ├── SupportComputed │ │ ├── CannotCallComputedDirectlyException.php │ │ └── SupportLegacyComputedPropertySyntax.php │ ├── SupportDisablingBackButtonCache │ │ ├── HandlesDisablingBackButtonCache.php │ │ ├── SupportDisablingBackButtonCache.php │ │ └── DisableBackButtonCacheMiddleware.php │ ├── SupportEvents │ │ ├── HandlesEvents.php │ │ ├── BaseOn.php │ │ ├── Event.php │ │ ├── fake-echo.js │ │ └── TestsEvents.php │ ├── SupportLifecycleHooks │ │ └── DirectlyCallingLifecycleHooksNotAllowedException.php │ ├── SupportMultipleRootElementDetection │ │ ├── MultipleRootElementsDetectedException.php │ │ └── SupportMultipleRootElementDetection.php │ ├── SupportLegacyModels │ │ └── CannotBindToModelDataWithoutValidationRuleException.php │ ├── SupportTeleporting │ │ └── SupportTeleporting.php │ ├── SupportBladeAttributes │ │ └── SupportBladeAttributes.php │ ├── SupportEntangle │ │ └── SupportEntangle.php │ ├── SupportRedirects │ │ ├── HandlesRedirects.php │ │ ├── Redirector.php │ │ ├── TestsRedirects.php │ │ └── SupportRedirects.php │ ├── SupportFileDownloads │ │ ├── TestsFileDownloads.php │ │ └── SupportFileDownloads.php │ ├── SupportSession │ │ └── BaseSession.php │ ├── SupportWireModelingNestedComponents │ │ └── BaseModelable.php │ ├── SupportQueryString │ │ └── SupportQueryString.php │ ├── SupportNestedComponentListeners │ │ └── SupportNestedComponentListeners.php │ ├── SupportChecksumErrorDebugging │ │ └── SupportChecksumErrorDebugging.php │ └── SupportWireCurrent │ │ └── test-views │ │ └── navbar-sidebar.blade.php ├── Exceptions │ ├── BypassViewHandler.php │ ├── ComponentNotFoundException.php │ ├── EventHandlerDoesNotExist.php │ ├── NonPublicComponentMethodCall.php │ ├── ComponentAttributeMissingOnDynamicComponentException.php │ ├── MethodNotFoundException.php │ ├── PropertyNotFoundException.php │ ├── MissingRulesException.php │ ├── PublicPropertyNotFoundException.php │ ├── RootTagMissingFromViewException.php │ └── LivewirePageExpiredBecauseNewDeploymentHasSignificantEnoughChanges.php ├── Form.php ├── Wireable.php ├── WithPagination.php ├── Attributes │ ├── Js.php │ ├── Lazy.php │ ├── Url.php │ ├── Isolate.php │ ├── Title.php │ ├── Computed.php │ ├── Layout.php │ ├── Locked.php │ ├── Reactive.php │ ├── Renderless.php │ ├── Modelable.php │ ├── Session.php │ ├── Rule.php │ ├── On.php │ └── Validate.php ├── Attribute.php ├── WithFileUploads.php ├── WithoutUrlPagination.php ├── Mechanisms │ ├── Mechanism.php │ ├── CompileLivewireTags │ │ └── CompileLivewireTags.php │ ├── HandleComponents │ │ ├── BaseRenderless.php │ │ ├── Synthesizers │ │ │ ├── StringableSynth.php │ │ │ ├── IntSynth.php │ │ │ ├── FloatSynth.php │ │ │ ├── StdClassSynth.php │ │ │ ├── EnumSynth.php │ │ │ ├── ArraySynth.php │ │ │ ├── CollectionSynth.php │ │ │ ├── CarbonSynth.php │ │ │ └── Synth.php │ │ ├── CorruptComponentPayloadException.php │ │ ├── Checksum.php │ │ ├── ViewContext.php │ │ └── ComponentContext.php │ ├── RenderComponent.php │ ├── ExtendBlade │ │ ├── DeterministicBladeKeys.php │ │ └── ExtendedCompilerEngine.php │ └── DataStore.php ├── Pipe.php ├── Wrapped.php ├── Transparency.php ├── WireDirective.php ├── Livewire.php ├── EventBus.php └── ComponentHook.php ├── LICENSE.md ├── composer.json └── README.md /dist/manifest.json: -------------------------------------------------------------------------------- 1 | 2 | {"/livewire.js":"13b7c601"} 3 | -------------------------------------------------------------------------------- /src/Features/SupportConsoleCommands/Commands/livewire.view.stub: -------------------------------------------------------------------------------- 1 |