25개 이상의 토픽을 선택하실 수 없습니다. Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 

1 line
19 KiB

  1. {"ast":null,"code":"import _defineProperty from \"@babel/runtime/helpers/esm/defineProperty\";\n\nfunction ownKeys(object, enumerableOnly) { var keys = Object.keys(object); if (Object.getOwnPropertySymbols) { var symbols = Object.getOwnPropertySymbols(object); if (enumerableOnly) symbols = symbols.filter(function (sym) { return Object.getOwnPropertyDescriptor(object, sym).enumerable; }); keys.push.apply(keys, symbols); } return keys; }\n\nfunction _objectSpread(target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i] != null ? arguments[i] : {}; if (i % 2) { ownKeys(Object(source), true).forEach(function (key) { _defineProperty(target, key, source[key]); }); } else if (Object.getOwnPropertyDescriptors) { Object.defineProperties(target, Object.getOwnPropertyDescriptors(source)); } else { ownKeys(Object(source)).forEach(function (key) { Object.defineProperty(target, key, Object.getOwnPropertyDescriptor(source, key)); }); } } return target; }\n\nvar hexColorToRGB = function hexColorToRGB(hexColor) {\n var detectShorthand = /^#?([a-f\\d])([a-f\\d])([a-f\\d])$/i; // #000 vs #000000\n\n hexColor = hexColor.replace(detectShorthand, function (m, r, g, b) {\n return r + r + g + g + b + b;\n });\n var hex_array = /^#?([a-f\\d]{2})([a-f\\d]{2})([a-f\\d]{2})$/i.exec(hexColor); // #000000 to #ffffff\n\n return hex_array ? {\n r: parseInt(hex_array[1], 16),\n // 0-255\n g: parseInt(hex_array[2], 16),\n // 0-255\n b: parseInt(hex_array[3], 16) // 0-255\n\n } : null;\n};\n\nvar hexToRGBAlpha = function hexToRGBAlpha(hexColor, alpha) {\n var rgb = hexColorToRGB(hexColor);\n return \"rgba(\".concat(rgb.r, \",\").concat(rgb.g, \",\").concat(rgb.b, \",\").concat(alpha, \")\");\n};\n\nvar drawerWidth = 260;\nvar transition = {\n transition: \"all 0.33s cubic-bezier(0.685, 0.0473, 0.346, 1)\"\n};\nvar conatinerFluid = {\n paddingRight: \"15px\",\n paddingLeft: \"15px\",\n marginRight: \"auto\",\n marginLeft: \"auto\",\n width: \"100%\"\n};\n\nvar container = _objectSpread({}, conatinerFluid, {\n \"@media (min-width: 576px)\": {\n maxWidth: \"540px\"\n },\n \"@media (min-width: 768px)\": {\n maxWidth: \"720px\"\n },\n \"@media (min-width: 992px)\": {\n maxWidth: \"960px\"\n },\n \"@media (min-width: 1200px)\": {\n maxWidth: \"1140px\"\n }\n});\n\nvar boxShadow = {\n boxShadow: \"0 10px 30px -12px rgba(0, 0, 0, 0.42), 0 4px 25px 0px rgba(0, 0, 0, 0.12), 0 8px 10px -5px rgba(0, 0, 0, 0.2)\"\n};\nvar card = {\n display: \"inline-block\",\n position: \"relative\",\n width: \"100%\",\n margin: \"25px 0\",\n boxShadow: \"0 1px 4px 0 rgba(0, 0, 0, 0.14)\",\n borderRadius: \"3px\",\n color: \"rgba(0, 0, 0, 0.87)\",\n background: \"#fff\"\n};\nvar defaultFont = {\n fontFamily: '\"Roboto\", \"Helvetica\", \"Arial\", sans-serif',\n fontWeight: \"300\",\n lineHeight: \"1.5em\"\n};\nvar primaryColor = \"#212121\";\nvar warningColor = \"#ff9800\";\nvar dangerColor = \"#f44336\";\nvar successColor = \"#4caf50\";\nvar infoColor = \"#212121\";\nvar roseColor = \"#e91e63\";\nvar grayColor = \"#ffffff\";\nvar primaryBoxShadow = {\n boxShadow: \"0 12px 20px -10px \".concat(hexToRGBAlpha(primaryColor, 0.28), \", 0 4px 20px 0px rgba(0, 0, 0, 0.12), 0 7px 8px -5px \").concat(hexToRGBAlpha(primaryColor, 0.2))\n};\nvar infoBoxShadow = {\n boxShadow: \"0 12px 20px -10px \".concat(hexToRGBAlpha(infoColor, 0.28), \", 0 4px 20px 0px rgba(0, 0, 0, 0.12), 0 7px 8px -5px \").concat(hexToRGBAlpha(infoColor, 0.2))\n};\nvar successBoxShadow = {\n boxShadow: \"0 12px 20px -10px \".concat(hexToRGBAlpha(successColor, 0.28), \", 0 4px 20px 0px rgba(0, 0, 0, 0.12), 0 7px 8px -5px \").concat(hexToRGBAlpha(successColor, 0.2))\n};\nvar warningBoxShadow = {\n boxShadow: \"0 12px 20px -10px \".concat(hexToRGBAlpha(warningColor, 0.28), \", 0 4px 20px 0px rgba(0, 0, 0, 0.12), 0 7px 8px -5px \").concat(hexToRGBAlpha(warningColor, 0.2))\n};\nvar dangerBoxShadow = {\n boxShadow: \"0 12px 20px -10px \".concat(hexToRGBAlpha(dangerColor, 0.28), \", 0 4px 20px 0px rgba(0, 0, 0, 0.12), 0 7px 8px -5px \").concat(hexToRGBAlpha(dangerColor, 0.2))\n};\nvar roseBoxShadow = {\n boxShadow: \"0 4px 20px 0px \".concat(hexToRGBAlpha(\"#000\", 0.14), \", 0 7px 10px -5px \").concat(hexToRGBAlpha(roseColor, 0.4))\n};\n\nvar warningCardHeader = _objectSpread({\n color: \"#fff\",\n background: \"linear-gradient(60deg, #ffa726, #fb8c00)\"\n}, warningBoxShadow);\n\nvar successCardHeader = _objectSpread({\n color: \"#fff\",\n background: \"linear-gradient(60deg, #66bb6a, #43a047)\"\n}, successBoxShadow);\n\nvar dangerCardHeader = _objectSpread({\n color: \"#fff\",\n background: \"linear-gradient(60deg, #ef5350, #e53935)\"\n}, dangerBoxShadow);\n\nvar infoCardHeader = _objectSpread({\n color: \"#fff\",\n background: \"#212121\"\n}, infoBoxShadow);\n\nvar primaryCardHeader = _objectSpread({\n color: \"#fff\",\n background: \"linear-gradient(60deg, #ab47bc, #8e24aa)\"\n}, primaryBoxShadow);\n\nvar roseCardHeader = _objectSpread({\n color: \"#fff\",\n background: \"linear-gradient(60deg, #ec407a, #d81b60)\"\n}, roseBoxShadow);\n\nvar cardActions = _objectSpread({\n margin: \"0 20px 10px\",\n paddingTop: \"10px\",\n borderTop: \"1px solid #eeeeee\",\n height: \"auto\"\n}, defaultFont);\n\nvar cardHeader = {\n margin: \"-30px 15px 0\",\n borderRadius: \"3px\",\n padding: \"15px\"\n};\nvar defaultBoxShadow = {\n border: \"0\",\n borderRadius: \"3px\",\n boxShadow: \"0 10px 20px -12px rgba(0, 0, 0, 0.42), 0 3px 20px 0px rgba(0, 0, 0, 0.12), 0 8px 10px -5px rgba(0, 0, 0, 0.2)\",\n padding: \"10px 0\",\n transition: \"all 150ms ease 0s\"\n};\nvar title = {\n color: \"#ffffff\",\n margin: \"1.75rem 0 0.875rem\",\n textDecoration: \"none\",\n fontWeight: \"700\",\n fontFamily: \"\\\"Roboto Slab\\\", \\\"Times New Roman\\\", serif\"\n};\n\nvar cardTitle = _objectSpread({}, title, {\n marginTop: \".625rem\"\n});\n\nvar cardLink = {\n \"& + $cardLink\": {\n marginLeft: \"1.25rem\"\n }\n};\nvar cardSubtitle = {\n marginBottom: \"0\",\n marginTop: \"-.375rem\"\n};\nexport { hexToRGBAlpha //variables\n, drawerWidth, transition, container, conatinerFluid, boxShadow, card, defaultFont, primaryColor, warningColor, dangerColor, successColor, infoColor, roseColor, grayColor, primaryBoxShadow, infoBoxShadow, successBoxShadow, warningBoxShadow, dangerBoxShadow, roseBoxShadow, warningCardHeader, successCardHeader, dangerCardHeader, infoCardHeader, primaryCardHeader, roseCardHeader, cardActions, cardHeader, defaultBoxShadow, title, cardTitle, cardLink, cardSubtitle };","map":{"version":3,"sources":["C:/tbg-ecomm-nextjs/assets/jss/nextjs-material-kit.js"],"names":["hexColorToRGB","hexColor","detectShorthand","replace","m","r","g","b","hex_array","exec","parseInt","hexToRGBAlpha","alpha","rgb","drawerWidth","transition","conatinerFluid","paddingRight","paddingLeft","marginRight","marginLeft","width","container","maxWidth","boxShadow","card","display","position","margin","borderRadius","color","background","defaultFont","fontFamily","fontWeight","lineHeight","primaryColor","warningColor","dangerColor","successColor","infoColor","roseColor","grayColor","primaryBoxShadow","infoBoxShadow","successBoxShadow","warningBoxShadow","dangerBoxShadow","roseBoxShadow","warningCardHeader","successCardHeader","dangerCardHeader","infoCardHeader","primaryCardHeader","roseCardHeader","cardActions","paddingTop","borderTop","height","cardHeader","padding","defaultBoxShadow","border","title","textDecoration","cardTitle","marginTop","cardLink","cardSubtitle","marginBottom"],"mappings":"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","sourcesContent":[" const hexColorToRGB = function(hexColor) {\r\n let detectShorthand = /^#?([a-f\\d])([a-f\\d])([a-f\\d])$/i; // #000 vs #000000\r\n hexColor = hexColor.replace(detectShorthand, function(m, r, g, b) {\r\n return r + r + g + g + b + b;\r\n });\r\n \r\n const hex_array = /^#?([a-f\\d]{2})([a-f\\d]{2})([a-f\\d]{2})$/i.exec(hexColor); // #000000 to #ffffff\r\n return hex_array\r\n ? {\r\n r: parseInt(hex_array[1], 16), // 0-255\r\n g: parseInt(hex_array[2], 16), // 0-255\r\n b: parseInt(hex_array[3], 16) // 0-255\r\n }\r\n : null;\r\n };\r\n \r\n const hexToRGBAlpha = function(hexColor, alpha) {\r\n let rgb = hexColorToRGB(hexColor);\r\n return `rgba(${rgb.r},${rgb.g},${rgb.b},${alpha})`;\r\n };\r\n \r\n const drawerWidth = 260;\r\n \r\n const transition = {\r\n transition: \"all 0.33s cubic-bezier(0.685, 0.0473, 0.346, 1)\"\r\n };\r\n \r\n const conatinerFluid = {\r\n paddingRight: \"15px\",\r\n paddingLeft: \"15px\",\r\n marginRight: \"auto\",\r\n marginLeft: \"auto\",\r\n width: \"100%\"\r\n };\r\n const container = {\r\n ...conatinerFluid,\r\n \"@media (min-width: 576px)\": {\r\n maxWidth: \"540px\"\r\n },\r\n \"@media (min-width: 768px)\": {\r\n maxWidth: \"720px\"\r\n },\r\n \"@media (min-width: 992px)\": {\r\n maxWidth: \"960px\"\r\n },\r\n \"@media (min-width: 1200px)\": {\r\n maxWidth: \"1140px\"\r\n }\r\n };\r\n \r\n const boxShadow = {\r\n boxShadow:\r\n \"0 10px 30px -12px rgba(0, 0, 0, 0.42), 0 4px 25px 0px rgba(0, 0, 0, 0.12), 0 8px 10px -5px rgba(0, 0, 0, 0.2)\"\r\n };\r\n \r\n const card = {\r\n display: \"inline-block\",\r\n position: \"relative\",\r\n width: \"100%\",\r\n margin: \"25px 0\",\r\n boxShadow: \"0 1px 4px 0 rgba(0, 0, 0, 0.14)\",\r\n borderRadius: \"3px\",\r\n color: \"rgba(0, 0, 0, 0.87)\",\r\n background: \"#fff\"\r\n };\r\n \r\n const defaultFont = {\r\n fontFamily: '\"Roboto\", \"Helvetica\", \"Arial\", sans-serif',\r\n fontWeight: \"300\",\r\n lineHeight: \"1.5em\"\r\n };\r\n \r\n const primaryColor = \"#212121\";\r\n const warningColor = \"#ff9800\";\r\n const dangerColor = \"#f44336\";\r\n const successColor = \"#4caf50\";\r\n const infoColor = \"#212121\";\r\n const roseColor = \"#e91e63\";\r\n const grayColor = \"#ffffff\";\r\n \r\n const primaryBoxShadow = {\r\n boxShadow: `0 12px 20px -10px ${hexToRGBAlpha(\r\n primaryColor,\r\n 0.28\r\n )}, 0 4px 20px 0px rgba(0, 0, 0, 0.12), 0 7px 8px -5px ${hexToRGBAlpha(\r\n primaryColor,\r\n 0.2\r\n )}`\r\n };\r\n const infoBoxShadow = {\r\n boxShadow: `0 12px 20px -10px ${hexToRGBAlpha(\r\n infoColor,\r\n 0.28\r\n )}, 0 4px 20px 0px rgba(0, 0, 0, 0.12), 0 7px 8px -5px ${hexToRGBAlpha(\r\n infoColor,\r\n 0.2\r\n )}`\r\n };\r\n const successBoxShadow = {\r\n boxShadow: `0 12px 20px -10px ${hexToRGBAlpha(\r\n successColor,\r\n 0.28\r\n )}, 0 4px 20px 0px rgba(0, 0, 0, 0.12), 0 7px 8px -5px ${hexToRGBAlpha(\r\n successColor,\r\n 0.2\r\n )}`\r\n };\r\n const warningBoxShadow = {\r\n boxShadow: `0 12px 20px -10px ${hexToRGBAlpha(\r\n warningColor,\r\n 0.28\r\n )}, 0 4px 20px 0px rgba(0, 0, 0, 0.12), 0 7px 8px -5px ${hexToRGBAlpha(\r\n warningColor,\r\n 0.2\r\n )}`\r\n };\r\n const dangerBoxShadow = {\r\n boxShadow: `0 12px 20px -10px ${hexToRGBAlpha(\r\n dangerColor,\r\n 0.28\r\n )}, 0 4px 20px 0px rgba(0, 0, 0, 0.12), 0 7px 8px -5px ${hexToRGBAlpha(\r\n dangerColor,\r\n 0.2\r\n )}`\r\n };\r\n const roseBoxShadow = {\r\n boxShadow: `0 4px 20px 0px ${hexToRGBAlpha(\r\n \"#000\",\r\n 0.14\r\n )}, 0 7px 10px -5px ${hexToRGBAlpha(roseColor, 0.4)}`\r\n };\r\n \r\n const warningCardHeader = {\r\n color: \"#fff\",\r\n background: \"linear-gradient(60deg, #ffa726, #fb8c00)\",\r\n ...warningBoxShadow\r\n };\r\n const successCardHeader = {\r\n color: \"#fff\",\r\n background: \"linear-gradient(60deg, #66bb6a, #43a047)\",\r\n ...successBoxShadow\r\n };\r\n const dangerCardHeader = {\r\n color: \"#fff\",\r\n background: \"linear-gradient(60deg, #ef5350, #e53935)\",\r\n ...dangerBoxShadow\r\n };\r\n const infoCardHeader = {\r\n color: \"#fff\",\r\n background: \"#212121\",\r\n ...infoBoxShadow\r\n };\r\n const primaryCardHeader = {\r\n color: \"#fff\",\r\n background: \"linear-gradient(60deg, #ab47bc, #8e24aa)\",\r\n ...primaryBoxShadow\r\n };\r\n const roseCardHeader = {\r\n color: \"#fff\",\r\n background: \"linear-gradient(60deg, #ec407a, #d81b60)\",\r\n ...roseBoxShadow\r\n };\r\n const cardActions = {\r\n margin: \"0 20px 10px\",\r\n paddingTop: \"10px\",\r\n borderTop: \"1px solid #eeeeee\",\r\n height: \"auto\",\r\n ...defaultFont\r\n };\r\n \r\n const cardHeader = {\r\n margin: \"-30px 15px 0\",\r\n borderRadius: \"3px\",\r\n padding: \"15px\"\r\n };\r\n \r\n const defaultBoxShadow = {\r\n border: \"0\",\r\n borderRadius: \"3px\",\r\n boxShadow:\r\n \"0 10px 20px -12px rgba(0, 0, 0, 0.42), 0 3px 20px 0px rgba(0, 0, 0, 0.12), 0 8px 10px -5px rgba(0, 0, 0, 0.2)\",\r\n padding: \"10px 0\",\r\n transition: \"all 150ms ease 0s\"\r\n };\r\n \r\n const title = {\r\n color: \"#ffffff\",\r\n margin: \"1.75rem 0 0.875rem\",\r\n textDecoration: \"none\",\r\n fontWeight: \"700\",\r\n fontFamily: `\"Roboto Slab\", \"Times New Roman\", serif`\r\n };\r\n \r\n const cardTitle = {\r\n ...title,\r\n marginTop: \".625rem\"\r\n };\r\n \r\n const cardLink = {\r\n \"& + $cardLink\": {\r\n marginLeft: \"1.25rem\"\r\n }\r\n };\r\n \r\n const cardSubtitle = {\r\n marginBottom: \"0\",\r\n marginTop: \"-.375rem\"\r\n };\r\n \r\n export {\r\n hexToRGBAlpha,\r\n //variables\r\n drawerWidth,\r\n transition,\r\n container,\r\n conatinerFluid,\r\n boxShadow,\r\n card,\r\n defaultFont,\r\n primaryColor,\r\n warningColor,\r\n dangerColor,\r\n successColor,\r\n infoColor,\r\n roseColor,\r\n grayColor,\r\n primaryBoxShadow,\r\n infoBoxShadow,\r\n successBoxShadow,\r\n warningBoxShadow,\r\n dangerBoxShadow,\r\n roseBoxShadow,\r\n warningCardHeader,\r\n successCardHeader,\r\n dangerCardHeader,\r\n infoCardHeader,\r\n primaryCardHeader,\r\n roseCardHeader,\r\n cardActions,\r\n cardHeader,\r\n defaultBoxShadow,\r\n title,\r\n cardTitle,\r\n cardLink,\r\n cardSubtitle\r\n };"]},"metadata":{},"sourceType":"module"}