mirror of
https://github.com/Steffo99/unisteffo.git
synced 2024-11-23 08:24:20 +00:00
1 line
No EOL
5.2 KiB
Text
Generated
1 line
No EOL
5.2 KiB
Text
Generated
{"version":3,"sources":["webpack:///./components/latex.css","webpack:///./components/panel.css","webpack:///./components/example.css","webpack:///./components/todo.js","webpack:///./components/panel.js","webpack:///./components/example.js","webpack:///./routes/apprendimentoSistemiArtificiali.js","webpack:///./components/latex.js","webpack:///./components/split.js","webpack:///./components/todo.css","webpack:///./components/split.css"],"names":["module","exports","Todo","render","class","style","todo","this","props","children","Component","Panel","getStyle","panel","title","undefined","id","Example","example","ApprendimentoSistemiArtificiali","Latex","src","alt","latex","Split","Array","isArray","map","element","splitchild","split","splitparent"],"mappings":"4EACAA,EAAOC,QAAU,CAAC,MAAQ,iB,mBCA1BD,EAAOC,QAAU,CAAC,MAAQ,iB,mBCA1BD,EAAOC,QAAU,CAAC,QAAU,mB,4GCEPC,E,gLACpBC,OAAA,WACC,OAAO,UAAMC,MAAOC,IAAMC,MAAOC,KAAKC,MAAMC,W,aAFZC,a,oICAbC,E,wLACpBC,SAAA,WACC,OAAOP,IAAMQ,O,EAGdV,OAAA,WACC,IAAIW,EAAQ,KAKZ,YAJwBC,IAArBR,KAAKC,MAAMM,QACbA,EAAS,YAAKP,KAAKC,MAAMM,QAIzB,SAAKV,MAAOG,KAAKK,WAAYI,GAAIT,KAAKC,MAAMQ,IAC1CF,EACAP,KAAKC,MAAMC,W,aAdmBC,a,kICAdO,E,gLACjBd,OAAA,WACI,OACI,gBAAYC,MAAOC,IAAMa,SACpBX,KAAKC,MAAMC,W,aAJSC,a,iJCMhBS,G,wNACjBhB,OAAA,WACI,OACI,aACI,kEACA,EAAC,IAAD,Q,GAL6CO,e,kICNxCU,E,gLACpBjB,OAAA,WAEC,OACC,SAAKkB,IAAG,yCAFM,mBAAmBd,KAAKC,MAAMC,SAAjC,MAGTa,IAAKf,KAAKC,MAAMC,SACbK,MAAOP,KAAKC,MAAMC,SAClBL,MAAOC,IAAMkB,S,aAPcb,a,kICAdc,E,gLACpBrB,OAAA,WACI,IAKOM,EALHK,EAAQ,KAcf,YAb2BC,IAArBR,KAAKC,MAAMM,QACPA,EAAS,YAAKP,KAAKC,MAAMM,QAKzBL,EADDgB,MAAMC,QAAQnB,KAAKC,MAAMC,UACbF,KAAKC,MAAMC,SAASkB,KAAI,SAAAC,GAC/B,OAAQ,SAAKxB,MAAOC,IAAMwB,YAAaD,MAIhC,SAAKxB,MAAOC,IAAMwB,YAAatB,KAAKC,MAAMC,UAGxD,SAAKL,MAAOC,IAAMyB,OACVhB,EACD,SAAKV,MAAOC,IAAM0B,aAActB,K,aAnBbC,a,yCCFnCV,EAAOC,QAAU,CAAC,KAAO,gB,iBCAzBD,EAAOC,QAAU,CAAC,MAAQ,eAAe,YAAc,qBAAqB,WAAa","file":"route-apprendimentoSistemiArtificiali.chunk.1258f.js","sourcesContent":["// extracted by mini-css-extract-plugin\nmodule.exports = {\"latex\":\"latex__3Esv7\"};","// extracted by mini-css-extract-plugin\nmodule.exports = {\"panel\":\"panel__1ubJw\"};","// extracted by mini-css-extract-plugin\nmodule.exports = {\"example\":\"example__P0_NL\"};","import style from \"./todo.css\";\r\nimport { Component } from 'preact';\r\n\r\nexport default class Todo extends Component {\r\n\trender() {\r\n\t\treturn <span class={style.todo}>{this.props.children}</span>;\r\n\t}\r\n}\r\n","import style from \"./panel.css\";\nimport { Component } from 'preact';\n\nexport default class Panel extends Component {\n\tgetStyle() {\n\t\treturn style.panel;\n\t};\n\n\trender() {\n\t\tlet title = null;\n\t\tif(this.props.title !== undefined) {\n\t\t\ttitle = (<h3>{this.props.title}</h3>);\n\t\t}\n\n\t\treturn (\n\t\t\t<div class={this.getStyle()} id={this.props.id}>\n\t\t\t\t{title}\n\t\t\t\t{this.props.children}\n\t\t\t</div>\n\t\t);\n\t}\n}\n","import style from \"./example.css\";\nimport {Component} from \"preact\";\n\nexport default class Example extends Component {\n render() {\n return (\n <blockquote class={style.example}>\n {this.props.children}\n </blockquote>\n )\n }\n}\n","import {Component} from 'preact'\nimport Split from \"../components/split\";\nimport Latex from \"../components/latex\";\nimport Panel from \"../components/panel\";\nimport Example from \"../components/example\";\nimport Todo from \"../components/todo\";\n\nconst r = String.raw;\n\nexport default class ApprendimentoSistemiArtificiali extends Component {\n render() {\n return (\n <div>\n <h1>Apprendimento ed evoluzione in sistemi artificiali</h1>\n <Split>\n\n </Split>\n </div>\n )\n }\n}\n","import style from './latex.css';\nimport { Component } from 'preact';\n\nexport default class Latex extends Component {\n\trender() {\n\t\tlet equation = `{\\\\color{White} ${this.props.children} }`;\n\t\treturn (\n\t\t\t<img src={`https://latex.codecogs.com/svg.latex?${equation}`}\n\t\t\t\t alt={this.props.children}\n\t\t\t title={this.props.children}\n\t\t\t class={style.latex}\n\t\t\t/>);\n\t}\n}","import style from \"./split.css\";\nimport { Component } from 'preact';\n\nexport default class Split extends Component {\n\trender() {\n\t let title = null;\n\t if(this.props.title !== undefined) {\n title = (<h2>{this.props.title}</h2>)\n }\n\n let children;\n if(Array.isArray(this.props.children)) {\n children = this.props.children.map(element => {\n return (<div class={style.splitchild}>{element}</div>);\n });\n }\n else {\n children = <div class={style.splitchild}>{this.props.children}</div>;\n }\n\t\treturn (\n\t <div class={style.split}>\n {title}\n <div class={style.splitparent}>{children}</div>\n </div>\n );\n\t}\n}\n","// extracted by mini-css-extract-plugin\nmodule.exports = {\"todo\":\"todo__1pOoN\"};","// extracted by mini-css-extract-plugin\nmodule.exports = {\"split\":\"split__3qCWp\",\"splitparent\":\"splitparent__2xagg\",\"splitchild\":\"splitchild__3cEoc\"};"],"sourceRoot":""} |