{"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":["// \r\n// Copyright by the Spark Development Network\r\n//\r\n// Licensed under the Rock Community License (the \"License\");\r\n// you may not use this file except in compliance with the License.\r\n// You may obtain a copy of the License at\r\n//\r\n// http://www.rockrms.com/license\r\n//\r\n// Unless required by applicable law or agreed to in writing, software\r\n// distributed under the License is distributed on an \"AS IS\" BASIS,\r\n// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\r\n// See the License for the specific language governing permissions and\r\n// limitations under the License.\r\n// \r\n//\r\n\r\nimport { InjectionKey, Ref, inject, provide } from \"vue\";\r\n\r\nexport type CodeBoxCharacterController = {\r\n focus(): void;\r\n clear(): void;\r\n boxIndex: number;\r\n};\r\n\r\nexport type Breakpoint = \"xs\" | \"sm\" | \"md\" | \"lg\" | \"xl\" | \"unknown\";\r\n\r\n/**\r\n * An injection key to provide a reactive bootstrap breakpoint to descendent components.\r\n */\r\nconst bootstrapBreakpointInjectionKey: InjectionKey> = Symbol(\"bootstrap-breakpoint\");\r\n\r\n/**\r\n * Provides the reactive breakpoint that can be used by child components.\r\n */\r\nexport function provideBreakpoint(breakpoint: Ref): void {\r\n provide(bootstrapBreakpointInjectionKey, breakpoint);\r\n}\r\n\r\n/**\r\n * Gets the breakpoint that can be used to provide responsive behavior.\r\n */\r\nexport function useBreakpoint(): Ref {\r\n const breakpoint = inject(bootstrapBreakpointInjectionKey);\r\n\r\n if (!breakpoint) {\r\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.\";\r\n }\r\n\r\n return breakpoint;\r\n}","\r\n\r\n \r\n\r\n \r\n\r\n\r\n","\r\n\r\n