├── .changeset ├── README.md └── config.json ├── .gitignore ├── .npmrc ├── .prettierignore ├── .prettierrc ├── CHANGELOG.md ├── README.md ├── e2e └── pages.test.ts ├── eslint.config.js ├── package.json ├── playwright.config.ts ├── pnpm-lock.yaml ├── src ├── app.css ├── app.d.ts ├── app.html ├── demo.spec.ts ├── lib │ ├── Accounts.svelte │ ├── ActivityList.svelte │ ├── AppsMenu.svelte │ ├── CardList.svelte │ ├── CardWidget.svelte │ ├── CategorySalesReport.svelte │ ├── Change.svelte │ ├── ChartWidget.svelte │ ├── ChatMsg.svelte │ ├── ComparisonTable.svelte │ ├── CreditCard.svelte │ ├── DarkChart.svelte │ ├── DateRangeSelector.svelte │ ├── DeleteDrawer.svelte │ ├── DeleteModal.svelte │ ├── EmptyCard.svelte │ ├── Faq.svelte │ ├── Footer.svelte │ ├── ForgotPassword.svelte │ ├── GeneralInfo.svelte │ ├── IconAvatar.svelte │ ├── LanguageTime.svelte │ ├── Maintenance.svelte │ ├── More.svelte │ ├── NotFound.svelte │ ├── Notification.svelte │ ├── NotificationCard.svelte │ ├── NotificationList.svelte │ ├── Playground.svelte │ ├── PriceCard.svelte │ ├── PriceCardListItem.svelte │ ├── PriceCardPrice.svelte │ ├── ProductDrawer.svelte │ ├── ProductMetricCard.svelte │ ├── ProfileLock.svelte │ ├── ResetPassword.svelte │ ├── ServerError.svelte │ ├── Sessions.svelte │ ├── SignIn.svelte │ ├── SignUp.svelte │ ├── SmallPanel.svelte │ ├── Stats.svelte │ ├── StatusBadge.svelte │ ├── Traffic.svelte │ ├── UserMenu.svelte │ ├── UserModal.svelte │ ├── UserProfile.svelte │ ├── chart_options.ts │ ├── index.ts │ ├── types.ts │ └── variables.ts └── routes │ ├── (no-layout) │ └── pages │ │ └── pricing │ │ ├── +page.svelte │ │ └── data.ts │ ├── (no-sidebar) │ ├── +layout.svelte │ ├── Footer.svelte │ ├── layouts │ │ └── stacked │ │ │ └── +page.svelte │ ├── pages │ │ ├── 404.svelte │ │ ├── 500.svelte │ │ ├── [slug] │ │ │ ├── +page.svelte │ │ │ └── +page.ts │ │ └── maintenance.svelte │ └── playground │ │ └── stacked │ │ ├── +page.svelte │ │ └── Playground.svelte │ ├── (sidebar) │ ├── +layout.svelte │ ├── +page.server.ts │ ├── +page.svelte │ ├── Footer.svelte │ ├── Frame.svelte │ ├── Navbar.svelte │ ├── Sidebar.svelte │ ├── about │ │ ├── +page.svelte │ │ └── md │ │ │ └── installation.md │ ├── crud │ │ ├── products │ │ │ └── +page.svelte │ │ └── users │ │ │ └── +page.svelte │ ├── dashboard │ │ ├── +page.svelte │ │ └── chart_options.ts │ ├── docs │ │ ├── authentication │ │ │ ├── +page.svelte │ │ │ └── examples │ │ │ │ ├── ForgotPasswordEx.svelte │ │ │ │ ├── ProfileLockEx.svelte │ │ │ │ ├── ResetPasswordEx.svelte │ │ │ │ ├── SignInEx.svelte │ │ │ │ ├── SignUpEx.svelte │ │ │ │ └── index.ts │ │ ├── crud │ │ │ ├── +page.svelte │ │ │ └── examples │ │ │ │ ├── DeleteDrawerEx.svelte │ │ │ │ ├── DeleteModalEx.svelte │ │ │ │ ├── ProductDrawerEx.svelte │ │ │ │ ├── UserModalEx.svelte │ │ │ │ └── index.ts │ │ ├── dashboard │ │ │ ├── +page.svelte │ │ │ └── examples │ │ │ │ ├── ActivityListEx.svelte │ │ │ │ ├── CategorySalesReportEx.svelte │ │ │ │ ├── ChartWidgetEx.svelte │ │ │ │ ├── ChatMsgEx.svelte │ │ │ │ ├── CreditCardEx.svelte │ │ │ │ ├── DateRangeSelectorEx.svelte │ │ │ │ ├── MoreEx.svelte │ │ │ │ ├── ProductMetricCardEx.svelte │ │ │ │ ├── StatsEx.svelte │ │ │ │ ├── TrafficEx.svelte │ │ │ │ └── index.ts │ │ ├── navbar │ │ │ ├── +page.svelte │ │ │ └── examples │ │ │ │ ├── AppsMenuEx.svelte │ │ │ │ ├── NotificationListEx.svelte │ │ │ │ ├── UserMenuEx.svelte │ │ │ │ └── index.ts │ │ ├── pages │ │ │ ├── +page.svelte │ │ │ └── examples │ │ │ │ ├── ComparisonTableEx.svelte │ │ │ │ ├── FaqEx.svelte │ │ │ │ ├── FooterEx.svelte │ │ │ │ ├── MaintenanceEx.svelte │ │ │ │ ├── NotFoundEx.svelte │ │ │ │ ├── PriceCardEx.svelte │ │ │ │ ├── ServerErrorEx.svelte │ │ │ │ └── index.ts │ │ ├── settings │ │ │ ├── +page.svelte │ │ │ └── examples │ │ │ │ ├── AccountsEx.svelte │ │ │ │ ├── GeneralInfoEx.svelte │ │ │ │ ├── LanguageTimeEx.svelte │ │ │ │ ├── NotificationCardEx.svelte │ │ │ │ ├── SessionsEx.svelte │ │ │ │ ├── UserProfileEx.svelte │ │ │ │ └── index.ts │ │ └── utilities │ │ │ ├── +page.svelte │ │ │ └── examples │ │ │ ├── CardListEx.svelte │ │ │ ├── ChangeEx.svelte │ │ │ ├── DarkChartEx.svelte │ │ │ ├── EmptyCardEx.svelte │ │ │ ├── IconAvatarEx.svelte │ │ │ ├── NotificationEx.svelte │ │ │ ├── PlaygroundEx.svelte │ │ │ ├── PriceCardPriceEx.svelte │ │ │ ├── SmallPanelEx.svelte │ │ │ ├── StatusBadgeEx.svelte │ │ │ └── index.ts │ ├── layouts │ │ └── sidebar │ │ │ └── +page.svelte │ ├── playground │ │ └── sidebar │ │ │ └── +page.svelte │ └── settings │ │ └── +page.svelte │ ├── +error.svelte │ ├── +layout.server.ts │ ├── +layout.svelte │ ├── api │ └── posts │ │ └── +server.ts │ ├── authentication │ ├── [slug] │ │ ├── +page.svelte │ │ └── +page.ts │ ├── forgot-password.svelte │ ├── profile-lock.svelte │ ├── reset-password.svelte │ ├── sign-in.svelte │ └── sign-up.svelte │ ├── component-data │ ├── Accounts.json │ ├── ActivityList.json │ ├── Alerts.json │ ├── AppsMenu.json │ ├── CardList.json │ ├── CardWidget.json │ ├── CategorySalesReport.json │ ├── Change.json │ ├── ChartWidget.json │ ├── ChatMsg.json │ ├── ComparisonTable.json │ ├── CreditCard.json │ ├── DarkChart.json │ ├── DateRangeSelector.json │ ├── DeleteDrawer.json │ ├── DeleteModal.json │ ├── Emails.json │ ├── EmptyCard.json │ ├── Faq.json │ ├── Footer.json │ ├── ForgotPassword.json │ ├── GeneralInfo.json │ ├── IconAvatar.json │ ├── LanguageTime.json │ ├── LastRange.json │ ├── Maintenance.json │ ├── More.json │ ├── NotFound.json │ ├── Notification.json │ ├── NotificationCard.json │ ├── NotificationList.json │ ├── PasswordInfo.json │ ├── Playground.json │ ├── PriceCard.json │ ├── PriceCardListItem.json │ ├── PriceCardPrice.json │ ├── Pricing.json │ ├── ProductDrawer.json │ ├── ProductMetricCard.json │ ├── Products.json │ ├── ProfileLock.json │ ├── ProfilePicture.json │ ├── ResetPassword.json │ ├── ServerError.json │ ├── Sessions.json │ ├── Sidebar.json │ ├── SignIn.json │ ├── SignUp.json │ ├── SmallPanel.json │ ├── SocialAccounts.json │ ├── Stats.json │ ├── StatusBadge.json │ ├── Traffic.json │ ├── UserMenu.json │ ├── UserModal.json │ ├── UserProfile.json │ ├── Users.json │ ├── index.json │ ├── stacked.json │ ├── thickbars.json │ ├── thinfillbars.json │ ├── thinmultibars.json │ ├── thinstackbars.json │ └── variables.json │ ├── data │ ├── product.json │ ├── sidebar.json │ └── users.json │ ├── errors │ └── [code] │ │ └── +page.ts │ ├── sitemap.xml │ └── +server.ts │ └── utils │ ├── CodeWrapper.svelte │ ├── CompoAttributesViewer.svelte │ ├── HighlightCompo.svelte │ ├── JSONView.svelte │ ├── MetaTag.svelte │ ├── dashboard │ ├── Chat.svelte │ ├── Dashboard.svelte │ ├── Insights.svelte │ ├── Message.svelte │ └── Transactions.svelte │ ├── graphs │ ├── thickbars.ts │ ├── thinfillbars.ts │ ├── thinmultibars.ts │ ├── thinstackbars.ts │ ├── traffic.ts │ └── users.ts │ ├── helpers.ts │ ├── highlight │ ├── languages │ │ ├── 1c.d.ts │ │ ├── 1c.js │ │ ├── abnf.d.ts │ │ ├── abnf.js │ │ ├── accesslog.d.ts │ │ ├── accesslog.js │ │ ├── actionscript.d.ts │ │ ├── actionscript.js │ │ ├── ada.d.ts │ │ ├── ada.js │ │ ├── angelscript.d.ts │ │ ├── angelscript.js │ │ ├── apache.d.ts │ │ ├── apache.js │ │ ├── applescript.d.ts │ │ ├── applescript.js │ │ ├── arcade.d.ts │ │ ├── arcade.js │ │ ├── arduino.d.ts │ │ ├── arduino.js │ │ ├── armasm.d.ts │ │ ├── armasm.js │ │ ├── asciidoc.d.ts │ │ ├── asciidoc.js │ │ ├── aspectj.d.ts │ │ ├── aspectj.js │ │ ├── autohotkey.d.ts │ │ ├── autohotkey.js │ │ ├── autoit.d.ts │ │ ├── autoit.js │ │ ├── avrasm.d.ts │ │ ├── avrasm.js │ │ ├── awk.d.ts │ │ ├── awk.js │ │ ├── axapta.d.ts │ │ ├── axapta.js │ │ ├── bash.d.ts │ │ ├── bash.js │ │ ├── basic.d.ts │ │ ├── basic.js │ │ ├── bnf.d.ts │ │ ├── bnf.js │ │ ├── brainfuck.d.ts │ │ ├── brainfuck.js │ │ ├── c.d.ts │ │ ├── c.js │ │ ├── cal.d.ts │ │ ├── cal.js │ │ ├── capnproto.d.ts │ │ ├── capnproto.js │ │ ├── ceylon.d.ts │ │ ├── ceylon.js │ │ ├── clean.d.ts │ │ ├── clean.js │ │ ├── clojure-repl.d.ts │ │ ├── clojure-repl.js │ │ ├── clojure.d.ts │ │ ├── clojure.js │ │ ├── cmake.d.ts │ │ ├── cmake.js │ │ ├── coffeescript.d.ts │ │ ├── coffeescript.js │ │ ├── coq.d.ts │ │ ├── coq.js │ │ ├── cos.d.ts │ │ ├── cos.js │ │ ├── cpp.d.ts │ │ ├── cpp.js │ │ ├── crmsh.d.ts │ │ ├── crmsh.js │ │ ├── crystal.d.ts │ │ ├── crystal.js │ │ ├── csharp.d.ts │ │ ├── csharp.js │ │ ├── csp.d.ts │ │ ├── csp.js │ │ ├── css.d.ts │ │ ├── css.js │ │ ├── d.d.ts │ │ ├── d.js │ │ ├── dart.d.ts │ │ ├── dart.js │ │ ├── delphi.d.ts │ │ ├── delphi.js │ │ ├── diff.d.ts │ │ ├── diff.js │ │ ├── django.d.ts │ │ ├── django.js │ │ ├── dns.d.ts │ │ ├── dns.js │ │ ├── dockerfile.d.ts │ │ ├── dockerfile.js │ │ ├── dos.d.ts │ │ ├── dos.js │ │ ├── dsconfig.d.ts │ │ ├── dsconfig.js │ │ ├── dts.d.ts │ │ ├── dts.js │ │ ├── dust.d.ts │ │ ├── dust.js │ │ ├── ebnf.d.ts │ │ ├── ebnf.js │ │ ├── elixir.d.ts │ │ ├── elixir.js │ │ ├── elm.d.ts │ │ ├── elm.js │ │ ├── erb.d.ts │ │ ├── erb.js │ │ ├── erlang-repl.d.ts │ │ ├── erlang-repl.js │ │ ├── erlang.d.ts │ │ ├── erlang.js │ │ ├── excel.d.ts │ │ ├── excel.js │ │ ├── fix.d.ts │ │ ├── fix.js │ │ ├── flix.d.ts │ │ ├── flix.js │ │ ├── fortran.d.ts │ │ ├── fortran.js │ │ ├── fsharp.d.ts │ │ ├── fsharp.js │ │ ├── gams.d.ts │ │ ├── gams.js │ │ ├── gauss.d.ts │ │ ├── gauss.js │ │ ├── gcode.d.ts │ │ ├── gcode.js │ │ ├── gherkin.d.ts │ │ ├── gherkin.js │ │ ├── glsl.d.ts │ │ ├── glsl.js │ │ ├── gml.d.ts │ │ ├── gml.js │ │ ├── go.d.ts │ │ ├── go.js │ │ ├── golo.d.ts │ │ ├── golo.js │ │ ├── gradle.d.ts │ │ ├── gradle.js │ │ ├── graphql.d.ts │ │ ├── graphql.js │ │ ├── groovy.d.ts │ │ ├── groovy.js │ │ ├── haml.d.ts │ │ ├── haml.js │ │ ├── handlebars.d.ts │ │ ├── handlebars.js │ │ ├── haskell.d.ts │ │ ├── haskell.js │ │ ├── haxe.d.ts │ │ ├── haxe.js │ │ ├── hsp.d.ts │ │ ├── hsp.js │ │ ├── http.d.ts │ │ ├── http.js │ │ ├── hy.d.ts │ │ ├── hy.js │ │ ├── index.d.ts │ │ ├── index.js │ │ ├── inform7.d.ts │ │ ├── inform7.js │ │ ├── ini.d.ts │ │ ├── ini.js │ │ ├── irpf90.d.ts │ │ ├── irpf90.js │ │ ├── isbl.d.ts │ │ ├── isbl.js │ │ ├── java.d.ts │ │ ├── java.js │ │ ├── javascript.d.ts │ │ ├── javascript.js │ │ ├── jboss-cli.d.ts │ │ ├── jboss-cli.js │ │ ├── json.d.ts │ │ ├── json.js │ │ ├── julia-repl.d.ts │ │ ├── julia-repl.js │ │ ├── julia.d.ts │ │ ├── julia.js │ │ ├── kotlin.d.ts │ │ ├── kotlin.js │ │ ├── lasso.d.ts │ │ ├── lasso.js │ │ ├── latex.d.ts │ │ ├── latex.js │ │ ├── ldif.d.ts │ │ ├── ldif.js │ │ ├── leaf.d.ts │ │ ├── leaf.js │ │ ├── less.d.ts │ │ ├── less.js │ │ ├── lisp.d.ts │ │ ├── lisp.js │ │ ├── livecodeserver.d.ts │ │ ├── livecodeserver.js │ │ ├── livescript.d.ts │ │ ├── livescript.js │ │ ├── llvm.d.ts │ │ ├── llvm.js │ │ ├── lsl.d.ts │ │ ├── lsl.js │ │ ├── lua.d.ts │ │ ├── lua.js │ │ ├── makefile.d.ts │ │ ├── makefile.js │ │ ├── markdown.d.ts │ │ ├── markdown.js │ │ ├── mathematica.d.ts │ │ ├── mathematica.js │ │ ├── matlab.d.ts │ │ ├── matlab.js │ │ ├── maxima.d.ts │ │ ├── maxima.js │ │ ├── mel.d.ts │ │ ├── mel.js │ │ ├── mercury.d.ts │ │ ├── mercury.js │ │ ├── mipsasm.d.ts │ │ ├── mipsasm.js │ │ ├── mizar.d.ts │ │ ├── mizar.js │ │ ├── mojolicious.d.ts │ │ ├── mojolicious.js │ │ ├── monkey.d.ts │ │ ├── monkey.js │ │ ├── moonscript.d.ts │ │ ├── moonscript.js │ │ ├── n1ql.d.ts │ │ ├── n1ql.js │ │ ├── nestedtext.d.ts │ │ ├── nestedtext.js │ │ ├── nginx.d.ts │ │ ├── nginx.js │ │ ├── nim.d.ts │ │ ├── nim.js │ │ ├── nix.d.ts │ │ ├── nix.js │ │ ├── node-repl.d.ts │ │ ├── node-repl.js │ │ ├── nsis.d.ts │ │ ├── nsis.js │ │ ├── objectivec.d.ts │ │ ├── objectivec.js │ │ ├── ocaml.d.ts │ │ ├── ocaml.js │ │ ├── openscad.d.ts │ │ ├── openscad.js │ │ ├── oxygene.d.ts │ │ ├── oxygene.js │ │ ├── parser3.d.ts │ │ ├── parser3.js │ │ ├── perl.d.ts │ │ ├── perl.js │ │ ├── pf.d.ts │ │ ├── pf.js │ │ ├── pgsql.d.ts │ │ ├── pgsql.js │ │ ├── php-template.d.ts │ │ ├── php-template.js │ │ ├── php.d.ts │ │ ├── php.js │ │ ├── plaintext.d.ts │ │ ├── plaintext.js │ │ ├── pony.d.ts │ │ ├── pony.js │ │ ├── powershell.d.ts │ │ ├── powershell.js │ │ ├── processing.d.ts │ │ ├── processing.js │ │ ├── profile.d.ts │ │ ├── profile.js │ │ ├── prolog.d.ts │ │ ├── prolog.js │ │ ├── properties.d.ts │ │ ├── properties.js │ │ ├── protobuf.d.ts │ │ ├── protobuf.js │ │ ├── puppet.d.ts │ │ ├── puppet.js │ │ ├── purebasic.d.ts │ │ ├── purebasic.js │ │ ├── python-repl.d.ts │ │ ├── python-repl.js │ │ ├── python.d.ts │ │ ├── python.js │ │ ├── q.d.ts │ │ ├── q.js │ │ ├── qml.d.ts │ │ ├── qml.js │ │ ├── r.d.ts │ │ ├── r.js │ │ ├── reasonml.d.ts │ │ ├── reasonml.js │ │ ├── rib.d.ts │ │ ├── rib.js │ │ ├── roboconf.d.ts │ │ ├── roboconf.js │ │ ├── routeros.d.ts │ │ ├── routeros.js │ │ ├── rsl.d.ts │ │ ├── rsl.js │ │ ├── ruby.d.ts │ │ ├── ruby.js │ │ ├── ruleslanguage.d.ts │ │ ├── ruleslanguage.js │ │ ├── rust.d.ts │ │ ├── rust.js │ │ ├── sas.d.ts │ │ ├── sas.js │ │ ├── scala.d.ts │ │ ├── scala.js │ │ ├── scheme.d.ts │ │ ├── scheme.js │ │ ├── scilab.d.ts │ │ ├── scilab.js │ │ ├── scss.d.ts │ │ ├── scss.js │ │ ├── shell.d.ts │ │ ├── shell.js │ │ ├── smali.d.ts │ │ ├── smali.js │ │ ├── smalltalk.d.ts │ │ ├── smalltalk.js │ │ ├── sml.d.ts │ │ ├── sml.js │ │ ├── sqf.d.ts │ │ ├── sqf.js │ │ ├── sql.d.ts │ │ ├── sql.js │ │ ├── stan.d.ts │ │ ├── stan.js │ │ ├── stata.d.ts │ │ ├── stata.js │ │ ├── step21.d.ts │ │ ├── step21.js │ │ ├── stylus.d.ts │ │ ├── stylus.js │ │ ├── subunit.d.ts │ │ ├── subunit.js │ │ ├── swift.d.ts │ │ ├── swift.js │ │ ├── taggerscript.d.ts │ │ ├── taggerscript.js │ │ ├── tap.d.ts │ │ ├── tap.js │ │ ├── tcl.d.ts │ │ ├── tcl.js │ │ ├── thrift.d.ts │ │ ├── thrift.js │ │ ├── tp.d.ts │ │ ├── tp.js │ │ ├── twig.d.ts │ │ ├── twig.js │ │ ├── typescript.d.ts │ │ ├── typescript.js │ │ ├── vala.d.ts │ │ ├── vala.js │ │ ├── vbnet.d.ts │ │ ├── vbnet.js │ │ ├── vbscript-html.d.ts │ │ ├── vbscript-html.js │ │ ├── vbscript.d.ts │ │ ├── vbscript.js │ │ ├── verilog.d.ts │ │ ├── verilog.js │ │ ├── vhdl.d.ts │ │ ├── vhdl.js │ │ ├── vim.d.ts │ │ ├── vim.js │ │ ├── wasm.d.ts │ │ ├── wasm.js │ │ ├── wren.d.ts │ │ ├── wren.js │ │ ├── x86asm.d.ts │ │ ├── x86asm.js │ │ ├── xl.d.ts │ │ ├── xl.js │ │ ├── xml.d.ts │ │ ├── xml.js │ │ ├── xquery.d.ts │ │ ├── xquery.js │ │ ├── yaml.d.ts │ │ ├── yaml.js │ │ ├── zephir.d.ts │ │ └── zephir.js │ ├── styles │ │ ├── 3024.css │ │ ├── 3024.d.ts │ │ ├── 3024.js │ │ ├── a11y-dark.css │ │ ├── a11y-dark.d.ts │ │ ├── a11y-dark.js │ │ ├── a11y-light.css │ │ ├── a11y-light.d.ts │ │ ├── a11y-light.js │ │ ├── agate.css │ │ ├── agate.d.ts │ │ ├── agate.js │ │ ├── an-old-hope.css │ │ ├── an-old-hope.d.ts │ │ ├── an-old-hope.js │ │ ├── androidstudio.css │ │ ├── androidstudio.d.ts │ │ ├── androidstudio.js │ │ ├── apathy.css │ │ ├── apathy.d.ts │ │ ├── apathy.js │ │ ├── apprentice.css │ │ ├── apprentice.d.ts │ │ ├── apprentice.js │ │ ├── arduino-light.css │ │ ├── arduino-light.d.ts │ │ ├── arduino-light.js │ │ ├── arta.css │ │ ├── arta.d.ts │ │ ├── arta.js │ │ ├── ascetic.css │ │ ├── ascetic.d.ts │ │ ├── ascetic.js │ │ ├── ashes.css │ │ ├── ashes.d.ts │ │ ├── ashes.js │ │ ├── atelier-cave-light.css │ │ ├── atelier-cave-light.d.ts │ │ ├── atelier-cave-light.js │ │ ├── atelier-cave.css │ │ ├── atelier-cave.d.ts │ │ ├── atelier-cave.js │ │ ├── atelier-dune-light.css │ │ ├── atelier-dune-light.d.ts │ │ ├── atelier-dune-light.js │ │ ├── atelier-dune.css │ │ ├── atelier-dune.d.ts │ │ ├── atelier-dune.js │ │ ├── atelier-estuary-light.css │ │ ├── atelier-estuary-light.d.ts │ │ ├── atelier-estuary-light.js │ │ ├── atelier-estuary.css │ │ ├── atelier-estuary.d.ts │ │ ├── atelier-estuary.js │ │ ├── atelier-forest-light.css │ │ ├── atelier-forest-light.d.ts │ │ ├── atelier-forest-light.js │ │ ├── atelier-forest.css │ │ ├── atelier-forest.d.ts │ │ ├── atelier-forest.js │ │ ├── atelier-heath-light.css │ │ ├── atelier-heath-light.d.ts │ │ ├── atelier-heath-light.js │ │ ├── atelier-heath.css │ │ ├── atelier-heath.d.ts │ │ ├── atelier-heath.js │ │ ├── atelier-lakeside-light.css │ │ ├── atelier-lakeside-light.d.ts │ │ ├── atelier-lakeside-light.js │ │ ├── atelier-lakeside.css │ │ ├── atelier-lakeside.d.ts │ │ ├── atelier-lakeside.js │ │ ├── atelier-plateau-light.css │ │ ├── atelier-plateau-light.d.ts │ │ ├── atelier-plateau-light.js │ │ ├── atelier-plateau.css │ │ ├── atelier-plateau.d.ts │ │ ├── atelier-plateau.js │ │ ├── atelier-savanna-light.css │ │ ├── atelier-savanna-light.d.ts │ │ ├── atelier-savanna-light.js │ │ ├── atelier-savanna.css │ │ ├── atelier-savanna.d.ts │ │ ├── atelier-savanna.js │ │ ├── atelier-seaside-light.css │ │ ├── atelier-seaside-light.d.ts │ │ ├── atelier-seaside-light.js │ │ ├── atelier-seaside.css │ │ ├── atelier-seaside.d.ts │ │ ├── atelier-seaside.js │ │ ├── atelier-sulphurpool-light.css │ │ ├── atelier-sulphurpool-light.d.ts │ │ ├── atelier-sulphurpool-light.js │ │ ├── atelier-sulphurpool.css │ │ ├── atelier-sulphurpool.d.ts │ │ ├── atelier-sulphurpool.js │ │ ├── atlas.css │ │ ├── atlas.d.ts │ │ ├── atlas.js │ │ ├── atom-one-dark-reasonable.css │ │ ├── atom-one-dark-reasonable.d.ts │ │ ├── atom-one-dark-reasonable.js │ │ ├── atom-one-dark.css │ │ ├── atom-one-dark.d.ts │ │ ├── atom-one-dark.js │ │ ├── atom-one-light.css │ │ ├── atom-one-light.d.ts │ │ ├── atom-one-light.js │ │ ├── base16-github.css │ │ ├── base16-github.d.ts │ │ ├── base16-github.js │ │ ├── base16-ir-black.css │ │ ├── base16-ir-black.d.ts │ │ ├── base16-ir-black.js │ │ ├── base16-monokai.css │ │ ├── base16-monokai.d.ts │ │ ├── base16-monokai.js │ │ ├── base16-nord.css │ │ ├── base16-nord.d.ts │ │ ├── base16-nord.js │ │ ├── bespin.css │ │ ├── bespin.d.ts │ │ ├── bespin.js │ │ ├── black-metal-bathory.css │ │ ├── black-metal-bathory.d.ts │ │ ├── black-metal-bathory.js │ │ ├── black-metal-burzum.css │ │ ├── black-metal-burzum.d.ts │ │ ├── black-metal-burzum.js │ │ ├── black-metal-dark-funeral.css │ │ ├── black-metal-dark-funeral.d.ts │ │ ├── black-metal-dark-funeral.js │ │ ├── black-metal-gorgoroth.css │ │ ├── black-metal-gorgoroth.d.ts │ │ ├── black-metal-gorgoroth.js │ │ ├── black-metal-immortal.css │ │ ├── black-metal-immortal.d.ts │ │ ├── black-metal-immortal.js │ │ ├── black-metal-khold.css │ │ ├── black-metal-khold.d.ts │ │ ├── black-metal-khold.js │ │ ├── black-metal-marduk.css │ │ ├── black-metal-marduk.d.ts │ │ ├── black-metal-marduk.js │ │ ├── black-metal-mayhem.css │ │ ├── black-metal-mayhem.d.ts │ │ ├── black-metal-mayhem.js │ │ ├── black-metal-nile.css │ │ ├── black-metal-nile.d.ts │ │ ├── black-metal-nile.js │ │ ├── black-metal-venom.css │ │ ├── black-metal-venom.d.ts │ │ ├── black-metal-venom.js │ │ ├── black-metal.css │ │ ├── black-metal.d.ts │ │ ├── black-metal.js │ │ ├── brewer.css │ │ ├── brewer.d.ts │ │ ├── brewer.js │ │ ├── bright.css │ │ ├── bright.d.ts │ │ ├── bright.js │ │ ├── brogrammer.css │ │ ├── brogrammer.d.ts │ │ ├── brogrammer.js │ │ ├── brown-paper.css │ │ ├── brown-paper.d.ts │ │ ├── brown-paper.js │ │ ├── brown-papersq.png │ │ ├── brush-trees-dark.css │ │ ├── brush-trees-dark.d.ts │ │ ├── brush-trees-dark.js │ │ ├── brush-trees.css │ │ ├── brush-trees.d.ts │ │ ├── brush-trees.js │ │ ├── chalk.css │ │ ├── chalk.d.ts │ │ ├── chalk.js │ │ ├── circus.css │ │ ├── circus.d.ts │ │ ├── circus.js │ │ ├── classic-dark.css │ │ ├── classic-dark.d.ts │ │ ├── classic-dark.js │ │ ├── classic-light.css │ │ ├── classic-light.d.ts │ │ ├── classic-light.js │ │ ├── codepen-embed.css │ │ ├── codepen-embed.d.ts │ │ ├── codepen-embed.js │ │ ├── codeschool.css │ │ ├── codeschool.d.ts │ │ ├── codeschool.js │ │ ├── color-brewer.css │ │ ├── color-brewer.d.ts │ │ ├── color-brewer.js │ │ ├── colors.css │ │ ├── colors.d.ts │ │ ├── colors.js │ │ ├── cupcake.css │ │ ├── cupcake.d.ts │ │ ├── cupcake.js │ │ ├── cupertino.css │ │ ├── cupertino.d.ts │ │ ├── cupertino.js │ │ ├── danqing.css │ │ ├── danqing.d.ts │ │ ├── danqing.js │ │ ├── darcula.css │ │ ├── darcula.d.ts │ │ ├── darcula.js │ │ ├── dark-violet.css │ │ ├── dark-violet.d.ts │ │ ├── dark-violet.js │ │ ├── dark.css │ │ ├── dark.d.ts │ │ ├── dark.js │ │ ├── darkmoss.css │ │ ├── darkmoss.d.ts │ │ ├── darkmoss.js │ │ ├── darktooth.css │ │ ├── darktooth.d.ts │ │ ├── darktooth.js │ │ ├── decaf.css │ │ ├── decaf.d.ts │ │ ├── decaf.js │ │ ├── default-dark.css │ │ ├── default-dark.d.ts │ │ ├── default-dark.js │ │ ├── default-light.css │ │ ├── default-light.d.ts │ │ ├── default-light.js │ │ ├── default.css │ │ ├── default.d.ts │ │ ├── default.js │ │ ├── devibeans.css │ │ ├── devibeans.d.ts │ │ ├── devibeans.js │ │ ├── dirtysea.css │ │ ├── dirtysea.d.ts │ │ ├── dirtysea.js │ │ ├── docco.css │ │ ├── docco.d.ts │ │ ├── docco.js │ │ ├── dracula.css │ │ ├── dracula.d.ts │ │ ├── dracula.js │ │ ├── edge-dark.css │ │ ├── edge-dark.d.ts │ │ ├── edge-dark.js │ │ ├── edge-light.css │ │ ├── edge-light.d.ts │ │ ├── edge-light.js │ │ ├── eighties.css │ │ ├── eighties.d.ts │ │ ├── eighties.js │ │ ├── embers.css │ │ ├── embers.d.ts │ │ ├── embers.js │ │ ├── equilibrium-dark.css │ │ ├── equilibrium-dark.d.ts │ │ ├── equilibrium-dark.js │ │ ├── equilibrium-gray-dark.css │ │ ├── equilibrium-gray-dark.d.ts │ │ ├── equilibrium-gray-dark.js │ │ ├── equilibrium-gray-light.css │ │ ├── equilibrium-gray-light.d.ts │ │ ├── equilibrium-gray-light.js │ │ ├── equilibrium-light.css │ │ ├── equilibrium-light.d.ts │ │ ├── equilibrium-light.js │ │ ├── espresso.css │ │ ├── espresso.d.ts │ │ ├── espresso.js │ │ ├── eva-dim.css │ │ ├── eva-dim.d.ts │ │ ├── eva-dim.js │ │ ├── eva.css │ │ ├── eva.d.ts │ │ ├── eva.js │ │ ├── far.css │ │ ├── far.d.ts │ │ ├── far.js │ │ ├── felipec.css │ │ ├── felipec.d.ts │ │ ├── felipec.js │ │ ├── flat.css │ │ ├── flat.d.ts │ │ ├── flat.js │ │ ├── foundation.css │ │ ├── foundation.d.ts │ │ ├── foundation.js │ │ ├── framer.css │ │ ├── framer.d.ts │ │ ├── framer.js │ │ ├── fruit-soda.css │ │ ├── fruit-soda.d.ts │ │ ├── fruit-soda.js │ │ ├── gigavolt.css │ │ ├── gigavolt.d.ts │ │ ├── gigavolt.js │ │ ├── github-dark-dimmed.css │ │ ├── github-dark-dimmed.d.ts │ │ ├── github-dark-dimmed.js │ │ ├── github-dark.css │ │ ├── github-dark.d.ts │ │ ├── github-dark.js │ │ ├── github.css │ │ ├── github.d.ts │ │ ├── github.js │ │ ├── gml.css │ │ ├── gml.d.ts │ │ ├── gml.js │ │ ├── google-dark.css │ │ ├── google-dark.d.ts │ │ ├── google-dark.js │ │ ├── google-light.css │ │ ├── google-light.d.ts │ │ ├── google-light.js │ │ ├── googlecode.css │ │ ├── googlecode.d.ts │ │ ├── googlecode.js │ │ ├── gradient-dark.css │ │ ├── gradient-dark.d.ts │ │ ├── gradient-dark.js │ │ ├── gradient-light.css │ │ ├── gradient-light.d.ts │ │ ├── gradient-light.js │ │ ├── grayscale-dark.css │ │ ├── grayscale-dark.d.ts │ │ ├── grayscale-dark.js │ │ ├── grayscale-light.css │ │ ├── grayscale-light.d.ts │ │ ├── grayscale-light.js │ │ ├── grayscale.css │ │ ├── grayscale.d.ts │ │ ├── grayscale.js │ │ ├── green-screen.css │ │ ├── green-screen.d.ts │ │ ├── green-screen.js │ │ ├── gruvbox-dark-hard.css │ │ ├── gruvbox-dark-hard.d.ts │ │ ├── gruvbox-dark-hard.js │ │ ├── gruvbox-dark-medium.css │ │ ├── gruvbox-dark-medium.d.ts │ │ ├── gruvbox-dark-medium.js │ │ ├── gruvbox-dark-pale.css │ │ ├── gruvbox-dark-pale.d.ts │ │ ├── gruvbox-dark-pale.js │ │ ├── gruvbox-dark-soft.css │ │ ├── gruvbox-dark-soft.d.ts │ │ ├── gruvbox-dark-soft.js │ │ ├── gruvbox-light-hard.css │ │ ├── gruvbox-light-hard.d.ts │ │ ├── gruvbox-light-hard.js │ │ ├── gruvbox-light-medium.css │ │ ├── gruvbox-light-medium.d.ts │ │ ├── gruvbox-light-medium.js │ │ ├── gruvbox-light-soft.css │ │ ├── gruvbox-light-soft.d.ts │ │ ├── gruvbox-light-soft.js │ │ ├── hardcore.css │ │ ├── hardcore.d.ts │ │ ├── hardcore.js │ │ ├── harmonic16-dark.css │ │ ├── harmonic16-dark.d.ts │ │ ├── harmonic16-dark.js │ │ ├── harmonic16-light.css │ │ ├── harmonic16-light.d.ts │ │ ├── harmonic16-light.js │ │ ├── heetch-dark.css │ │ ├── heetch-dark.d.ts │ │ ├── heetch-dark.js │ │ ├── heetch-light.css │ │ ├── heetch-light.d.ts │ │ ├── heetch-light.js │ │ ├── helios.css │ │ ├── helios.d.ts │ │ ├── helios.js │ │ ├── hopscotch.css │ │ ├── hopscotch.d.ts │ │ ├── hopscotch.js │ │ ├── horizon-dark.css │ │ ├── horizon-dark.d.ts │ │ ├── horizon-dark.js │ │ ├── horizon-light.css │ │ ├── horizon-light.d.ts │ │ ├── horizon-light.js │ │ ├── humanoid-dark.css │ │ ├── humanoid-dark.d.ts │ │ ├── humanoid-dark.js │ │ ├── humanoid-light.css │ │ ├── humanoid-light.d.ts │ │ ├── humanoid-light.js │ │ ├── hybrid.css │ │ ├── hybrid.d.ts │ │ ├── hybrid.js │ │ ├── ia-dark.css │ │ ├── ia-dark.d.ts │ │ ├── ia-dark.js │ │ ├── ia-light.css │ │ ├── ia-light.d.ts │ │ ├── ia-light.js │ │ ├── icy-dark.css │ │ ├── icy-dark.d.ts │ │ ├── icy-dark.js │ │ ├── idea.css │ │ ├── idea.d.ts │ │ ├── idea.js │ │ ├── index.d.ts │ │ ├── index.js │ │ ├── intellij-light.css │ │ ├── intellij-light.d.ts │ │ ├── intellij-light.js │ │ ├── ir-black.css │ │ ├── ir-black.d.ts │ │ ├── ir-black.js │ │ ├── isbl-editor-dark.css │ │ ├── isbl-editor-dark.d.ts │ │ ├── isbl-editor-dark.js │ │ ├── isbl-editor-light.css │ │ ├── isbl-editor-light.d.ts │ │ ├── isbl-editor-light.js │ │ ├── isotope.css │ │ ├── isotope.d.ts │ │ ├── isotope.js │ │ ├── kimber.css │ │ ├── kimber.d.ts │ │ ├── kimber.js │ │ ├── kimbie-dark.css │ │ ├── kimbie-dark.d.ts │ │ ├── kimbie-dark.js │ │ ├── kimbie-light.css │ │ ├── kimbie-light.d.ts │ │ ├── kimbie-light.js │ │ ├── lightfair.css │ │ ├── lightfair.d.ts │ │ ├── lightfair.js │ │ ├── lioshi.css │ │ ├── lioshi.d.ts │ │ ├── lioshi.js │ │ ├── london-tube.css │ │ ├── london-tube.d.ts │ │ ├── london-tube.js │ │ ├── macintosh.css │ │ ├── macintosh.d.ts │ │ ├── macintosh.js │ │ ├── magula.css │ │ ├── magula.d.ts │ │ ├── magula.js │ │ ├── marrakesh.css │ │ ├── marrakesh.d.ts │ │ ├── marrakesh.js │ │ ├── materia.css │ │ ├── materia.d.ts │ │ ├── materia.js │ │ ├── material-darker.css │ │ ├── material-darker.d.ts │ │ ├── material-darker.js │ │ ├── material-lighter.css │ │ ├── material-lighter.d.ts │ │ ├── material-lighter.js │ │ ├── material-palenight.css │ │ ├── material-palenight.d.ts │ │ ├── material-palenight.js │ │ ├── material-vivid.css │ │ ├── material-vivid.d.ts │ │ ├── material-vivid.js │ │ ├── material.css │ │ ├── material.d.ts │ │ ├── material.js │ │ ├── mellow-purple.css │ │ ├── mellow-purple.d.ts │ │ ├── mellow-purple.js │ │ ├── mexico-light.css │ │ ├── mexico-light.d.ts │ │ ├── mexico-light.js │ │ ├── mocha.css │ │ ├── mocha.d.ts │ │ ├── mocha.js │ │ ├── mono-blue.css │ │ ├── mono-blue.d.ts │ │ ├── mono-blue.js │ │ ├── monokai-sublime.css │ │ ├── monokai-sublime.d.ts │ │ ├── monokai-sublime.js │ │ ├── monokai.css │ │ ├── monokai.d.ts │ │ ├── monokai.js │ │ ├── nebula.css │ │ ├── nebula.d.ts │ │ ├── nebula.js │ │ ├── night-owl.css │ │ ├── night-owl.d.ts │ │ ├── night-owl.js │ │ ├── nnfx-dark.css │ │ ├── nnfx-dark.d.ts │ │ ├── nnfx-dark.js │ │ ├── nnfx-light.css │ │ ├── nnfx-light.d.ts │ │ ├── nnfx-light.js │ │ ├── nord.css │ │ ├── nord.d.ts │ │ ├── nord.js │ │ ├── nova.css │ │ ├── nova.d.ts │ │ ├── nova.js │ │ ├── obsidian.css │ │ ├── obsidian.d.ts │ │ ├── obsidian.js │ │ ├── ocean.css │ │ ├── ocean.d.ts │ │ ├── ocean.js │ │ ├── oceanicnext.css │ │ ├── oceanicnext.d.ts │ │ ├── oceanicnext.js │ │ ├── one-light.css │ │ ├── one-light.d.ts │ │ ├── one-light.js │ │ ├── onedark.css │ │ ├── onedark.d.ts │ │ ├── onedark.js │ │ ├── outrun-dark.css │ │ ├── outrun-dark.d.ts │ │ ├── outrun-dark.js │ │ ├── panda-syntax-dark.css │ │ ├── panda-syntax-dark.d.ts │ │ ├── panda-syntax-dark.js │ │ ├── panda-syntax-light.css │ │ ├── panda-syntax-light.d.ts │ │ ├── panda-syntax-light.js │ │ ├── papercolor-dark.css │ │ ├── papercolor-dark.d.ts │ │ ├── papercolor-dark.js │ │ ├── papercolor-light.css │ │ ├── papercolor-light.d.ts │ │ ├── papercolor-light.js │ │ ├── paraiso-dark.css │ │ ├── paraiso-dark.d.ts │ │ ├── paraiso-dark.js │ │ ├── paraiso-light.css │ │ ├── paraiso-light.d.ts │ │ ├── paraiso-light.js │ │ ├── paraiso.css │ │ ├── paraiso.d.ts │ │ ├── paraiso.js │ │ ├── pasque.css │ │ ├── pasque.d.ts │ │ ├── pasque.js │ │ ├── phd.css │ │ ├── phd.d.ts │ │ ├── phd.js │ │ ├── pico.css │ │ ├── pico.d.ts │ │ ├── pico.js │ │ ├── pojoaque.css │ │ ├── pojoaque.d.ts │ │ ├── pojoaque.jpg │ │ ├── pojoaque.js │ │ ├── pop.css │ │ ├── pop.d.ts │ │ ├── pop.js │ │ ├── porple.css │ │ ├── porple.d.ts │ │ ├── porple.js │ │ ├── purebasic.css │ │ ├── purebasic.d.ts │ │ ├── purebasic.js │ │ ├── qtcreator-dark.css │ │ ├── qtcreator-dark.d.ts │ │ ├── qtcreator-dark.js │ │ ├── qtcreator-light.css │ │ ├── qtcreator-light.d.ts │ │ ├── qtcreator-light.js │ │ ├── qualia.css │ │ ├── qualia.d.ts │ │ ├── qualia.js │ │ ├── railscasts.css │ │ ├── railscasts.d.ts │ │ ├── railscasts.js │ │ ├── rainbow.css │ │ ├── rainbow.d.ts │ │ ├── rainbow.js │ │ ├── rebecca.css │ │ ├── rebecca.d.ts │ │ ├── rebecca.js │ │ ├── ros-pine-dawn.css │ │ ├── ros-pine-dawn.d.ts │ │ ├── ros-pine-dawn.js │ │ ├── ros-pine-moon.css │ │ ├── ros-pine-moon.d.ts │ │ ├── ros-pine-moon.js │ │ ├── ros-pine.css │ │ ├── ros-pine.d.ts │ │ ├── ros-pine.js │ │ ├── routeros.css │ │ ├── routeros.d.ts │ │ ├── routeros.js │ │ ├── sagelight.css │ │ ├── sagelight.d.ts │ │ ├── sagelight.js │ │ ├── sandcastle.css │ │ ├── sandcastle.d.ts │ │ ├── sandcastle.js │ │ ├── school-book.css │ │ ├── school-book.d.ts │ │ ├── school-book.js │ │ ├── seti-ui.css │ │ ├── seti-ui.d.ts │ │ ├── seti-ui.js │ │ ├── shades-of-purple.css │ │ ├── shades-of-purple.d.ts │ │ ├── shades-of-purple.js │ │ ├── shapeshifter.css │ │ ├── shapeshifter.d.ts │ │ ├── shapeshifter.js │ │ ├── silk-dark.css │ │ ├── silk-dark.d.ts │ │ ├── silk-dark.js │ │ ├── silk-light.css │ │ ├── silk-light.d.ts │ │ ├── silk-light.js │ │ ├── snazzy.css │ │ ├── snazzy.d.ts │ │ ├── snazzy.js │ │ ├── solar-flare-light.css │ │ ├── solar-flare-light.d.ts │ │ ├── solar-flare-light.js │ │ ├── solar-flare.css │ │ ├── solar-flare.d.ts │ │ ├── solar-flare.js │ │ ├── solarized-dark.css │ │ ├── solarized-dark.d.ts │ │ ├── solarized-dark.js │ │ ├── solarized-light.css │ │ ├── solarized-light.d.ts │ │ ├── solarized-light.js │ │ ├── spacemacs.css │ │ ├── spacemacs.d.ts │ │ ├── spacemacs.js │ │ ├── srcery.css │ │ ├── srcery.d.ts │ │ ├── srcery.js │ │ ├── stackoverflow-dark.css │ │ ├── stackoverflow-dark.d.ts │ │ ├── stackoverflow-dark.js │ │ ├── stackoverflow-light.css │ │ ├── stackoverflow-light.d.ts │ │ ├── stackoverflow-light.js │ │ ├── summercamp.css │ │ ├── summercamp.d.ts │ │ ├── summercamp.js │ │ ├── summerfruit-dark.css │ │ ├── summerfruit-dark.d.ts │ │ ├── summerfruit-dark.js │ │ ├── summerfruit-light.css │ │ ├── summerfruit-light.d.ts │ │ ├── summerfruit-light.js │ │ ├── sunburst.css │ │ ├── sunburst.d.ts │ │ ├── sunburst.js │ │ ├── synth-midnight-terminal-dark.css │ │ ├── synth-midnight-terminal-dark.d.ts │ │ ├── synth-midnight-terminal-dark.js │ │ ├── synth-midnight-terminal-light.css │ │ ├── synth-midnight-terminal-light.d.ts │ │ ├── synth-midnight-terminal-light.js │ │ ├── tango.css │ │ ├── tango.d.ts │ │ ├── tango.js │ │ ├── tender.css │ │ ├── tender.d.ts │ │ ├── tender.js │ │ ├── tokyo-night-dark.css │ │ ├── tokyo-night-dark.d.ts │ │ ├── tokyo-night-dark.js │ │ ├── tokyo-night-light.css │ │ ├── tokyo-night-light.d.ts │ │ ├── tokyo-night-light.js │ │ ├── tomorrow-night-blue.css │ │ ├── tomorrow-night-blue.d.ts │ │ ├── tomorrow-night-blue.js │ │ ├── tomorrow-night-bright.css │ │ ├── tomorrow-night-bright.d.ts │ │ ├── tomorrow-night-bright.js │ │ ├── tomorrow-night.css │ │ ├── tomorrow-night.d.ts │ │ ├── tomorrow-night.js │ │ ├── tomorrow.css │ │ ├── tomorrow.d.ts │ │ ├── tomorrow.js │ │ ├── twilight.css │ │ ├── twilight.d.ts │ │ ├── twilight.js │ │ ├── unikitty-dark.css │ │ ├── unikitty-dark.d.ts │ │ ├── unikitty-dark.js │ │ ├── unikitty-light.css │ │ ├── unikitty-light.d.ts │ │ ├── unikitty-light.js │ │ ├── vs.css │ │ ├── vs.d.ts │ │ ├── vs.js │ │ ├── vs2015.css │ │ ├── vs2015.d.ts │ │ ├── vs2015.js │ │ ├── vulcan.css │ │ ├── vulcan.d.ts │ │ ├── vulcan.js │ │ ├── windows-10-light.css │ │ ├── windows-10-light.d.ts │ │ ├── windows-10-light.js │ │ ├── windows-10.css │ │ ├── windows-10.d.ts │ │ ├── windows-10.js │ │ ├── windows-95-light.css │ │ ├── windows-95-light.d.ts │ │ ├── windows-95-light.js │ │ ├── windows-95.css │ │ ├── windows-95.d.ts │ │ ├── windows-95.js │ │ ├── windows-high-contrast-light.css │ │ ├── windows-high-contrast-light.d.ts │ │ ├── windows-high-contrast-light.js │ │ ├── windows-high-contrast.css │ │ ├── windows-high-contrast.d.ts │ │ ├── windows-high-contrast.js │ │ ├── windows-nt-light.css │ │ ├── windows-nt-light.d.ts │ │ ├── windows-nt-light.js │ │ ├── windows-nt.css │ │ ├── windows-nt.d.ts │ │ ├── windows-nt.js │ │ ├── woodland.css │ │ ├── woodland.d.ts │ │ ├── woodland.js │ │ ├── xcode-dusk.css │ │ ├── xcode-dusk.d.ts │ │ ├── xcode-dusk.js │ │ ├── xcode.css │ │ ├── xcode.d.ts │ │ ├── xcode.js │ │ ├── xt256.css │ │ ├── xt256.d.ts │ │ ├── xt256.js │ │ ├── zenburn.css │ │ ├── zenburn.d.ts │ │ └── zenburn.js │ ├── themeNames.json │ └── themes.css │ ├── index.ts │ ├── modeobserver.ts │ ├── settings │ ├── PasswordInfo.svelte │ └── SocialAccounts.svelte │ ├── theme.ts │ ├── variables.js │ └── widgets │ ├── AppsMenu.svelte │ └── CardOld.svelte ├── static ├── favicon.png └── images │ └── flowbite-svelte-icon-logo.svg ├── svelte.config.js ├── tsconfig.json ├── vite.config.ts └── vitest-setup-client.ts /.changeset/README.md: -------------------------------------------------------------------------------- 1 | # Changesets 2 | 3 | Hello and welcome! This folder has been automatically generated by `@changesets/cli`, a build tool that works 4 | with multi-package repos, or single-package repos to help you version and publish your code. You can 5 | find the full documentation for it [in our repository](https://github.com/changesets/changesets) 6 | 7 | We have a quick list of common questions to get you started engaging with this project in 8 | [our documentation](https://github.com/changesets/changesets/blob/main/docs/common-questions.md) 9 | -------------------------------------------------------------------------------- /.changeset/config.json: -------------------------------------------------------------------------------- 1 | { 2 | "$schema": "https://unpkg.com/@changesets/config@3.0.0/schema.json", 3 | "changelog": ["@svitejs/changesets-changelog-github-compact", { "repo": "themesberg/flowbite-svelte-admin-dashboard" }], 4 | "commit": false, 5 | "fixed": [], 6 | "linked": [], 7 | "access": "public", 8 | "baseBranch": "main", 9 | "updateInternalDependencies": "patch", 10 | "ignore": [] 11 | } 12 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | test-results 2 | node_modules 3 | 4 | # Output 5 | .output 6 | .vercel 7 | .netlify 8 | .wrangler 9 | /.svelte-kit 10 | /build 11 | /dist 12 | /package 13 | /test-results 14 | bun.lockb 15 | 16 | # OS 17 | .DS_Store 18 | Thumbs.db 19 | 20 | # Env 21 | .env 22 | .env.* 23 | !.env.example 24 | !.env.test 25 | 26 | # Vite 27 | vite.config.js.timestamp-* 28 | vite.config.ts.timestamp-* 29 | -------------------------------------------------------------------------------- /.npmrc: -------------------------------------------------------------------------------- 1 | engine-strict=true 2 | -------------------------------------------------------------------------------- /.prettierignore: -------------------------------------------------------------------------------- 1 | # Package Managers 2 | package-lock.json 3 | pnpm-lock.yaml 4 | yarn.lock 5 | bun.lock 6 | bun.lockb 7 | -------------------------------------------------------------------------------- /.prettierrc: -------------------------------------------------------------------------------- 1 | { 2 | "useTabs": false, 3 | "singleQuote": true, 4 | "trailingComma": "none", 5 | "printWidth": 200, 6 | "plugins": ["prettier-plugin-svelte", "prettier-plugin-tailwindcss"], 7 | "overrides": [ 8 | { 9 | "files": "*.svelte", 10 | "options": { 11 | "parser": "svelte" 12 | } 13 | } 14 | ] 15 | } 16 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # flowbite-svelte-admin-dashboard 2 | 3 | - [demo](https://flowbite-svelte-admin-dashboard.vercel.app/) 4 | - [repo](https://github.com/themesberg/flowbite-svelte-admin-dashboard) 5 | 6 | ## Installation 7 | 8 | ```bash 9 | # create a new project in my-app 10 | # install tailwindcss 11 | npx sv create my-app 12 | cd my-app 13 | pnpm i -D flowbite-svelte-admin-dashboard 14 | # it's a good idea to update all dependencies 15 | pnpm update 16 | # run the server 17 | pnpm dev 18 | ``` 19 | -------------------------------------------------------------------------------- /playwright.config.ts: -------------------------------------------------------------------------------- 1 | import { defineConfig } from '@playwright/test'; 2 | 3 | export default defineConfig({ 4 | webServer: { 5 | command: 'npm run build && npm run preview', 6 | port: 4173 7 | }, 8 | testDir: 'e2e' 9 | }); 10 | -------------------------------------------------------------------------------- /src/app.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | %sveltekit.head% 8 | 9 | 10 |
%sveltekit.body%
11 | 12 | 13 | -------------------------------------------------------------------------------- /src/demo.spec.ts: -------------------------------------------------------------------------------- 1 | import { describe, it, expect } from 'vitest'; 2 | 3 | describe('sum test', () => { 4 | it('adds 1 + 2 to equal 3', () => { 5 | expect(1 + 2).toBe(3); 6 | }); 7 | }); 8 | -------------------------------------------------------------------------------- /src/routes/(no-sidebar)/pages/404.svelte: -------------------------------------------------------------------------------- 1 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /src/routes/(no-sidebar)/pages/500.svelte: -------------------------------------------------------------------------------- 1 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /src/routes/(no-sidebar)/pages/[slug]/+page.svelte: -------------------------------------------------------------------------------- 1 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /src/routes/(no-sidebar)/pages/[slug]/+page.ts: -------------------------------------------------------------------------------- 1 | import type { PageLoad } from './$types'; 2 | 3 | export const load: PageLoad = async ({ params }) => { 4 | const post = await import(`../${params.slug}.svelte`); 5 | const content = post.default; 6 | 7 | return { 8 | content 9 | }; 10 | }; 11 | -------------------------------------------------------------------------------- /src/routes/(no-sidebar)/pages/maintenance.svelte: -------------------------------------------------------------------------------- 1 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /src/routes/(sidebar)/+page.server.ts: -------------------------------------------------------------------------------- 1 | const json = (r: Response) => r.json(); 2 | // export const prerender = true; 3 | import type { PageServerLoad } from './$types'; 4 | 5 | export const load: PageServerLoad = async ({ fetch }) => { 6 | try { 7 | const posts = await fetch('/api/posts').then(json); 8 | // console.log('posts: ', posts); 9 | return { posts }; 10 | } catch (error) { 11 | console.error(`Error in load function for /: ${error}`); 12 | } 13 | }; 14 | -------------------------------------------------------------------------------- /src/routes/(sidebar)/about/md/installation.md: -------------------------------------------------------------------------------- 1 | pnpm i -D flowbite-svelte-admin-dashboard -------------------------------------------------------------------------------- /src/routes/(sidebar)/docs/authentication/examples/index.ts: -------------------------------------------------------------------------------- 1 | export { default as ForgotPassword } from './ForgotPasswordEx.svelte'; 2 | export { default as ProfileLock } from './ProfileLockEx.svelte'; 3 | export { default as ResetPassword } from './ResetPasswordEx.svelte'; 4 | export { default as SignIn } from './SignInEx.svelte'; 5 | export { default as SignUp } from './SignUpEx.svelte'; 6 | -------------------------------------------------------------------------------- /src/routes/(sidebar)/docs/crud/examples/DeleteModalEx.svelte: -------------------------------------------------------------------------------- 1 | 11 | 12 | 15 | 16 | 17 | -------------------------------------------------------------------------------- /src/routes/(sidebar)/docs/crud/examples/UserModalEx.svelte: -------------------------------------------------------------------------------- 1 | 10 | 11 | 14 | 15 | -------------------------------------------------------------------------------- /src/routes/(sidebar)/docs/crud/examples/index.ts: -------------------------------------------------------------------------------- 1 | export { default as DeleteDrawer } from './DeleteDrawerEx.svelte'; 2 | export { default as DeleteModal } from './DeleteModalEx.svelte'; 3 | export { default as ProductDrawer } from './ProductDrawerEx.svelte' 4 | export { default as UserModal } from './UserModalEx.svelte'; -------------------------------------------------------------------------------- /src/routes/(sidebar)/docs/dashboard/examples/CategorySalesReportEx.svelte: -------------------------------------------------------------------------------- 1 | 6 | 7 | 8 | {#snippet chart()} 9 | 10 | {/snippet} 11 | 12 | -------------------------------------------------------------------------------- /src/routes/(sidebar)/docs/dashboard/examples/CreditCardEx.svelte: -------------------------------------------------------------------------------- 1 | 4 | 5 |
6 | ••• {475} 7 | 8 | ••• {476} 9 |
10 | -------------------------------------------------------------------------------- /src/routes/(sidebar)/docs/dashboard/examples/DateRangeSelectorEx.svelte: -------------------------------------------------------------------------------- 1 | 4 | 5 | -------------------------------------------------------------------------------- /src/routes/(sidebar)/docs/dashboard/examples/MoreEx.svelte: -------------------------------------------------------------------------------- 1 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /src/routes/(sidebar)/docs/dashboard/examples/ProductMetricCardEx.svelte: -------------------------------------------------------------------------------- 1 | 5 | 6 | 7 | {#snippet chart()} 8 | 9 | {/snippet} 10 | 11 | -------------------------------------------------------------------------------- /src/routes/(sidebar)/docs/navbar/examples/UserMenuEx.svelte: -------------------------------------------------------------------------------- 1 | 8 | 9 | 10 | 11 | Sign out 12 | -------------------------------------------------------------------------------- /src/routes/(sidebar)/docs/navbar/examples/index.ts: -------------------------------------------------------------------------------- 1 | export { default as AppsMenu } from './AppsMenuEx.svelte'; 2 | export { default as NotificationList } from './NotificationListEx.svelte'; 3 | export { default as UserMenu } from './UserMenuEx.svelte'; -------------------------------------------------------------------------------- /src/routes/(sidebar)/docs/pages/examples/ComparisonTableEx.svelte: -------------------------------------------------------------------------------- 1 | 5 | 6 | -------------------------------------------------------------------------------- /src/routes/(sidebar)/docs/pages/examples/FaqEx.svelte: -------------------------------------------------------------------------------- 1 | 5 | 6 | -------------------------------------------------------------------------------- /src/routes/(sidebar)/docs/pages/examples/FooterEx.svelte: -------------------------------------------------------------------------------- 1 | 6 | 7 |
8 | {#snippet description()} 9 |

Flowbite is a UI library of elements & components based on Tailwind CSS that can get you started building websites faster and more efficiently.

10 | {/snippet} 11 |
-------------------------------------------------------------------------------- /src/routes/(sidebar)/docs/pages/examples/MaintenanceEx.svelte: -------------------------------------------------------------------------------- 1 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /src/routes/(sidebar)/docs/pages/examples/NotFoundEx.svelte: -------------------------------------------------------------------------------- 1 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /src/routes/(sidebar)/docs/pages/examples/ServerErrorEx.svelte: -------------------------------------------------------------------------------- 1 | 4 | 5 | -------------------------------------------------------------------------------- /src/routes/(sidebar)/docs/pages/examples/index.ts: -------------------------------------------------------------------------------- 1 | export { default as Faq } from './FaqEx.svelte' 2 | export { default as ComparisonTable } from './ComparisonTableEx.svelte'; 3 | export { default as Footer } from './FooterEx.svelte'; 4 | export { default as Maintenance } from './MaintenanceEx.svelte'; 5 | export { default as NotFound } from './NotFoundEx.svelte'; 6 | export { default as PriceCard } from './PriceCardEx.svelte'; 7 | export { default as ServerError } from './ServerErrorEx.svelte'; -------------------------------------------------------------------------------- /src/routes/(sidebar)/docs/settings/examples/AccountsEx.svelte: -------------------------------------------------------------------------------- 1 | 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /src/routes/(sidebar)/docs/settings/examples/index.ts: -------------------------------------------------------------------------------- 1 | export { default as Accounts } from './AccountsEx.svelte'; 2 | export { default as GeneralInfo } from './GeneralInfoEx.svelte'; 3 | export { default as NotificationCard } from './NotificationCardEx.svelte'; 4 | export { default as LanguageTime } from './LanguageTimeEx.svelte'; 5 | export { default as Sessions } from './SessionsEx.svelte'; 6 | export { default as UserProfile } from './UserProfileEx.svelte'; -------------------------------------------------------------------------------- /src/routes/(sidebar)/docs/utilities/examples/ChangeEx.svelte: -------------------------------------------------------------------------------- 1 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /src/routes/(sidebar)/docs/utilities/examples/DarkChartEx.svelte: -------------------------------------------------------------------------------- 1 | 5 | 6 | -------------------------------------------------------------------------------- /src/routes/(sidebar)/docs/utilities/examples/EmptyCardEx.svelte: -------------------------------------------------------------------------------- 1 | 4 | 5 | -------------------------------------------------------------------------------- /src/routes/(sidebar)/docs/utilities/examples/IconAvatarEx.svelte: -------------------------------------------------------------------------------- 1 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /src/routes/(sidebar)/docs/utilities/examples/NotificationEx.svelte: -------------------------------------------------------------------------------- 1 | 10 | 11 | 12 | {@html content} 13 | -------------------------------------------------------------------------------- /src/routes/(sidebar)/docs/utilities/examples/PlaygroundEx.svelte: -------------------------------------------------------------------------------- 1 | 4 | 5 | -------------------------------------------------------------------------------- /src/routes/(sidebar)/docs/utilities/examples/PriceCardPriceEx.svelte: -------------------------------------------------------------------------------- 1 | 7 | 8 | -------------------------------------------------------------------------------- /src/routes/(sidebar)/docs/utilities/examples/SmallPanelEx.svelte: -------------------------------------------------------------------------------- 1 | 9 | 10 | -------------------------------------------------------------------------------- /src/routes/(sidebar)/docs/utilities/examples/StatusBadgeEx.svelte: -------------------------------------------------------------------------------- 1 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | -------------------------------------------------------------------------------- /src/routes/+layout.server.ts: -------------------------------------------------------------------------------- 1 | import type { LayoutServerLoad } from './$types'; 2 | import { ANALYTICS_ID } from '$env/static/private'; 3 | const json = (r: Response) => r.json(); 4 | // export const prerender = true; 5 | 6 | export const load: LayoutServerLoad = async ({ fetch }) => { 7 | try { 8 | const posts = await fetch('/api/posts').then(json); 9 | // console.log('posts: ', posts); 10 | return { ANALYTICS_ID, posts }; 11 | } catch (error) { 12 | console.error(`Error in load function for /: ${error}`); 13 | } 14 | }; 15 | -------------------------------------------------------------------------------- /src/routes/+layout.svelte: -------------------------------------------------------------------------------- 1 | 13 | 14 | {#if analyticsId} 15 | 16 | {/if} 17 | {@render children()} 18 | -------------------------------------------------------------------------------- /src/routes/api/posts/+server.ts: -------------------------------------------------------------------------------- 1 | import { fetchDocs } from '../../utils'; 2 | import { json } from '@sveltejs/kit'; 3 | 4 | export const GET = async () => { 5 | const allDocs = await fetchDocs(); 6 | return json({ 7 | posts: allDocs 8 | }); 9 | }; 10 | -------------------------------------------------------------------------------- /src/routes/authentication/[slug]/+page.svelte: -------------------------------------------------------------------------------- 1 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /src/routes/authentication/[slug]/+page.ts: -------------------------------------------------------------------------------- 1 | import type { PageLoad } from './$types'; 2 | 3 | export const load: PageLoad = async ({ params }) => { 4 | const post = await import(`../${params.slug}.svelte`); 5 | const content = post.default; 6 | 7 | return { 8 | content 9 | }; 10 | }; 11 | -------------------------------------------------------------------------------- /src/routes/component-data/ActivityList.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "ActivityList", 3 | "type": { 4 | "name": "ActivityListProps", 5 | "link": "https://github.com/themesberg/flowbite-svelte-admin-dashboard/blob/main/src/lib/types.ts#L385" 6 | }, 7 | "props": [ 8 | [ 9 | "title", 10 | "'Latest Activity'" 11 | ], 12 | [ 13 | "children", 14 | "" 15 | ], 16 | [ 17 | "actions", 18 | "" 19 | ] 20 | ] 21 | } -------------------------------------------------------------------------------- /src/routes/component-data/Alerts.json: -------------------------------------------------------------------------------- 1 | { "name": "Alerts", "slots": [], "events": [], "props": [] } 2 | -------------------------------------------------------------------------------- /src/routes/component-data/AppsMenu.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "AppsMenu", 3 | "type": { 4 | "name": "AppsMenuProps", 5 | "link": "https://github.com/themesberg/flowbite-svelte-admin-dashboard/blob/main/src/lib/types.ts#L12" 6 | }, 7 | "props": [ 8 | [ 9 | "open", 10 | "$bindable()" 11 | ], 12 | [ 13 | "menu", 14 | "" 15 | ] 16 | ] 17 | } -------------------------------------------------------------------------------- /src/routes/component-data/CardList.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "CardList", 3 | "type": { 4 | "name": "CardListProps", 5 | "link": "https://github.com/themesberg/flowbite-svelte-admin-dashboard/blob/main/src/lib/types.ts#L420" 6 | }, 7 | "props": [ 8 | [ 9 | "title", 10 | "" 11 | ], 12 | [ 13 | "subtitle", 14 | "" 15 | ], 16 | [ 17 | "buttonLabel", 18 | "'Save all'" 19 | ], 20 | [ 21 | "items", 22 | "[]" 23 | ], 24 | [ 25 | "class: className", 26 | "" 27 | ] 28 | ] 29 | } -------------------------------------------------------------------------------- /src/routes/component-data/CardWidget.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "CardWidget", 3 | "type": { 4 | "name": "CardWidgetProps", 5 | "link": "https://github.com/themesberg/flowbite-svelte-admin-dashboard/blob/main/src/lib/types.ts#L413" 6 | }, 7 | "props": [ 8 | [ 9 | "children", 10 | "" 11 | ], 12 | [ 13 | "title", 14 | "" 15 | ], 16 | [ 17 | "subtitle", 18 | "" 19 | ], 20 | [ 21 | "class: className", 22 | "" 23 | ] 24 | ] 25 | } -------------------------------------------------------------------------------- /src/routes/component-data/ChatMsg.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "ChatMsg", 3 | "type": { 4 | "name": "ChatMsgProps", 5 | "link": "https://github.com/themesberg/flowbite-svelte-admin-dashboard/blob/main/src/lib/types.ts#L35" 6 | }, 7 | "props": [ 8 | [ 9 | "children", 10 | "" 11 | ], 12 | [ 13 | "avatar", 14 | "'https:" 15 | ] 16 | ] 17 | } -------------------------------------------------------------------------------- /src/routes/component-data/ComparisonTable.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "ComparisonTable", 3 | "type": { 4 | "name": "ComparisonTableProps", 5 | "link": "https://github.com/themesberg/flowbite-svelte-admin-dashboard/blob/main/src/lib/types.ts#L403" 6 | }, 7 | "props": [ 8 | [ 9 | "columns", 10 | "" 11 | ], 12 | [ 13 | "rows", 14 | "" 15 | ] 16 | ] 17 | } -------------------------------------------------------------------------------- /src/routes/component-data/CreditCard.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "CreditCard", 3 | "type": { 4 | "name": "CreditCardProps", 5 | "link": "https://github.com/themesberg/flowbite-svelte-admin-dashboard/blob/main/src/lib/types.ts#L338" 6 | }, 7 | "props": [ 8 | [ 9 | "number", 10 | "" 11 | ] 12 | ] 13 | } -------------------------------------------------------------------------------- /src/routes/component-data/DarkChart.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "DarkChart", 3 | "type": { 4 | "name": "Props", 5 | "link": null 6 | }, 7 | "props": [ 8 | [ 9 | "configFunc", 10 | "" 11 | ], 12 | [ 13 | "class: className", 14 | "" 15 | ] 16 | ] 17 | } -------------------------------------------------------------------------------- /src/routes/component-data/DateRangeSelector.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "DateRangeSelector", 3 | "type": { 4 | "name": "DateRangeSelectorProps", 5 | "link": "https://github.com/themesberg/flowbite-svelte-admin-dashboard/blob/main/src/lib/types.ts#L342" 6 | }, 7 | "props": [ 8 | [ 9 | "timeslot", 10 | "'Last 7 days'" 11 | ], 12 | [ 13 | "timeslots", 14 | "" 15 | ] 16 | ] 17 | } -------------------------------------------------------------------------------- /src/routes/component-data/DeleteModal.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "DeleteModal", 3 | "type": { 4 | "name": "DeleteModalProps", 5 | "link": "https://github.com/themesberg/flowbite-svelte-admin-dashboard/blob/main/src/lib/types.ts#L237" 6 | }, 7 | "props": [ 8 | [ 9 | "open", 10 | "$bindable(true)" 11 | ], 12 | [ 13 | "title", 14 | "'Are you sure you want to delete this?'" 15 | ], 16 | [ 17 | "yes", 18 | "\"Yes, I'm sure\"" 19 | ], 20 | [ 21 | "no", 22 | "'No, cancel'" 23 | ] 24 | ] 25 | } -------------------------------------------------------------------------------- /src/routes/component-data/Emails.json: -------------------------------------------------------------------------------- 1 | { "name": "Emails", "slots": [], "events": [], "props": [] } 2 | -------------------------------------------------------------------------------- /src/routes/component-data/EmptyCard.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "EmptyCard", 3 | "type": { 4 | "name": "EmptyCardProps", 5 | "link": "https://github.com/themesberg/flowbite-svelte-admin-dashboard/blob/main/src/lib/types.ts#L227" 6 | }, 7 | "props": [ 8 | [ 9 | "size", 10 | "" 11 | ], 12 | [ 13 | "class: className", 14 | "" 15 | ] 16 | ] 17 | } -------------------------------------------------------------------------------- /src/routes/component-data/Faq.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "Faq", 3 | "type": { 4 | "name": "FaqProps", 5 | "link": "https://github.com/themesberg/flowbite-svelte-admin-dashboard/blob/main/src/lib/types.ts#L177" 6 | }, 7 | "props": [ 8 | [ 9 | "title", 10 | "'Frequently asked questions'" 11 | ], 12 | [ 13 | "description", 14 | "'All types of businesses need access to development resources, so we give you the option to decide how much you need to use.'" 15 | ], 16 | [ 17 | "faqs", 18 | "" 19 | ] 20 | ] 21 | } -------------------------------------------------------------------------------- /src/routes/component-data/Footer.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "Footer", 3 | "type": { 4 | "name": "FooterProps", 5 | "link": "https://github.com/themesberg/flowbite-svelte-admin-dashboard/blob/main/src/lib/types.ts#L374" 6 | }, 7 | "props": [ 8 | [ 9 | "brand", 10 | "" 11 | ], 12 | [ 13 | "description", 14 | "" 15 | ], 16 | [ 17 | "menus", 18 | "" 19 | ] 20 | ] 21 | } -------------------------------------------------------------------------------- /src/routes/component-data/GeneralInfo.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "GeneralInfo", 3 | "type": { 4 | "name": "GeneralInfoProps", 5 | "link": "https://github.com/themesberg/flowbite-svelte-admin-dashboard/blob/main/src/lib/types.ts#L467" 6 | }, 7 | "props": [ 8 | [ 9 | "inputs", 10 | "" 11 | ] 12 | ] 13 | } -------------------------------------------------------------------------------- /src/routes/component-data/IconAvatar.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "IconAvatar", 3 | "type": { 4 | "name": "IconAvatarProps", 5 | "link": "https://github.com/themesberg/flowbite-svelte-admin-dashboard/blob/main/src/lib/types.ts#L44" 6 | }, 7 | "props": [ 8 | [ 9 | "children", 10 | "" 11 | ], 12 | [ 13 | "src", 14 | "" 15 | ], 16 | [ 17 | "color", 18 | "'primary'" 19 | ] 20 | ] 21 | } -------------------------------------------------------------------------------- /src/routes/component-data/LanguageTime.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "LanguageTime", 3 | "type": { 4 | "name": "LanguageTimeProps", 5 | "link": "https://github.com/themesberg/flowbite-svelte-admin-dashboard/blob/main/src/lib/types.ts#L481" 6 | }, 7 | "props": [ 8 | [ 9 | "languages", 10 | "" 11 | ], 12 | [ 13 | "timezones", 14 | "" 15 | ], 16 | [ 17 | "children", 18 | "" 19 | ] 20 | ] 21 | } -------------------------------------------------------------------------------- /src/routes/component-data/LastRange.json: -------------------------------------------------------------------------------- 1 | { "name": "LastRange", "slots": [], "events": [], "props": [] } 2 | -------------------------------------------------------------------------------- /src/routes/component-data/More.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "More", 3 | "type": { 4 | "name": "MoreProps", 5 | "link": "https://github.com/themesberg/flowbite-svelte-admin-dashboard/blob/main/src/lib/types.ts#L60" 6 | }, 7 | "props": [ 8 | [ 9 | "title", 10 | "" 11 | ], 12 | [ 13 | "href", 14 | "'#'" 15 | ], 16 | [ 17 | "flat", 18 | "" 19 | ], 20 | [ 21 | "class: className", 22 | "" 23 | ] 24 | ] 25 | } -------------------------------------------------------------------------------- /src/routes/component-data/Notification.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "Notification", 3 | "type": { 4 | "name": "NotificationProps", 5 | "link": "https://github.com/themesberg/flowbite-svelte-admin-dashboard/blob/main/src/lib/types.ts#L67" 6 | }, 7 | "props": [ 8 | [ 9 | "children", 10 | "" 11 | ], 12 | [ 13 | "src", 14 | "" 15 | ], 16 | [ 17 | "Icon", 18 | "" 19 | ], 20 | [ 21 | "when", 22 | "" 23 | ], 24 | [ 25 | "href", 26 | "" 27 | ], 28 | [ 29 | "color", 30 | "'gray'" 31 | ] 32 | ] 33 | } -------------------------------------------------------------------------------- /src/routes/component-data/NotificationCard.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "NotificationCard", 3 | "type": { 4 | "name": "NotificationCardProps", 5 | "link": "https://github.com/themesberg/flowbite-svelte-admin-dashboard/blob/main/src/lib/types.ts#L434" 6 | }, 7 | "props": [ 8 | [ 9 | "title", 10 | "'Email Notifications'" 11 | ], 12 | [ 13 | "subtitle", 14 | "'You can set up Themesberg to get email notifications '" 15 | ], 16 | [ 17 | "items", 18 | "" 19 | ], 20 | [ 21 | "class: className", 22 | "'p-4 sm:p-6'" 23 | ] 24 | ] 25 | } -------------------------------------------------------------------------------- /src/routes/component-data/NotificationList.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "NotificationList", 3 | "type": { 4 | "name": "NotificationListProps", 5 | "link": "https://github.com/themesberg/flowbite-svelte-admin-dashboard/blob/main/src/lib/types.ts#L536" 6 | }, 7 | "props": [ 8 | [ 9 | "notifications", 10 | "" 11 | ] 12 | ] 13 | } -------------------------------------------------------------------------------- /src/routes/component-data/PasswordInfo.json: -------------------------------------------------------------------------------- 1 | { "name": "PasswordInfo", "slots": [], "events": [], "props": [] } 2 | -------------------------------------------------------------------------------- /src/routes/component-data/Playground.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "Playground", 3 | "type": { 4 | "name": "PlaygroundProps", 5 | "link": "https://github.com/themesberg/flowbite-svelte-admin-dashboard/blob/main/src/lib/types.ts#L232" 6 | }, 7 | "props": [ 8 | [ 9 | "breadcrumb", 10 | "" 11 | ], 12 | [ 13 | "title", 14 | "'Create something awesome here'" 15 | ] 16 | ] 17 | } -------------------------------------------------------------------------------- /src/routes/component-data/PriceCard.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "PriceCard", 3 | "type": { 4 | "name": "PriceCardPriceProps", 5 | "link": "https://github.com/themesberg/flowbite-svelte-admin-dashboard/blob/main/src/lib/types.ts#L154" 6 | }, 7 | "props": [ 8 | [ 9 | "children", 10 | "" 11 | ], 12 | [ 13 | "subtitle", 14 | "" 15 | ], 16 | [ 17 | "title", 18 | "" 19 | ], 20 | [ 21 | "price", 22 | "" 23 | ], 24 | [ 25 | "period", 26 | "'month'" 27 | ] 28 | ] 29 | } -------------------------------------------------------------------------------- /src/routes/component-data/PriceCardListItem.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "PriceCardListItem", 3 | "type": { 4 | "name": "PriceCardListItemProps", 5 | "link": "https://github.com/themesberg/flowbite-svelte-admin-dashboard/blob/main/src/lib/types.ts#L167" 6 | }, 7 | "props": [ 8 | [ 9 | "icon", 10 | "" 11 | ], 12 | [ 13 | "children", 14 | "" 15 | ] 16 | ] 17 | } -------------------------------------------------------------------------------- /src/routes/component-data/PriceCardPrice.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "PriceCardPrice", 3 | "type": { 4 | "name": "PriceCardPriceProps", 5 | "link": "https://github.com/themesberg/flowbite-svelte-admin-dashboard/blob/main/src/lib/types.ts#L154" 6 | }, 7 | "props": [ 8 | [ 9 | "value", 10 | "" 11 | ], 12 | [ 13 | "period", 14 | "" 15 | ] 16 | ] 17 | } -------------------------------------------------------------------------------- /src/routes/component-data/Pricing.json: -------------------------------------------------------------------------------- 1 | { "name": "Pricing", "slots": [], "events": [], "props": [] } 2 | -------------------------------------------------------------------------------- /src/routes/component-data/ProductDrawer.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "ProductDrawer", 3 | "type": { 4 | "name": "ProductDrawerProps", 5 | "link": "https://github.com/themesberg/flowbite-svelte-admin-dashboard/blob/main/src/lib/types.ts#L380" 6 | }, 7 | "props": [ 8 | [ 9 | "hidden", 10 | "$bindable(true)" 11 | ], 12 | [ 13 | "title", 14 | "'Add new product'" 15 | ] 16 | ] 17 | } -------------------------------------------------------------------------------- /src/routes/component-data/Products.json: -------------------------------------------------------------------------------- 1 | { "name": "Products", "slots": [], "events": [], "props": [] } 2 | -------------------------------------------------------------------------------- /src/routes/component-data/ProfilePicture.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "ProfilePicture", 3 | "slots": [], 4 | "events": [], 5 | "props": [["src", "string", "@prop export let src: string"]] 6 | } 7 | -------------------------------------------------------------------------------- /src/routes/component-data/Sessions.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "Sessions", 3 | "type": { 4 | "name": "SessionProps", 5 | "link": "https://github.com/themesberg/flowbite-svelte-admin-dashboard/blob/main/src/lib/types.ts#L527" 6 | }, 7 | "props": [ 8 | [ 9 | "seeMorehref", 10 | "" 11 | ], 12 | [ 13 | "sessions", 14 | "" 15 | ] 16 | ] 17 | } -------------------------------------------------------------------------------- /src/routes/component-data/Sidebar.json: -------------------------------------------------------------------------------- 1 | { "name": "Sidebar", "slots": [], "events": [], "props": [] } 2 | -------------------------------------------------------------------------------- /src/routes/component-data/SmallPanel.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "SmallPanel", 3 | "type": { 4 | "name": "SmallPanelProps", 5 | "link": "https://github.com/themesberg/flowbite-svelte-admin-dashboard/blob/main/src/lib/types.ts#L498" 6 | }, 7 | "props": [ 8 | [ 9 | "IconOption", 10 | "" 11 | ], 12 | [ 13 | "title", 14 | "" 15 | ], 16 | [ 17 | "subtitle", 18 | "" 19 | ], 20 | [ 21 | "change", 22 | "0" 23 | ] 24 | ] 25 | } -------------------------------------------------------------------------------- /src/routes/component-data/SocialAccounts.json: -------------------------------------------------------------------------------- 1 | { "name": "SocialAccounts", "slots": [], "events": [], "props": [] } 2 | -------------------------------------------------------------------------------- /src/routes/component-data/StatusBadge.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "StatusBadge", 3 | "type": { 4 | "name": "StatusBadgeProps", 5 | "link": "https://github.com/themesberg/flowbite-svelte-admin-dashboard/blob/main/src/lib/types.ts#L120" 6 | }, 7 | "props": [ 8 | [ 9 | "state", 10 | "" 11 | ], 12 | [ 13 | "dark", 14 | "" 15 | ] 16 | ] 17 | } -------------------------------------------------------------------------------- /src/routes/component-data/Traffic.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "Traffic", 3 | "type": { 4 | "name": "TrafficProps", 5 | "link": "https://github.com/themesberg/flowbite-svelte-admin-dashboard/blob/main/src/lib/types.ts#L512" 6 | }, 7 | "props": [ 8 | [ 9 | "chart", 10 | "" 11 | ], 12 | [ 13 | "title", 14 | "'Traffic by device'" 15 | ], 16 | [ 17 | "subtitle", 18 | "'Desktop'" 19 | ], 20 | [ 21 | "more", 22 | "" 23 | ], 24 | [ 25 | "devices", 26 | "" 27 | ] 28 | ] 29 | } -------------------------------------------------------------------------------- /src/routes/component-data/UserModal.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "UserModal", 3 | "type": { 4 | "name": "UserModalProps", 5 | "link": "https://github.com/themesberg/flowbite-svelte-admin-dashboard/blob/main/src/lib/types.ts#L244" 6 | }, 7 | "props": [ 8 | [ 9 | "open", 10 | "$bindable(true)" 11 | ], 12 | [ 13 | "data", 14 | "" 15 | ] 16 | ] 17 | } -------------------------------------------------------------------------------- /src/routes/component-data/UserProfile.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "UserProfile", 3 | "type": { 4 | "name": "UserProfileProps", 5 | "link": "https://github.com/themesberg/flowbite-svelte-admin-dashboard/blob/main/src/lib/types.ts#L540" 6 | }, 7 | "props": [ 8 | [ 9 | "children", 10 | "" 11 | ], 12 | [ 13 | "src", 14 | "" 15 | ], 16 | [ 17 | "title", 18 | "'Profile picture'" 19 | ], 20 | [ 21 | "subtitle", 22 | "'JPG, GIF or PNG. Max size of 800K'" 23 | ] 24 | ] 25 | } -------------------------------------------------------------------------------- /src/routes/component-data/Users.json: -------------------------------------------------------------------------------- 1 | { "name": "Users", "slots": [], "events": [], "props": [] } 2 | -------------------------------------------------------------------------------- /src/routes/component-data/index.json: -------------------------------------------------------------------------------- 1 | { "name": "index", "slots": [], "events": [], "props": [] } 2 | -------------------------------------------------------------------------------- /src/routes/component-data/stacked.json: -------------------------------------------------------------------------------- 1 | { "name": "Stacked", "slots": [], "events": [], "props": [] } 2 | -------------------------------------------------------------------------------- /src/routes/component-data/thickbars.json: -------------------------------------------------------------------------------- 1 | { "name": "thickbars", "slots": [], "events": [], "props": [] } 2 | -------------------------------------------------------------------------------- /src/routes/component-data/thinfillbars.json: -------------------------------------------------------------------------------- 1 | { "name": "thinfillbars", "slots": [], "events": [], "props": [] } 2 | -------------------------------------------------------------------------------- /src/routes/component-data/thinmultibars.json: -------------------------------------------------------------------------------- 1 | { "name": "thinmultibars", "slots": [], "events": [], "props": [] } 2 | -------------------------------------------------------------------------------- /src/routes/component-data/thinstackbars.json: -------------------------------------------------------------------------------- 1 | { "name": "thinstackbars", "slots": [], "events": [], "props": [] } 2 | -------------------------------------------------------------------------------- /src/routes/component-data/variables.json: -------------------------------------------------------------------------------- 1 | { "name": "variables", "slots": [], "events": [], "props": [] } 2 | -------------------------------------------------------------------------------- /src/routes/errors/[code]/+page.ts: -------------------------------------------------------------------------------- 1 | import { error } from '@sveltejs/kit'; 2 | import type { PageLoad } from './$types'; 3 | import type { NumericRange } from '@sveltejs/kit'; 4 | 5 | export const load: PageLoad = ({ params }) => { 6 | const status = +params.code; 7 | 8 | if (isNaN(status) || status < 400 || status > 599) { 9 | throw error(500, 'Wrong code'); 10 | } else { 11 | const code = status as NumericRange<400, 599>; 12 | throw error(code, 'Not found'); 13 | } 14 | }; 15 | -------------------------------------------------------------------------------- /src/routes/utils/highlight/languages/1c.d.ts: -------------------------------------------------------------------------------- 1 | export { _1c } from './'; 2 | export { _1c as default } from './'; 3 | -------------------------------------------------------------------------------- /src/routes/utils/highlight/languages/1c.js: -------------------------------------------------------------------------------- 1 | import register from 'highlight.js/lib/languages/1c'; 2 | 3 | export const _1c = { name: '1c', register }; 4 | export default _1c; 5 | -------------------------------------------------------------------------------- /src/routes/utils/highlight/languages/abnf.d.ts: -------------------------------------------------------------------------------- 1 | export { abnf } from './'; 2 | export { abnf as default } from './'; 3 | -------------------------------------------------------------------------------- /src/routes/utils/highlight/languages/abnf.js: -------------------------------------------------------------------------------- 1 | import register from 'highlight.js/lib/languages/abnf'; 2 | 3 | export const abnf = { name: 'abnf', register }; 4 | export default abnf; 5 | -------------------------------------------------------------------------------- /src/routes/utils/highlight/languages/accesslog.d.ts: -------------------------------------------------------------------------------- 1 | export { accesslog } from './'; 2 | export { accesslog as default } from './'; 3 | -------------------------------------------------------------------------------- /src/routes/utils/highlight/languages/accesslog.js: -------------------------------------------------------------------------------- 1 | import register from 'highlight.js/lib/languages/accesslog'; 2 | 3 | export const accesslog = { name: 'accesslog', register }; 4 | export default accesslog; 5 | -------------------------------------------------------------------------------- /src/routes/utils/highlight/languages/actionscript.d.ts: -------------------------------------------------------------------------------- 1 | export { actionscript } from './'; 2 | export { actionscript as default } from './'; 3 | -------------------------------------------------------------------------------- /src/routes/utils/highlight/languages/actionscript.js: -------------------------------------------------------------------------------- 1 | import register from 'highlight.js/lib/languages/actionscript'; 2 | 3 | export const actionscript = { name: 'actionscript', register }; 4 | export default actionscript; 5 | -------------------------------------------------------------------------------- /src/routes/utils/highlight/languages/ada.d.ts: -------------------------------------------------------------------------------- 1 | export { ada } from './'; 2 | export { ada as default } from './'; 3 | -------------------------------------------------------------------------------- /src/routes/utils/highlight/languages/ada.js: -------------------------------------------------------------------------------- 1 | import register from 'highlight.js/lib/languages/ada'; 2 | 3 | export const ada = { name: 'ada', register }; 4 | export default ada; 5 | -------------------------------------------------------------------------------- /src/routes/utils/highlight/languages/angelscript.d.ts: -------------------------------------------------------------------------------- 1 | export { angelscript } from './'; 2 | export { angelscript as default } from './'; 3 | -------------------------------------------------------------------------------- /src/routes/utils/highlight/languages/angelscript.js: -------------------------------------------------------------------------------- 1 | import register from 'highlight.js/lib/languages/angelscript'; 2 | 3 | export const angelscript = { name: 'angelscript', register }; 4 | export default angelscript; 5 | -------------------------------------------------------------------------------- /src/routes/utils/highlight/languages/apache.d.ts: -------------------------------------------------------------------------------- 1 | export { apache } from './'; 2 | export { apache as default } from './'; 3 | -------------------------------------------------------------------------------- /src/routes/utils/highlight/languages/apache.js: -------------------------------------------------------------------------------- 1 | import register from 'highlight.js/lib/languages/apache'; 2 | 3 | export const apache = { name: 'apache', register }; 4 | export default apache; 5 | -------------------------------------------------------------------------------- /src/routes/utils/highlight/languages/applescript.d.ts: -------------------------------------------------------------------------------- 1 | export { applescript } from './'; 2 | export { applescript as default } from './'; 3 | -------------------------------------------------------------------------------- /src/routes/utils/highlight/languages/applescript.js: -------------------------------------------------------------------------------- 1 | import register from 'highlight.js/lib/languages/applescript'; 2 | 3 | export const applescript = { name: 'applescript', register }; 4 | export default applescript; 5 | -------------------------------------------------------------------------------- /src/routes/utils/highlight/languages/arcade.d.ts: -------------------------------------------------------------------------------- 1 | export { arcade } from './'; 2 | export { arcade as default } from './'; 3 | -------------------------------------------------------------------------------- /src/routes/utils/highlight/languages/arcade.js: -------------------------------------------------------------------------------- 1 | import register from 'highlight.js/lib/languages/arcade'; 2 | 3 | export const arcade = { name: 'arcade', register }; 4 | export default arcade; 5 | -------------------------------------------------------------------------------- /src/routes/utils/highlight/languages/arduino.d.ts: -------------------------------------------------------------------------------- 1 | export { arduino } from './'; 2 | export { arduino as default } from './'; 3 | -------------------------------------------------------------------------------- /src/routes/utils/highlight/languages/arduino.js: -------------------------------------------------------------------------------- 1 | import register from 'highlight.js/lib/languages/arduino'; 2 | 3 | export const arduino = { name: 'arduino', register }; 4 | export default arduino; 5 | -------------------------------------------------------------------------------- /src/routes/utils/highlight/languages/armasm.d.ts: -------------------------------------------------------------------------------- 1 | export { armasm } from './'; 2 | export { armasm as default } from './'; 3 | -------------------------------------------------------------------------------- /src/routes/utils/highlight/languages/armasm.js: -------------------------------------------------------------------------------- 1 | import register from 'highlight.js/lib/languages/armasm'; 2 | 3 | export const armasm = { name: 'armasm', register }; 4 | export default armasm; 5 | -------------------------------------------------------------------------------- /src/routes/utils/highlight/languages/asciidoc.d.ts: -------------------------------------------------------------------------------- 1 | export { asciidoc } from './'; 2 | export { asciidoc as default } from './'; 3 | -------------------------------------------------------------------------------- /src/routes/utils/highlight/languages/asciidoc.js: -------------------------------------------------------------------------------- 1 | import register from 'highlight.js/lib/languages/asciidoc'; 2 | 3 | export const asciidoc = { name: 'asciidoc', register }; 4 | export default asciidoc; 5 | -------------------------------------------------------------------------------- /src/routes/utils/highlight/languages/aspectj.d.ts: -------------------------------------------------------------------------------- 1 | export { aspectj } from './'; 2 | export { aspectj as default } from './'; 3 | -------------------------------------------------------------------------------- /src/routes/utils/highlight/languages/aspectj.js: -------------------------------------------------------------------------------- 1 | import register from 'highlight.js/lib/languages/aspectj'; 2 | 3 | export const aspectj = { name: 'aspectj', register }; 4 | export default aspectj; 5 | -------------------------------------------------------------------------------- /src/routes/utils/highlight/languages/autohotkey.d.ts: -------------------------------------------------------------------------------- 1 | export { autohotkey } from './'; 2 | export { autohotkey as default } from './'; 3 | -------------------------------------------------------------------------------- /src/routes/utils/highlight/languages/autohotkey.js: -------------------------------------------------------------------------------- 1 | import register from 'highlight.js/lib/languages/autohotkey'; 2 | 3 | export const autohotkey = { name: 'autohotkey', register }; 4 | export default autohotkey; 5 | -------------------------------------------------------------------------------- /src/routes/utils/highlight/languages/autoit.d.ts: -------------------------------------------------------------------------------- 1 | export { autoit } from './'; 2 | export { autoit as default } from './'; 3 | -------------------------------------------------------------------------------- /src/routes/utils/highlight/languages/autoit.js: -------------------------------------------------------------------------------- 1 | import register from 'highlight.js/lib/languages/autoit'; 2 | 3 | export const autoit = { name: 'autoit', register }; 4 | export default autoit; 5 | -------------------------------------------------------------------------------- /src/routes/utils/highlight/languages/avrasm.d.ts: -------------------------------------------------------------------------------- 1 | export { avrasm } from './'; 2 | export { avrasm as default } from './'; 3 | -------------------------------------------------------------------------------- /src/routes/utils/highlight/languages/avrasm.js: -------------------------------------------------------------------------------- 1 | import register from 'highlight.js/lib/languages/avrasm'; 2 | 3 | export const avrasm = { name: 'avrasm', register }; 4 | export default avrasm; 5 | -------------------------------------------------------------------------------- /src/routes/utils/highlight/languages/awk.d.ts: -------------------------------------------------------------------------------- 1 | export { awk } from './'; 2 | export { awk as default } from './'; 3 | -------------------------------------------------------------------------------- /src/routes/utils/highlight/languages/awk.js: -------------------------------------------------------------------------------- 1 | import register from 'highlight.js/lib/languages/awk'; 2 | 3 | export const awk = { name: 'awk', register }; 4 | export default awk; 5 | -------------------------------------------------------------------------------- /src/routes/utils/highlight/languages/axapta.d.ts: -------------------------------------------------------------------------------- 1 | export { axapta } from './'; 2 | export { axapta as default } from './'; 3 | -------------------------------------------------------------------------------- /src/routes/utils/highlight/languages/axapta.js: -------------------------------------------------------------------------------- 1 | import register from 'highlight.js/lib/languages/axapta'; 2 | 3 | export const axapta = { name: 'axapta', register }; 4 | export default axapta; 5 | -------------------------------------------------------------------------------- /src/routes/utils/highlight/languages/bash.d.ts: -------------------------------------------------------------------------------- 1 | export { bash } from './'; 2 | export { bash as default } from './'; 3 | -------------------------------------------------------------------------------- /src/routes/utils/highlight/languages/bash.js: -------------------------------------------------------------------------------- 1 | import register from 'highlight.js/lib/languages/bash'; 2 | 3 | export const bash = { name: 'bash', register }; 4 | export default bash; 5 | -------------------------------------------------------------------------------- /src/routes/utils/highlight/languages/basic.d.ts: -------------------------------------------------------------------------------- 1 | export { basic } from './'; 2 | export { basic as default } from './'; 3 | -------------------------------------------------------------------------------- /src/routes/utils/highlight/languages/basic.js: -------------------------------------------------------------------------------- 1 | import register from 'highlight.js/lib/languages/basic'; 2 | 3 | export const basic = { name: 'basic', register }; 4 | export default basic; 5 | -------------------------------------------------------------------------------- /src/routes/utils/highlight/languages/bnf.d.ts: -------------------------------------------------------------------------------- 1 | export { bnf } from './'; 2 | export { bnf as default } from './'; 3 | -------------------------------------------------------------------------------- /src/routes/utils/highlight/languages/bnf.js: -------------------------------------------------------------------------------- 1 | import register from 'highlight.js/lib/languages/bnf'; 2 | 3 | export const bnf = { name: 'bnf', register }; 4 | export default bnf; 5 | -------------------------------------------------------------------------------- /src/routes/utils/highlight/languages/brainfuck.d.ts: -------------------------------------------------------------------------------- 1 | export { brainfuck } from './'; 2 | export { brainfuck as default } from './'; 3 | -------------------------------------------------------------------------------- /src/routes/utils/highlight/languages/brainfuck.js: -------------------------------------------------------------------------------- 1 | import register from 'highlight.js/lib/languages/brainfuck'; 2 | 3 | export const brainfuck = { name: 'brainfuck', register }; 4 | export default brainfuck; 5 | -------------------------------------------------------------------------------- /src/routes/utils/highlight/languages/c.d.ts: -------------------------------------------------------------------------------- 1 | export { c } from './'; 2 | export { c as default } from './'; 3 | -------------------------------------------------------------------------------- /src/routes/utils/highlight/languages/c.js: -------------------------------------------------------------------------------- 1 | import register from 'highlight.js/lib/languages/c'; 2 | 3 | export const c = { name: 'c', register }; 4 | export default c; 5 | -------------------------------------------------------------------------------- /src/routes/utils/highlight/languages/cal.d.ts: -------------------------------------------------------------------------------- 1 | export { cal } from './'; 2 | export { cal as default } from './'; 3 | -------------------------------------------------------------------------------- /src/routes/utils/highlight/languages/cal.js: -------------------------------------------------------------------------------- 1 | import register from 'highlight.js/lib/languages/cal'; 2 | 3 | export const cal = { name: 'cal', register }; 4 | export default cal; 5 | -------------------------------------------------------------------------------- /src/routes/utils/highlight/languages/capnproto.d.ts: -------------------------------------------------------------------------------- 1 | export { capnproto } from './'; 2 | export { capnproto as default } from './'; 3 | -------------------------------------------------------------------------------- /src/routes/utils/highlight/languages/capnproto.js: -------------------------------------------------------------------------------- 1 | import register from 'highlight.js/lib/languages/capnproto'; 2 | 3 | export const capnproto = { name: 'capnproto', register }; 4 | export default capnproto; 5 | -------------------------------------------------------------------------------- /src/routes/utils/highlight/languages/ceylon.d.ts: -------------------------------------------------------------------------------- 1 | export { ceylon } from './'; 2 | export { ceylon as default } from './'; 3 | -------------------------------------------------------------------------------- /src/routes/utils/highlight/languages/ceylon.js: -------------------------------------------------------------------------------- 1 | import register from 'highlight.js/lib/languages/ceylon'; 2 | 3 | export const ceylon = { name: 'ceylon', register }; 4 | export default ceylon; 5 | -------------------------------------------------------------------------------- /src/routes/utils/highlight/languages/clean.d.ts: -------------------------------------------------------------------------------- 1 | export { clean } from './'; 2 | export { clean as default } from './'; 3 | -------------------------------------------------------------------------------- /src/routes/utils/highlight/languages/clean.js: -------------------------------------------------------------------------------- 1 | import register from 'highlight.js/lib/languages/clean'; 2 | 3 | export const clean = { name: 'clean', register }; 4 | export default clean; 5 | -------------------------------------------------------------------------------- /src/routes/utils/highlight/languages/clojure-repl.d.ts: -------------------------------------------------------------------------------- 1 | export { clojureRepl } from './'; 2 | export { clojureRepl as default } from './'; 3 | -------------------------------------------------------------------------------- /src/routes/utils/highlight/languages/clojure-repl.js: -------------------------------------------------------------------------------- 1 | import register from 'highlight.js/lib/languages/clojure-repl'; 2 | 3 | export const clojureRepl = { name: 'clojure-repl', register }; 4 | export default clojureRepl; 5 | -------------------------------------------------------------------------------- /src/routes/utils/highlight/languages/clojure.d.ts: -------------------------------------------------------------------------------- 1 | export { clojure } from './'; 2 | export { clojure as default } from './'; 3 | -------------------------------------------------------------------------------- /src/routes/utils/highlight/languages/clojure.js: -------------------------------------------------------------------------------- 1 | import register from 'highlight.js/lib/languages/clojure'; 2 | 3 | export const clojure = { name: 'clojure', register }; 4 | export default clojure; 5 | -------------------------------------------------------------------------------- /src/routes/utils/highlight/languages/cmake.d.ts: -------------------------------------------------------------------------------- 1 | export { cmake } from './'; 2 | export { cmake as default } from './'; 3 | -------------------------------------------------------------------------------- /src/routes/utils/highlight/languages/cmake.js: -------------------------------------------------------------------------------- 1 | import register from 'highlight.js/lib/languages/cmake'; 2 | 3 | export const cmake = { name: 'cmake', register }; 4 | export default cmake; 5 | -------------------------------------------------------------------------------- /src/routes/utils/highlight/languages/coffeescript.d.ts: -------------------------------------------------------------------------------- 1 | export { coffeescript } from './'; 2 | export { coffeescript as default } from './'; 3 | -------------------------------------------------------------------------------- /src/routes/utils/highlight/languages/coffeescript.js: -------------------------------------------------------------------------------- 1 | import register from 'highlight.js/lib/languages/coffeescript'; 2 | 3 | export const coffeescript = { name: 'coffeescript', register }; 4 | export default coffeescript; 5 | -------------------------------------------------------------------------------- /src/routes/utils/highlight/languages/coq.d.ts: -------------------------------------------------------------------------------- 1 | export { coq } from './'; 2 | export { coq as default } from './'; 3 | -------------------------------------------------------------------------------- /src/routes/utils/highlight/languages/coq.js: -------------------------------------------------------------------------------- 1 | import register from 'highlight.js/lib/languages/coq'; 2 | 3 | export const coq = { name: 'coq', register }; 4 | export default coq; 5 | -------------------------------------------------------------------------------- /src/routes/utils/highlight/languages/cos.d.ts: -------------------------------------------------------------------------------- 1 | export { cos } from './'; 2 | export { cos as default } from './'; 3 | -------------------------------------------------------------------------------- /src/routes/utils/highlight/languages/cos.js: -------------------------------------------------------------------------------- 1 | import register from 'highlight.js/lib/languages/cos'; 2 | 3 | export const cos = { name: 'cos', register }; 4 | export default cos; 5 | -------------------------------------------------------------------------------- /src/routes/utils/highlight/languages/cpp.d.ts: -------------------------------------------------------------------------------- 1 | export { cpp } from './'; 2 | export { cpp as default } from './'; 3 | -------------------------------------------------------------------------------- /src/routes/utils/highlight/languages/cpp.js: -------------------------------------------------------------------------------- 1 | import register from 'highlight.js/lib/languages/cpp'; 2 | 3 | export const cpp = { name: 'cpp', register }; 4 | export default cpp; 5 | -------------------------------------------------------------------------------- /src/routes/utils/highlight/languages/crmsh.d.ts: -------------------------------------------------------------------------------- 1 | export { crmsh } from './'; 2 | export { crmsh as default } from './'; 3 | -------------------------------------------------------------------------------- /src/routes/utils/highlight/languages/crmsh.js: -------------------------------------------------------------------------------- 1 | import register from 'highlight.js/lib/languages/crmsh'; 2 | 3 | export const crmsh = { name: 'crmsh', register }; 4 | export default crmsh; 5 | -------------------------------------------------------------------------------- /src/routes/utils/highlight/languages/crystal.d.ts: -------------------------------------------------------------------------------- 1 | export { crystal } from './'; 2 | export { crystal as default } from './'; 3 | -------------------------------------------------------------------------------- /src/routes/utils/highlight/languages/crystal.js: -------------------------------------------------------------------------------- 1 | import register from 'highlight.js/lib/languages/crystal'; 2 | 3 | export const crystal = { name: 'crystal', register }; 4 | export default crystal; 5 | -------------------------------------------------------------------------------- /src/routes/utils/highlight/languages/csharp.d.ts: -------------------------------------------------------------------------------- 1 | export { csharp } from './'; 2 | export { csharp as default } from './'; 3 | -------------------------------------------------------------------------------- /src/routes/utils/highlight/languages/csharp.js: -------------------------------------------------------------------------------- 1 | import register from 'highlight.js/lib/languages/csharp'; 2 | 3 | export const csharp = { name: 'csharp', register }; 4 | export default csharp; 5 | -------------------------------------------------------------------------------- /src/routes/utils/highlight/languages/csp.d.ts: -------------------------------------------------------------------------------- 1 | export { csp } from './'; 2 | export { csp as default } from './'; 3 | -------------------------------------------------------------------------------- /src/routes/utils/highlight/languages/csp.js: -------------------------------------------------------------------------------- 1 | import register from 'highlight.js/lib/languages/csp'; 2 | 3 | export const csp = { name: 'csp', register }; 4 | export default csp; 5 | -------------------------------------------------------------------------------- /src/routes/utils/highlight/languages/css.d.ts: -------------------------------------------------------------------------------- 1 | export { css } from './'; 2 | export { css as default } from './'; 3 | -------------------------------------------------------------------------------- /src/routes/utils/highlight/languages/css.js: -------------------------------------------------------------------------------- 1 | import register from 'highlight.js/lib/languages/css'; 2 | 3 | export const css = { name: 'css', register }; 4 | export default css; 5 | -------------------------------------------------------------------------------- /src/routes/utils/highlight/languages/d.d.ts: -------------------------------------------------------------------------------- 1 | export { d } from './'; 2 | export { d as default } from './'; 3 | -------------------------------------------------------------------------------- /src/routes/utils/highlight/languages/d.js: -------------------------------------------------------------------------------- 1 | import register from 'highlight.js/lib/languages/d'; 2 | 3 | export const d = { name: 'd', register }; 4 | export default d; 5 | -------------------------------------------------------------------------------- /src/routes/utils/highlight/languages/dart.d.ts: -------------------------------------------------------------------------------- 1 | export { dart } from './'; 2 | export { dart as default } from './'; 3 | -------------------------------------------------------------------------------- /src/routes/utils/highlight/languages/dart.js: -------------------------------------------------------------------------------- 1 | import register from 'highlight.js/lib/languages/dart'; 2 | 3 | export const dart = { name: 'dart', register }; 4 | export default dart; 5 | -------------------------------------------------------------------------------- /src/routes/utils/highlight/languages/delphi.d.ts: -------------------------------------------------------------------------------- 1 | export { delphi } from './'; 2 | export { delphi as default } from './'; 3 | -------------------------------------------------------------------------------- /src/routes/utils/highlight/languages/delphi.js: -------------------------------------------------------------------------------- 1 | import register from 'highlight.js/lib/languages/delphi'; 2 | 3 | export const delphi = { name: 'delphi', register }; 4 | export default delphi; 5 | -------------------------------------------------------------------------------- /src/routes/utils/highlight/languages/diff.d.ts: -------------------------------------------------------------------------------- 1 | export { diff } from './'; 2 | export { diff as default } from './'; 3 | -------------------------------------------------------------------------------- /src/routes/utils/highlight/languages/diff.js: -------------------------------------------------------------------------------- 1 | import register from 'highlight.js/lib/languages/diff'; 2 | 3 | export const diff = { name: 'diff', register }; 4 | export default diff; 5 | -------------------------------------------------------------------------------- /src/routes/utils/highlight/languages/django.d.ts: -------------------------------------------------------------------------------- 1 | export { django } from './'; 2 | export { django as default } from './'; 3 | -------------------------------------------------------------------------------- /src/routes/utils/highlight/languages/django.js: -------------------------------------------------------------------------------- 1 | import register from 'highlight.js/lib/languages/django'; 2 | 3 | export const django = { name: 'django', register }; 4 | export default django; 5 | -------------------------------------------------------------------------------- /src/routes/utils/highlight/languages/dns.d.ts: -------------------------------------------------------------------------------- 1 | export { dns } from './'; 2 | export { dns as default } from './'; 3 | -------------------------------------------------------------------------------- /src/routes/utils/highlight/languages/dns.js: -------------------------------------------------------------------------------- 1 | import register from 'highlight.js/lib/languages/dns'; 2 | 3 | export const dns = { name: 'dns', register }; 4 | export default dns; 5 | -------------------------------------------------------------------------------- /src/routes/utils/highlight/languages/dockerfile.d.ts: -------------------------------------------------------------------------------- 1 | export { dockerfile } from './'; 2 | export { dockerfile as default } from './'; 3 | -------------------------------------------------------------------------------- /src/routes/utils/highlight/languages/dockerfile.js: -------------------------------------------------------------------------------- 1 | import register from 'highlight.js/lib/languages/dockerfile'; 2 | 3 | export const dockerfile = { name: 'dockerfile', register }; 4 | export default dockerfile; 5 | -------------------------------------------------------------------------------- /src/routes/utils/highlight/languages/dos.d.ts: -------------------------------------------------------------------------------- 1 | export { dos } from './'; 2 | export { dos as default } from './'; 3 | -------------------------------------------------------------------------------- /src/routes/utils/highlight/languages/dos.js: -------------------------------------------------------------------------------- 1 | import register from 'highlight.js/lib/languages/dos'; 2 | 3 | export const dos = { name: 'dos', register }; 4 | export default dos; 5 | -------------------------------------------------------------------------------- /src/routes/utils/highlight/languages/dsconfig.d.ts: -------------------------------------------------------------------------------- 1 | export { dsconfig } from './'; 2 | export { dsconfig as default } from './'; 3 | -------------------------------------------------------------------------------- /src/routes/utils/highlight/languages/dsconfig.js: -------------------------------------------------------------------------------- 1 | import register from 'highlight.js/lib/languages/dsconfig'; 2 | 3 | export const dsconfig = { name: 'dsconfig', register }; 4 | export default dsconfig; 5 | -------------------------------------------------------------------------------- /src/routes/utils/highlight/languages/dts.d.ts: -------------------------------------------------------------------------------- 1 | export { dts } from './'; 2 | export { dts as default } from './'; 3 | -------------------------------------------------------------------------------- /src/routes/utils/highlight/languages/dts.js: -------------------------------------------------------------------------------- 1 | import register from 'highlight.js/lib/languages/dts'; 2 | 3 | export const dts = { name: 'dts', register }; 4 | export default dts; 5 | -------------------------------------------------------------------------------- /src/routes/utils/highlight/languages/dust.d.ts: -------------------------------------------------------------------------------- 1 | export { dust } from './'; 2 | export { dust as default } from './'; 3 | -------------------------------------------------------------------------------- /src/routes/utils/highlight/languages/dust.js: -------------------------------------------------------------------------------- 1 | import register from 'highlight.js/lib/languages/dust'; 2 | 3 | export const dust = { name: 'dust', register }; 4 | export default dust; 5 | -------------------------------------------------------------------------------- /src/routes/utils/highlight/languages/ebnf.d.ts: -------------------------------------------------------------------------------- 1 | export { ebnf } from './'; 2 | export { ebnf as default } from './'; 3 | -------------------------------------------------------------------------------- /src/routes/utils/highlight/languages/ebnf.js: -------------------------------------------------------------------------------- 1 | import register from 'highlight.js/lib/languages/ebnf'; 2 | 3 | export const ebnf = { name: 'ebnf', register }; 4 | export default ebnf; 5 | -------------------------------------------------------------------------------- /src/routes/utils/highlight/languages/elixir.d.ts: -------------------------------------------------------------------------------- 1 | export { elixir } from './'; 2 | export { elixir as default } from './'; 3 | -------------------------------------------------------------------------------- /src/routes/utils/highlight/languages/elixir.js: -------------------------------------------------------------------------------- 1 | import register from 'highlight.js/lib/languages/elixir'; 2 | 3 | export const elixir = { name: 'elixir', register }; 4 | export default elixir; 5 | -------------------------------------------------------------------------------- /src/routes/utils/highlight/languages/elm.d.ts: -------------------------------------------------------------------------------- 1 | export { elm } from './'; 2 | export { elm as default } from './'; 3 | -------------------------------------------------------------------------------- /src/routes/utils/highlight/languages/elm.js: -------------------------------------------------------------------------------- 1 | import register from 'highlight.js/lib/languages/elm'; 2 | 3 | export const elm = { name: 'elm', register }; 4 | export default elm; 5 | -------------------------------------------------------------------------------- /src/routes/utils/highlight/languages/erb.d.ts: -------------------------------------------------------------------------------- 1 | export { erb } from './'; 2 | export { erb as default } from './'; 3 | -------------------------------------------------------------------------------- /src/routes/utils/highlight/languages/erb.js: -------------------------------------------------------------------------------- 1 | import register from 'highlight.js/lib/languages/erb'; 2 | 3 | export const erb = { name: 'erb', register }; 4 | export default erb; 5 | -------------------------------------------------------------------------------- /src/routes/utils/highlight/languages/erlang-repl.d.ts: -------------------------------------------------------------------------------- 1 | export { erlangRepl } from './'; 2 | export { erlangRepl as default } from './'; 3 | -------------------------------------------------------------------------------- /src/routes/utils/highlight/languages/erlang-repl.js: -------------------------------------------------------------------------------- 1 | import register from 'highlight.js/lib/languages/erlang-repl'; 2 | 3 | export const erlangRepl = { name: 'erlang-repl', register }; 4 | export default erlangRepl; 5 | -------------------------------------------------------------------------------- /src/routes/utils/highlight/languages/erlang.d.ts: -------------------------------------------------------------------------------- 1 | export { erlang } from './'; 2 | export { erlang as default } from './'; 3 | -------------------------------------------------------------------------------- /src/routes/utils/highlight/languages/erlang.js: -------------------------------------------------------------------------------- 1 | import register from 'highlight.js/lib/languages/erlang'; 2 | 3 | export const erlang = { name: 'erlang', register }; 4 | export default erlang; 5 | -------------------------------------------------------------------------------- /src/routes/utils/highlight/languages/excel.d.ts: -------------------------------------------------------------------------------- 1 | export { excel } from './'; 2 | export { excel as default } from './'; 3 | -------------------------------------------------------------------------------- /src/routes/utils/highlight/languages/excel.js: -------------------------------------------------------------------------------- 1 | import register from 'highlight.js/lib/languages/excel'; 2 | 3 | export const excel = { name: 'excel', register }; 4 | export default excel; 5 | -------------------------------------------------------------------------------- /src/routes/utils/highlight/languages/fix.d.ts: -------------------------------------------------------------------------------- 1 | export { fix } from './'; 2 | export { fix as default } from './'; 3 | -------------------------------------------------------------------------------- /src/routes/utils/highlight/languages/fix.js: -------------------------------------------------------------------------------- 1 | import register from 'highlight.js/lib/languages/fix'; 2 | 3 | export const fix = { name: 'fix', register }; 4 | export default fix; 5 | -------------------------------------------------------------------------------- /src/routes/utils/highlight/languages/flix.d.ts: -------------------------------------------------------------------------------- 1 | export { flix } from './'; 2 | export { flix as default } from './'; 3 | -------------------------------------------------------------------------------- /src/routes/utils/highlight/languages/flix.js: -------------------------------------------------------------------------------- 1 | import register from 'highlight.js/lib/languages/flix'; 2 | 3 | export const flix = { name: 'flix', register }; 4 | export default flix; 5 | -------------------------------------------------------------------------------- /src/routes/utils/highlight/languages/fortran.d.ts: -------------------------------------------------------------------------------- 1 | export { fortran } from './'; 2 | export { fortran as default } from './'; 3 | -------------------------------------------------------------------------------- /src/routes/utils/highlight/languages/fortran.js: -------------------------------------------------------------------------------- 1 | import register from 'highlight.js/lib/languages/fortran'; 2 | 3 | export const fortran = { name: 'fortran', register }; 4 | export default fortran; 5 | -------------------------------------------------------------------------------- /src/routes/utils/highlight/languages/fsharp.d.ts: -------------------------------------------------------------------------------- 1 | export { fsharp } from './'; 2 | export { fsharp as default } from './'; 3 | -------------------------------------------------------------------------------- /src/routes/utils/highlight/languages/fsharp.js: -------------------------------------------------------------------------------- 1 | import register from 'highlight.js/lib/languages/fsharp'; 2 | 3 | export const fsharp = { name: 'fsharp', register }; 4 | export default fsharp; 5 | -------------------------------------------------------------------------------- /src/routes/utils/highlight/languages/gams.d.ts: -------------------------------------------------------------------------------- 1 | export { gams } from './'; 2 | export { gams as default } from './'; 3 | -------------------------------------------------------------------------------- /src/routes/utils/highlight/languages/gams.js: -------------------------------------------------------------------------------- 1 | import register from 'highlight.js/lib/languages/gams'; 2 | 3 | export const gams = { name: 'gams', register }; 4 | export default gams; 5 | -------------------------------------------------------------------------------- /src/routes/utils/highlight/languages/gauss.d.ts: -------------------------------------------------------------------------------- 1 | export { gauss } from './'; 2 | export { gauss as default } from './'; 3 | -------------------------------------------------------------------------------- /src/routes/utils/highlight/languages/gauss.js: -------------------------------------------------------------------------------- 1 | import register from 'highlight.js/lib/languages/gauss'; 2 | 3 | export const gauss = { name: 'gauss', register }; 4 | export default gauss; 5 | -------------------------------------------------------------------------------- /src/routes/utils/highlight/languages/gcode.d.ts: -------------------------------------------------------------------------------- 1 | export { gcode } from './'; 2 | export { gcode as default } from './'; 3 | -------------------------------------------------------------------------------- /src/routes/utils/highlight/languages/gcode.js: -------------------------------------------------------------------------------- 1 | import register from 'highlight.js/lib/languages/gcode'; 2 | 3 | export const gcode = { name: 'gcode', register }; 4 | export default gcode; 5 | -------------------------------------------------------------------------------- /src/routes/utils/highlight/languages/gherkin.d.ts: -------------------------------------------------------------------------------- 1 | export { gherkin } from './'; 2 | export { gherkin as default } from './'; 3 | -------------------------------------------------------------------------------- /src/routes/utils/highlight/languages/gherkin.js: -------------------------------------------------------------------------------- 1 | import register from 'highlight.js/lib/languages/gherkin'; 2 | 3 | export const gherkin = { name: 'gherkin', register }; 4 | export default gherkin; 5 | -------------------------------------------------------------------------------- /src/routes/utils/highlight/languages/glsl.d.ts: -------------------------------------------------------------------------------- 1 | export { glsl } from './'; 2 | export { glsl as default } from './'; 3 | -------------------------------------------------------------------------------- /src/routes/utils/highlight/languages/glsl.js: -------------------------------------------------------------------------------- 1 | import register from 'highlight.js/lib/languages/glsl'; 2 | 3 | export const glsl = { name: 'glsl', register }; 4 | export default glsl; 5 | -------------------------------------------------------------------------------- /src/routes/utils/highlight/languages/gml.d.ts: -------------------------------------------------------------------------------- 1 | export { gml } from './'; 2 | export { gml as default } from './'; 3 | -------------------------------------------------------------------------------- /src/routes/utils/highlight/languages/gml.js: -------------------------------------------------------------------------------- 1 | import register from 'highlight.js/lib/languages/gml'; 2 | 3 | export const gml = { name: 'gml', register }; 4 | export default gml; 5 | -------------------------------------------------------------------------------- /src/routes/utils/highlight/languages/go.d.ts: -------------------------------------------------------------------------------- 1 | export { go } from './'; 2 | export { go as default } from './'; 3 | -------------------------------------------------------------------------------- /src/routes/utils/highlight/languages/go.js: -------------------------------------------------------------------------------- 1 | import register from 'highlight.js/lib/languages/go'; 2 | 3 | export const go = { name: 'go', register }; 4 | export default go; 5 | -------------------------------------------------------------------------------- /src/routes/utils/highlight/languages/golo.d.ts: -------------------------------------------------------------------------------- 1 | export { golo } from './'; 2 | export { golo as default } from './'; 3 | -------------------------------------------------------------------------------- /src/routes/utils/highlight/languages/golo.js: -------------------------------------------------------------------------------- 1 | import register from 'highlight.js/lib/languages/golo'; 2 | 3 | export const golo = { name: 'golo', register }; 4 | export default golo; 5 | -------------------------------------------------------------------------------- /src/routes/utils/highlight/languages/gradle.d.ts: -------------------------------------------------------------------------------- 1 | export { gradle } from './'; 2 | export { gradle as default } from './'; 3 | -------------------------------------------------------------------------------- /src/routes/utils/highlight/languages/gradle.js: -------------------------------------------------------------------------------- 1 | import register from 'highlight.js/lib/languages/gradle'; 2 | 3 | export const gradle = { name: 'gradle', register }; 4 | export default gradle; 5 | -------------------------------------------------------------------------------- /src/routes/utils/highlight/languages/graphql.d.ts: -------------------------------------------------------------------------------- 1 | export { graphql } from './'; 2 | export { graphql as default } from './'; 3 | -------------------------------------------------------------------------------- /src/routes/utils/highlight/languages/graphql.js: -------------------------------------------------------------------------------- 1 | import register from 'highlight.js/lib/languages/graphql'; 2 | 3 | export const graphql = { name: 'graphql', register }; 4 | export default graphql; 5 | -------------------------------------------------------------------------------- /src/routes/utils/highlight/languages/groovy.d.ts: -------------------------------------------------------------------------------- 1 | export { groovy } from './'; 2 | export { groovy as default } from './'; 3 | -------------------------------------------------------------------------------- /src/routes/utils/highlight/languages/groovy.js: -------------------------------------------------------------------------------- 1 | import register from 'highlight.js/lib/languages/groovy'; 2 | 3 | export const groovy = { name: 'groovy', register }; 4 | export default groovy; 5 | -------------------------------------------------------------------------------- /src/routes/utils/highlight/languages/haml.d.ts: -------------------------------------------------------------------------------- 1 | export { haml } from './'; 2 | export { haml as default } from './'; 3 | -------------------------------------------------------------------------------- /src/routes/utils/highlight/languages/haml.js: -------------------------------------------------------------------------------- 1 | import register from 'highlight.js/lib/languages/haml'; 2 | 3 | export const haml = { name: 'haml', register }; 4 | export default haml; 5 | -------------------------------------------------------------------------------- /src/routes/utils/highlight/languages/handlebars.d.ts: -------------------------------------------------------------------------------- 1 | export { handlebars } from './'; 2 | export { handlebars as default } from './'; 3 | -------------------------------------------------------------------------------- /src/routes/utils/highlight/languages/handlebars.js: -------------------------------------------------------------------------------- 1 | import register from 'highlight.js/lib/languages/handlebars'; 2 | 3 | export const handlebars = { name: 'handlebars', register }; 4 | export default handlebars; 5 | -------------------------------------------------------------------------------- /src/routes/utils/highlight/languages/haskell.d.ts: -------------------------------------------------------------------------------- 1 | export { haskell } from './'; 2 | export { haskell as default } from './'; 3 | -------------------------------------------------------------------------------- /src/routes/utils/highlight/languages/haskell.js: -------------------------------------------------------------------------------- 1 | import register from 'highlight.js/lib/languages/haskell'; 2 | 3 | export const haskell = { name: 'haskell', register }; 4 | export default haskell; 5 | -------------------------------------------------------------------------------- /src/routes/utils/highlight/languages/haxe.d.ts: -------------------------------------------------------------------------------- 1 | export { haxe } from './'; 2 | export { haxe as default } from './'; 3 | -------------------------------------------------------------------------------- /src/routes/utils/highlight/languages/haxe.js: -------------------------------------------------------------------------------- 1 | import register from 'highlight.js/lib/languages/haxe'; 2 | 3 | export const haxe = { name: 'haxe', register }; 4 | export default haxe; 5 | -------------------------------------------------------------------------------- /src/routes/utils/highlight/languages/hsp.d.ts: -------------------------------------------------------------------------------- 1 | export { hsp } from './'; 2 | export { hsp as default } from './'; 3 | -------------------------------------------------------------------------------- /src/routes/utils/highlight/languages/hsp.js: -------------------------------------------------------------------------------- 1 | import register from 'highlight.js/lib/languages/hsp'; 2 | 3 | export const hsp = { name: 'hsp', register }; 4 | export default hsp; 5 | -------------------------------------------------------------------------------- /src/routes/utils/highlight/languages/http.d.ts: -------------------------------------------------------------------------------- 1 | export { http } from './'; 2 | export { http as default } from './'; 3 | -------------------------------------------------------------------------------- /src/routes/utils/highlight/languages/http.js: -------------------------------------------------------------------------------- 1 | import register from 'highlight.js/lib/languages/http'; 2 | 3 | export const http = { name: 'http', register }; 4 | export default http; 5 | -------------------------------------------------------------------------------- /src/routes/utils/highlight/languages/hy.d.ts: -------------------------------------------------------------------------------- 1 | export { hy } from './'; 2 | export { hy as default } from './'; 3 | -------------------------------------------------------------------------------- /src/routes/utils/highlight/languages/hy.js: -------------------------------------------------------------------------------- 1 | import register from 'highlight.js/lib/languages/hy'; 2 | 3 | export const hy = { name: 'hy', register }; 4 | export default hy; 5 | -------------------------------------------------------------------------------- /src/routes/utils/highlight/languages/inform7.d.ts: -------------------------------------------------------------------------------- 1 | export { inform7 } from './'; 2 | export { inform7 as default } from './'; 3 | -------------------------------------------------------------------------------- /src/routes/utils/highlight/languages/inform7.js: -------------------------------------------------------------------------------- 1 | import register from 'highlight.js/lib/languages/inform7'; 2 | 3 | export const inform7 = { name: 'inform7', register }; 4 | export default inform7; 5 | -------------------------------------------------------------------------------- /src/routes/utils/highlight/languages/ini.d.ts: -------------------------------------------------------------------------------- 1 | export { ini } from './'; 2 | export { ini as default } from './'; 3 | -------------------------------------------------------------------------------- /src/routes/utils/highlight/languages/ini.js: -------------------------------------------------------------------------------- 1 | import register from 'highlight.js/lib/languages/ini'; 2 | 3 | export const ini = { name: 'ini', register }; 4 | export default ini; 5 | -------------------------------------------------------------------------------- /src/routes/utils/highlight/languages/irpf90.d.ts: -------------------------------------------------------------------------------- 1 | export { irpf90 } from './'; 2 | export { irpf90 as default } from './'; 3 | -------------------------------------------------------------------------------- /src/routes/utils/highlight/languages/irpf90.js: -------------------------------------------------------------------------------- 1 | import register from 'highlight.js/lib/languages/irpf90'; 2 | 3 | export const irpf90 = { name: 'irpf90', register }; 4 | export default irpf90; 5 | -------------------------------------------------------------------------------- /src/routes/utils/highlight/languages/isbl.d.ts: -------------------------------------------------------------------------------- 1 | export { isbl } from './'; 2 | export { isbl as default } from './'; 3 | -------------------------------------------------------------------------------- /src/routes/utils/highlight/languages/isbl.js: -------------------------------------------------------------------------------- 1 | import register from 'highlight.js/lib/languages/isbl'; 2 | 3 | export const isbl = { name: 'isbl', register }; 4 | export default isbl; 5 | -------------------------------------------------------------------------------- /src/routes/utils/highlight/languages/java.d.ts: -------------------------------------------------------------------------------- 1 | export { java } from './'; 2 | export { java as default } from './'; 3 | -------------------------------------------------------------------------------- /src/routes/utils/highlight/languages/java.js: -------------------------------------------------------------------------------- 1 | import register from 'highlight.js/lib/languages/java'; 2 | 3 | export const java = { name: 'java', register }; 4 | export default java; 5 | -------------------------------------------------------------------------------- /src/routes/utils/highlight/languages/javascript.d.ts: -------------------------------------------------------------------------------- 1 | export { javascript } from './'; 2 | export { javascript as default } from './'; 3 | -------------------------------------------------------------------------------- /src/routes/utils/highlight/languages/javascript.js: -------------------------------------------------------------------------------- 1 | import register from 'highlight.js/lib/languages/javascript'; 2 | 3 | export const javascript = { name: 'javascript', register }; 4 | export default javascript; 5 | -------------------------------------------------------------------------------- /src/routes/utils/highlight/languages/jboss-cli.d.ts: -------------------------------------------------------------------------------- 1 | export { jbossCli } from './'; 2 | export { jbossCli as default } from './'; 3 | -------------------------------------------------------------------------------- /src/routes/utils/highlight/languages/jboss-cli.js: -------------------------------------------------------------------------------- 1 | import register from 'highlight.js/lib/languages/jboss-cli'; 2 | 3 | export const jbossCli = { name: 'jboss-cli', register }; 4 | export default jbossCli; 5 | -------------------------------------------------------------------------------- /src/routes/utils/highlight/languages/json.d.ts: -------------------------------------------------------------------------------- 1 | export { json } from './'; 2 | export { json as default } from './'; 3 | -------------------------------------------------------------------------------- /src/routes/utils/highlight/languages/json.js: -------------------------------------------------------------------------------- 1 | import register from 'highlight.js/lib/languages/json'; 2 | 3 | export const json = { name: 'json', register }; 4 | export default json; 5 | -------------------------------------------------------------------------------- /src/routes/utils/highlight/languages/julia-repl.d.ts: -------------------------------------------------------------------------------- 1 | export { juliaRepl } from './'; 2 | export { juliaRepl as default } from './'; 3 | -------------------------------------------------------------------------------- /src/routes/utils/highlight/languages/julia-repl.js: -------------------------------------------------------------------------------- 1 | import register from 'highlight.js/lib/languages/julia-repl'; 2 | 3 | export const juliaRepl = { name: 'julia-repl', register }; 4 | export default juliaRepl; 5 | -------------------------------------------------------------------------------- /src/routes/utils/highlight/languages/julia.d.ts: -------------------------------------------------------------------------------- 1 | export { julia } from './'; 2 | export { julia as default } from './'; 3 | -------------------------------------------------------------------------------- /src/routes/utils/highlight/languages/julia.js: -------------------------------------------------------------------------------- 1 | import register from 'highlight.js/lib/languages/julia'; 2 | 3 | export const julia = { name: 'julia', register }; 4 | export default julia; 5 | -------------------------------------------------------------------------------- /src/routes/utils/highlight/languages/kotlin.d.ts: -------------------------------------------------------------------------------- 1 | export { kotlin } from './'; 2 | export { kotlin as default } from './'; 3 | -------------------------------------------------------------------------------- /src/routes/utils/highlight/languages/kotlin.js: -------------------------------------------------------------------------------- 1 | import register from 'highlight.js/lib/languages/kotlin'; 2 | 3 | export const kotlin = { name: 'kotlin', register }; 4 | export default kotlin; 5 | -------------------------------------------------------------------------------- /src/routes/utils/highlight/languages/lasso.d.ts: -------------------------------------------------------------------------------- 1 | export { lasso } from './'; 2 | export { lasso as default } from './'; 3 | -------------------------------------------------------------------------------- /src/routes/utils/highlight/languages/lasso.js: -------------------------------------------------------------------------------- 1 | import register from 'highlight.js/lib/languages/lasso'; 2 | 3 | export const lasso = { name: 'lasso', register }; 4 | export default lasso; 5 | -------------------------------------------------------------------------------- /src/routes/utils/highlight/languages/latex.d.ts: -------------------------------------------------------------------------------- 1 | export { latex } from './'; 2 | export { latex as default } from './'; 3 | -------------------------------------------------------------------------------- /src/routes/utils/highlight/languages/latex.js: -------------------------------------------------------------------------------- 1 | import register from 'highlight.js/lib/languages/latex'; 2 | 3 | export const latex = { name: 'latex', register }; 4 | export default latex; 5 | -------------------------------------------------------------------------------- /src/routes/utils/highlight/languages/ldif.d.ts: -------------------------------------------------------------------------------- 1 | export { ldif } from './'; 2 | export { ldif as default } from './'; 3 | -------------------------------------------------------------------------------- /src/routes/utils/highlight/languages/ldif.js: -------------------------------------------------------------------------------- 1 | import register from 'highlight.js/lib/languages/ldif'; 2 | 3 | export const ldif = { name: 'ldif', register }; 4 | export default ldif; 5 | -------------------------------------------------------------------------------- /src/routes/utils/highlight/languages/leaf.d.ts: -------------------------------------------------------------------------------- 1 | export { leaf } from './'; 2 | export { leaf as default } from './'; 3 | -------------------------------------------------------------------------------- /src/routes/utils/highlight/languages/leaf.js: -------------------------------------------------------------------------------- 1 | import register from 'highlight.js/lib/languages/leaf'; 2 | 3 | export const leaf = { name: 'leaf', register }; 4 | export default leaf; 5 | -------------------------------------------------------------------------------- /src/routes/utils/highlight/languages/less.d.ts: -------------------------------------------------------------------------------- 1 | export { less } from './'; 2 | export { less as default } from './'; 3 | -------------------------------------------------------------------------------- /src/routes/utils/highlight/languages/less.js: -------------------------------------------------------------------------------- 1 | import register from 'highlight.js/lib/languages/less'; 2 | 3 | export const less = { name: 'less', register }; 4 | export default less; 5 | -------------------------------------------------------------------------------- /src/routes/utils/highlight/languages/lisp.d.ts: -------------------------------------------------------------------------------- 1 | export { lisp } from './'; 2 | export { lisp as default } from './'; 3 | -------------------------------------------------------------------------------- /src/routes/utils/highlight/languages/lisp.js: -------------------------------------------------------------------------------- 1 | import register from 'highlight.js/lib/languages/lisp'; 2 | 3 | export const lisp = { name: 'lisp', register }; 4 | export default lisp; 5 | -------------------------------------------------------------------------------- /src/routes/utils/highlight/languages/livecodeserver.d.ts: -------------------------------------------------------------------------------- 1 | export { livecodeserver } from './'; 2 | export { livecodeserver as default } from './'; 3 | -------------------------------------------------------------------------------- /src/routes/utils/highlight/languages/livecodeserver.js: -------------------------------------------------------------------------------- 1 | import register from 'highlight.js/lib/languages/livecodeserver'; 2 | 3 | export const livecodeserver = { name: 'livecodeserver', register }; 4 | export default livecodeserver; 5 | -------------------------------------------------------------------------------- /src/routes/utils/highlight/languages/livescript.d.ts: -------------------------------------------------------------------------------- 1 | export { livescript } from './'; 2 | export { livescript as default } from './'; 3 | -------------------------------------------------------------------------------- /src/routes/utils/highlight/languages/livescript.js: -------------------------------------------------------------------------------- 1 | import register from 'highlight.js/lib/languages/livescript'; 2 | 3 | export const livescript = { name: 'livescript', register }; 4 | export default livescript; 5 | -------------------------------------------------------------------------------- /src/routes/utils/highlight/languages/llvm.d.ts: -------------------------------------------------------------------------------- 1 | export { llvm } from './'; 2 | export { llvm as default } from './'; 3 | -------------------------------------------------------------------------------- /src/routes/utils/highlight/languages/llvm.js: -------------------------------------------------------------------------------- 1 | import register from 'highlight.js/lib/languages/llvm'; 2 | 3 | export const llvm = { name: 'llvm', register }; 4 | export default llvm; 5 | -------------------------------------------------------------------------------- /src/routes/utils/highlight/languages/lsl.d.ts: -------------------------------------------------------------------------------- 1 | export { lsl } from './'; 2 | export { lsl as default } from './'; 3 | -------------------------------------------------------------------------------- /src/routes/utils/highlight/languages/lsl.js: -------------------------------------------------------------------------------- 1 | import register from 'highlight.js/lib/languages/lsl'; 2 | 3 | export const lsl = { name: 'lsl', register }; 4 | export default lsl; 5 | -------------------------------------------------------------------------------- /src/routes/utils/highlight/languages/lua.d.ts: -------------------------------------------------------------------------------- 1 | export { lua } from './'; 2 | export { lua as default } from './'; 3 | -------------------------------------------------------------------------------- /src/routes/utils/highlight/languages/lua.js: -------------------------------------------------------------------------------- 1 | import register from 'highlight.js/lib/languages/lua'; 2 | 3 | export const lua = { name: 'lua', register }; 4 | export default lua; 5 | -------------------------------------------------------------------------------- /src/routes/utils/highlight/languages/makefile.d.ts: -------------------------------------------------------------------------------- 1 | export { makefile } from './'; 2 | export { makefile as default } from './'; 3 | -------------------------------------------------------------------------------- /src/routes/utils/highlight/languages/makefile.js: -------------------------------------------------------------------------------- 1 | import register from 'highlight.js/lib/languages/makefile'; 2 | 3 | export const makefile = { name: 'makefile', register }; 4 | export default makefile; 5 | -------------------------------------------------------------------------------- /src/routes/utils/highlight/languages/markdown.d.ts: -------------------------------------------------------------------------------- 1 | export { markdown } from './'; 2 | export { markdown as default } from './'; 3 | -------------------------------------------------------------------------------- /src/routes/utils/highlight/languages/markdown.js: -------------------------------------------------------------------------------- 1 | import register from 'highlight.js/lib/languages/markdown'; 2 | 3 | export const markdown = { name: 'markdown', register }; 4 | export default markdown; 5 | -------------------------------------------------------------------------------- /src/routes/utils/highlight/languages/mathematica.d.ts: -------------------------------------------------------------------------------- 1 | export { mathematica } from './'; 2 | export { mathematica as default } from './'; 3 | -------------------------------------------------------------------------------- /src/routes/utils/highlight/languages/mathematica.js: -------------------------------------------------------------------------------- 1 | import register from 'highlight.js/lib/languages/mathematica'; 2 | 3 | export const mathematica = { name: 'mathematica', register }; 4 | export default mathematica; 5 | -------------------------------------------------------------------------------- /src/routes/utils/highlight/languages/matlab.d.ts: -------------------------------------------------------------------------------- 1 | export { matlab } from './'; 2 | export { matlab as default } from './'; 3 | -------------------------------------------------------------------------------- /src/routes/utils/highlight/languages/matlab.js: -------------------------------------------------------------------------------- 1 | import register from 'highlight.js/lib/languages/matlab'; 2 | 3 | export const matlab = { name: 'matlab', register }; 4 | export default matlab; 5 | -------------------------------------------------------------------------------- /src/routes/utils/highlight/languages/maxima.d.ts: -------------------------------------------------------------------------------- 1 | export { maxima } from './'; 2 | export { maxima as default } from './'; 3 | -------------------------------------------------------------------------------- /src/routes/utils/highlight/languages/maxima.js: -------------------------------------------------------------------------------- 1 | import register from 'highlight.js/lib/languages/maxima'; 2 | 3 | export const maxima = { name: 'maxima', register }; 4 | export default maxima; 5 | -------------------------------------------------------------------------------- /src/routes/utils/highlight/languages/mel.d.ts: -------------------------------------------------------------------------------- 1 | export { mel } from './'; 2 | export { mel as default } from './'; 3 | -------------------------------------------------------------------------------- /src/routes/utils/highlight/languages/mel.js: -------------------------------------------------------------------------------- 1 | import register from 'highlight.js/lib/languages/mel'; 2 | 3 | export const mel = { name: 'mel', register }; 4 | export default mel; 5 | -------------------------------------------------------------------------------- /src/routes/utils/highlight/languages/mercury.d.ts: -------------------------------------------------------------------------------- 1 | export { mercury } from './'; 2 | export { mercury as default } from './'; 3 | -------------------------------------------------------------------------------- /src/routes/utils/highlight/languages/mercury.js: -------------------------------------------------------------------------------- 1 | import register from 'highlight.js/lib/languages/mercury'; 2 | 3 | export const mercury = { name: 'mercury', register }; 4 | export default mercury; 5 | -------------------------------------------------------------------------------- /src/routes/utils/highlight/languages/mipsasm.d.ts: -------------------------------------------------------------------------------- 1 | export { mipsasm } from './'; 2 | export { mipsasm as default } from './'; 3 | -------------------------------------------------------------------------------- /src/routes/utils/highlight/languages/mipsasm.js: -------------------------------------------------------------------------------- 1 | import register from 'highlight.js/lib/languages/mipsasm'; 2 | 3 | export const mipsasm = { name: 'mipsasm', register }; 4 | export default mipsasm; 5 | -------------------------------------------------------------------------------- /src/routes/utils/highlight/languages/mizar.d.ts: -------------------------------------------------------------------------------- 1 | export { mizar } from './'; 2 | export { mizar as default } from './'; 3 | -------------------------------------------------------------------------------- /src/routes/utils/highlight/languages/mizar.js: -------------------------------------------------------------------------------- 1 | import register from 'highlight.js/lib/languages/mizar'; 2 | 3 | export const mizar = { name: 'mizar', register }; 4 | export default mizar; 5 | -------------------------------------------------------------------------------- /src/routes/utils/highlight/languages/mojolicious.d.ts: -------------------------------------------------------------------------------- 1 | export { mojolicious } from './'; 2 | export { mojolicious as default } from './'; 3 | -------------------------------------------------------------------------------- /src/routes/utils/highlight/languages/mojolicious.js: -------------------------------------------------------------------------------- 1 | import register from 'highlight.js/lib/languages/mojolicious'; 2 | 3 | export const mojolicious = { name: 'mojolicious', register }; 4 | export default mojolicious; 5 | -------------------------------------------------------------------------------- /src/routes/utils/highlight/languages/monkey.d.ts: -------------------------------------------------------------------------------- 1 | export { monkey } from './'; 2 | export { monkey as default } from './'; 3 | -------------------------------------------------------------------------------- /src/routes/utils/highlight/languages/monkey.js: -------------------------------------------------------------------------------- 1 | import register from 'highlight.js/lib/languages/monkey'; 2 | 3 | export const monkey = { name: 'monkey', register }; 4 | export default monkey; 5 | -------------------------------------------------------------------------------- /src/routes/utils/highlight/languages/moonscript.d.ts: -------------------------------------------------------------------------------- 1 | export { moonscript } from './'; 2 | export { moonscript as default } from './'; 3 | -------------------------------------------------------------------------------- /src/routes/utils/highlight/languages/moonscript.js: -------------------------------------------------------------------------------- 1 | import register from 'highlight.js/lib/languages/moonscript'; 2 | 3 | export const moonscript = { name: 'moonscript', register }; 4 | export default moonscript; 5 | -------------------------------------------------------------------------------- /src/routes/utils/highlight/languages/n1ql.d.ts: -------------------------------------------------------------------------------- 1 | export { n1ql } from './'; 2 | export { n1ql as default } from './'; 3 | -------------------------------------------------------------------------------- /src/routes/utils/highlight/languages/n1ql.js: -------------------------------------------------------------------------------- 1 | import register from 'highlight.js/lib/languages/n1ql'; 2 | 3 | export const n1ql = { name: 'n1ql', register }; 4 | export default n1ql; 5 | -------------------------------------------------------------------------------- /src/routes/utils/highlight/languages/nestedtext.d.ts: -------------------------------------------------------------------------------- 1 | export { nestedtext } from './'; 2 | export { nestedtext as default } from './'; 3 | -------------------------------------------------------------------------------- /src/routes/utils/highlight/languages/nestedtext.js: -------------------------------------------------------------------------------- 1 | import register from 'highlight.js/lib/languages/nestedtext'; 2 | 3 | export const nestedtext = { name: 'nestedtext', register }; 4 | export default nestedtext; 5 | -------------------------------------------------------------------------------- /src/routes/utils/highlight/languages/nginx.d.ts: -------------------------------------------------------------------------------- 1 | export { nginx } from './'; 2 | export { nginx as default } from './'; 3 | -------------------------------------------------------------------------------- /src/routes/utils/highlight/languages/nginx.js: -------------------------------------------------------------------------------- 1 | import register from 'highlight.js/lib/languages/nginx'; 2 | 3 | export const nginx = { name: 'nginx', register }; 4 | export default nginx; 5 | -------------------------------------------------------------------------------- /src/routes/utils/highlight/languages/nim.d.ts: -------------------------------------------------------------------------------- 1 | export { nim } from './'; 2 | export { nim as default } from './'; 3 | -------------------------------------------------------------------------------- /src/routes/utils/highlight/languages/nim.js: -------------------------------------------------------------------------------- 1 | import register from 'highlight.js/lib/languages/nim'; 2 | 3 | export const nim = { name: 'nim', register }; 4 | export default nim; 5 | -------------------------------------------------------------------------------- /src/routes/utils/highlight/languages/nix.d.ts: -------------------------------------------------------------------------------- 1 | export { nix } from './'; 2 | export { nix as default } from './'; 3 | -------------------------------------------------------------------------------- /src/routes/utils/highlight/languages/nix.js: -------------------------------------------------------------------------------- 1 | import register from 'highlight.js/lib/languages/nix'; 2 | 3 | export const nix = { name: 'nix', register }; 4 | export default nix; 5 | -------------------------------------------------------------------------------- /src/routes/utils/highlight/languages/node-repl.d.ts: -------------------------------------------------------------------------------- 1 | export { nodeRepl } from './'; 2 | export { nodeRepl as default } from './'; 3 | -------------------------------------------------------------------------------- /src/routes/utils/highlight/languages/node-repl.js: -------------------------------------------------------------------------------- 1 | import register from 'highlight.js/lib/languages/node-repl'; 2 | 3 | export const nodeRepl = { name: 'node-repl', register }; 4 | export default nodeRepl; 5 | -------------------------------------------------------------------------------- /src/routes/utils/highlight/languages/nsis.d.ts: -------------------------------------------------------------------------------- 1 | export { nsis } from './'; 2 | export { nsis as default } from './'; 3 | -------------------------------------------------------------------------------- /src/routes/utils/highlight/languages/nsis.js: -------------------------------------------------------------------------------- 1 | import register from 'highlight.js/lib/languages/nsis'; 2 | 3 | export const nsis = { name: 'nsis', register }; 4 | export default nsis; 5 | -------------------------------------------------------------------------------- /src/routes/utils/highlight/languages/objectivec.d.ts: -------------------------------------------------------------------------------- 1 | export { objectivec } from './'; 2 | export { objectivec as default } from './'; 3 | -------------------------------------------------------------------------------- /src/routes/utils/highlight/languages/objectivec.js: -------------------------------------------------------------------------------- 1 | import register from 'highlight.js/lib/languages/objectivec'; 2 | 3 | export const objectivec = { name: 'objectivec', register }; 4 | export default objectivec; 5 | -------------------------------------------------------------------------------- /src/routes/utils/highlight/languages/ocaml.d.ts: -------------------------------------------------------------------------------- 1 | export { ocaml } from './'; 2 | export { ocaml as default } from './'; 3 | -------------------------------------------------------------------------------- /src/routes/utils/highlight/languages/ocaml.js: -------------------------------------------------------------------------------- 1 | import register from 'highlight.js/lib/languages/ocaml'; 2 | 3 | export const ocaml = { name: 'ocaml', register }; 4 | export default ocaml; 5 | -------------------------------------------------------------------------------- /src/routes/utils/highlight/languages/openscad.d.ts: -------------------------------------------------------------------------------- 1 | export { openscad } from './'; 2 | export { openscad as default } from './'; 3 | -------------------------------------------------------------------------------- /src/routes/utils/highlight/languages/openscad.js: -------------------------------------------------------------------------------- 1 | import register from 'highlight.js/lib/languages/openscad'; 2 | 3 | export const openscad = { name: 'openscad', register }; 4 | export default openscad; 5 | -------------------------------------------------------------------------------- /src/routes/utils/highlight/languages/oxygene.d.ts: -------------------------------------------------------------------------------- 1 | export { oxygene } from './'; 2 | export { oxygene as default } from './'; 3 | -------------------------------------------------------------------------------- /src/routes/utils/highlight/languages/oxygene.js: -------------------------------------------------------------------------------- 1 | import register from 'highlight.js/lib/languages/oxygene'; 2 | 3 | export const oxygene = { name: 'oxygene', register }; 4 | export default oxygene; 5 | -------------------------------------------------------------------------------- /src/routes/utils/highlight/languages/parser3.d.ts: -------------------------------------------------------------------------------- 1 | export { parser3 } from './'; 2 | export { parser3 as default } from './'; 3 | -------------------------------------------------------------------------------- /src/routes/utils/highlight/languages/parser3.js: -------------------------------------------------------------------------------- 1 | import register from 'highlight.js/lib/languages/parser3'; 2 | 3 | export const parser3 = { name: 'parser3', register }; 4 | export default parser3; 5 | -------------------------------------------------------------------------------- /src/routes/utils/highlight/languages/perl.d.ts: -------------------------------------------------------------------------------- 1 | export { perl } from './'; 2 | export { perl as default } from './'; 3 | -------------------------------------------------------------------------------- /src/routes/utils/highlight/languages/perl.js: -------------------------------------------------------------------------------- 1 | import register from 'highlight.js/lib/languages/perl'; 2 | 3 | export const perl = { name: 'perl', register }; 4 | export default perl; 5 | -------------------------------------------------------------------------------- /src/routes/utils/highlight/languages/pf.d.ts: -------------------------------------------------------------------------------- 1 | export { pf } from './'; 2 | export { pf as default } from './'; 3 | -------------------------------------------------------------------------------- /src/routes/utils/highlight/languages/pf.js: -------------------------------------------------------------------------------- 1 | import register from 'highlight.js/lib/languages/pf'; 2 | 3 | export const pf = { name: 'pf', register }; 4 | export default pf; 5 | -------------------------------------------------------------------------------- /src/routes/utils/highlight/languages/pgsql.d.ts: -------------------------------------------------------------------------------- 1 | export { pgsql } from './'; 2 | export { pgsql as default } from './'; 3 | -------------------------------------------------------------------------------- /src/routes/utils/highlight/languages/pgsql.js: -------------------------------------------------------------------------------- 1 | import register from 'highlight.js/lib/languages/pgsql'; 2 | 3 | export const pgsql = { name: 'pgsql', register }; 4 | export default pgsql; 5 | -------------------------------------------------------------------------------- /src/routes/utils/highlight/languages/php-template.d.ts: -------------------------------------------------------------------------------- 1 | export { phpTemplate } from './'; 2 | export { phpTemplate as default } from './'; 3 | -------------------------------------------------------------------------------- /src/routes/utils/highlight/languages/php-template.js: -------------------------------------------------------------------------------- 1 | import register from 'highlight.js/lib/languages/php-template'; 2 | 3 | export const phpTemplate = { name: 'php-template', register }; 4 | export default phpTemplate; 5 | -------------------------------------------------------------------------------- /src/routes/utils/highlight/languages/php.d.ts: -------------------------------------------------------------------------------- 1 | export { php } from './'; 2 | export { php as default } from './'; 3 | -------------------------------------------------------------------------------- /src/routes/utils/highlight/languages/php.js: -------------------------------------------------------------------------------- 1 | import register from 'highlight.js/lib/languages/php'; 2 | 3 | export const php = { name: 'php', register }; 4 | export default php; 5 | -------------------------------------------------------------------------------- /src/routes/utils/highlight/languages/plaintext.d.ts: -------------------------------------------------------------------------------- 1 | export { plaintext } from './'; 2 | export { plaintext as default } from './'; 3 | -------------------------------------------------------------------------------- /src/routes/utils/highlight/languages/plaintext.js: -------------------------------------------------------------------------------- 1 | import register from 'highlight.js/lib/languages/plaintext'; 2 | 3 | export const plaintext = { name: 'plaintext', register }; 4 | export default plaintext; 5 | -------------------------------------------------------------------------------- /src/routes/utils/highlight/languages/pony.d.ts: -------------------------------------------------------------------------------- 1 | export { pony } from './'; 2 | export { pony as default } from './'; 3 | -------------------------------------------------------------------------------- /src/routes/utils/highlight/languages/pony.js: -------------------------------------------------------------------------------- 1 | import register from 'highlight.js/lib/languages/pony'; 2 | 3 | export const pony = { name: 'pony', register }; 4 | export default pony; 5 | -------------------------------------------------------------------------------- /src/routes/utils/highlight/languages/powershell.d.ts: -------------------------------------------------------------------------------- 1 | export { powershell } from './'; 2 | export { powershell as default } from './'; 3 | -------------------------------------------------------------------------------- /src/routes/utils/highlight/languages/powershell.js: -------------------------------------------------------------------------------- 1 | import register from 'highlight.js/lib/languages/powershell'; 2 | 3 | export const powershell = { name: 'powershell', register }; 4 | export default powershell; 5 | -------------------------------------------------------------------------------- /src/routes/utils/highlight/languages/processing.d.ts: -------------------------------------------------------------------------------- 1 | export { processing } from './'; 2 | export { processing as default } from './'; 3 | -------------------------------------------------------------------------------- /src/routes/utils/highlight/languages/processing.js: -------------------------------------------------------------------------------- 1 | import register from 'highlight.js/lib/languages/processing'; 2 | 3 | export const processing = { name: 'processing', register }; 4 | export default processing; 5 | -------------------------------------------------------------------------------- /src/routes/utils/highlight/languages/profile.d.ts: -------------------------------------------------------------------------------- 1 | export { profile } from './'; 2 | export { profile as default } from './'; 3 | -------------------------------------------------------------------------------- /src/routes/utils/highlight/languages/profile.js: -------------------------------------------------------------------------------- 1 | import register from 'highlight.js/lib/languages/profile'; 2 | 3 | export const profile = { name: 'profile', register }; 4 | export default profile; 5 | -------------------------------------------------------------------------------- /src/routes/utils/highlight/languages/prolog.d.ts: -------------------------------------------------------------------------------- 1 | export { prolog } from './'; 2 | export { prolog as default } from './'; 3 | -------------------------------------------------------------------------------- /src/routes/utils/highlight/languages/prolog.js: -------------------------------------------------------------------------------- 1 | import register from 'highlight.js/lib/languages/prolog'; 2 | 3 | export const prolog = { name: 'prolog', register }; 4 | export default prolog; 5 | -------------------------------------------------------------------------------- /src/routes/utils/highlight/languages/properties.d.ts: -------------------------------------------------------------------------------- 1 | export { properties } from './'; 2 | export { properties as default } from './'; 3 | -------------------------------------------------------------------------------- /src/routes/utils/highlight/languages/properties.js: -------------------------------------------------------------------------------- 1 | import register from 'highlight.js/lib/languages/properties'; 2 | 3 | export const properties = { name: 'properties', register }; 4 | export default properties; 5 | -------------------------------------------------------------------------------- /src/routes/utils/highlight/languages/protobuf.d.ts: -------------------------------------------------------------------------------- 1 | export { protobuf } from './'; 2 | export { protobuf as default } from './'; 3 | -------------------------------------------------------------------------------- /src/routes/utils/highlight/languages/protobuf.js: -------------------------------------------------------------------------------- 1 | import register from 'highlight.js/lib/languages/protobuf'; 2 | 3 | export const protobuf = { name: 'protobuf', register }; 4 | export default protobuf; 5 | -------------------------------------------------------------------------------- /src/routes/utils/highlight/languages/puppet.d.ts: -------------------------------------------------------------------------------- 1 | export { puppet } from './'; 2 | export { puppet as default } from './'; 3 | -------------------------------------------------------------------------------- /src/routes/utils/highlight/languages/puppet.js: -------------------------------------------------------------------------------- 1 | import register from 'highlight.js/lib/languages/puppet'; 2 | 3 | export const puppet = { name: 'puppet', register }; 4 | export default puppet; 5 | -------------------------------------------------------------------------------- /src/routes/utils/highlight/languages/purebasic.d.ts: -------------------------------------------------------------------------------- 1 | export { purebasic } from './'; 2 | export { purebasic as default } from './'; 3 | -------------------------------------------------------------------------------- /src/routes/utils/highlight/languages/purebasic.js: -------------------------------------------------------------------------------- 1 | import register from 'highlight.js/lib/languages/purebasic'; 2 | 3 | export const purebasic = { name: 'purebasic', register }; 4 | export default purebasic; 5 | -------------------------------------------------------------------------------- /src/routes/utils/highlight/languages/python-repl.d.ts: -------------------------------------------------------------------------------- 1 | export { pythonRepl } from './'; 2 | export { pythonRepl as default } from './'; 3 | -------------------------------------------------------------------------------- /src/routes/utils/highlight/languages/python-repl.js: -------------------------------------------------------------------------------- 1 | import register from 'highlight.js/lib/languages/python-repl'; 2 | 3 | export const pythonRepl = { name: 'python-repl', register }; 4 | export default pythonRepl; 5 | -------------------------------------------------------------------------------- /src/routes/utils/highlight/languages/python.d.ts: -------------------------------------------------------------------------------- 1 | export { python } from './'; 2 | export { python as default } from './'; 3 | -------------------------------------------------------------------------------- /src/routes/utils/highlight/languages/python.js: -------------------------------------------------------------------------------- 1 | import register from 'highlight.js/lib/languages/python'; 2 | 3 | export const python = { name: 'python', register }; 4 | export default python; 5 | -------------------------------------------------------------------------------- /src/routes/utils/highlight/languages/q.d.ts: -------------------------------------------------------------------------------- 1 | export { q } from './'; 2 | export { q as default } from './'; 3 | -------------------------------------------------------------------------------- /src/routes/utils/highlight/languages/q.js: -------------------------------------------------------------------------------- 1 | import register from 'highlight.js/lib/languages/q'; 2 | 3 | export const q = { name: 'q', register }; 4 | export default q; 5 | -------------------------------------------------------------------------------- /src/routes/utils/highlight/languages/qml.d.ts: -------------------------------------------------------------------------------- 1 | export { qml } from './'; 2 | export { qml as default } from './'; 3 | -------------------------------------------------------------------------------- /src/routes/utils/highlight/languages/qml.js: -------------------------------------------------------------------------------- 1 | import register from 'highlight.js/lib/languages/qml'; 2 | 3 | export const qml = { name: 'qml', register }; 4 | export default qml; 5 | -------------------------------------------------------------------------------- /src/routes/utils/highlight/languages/r.d.ts: -------------------------------------------------------------------------------- 1 | export { r } from './'; 2 | export { r as default } from './'; 3 | -------------------------------------------------------------------------------- /src/routes/utils/highlight/languages/r.js: -------------------------------------------------------------------------------- 1 | import register from 'highlight.js/lib/languages/r'; 2 | 3 | export const r = { name: 'r', register }; 4 | export default r; 5 | -------------------------------------------------------------------------------- /src/routes/utils/highlight/languages/reasonml.d.ts: -------------------------------------------------------------------------------- 1 | export { reasonml } from './'; 2 | export { reasonml as default } from './'; 3 | -------------------------------------------------------------------------------- /src/routes/utils/highlight/languages/reasonml.js: -------------------------------------------------------------------------------- 1 | import register from 'highlight.js/lib/languages/reasonml'; 2 | 3 | export const reasonml = { name: 'reasonml', register }; 4 | export default reasonml; 5 | -------------------------------------------------------------------------------- /src/routes/utils/highlight/languages/rib.d.ts: -------------------------------------------------------------------------------- 1 | export { rib } from './'; 2 | export { rib as default } from './'; 3 | -------------------------------------------------------------------------------- /src/routes/utils/highlight/languages/rib.js: -------------------------------------------------------------------------------- 1 | import register from 'highlight.js/lib/languages/rib'; 2 | 3 | export const rib = { name: 'rib', register }; 4 | export default rib; 5 | -------------------------------------------------------------------------------- /src/routes/utils/highlight/languages/roboconf.d.ts: -------------------------------------------------------------------------------- 1 | export { roboconf } from './'; 2 | export { roboconf as default } from './'; 3 | -------------------------------------------------------------------------------- /src/routes/utils/highlight/languages/roboconf.js: -------------------------------------------------------------------------------- 1 | import register from 'highlight.js/lib/languages/roboconf'; 2 | 3 | export const roboconf = { name: 'roboconf', register }; 4 | export default roboconf; 5 | -------------------------------------------------------------------------------- /src/routes/utils/highlight/languages/routeros.d.ts: -------------------------------------------------------------------------------- 1 | export { routeros } from './'; 2 | export { routeros as default } from './'; 3 | -------------------------------------------------------------------------------- /src/routes/utils/highlight/languages/routeros.js: -------------------------------------------------------------------------------- 1 | import register from 'highlight.js/lib/languages/routeros'; 2 | 3 | export const routeros = { name: 'routeros', register }; 4 | export default routeros; 5 | -------------------------------------------------------------------------------- /src/routes/utils/highlight/languages/rsl.d.ts: -------------------------------------------------------------------------------- 1 | export { rsl } from './'; 2 | export { rsl as default } from './'; 3 | -------------------------------------------------------------------------------- /src/routes/utils/highlight/languages/rsl.js: -------------------------------------------------------------------------------- 1 | import register from 'highlight.js/lib/languages/rsl'; 2 | 3 | export const rsl = { name: 'rsl', register }; 4 | export default rsl; 5 | -------------------------------------------------------------------------------- /src/routes/utils/highlight/languages/ruby.d.ts: -------------------------------------------------------------------------------- 1 | export { ruby } from './'; 2 | export { ruby as default } from './'; 3 | -------------------------------------------------------------------------------- /src/routes/utils/highlight/languages/ruby.js: -------------------------------------------------------------------------------- 1 | import register from 'highlight.js/lib/languages/ruby'; 2 | 3 | export const ruby = { name: 'ruby', register }; 4 | export default ruby; 5 | -------------------------------------------------------------------------------- /src/routes/utils/highlight/languages/ruleslanguage.d.ts: -------------------------------------------------------------------------------- 1 | export { ruleslanguage } from './'; 2 | export { ruleslanguage as default } from './'; 3 | -------------------------------------------------------------------------------- /src/routes/utils/highlight/languages/ruleslanguage.js: -------------------------------------------------------------------------------- 1 | import register from 'highlight.js/lib/languages/ruleslanguage'; 2 | 3 | export const ruleslanguage = { name: 'ruleslanguage', register }; 4 | export default ruleslanguage; 5 | -------------------------------------------------------------------------------- /src/routes/utils/highlight/languages/rust.d.ts: -------------------------------------------------------------------------------- 1 | export { rust } from './'; 2 | export { rust as default } from './'; 3 | -------------------------------------------------------------------------------- /src/routes/utils/highlight/languages/rust.js: -------------------------------------------------------------------------------- 1 | import register from 'highlight.js/lib/languages/rust'; 2 | 3 | export const rust = { name: 'rust', register }; 4 | export default rust; 5 | -------------------------------------------------------------------------------- /src/routes/utils/highlight/languages/sas.d.ts: -------------------------------------------------------------------------------- 1 | export { sas } from './'; 2 | export { sas as default } from './'; 3 | -------------------------------------------------------------------------------- /src/routes/utils/highlight/languages/sas.js: -------------------------------------------------------------------------------- 1 | import register from 'highlight.js/lib/languages/sas'; 2 | 3 | export const sas = { name: 'sas', register }; 4 | export default sas; 5 | -------------------------------------------------------------------------------- /src/routes/utils/highlight/languages/scala.d.ts: -------------------------------------------------------------------------------- 1 | export { scala } from './'; 2 | export { scala as default } from './'; 3 | -------------------------------------------------------------------------------- /src/routes/utils/highlight/languages/scala.js: -------------------------------------------------------------------------------- 1 | import register from 'highlight.js/lib/languages/scala'; 2 | 3 | export const scala = { name: 'scala', register }; 4 | export default scala; 5 | -------------------------------------------------------------------------------- /src/routes/utils/highlight/languages/scheme.d.ts: -------------------------------------------------------------------------------- 1 | export { scheme } from './'; 2 | export { scheme as default } from './'; 3 | -------------------------------------------------------------------------------- /src/routes/utils/highlight/languages/scheme.js: -------------------------------------------------------------------------------- 1 | import register from 'highlight.js/lib/languages/scheme'; 2 | 3 | export const scheme = { name: 'scheme', register }; 4 | export default scheme; 5 | -------------------------------------------------------------------------------- /src/routes/utils/highlight/languages/scilab.d.ts: -------------------------------------------------------------------------------- 1 | export { scilab } from './'; 2 | export { scilab as default } from './'; 3 | -------------------------------------------------------------------------------- /src/routes/utils/highlight/languages/scilab.js: -------------------------------------------------------------------------------- 1 | import register from 'highlight.js/lib/languages/scilab'; 2 | 3 | export const scilab = { name: 'scilab', register }; 4 | export default scilab; 5 | -------------------------------------------------------------------------------- /src/routes/utils/highlight/languages/scss.d.ts: -------------------------------------------------------------------------------- 1 | export { scss } from './'; 2 | export { scss as default } from './'; 3 | -------------------------------------------------------------------------------- /src/routes/utils/highlight/languages/scss.js: -------------------------------------------------------------------------------- 1 | import register from 'highlight.js/lib/languages/scss'; 2 | 3 | export const scss = { name: 'scss', register }; 4 | export default scss; 5 | -------------------------------------------------------------------------------- /src/routes/utils/highlight/languages/shell.d.ts: -------------------------------------------------------------------------------- 1 | export { shell } from './'; 2 | export { shell as default } from './'; 3 | -------------------------------------------------------------------------------- /src/routes/utils/highlight/languages/shell.js: -------------------------------------------------------------------------------- 1 | import register from 'highlight.js/lib/languages/shell'; 2 | 3 | export const shell = { name: 'shell', register }; 4 | export default shell; 5 | -------------------------------------------------------------------------------- /src/routes/utils/highlight/languages/smali.d.ts: -------------------------------------------------------------------------------- 1 | export { smali } from './'; 2 | export { smali as default } from './'; 3 | -------------------------------------------------------------------------------- /src/routes/utils/highlight/languages/smali.js: -------------------------------------------------------------------------------- 1 | import register from 'highlight.js/lib/languages/smali'; 2 | 3 | export const smali = { name: 'smali', register }; 4 | export default smali; 5 | -------------------------------------------------------------------------------- /src/routes/utils/highlight/languages/smalltalk.d.ts: -------------------------------------------------------------------------------- 1 | export { smalltalk } from './'; 2 | export { smalltalk as default } from './'; 3 | -------------------------------------------------------------------------------- /src/routes/utils/highlight/languages/smalltalk.js: -------------------------------------------------------------------------------- 1 | import register from 'highlight.js/lib/languages/smalltalk'; 2 | 3 | export const smalltalk = { name: 'smalltalk', register }; 4 | export default smalltalk; 5 | -------------------------------------------------------------------------------- /src/routes/utils/highlight/languages/sml.d.ts: -------------------------------------------------------------------------------- 1 | export { sml } from './'; 2 | export { sml as default } from './'; 3 | -------------------------------------------------------------------------------- /src/routes/utils/highlight/languages/sml.js: -------------------------------------------------------------------------------- 1 | import register from 'highlight.js/lib/languages/sml'; 2 | 3 | export const sml = { name: 'sml', register }; 4 | export default sml; 5 | -------------------------------------------------------------------------------- /src/routes/utils/highlight/languages/sqf.d.ts: -------------------------------------------------------------------------------- 1 | export { sqf } from './'; 2 | export { sqf as default } from './'; 3 | -------------------------------------------------------------------------------- /src/routes/utils/highlight/languages/sqf.js: -------------------------------------------------------------------------------- 1 | import register from 'highlight.js/lib/languages/sqf'; 2 | 3 | export const sqf = { name: 'sqf', register }; 4 | export default sqf; 5 | -------------------------------------------------------------------------------- /src/routes/utils/highlight/languages/sql.d.ts: -------------------------------------------------------------------------------- 1 | export { sql } from './'; 2 | export { sql as default } from './'; 3 | -------------------------------------------------------------------------------- /src/routes/utils/highlight/languages/sql.js: -------------------------------------------------------------------------------- 1 | import register from 'highlight.js/lib/languages/sql'; 2 | 3 | export const sql = { name: 'sql', register }; 4 | export default sql; 5 | -------------------------------------------------------------------------------- /src/routes/utils/highlight/languages/stan.d.ts: -------------------------------------------------------------------------------- 1 | export { stan } from './'; 2 | export { stan as default } from './'; 3 | -------------------------------------------------------------------------------- /src/routes/utils/highlight/languages/stan.js: -------------------------------------------------------------------------------- 1 | import register from 'highlight.js/lib/languages/stan'; 2 | 3 | export const stan = { name: 'stan', register }; 4 | export default stan; 5 | -------------------------------------------------------------------------------- /src/routes/utils/highlight/languages/stata.d.ts: -------------------------------------------------------------------------------- 1 | export { stata } from './'; 2 | export { stata as default } from './'; 3 | -------------------------------------------------------------------------------- /src/routes/utils/highlight/languages/stata.js: -------------------------------------------------------------------------------- 1 | import register from 'highlight.js/lib/languages/stata'; 2 | 3 | export const stata = { name: 'stata', register }; 4 | export default stata; 5 | -------------------------------------------------------------------------------- /src/routes/utils/highlight/languages/step21.d.ts: -------------------------------------------------------------------------------- 1 | export { step21 } from './'; 2 | export { step21 as default } from './'; 3 | -------------------------------------------------------------------------------- /src/routes/utils/highlight/languages/step21.js: -------------------------------------------------------------------------------- 1 | import register from 'highlight.js/lib/languages/step21'; 2 | 3 | export const step21 = { name: 'step21', register }; 4 | export default step21; 5 | -------------------------------------------------------------------------------- /src/routes/utils/highlight/languages/stylus.d.ts: -------------------------------------------------------------------------------- 1 | export { stylus } from './'; 2 | export { stylus as default } from './'; 3 | -------------------------------------------------------------------------------- /src/routes/utils/highlight/languages/stylus.js: -------------------------------------------------------------------------------- 1 | import register from 'highlight.js/lib/languages/stylus'; 2 | 3 | export const stylus = { name: 'stylus', register }; 4 | export default stylus; 5 | -------------------------------------------------------------------------------- /src/routes/utils/highlight/languages/subunit.d.ts: -------------------------------------------------------------------------------- 1 | export { subunit } from './'; 2 | export { subunit as default } from './'; 3 | -------------------------------------------------------------------------------- /src/routes/utils/highlight/languages/subunit.js: -------------------------------------------------------------------------------- 1 | import register from 'highlight.js/lib/languages/subunit'; 2 | 3 | export const subunit = { name: 'subunit', register }; 4 | export default subunit; 5 | -------------------------------------------------------------------------------- /src/routes/utils/highlight/languages/swift.d.ts: -------------------------------------------------------------------------------- 1 | export { swift } from './'; 2 | export { swift as default } from './'; 3 | -------------------------------------------------------------------------------- /src/routes/utils/highlight/languages/swift.js: -------------------------------------------------------------------------------- 1 | import register from 'highlight.js/lib/languages/swift'; 2 | 3 | export const swift = { name: 'swift', register }; 4 | export default swift; 5 | -------------------------------------------------------------------------------- /src/routes/utils/highlight/languages/taggerscript.d.ts: -------------------------------------------------------------------------------- 1 | export { taggerscript } from './'; 2 | export { taggerscript as default } from './'; 3 | -------------------------------------------------------------------------------- /src/routes/utils/highlight/languages/taggerscript.js: -------------------------------------------------------------------------------- 1 | import register from 'highlight.js/lib/languages/taggerscript'; 2 | 3 | export const taggerscript = { name: 'taggerscript', register }; 4 | export default taggerscript; 5 | -------------------------------------------------------------------------------- /src/routes/utils/highlight/languages/tap.d.ts: -------------------------------------------------------------------------------- 1 | export { tap } from './'; 2 | export { tap as default } from './'; 3 | -------------------------------------------------------------------------------- /src/routes/utils/highlight/languages/tap.js: -------------------------------------------------------------------------------- 1 | import register from 'highlight.js/lib/languages/tap'; 2 | 3 | export const tap = { name: 'tap', register }; 4 | export default tap; 5 | -------------------------------------------------------------------------------- /src/routes/utils/highlight/languages/tcl.d.ts: -------------------------------------------------------------------------------- 1 | export { tcl } from './'; 2 | export { tcl as default } from './'; 3 | -------------------------------------------------------------------------------- /src/routes/utils/highlight/languages/tcl.js: -------------------------------------------------------------------------------- 1 | import register from 'highlight.js/lib/languages/tcl'; 2 | 3 | export const tcl = { name: 'tcl', register }; 4 | export default tcl; 5 | -------------------------------------------------------------------------------- /src/routes/utils/highlight/languages/thrift.d.ts: -------------------------------------------------------------------------------- 1 | export { thrift } from './'; 2 | export { thrift as default } from './'; 3 | -------------------------------------------------------------------------------- /src/routes/utils/highlight/languages/thrift.js: -------------------------------------------------------------------------------- 1 | import register from 'highlight.js/lib/languages/thrift'; 2 | 3 | export const thrift = { name: 'thrift', register }; 4 | export default thrift; 5 | -------------------------------------------------------------------------------- /src/routes/utils/highlight/languages/tp.d.ts: -------------------------------------------------------------------------------- 1 | export { tp } from './'; 2 | export { tp as default } from './'; 3 | -------------------------------------------------------------------------------- /src/routes/utils/highlight/languages/tp.js: -------------------------------------------------------------------------------- 1 | import register from 'highlight.js/lib/languages/tp'; 2 | 3 | export const tp = { name: 'tp', register }; 4 | export default tp; 5 | -------------------------------------------------------------------------------- /src/routes/utils/highlight/languages/twig.d.ts: -------------------------------------------------------------------------------- 1 | export { twig } from './'; 2 | export { twig as default } from './'; 3 | -------------------------------------------------------------------------------- /src/routes/utils/highlight/languages/twig.js: -------------------------------------------------------------------------------- 1 | import register from 'highlight.js/lib/languages/twig'; 2 | 3 | export const twig = { name: 'twig', register }; 4 | export default twig; 5 | -------------------------------------------------------------------------------- /src/routes/utils/highlight/languages/typescript.d.ts: -------------------------------------------------------------------------------- 1 | export { typescript } from './'; 2 | export { typescript as default } from './'; 3 | -------------------------------------------------------------------------------- /src/routes/utils/highlight/languages/typescript.js: -------------------------------------------------------------------------------- 1 | import register from 'highlight.js/lib/languages/typescript'; 2 | 3 | export const typescript = { name: 'typescript', register }; 4 | export default typescript; 5 | -------------------------------------------------------------------------------- /src/routes/utils/highlight/languages/vala.d.ts: -------------------------------------------------------------------------------- 1 | export { vala } from './'; 2 | export { vala as default } from './'; 3 | -------------------------------------------------------------------------------- /src/routes/utils/highlight/languages/vala.js: -------------------------------------------------------------------------------- 1 | import register from 'highlight.js/lib/languages/vala'; 2 | 3 | export const vala = { name: 'vala', register }; 4 | export default vala; 5 | -------------------------------------------------------------------------------- /src/routes/utils/highlight/languages/vbnet.d.ts: -------------------------------------------------------------------------------- 1 | export { vbnet } from './'; 2 | export { vbnet as default } from './'; 3 | -------------------------------------------------------------------------------- /src/routes/utils/highlight/languages/vbnet.js: -------------------------------------------------------------------------------- 1 | import register from 'highlight.js/lib/languages/vbnet'; 2 | 3 | export const vbnet = { name: 'vbnet', register }; 4 | export default vbnet; 5 | -------------------------------------------------------------------------------- /src/routes/utils/highlight/languages/vbscript-html.d.ts: -------------------------------------------------------------------------------- 1 | export { vbscriptHtml } from './'; 2 | export { vbscriptHtml as default } from './'; 3 | -------------------------------------------------------------------------------- /src/routes/utils/highlight/languages/vbscript-html.js: -------------------------------------------------------------------------------- 1 | import register from 'highlight.js/lib/languages/vbscript-html'; 2 | 3 | export const vbscriptHtml = { name: 'vbscript-html', register }; 4 | export default vbscriptHtml; 5 | -------------------------------------------------------------------------------- /src/routes/utils/highlight/languages/vbscript.d.ts: -------------------------------------------------------------------------------- 1 | export { vbscript } from './'; 2 | export { vbscript as default } from './'; 3 | -------------------------------------------------------------------------------- /src/routes/utils/highlight/languages/vbscript.js: -------------------------------------------------------------------------------- 1 | import register from 'highlight.js/lib/languages/vbscript'; 2 | 3 | export const vbscript = { name: 'vbscript', register }; 4 | export default vbscript; 5 | -------------------------------------------------------------------------------- /src/routes/utils/highlight/languages/verilog.d.ts: -------------------------------------------------------------------------------- 1 | export { verilog } from './'; 2 | export { verilog as default } from './'; 3 | -------------------------------------------------------------------------------- /src/routes/utils/highlight/languages/verilog.js: -------------------------------------------------------------------------------- 1 | import register from 'highlight.js/lib/languages/verilog'; 2 | 3 | export const verilog = { name: 'verilog', register }; 4 | export default verilog; 5 | -------------------------------------------------------------------------------- /src/routes/utils/highlight/languages/vhdl.d.ts: -------------------------------------------------------------------------------- 1 | export { vhdl } from './'; 2 | export { vhdl as default } from './'; 3 | -------------------------------------------------------------------------------- /src/routes/utils/highlight/languages/vhdl.js: -------------------------------------------------------------------------------- 1 | import register from 'highlight.js/lib/languages/vhdl'; 2 | 3 | export const vhdl = { name: 'vhdl', register }; 4 | export default vhdl; 5 | -------------------------------------------------------------------------------- /src/routes/utils/highlight/languages/vim.d.ts: -------------------------------------------------------------------------------- 1 | export { vim } from './'; 2 | export { vim as default } from './'; 3 | -------------------------------------------------------------------------------- /src/routes/utils/highlight/languages/vim.js: -------------------------------------------------------------------------------- 1 | import register from 'highlight.js/lib/languages/vim'; 2 | 3 | export const vim = { name: 'vim', register }; 4 | export default vim; 5 | -------------------------------------------------------------------------------- /src/routes/utils/highlight/languages/wasm.d.ts: -------------------------------------------------------------------------------- 1 | export { wasm } from './'; 2 | export { wasm as default } from './'; 3 | -------------------------------------------------------------------------------- /src/routes/utils/highlight/languages/wasm.js: -------------------------------------------------------------------------------- 1 | import register from 'highlight.js/lib/languages/wasm'; 2 | 3 | export const wasm = { name: 'wasm', register }; 4 | export default wasm; 5 | -------------------------------------------------------------------------------- /src/routes/utils/highlight/languages/wren.d.ts: -------------------------------------------------------------------------------- 1 | export { wren } from './'; 2 | export { wren as default } from './'; 3 | -------------------------------------------------------------------------------- /src/routes/utils/highlight/languages/wren.js: -------------------------------------------------------------------------------- 1 | import register from 'highlight.js/lib/languages/wren'; 2 | 3 | export const wren = { name: 'wren', register }; 4 | export default wren; 5 | -------------------------------------------------------------------------------- /src/routes/utils/highlight/languages/x86asm.d.ts: -------------------------------------------------------------------------------- 1 | export { x86asm } from './'; 2 | export { x86asm as default } from './'; 3 | -------------------------------------------------------------------------------- /src/routes/utils/highlight/languages/x86asm.js: -------------------------------------------------------------------------------- 1 | import register from 'highlight.js/lib/languages/x86asm'; 2 | 3 | export const x86asm = { name: 'x86asm', register }; 4 | export default x86asm; 5 | -------------------------------------------------------------------------------- /src/routes/utils/highlight/languages/xl.d.ts: -------------------------------------------------------------------------------- 1 | export { xl } from './'; 2 | export { xl as default } from './'; 3 | -------------------------------------------------------------------------------- /src/routes/utils/highlight/languages/xl.js: -------------------------------------------------------------------------------- 1 | import register from 'highlight.js/lib/languages/xl'; 2 | 3 | export const xl = { name: 'xl', register }; 4 | export default xl; 5 | -------------------------------------------------------------------------------- /src/routes/utils/highlight/languages/xml.d.ts: -------------------------------------------------------------------------------- 1 | export { xml } from './'; 2 | export { xml as default } from './'; 3 | -------------------------------------------------------------------------------- /src/routes/utils/highlight/languages/xml.js: -------------------------------------------------------------------------------- 1 | import register from 'highlight.js/lib/languages/xml'; 2 | 3 | export const xml = { name: 'xml', register }; 4 | export default xml; 5 | -------------------------------------------------------------------------------- /src/routes/utils/highlight/languages/xquery.d.ts: -------------------------------------------------------------------------------- 1 | export { xquery } from './'; 2 | export { xquery as default } from './'; 3 | -------------------------------------------------------------------------------- /src/routes/utils/highlight/languages/xquery.js: -------------------------------------------------------------------------------- 1 | import register from 'highlight.js/lib/languages/xquery'; 2 | 3 | export const xquery = { name: 'xquery', register }; 4 | export default xquery; 5 | -------------------------------------------------------------------------------- /src/routes/utils/highlight/languages/yaml.d.ts: -------------------------------------------------------------------------------- 1 | export { yaml } from './'; 2 | export { yaml as default } from './'; 3 | -------------------------------------------------------------------------------- /src/routes/utils/highlight/languages/yaml.js: -------------------------------------------------------------------------------- 1 | import register from 'highlight.js/lib/languages/yaml'; 2 | 3 | export const yaml = { name: 'yaml', register }; 4 | export default yaml; 5 | -------------------------------------------------------------------------------- /src/routes/utils/highlight/languages/zephir.d.ts: -------------------------------------------------------------------------------- 1 | export { zephir } from './'; 2 | export { zephir as default } from './'; 3 | -------------------------------------------------------------------------------- /src/routes/utils/highlight/languages/zephir.js: -------------------------------------------------------------------------------- 1 | import register from 'highlight.js/lib/languages/zephir'; 2 | 3 | export const zephir = { name: 'zephir', register }; 4 | export default zephir; 5 | -------------------------------------------------------------------------------- /src/routes/utils/highlight/styles/3024.d.ts: -------------------------------------------------------------------------------- 1 | export { _3024 as default } from './'; 2 | -------------------------------------------------------------------------------- /src/routes/utils/highlight/styles/a11y-dark.d.ts: -------------------------------------------------------------------------------- 1 | export { a11yDark as default } from './'; 2 | -------------------------------------------------------------------------------- /src/routes/utils/highlight/styles/a11y-light.d.ts: -------------------------------------------------------------------------------- 1 | export { a11yLight as default } from './'; 2 | -------------------------------------------------------------------------------- /src/routes/utils/highlight/styles/agate.d.ts: -------------------------------------------------------------------------------- 1 | export { agate as default } from './'; 2 | -------------------------------------------------------------------------------- /src/routes/utils/highlight/styles/an-old-hope.d.ts: -------------------------------------------------------------------------------- 1 | export { anOldHope as default } from './'; 2 | -------------------------------------------------------------------------------- /src/routes/utils/highlight/styles/androidstudio.d.ts: -------------------------------------------------------------------------------- 1 | export { androidstudio as default } from './'; 2 | -------------------------------------------------------------------------------- /src/routes/utils/highlight/styles/apathy.d.ts: -------------------------------------------------------------------------------- 1 | export { apathy as default } from './'; 2 | -------------------------------------------------------------------------------- /src/routes/utils/highlight/styles/apprentice.d.ts: -------------------------------------------------------------------------------- 1 | export { apprentice as default } from './'; 2 | -------------------------------------------------------------------------------- /src/routes/utils/highlight/styles/arduino-light.d.ts: -------------------------------------------------------------------------------- 1 | export { arduinoLight as default } from './'; 2 | -------------------------------------------------------------------------------- /src/routes/utils/highlight/styles/arta.d.ts: -------------------------------------------------------------------------------- 1 | export { arta as default } from './'; 2 | -------------------------------------------------------------------------------- /src/routes/utils/highlight/styles/ascetic.d.ts: -------------------------------------------------------------------------------- 1 | export { ascetic as default } from './'; 2 | -------------------------------------------------------------------------------- /src/routes/utils/highlight/styles/ashes.d.ts: -------------------------------------------------------------------------------- 1 | export { ashes as default } from './'; 2 | -------------------------------------------------------------------------------- /src/routes/utils/highlight/styles/atelier-cave-light.d.ts: -------------------------------------------------------------------------------- 1 | export { atelierCaveLight as default } from './'; 2 | -------------------------------------------------------------------------------- /src/routes/utils/highlight/styles/atelier-cave.d.ts: -------------------------------------------------------------------------------- 1 | export { atelierCave as default } from './'; 2 | -------------------------------------------------------------------------------- /src/routes/utils/highlight/styles/atelier-dune-light.d.ts: -------------------------------------------------------------------------------- 1 | export { atelierDuneLight as default } from './'; 2 | -------------------------------------------------------------------------------- /src/routes/utils/highlight/styles/atelier-dune.d.ts: -------------------------------------------------------------------------------- 1 | export { atelierDune as default } from './'; 2 | -------------------------------------------------------------------------------- /src/routes/utils/highlight/styles/atelier-estuary-light.d.ts: -------------------------------------------------------------------------------- 1 | export { atelierEstuaryLight as default } from './'; 2 | -------------------------------------------------------------------------------- /src/routes/utils/highlight/styles/atelier-estuary.d.ts: -------------------------------------------------------------------------------- 1 | export { atelierEstuary as default } from './'; 2 | -------------------------------------------------------------------------------- /src/routes/utils/highlight/styles/atelier-forest-light.d.ts: -------------------------------------------------------------------------------- 1 | export { atelierForestLight as default } from './'; 2 | -------------------------------------------------------------------------------- /src/routes/utils/highlight/styles/atelier-forest.d.ts: -------------------------------------------------------------------------------- 1 | export { atelierForest as default } from './'; 2 | -------------------------------------------------------------------------------- /src/routes/utils/highlight/styles/atelier-heath-light.d.ts: -------------------------------------------------------------------------------- 1 | export { atelierHeathLight as default } from './'; 2 | -------------------------------------------------------------------------------- /src/routes/utils/highlight/styles/atelier-heath.d.ts: -------------------------------------------------------------------------------- 1 | export { atelierHeath as default } from './'; 2 | -------------------------------------------------------------------------------- /src/routes/utils/highlight/styles/atelier-lakeside-light.d.ts: -------------------------------------------------------------------------------- 1 | export { atelierLakesideLight as default } from './'; 2 | -------------------------------------------------------------------------------- /src/routes/utils/highlight/styles/atelier-lakeside.d.ts: -------------------------------------------------------------------------------- 1 | export { atelierLakeside as default } from './'; 2 | -------------------------------------------------------------------------------- /src/routes/utils/highlight/styles/atelier-plateau-light.d.ts: -------------------------------------------------------------------------------- 1 | export { atelierPlateauLight as default } from './'; 2 | -------------------------------------------------------------------------------- /src/routes/utils/highlight/styles/atelier-plateau.d.ts: -------------------------------------------------------------------------------- 1 | export { atelierPlateau as default } from './'; 2 | -------------------------------------------------------------------------------- /src/routes/utils/highlight/styles/atelier-savanna-light.d.ts: -------------------------------------------------------------------------------- 1 | export { atelierSavannaLight as default } from './'; 2 | -------------------------------------------------------------------------------- /src/routes/utils/highlight/styles/atelier-savanna.d.ts: -------------------------------------------------------------------------------- 1 | export { atelierSavanna as default } from './'; 2 | -------------------------------------------------------------------------------- /src/routes/utils/highlight/styles/atelier-seaside-light.d.ts: -------------------------------------------------------------------------------- 1 | export { atelierSeasideLight as default } from './'; 2 | -------------------------------------------------------------------------------- /src/routes/utils/highlight/styles/atelier-seaside.d.ts: -------------------------------------------------------------------------------- 1 | export { atelierSeaside as default } from './'; 2 | -------------------------------------------------------------------------------- /src/routes/utils/highlight/styles/atelier-sulphurpool-light.d.ts: -------------------------------------------------------------------------------- 1 | export { atelierSulphurpoolLight as default } from './'; 2 | -------------------------------------------------------------------------------- /src/routes/utils/highlight/styles/atelier-sulphurpool.d.ts: -------------------------------------------------------------------------------- 1 | export { atelierSulphurpool as default } from './'; 2 | -------------------------------------------------------------------------------- /src/routes/utils/highlight/styles/atlas.d.ts: -------------------------------------------------------------------------------- 1 | export { atlas as default } from './'; 2 | -------------------------------------------------------------------------------- /src/routes/utils/highlight/styles/atom-one-dark-reasonable.d.ts: -------------------------------------------------------------------------------- 1 | export { atomOneDarkReasonable as default } from './'; 2 | -------------------------------------------------------------------------------- /src/routes/utils/highlight/styles/atom-one-dark.d.ts: -------------------------------------------------------------------------------- 1 | export { atomOneDark as default } from './'; 2 | -------------------------------------------------------------------------------- /src/routes/utils/highlight/styles/atom-one-light.d.ts: -------------------------------------------------------------------------------- 1 | export { atomOneLight as default } from './'; 2 | -------------------------------------------------------------------------------- /src/routes/utils/highlight/styles/base16-github.d.ts: -------------------------------------------------------------------------------- 1 | export { base16Github as default } from './'; 2 | -------------------------------------------------------------------------------- /src/routes/utils/highlight/styles/base16-ir-black.d.ts: -------------------------------------------------------------------------------- 1 | export { base16IrBlack as default } from './'; 2 | -------------------------------------------------------------------------------- /src/routes/utils/highlight/styles/base16-monokai.d.ts: -------------------------------------------------------------------------------- 1 | export { base16Monokai as default } from './'; 2 | -------------------------------------------------------------------------------- /src/routes/utils/highlight/styles/base16-nord.d.ts: -------------------------------------------------------------------------------- 1 | export { base16Nord as default } from './'; 2 | -------------------------------------------------------------------------------- /src/routes/utils/highlight/styles/bespin.d.ts: -------------------------------------------------------------------------------- 1 | export { bespin as default } from './'; 2 | -------------------------------------------------------------------------------- /src/routes/utils/highlight/styles/black-metal-bathory.d.ts: -------------------------------------------------------------------------------- 1 | export { blackMetalBathory as default } from './'; 2 | -------------------------------------------------------------------------------- /src/routes/utils/highlight/styles/black-metal-burzum.d.ts: -------------------------------------------------------------------------------- 1 | export { blackMetalBurzum as default } from './'; 2 | -------------------------------------------------------------------------------- /src/routes/utils/highlight/styles/black-metal-dark-funeral.d.ts: -------------------------------------------------------------------------------- 1 | export { blackMetalDarkFuneral as default } from './'; 2 | -------------------------------------------------------------------------------- /src/routes/utils/highlight/styles/black-metal-gorgoroth.d.ts: -------------------------------------------------------------------------------- 1 | export { blackMetalGorgoroth as default } from './'; 2 | -------------------------------------------------------------------------------- /src/routes/utils/highlight/styles/black-metal-immortal.d.ts: -------------------------------------------------------------------------------- 1 | export { blackMetalImmortal as default } from './'; 2 | -------------------------------------------------------------------------------- /src/routes/utils/highlight/styles/black-metal-khold.d.ts: -------------------------------------------------------------------------------- 1 | export { blackMetalKhold as default } from './'; 2 | -------------------------------------------------------------------------------- /src/routes/utils/highlight/styles/black-metal-marduk.d.ts: -------------------------------------------------------------------------------- 1 | export { blackMetalMarduk as default } from './'; 2 | -------------------------------------------------------------------------------- /src/routes/utils/highlight/styles/black-metal-mayhem.d.ts: -------------------------------------------------------------------------------- 1 | export { blackMetalMayhem as default } from './'; 2 | -------------------------------------------------------------------------------- /src/routes/utils/highlight/styles/black-metal-nile.d.ts: -------------------------------------------------------------------------------- 1 | export { blackMetalNile as default } from './'; 2 | -------------------------------------------------------------------------------- /src/routes/utils/highlight/styles/black-metal-venom.d.ts: -------------------------------------------------------------------------------- 1 | export { blackMetalVenom as default } from './'; 2 | -------------------------------------------------------------------------------- /src/routes/utils/highlight/styles/black-metal.d.ts: -------------------------------------------------------------------------------- 1 | export { blackMetal as default } from './'; 2 | -------------------------------------------------------------------------------- /src/routes/utils/highlight/styles/brewer.d.ts: -------------------------------------------------------------------------------- 1 | export { brewer as default } from './'; 2 | -------------------------------------------------------------------------------- /src/routes/utils/highlight/styles/bright.d.ts: -------------------------------------------------------------------------------- 1 | export { bright as default } from './'; 2 | -------------------------------------------------------------------------------- /src/routes/utils/highlight/styles/brogrammer.d.ts: -------------------------------------------------------------------------------- 1 | export { brogrammer as default } from './'; 2 | -------------------------------------------------------------------------------- /src/routes/utils/highlight/styles/brown-paper.d.ts: -------------------------------------------------------------------------------- 1 | export { brownPaper as default } from './'; 2 | -------------------------------------------------------------------------------- /src/routes/utils/highlight/styles/brown-papersq.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/themesberg/flowbite-svelte-admin-dashboard/ac207bff6ac8bd3cb8440163d6f742e0111d18e4/src/routes/utils/highlight/styles/brown-papersq.png -------------------------------------------------------------------------------- /src/routes/utils/highlight/styles/brush-trees-dark.d.ts: -------------------------------------------------------------------------------- 1 | export { brushTreesDark as default } from './'; 2 | -------------------------------------------------------------------------------- /src/routes/utils/highlight/styles/brush-trees.d.ts: -------------------------------------------------------------------------------- 1 | export { brushTrees as default } from './'; 2 | -------------------------------------------------------------------------------- /src/routes/utils/highlight/styles/chalk.d.ts: -------------------------------------------------------------------------------- 1 | export { chalk as default } from './'; 2 | -------------------------------------------------------------------------------- /src/routes/utils/highlight/styles/circus.d.ts: -------------------------------------------------------------------------------- 1 | export { circus as default } from './'; 2 | -------------------------------------------------------------------------------- /src/routes/utils/highlight/styles/classic-dark.d.ts: -------------------------------------------------------------------------------- 1 | export { classicDark as default } from './'; 2 | -------------------------------------------------------------------------------- /src/routes/utils/highlight/styles/classic-light.d.ts: -------------------------------------------------------------------------------- 1 | export { classicLight as default } from './'; 2 | -------------------------------------------------------------------------------- /src/routes/utils/highlight/styles/codepen-embed.d.ts: -------------------------------------------------------------------------------- 1 | export { codepenEmbed as default } from './'; 2 | -------------------------------------------------------------------------------- /src/routes/utils/highlight/styles/codeschool.d.ts: -------------------------------------------------------------------------------- 1 | export { codeschool as default } from './'; 2 | -------------------------------------------------------------------------------- /src/routes/utils/highlight/styles/color-brewer.d.ts: -------------------------------------------------------------------------------- 1 | export { colorBrewer as default } from './'; 2 | -------------------------------------------------------------------------------- /src/routes/utils/highlight/styles/colors.d.ts: -------------------------------------------------------------------------------- 1 | export { colors as default } from './'; 2 | -------------------------------------------------------------------------------- /src/routes/utils/highlight/styles/cupcake.d.ts: -------------------------------------------------------------------------------- 1 | export { cupcake as default } from './'; 2 | -------------------------------------------------------------------------------- /src/routes/utils/highlight/styles/cupertino.d.ts: -------------------------------------------------------------------------------- 1 | export { cupertino as default } from './'; 2 | -------------------------------------------------------------------------------- /src/routes/utils/highlight/styles/danqing.d.ts: -------------------------------------------------------------------------------- 1 | export { danqing as default } from './'; 2 | -------------------------------------------------------------------------------- /src/routes/utils/highlight/styles/darcula.d.ts: -------------------------------------------------------------------------------- 1 | export { darcula as default } from './'; 2 | -------------------------------------------------------------------------------- /src/routes/utils/highlight/styles/dark-violet.d.ts: -------------------------------------------------------------------------------- 1 | export { darkViolet as default } from './'; 2 | -------------------------------------------------------------------------------- /src/routes/utils/highlight/styles/dark.d.ts: -------------------------------------------------------------------------------- 1 | export { dark as default } from './'; 2 | -------------------------------------------------------------------------------- /src/routes/utils/highlight/styles/darkmoss.d.ts: -------------------------------------------------------------------------------- 1 | export { darkmoss as default } from './'; 2 | -------------------------------------------------------------------------------- /src/routes/utils/highlight/styles/darktooth.d.ts: -------------------------------------------------------------------------------- 1 | export { darktooth as default } from './'; 2 | -------------------------------------------------------------------------------- /src/routes/utils/highlight/styles/decaf.d.ts: -------------------------------------------------------------------------------- 1 | export { decaf as default } from './'; 2 | -------------------------------------------------------------------------------- /src/routes/utils/highlight/styles/default-dark.d.ts: -------------------------------------------------------------------------------- 1 | export { defaultDark as default } from './'; 2 | -------------------------------------------------------------------------------- /src/routes/utils/highlight/styles/default-light.d.ts: -------------------------------------------------------------------------------- 1 | export { defaultLight as default } from './'; 2 | -------------------------------------------------------------------------------- /src/routes/utils/highlight/styles/default.d.ts: -------------------------------------------------------------------------------- 1 | export { _default as default } from './'; 2 | -------------------------------------------------------------------------------- /src/routes/utils/highlight/styles/devibeans.d.ts: -------------------------------------------------------------------------------- 1 | export { devibeans as default } from './'; 2 | -------------------------------------------------------------------------------- /src/routes/utils/highlight/styles/dirtysea.d.ts: -------------------------------------------------------------------------------- 1 | export { dirtysea as default } from './'; 2 | -------------------------------------------------------------------------------- /src/routes/utils/highlight/styles/docco.d.ts: -------------------------------------------------------------------------------- 1 | export { docco as default } from './'; 2 | -------------------------------------------------------------------------------- /src/routes/utils/highlight/styles/dracula.d.ts: -------------------------------------------------------------------------------- 1 | export { dracula as default } from './'; 2 | -------------------------------------------------------------------------------- /src/routes/utils/highlight/styles/edge-dark.d.ts: -------------------------------------------------------------------------------- 1 | export { edgeDark as default } from './'; 2 | -------------------------------------------------------------------------------- /src/routes/utils/highlight/styles/edge-light.d.ts: -------------------------------------------------------------------------------- 1 | export { edgeLight as default } from './'; 2 | -------------------------------------------------------------------------------- /src/routes/utils/highlight/styles/eighties.d.ts: -------------------------------------------------------------------------------- 1 | export { eighties as default } from './'; 2 | -------------------------------------------------------------------------------- /src/routes/utils/highlight/styles/embers.d.ts: -------------------------------------------------------------------------------- 1 | export { embers as default } from './'; 2 | -------------------------------------------------------------------------------- /src/routes/utils/highlight/styles/equilibrium-dark.d.ts: -------------------------------------------------------------------------------- 1 | export { equilibriumDark as default } from './'; 2 | -------------------------------------------------------------------------------- /src/routes/utils/highlight/styles/equilibrium-gray-dark.d.ts: -------------------------------------------------------------------------------- 1 | export { equilibriumGrayDark as default } from './'; 2 | -------------------------------------------------------------------------------- /src/routes/utils/highlight/styles/equilibrium-gray-light.d.ts: -------------------------------------------------------------------------------- 1 | export { equilibriumGrayLight as default } from './'; 2 | -------------------------------------------------------------------------------- /src/routes/utils/highlight/styles/equilibrium-light.d.ts: -------------------------------------------------------------------------------- 1 | export { equilibriumLight as default } from './'; 2 | -------------------------------------------------------------------------------- /src/routes/utils/highlight/styles/espresso.d.ts: -------------------------------------------------------------------------------- 1 | export { espresso as default } from './'; 2 | -------------------------------------------------------------------------------- /src/routes/utils/highlight/styles/eva-dim.d.ts: -------------------------------------------------------------------------------- 1 | export { evaDim as default } from './'; 2 | -------------------------------------------------------------------------------- /src/routes/utils/highlight/styles/eva.d.ts: -------------------------------------------------------------------------------- 1 | export { eva as default } from './'; 2 | -------------------------------------------------------------------------------- /src/routes/utils/highlight/styles/far.d.ts: -------------------------------------------------------------------------------- 1 | export { far as default } from './'; 2 | -------------------------------------------------------------------------------- /src/routes/utils/highlight/styles/felipec.d.ts: -------------------------------------------------------------------------------- 1 | export { felipec as default } from './'; 2 | -------------------------------------------------------------------------------- /src/routes/utils/highlight/styles/flat.d.ts: -------------------------------------------------------------------------------- 1 | export { flat as default } from './'; 2 | -------------------------------------------------------------------------------- /src/routes/utils/highlight/styles/foundation.d.ts: -------------------------------------------------------------------------------- 1 | export { foundation as default } from './'; 2 | -------------------------------------------------------------------------------- /src/routes/utils/highlight/styles/framer.d.ts: -------------------------------------------------------------------------------- 1 | export { framer as default } from './'; 2 | -------------------------------------------------------------------------------- /src/routes/utils/highlight/styles/fruit-soda.d.ts: -------------------------------------------------------------------------------- 1 | export { fruitSoda as default } from './'; 2 | -------------------------------------------------------------------------------- /src/routes/utils/highlight/styles/gigavolt.d.ts: -------------------------------------------------------------------------------- 1 | export { gigavolt as default } from './'; 2 | -------------------------------------------------------------------------------- /src/routes/utils/highlight/styles/github-dark-dimmed.d.ts: -------------------------------------------------------------------------------- 1 | export { githubDarkDimmed as default } from './'; 2 | -------------------------------------------------------------------------------- /src/routes/utils/highlight/styles/github-dark.d.ts: -------------------------------------------------------------------------------- 1 | export { githubDark as default } from './'; 2 | -------------------------------------------------------------------------------- /src/routes/utils/highlight/styles/github.d.ts: -------------------------------------------------------------------------------- 1 | export { github as default } from './'; 2 | -------------------------------------------------------------------------------- /src/routes/utils/highlight/styles/gml.d.ts: -------------------------------------------------------------------------------- 1 | export { gml as default } from './'; 2 | -------------------------------------------------------------------------------- /src/routes/utils/highlight/styles/google-dark.d.ts: -------------------------------------------------------------------------------- 1 | export { googleDark as default } from './'; 2 | -------------------------------------------------------------------------------- /src/routes/utils/highlight/styles/google-light.d.ts: -------------------------------------------------------------------------------- 1 | export { googleLight as default } from './'; 2 | -------------------------------------------------------------------------------- /src/routes/utils/highlight/styles/googlecode.d.ts: -------------------------------------------------------------------------------- 1 | export { googlecode as default } from './'; 2 | -------------------------------------------------------------------------------- /src/routes/utils/highlight/styles/gradient-dark.d.ts: -------------------------------------------------------------------------------- 1 | export { gradientDark as default } from './'; 2 | -------------------------------------------------------------------------------- /src/routes/utils/highlight/styles/gradient-light.d.ts: -------------------------------------------------------------------------------- 1 | export { gradientLight as default } from './'; 2 | -------------------------------------------------------------------------------- /src/routes/utils/highlight/styles/grayscale-dark.d.ts: -------------------------------------------------------------------------------- 1 | export { grayscaleDark as default } from './'; 2 | -------------------------------------------------------------------------------- /src/routes/utils/highlight/styles/grayscale-light.d.ts: -------------------------------------------------------------------------------- 1 | export { grayscaleLight as default } from './'; 2 | -------------------------------------------------------------------------------- /src/routes/utils/highlight/styles/grayscale.d.ts: -------------------------------------------------------------------------------- 1 | export { grayscale as default } from './'; 2 | -------------------------------------------------------------------------------- /src/routes/utils/highlight/styles/green-screen.d.ts: -------------------------------------------------------------------------------- 1 | export { greenScreen as default } from './'; 2 | -------------------------------------------------------------------------------- /src/routes/utils/highlight/styles/gruvbox-dark-hard.d.ts: -------------------------------------------------------------------------------- 1 | export { gruvboxDarkHard as default } from './'; 2 | -------------------------------------------------------------------------------- /src/routes/utils/highlight/styles/gruvbox-dark-medium.d.ts: -------------------------------------------------------------------------------- 1 | export { gruvboxDarkMedium as default } from './'; 2 | -------------------------------------------------------------------------------- /src/routes/utils/highlight/styles/gruvbox-dark-pale.d.ts: -------------------------------------------------------------------------------- 1 | export { gruvboxDarkPale as default } from './'; 2 | -------------------------------------------------------------------------------- /src/routes/utils/highlight/styles/gruvbox-dark-soft.d.ts: -------------------------------------------------------------------------------- 1 | export { gruvboxDarkSoft as default } from './'; 2 | -------------------------------------------------------------------------------- /src/routes/utils/highlight/styles/gruvbox-light-hard.d.ts: -------------------------------------------------------------------------------- 1 | export { gruvboxLightHard as default } from './'; 2 | -------------------------------------------------------------------------------- /src/routes/utils/highlight/styles/gruvbox-light-medium.d.ts: -------------------------------------------------------------------------------- 1 | export { gruvboxLightMedium as default } from './'; 2 | -------------------------------------------------------------------------------- /src/routes/utils/highlight/styles/gruvbox-light-soft.d.ts: -------------------------------------------------------------------------------- 1 | export { gruvboxLightSoft as default } from './'; 2 | -------------------------------------------------------------------------------- /src/routes/utils/highlight/styles/hardcore.d.ts: -------------------------------------------------------------------------------- 1 | export { hardcore as default } from './'; 2 | -------------------------------------------------------------------------------- /src/routes/utils/highlight/styles/harmonic16-dark.d.ts: -------------------------------------------------------------------------------- 1 | export { harmonic16Dark as default } from './'; 2 | -------------------------------------------------------------------------------- /src/routes/utils/highlight/styles/harmonic16-light.d.ts: -------------------------------------------------------------------------------- 1 | export { harmonic16Light as default } from './'; 2 | -------------------------------------------------------------------------------- /src/routes/utils/highlight/styles/heetch-dark.d.ts: -------------------------------------------------------------------------------- 1 | export { heetchDark as default } from './'; 2 | -------------------------------------------------------------------------------- /src/routes/utils/highlight/styles/heetch-light.d.ts: -------------------------------------------------------------------------------- 1 | export { heetchLight as default } from './'; 2 | -------------------------------------------------------------------------------- /src/routes/utils/highlight/styles/helios.d.ts: -------------------------------------------------------------------------------- 1 | export { helios as default } from './'; 2 | -------------------------------------------------------------------------------- /src/routes/utils/highlight/styles/hopscotch.d.ts: -------------------------------------------------------------------------------- 1 | export { hopscotch as default } from './'; 2 | -------------------------------------------------------------------------------- /src/routes/utils/highlight/styles/horizon-dark.d.ts: -------------------------------------------------------------------------------- 1 | export { horizonDark as default } from './'; 2 | -------------------------------------------------------------------------------- /src/routes/utils/highlight/styles/horizon-light.d.ts: -------------------------------------------------------------------------------- 1 | export { horizonLight as default } from './'; 2 | -------------------------------------------------------------------------------- /src/routes/utils/highlight/styles/humanoid-dark.d.ts: -------------------------------------------------------------------------------- 1 | export { humanoidDark as default } from './'; 2 | -------------------------------------------------------------------------------- /src/routes/utils/highlight/styles/humanoid-light.d.ts: -------------------------------------------------------------------------------- 1 | export { humanoidLight as default } from './'; 2 | -------------------------------------------------------------------------------- /src/routes/utils/highlight/styles/hybrid.d.ts: -------------------------------------------------------------------------------- 1 | export { hybrid as default } from './'; 2 | -------------------------------------------------------------------------------- /src/routes/utils/highlight/styles/ia-dark.d.ts: -------------------------------------------------------------------------------- 1 | export { iaDark as default } from './'; 2 | -------------------------------------------------------------------------------- /src/routes/utils/highlight/styles/ia-light.d.ts: -------------------------------------------------------------------------------- 1 | export { iaLight as default } from './'; 2 | -------------------------------------------------------------------------------- /src/routes/utils/highlight/styles/icy-dark.d.ts: -------------------------------------------------------------------------------- 1 | export { icyDark as default } from './'; 2 | -------------------------------------------------------------------------------- /src/routes/utils/highlight/styles/idea.d.ts: -------------------------------------------------------------------------------- 1 | export { idea as default } from './'; 2 | -------------------------------------------------------------------------------- /src/routes/utils/highlight/styles/intellij-light.d.ts: -------------------------------------------------------------------------------- 1 | export { intellijLight as default } from './'; 2 | -------------------------------------------------------------------------------- /src/routes/utils/highlight/styles/ir-black.d.ts: -------------------------------------------------------------------------------- 1 | export { irBlack as default } from './'; 2 | -------------------------------------------------------------------------------- /src/routes/utils/highlight/styles/isbl-editor-dark.d.ts: -------------------------------------------------------------------------------- 1 | export { isblEditorDark as default } from './'; 2 | -------------------------------------------------------------------------------- /src/routes/utils/highlight/styles/isbl-editor-light.d.ts: -------------------------------------------------------------------------------- 1 | export { isblEditorLight as default } from './'; 2 | -------------------------------------------------------------------------------- /src/routes/utils/highlight/styles/isotope.d.ts: -------------------------------------------------------------------------------- 1 | export { isotope as default } from './'; 2 | -------------------------------------------------------------------------------- /src/routes/utils/highlight/styles/kimber.d.ts: -------------------------------------------------------------------------------- 1 | export { kimber as default } from './'; 2 | -------------------------------------------------------------------------------- /src/routes/utils/highlight/styles/kimbie-dark.d.ts: -------------------------------------------------------------------------------- 1 | export { kimbieDark as default } from './'; 2 | -------------------------------------------------------------------------------- /src/routes/utils/highlight/styles/kimbie-light.d.ts: -------------------------------------------------------------------------------- 1 | export { kimbieLight as default } from './'; 2 | -------------------------------------------------------------------------------- /src/routes/utils/highlight/styles/lightfair.d.ts: -------------------------------------------------------------------------------- 1 | export { lightfair as default } from './'; 2 | -------------------------------------------------------------------------------- /src/routes/utils/highlight/styles/lioshi.d.ts: -------------------------------------------------------------------------------- 1 | export { lioshi as default } from './'; 2 | -------------------------------------------------------------------------------- /src/routes/utils/highlight/styles/london-tube.d.ts: -------------------------------------------------------------------------------- 1 | export { londonTube as default } from './'; 2 | -------------------------------------------------------------------------------- /src/routes/utils/highlight/styles/macintosh.d.ts: -------------------------------------------------------------------------------- 1 | export { macintosh as default } from './'; 2 | -------------------------------------------------------------------------------- /src/routes/utils/highlight/styles/magula.d.ts: -------------------------------------------------------------------------------- 1 | export { magula as default } from './'; 2 | -------------------------------------------------------------------------------- /src/routes/utils/highlight/styles/marrakesh.d.ts: -------------------------------------------------------------------------------- 1 | export { marrakesh as default } from './'; 2 | -------------------------------------------------------------------------------- /src/routes/utils/highlight/styles/materia.d.ts: -------------------------------------------------------------------------------- 1 | export { materia as default } from './'; 2 | -------------------------------------------------------------------------------- /src/routes/utils/highlight/styles/material-darker.d.ts: -------------------------------------------------------------------------------- 1 | export { materialDarker as default } from './'; 2 | -------------------------------------------------------------------------------- /src/routes/utils/highlight/styles/material-lighter.d.ts: -------------------------------------------------------------------------------- 1 | export { materialLighter as default } from './'; 2 | -------------------------------------------------------------------------------- /src/routes/utils/highlight/styles/material-palenight.d.ts: -------------------------------------------------------------------------------- 1 | export { materialPalenight as default } from './'; 2 | -------------------------------------------------------------------------------- /src/routes/utils/highlight/styles/material-vivid.d.ts: -------------------------------------------------------------------------------- 1 | export { materialVivid as default } from './'; 2 | -------------------------------------------------------------------------------- /src/routes/utils/highlight/styles/material.d.ts: -------------------------------------------------------------------------------- 1 | export { material as default } from './'; 2 | -------------------------------------------------------------------------------- /src/routes/utils/highlight/styles/mellow-purple.d.ts: -------------------------------------------------------------------------------- 1 | export { mellowPurple as default } from './'; 2 | -------------------------------------------------------------------------------- /src/routes/utils/highlight/styles/mexico-light.d.ts: -------------------------------------------------------------------------------- 1 | export { mexicoLight as default } from './'; 2 | -------------------------------------------------------------------------------- /src/routes/utils/highlight/styles/mocha.d.ts: -------------------------------------------------------------------------------- 1 | export { mocha as default } from './'; 2 | -------------------------------------------------------------------------------- /src/routes/utils/highlight/styles/mono-blue.d.ts: -------------------------------------------------------------------------------- 1 | export { monoBlue as default } from './'; 2 | -------------------------------------------------------------------------------- /src/routes/utils/highlight/styles/monokai-sublime.d.ts: -------------------------------------------------------------------------------- 1 | export { monokaiSublime as default } from './'; 2 | -------------------------------------------------------------------------------- /src/routes/utils/highlight/styles/monokai.d.ts: -------------------------------------------------------------------------------- 1 | export { monokai as default } from './'; 2 | -------------------------------------------------------------------------------- /src/routes/utils/highlight/styles/nebula.d.ts: -------------------------------------------------------------------------------- 1 | export { nebula as default } from './'; 2 | -------------------------------------------------------------------------------- /src/routes/utils/highlight/styles/night-owl.d.ts: -------------------------------------------------------------------------------- 1 | export { nightOwl as default } from './'; 2 | -------------------------------------------------------------------------------- /src/routes/utils/highlight/styles/nnfx-dark.d.ts: -------------------------------------------------------------------------------- 1 | export { nnfxDark as default } from './'; 2 | -------------------------------------------------------------------------------- /src/routes/utils/highlight/styles/nnfx-light.d.ts: -------------------------------------------------------------------------------- 1 | export { nnfxLight as default } from './'; 2 | -------------------------------------------------------------------------------- /src/routes/utils/highlight/styles/nord.d.ts: -------------------------------------------------------------------------------- 1 | export { nord as default } from './'; 2 | -------------------------------------------------------------------------------- /src/routes/utils/highlight/styles/nova.d.ts: -------------------------------------------------------------------------------- 1 | export { nova as default } from './'; 2 | -------------------------------------------------------------------------------- /src/routes/utils/highlight/styles/obsidian.d.ts: -------------------------------------------------------------------------------- 1 | export { obsidian as default } from './'; 2 | -------------------------------------------------------------------------------- /src/routes/utils/highlight/styles/ocean.d.ts: -------------------------------------------------------------------------------- 1 | export { ocean as default } from './'; 2 | -------------------------------------------------------------------------------- /src/routes/utils/highlight/styles/oceanicnext.d.ts: -------------------------------------------------------------------------------- 1 | export { oceanicnext as default } from './'; 2 | -------------------------------------------------------------------------------- /src/routes/utils/highlight/styles/one-light.d.ts: -------------------------------------------------------------------------------- 1 | export { oneLight as default } from './'; 2 | -------------------------------------------------------------------------------- /src/routes/utils/highlight/styles/onedark.d.ts: -------------------------------------------------------------------------------- 1 | export { onedark as default } from './'; 2 | -------------------------------------------------------------------------------- /src/routes/utils/highlight/styles/outrun-dark.d.ts: -------------------------------------------------------------------------------- 1 | export { outrunDark as default } from './'; 2 | -------------------------------------------------------------------------------- /src/routes/utils/highlight/styles/panda-syntax-dark.d.ts: -------------------------------------------------------------------------------- 1 | export { pandaSyntaxDark as default } from './'; 2 | -------------------------------------------------------------------------------- /src/routes/utils/highlight/styles/panda-syntax-light.d.ts: -------------------------------------------------------------------------------- 1 | export { pandaSyntaxLight as default } from './'; 2 | -------------------------------------------------------------------------------- /src/routes/utils/highlight/styles/papercolor-dark.d.ts: -------------------------------------------------------------------------------- 1 | export { papercolorDark as default } from './'; 2 | -------------------------------------------------------------------------------- /src/routes/utils/highlight/styles/papercolor-light.d.ts: -------------------------------------------------------------------------------- 1 | export { papercolorLight as default } from './'; 2 | -------------------------------------------------------------------------------- /src/routes/utils/highlight/styles/paraiso-dark.d.ts: -------------------------------------------------------------------------------- 1 | export { paraisoDark as default } from './'; 2 | -------------------------------------------------------------------------------- /src/routes/utils/highlight/styles/paraiso-light.d.ts: -------------------------------------------------------------------------------- 1 | export { paraisoLight as default } from './'; 2 | -------------------------------------------------------------------------------- /src/routes/utils/highlight/styles/paraiso.d.ts: -------------------------------------------------------------------------------- 1 | export { paraiso as default } from './'; 2 | -------------------------------------------------------------------------------- /src/routes/utils/highlight/styles/pasque.d.ts: -------------------------------------------------------------------------------- 1 | export { pasque as default } from './'; 2 | -------------------------------------------------------------------------------- /src/routes/utils/highlight/styles/phd.d.ts: -------------------------------------------------------------------------------- 1 | export { phd as default } from './'; 2 | -------------------------------------------------------------------------------- /src/routes/utils/highlight/styles/pico.d.ts: -------------------------------------------------------------------------------- 1 | export { pico as default } from './'; 2 | -------------------------------------------------------------------------------- /src/routes/utils/highlight/styles/pojoaque.d.ts: -------------------------------------------------------------------------------- 1 | export { pojoaque as default } from './'; 2 | -------------------------------------------------------------------------------- /src/routes/utils/highlight/styles/pojoaque.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/themesberg/flowbite-svelte-admin-dashboard/ac207bff6ac8bd3cb8440163d6f742e0111d18e4/src/routes/utils/highlight/styles/pojoaque.jpg -------------------------------------------------------------------------------- /src/routes/utils/highlight/styles/pop.d.ts: -------------------------------------------------------------------------------- 1 | export { pop as default } from './'; 2 | -------------------------------------------------------------------------------- /src/routes/utils/highlight/styles/porple.d.ts: -------------------------------------------------------------------------------- 1 | export { porple as default } from './'; 2 | -------------------------------------------------------------------------------- /src/routes/utils/highlight/styles/purebasic.d.ts: -------------------------------------------------------------------------------- 1 | export { purebasic as default } from './'; 2 | -------------------------------------------------------------------------------- /src/routes/utils/highlight/styles/qtcreator-dark.d.ts: -------------------------------------------------------------------------------- 1 | export { qtcreatorDark as default } from './'; 2 | -------------------------------------------------------------------------------- /src/routes/utils/highlight/styles/qtcreator-light.d.ts: -------------------------------------------------------------------------------- 1 | export { qtcreatorLight as default } from './'; 2 | -------------------------------------------------------------------------------- /src/routes/utils/highlight/styles/qualia.d.ts: -------------------------------------------------------------------------------- 1 | export { qualia as default } from './'; 2 | -------------------------------------------------------------------------------- /src/routes/utils/highlight/styles/railscasts.d.ts: -------------------------------------------------------------------------------- 1 | export { railscasts as default } from './'; 2 | -------------------------------------------------------------------------------- /src/routes/utils/highlight/styles/rainbow.d.ts: -------------------------------------------------------------------------------- 1 | export { rainbow as default } from './'; 2 | -------------------------------------------------------------------------------- /src/routes/utils/highlight/styles/rebecca.d.ts: -------------------------------------------------------------------------------- 1 | export { rebecca as default } from './'; 2 | -------------------------------------------------------------------------------- /src/routes/utils/highlight/styles/ros-pine-dawn.d.ts: -------------------------------------------------------------------------------- 1 | export { rosPineDawn as default } from './'; 2 | -------------------------------------------------------------------------------- /src/routes/utils/highlight/styles/ros-pine-moon.d.ts: -------------------------------------------------------------------------------- 1 | export { rosPineMoon as default } from './'; 2 | -------------------------------------------------------------------------------- /src/routes/utils/highlight/styles/ros-pine.d.ts: -------------------------------------------------------------------------------- 1 | export { rosPine as default } from './'; 2 | -------------------------------------------------------------------------------- /src/routes/utils/highlight/styles/routeros.d.ts: -------------------------------------------------------------------------------- 1 | export { routeros as default } from './'; 2 | -------------------------------------------------------------------------------- /src/routes/utils/highlight/styles/sagelight.d.ts: -------------------------------------------------------------------------------- 1 | export { sagelight as default } from './'; 2 | -------------------------------------------------------------------------------- /src/routes/utils/highlight/styles/sandcastle.d.ts: -------------------------------------------------------------------------------- 1 | export { sandcastle as default } from './'; 2 | -------------------------------------------------------------------------------- /src/routes/utils/highlight/styles/school-book.d.ts: -------------------------------------------------------------------------------- 1 | export { schoolBook as default } from './'; 2 | -------------------------------------------------------------------------------- /src/routes/utils/highlight/styles/seti-ui.d.ts: -------------------------------------------------------------------------------- 1 | export { setiUi as default } from './'; 2 | -------------------------------------------------------------------------------- /src/routes/utils/highlight/styles/shades-of-purple.d.ts: -------------------------------------------------------------------------------- 1 | export { shadesOfPurple as default } from './'; 2 | -------------------------------------------------------------------------------- /src/routes/utils/highlight/styles/shapeshifter.d.ts: -------------------------------------------------------------------------------- 1 | export { shapeshifter as default } from './'; 2 | -------------------------------------------------------------------------------- /src/routes/utils/highlight/styles/silk-dark.d.ts: -------------------------------------------------------------------------------- 1 | export { silkDark as default } from './'; 2 | -------------------------------------------------------------------------------- /src/routes/utils/highlight/styles/silk-light.d.ts: -------------------------------------------------------------------------------- 1 | export { silkLight as default } from './'; 2 | -------------------------------------------------------------------------------- /src/routes/utils/highlight/styles/snazzy.d.ts: -------------------------------------------------------------------------------- 1 | export { snazzy as default } from './'; 2 | -------------------------------------------------------------------------------- /src/routes/utils/highlight/styles/solar-flare-light.d.ts: -------------------------------------------------------------------------------- 1 | export { solarFlareLight as default } from './'; 2 | -------------------------------------------------------------------------------- /src/routes/utils/highlight/styles/solar-flare.d.ts: -------------------------------------------------------------------------------- 1 | export { solarFlare as default } from './'; 2 | -------------------------------------------------------------------------------- /src/routes/utils/highlight/styles/solarized-dark.d.ts: -------------------------------------------------------------------------------- 1 | export { solarizedDark as default } from './'; 2 | -------------------------------------------------------------------------------- /src/routes/utils/highlight/styles/solarized-light.d.ts: -------------------------------------------------------------------------------- 1 | export { solarizedLight as default } from './'; 2 | -------------------------------------------------------------------------------- /src/routes/utils/highlight/styles/spacemacs.d.ts: -------------------------------------------------------------------------------- 1 | export { spacemacs as default } from './'; 2 | -------------------------------------------------------------------------------- /src/routes/utils/highlight/styles/srcery.d.ts: -------------------------------------------------------------------------------- 1 | export { srcery as default } from './'; 2 | -------------------------------------------------------------------------------- /src/routes/utils/highlight/styles/stackoverflow-dark.d.ts: -------------------------------------------------------------------------------- 1 | export { stackoverflowDark as default } from './'; 2 | -------------------------------------------------------------------------------- /src/routes/utils/highlight/styles/stackoverflow-light.d.ts: -------------------------------------------------------------------------------- 1 | export { stackoverflowLight as default } from './'; 2 | -------------------------------------------------------------------------------- /src/routes/utils/highlight/styles/summercamp.d.ts: -------------------------------------------------------------------------------- 1 | export { summercamp as default } from './'; 2 | -------------------------------------------------------------------------------- /src/routes/utils/highlight/styles/summerfruit-dark.d.ts: -------------------------------------------------------------------------------- 1 | export { summerfruitDark as default } from './'; 2 | -------------------------------------------------------------------------------- /src/routes/utils/highlight/styles/summerfruit-light.d.ts: -------------------------------------------------------------------------------- 1 | export { summerfruitLight as default } from './'; 2 | -------------------------------------------------------------------------------- /src/routes/utils/highlight/styles/sunburst.d.ts: -------------------------------------------------------------------------------- 1 | export { sunburst as default } from './'; 2 | -------------------------------------------------------------------------------- /src/routes/utils/highlight/styles/synth-midnight-terminal-dark.d.ts: -------------------------------------------------------------------------------- 1 | export { synthMidnightTerminalDark as default } from './'; 2 | -------------------------------------------------------------------------------- /src/routes/utils/highlight/styles/synth-midnight-terminal-light.d.ts: -------------------------------------------------------------------------------- 1 | export { synthMidnightTerminalLight as default } from './'; 2 | -------------------------------------------------------------------------------- /src/routes/utils/highlight/styles/tango.d.ts: -------------------------------------------------------------------------------- 1 | export { tango as default } from './'; 2 | -------------------------------------------------------------------------------- /src/routes/utils/highlight/styles/tender.d.ts: -------------------------------------------------------------------------------- 1 | export { tender as default } from './'; 2 | -------------------------------------------------------------------------------- /src/routes/utils/highlight/styles/tokyo-night-dark.d.ts: -------------------------------------------------------------------------------- 1 | export { tokyoNightDark as default } from './'; 2 | -------------------------------------------------------------------------------- /src/routes/utils/highlight/styles/tokyo-night-light.d.ts: -------------------------------------------------------------------------------- 1 | export { tokyoNightLight as default } from './'; 2 | -------------------------------------------------------------------------------- /src/routes/utils/highlight/styles/tomorrow-night-blue.d.ts: -------------------------------------------------------------------------------- 1 | export { tomorrowNightBlue as default } from './'; 2 | -------------------------------------------------------------------------------- /src/routes/utils/highlight/styles/tomorrow-night-bright.d.ts: -------------------------------------------------------------------------------- 1 | export { tomorrowNightBright as default } from './'; 2 | -------------------------------------------------------------------------------- /src/routes/utils/highlight/styles/tomorrow-night.d.ts: -------------------------------------------------------------------------------- 1 | export { tomorrowNight as default } from './'; 2 | -------------------------------------------------------------------------------- /src/routes/utils/highlight/styles/tomorrow.d.ts: -------------------------------------------------------------------------------- 1 | export { tomorrow as default } from './'; 2 | -------------------------------------------------------------------------------- /src/routes/utils/highlight/styles/twilight.d.ts: -------------------------------------------------------------------------------- 1 | export { twilight as default } from './'; 2 | -------------------------------------------------------------------------------- /src/routes/utils/highlight/styles/unikitty-dark.d.ts: -------------------------------------------------------------------------------- 1 | export { unikittyDark as default } from './'; 2 | -------------------------------------------------------------------------------- /src/routes/utils/highlight/styles/unikitty-light.d.ts: -------------------------------------------------------------------------------- 1 | export { unikittyLight as default } from './'; 2 | -------------------------------------------------------------------------------- /src/routes/utils/highlight/styles/vs.d.ts: -------------------------------------------------------------------------------- 1 | export { vs as default } from './'; 2 | -------------------------------------------------------------------------------- /src/routes/utils/highlight/styles/vs2015.d.ts: -------------------------------------------------------------------------------- 1 | export { vs2015 as default } from './'; 2 | -------------------------------------------------------------------------------- /src/routes/utils/highlight/styles/vulcan.d.ts: -------------------------------------------------------------------------------- 1 | export { vulcan as default } from './'; 2 | -------------------------------------------------------------------------------- /src/routes/utils/highlight/styles/windows-10-light.d.ts: -------------------------------------------------------------------------------- 1 | export { windows10Light as default } from './'; 2 | -------------------------------------------------------------------------------- /src/routes/utils/highlight/styles/windows-10.d.ts: -------------------------------------------------------------------------------- 1 | export { windows10 as default } from './'; 2 | -------------------------------------------------------------------------------- /src/routes/utils/highlight/styles/windows-95-light.d.ts: -------------------------------------------------------------------------------- 1 | export { windows95Light as default } from './'; 2 | -------------------------------------------------------------------------------- /src/routes/utils/highlight/styles/windows-95.d.ts: -------------------------------------------------------------------------------- 1 | export { windows95 as default } from './'; 2 | -------------------------------------------------------------------------------- /src/routes/utils/highlight/styles/windows-high-contrast-light.d.ts: -------------------------------------------------------------------------------- 1 | export { windowsHighContrastLight as default } from './'; 2 | -------------------------------------------------------------------------------- /src/routes/utils/highlight/styles/windows-high-contrast.d.ts: -------------------------------------------------------------------------------- 1 | export { windowsHighContrast as default } from './'; 2 | -------------------------------------------------------------------------------- /src/routes/utils/highlight/styles/windows-nt-light.d.ts: -------------------------------------------------------------------------------- 1 | export { windowsNtLight as default } from './'; 2 | -------------------------------------------------------------------------------- /src/routes/utils/highlight/styles/windows-nt.d.ts: -------------------------------------------------------------------------------- 1 | export { windowsNt as default } from './'; 2 | -------------------------------------------------------------------------------- /src/routes/utils/highlight/styles/woodland.d.ts: -------------------------------------------------------------------------------- 1 | export { woodland as default } from './'; 2 | -------------------------------------------------------------------------------- /src/routes/utils/highlight/styles/xcode-dusk.d.ts: -------------------------------------------------------------------------------- 1 | export { xcodeDusk as default } from './'; 2 | -------------------------------------------------------------------------------- /src/routes/utils/highlight/styles/xcode.d.ts: -------------------------------------------------------------------------------- 1 | export { xcode as default } from './'; 2 | -------------------------------------------------------------------------------- /src/routes/utils/highlight/styles/xt256.d.ts: -------------------------------------------------------------------------------- 1 | export { xt256 as default } from './'; 2 | -------------------------------------------------------------------------------- /src/routes/utils/highlight/styles/zenburn.d.ts: -------------------------------------------------------------------------------- 1 | export { zenburn as default } from './'; 2 | -------------------------------------------------------------------------------- /src/routes/utils/variables.js: -------------------------------------------------------------------------------- 1 | export const imgDir = 'https://flowbite-admin-dashboard.vercel.app/images'; 2 | 3 | /** @type {(x:string) => string} */ 4 | export const avatarPath = (src) => imgDir + '/users/' + src; 5 | 6 | /** @type {(x:string, ...y:string[]) => string} */ 7 | export const imagesPath = (src, ...subdirs) => [imgDir, ...subdirs, src].filter(Boolean).join('/'); 8 | -------------------------------------------------------------------------------- /static/favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/themesberg/flowbite-svelte-admin-dashboard/ac207bff6ac8bd3cb8440163d6f742e0111d18e4/static/favicon.png -------------------------------------------------------------------------------- /vitest-setup-client.ts: -------------------------------------------------------------------------------- 1 | import '@testing-library/jest-dom/vitest'; 2 | import { vi } from 'vitest'; 3 | 4 | // required for svelte5 + jsdom as jsdom does not support matchMedia 5 | Object.defineProperty(window, 'matchMedia', { 6 | writable: true, 7 | enumerable: true, 8 | value: vi.fn().mockImplementation((query) => ({ 9 | matches: false, 10 | media: query, 11 | onchange: null, 12 | addEventListener: vi.fn(), 13 | removeEventListener: vi.fn(), 14 | dispatchEvent: vi.fn() 15 | })) 16 | }); 17 | 18 | // add more mocks here if you need them 19 | --------------------------------------------------------------------------------