@prokodo/ui 0.0.52 → 0.0.54
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +81 -81
- package/dist/_virtual/_commonjsHelpers.js +9 -0
- package/dist/_virtual/common.js +7 -0
- package/dist/components/accordion/Accordion.client.js +3 -1
- package/dist/components/accordion/Accordion.view.js +100 -81
- package/dist/components/animated/Animated.server.js +3 -1
- package/dist/components/animatedText/AnimatedText.client.js +1 -7
- package/dist/components/animatedText/AnimatedText.view.js +4 -1
- package/dist/components/avatar/Avatar.view.js +2 -2
- package/dist/components/base-link/BaseLink.view.js +1 -1
- package/dist/components/button/Button.server.js +1 -8
- package/dist/components/calendly/Calendly.client.js +63 -54
- package/dist/components/calendly/Calendly.server.js +3 -1
- package/dist/components/card/Card.client.js +2 -1
- package/dist/components/card/Card.effects.client.js +5 -1
- package/dist/components/card/Card.view.js +19 -2
- package/dist/components/carousel/Carousel.client.js +36 -12
- package/dist/components/chip/Chip.view.js +10 -6
- package/dist/components/datePicker/DatePicker.client.js +53 -37
- package/dist/components/datePicker/DatePicker.view.js +3 -1
- package/dist/components/dialog/Dialog.client.js +22 -14
- package/dist/components/dialog/Dialog.view.js +10 -2
- package/dist/components/drawer/Drawer.client.js +10 -2
- package/dist/components/drawer/Drawer.effects.client.js +7 -2
- package/dist/components/dynamic-list/DynamicList.client.js +8 -7
- package/dist/components/dynamic-list/DynamicList.server.js +10 -4
- package/dist/components/dynamic-list/DynamicList.view.js +1 -1
- package/dist/components/form/Form.client.js +16 -13
- package/dist/components/form/Form.view.js +8 -4
- package/dist/components/form/FormField.client.js +5 -5
- package/dist/components/form/FormField.server.js +3 -23
- package/dist/components/form/FormResponse.js +5 -1
- package/dist/components/grid/Grid.js +7 -2
- package/dist/components/grid/GridRow.js +12 -2
- package/dist/components/headline/Headline.js +3 -1
- package/dist/components/icon/Icon.js +8 -4
- package/dist/components/image-text/ImageText.js +5 -1
- package/dist/components/input/Input.client.js +52 -28
- package/dist/components/input/Input.view.js +92 -68
- package/dist/components/inputOTP/InputOTP.js +107 -90
- package/dist/components/label/Label.js +1 -8
- package/dist/components/link/Link.view.js +3 -1
- package/dist/components/list/List.js +94 -42
- package/dist/components/loading/Loading.client.js +15 -2
- package/dist/components/loading/Loading.server.js +8 -1
- package/dist/components/loading/Loading.view.js +30 -7
- package/dist/components/post-item/PostItem.client.js +17 -0
- package/dist/components/post-item/PostItem.js +7 -136
- package/dist/components/post-item/PostItem.lazy.js +14 -0
- package/dist/components/post-item/PostItem.module.scss.js +3 -1
- package/dist/components/post-item/PostItem.server.js +14 -0
- package/dist/components/post-item/PostItem.view.js +238 -0
- package/dist/components/post-item/PostItemAuthor.js +28 -22
- package/dist/components/post-teaser/PostTeaser.client.js +30 -0
- package/dist/components/post-teaser/PostTeaser.js +9 -169
- package/dist/components/post-teaser/PostTeaser.lazy.js +13 -0
- package/dist/components/post-teaser/PostTeaser.module.scss.js +3 -0
- package/dist/components/post-teaser/PostTeaser.server.js +22 -0
- package/dist/components/post-teaser/PostTeaser.view.js +252 -0
- package/dist/components/post-widget/PostWidget.client.js +9 -0
- package/dist/components/post-widget/PostWidget.js +11 -156
- package/dist/components/post-widget/PostWidget.lazy.js +13 -0
- package/dist/components/post-widget/PostWidget.module.scss.js +1 -0
- package/dist/components/post-widget/PostWidget.server.js +11 -0
- package/dist/components/post-widget/PostWidget.view.js +263 -0
- package/dist/components/post-widget-carousel/PostWidgetCarousel.client.js +9 -0
- package/dist/components/post-widget-carousel/PostWidgetCarousel.js +9 -160
- package/dist/components/post-widget-carousel/PostWidgetCarousel.lazy.js +13 -0
- package/dist/components/post-widget-carousel/PostWidgetCarousel.module.scss.js +3 -0
- package/dist/components/post-widget-carousel/PostWidgetCarousel.server.js +11 -0
- package/dist/components/post-widget-carousel/PostWidgetCarousel.view.js +244 -0
- package/dist/components/rich-text/RichText.client.js +182 -12
- package/dist/components/rich-text/RichText.module.scss.js +1 -1
- package/dist/components/select/Select.view.js +132 -116
- package/dist/components/sidenav/SideNav.client.js +19 -18
- package/dist/components/sidenav/SideNav.server.js +8 -1
- package/dist/components/sidenav/SideNav.view.js +21 -3
- package/dist/components/skeleton/Skeleton.effects.client.js +3 -1
- package/dist/components/slider/Slider.client.js +56 -38
- package/dist/components/slider/Slider.view.js +1 -7
- package/dist/components/snackbar/SnackbarProvider.client.js +21 -22
- package/dist/components/stepper/Stepper.client.js +1 -8
- package/dist/components/switch/Switch.client.js +1 -6
- package/dist/components/switch/Switch.server.js +1 -3
- package/dist/components/table/Table.js +3 -1
- package/dist/components/table/TableCell.js +13 -1
- package/dist/components/teaser/Teaser.js +1 -5
- package/dist/constants/project.js +1 -1
- package/dist/helpers/createIsland.js +3 -1
- package/dist/helpers/createLazyWrapper.js +3 -1
- package/dist/helpers/date.js +21 -0
- package/dist/node_modules/.pnpm/highlight.js@11.11.1/node_modules/highlight.js/es/common.js +5 -0
- package/dist/node_modules/.pnpm/highlight.js@11.11.1/node_modules/highlight.js/lib/common.js +90 -0
- package/dist/node_modules/.pnpm/highlight.js@11.11.1/node_modules/highlight.js/lib/core.js +1629 -0
- package/dist/node_modules/.pnpm/highlight.js@11.11.1/node_modules/highlight.js/lib/languages/bash.js +407 -0
- package/dist/node_modules/.pnpm/highlight.js@11.11.1/node_modules/highlight.js/lib/languages/c.js +307 -0
- package/dist/node_modules/.pnpm/highlight.js@11.11.1/node_modules/highlight.js/lib/languages/cpp.js +556 -0
- package/dist/node_modules/.pnpm/highlight.js@11.11.1/node_modules/highlight.js/lib/languages/csharp.js +413 -0
- package/dist/node_modules/.pnpm/highlight.js@11.11.1/node_modules/highlight.js/lib/languages/css.js +950 -0
- package/dist/node_modules/.pnpm/highlight.js@11.11.1/node_modules/highlight.js/lib/languages/diff.js +66 -0
- package/dist/node_modules/.pnpm/highlight.js@11.11.1/node_modules/highlight.js/lib/languages/go.js +167 -0
- package/dist/node_modules/.pnpm/highlight.js@11.11.1/node_modules/highlight.js/lib/languages/graphql.js +83 -0
- package/dist/node_modules/.pnpm/highlight.js@11.11.1/node_modules/highlight.js/lib/languages/ini.js +129 -0
- package/dist/node_modules/.pnpm/highlight.js@11.11.1/node_modules/highlight.js/lib/languages/java.js +268 -0
- package/dist/node_modules/.pnpm/highlight.js@11.11.1/node_modules/highlight.js/lib/languages/javascript.js +715 -0
- package/dist/node_modules/.pnpm/highlight.js@11.11.1/node_modules/highlight.js/lib/languages/json.js +53 -0
- package/dist/node_modules/.pnpm/highlight.js@11.11.1/node_modules/highlight.js/lib/languages/kotlin.js +268 -0
- package/dist/node_modules/.pnpm/highlight.js@11.11.1/node_modules/highlight.js/lib/languages/less.js +1031 -0
- package/dist/node_modules/.pnpm/highlight.js@11.11.1/node_modules/highlight.js/lib/languages/lua.js +74 -0
- package/dist/node_modules/.pnpm/highlight.js@11.11.1/node_modules/highlight.js/lib/languages/makefile.js +84 -0
- package/dist/node_modules/.pnpm/highlight.js@11.11.1/node_modules/highlight.js/lib/languages/markdown.js +245 -0
- package/dist/node_modules/.pnpm/highlight.js@11.11.1/node_modules/highlight.js/lib/languages/objectivec.js +256 -0
- package/dist/node_modules/.pnpm/highlight.js@11.11.1/node_modules/highlight.js/lib/languages/perl.js +498 -0
- package/dist/node_modules/.pnpm/highlight.js@11.11.1/node_modules/highlight.js/lib/languages/php-template.js +59 -0
- package/dist/node_modules/.pnpm/highlight.js@11.11.1/node_modules/highlight.js/lib/languages/php.js +614 -0
- package/dist/node_modules/.pnpm/highlight.js@11.11.1/node_modules/highlight.js/lib/languages/plaintext.js +25 -0
- package/dist/node_modules/.pnpm/highlight.js@11.11.1/node_modules/highlight.js/lib/languages/python-repl.js +38 -0
- package/dist/node_modules/.pnpm/highlight.js@11.11.1/node_modules/highlight.js/lib/languages/python.js +428 -0
- package/dist/node_modules/.pnpm/highlight.js@11.11.1/node_modules/highlight.js/lib/languages/r.js +223 -0
- package/dist/node_modules/.pnpm/highlight.js@11.11.1/node_modules/highlight.js/lib/languages/ruby.js +426 -0
- package/dist/node_modules/.pnpm/highlight.js@11.11.1/node_modules/highlight.js/lib/languages/rust.js +326 -0
- package/dist/node_modules/.pnpm/highlight.js@11.11.1/node_modules/highlight.js/lib/languages/scss.js +935 -0
- package/dist/node_modules/.pnpm/highlight.js@11.11.1/node_modules/highlight.js/lib/languages/shell.js +37 -0
- package/dist/node_modules/.pnpm/highlight.js@11.11.1/node_modules/highlight.js/lib/languages/sql.js +658 -0
- package/dist/node_modules/.pnpm/highlight.js@11.11.1/node_modules/highlight.js/lib/languages/swift.js +893 -0
- package/dist/node_modules/.pnpm/highlight.js@11.11.1/node_modules/highlight.js/lib/languages/typescript.js +829 -0
- package/dist/node_modules/.pnpm/highlight.js@11.11.1/node_modules/highlight.js/lib/languages/vbnet.js +146 -0
- package/dist/node_modules/.pnpm/highlight.js@11.11.1/node_modules/highlight.js/lib/languages/wasm.js +134 -0
- package/dist/node_modules/.pnpm/highlight.js@11.11.1/node_modules/highlight.js/lib/languages/xml.js +239 -0
- package/dist/node_modules/.pnpm/highlight.js@11.11.1/node_modules/highlight.js/lib/languages/yaml.js +214 -0
- package/dist/node_modules/.pnpm/marked-highlight@2.2.2_marked@15.0.12/node_modules/marked-highlight/src/index.js +93 -0
- package/dist/tsconfig.build.tsbuildinfo +1 -1
- package/dist/types/components/accordion/Accordion.model.d.ts +1 -1
- package/dist/types/components/animated/Animated.client.d.ts +2 -2
- package/dist/types/components/animated/Animated.model.d.ts +1 -1
- package/dist/types/components/button/Button.client.d.ts +1 -1
- package/dist/types/components/button/Button.d.ts +1 -1
- package/dist/types/components/button/Button.lazy.d.ts +1 -1
- package/dist/types/components/button/Button.server.d.ts +1 -1
- package/dist/types/components/button/Button.view.d.ts +1 -1
- package/dist/types/components/card/Card.effects.client.d.ts +1 -1
- package/dist/types/components/card/index.d.ts +1 -1
- package/dist/types/components/carousel/Carousel.d.ts +3 -0
- package/dist/types/components/carousel/Carousel.lazy.d.ts +3 -0
- package/dist/types/components/carousel/Carousel.model.d.ts +4 -0
- package/dist/types/components/dialog/Dialog.client.d.ts +1 -1
- package/dist/types/components/dialog/Dialog.model.d.ts +4 -4
- package/dist/types/components/dialog/Dialog.view.d.ts +2 -2
- package/dist/types/components/drawer/Drawer.client.d.ts +1 -1
- package/dist/types/components/drawer/Drawer.d.ts +1 -1
- package/dist/types/components/drawer/Drawer.effects.client.d.ts +1 -1
- package/dist/types/components/drawer/Drawer.lazy.d.ts +1 -1
- package/dist/types/components/drawer/Drawer.model.d.ts +6 -6
- package/dist/types/components/drawer/Drawer.server.d.ts +1 -1
- package/dist/types/components/drawer/Drawer.view.d.ts +2 -2
- package/dist/types/components/drawer/index.d.ts +1 -1
- package/dist/types/components/icon/IconList.d.ts +1 -1
- package/dist/types/components/icon/index.d.ts +1 -1
- package/dist/types/components/image/Image.model.d.ts +2 -2
- package/dist/types/components/link/Link.d.ts +1 -1
- package/dist/types/components/link/Link.model.d.ts +1 -1
- package/dist/types/components/link/Link.server.d.ts +1 -1
- package/dist/types/components/loading/index.d.ts +1 -1
- package/dist/types/components/post-item/PostItem.client.d.ts +4 -0
- package/dist/types/components/post-item/PostItem.d.ts +3 -2
- package/dist/types/components/post-item/PostItem.lazy.d.ts +5 -0
- package/dist/types/components/post-item/PostItem.model.d.ts +46 -6
- package/dist/types/components/post-item/PostItem.server.d.ts +3 -0
- package/dist/types/components/post-item/PostItem.view.d.ts +3 -0
- package/dist/types/components/post-item/PostItemAuthor.model.d.ts +5 -8
- package/dist/types/components/post-item/index.d.ts +2 -2
- package/dist/types/components/post-teaser/PostTeaser.client.d.ts +4 -0
- package/dist/types/components/post-teaser/PostTeaser.d.ts +3 -2
- package/dist/types/components/post-teaser/PostTeaser.lazy.d.ts +5 -0
- package/dist/types/components/post-teaser/PostTeaser.model.d.ts +49 -3
- package/dist/types/components/post-teaser/PostTeaser.server.d.ts +3 -0
- package/dist/types/components/post-teaser/PostTeaser.view.d.ts +3 -0
- package/dist/types/components/post-teaser/index.d.ts +1 -1
- package/dist/types/components/post-widget/PostWidget.client.d.ts +4 -0
- package/dist/types/components/post-widget/PostWidget.d.ts +13 -3
- package/dist/types/components/post-widget/PostWidget.lazy.d.ts +14 -0
- package/dist/types/components/post-widget/PostWidget.model.d.ts +53 -3
- package/dist/types/components/post-widget/PostWidget.server.d.ts +3 -0
- package/dist/types/components/post-widget/PostWidget.view.d.ts +3 -0
- package/dist/types/components/post-widget/index.d.ts +1 -1
- package/dist/types/components/post-widget-carousel/PostWidgetCarousel.client.d.ts +3 -0
- package/dist/types/components/post-widget-carousel/PostWidgetCarousel.d.ts +11 -3
- package/dist/types/components/post-widget-carousel/PostWidgetCarousel.lazy.d.ts +12 -0
- package/dist/types/components/post-widget-carousel/PostWidgetCarousel.model.d.ts +39 -0
- package/dist/types/components/post-widget-carousel/PostWidgetCarousel.server.d.ts +3 -0
- package/dist/types/components/post-widget-carousel/PostWidgetCarousel.view.d.ts +3 -0
- package/dist/types/components/post-widget-carousel/index.d.ts +1 -1
- package/dist/types/components/rich-text/RichText.client.d.ts +1 -1
- package/dist/types/components/rich-text/RichText.d.ts +5 -0
- package/dist/types/components/rich-text/RichText.lazy.d.ts +5 -0
- package/dist/types/components/rich-text/RichText.model.d.ts +5 -0
- package/dist/types/components/sidenav/index.d.ts +1 -1
- package/dist/types/components/skeleton/Skeleton.effects.client.d.ts +2 -2
- package/dist/types/helpers/createIsland.d.ts +1 -1
- package/dist/types/helpers/createLazyWrapper.d.ts +1 -1
- package/dist/types/helpers/date.d.ts +5 -0
- package/dist/ui.css +154 -65
- package/package.json +5 -2
- package/dist/helpers/calculation.js +0 -6
|
@@ -80,11 +80,7 @@ const Teaser = /* @__PURE__ */ __name(({
|
|
|
80
80
|
name: "ArrowRight01Icon",
|
|
81
81
|
size: "xs",
|
|
82
82
|
...redirect == null ? void 0 : redirect.icon,
|
|
83
|
-
className: bem(
|
|
84
|
-
"link__icon",
|
|
85
|
-
void 0,
|
|
86
|
-
(_a = redirect == null ? void 0 : redirect.icon) == null ? void 0 : _a.className
|
|
87
|
-
)
|
|
83
|
+
className: bem("link__icon", void 0, (_a = redirect == null ? void 0 : redirect.icon) == null ? void 0 : _a.className)
|
|
88
84
|
}
|
|
89
85
|
),
|
|
90
86
|
redirect == null ? void 0 : redirect.label
|
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
var __defProp = Object.defineProperty;
|
|
2
|
+
var __name = (target, value) => __defProp(target, "name", { value, configurable: true });
|
|
3
|
+
import { isString } from "./validations.js";
|
|
4
|
+
const localizeDate = /* @__PURE__ */ __name((locale, date) => {
|
|
5
|
+
if (!isString(date)) return void 0;
|
|
6
|
+
const newDate = new Date(date);
|
|
7
|
+
const year = newDate.getFullYear();
|
|
8
|
+
const month = String(newDate.getMonth() + 1).padStart(2, "0");
|
|
9
|
+
const day = String(newDate.getDate()).padStart(2, "0");
|
|
10
|
+
return {
|
|
11
|
+
locale: newDate.toLocaleDateString(locale, {
|
|
12
|
+
year: "numeric",
|
|
13
|
+
month: "long",
|
|
14
|
+
day: "numeric"
|
|
15
|
+
}),
|
|
16
|
+
meta: `${year}-${month}-${day}`
|
|
17
|
+
};
|
|
18
|
+
}, "localizeDate");
|
|
19
|
+
export {
|
|
20
|
+
localizeDate
|
|
21
|
+
};
|
|
@@ -0,0 +1,90 @@
|
|
|
1
|
+
var __defProp = Object.defineProperty;
|
|
2
|
+
var __name = (target, value) => __defProp(target, "name", { value, configurable: true });
|
|
3
|
+
import { __require as requireCore } from "./core.js";
|
|
4
|
+
import { __require as requireXml } from "./languages/xml.js";
|
|
5
|
+
import { __require as requireBash } from "./languages/bash.js";
|
|
6
|
+
import { __require as requireC } from "./languages/c.js";
|
|
7
|
+
import { __require as requireCpp } from "./languages/cpp.js";
|
|
8
|
+
import { __require as requireCsharp } from "./languages/csharp.js";
|
|
9
|
+
import { __require as requireCss } from "./languages/css.js";
|
|
10
|
+
import { __require as requireMarkdown } from "./languages/markdown.js";
|
|
11
|
+
import { __require as requireDiff } from "./languages/diff.js";
|
|
12
|
+
import { __require as requireRuby } from "./languages/ruby.js";
|
|
13
|
+
import { __require as requireGo } from "./languages/go.js";
|
|
14
|
+
import { __require as requireGraphql } from "./languages/graphql.js";
|
|
15
|
+
import { __require as requireIni } from "./languages/ini.js";
|
|
16
|
+
import { __require as requireJava } from "./languages/java.js";
|
|
17
|
+
import { __require as requireJavascript } from "./languages/javascript.js";
|
|
18
|
+
import { __require as requireJson } from "./languages/json.js";
|
|
19
|
+
import { __require as requireKotlin } from "./languages/kotlin.js";
|
|
20
|
+
import { __require as requireLess } from "./languages/less.js";
|
|
21
|
+
import { __require as requireLua } from "./languages/lua.js";
|
|
22
|
+
import { __require as requireMakefile } from "./languages/makefile.js";
|
|
23
|
+
import { __require as requirePerl } from "./languages/perl.js";
|
|
24
|
+
import { __require as requireObjectivec } from "./languages/objectivec.js";
|
|
25
|
+
import { __require as requirePhp } from "./languages/php.js";
|
|
26
|
+
import { __require as requirePhpTemplate } from "./languages/php-template.js";
|
|
27
|
+
import { __require as requirePlaintext } from "./languages/plaintext.js";
|
|
28
|
+
import { __require as requirePython } from "./languages/python.js";
|
|
29
|
+
import { __require as requirePythonRepl } from "./languages/python-repl.js";
|
|
30
|
+
import { __require as requireR } from "./languages/r.js";
|
|
31
|
+
import { __require as requireRust } from "./languages/rust.js";
|
|
32
|
+
import { __require as requireScss } from "./languages/scss.js";
|
|
33
|
+
import { __require as requireShell } from "./languages/shell.js";
|
|
34
|
+
import { __require as requireSql } from "./languages/sql.js";
|
|
35
|
+
import { __require as requireSwift } from "./languages/swift.js";
|
|
36
|
+
import { __require as requireYaml } from "./languages/yaml.js";
|
|
37
|
+
import { __require as requireTypescript } from "./languages/typescript.js";
|
|
38
|
+
import { __require as requireVbnet } from "./languages/vbnet.js";
|
|
39
|
+
import { __require as requireWasm } from "./languages/wasm.js";
|
|
40
|
+
var common;
|
|
41
|
+
var hasRequiredCommon;
|
|
42
|
+
function requireCommon() {
|
|
43
|
+
if (hasRequiredCommon) return common;
|
|
44
|
+
hasRequiredCommon = 1;
|
|
45
|
+
var hljs = /* @__PURE__ */ requireCore();
|
|
46
|
+
hljs.registerLanguage("xml", /* @__PURE__ */ requireXml());
|
|
47
|
+
hljs.registerLanguage("bash", /* @__PURE__ */ requireBash());
|
|
48
|
+
hljs.registerLanguage("c", /* @__PURE__ */ requireC());
|
|
49
|
+
hljs.registerLanguage("cpp", /* @__PURE__ */ requireCpp());
|
|
50
|
+
hljs.registerLanguage("csharp", /* @__PURE__ */ requireCsharp());
|
|
51
|
+
hljs.registerLanguage("css", /* @__PURE__ */ requireCss());
|
|
52
|
+
hljs.registerLanguage("markdown", /* @__PURE__ */ requireMarkdown());
|
|
53
|
+
hljs.registerLanguage("diff", /* @__PURE__ */ requireDiff());
|
|
54
|
+
hljs.registerLanguage("ruby", /* @__PURE__ */ requireRuby());
|
|
55
|
+
hljs.registerLanguage("go", /* @__PURE__ */ requireGo());
|
|
56
|
+
hljs.registerLanguage("graphql", /* @__PURE__ */ requireGraphql());
|
|
57
|
+
hljs.registerLanguage("ini", /* @__PURE__ */ requireIni());
|
|
58
|
+
hljs.registerLanguage("java", /* @__PURE__ */ requireJava());
|
|
59
|
+
hljs.registerLanguage("javascript", /* @__PURE__ */ requireJavascript());
|
|
60
|
+
hljs.registerLanguage("json", /* @__PURE__ */ requireJson());
|
|
61
|
+
hljs.registerLanguage("kotlin", /* @__PURE__ */ requireKotlin());
|
|
62
|
+
hljs.registerLanguage("less", /* @__PURE__ */ requireLess());
|
|
63
|
+
hljs.registerLanguage("lua", /* @__PURE__ */ requireLua());
|
|
64
|
+
hljs.registerLanguage("makefile", /* @__PURE__ */ requireMakefile());
|
|
65
|
+
hljs.registerLanguage("perl", /* @__PURE__ */ requirePerl());
|
|
66
|
+
hljs.registerLanguage("objectivec", /* @__PURE__ */ requireObjectivec());
|
|
67
|
+
hljs.registerLanguage("php", /* @__PURE__ */ requirePhp());
|
|
68
|
+
hljs.registerLanguage("php-template", /* @__PURE__ */ requirePhpTemplate());
|
|
69
|
+
hljs.registerLanguage("plaintext", /* @__PURE__ */ requirePlaintext());
|
|
70
|
+
hljs.registerLanguage("python", /* @__PURE__ */ requirePython());
|
|
71
|
+
hljs.registerLanguage("python-repl", /* @__PURE__ */ requirePythonRepl());
|
|
72
|
+
hljs.registerLanguage("r", /* @__PURE__ */ requireR());
|
|
73
|
+
hljs.registerLanguage("rust", /* @__PURE__ */ requireRust());
|
|
74
|
+
hljs.registerLanguage("scss", /* @__PURE__ */ requireScss());
|
|
75
|
+
hljs.registerLanguage("shell", /* @__PURE__ */ requireShell());
|
|
76
|
+
hljs.registerLanguage("sql", /* @__PURE__ */ requireSql());
|
|
77
|
+
hljs.registerLanguage("swift", /* @__PURE__ */ requireSwift());
|
|
78
|
+
hljs.registerLanguage("yaml", /* @__PURE__ */ requireYaml());
|
|
79
|
+
hljs.registerLanguage("typescript", /* @__PURE__ */ requireTypescript());
|
|
80
|
+
hljs.registerLanguage("vbnet", /* @__PURE__ */ requireVbnet());
|
|
81
|
+
hljs.registerLanguage("wasm", /* @__PURE__ */ requireWasm());
|
|
82
|
+
hljs.HighlightJS = hljs;
|
|
83
|
+
hljs.default = hljs;
|
|
84
|
+
common = hljs;
|
|
85
|
+
return common;
|
|
86
|
+
}
|
|
87
|
+
__name(requireCommon, "requireCommon");
|
|
88
|
+
export {
|
|
89
|
+
requireCommon as __require
|
|
90
|
+
};
|