All Downloads are FREE. Search and download functionalities are using the official Maven repository.

web-interface.assets.LoadingPage.472622149827c1587209.js.map Maven / Gradle / Ivy

There is a newer version: 6.0.1
Show newest version
{"version":3,"sources":["webpack:///./src/components/login/LoginBox.jsx","webpack:///./src/pages/LoadingPage.tsx"],"names":["Wrapper","styled","div","LoginCol","Col","theme","css","colors","global","contentBackground","variant","light","navigationBoxShadow","darker","dark","LoginBox","children","className","md","mdOffset","readFromConfig","xs","xsOffset","propTypes","PropTypes","node","isRequired","LoadingPageStyles","createGlobalStyle","authStyles","LoadingPage","text","title","name","delay","string","defaultProps"],"mappings":"6GAAA,sGAwBMA,EAAUC,UAAOC,IAAV,wEAAGD,CAAH,sKAkBPE,EAAWF,kBAAOG,KAAV,yEAAGH,EAAY,gBAAGI,EAAH,EAAGA,MAAH,OAAeC,cAAd,CAAD,wIAEPD,EAAME,OAAOC,OAAOC,kBACpBJ,EAAME,OAAOG,QAAQC,MAArB,QAEGN,EAAME,OAAOC,OAAOI,oBAGhCP,EAAME,OAAOG,QAAQG,OAArB,QACOR,EAAME,OAAOG,QAAQI,KAArB,YAIdC,EAAW,SAAC,GAAiB,IAAfC,EAAe,EAAfA,SAClB,OACE,kBAAChB,EAAD,CAASiB,UAAU,aACjB,kBAAC,IAAD,KACE,kBAAC,IAAD,CAAKC,GAAI,EAAGC,SAAU,GACpB,kBAAC,IAAD,CAAqBC,gBAAc,MAGvC,kBAAC,IAAD,KACE,kBAACjB,EAAD,CAAUe,GAAI,EAAGC,SAAU,EAAGE,GAAI,EAAGC,SAAU,GAC5CN,MAOXD,EAASQ,UAAY,CACnBP,SAAUQ,IAAUC,KAAKC,YAGZX,O,4JChDf,I,IAAMY,EAAoBC,4BAAH,I,EAAA,c,kBAAA,E,0EACnBC,KAGEC,EAAc,SAAC,GAAoB,IAAlBC,EAAkB,EAAlBA,KACrB,OACE,gBAAC,IAAD,CAAeC,MAAM,cACnB,gBAACL,EAAD,MACA,gBAAC,IAAD,KACE,8BAAQ,gBAAC,IAAD,CAAMM,KAAK,UAAnB,uBACA,yBACE,gBAAC,KAAD,CAASF,KAAMA,EAAMG,MAAO,QAOtCJ,EAAYP,UAAY,CACtBQ,KAAMP,IAAUW,QAGlBL,EAAYM,aAAe,CACzBL,KAAM,2BAGOD","file":"LoadingPage.472622149827c1587209.js","sourcesContent":["/*\n * Copyright (C) 2020 Graylog, Inc.\n *\n * This program is free software: you can redistribute it and/or modify\n * it under the terms of the Server Side Public License, version 1,\n * as published by MongoDB, Inc.\n *\n * This program is distributed in the hope that it will be useful,\n * but WITHOUT ANY WARRANTY; without even the implied warranty of\n * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the\n * Server Side Public License for more details.\n *\n * You should have received a copy of the Server Side Public License\n * along with this program. If not, see\n * .\n */\nimport React from 'react';\nimport PropTypes from 'prop-types';\nimport styled, { css } from 'styled-components';\n\nimport { Col, Row } from 'components/graylog';\n\nimport PublicNotifications from '../common/PublicNotifications';\n\nconst Wrapper = styled.div`\n  display: flex;\n  align-items: center;\n  justify-content: flex-start;\n  padding-top: 25vh;\n  flex-direction: column;\n  height: 100%;\n  \n  .row {\n    width: 100%;\n  }\n  \n  &::before,\n  &::after {\n    content: none;\n  }\n`;\n\nconst LoginCol = styled(Col)(({ theme }) => css`\n  padding: 15px;\n  background-color: ${theme.colors.global.contentBackground};\n  border: 1px solid ${theme.colors.variant.light.default};\n  border-radius: 4px;\n  box-shadow: 0 0 21px ${theme.colors.global.navigationBoxShadow};\n  \n  legend {\n    color: ${theme.colors.variant.darker.default};\n    border-color: ${theme.colors.variant.dark.default};\n  }\n`);\n\nconst LoginBox = ({ children }) => {\n  return (\n    \n      \n        \n          \n        \n      \n      \n        \n          {children}\n        \n      \n    \n  );\n};\n\nLoginBox.propTypes = {\n  children: PropTypes.node.isRequired,\n};\n\nexport default LoginBox;\n","/*\n * Copyright (C) 2020 Graylog, Inc.\n *\n * This program is free software: you can redistribute it and/or modify\n * it under the terms of the Server Side Public License, version 1,\n * as published by MongoDB, Inc.\n *\n * This program is distributed in the hope that it will be useful,\n * but WITHOUT ANY WARRANTY; without even the implied warranty of\n * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the\n * Server Side Public License for more details.\n *\n * You should have received a copy of the Server Side Public License\n * along with this program. If not, see\n * .\n */\nimport * as React from 'react';\nimport PropTypes from 'prop-types';\nimport { createGlobalStyle } from 'styled-components';\n\nimport { DocumentTitle, Spinner, Icon } from 'components/common';\nimport LoginBox from 'components/login/LoginBox';\nimport authStyles from 'theme/styles/authStyles';\n\ntype Props = {\n  text: string,\n};\n\nconst LoadingPageStyles = createGlobalStyle`\n  ${authStyles}\n`;\n\nconst LoadingPage = ({ text }: Props) => {\n  return (\n    \n      \n      \n         Welcome to Graylog\n        

\n \n

\n
\n
\n );\n};\n\nLoadingPage.propTypes = {\n text: PropTypes.string,\n};\n\nLoadingPage.defaultProps = {\n text: 'Loading, please wait...',\n};\n\nexport default LoadingPage;\n"],"sourceRoot":""}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy