{"version":3,"file":"login.obs.js","sources":["../../src/Security/types.partial.ts","../../src/Security/breakpointObserver.partial.obs","../../src/Security/Login/htmlRenderer.partial.obs","../../src/Security/Login/credentialLogin.partial.obs","../../src/Security/Login/divider.partial.obs","../../../Rock.JavaScript.Obsidian/node_modules/style-inject/dist/style-inject.es.js","../../src/Security/Login/externalLogin.partial.obs","../../src/Security/Login/loginMethodPicker.partial.obs","../../src/Security/Login/passwordlessLoginStartStep.partial.obs","../../src/Security/Login/passwordlessLoginVerifyStep.partial.obs","../../src/Security/Login/passwordlessLogin.partial.obs","../../src/Security/login.obs"],"sourcesContent":["// \n// Copyright by the Spark Development Network\n//\n// Licensed under the Rock Community License (the \"License\");\n// you may not use this file except in compliance with the License.\n// You may obtain a copy of the License at\n//\n// http://www.rockrms.com/license\n//\n// Unless required by applicable law or agreed to in writing, software\n// distributed under the License is distributed on an \"AS IS\" BASIS,\n// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n// See the License for the specific language governing permissions and\n// limitations under the License.\n// \n//\n\nimport { InjectionKey, Ref, inject, provide } from \"vue\";\n\nexport type CodeBoxCharacterController = {\n focus(): void;\n clear(): void;\n boxIndex: number;\n};\n\nexport type Breakpoint = \"xs\" | \"sm\" | \"md\" | \"lg\" | \"xl\" | \"unknown\";\n\n/**\n * An injection key to provide a reactive bootstrap breakpoint to descendent components.\n */\nconst bootstrapBreakpointInjectionKey: InjectionKey> = Symbol(\"bootstrap-breakpoint\");\n\n/**\n * Provides the reactive breakpoint that can be used by child components.\n */\nexport function provideBreakpoint(breakpoint: Ref): void {\n provide(bootstrapBreakpointInjectionKey, breakpoint);\n}\n\n/**\n * Gets the breakpoint that can be used to provide responsive behavior.\n */\nexport function useBreakpoint(): Ref {\n const breakpoint = inject(bootstrapBreakpointInjectionKey);\n\n if (!breakpoint) {\n throw \"provideBreakpoint must be invoked before useBreakpoint can be used. If useBreakpoint is in a component where is used in the template, then use the @breakpoint output binding to get the breakpoint.\";\n }\n\n return breakpoint;\n}","\n\n \n\n \n\n\n","\n\n