matcha-components 20.13.0 → 20.15.0
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/assets/open_in_new.png +0 -0
- package/index.ts +1 -0
- package/ng-package.json +7 -0
- package/package.json +6 -19
- package/src/documentation/components/matcha-drawer.mdx +469 -0
- package/src/documentation/foundation/borders/border-radius.mdx +145 -0
- package/src/documentation/foundation/borders/border-size.mdx +111 -0
- package/src/documentation/foundation/borders/border-style.mdx +144 -0
- package/src/documentation/foundation/colors/all-colors.mdx +153 -0
- package/src/documentation/foundation/colors/base/amber.mdx +235 -0
- package/src/documentation/foundation/colors/base/blue.mdx +235 -0
- package/src/documentation/foundation/colors/base/cyan.mdx +235 -0
- package/src/documentation/foundation/colors/base/deep-orange.mdx +235 -0
- package/src/documentation/foundation/colors/base/deep-purple.mdx +235 -0
- package/src/documentation/foundation/colors/base/green.mdx +235 -0
- package/src/documentation/foundation/colors/base/indigo.mdx +235 -0
- package/src/documentation/foundation/colors/base/light-blue.mdx +235 -0
- package/src/documentation/foundation/colors/base/light-green.mdx +235 -0
- package/src/documentation/foundation/colors/base/lime.mdx +235 -0
- package/src/documentation/foundation/colors/base/orange.mdx +235 -0
- package/src/documentation/foundation/colors/base/pink.mdx +235 -0
- package/src/documentation/foundation/colors/base/purple.mdx +235 -0
- package/src/documentation/foundation/colors/base/red.mdx +235 -0
- package/src/documentation/foundation/colors/base/teal.mdx +235 -0
- package/src/documentation/foundation/colors/base/yellow.mdx +235 -0
- package/src/documentation/foundation/colors/surface-colors.mdx +93 -0
- package/src/documentation/foundation/colors/theme/accent.mdx +235 -0
- package/src/documentation/foundation/colors/theme/primary.mdx +235 -0
- package/src/documentation/foundation/colors/theme/warn.mdx +235 -0
- package/src/documentation/foundation/displays/display-block.mdx +134 -0
- package/src/documentation/foundation/displays/display-flex.mdx +134 -0
- package/src/documentation/foundation/displays/display-grid.mdx +134 -0
- package/src/documentation/foundation/displays/display-inline-block.mdx +134 -0
- package/src/documentation/foundation/displays/display-inline-flex.mdx +134 -0
- package/src/documentation/foundation/displays/display-inline.mdx +134 -0
- package/src/documentation/foundation/displays/display-none.mdx +134 -0
- package/src/documentation/foundation/displays/display-table-cell.mdx +134 -0
- package/src/documentation/foundation/displays/display-table-row.mdx +134 -0
- package/src/documentation/foundation/displays/display-table.mdx +134 -0
- package/src/documentation/foundation/flexbox/flexbox.mdx +420 -0
- package/src/documentation/foundation/opacity/opacity.mdx +104 -0
- package/src/documentation/foundation/position/alignment.mdx +148 -0
- package/src/documentation/foundation/sizes/height/heights.mdx +96 -0
- package/src/documentation/foundation/sizes/height/max-heights.mdx +96 -0
- package/src/documentation/foundation/sizes/height/min-heights.mdx +96 -0
- package/src/documentation/foundation/sizes/width/max-width.mdx +95 -0
- package/src/documentation/foundation/sizes/width/min-width.mdx +96 -0
- package/src/documentation/foundation/sizes/width/widths.mdx +96 -0
- package/src/documentation/foundation/spacing/margins.mdx +227 -0
- package/src/documentation/foundation/spacing/paddings.mdx +225 -0
- package/src/documentation/foundation/typography/colors.mdx +26 -0
- package/src/documentation/foundation/typography/font-size.mdx +57 -0
- package/src/documentation/foundation/typography/font-weight.mdx +85 -0
- package/src/documentation/foundation/typography/letter-spacing.mdx +35 -0
- package/src/documentation/foundation/typography/line-clamp.mdx +145 -0
- package/src/documentation/foundation/typography/line-height.mdx +52 -0
- package/src/documentation/foundation/typography/message-box.mdx +43 -0
- package/src/documentation/foundation/typography/paragraph.mdx +165 -0
- package/src/documentation/foundation/typography/text-align.mdx +22 -0
- package/src/documentation/foundation/typography/text-styles.mdx +88 -0
- package/src/documentation/presentation.mdx +591 -0
- package/src/documentation/services/matcha-breakpoint-observer.mdx +310 -0
- package/src/documentation/tokens/animations.mdx +116 -0
- package/src/documentation/tokens/breakpoints.mdx +57 -0
- package/src/documentation/tokens/colors.mdx +1884 -0
- package/src/documentation/tokens/elevations.mdx +50 -0
- package/src/documentation/tokens/sizes.mdx +150 -0
- package/src/lib/matcha-accordion/accordion/accordion.component.html +1 -0
- package/src/lib/matcha-accordion/accordion/accordion.component.scss +0 -0
- package/src/lib/matcha-accordion/accordion/accordion.component.ts +72 -0
- package/src/lib/matcha-accordion/accordion-content/accordion-content.component.html +1 -0
- package/src/lib/matcha-accordion/accordion-content/accordion-content.component.scss +0 -0
- package/src/lib/matcha-accordion/accordion-content/accordion-content.component.ts +11 -0
- package/src/lib/matcha-accordion/accordion-header/accordion-header.component.html +1 -0
- package/src/lib/matcha-accordion/accordion-header/accordion-header.component.scss +0 -0
- package/src/lib/matcha-accordion/accordion-header/accordion-header.component.ts +11 -0
- package/src/lib/matcha-accordion/accordion-item/accordion-item.component.html +13 -0
- package/src/lib/matcha-accordion/accordion-item/accordion-item.component.scss +0 -0
- package/src/lib/matcha-accordion/accordion-item/accordion-item.component.ts +63 -0
- package/src/lib/matcha-accordion/accordion.module.ts +37 -0
- package/src/lib/matcha-accordion/accordion.stories.ts +108 -0
- package/src/lib/matcha-animations/animations.ts +406 -0
- package/src/lib/matcha-autocomplete/README.md +185 -0
- package/src/lib/matcha-autocomplete/matcha-autocomplete.component.html +13 -0
- package/src/lib/matcha-autocomplete/matcha-autocomplete.component.ts +238 -0
- package/src/lib/matcha-autocomplete/matcha-autocomplete.directive.ts +153 -0
- package/src/lib/matcha-autocomplete/matcha-autocomplete.module.ts +30 -0
- package/src/lib/matcha-autocomplete/matcha-autocomplete.stories.ts +172 -0
- package/src/lib/matcha-avatar/avatar/avatar.component.html +29 -0
- package/src/lib/matcha-avatar/avatar/avatar.component.scss +0 -0
- package/src/lib/matcha-avatar/avatar/avatar.component.ts +78 -0
- package/src/lib/matcha-avatar/avatar.module.ts +17 -0
- package/src/lib/matcha-badge/badge.argtypes.ts +77 -0
- package/src/lib/matcha-badge/badge.directive.ts +12 -0
- package/src/lib/matcha-badge/badge.mdx +69 -0
- package/src/lib/matcha-badge/badge.module.ts +9 -0
- package/src/lib/matcha-badge/badge.stories.ts +79 -0
- package/src/lib/matcha-breakpoint-observable/breakpoint-observable.module.ts +23 -0
- package/src/lib/matcha-breakpoint-observable/breakpoint-observer.service.ts +215 -0
- package/src/lib/matcha-breakpoint-observable/index.ts +2 -0
- package/src/lib/matcha-button/button/button.component.html +1 -0
- package/src/lib/matcha-button/button/button.component.scss +0 -0
- package/src/lib/matcha-button/button/button.component.ts +182 -0
- package/src/lib/matcha-button/button.argtypes.ts +105 -0
- package/src/lib/matcha-button/button.module.ts +10 -0
- package/src/lib/matcha-button/button.stories.ts +552 -0
- package/src/lib/matcha-button-toggle/button-toggle/button-toggle.component.html +8 -0
- package/src/lib/matcha-button-toggle/button-toggle/button-toggle.component.scss +0 -0
- package/src/lib/matcha-button-toggle/button-toggle/button-toggle.component.ts +87 -0
- package/src/lib/matcha-button-toggle/button-toggle.module.ts +16 -0
- package/src/lib/matcha-button-toggle/button-toggle.stories.ts +106 -0
- package/src/lib/matcha-card/card/card.component.html +1 -0
- package/src/lib/matcha-card/card/card.component.scss +0 -0
- package/src/lib/matcha-card/card/card.component.ts +86 -0
- package/src/lib/matcha-card/card-argtype.ts +54 -0
- package/src/lib/matcha-card/card.module.ts +22 -0
- package/src/lib/matcha-card/card.stories.ts +339 -0
- package/src/lib/matcha-checkbox/checkbox/checkbox.component.html +19 -0
- package/src/lib/matcha-checkbox/checkbox/checkbox.component.scss +0 -0
- package/src/lib/matcha-checkbox/checkbox/checkbox.component.ts +79 -0
- package/src/lib/matcha-checkbox/checkbox.module.ts +15 -0
- package/src/lib/matcha-checkbox/checkbox.stories.ts +391 -0
- package/src/lib/matcha-components.module.ts +149 -0
- package/src/lib/matcha-date-range/date-range/date-range.component.html +3 -0
- package/src/lib/matcha-date-range/date-range/date-range.component.scss +0 -0
- package/src/lib/matcha-date-range/date-range/date-range.component.ts +100 -0
- package/src/lib/matcha-date-range/date-range.module.ts +14 -0
- package/src/lib/matcha-divider/divider/divider.component.html +1 -0
- package/src/lib/matcha-divider/divider/divider.component.scss +0 -0
- package/src/lib/matcha-divider/divider/divider.component.ts +50 -0
- package/src/lib/matcha-divider/divider.argtypes.ts +57 -0
- package/src/lib/matcha-divider/divider.mdx +107 -0
- package/src/lib/matcha-divider/divider.module.ts +14 -0
- package/src/lib/matcha-divider/divider.stories.ts +44 -0
- package/src/lib/matcha-drawer/drawer/drawer.component.html +43 -0
- package/src/lib/matcha-drawer/drawer/drawer.component.ts +358 -0
- package/src/lib/matcha-drawer/drawer-container/drawer-container.component.html +3 -0
- package/src/lib/matcha-drawer/drawer-container/drawer-container.component.ts +36 -0
- package/src/lib/matcha-drawer/drawer-content/drawer-content.component.html +3 -0
- package/src/lib/matcha-drawer/drawer-content/drawer-content.component.ts +24 -0
- package/src/lib/matcha-drawer/drawer.module.ts +28 -0
- package/src/lib/matcha-drop-list/directives/drag-handle.directive.ts +22 -0
- package/src/lib/matcha-drop-list/directives/drag.directive.ts +369 -0
- package/src/lib/matcha-drop-list/drop-list/drop-list.component.html +27 -0
- package/src/lib/matcha-drop-list/drop-list/drop-list.component.ts +380 -0
- package/src/lib/matcha-drop-list/drop-list-argtype.ts +56 -0
- package/src/lib/matcha-drop-list/drop-list.module.ts +27 -0
- package/src/lib/matcha-drop-list/drop-list.stories.ts +314 -0
- package/src/lib/matcha-drop-list/services/drop-list.service.ts +30 -0
- package/src/lib/matcha-elevation/elevation.argtypes.ts +16 -0
- package/src/lib/matcha-elevation/elevation.directive.ts +30 -0
- package/src/lib/matcha-elevation/elevation.module.ts +10 -0
- package/src/lib/matcha-elevation/elevation.stories.ts +60 -0
- package/src/lib/matcha-form-field/form-field.argtype.ts +21 -0
- package/src/lib/matcha-form-field/form-field.stories.ts +45 -0
- package/src/lib/matcha-form-field/matcha-error/matcha-error.component.html +4 -0
- package/src/lib/matcha-form-field/matcha-error/matcha-error.component.scss +0 -0
- package/src/lib/matcha-form-field/matcha-error/matcha-error.component.ts +9 -0
- package/src/lib/matcha-form-field/matcha-form-field/matcha-form-field.component.html +19 -0
- package/src/lib/matcha-form-field/matcha-form-field/matcha-form-field.component.scss +0 -0
- package/src/lib/matcha-form-field/matcha-form-field/matcha-form-field.component.ts +30 -0
- package/src/lib/matcha-form-field/matcha-form-field.module.ts +13 -0
- package/src/lib/matcha-form-field/matcha-label/matcha-label.component.html +7 -0
- package/src/lib/matcha-form-field/matcha-label/matcha-label.component.scss +0 -0
- package/src/lib/matcha-form-field/matcha-label/matcha-label.component.ts +11 -0
- package/src/lib/matcha-grid/grid-argtype.ts +67 -0
- package/src/lib/matcha-grid/grid.component.html +3 -0
- package/src/lib/matcha-grid/grid.component.scss +0 -0
- package/src/lib/matcha-grid/grid.component.ts +114 -0
- package/src/lib/matcha-grid/grid.mdx +60 -0
- package/src/lib/matcha-grid/grid.module.ts +10 -0
- package/src/lib/matcha-grid/grid.stories.ts +125 -0
- package/src/lib/matcha-highlight/copy-button/copy-button.component.html +12 -0
- package/src/lib/matcha-highlight/copy-button/copy-button.component.scss +28 -0
- package/src/lib/matcha-highlight/copy-button/copy-button.component.ts +127 -0
- package/src/lib/matcha-highlight/highlight.component.ts +237 -0
- package/src/lib/matcha-highlight/highlight.module.ts +24 -0
- package/src/lib/matcha-highlight/prism-init.ts +11 -0
- package/src/lib/matcha-highlight/prism-languages.ts +5 -0
- package/src/lib/matcha-highlight/prismjs/components/index.js +82 -0
- package/src/lib/matcha-highlight/prismjs/components/prism-abap.js +48 -0
- package/src/lib/matcha-highlight/prismjs/components/prism-abap.min.js +1 -0
- package/src/lib/matcha-highlight/prismjs/components/prism-abnf.js +54 -0
- package/src/lib/matcha-highlight/prismjs/components/prism-abnf.min.js +1 -0
- package/src/lib/matcha-highlight/prismjs/components/prism-actionscript.js +17 -0
- package/src/lib/matcha-highlight/prismjs/components/prism-actionscript.min.js +1 -0
- package/src/lib/matcha-highlight/prismjs/components/prism-ada.js +19 -0
- package/src/lib/matcha-highlight/prismjs/components/prism-ada.min.js +1 -0
- package/src/lib/matcha-highlight/prismjs/components/prism-apacheconf.js +47 -0
- package/src/lib/matcha-highlight/prismjs/components/prism-apacheconf.min.js +1 -0
- package/src/lib/matcha-highlight/prismjs/components/prism-apl.js +32 -0
- package/src/lib/matcha-highlight/prismjs/components/prism-apl.min.js +1 -0
- package/src/lib/matcha-highlight/prismjs/components/prism-applescript.js +20 -0
- package/src/lib/matcha-highlight/prismjs/components/prism-applescript.min.js +1 -0
- package/src/lib/matcha-highlight/prismjs/components/prism-arduino.js +5 -0
- package/src/lib/matcha-highlight/prismjs/components/prism-arduino.min.js +1 -0
- package/src/lib/matcha-highlight/prismjs/components/prism-arff.js +10 -0
- package/src/lib/matcha-highlight/prismjs/components/prism-arff.min.js +1 -0
- package/src/lib/matcha-highlight/prismjs/components/prism-asciidoc.js +234 -0
- package/src/lib/matcha-highlight/prismjs/components/prism-asciidoc.min.js +1 -0
- package/src/lib/matcha-highlight/prismjs/components/prism-asm6502.js +28 -0
- package/src/lib/matcha-highlight/prismjs/components/prism-asm6502.min.js +1 -0
- package/src/lib/matcha-highlight/prismjs/components/prism-aspnet.js +36 -0
- package/src/lib/matcha-highlight/prismjs/components/prism-aspnet.min.js +1 -0
- package/src/lib/matcha-highlight/prismjs/components/prism-autohotkey.js +27 -0
- package/src/lib/matcha-highlight/prismjs/components/prism-autohotkey.min.js +1 -0
- package/src/lib/matcha-highlight/prismjs/components/prism-autoit.js +34 -0
- package/src/lib/matcha-highlight/prismjs/components/prism-autoit.min.js +1 -0
- package/src/lib/matcha-highlight/prismjs/components/prism-basic.js +17 -0
- package/src/lib/matcha-highlight/prismjs/components/prism-basic.min.js +1 -0
- package/src/lib/matcha-highlight/prismjs/components/prism-batch.js +99 -0
- package/src/lib/matcha-highlight/prismjs/components/prism-batch.min.js +1 -0
- package/src/lib/matcha-highlight/prismjs/components/prism-bison.js +39 -0
- package/src/lib/matcha-highlight/prismjs/components/prism-bison.min.js +1 -0
- package/src/lib/matcha-highlight/prismjs/components/prism-bnf.js +21 -0
- package/src/lib/matcha-highlight/prismjs/components/prism-bnf.min.js +1 -0
- package/src/lib/matcha-highlight/prismjs/components/prism-brainfuck.js +20 -0
- package/src/lib/matcha-highlight/prismjs/components/prism-brainfuck.min.js +1 -0
- package/src/lib/matcha-highlight/prismjs/components/prism-bro.js +48 -0
- package/src/lib/matcha-highlight/prismjs/components/prism-bro.min.js +1 -0
- package/src/lib/matcha-highlight/prismjs/components/prism-cil.js +27 -0
- package/src/lib/matcha-highlight/prismjs/components/prism-cil.min.js +1 -0
- package/src/lib/matcha-highlight/prismjs/components/prism-clike.js +30 -0
- package/src/lib/matcha-highlight/prismjs/components/prism-clike.min.js +1 -0
- package/src/lib/matcha-highlight/prismjs/components/prism-clojure.js +13 -0
- package/src/lib/matcha-highlight/prismjs/components/prism-clojure.min.js +1 -0
- package/src/lib/matcha-highlight/prismjs/components/prism-cmake.js +29 -0
- package/src/lib/matcha-highlight/prismjs/components/prism-cmake.min.js +1 -0
- package/src/lib/matcha-highlight/prismjs/components/prism-coffeescript.js +92 -0
- package/src/lib/matcha-highlight/prismjs/components/prism-coffeescript.min.js +1 -0
- package/src/lib/matcha-highlight/prismjs/components/prism-core.js +553 -0
- package/src/lib/matcha-highlight/prismjs/components/prism-core.min.js +1 -0
- package/src/lib/matcha-highlight/prismjs/components/prism-crystal.js +51 -0
- package/src/lib/matcha-highlight/prismjs/components/prism-crystal.min.js +1 -0
- package/src/lib/matcha-highlight/prismjs/components/prism-csp.js +25 -0
- package/src/lib/matcha-highlight/prismjs/components/prism-csp.min.js +1 -0
- package/src/lib/matcha-highlight/prismjs/components/prism-css-extras.js +70 -0
- package/src/lib/matcha-highlight/prismjs/components/prism-css-extras.min.js +1 -0
- package/src/lib/matcha-highlight/prismjs/components/prism-css.js +51 -0
- package/src/lib/matcha-highlight/prismjs/components/prism-css.min.js +1 -0
- package/src/lib/matcha-highlight/prismjs/components/prism-d.js +64 -0
- package/src/lib/matcha-highlight/prismjs/components/prism-d.min.js +1 -0
- package/src/lib/matcha-highlight/prismjs/components/prism-dart.js +24 -0
- package/src/lib/matcha-highlight/prismjs/components/prism-dart.min.js +1 -0
- package/src/lib/matcha-highlight/prismjs/components/prism-django.js +60 -0
- package/src/lib/matcha-highlight/prismjs/components/prism-django.min.js +1 -0
- package/src/lib/matcha-highlight/prismjs/components/prism-docker.js +11 -0
- package/src/lib/matcha-highlight/prismjs/components/prism-docker.min.js +1 -0
- package/src/lib/matcha-highlight/prismjs/components/prism-ebnf.js +22 -0
- package/src/lib/matcha-highlight/prismjs/components/prism-ebnf.min.js +1 -0
- package/src/lib/matcha-highlight/prismjs/components/prism-eiffel.js +37 -0
- package/src/lib/matcha-highlight/prismjs/components/prism-eiffel.min.js +1 -0
- package/src/lib/matcha-highlight/prismjs/components/prism-ejs.js +24 -0
- package/src/lib/matcha-highlight/prismjs/components/prism-ejs.min.js +1 -0
- package/src/lib/matcha-highlight/prismjs/components/prism-elixir.js +93 -0
- package/src/lib/matcha-highlight/prismjs/components/prism-elixir.min.js +1 -0
- package/src/lib/matcha-highlight/prismjs/components/prism-elm.js +44 -0
- package/src/lib/matcha-highlight/prismjs/components/prism-elm.min.js +1 -0
- package/src/lib/matcha-highlight/prismjs/components/prism-erb.js +20 -0
- package/src/lib/matcha-highlight/prismjs/components/prism-erb.min.js +1 -0
- package/src/lib/matcha-highlight/prismjs/components/prism-erlang.js +44 -0
- package/src/lib/matcha-highlight/prismjs/components/prism-erlang.min.js +1 -0
- package/src/lib/matcha-highlight/prismjs/components/prism-flow.js +35 -0
- package/src/lib/matcha-highlight/prismjs/components/prism-flow.min.js +1 -0
- package/src/lib/matcha-highlight/prismjs/components/prism-fortran.js +40 -0
- package/src/lib/matcha-highlight/prismjs/components/prism-fortran.min.js +1 -0
- package/src/lib/matcha-highlight/prismjs/components/prism-fsharp.js +67 -0
- package/src/lib/matcha-highlight/prismjs/components/prism-fsharp.min.js +1 -0
- package/src/lib/matcha-highlight/prismjs/components/prism-gcode.js +15 -0
- package/src/lib/matcha-highlight/prismjs/components/prism-gcode.min.js +1 -0
- package/src/lib/matcha-highlight/prismjs/components/prism-gedcom.js +28 -0
- package/src/lib/matcha-highlight/prismjs/components/prism-gedcom.min.js +1 -0
- package/src/lib/matcha-highlight/prismjs/components/prism-gherkin.js +79 -0
- package/src/lib/matcha-highlight/prismjs/components/prism-gherkin.min.js +1 -0
- package/src/lib/matcha-highlight/prismjs/components/prism-git.js +68 -0
- package/src/lib/matcha-highlight/prismjs/components/prism-git.min.js +1 -0
- package/src/lib/matcha-highlight/prismjs/components/prism-glsl.js +16 -0
- package/src/lib/matcha-highlight/prismjs/components/prism-glsl.min.js +1 -0
- package/src/lib/matcha-highlight/prismjs/components/prism-gml.js +7 -0
- package/src/lib/matcha-highlight/prismjs/components/prism-gml.min.js +1 -0
- package/src/lib/matcha-highlight/prismjs/components/prism-go.js +12 -0
- package/src/lib/matcha-highlight/prismjs/components/prism-go.min.js +1 -0
- package/src/lib/matcha-highlight/prismjs/components/prism-graphql.js +31 -0
- package/src/lib/matcha-highlight/prismjs/components/prism-graphql.min.js +1 -0
- package/src/lib/matcha-highlight/prismjs/components/prism-groovy.js +65 -0
- package/src/lib/matcha-highlight/prismjs/components/prism-groovy.min.js +1 -0
- package/src/lib/matcha-highlight/prismjs/components/prism-haml.js +154 -0
- package/src/lib/matcha-highlight/prismjs/components/prism-haml.min.js +1 -0
- package/src/lib/matcha-highlight/prismjs/components/prism-handlebars.js +37 -0
- package/src/lib/matcha-highlight/prismjs/components/prism-handlebars.min.js +1 -0
- package/src/lib/matcha-highlight/prismjs/components/prism-haskell.js +38 -0
- package/src/lib/matcha-highlight/prismjs/components/prism-haskell.min.js +1 -0
- package/src/lib/matcha-highlight/prismjs/components/prism-haxe.js +45 -0
- package/src/lib/matcha-highlight/prismjs/components/prism-haxe.min.js +1 -0
- package/src/lib/matcha-highlight/prismjs/components/prism-hcl.js +65 -0
- package/src/lib/matcha-highlight/prismjs/components/prism-hcl.min.js +1 -0
- package/src/lib/matcha-highlight/prismjs/components/prism-hpkp.js +20 -0
- package/src/lib/matcha-highlight/prismjs/components/prism-hpkp.min.js +1 -0
- package/src/lib/matcha-highlight/prismjs/components/prism-hsts.js +20 -0
- package/src/lib/matcha-highlight/prismjs/components/prism-hsts.min.js +1 -0
- package/src/lib/matcha-highlight/prismjs/components/prism-http.js +79 -0
- package/src/lib/matcha-highlight/prismjs/components/prism-http.min.js +1 -0
- package/src/lib/matcha-highlight/prismjs/components/prism-ichigojam.js +15 -0
- package/src/lib/matcha-highlight/prismjs/components/prism-ichigojam.min.js +1 -0
- package/src/lib/matcha-highlight/prismjs/components/prism-icon.js +20 -0
- package/src/lib/matcha-highlight/prismjs/components/prism-icon.min.js +1 -0
- package/src/lib/matcha-highlight/prismjs/components/prism-inform7.js +61 -0
- package/src/lib/matcha-highlight/prismjs/components/prism-inform7.min.js +1 -0
- package/src/lib/matcha-highlight/prismjs/components/prism-ini.js +11 -0
- package/src/lib/matcha-highlight/prismjs/components/prism-ini.min.js +1 -0
- package/src/lib/matcha-highlight/prismjs/components/prism-io.js +31 -0
- package/src/lib/matcha-highlight/prismjs/components/prism-io.min.js +1 -0
- package/src/lib/matcha-highlight/prismjs/components/prism-j.js +25 -0
- package/src/lib/matcha-highlight/prismjs/components/prism-j.min.js +1 -0
- package/src/lib/matcha-highlight/prismjs/components/prism-javadoc.js +54 -0
- package/src/lib/matcha-highlight/prismjs/components/prism-javadoc.min.js +1 -0
- package/src/lib/matcha-highlight/prismjs/components/prism-javadoclike.js +86 -0
- package/src/lib/matcha-highlight/prismjs/components/prism-javadoclike.min.js +1 -0
- package/src/lib/matcha-highlight/prismjs/components/prism-javascript.js +86 -0
- package/src/lib/matcha-highlight/prismjs/components/prism-javascript.min.js +1 -0
- package/src/lib/matcha-highlight/prismjs/components/prism-javastacktrace.js +93 -0
- package/src/lib/matcha-highlight/prismjs/components/prism-javastacktrace.min.js +1 -0
- package/src/lib/matcha-highlight/prismjs/components/prism-jolie.js +55 -0
- package/src/lib/matcha-highlight/prismjs/components/prism-jolie.min.js +1 -0
- package/src/lib/matcha-highlight/prismjs/components/prism-js-extras.js +104 -0
- package/src/lib/matcha-highlight/prismjs/components/prism-js-extras.min.js +1 -0
- package/src/lib/matcha-highlight/prismjs/components/prism-jsdoc.js +73 -0
- package/src/lib/matcha-highlight/prismjs/components/prism-jsdoc.min.js +1 -0
- package/src/lib/matcha-highlight/prismjs/components/prism-json5.js +23 -0
- package/src/lib/matcha-highlight/prismjs/components/prism-json5.min.js +1 -0
- package/src/lib/matcha-highlight/prismjs/components/prism-jsonp.js +7 -0
- package/src/lib/matcha-highlight/prismjs/components/prism-jsonp.min.js +1 -0
- package/src/lib/matcha-highlight/prismjs/components/prism-jsx.js +126 -0
- package/src/lib/matcha-highlight/prismjs/components/prism-jsx.min.js +1 -0
- package/src/lib/matcha-highlight/prismjs/components/prism-julia.js +12 -0
- package/src/lib/matcha-highlight/prismjs/components/prism-julia.min.js +1 -0
- package/src/lib/matcha-highlight/prismjs/components/prism-keyman.js +14 -0
- package/src/lib/matcha-highlight/prismjs/components/prism-keyman.min.js +1 -0
- package/src/lib/matcha-highlight/prismjs/components/prism-kotlin.js +62 -0
- package/src/lib/matcha-highlight/prismjs/components/prism-kotlin.min.js +1 -0
- package/src/lib/matcha-highlight/prismjs/components/prism-latex.js +61 -0
- package/src/lib/matcha-highlight/prismjs/components/prism-latex.min.js +1 -0
- package/src/lib/matcha-highlight/prismjs/components/prism-less.js +54 -0
- package/src/lib/matcha-highlight/prismjs/components/prism-less.min.js +1 -0
- package/src/lib/matcha-highlight/prismjs/components/prism-liquid.js +12 -0
- package/src/lib/matcha-highlight/prismjs/components/prism-liquid.min.js +1 -0
- package/src/lib/matcha-highlight/prismjs/components/prism-lisp.js +197 -0
- package/src/lib/matcha-highlight/prismjs/components/prism-lisp.min.js +1 -0
- package/src/lib/matcha-highlight/prismjs/components/prism-livescript.js +119 -0
- package/src/lib/matcha-highlight/prismjs/components/prism-livescript.min.js +1 -0
- package/src/lib/matcha-highlight/prismjs/components/prism-lolcode.js +55 -0
- package/src/lib/matcha-highlight/prismjs/components/prism-lolcode.min.js +1 -0
- package/src/lib/matcha-highlight/prismjs/components/prism-lua.js +20 -0
- package/src/lib/matcha-highlight/prismjs/components/prism-lua.min.js +1 -0
- package/src/lib/matcha-highlight/prismjs/components/prism-makefile.js +34 -0
- package/src/lib/matcha-highlight/prismjs/components/prism-makefile.min.js +1 -0
- package/src/lib/matcha-highlight/prismjs/components/prism-markdown.js +227 -0
- package/src/lib/matcha-highlight/prismjs/components/prism-markdown.min.js +1 -0
- package/src/lib/matcha-highlight/prismjs/components/prism-markup-templating.js +123 -0
- package/src/lib/matcha-highlight/prismjs/components/prism-markup-templating.min.js +1 -0
- package/src/lib/matcha-highlight/prismjs/components/prism-markup.js +100 -0
- package/src/lib/matcha-highlight/prismjs/components/prism-markup.min.js +1 -0
- package/src/lib/matcha-highlight/prismjs/components/prism-matlab.js +16 -0
- package/src/lib/matcha-highlight/prismjs/components/prism-matlab.min.js +1 -0
- package/src/lib/matcha-highlight/prismjs/components/prism-mel.js +43 -0
- package/src/lib/matcha-highlight/prismjs/components/prism-mel.min.js +1 -0
- package/src/lib/matcha-highlight/prismjs/components/prism-mizar.js +12 -0
- package/src/lib/matcha-highlight/prismjs/components/prism-mizar.min.js +1 -0
- package/src/lib/matcha-highlight/prismjs/components/prism-monkey.js +31 -0
- package/src/lib/matcha-highlight/prismjs/components/prism-monkey.min.js +1 -0
- package/src/lib/matcha-highlight/prismjs/components/prism-n1ql.js +18 -0
- package/src/lib/matcha-highlight/prismjs/components/prism-n1ql.min.js +1 -0
- package/src/lib/matcha-highlight/prismjs/components/prism-n4js.js +14 -0
- package/src/lib/matcha-highlight/prismjs/components/prism-n4js.min.js +1 -0
- package/src/lib/matcha-highlight/prismjs/components/prism-nand2tetris-hdl.js +9 -0
- package/src/lib/matcha-highlight/prismjs/components/prism-nand2tetris-hdl.min.js +1 -0
- package/src/lib/matcha-highlight/prismjs/components/prism-nasm.js +24 -0
- package/src/lib/matcha-highlight/prismjs/components/prism-nasm.min.js +1 -0
- package/src/lib/matcha-highlight/prismjs/components/prism-nginx.js +11 -0
- package/src/lib/matcha-highlight/prismjs/components/prism-nginx.min.js +1 -0
- package/src/lib/matcha-highlight/prismjs/components/prism-nim.js +33 -0
- package/src/lib/matcha-highlight/prismjs/components/prism-nim.min.js +1 -0
- package/src/lib/matcha-highlight/prismjs/components/prism-nix.js +40 -0
- package/src/lib/matcha-highlight/prismjs/components/prism-nix.min.js +1 -0
- package/src/lib/matcha-highlight/prismjs/components/prism-nsis.js +29 -0
- package/src/lib/matcha-highlight/prismjs/components/prism-nsis.min.js +1 -0
- package/src/lib/matcha-highlight/prismjs/components/prism-objectivec.js +7 -0
- package/src/lib/matcha-highlight/prismjs/components/prism-objectivec.min.js +1 -0
- package/src/lib/matcha-highlight/prismjs/components/prism-ocaml.js +27 -0
- package/src/lib/matcha-highlight/prismjs/components/prism-ocaml.min.js +1 -0
- package/src/lib/matcha-highlight/prismjs/components/prism-opencl.js +49 -0
- package/src/lib/matcha-highlight/prismjs/components/prism-opencl.min.js +1 -0
- package/src/lib/matcha-highlight/prismjs/components/prism-oz.js +25 -0
- package/src/lib/matcha-highlight/prismjs/components/prism-oz.min.js +1 -0
- package/src/lib/matcha-highlight/prismjs/components/prism-parigp.js +30 -0
- package/src/lib/matcha-highlight/prismjs/components/prism-parigp.min.js +1 -0
- package/src/lib/matcha-highlight/prismjs/components/prism-parser.js +73 -0
- package/src/lib/matcha-highlight/prismjs/components/prism-parser.min.js +1 -0
- package/src/lib/matcha-highlight/prismjs/components/prism-pascal.js +55 -0
- package/src/lib/matcha-highlight/prismjs/components/prism-pascal.min.js +1 -0
- package/src/lib/matcha-highlight/prismjs/components/prism-php-extras.js +11 -0
- package/src/lib/matcha-highlight/prismjs/components/prism-php-extras.min.js +1 -0
- package/src/lib/matcha-highlight/prismjs/components/prism-phpdoc.js +27 -0
- package/src/lib/matcha-highlight/prismjs/components/prism-phpdoc.min.js +1 -0
- package/src/lib/matcha-highlight/prismjs/components/prism-plsql.js +26 -0
- package/src/lib/matcha-highlight/prismjs/components/prism-plsql.min.js +1 -0
- package/src/lib/matcha-highlight/prismjs/components/prism-powershell.js +60 -0
- package/src/lib/matcha-highlight/prismjs/components/prism-powershell.min.js +1 -0
- package/src/lib/matcha-highlight/prismjs/components/prism-processing.js +18 -0
- package/src/lib/matcha-highlight/prismjs/components/prism-processing.min.js +1 -0
- package/src/lib/matcha-highlight/prismjs/components/prism-prolog.js +20 -0
- package/src/lib/matcha-highlight/prismjs/components/prism-prolog.min.js +1 -0
- package/src/lib/matcha-highlight/prismjs/components/prism-properties.js +9 -0
- package/src/lib/matcha-highlight/prismjs/components/prism-properties.min.js +1 -0
- package/src/lib/matcha-highlight/prismjs/components/prism-protobuf.js +8 -0
- package/src/lib/matcha-highlight/prismjs/components/prism-protobuf.min.js +1 -0
- package/src/lib/matcha-highlight/prismjs/components/prism-pug.js +193 -0
- package/src/lib/matcha-highlight/prismjs/components/prism-pug.min.js +1 -0
- package/src/lib/matcha-highlight/prismjs/components/prism-puppet.js +136 -0
- package/src/lib/matcha-highlight/prismjs/components/prism-puppet.min.js +1 -0
- package/src/lib/matcha-highlight/prismjs/components/prism-pure.js +79 -0
- package/src/lib/matcha-highlight/prismjs/components/prism-pure.min.js +1 -0
- package/src/lib/matcha-highlight/prismjs/components/prism-q.js +51 -0
- package/src/lib/matcha-highlight/prismjs/components/prism-q.min.js +1 -0
- package/src/lib/matcha-highlight/prismjs/components/prism-qore.js +20 -0
- package/src/lib/matcha-highlight/prismjs/components/prism-qore.min.js +1 -0
- package/src/lib/matcha-highlight/prismjs/components/prism-r.js +22 -0
- package/src/lib/matcha-highlight/prismjs/components/prism-r.min.js +1 -0
- package/src/lib/matcha-highlight/prismjs/components/prism-reason.js +32 -0
- package/src/lib/matcha-highlight/prismjs/components/prism-reason.min.js +1 -0
- package/src/lib/matcha-highlight/prismjs/components/prism-regex.js +97 -0
- package/src/lib/matcha-highlight/prismjs/components/prism-regex.min.js +1 -0
- package/src/lib/matcha-highlight/prismjs/components/prism-renpy.js +29 -0
- package/src/lib/matcha-highlight/prismjs/components/prism-renpy.min.js +1 -0
- package/src/lib/matcha-highlight/prismjs/components/prism-rest.js +205 -0
- package/src/lib/matcha-highlight/prismjs/components/prism-rest.min.js +1 -0
- package/src/lib/matcha-highlight/prismjs/components/prism-rip.js +32 -0
- package/src/lib/matcha-highlight/prismjs/components/prism-rip.min.js +1 -0
- package/src/lib/matcha-highlight/prismjs/components/prism-roboconf.js +27 -0
- package/src/lib/matcha-highlight/prismjs/components/prism-roboconf.min.js +1 -0
- package/src/lib/matcha-highlight/prismjs/components/prism-ruby.js +143 -0
- package/src/lib/matcha-highlight/prismjs/components/prism-ruby.min.js +1 -0
- package/src/lib/matcha-highlight/prismjs/components/prism-rust.js +68 -0
- package/src/lib/matcha-highlight/prismjs/components/prism-rust.min.js +1 -0
- package/src/lib/matcha-highlight/prismjs/components/prism-sas.js +34 -0
- package/src/lib/matcha-highlight/prismjs/components/prism-sas.min.js +1 -0
- package/src/lib/matcha-highlight/prismjs/components/prism-scala.js +18 -0
- package/src/lib/matcha-highlight/prismjs/components/prism-scala.min.js +1 -0
- package/src/lib/matcha-highlight/prismjs/components/prism-scheme.js +33 -0
- package/src/lib/matcha-highlight/prismjs/components/prism-scheme.min.js +1 -0
- package/src/lib/matcha-highlight/prismjs/components/prism-smalltalk.js +31 -0
- package/src/lib/matcha-highlight/prismjs/components/prism-smalltalk.min.js +1 -0
- package/src/lib/matcha-highlight/prismjs/components/prism-smarty.js +87 -0
- package/src/lib/matcha-highlight/prismjs/components/prism-smarty.min.js +1 -0
- package/src/lib/matcha-highlight/prismjs/components/prism-soy.js +96 -0
- package/src/lib/matcha-highlight/prismjs/components/prism-soy.min.js +1 -0
- package/src/lib/matcha-highlight/prismjs/components/prism-sql.js +24 -0
- package/src/lib/matcha-highlight/prismjs/components/prism-sql.min.js +1 -0
- package/src/lib/matcha-highlight/prismjs/components/prism-stylus.js +111 -0
- package/src/lib/matcha-highlight/prismjs/components/prism-stylus.min.js +1 -0
- package/src/lib/matcha-highlight/prismjs/components/prism-swift.js +25 -0
- package/src/lib/matcha-highlight/prismjs/components/prism-swift.min.js +1 -0
- package/src/lib/matcha-highlight/prismjs/components/prism-t4-cs.js +1 -0
- package/src/lib/matcha-highlight/prismjs/components/prism-t4-cs.min.js +1 -0
- package/src/lib/matcha-highlight/prismjs/components/prism-t4-templating.js +49 -0
- package/src/lib/matcha-highlight/prismjs/components/prism-t4-templating.min.js +1 -0
- package/src/lib/matcha-highlight/prismjs/components/prism-t4-vb.js +1 -0
- package/src/lib/matcha-highlight/prismjs/components/prism-t4-vb.min.js +1 -0
- package/src/lib/matcha-highlight/prismjs/components/prism-tap.js +20 -0
- package/src/lib/matcha-highlight/prismjs/components/prism-tap.min.js +1 -0
- package/src/lib/matcha-highlight/prismjs/components/prism-tcl.js +46 -0
- package/src/lib/matcha-highlight/prismjs/components/prism-tcl.min.js +1 -0
- package/src/lib/matcha-highlight/prismjs/components/prism-textile.js +260 -0
- package/src/lib/matcha-highlight/prismjs/components/prism-textile.min.js +1 -0
- package/src/lib/matcha-highlight/prismjs/components/prism-toml.js +43 -0
- package/src/lib/matcha-highlight/prismjs/components/prism-toml.min.js +1 -0
- package/src/lib/matcha-highlight/prismjs/components/prism-tsx.js +2 -0
- package/src/lib/matcha-highlight/prismjs/components/prism-tsx.min.js +1 -0
- package/src/lib/matcha-highlight/prismjs/components/prism-tt2.js +56 -0
- package/src/lib/matcha-highlight/prismjs/components/prism-tt2.min.js +1 -0
- package/src/lib/matcha-highlight/prismjs/components/prism-twig.js +46 -0
- package/src/lib/matcha-highlight/prismjs/components/prism-twig.min.js +1 -0
- package/src/lib/matcha-highlight/prismjs/components/prism-vala.js +74 -0
- package/src/lib/matcha-highlight/prismjs/components/prism-vala.min.js +1 -0
- package/src/lib/matcha-highlight/prismjs/components/prism-vbnet.js +15 -0
- package/src/lib/matcha-highlight/prismjs/components/prism-vbnet.min.js +1 -0
- package/src/lib/matcha-highlight/prismjs/components/prism-velocity.js +72 -0
- package/src/lib/matcha-highlight/prismjs/components/prism-velocity.min.js +1 -0
- package/src/lib/matcha-highlight/prismjs/components/prism-verilog.js +20 -0
- package/src/lib/matcha-highlight/prismjs/components/prism-verilog.min.js +1 -0
- package/src/lib/matcha-highlight/prismjs/components/prism-vhdl.js +23 -0
- package/src/lib/matcha-highlight/prismjs/components/prism-vhdl.min.js +1 -0
- package/src/lib/matcha-highlight/prismjs/components/prism-vim.js +10 -0
- package/src/lib/matcha-highlight/prismjs/components/prism-vim.min.js +1 -0
- package/src/lib/matcha-highlight/prismjs/components/prism-visual-basic.js +34 -0
- package/src/lib/matcha-highlight/prismjs/components/prism-visual-basic.min.js +1 -0
- package/src/lib/matcha-highlight/prismjs/components/prism-wasm.js +31 -0
- package/src/lib/matcha-highlight/prismjs/components/prism-wasm.min.js +1 -0
- package/src/lib/matcha-highlight/prismjs/components/prism-wiki.js +81 -0
- package/src/lib/matcha-highlight/prismjs/components/prism-wiki.min.js +1 -0
- package/src/lib/matcha-highlight/prismjs/components/prism-xeora.js +114 -0
- package/src/lib/matcha-highlight/prismjs/components/prism-xeora.min.js +1 -0
- package/src/lib/matcha-highlight/prismjs/components/prism-xojo.js +20 -0
- package/src/lib/matcha-highlight/prismjs/components/prism-xojo.min.js +1 -0
- package/src/lib/matcha-highlight/prismjs/components/prism-xquery.js +164 -0
- package/src/lib/matcha-highlight/prismjs/components/prism-xquery.min.js +1 -0
- package/src/lib/matcha-highlight/prismjs/components/prism-yaml.js +47 -0
- package/src/lib/matcha-highlight/prismjs/components/prism-yaml.min.js +1 -0
- package/src/lib/matcha-highlight/prismjs/components.js +2 -0
- package/src/lib/matcha-highlight/prismjs/components.json +1031 -0
- package/src/lib/matcha-highlight/prismjs/plugins/autolinker/prism-autolinker.css +3 -0
- package/src/lib/matcha-highlight/prismjs/plugins/autolinker/prism-autolinker.js +81 -0
- package/src/lib/matcha-highlight/prismjs/plugins/autolinker/prism-autolinker.min.js +1 -0
- package/src/lib/matcha-highlight/prismjs/plugins/autoloader/prism-autoloader.js +214 -0
- package/src/lib/matcha-highlight/prismjs/plugins/autoloader/prism-autoloader.min.js +1 -0
- package/src/lib/matcha-highlight/prismjs/plugins/command-line/prism-command-line.css +33 -0
- package/src/lib/matcha-highlight/prismjs/plugins/command-line/prism-command-line.js +139 -0
- package/src/lib/matcha-highlight/prismjs/plugins/command-line/prism-command-line.min.js +1 -0
- package/src/lib/matcha-highlight/prismjs/plugins/copy-to-clipboard/prism-copy-to-clipboard.js +75 -0
- package/src/lib/matcha-highlight/prismjs/plugins/copy-to-clipboard/prism-copy-to-clipboard.min.js +1 -0
- package/src/lib/matcha-highlight/prismjs/plugins/custom-class/prism-custom-class.js +31 -0
- package/src/lib/matcha-highlight/prismjs/plugins/custom-class/prism-custom-class.min.js +1 -0
- package/src/lib/matcha-highlight/prismjs/plugins/data-uri-highlight/prism-data-uri-highlight.js +98 -0
- package/src/lib/matcha-highlight/prismjs/plugins/data-uri-highlight/prism-data-uri-highlight.min.js +1 -0
- package/src/lib/matcha-highlight/prismjs/plugins/file-highlight/prism-file-highlight.js +105 -0
- package/src/lib/matcha-highlight/prismjs/plugins/file-highlight/prism-file-highlight.min.js +1 -0
- package/src/lib/matcha-highlight/prismjs/plugins/highlight-keywords/prism-highlight-keywords.js +17 -0
- package/src/lib/matcha-highlight/prismjs/plugins/highlight-keywords/prism-highlight-keywords.min.js +1 -0
- package/src/lib/matcha-highlight/prismjs/plugins/jsonp-highlight/prism-jsonp-highlight.js +206 -0
- package/src/lib/matcha-highlight/prismjs/plugins/jsonp-highlight/prism-jsonp-highlight.min.js +1 -0
- package/src/lib/matcha-highlight/prismjs/plugins/keep-markup/prism-keep-markup.js +99 -0
- package/src/lib/matcha-highlight/prismjs/plugins/keep-markup/prism-keep-markup.min.js +1 -0
- package/src/lib/matcha-highlight/prismjs/plugins/line-highlight/prism-line-highlight.css +49 -0
- package/src/lib/matcha-highlight/prismjs/plugins/line-highlight/prism-line-highlight.js +181 -0
- package/src/lib/matcha-highlight/prismjs/plugins/line-highlight/prism-line-highlight.min.js +1 -0
- package/src/lib/matcha-highlight/prismjs/plugins/line-numbers/prism-line-numbers.css +41 -0
- package/src/lib/matcha-highlight/prismjs/plugins/line-numbers/prism-line-numbers.js +168 -0
- package/src/lib/matcha-highlight/prismjs/plugins/line-numbers/prism-line-numbers.min.js +1 -0
- package/src/lib/matcha-highlight/prismjs/plugins/normalize-whitespace/prism-normalize-whitespace.js +190 -0
- package/src/lib/matcha-highlight/prismjs/plugins/normalize-whitespace/prism-normalize-whitespace.min.js +1 -0
- package/src/lib/matcha-highlight/prismjs/plugins/previewers/prism-previewers.css +242 -0
- package/src/lib/matcha-highlight/prismjs/plugins/previewers/prism-previewers.js +708 -0
- package/src/lib/matcha-highlight/prismjs/plugins/previewers/prism-previewers.min.js +1 -0
- package/src/lib/matcha-highlight/prismjs/plugins/remove-initial-line-feed/prism-remove-initial-line-feed.js +21 -0
- package/src/lib/matcha-highlight/prismjs/plugins/remove-initial-line-feed/prism-remove-initial-line-feed.min.js +1 -0
- package/src/lib/matcha-highlight/prismjs/plugins/show-invisibles/prism-show-invisibles.css +34 -0
- package/src/lib/matcha-highlight/prismjs/plugins/show-invisibles/prism-show-invisibles.js +84 -0
- package/src/lib/matcha-highlight/prismjs/plugins/show-invisibles/prism-show-invisibles.min.js +1 -0
- package/src/lib/matcha-highlight/prismjs/plugins/show-language/prism-show-language.js +46 -0
- package/src/lib/matcha-highlight/prismjs/plugins/show-language/prism-show-language.min.js +1 -0
- package/src/lib/matcha-highlight/prismjs/plugins/toolbar/prism-toolbar.css +58 -0
- package/src/lib/matcha-highlight/prismjs/plugins/toolbar/prism-toolbar.js +149 -0
- package/src/lib/matcha-highlight/prismjs/plugins/toolbar/prism-toolbar.min.js +1 -0
- package/src/lib/matcha-highlight/prismjs/plugins/unescaped-markup/prism-unescaped-markup.css +10 -0
- package/src/lib/matcha-highlight/prismjs/plugins/unescaped-markup/prism-unescaped-markup.js +44 -0
- package/src/lib/matcha-highlight/prismjs/plugins/unescaped-markup/prism-unescaped-markup.min.js +1 -0
- package/src/lib/matcha-highlight/prismjs/plugins/wpd/prism-wpd.css +11 -0
- package/src/lib/matcha-highlight/prismjs/plugins/wpd/prism-wpd.js +169 -0
- package/src/lib/matcha-highlight/prismjs/plugins/wpd/prism-wpd.min.js +1 -0
- package/src/lib/matcha-highlight/prismjs/prism.d.ts +4 -0
- package/src/lib/matcha-highlight/prismjs/prism.js +960 -0
- package/src/lib/matcha-highlight/prismjs/themes/prism-coy.css +226 -0
- package/src/lib/matcha-highlight/prismjs/themes/prism-dark.css +129 -0
- package/src/lib/matcha-highlight/prismjs/themes/prism-funky.css +117 -0
- package/src/lib/matcha-highlight/prismjs/themes/prism-okaidia.css +123 -0
- package/src/lib/matcha-highlight/prismjs/themes/prism-solarizedlight.css +150 -0
- package/src/lib/matcha-highlight/prismjs/themes/prism-tomorrow.css +122 -0
- package/src/lib/matcha-highlight/prismjs/themes/prism-twilight.css +199 -0
- package/src/lib/matcha-highlight/prismjs/themes/prism.css +139 -0
- package/src/lib/matcha-hint-text/hint/hint-text.component.html +4 -0
- package/src/lib/matcha-hint-text/hint/hint-text.component.scss +0 -0
- package/src/lib/matcha-hint-text/hint/hint-text.component.ts +31 -0
- package/src/lib/matcha-hint-text/hint.module.ts +15 -0
- package/src/lib/matcha-hint-text/hint.stories.ts +52 -0
- package/src/lib/matcha-icon/icon-argtype.ts +36 -0
- package/src/lib/matcha-icon/icon.component.html +3 -0
- package/src/lib/matcha-icon/icon.component.scss +0 -0
- package/src/lib/matcha-icon/icon.component.ts +34 -0
- package/src/lib/matcha-icon/icon.mdx +58 -0
- package/src/lib/matcha-icon/icon.module.ts +11 -0
- package/src/lib/matcha-icon/icon.stories.ts +431 -0
- package/src/lib/matcha-infinite-scroll/matcha-infinite-scroll/matcha-infinite-scroll.component.html +0 -0
- package/src/lib/matcha-infinite-scroll/matcha-infinite-scroll/matcha-infinite-scroll.component.scss +0 -0
- package/src/lib/matcha-infinite-scroll/matcha-infinite-scroll/matcha-infinite-scroll.component.ts +49 -0
- package/src/lib/matcha-infinite-scroll/matcha-infinite-scroll-data/matcha-infinite-scroll-data.component.html +0 -0
- package/src/lib/matcha-infinite-scroll/matcha-infinite-scroll-data/matcha-infinite-scroll-data.component.scss +0 -0
- package/src/lib/matcha-infinite-scroll/matcha-infinite-scroll-data/matcha-infinite-scroll-data.component.ts +165 -0
- package/src/lib/matcha-infinite-scroll/matcha-infinite-scroll.module.ts +14 -0
- package/src/lib/matcha-input/input.argtypes.ts +39 -0
- package/src/lib/matcha-input/input.directive.ts +12 -0
- package/src/lib/matcha-input/input.mdx +73 -0
- package/src/lib/matcha-input/input.module.ts +9 -0
- package/src/lib/matcha-input/input.stories.ts +97 -0
- package/src/lib/matcha-input-phone/all-countries.ts +1366 -0
- package/src/lib/matcha-input-phone/input-phone.argtypes.ts +83 -0
- package/src/lib/matcha-input-phone/input-phone.component.html +33 -0
- package/src/lib/matcha-input-phone/input-phone.component.spec.ts +23 -0
- package/src/lib/matcha-input-phone/input-phone.component.ts +267 -0
- package/src/lib/matcha-input-phone/input-phone.module.ts +22 -0
- package/src/lib/matcha-input-phone/input-phone.stories.ts +85 -0
- package/src/lib/matcha-input-phone/lib/custom-keyboard-event.ts +21 -0
- package/src/lib/matcha-input-phone/lib/ngx-mask-applier.service.ts +1073 -0
- package/src/lib/matcha-input-phone/lib/ngx-mask-expression.enum.ts +43 -0
- package/src/lib/matcha-input-phone/lib/ngx-mask.config.ts +132 -0
- package/src/lib/matcha-input-phone/lib/ngx-mask.directive.ts +1187 -0
- package/src/lib/matcha-input-phone/lib/ngx-mask.module.ts +55 -0
- package/src/lib/matcha-input-phone/lib/ngx-mask.pipe.ts +131 -0
- package/src/lib/matcha-input-phone/lib/ngx-mask.providers.ts +42 -0
- package/src/lib/matcha-input-phone/lib/ngx-mask.service.ts +832 -0
- package/src/lib/matcha-lazyload/lazyload/lazyload.component.html +1 -0
- package/src/lib/matcha-lazyload/lazyload/lazyload.component.scss +0 -0
- package/src/lib/matcha-lazyload/lazyload/lazyload.component.ts +48 -0
- package/src/lib/matcha-lazyload/lazyload-data/lazyload-data.component.html +1 -0
- package/src/lib/matcha-lazyload/lazyload-data/lazyload-data.component.scss +0 -0
- package/src/lib/matcha-lazyload/lazyload-data/lazyload-data.component.ts +172 -0
- package/src/lib/matcha-lazyload/lazyload.module.ts +14 -0
- package/src/lib/matcha-masonry/masonry/masonry.component.html +3 -0
- package/src/lib/matcha-masonry/masonry/masonry.component.scss +0 -0
- package/src/lib/matcha-masonry/masonry/masonry.component.ts +45 -0
- package/src/lib/matcha-masonry/masonry.argtype.ts +97 -0
- package/src/lib/matcha-masonry/masonry.mdx +133 -0
- package/src/lib/matcha-masonry/masonry.module.ts +10 -0
- package/src/lib/matcha-masonry/masonry.stories.ts +64 -0
- package/src/lib/matcha-menu/menu.argtypes.ts +111 -0
- package/src/lib/matcha-menu/menu.component.html +3 -0
- package/src/lib/matcha-menu/menu.component.scss +0 -0
- package/src/lib/matcha-menu/menu.component.spec.ts +23 -0
- package/src/lib/matcha-menu/menu.component.ts +48 -0
- package/src/lib/matcha-menu/menu.directive.ts +39 -0
- package/src/lib/matcha-menu/menu.mdx +59 -0
- package/src/lib/matcha-menu/menu.module.ts +19 -0
- package/src/lib/matcha-menu/menu.stories.ts +122 -0
- package/src/lib/matcha-modal/exemplo/exemple-modal-content.component.html +34 -0
- package/src/lib/matcha-modal/exemplo/exemple-modal-content.component.ts +44 -0
- package/src/lib/matcha-modal/exemplo/exemple-modal.component.html +46 -0
- package/src/lib/matcha-modal/exemplo/exemple-modal.component.ts +34 -0
- package/src/lib/matcha-modal/matcha-modal.module.ts +45 -0
- package/src/lib/matcha-modal/modal/modal.component.html +3 -0
- package/src/lib/matcha-modal/modal/modal.component.scss +0 -0
- package/src/lib/matcha-modal/modal/modal.component.ts +67 -0
- package/src/lib/matcha-modal/modal-content/modal-content.component.html +9 -0
- package/src/lib/matcha-modal/modal-content/modal-content.component.scss +0 -0
- package/src/lib/matcha-modal/modal-content/modal-content.component.ts +11 -0
- package/src/lib/matcha-modal/modal-footer/modal-footer.component.html +8 -0
- package/src/lib/matcha-modal/modal-footer/modal-footer.component.scss +0 -0
- package/src/lib/matcha-modal/modal-footer/modal-footer.component.ts +32 -0
- package/src/lib/matcha-modal/modal-header/modal-header.component.html +13 -0
- package/src/lib/matcha-modal/modal-header/modal-header.component.scss +0 -0
- package/src/lib/matcha-modal/modal-header/modal-header.component.ts +11 -0
- package/src/lib/matcha-modal/modal-options/modal-options.component.html +3 -0
- package/src/lib/matcha-modal/modal-options/modal-options.component.scss +0 -0
- package/src/lib/matcha-modal/modal-options/modal-options.component.ts +11 -0
- package/src/lib/matcha-modal/modal.service.ts +47 -0
- package/src/lib/matcha-modal/modal.stories.argtypes.ts +56 -0
- package/src/lib/matcha-modal/modal.stories.ts +333 -0
- package/src/lib/matcha-modal/model/IMatchaModalComponent.ts +1 -0
- package/src/lib/matcha-modal/overlay.service.ts +138 -0
- package/src/lib/matcha-option/README.md +144 -0
- package/src/lib/matcha-option/matcha-option-parent.interface.ts +22 -0
- package/src/lib/matcha-option/matcha-option.component.ts +93 -0
- package/src/lib/matcha-option/matcha-option.module.ts +17 -0
- package/src/lib/matcha-option/matcha-option.stories.ts +127 -0
- package/src/lib/matcha-overflow-draggable/matcha-overflow-draggable.component.html +3 -0
- package/src/lib/matcha-overflow-draggable/matcha-overflow-draggable.component.scss +0 -0
- package/src/lib/matcha-overflow-draggable/matcha-overflow-draggable.component.ts +56 -0
- package/src/lib/matcha-page-layout/page-layout.component.html +18 -0
- package/src/lib/matcha-page-layout/page-layout.component.scss +5 -0
- package/src/lib/matcha-page-layout/page-layout.component.ts +11 -0
- package/src/lib/matcha-page-layout/page-layout.module.ts +19 -0
- package/src/lib/matcha-paginator/paginator/page-event.interface.ts +13 -0
- package/src/lib/matcha-paginator/paginator/paginator.component.html +59 -0
- package/src/lib/matcha-paginator/paginator/paginator.component.scss +0 -0
- package/src/lib/matcha-paginator/paginator/paginator.component.ts +154 -0
- package/src/lib/matcha-paginator/paginator-intl.service.ts +39 -0
- package/src/lib/matcha-paginator/paginator.module.ts +13 -0
- package/src/lib/matcha-panel/matcha-panel.component.ts +223 -0
- package/src/lib/matcha-panel/matcha-panel.module.ts +17 -0
- package/src/lib/matcha-progress-bar/progress-bar.argtype.ts +48 -0
- package/src/lib/matcha-progress-bar/progress-bar.directive.ts +17 -0
- package/src/lib/matcha-progress-bar/progress-bar.mdx +95 -0
- package/src/lib/matcha-progress-bar/progress-bar.module.ts +14 -0
- package/src/lib/matcha-progress-bar/progress-bar.stories.ts +89 -0
- package/src/lib/matcha-radio/radio/radio.component.html +20 -0
- package/src/lib/matcha-radio/radio/radio.component.scss +0 -0
- package/src/lib/matcha-radio/radio/radio.component.ts +84 -0
- package/src/lib/matcha-radio/radio.module.ts +16 -0
- package/src/lib/matcha-radio/radio.stories.ts +175 -0
- package/src/lib/matcha-ripple/ripple.directive.ts +71 -0
- package/src/lib/matcha-ripple/ripple.module.ts +16 -0
- package/src/lib/matcha-select/matcha-select.component.html +30 -0
- package/src/lib/matcha-select/matcha-select.component.scss +3 -0
- package/src/lib/matcha-select/matcha-select.component.ts +467 -0
- package/src/lib/matcha-select/matcha-select.directive.ts +147 -0
- package/src/lib/matcha-select/matcha-select.module.ts +23 -0
- package/src/lib/matcha-sidenav/sidenav.argtypes.ts +60 -0
- package/src/lib/matcha-sidenav/sidenav.directive.ts +12 -0
- package/src/lib/matcha-sidenav/sidenav.mdx +57 -0
- package/src/lib/matcha-sidenav/sidenav.module.ts +10 -0
- package/src/lib/matcha-sidenav/sidenav.stories.ts +79 -0
- package/src/lib/matcha-skeleton/skeleton/skeleton.component.html +70 -0
- package/src/lib/matcha-skeleton/skeleton/skeleton.component.scss +0 -0
- package/src/lib/matcha-skeleton/skeleton/skeleton.component.ts +36 -0
- package/src/lib/matcha-skeleton/skeleton-argtype.ts +67 -0
- package/src/lib/matcha-skeleton/skeleton.module.ts +11 -0
- package/src/lib/matcha-skeleton/skeleton.stories.ts +74 -0
- package/src/lib/matcha-slide-toggle/slide-toggle/slide-toggle.component.html +15 -0
- package/src/lib/matcha-slide-toggle/slide-toggle/slide-toggle.component.scss +0 -0
- package/src/lib/matcha-slide-toggle/slide-toggle/slide-toggle.component.ts +96 -0
- package/src/lib/matcha-slide-toggle/slide-toggle.module.ts +18 -0
- package/src/lib/matcha-slide-toggle/slide-toggle.stories.ts +78 -0
- package/src/lib/matcha-slider/matcha-slider.directive.ts +17 -0
- package/src/lib/matcha-slider/slider.argtypes.ts +76 -0
- package/src/lib/matcha-slider/slider.mdx +45 -0
- package/src/lib/matcha-slider/slider.module.ts +12 -0
- package/src/lib/matcha-slider/slider.stories.ts +149 -0
- package/src/lib/matcha-snackbar/snack-bar-overview-example.component.ts +22 -0
- package/src/lib/matcha-snackbar/snack-bar-overview-example.css +3 -0
- package/src/lib/matcha-snackbar/snack-bar-overview-example.html +11 -0
- package/src/lib/matcha-snackbar/snack-bar.argtypes.ts +11 -0
- package/src/lib/matcha-snackbar/snack-bar.directive.ts +12 -0
- package/src/lib/matcha-snackbar/snack-bar.mdx +53 -0
- package/src/lib/matcha-snackbar/snack-bar.module.ts +10 -0
- package/src/lib/matcha-snackbar/snack-bar.stories.ts +34 -0
- package/src/lib/matcha-sort-header/example/sort-overview-example.component.ts +66 -0
- package/src/lib/matcha-sort-header/example/sort-overview-example.css +3 -0
- package/src/lib/matcha-sort-header/example/sort-overview-example.html +21 -0
- package/src/lib/matcha-sort-header/sort-header.argtypes.ts +11 -0
- package/src/lib/matcha-sort-header/sort-header.directive.ts +17 -0
- package/src/lib/matcha-sort-header/sort-header.mdx +78 -0
- package/src/lib/matcha-sort-header/sort-header.module.ts +10 -0
- package/src/lib/matcha-sort-header/sort-header.stories.ts +34 -0
- package/src/lib/matcha-spin/spin/spin.component.html +27 -0
- package/src/lib/matcha-spin/spin/spin.component.scss +0 -0
- package/src/lib/matcha-spin/spin/spin.component.ts +70 -0
- package/src/lib/matcha-spin/spin.module.ts +16 -0
- package/src/lib/matcha-spin/spin.stories.ts +85 -0
- package/src/lib/matcha-spinner/spinner/spinner.component.html +29 -0
- package/src/lib/matcha-spinner/spinner/spinner.component.scss +1 -0
- package/src/lib/matcha-spinner/spinner/spinner.component.ts +74 -0
- package/src/lib/matcha-spinner/spinner.module.ts +15 -0
- package/src/lib/matcha-spinner/spinner.stories.ts +85 -0
- package/src/lib/matcha-stepper/next-step.diretive.ts +21 -0
- package/src/lib/matcha-stepper/prev-step.diretive.ts +21 -0
- package/src/lib/matcha-stepper/step/step.component.ts +11 -0
- package/src/lib/matcha-stepper/step-content.diretive.ts +9 -0
- package/src/lib/matcha-stepper/stepper/stepper.component.ts +20 -0
- package/src/lib/matcha-stepper/stepper-content/stepper-content.component.ts +38 -0
- package/src/lib/matcha-stepper/stepper-controller/stepper-controller.component.html +8 -0
- package/src/lib/matcha-stepper/stepper-controller/stepper-controller.component.ts +26 -0
- package/src/lib/matcha-stepper/stepper.argtypes.ts +74 -0
- package/src/lib/matcha-stepper/stepper.module.ts +32 -0
- package/src/lib/matcha-stepper/stepper.service.ts +50 -0
- package/src/lib/matcha-stepper/stepper.stories.ts +117 -0
- package/src/lib/matcha-table/example/table-basic-example.component.ts +36 -0
- package/src/lib/matcha-table/example/table-basic-example.css +0 -0
- package/src/lib/matcha-table/example/table-basic-example.html +35 -0
- package/src/lib/matcha-table/table.argtypes.ts +11 -0
- package/src/lib/matcha-table/table.directive.ts +17 -0
- package/src/lib/matcha-table/table.mdx +78 -0
- package/src/lib/matcha-table/table.module.ts +10 -0
- package/src/lib/matcha-table/table.stories.ts +34 -0
- package/src/lib/matcha-tabs/tab-item/tab-item.component.html +1 -0
- package/src/lib/matcha-tabs/tab-item/tab-item.component.scss +0 -0
- package/src/lib/matcha-tabs/tab-item/tab-item.component.ts +19 -0
- package/src/lib/matcha-tabs/tabs/tabs.component.html +22 -0
- package/src/lib/matcha-tabs/tabs/tabs.component.scss +0 -0
- package/src/lib/matcha-tabs/tabs/tabs.component.ts +58 -0
- package/src/lib/matcha-tabs/tabs.module.ts +19 -0
- package/src/lib/matcha-tabs/tabs.stories.ts +98 -0
- package/src/lib/matcha-time/time/time.component.html +3 -0
- package/src/lib/matcha-time/time/time.component.scss +0 -0
- package/src/lib/matcha-time/time/time.component.ts +141 -0
- package/src/lib/matcha-time/time.module.ts +14 -0
- package/src/lib/matcha-time/time.stories.ts +244 -0
- package/src/lib/matcha-title/title/title.component.html +8 -0
- package/src/lib/matcha-title/title/title.component.scss +5 -0
- package/src/lib/matcha-title/title/title.component.ts +73 -0
- package/src/lib/matcha-title/title.argtypes.ts +69 -0
- package/src/lib/matcha-title/title.module.ts +10 -0
- package/src/lib/matcha-title/title.stories.ts +132 -0
- package/src/lib/matcha-toolbar/toolbar/toolbar.component.html +54 -0
- package/src/lib/matcha-toolbar/toolbar/toolbar.component.scss +0 -0
- package/src/lib/matcha-toolbar/toolbar/toolbar.component.ts +43 -0
- package/src/lib/matcha-toolbar/toolbar-button/toolbar-button.component.html +8 -0
- package/src/lib/matcha-toolbar/toolbar-button/toolbar-button.component.scss +0 -0
- package/src/lib/matcha-toolbar/toolbar-button/toolbar-button.component.ts +21 -0
- package/src/lib/matcha-toolbar/toolbar-content/toolbar-content.component.html +8 -0
- package/src/lib/matcha-toolbar/toolbar-content/toolbar-content.component.scss +0 -0
- package/src/lib/matcha-toolbar/toolbar-content/toolbar-content.component.ts +9 -0
- package/src/lib/matcha-toolbar/toolbar-custom-button/toolbar-custom-button.component.html +6 -0
- package/src/lib/matcha-toolbar/toolbar-custom-button/toolbar-custom-button.component.scss +0 -0
- package/src/lib/matcha-toolbar/toolbar-custom-button/toolbar-custom-button.component.ts +10 -0
- package/src/lib/matcha-toolbar/toolbar-main-button/toolbar-main-button.component.html +11 -0
- package/src/lib/matcha-toolbar/toolbar-main-button/toolbar-main-button.component.scss +0 -0
- package/src/lib/matcha-toolbar/toolbar-main-button/toolbar-main-button.component.ts +15 -0
- package/src/lib/matcha-toolbar/toolbar.argtypes.ts +27 -0
- package/src/lib/matcha-toolbar/toolbar.module.ts +36 -0
- package/src/lib/matcha-toolbar/toolbar.stories.ts +131 -0
- package/src/lib/matcha-tooltip/tooltip.argtypes.ts +58 -0
- package/src/lib/matcha-tooltip/tooltip.directive.ts +158 -0
- package/src/lib/matcha-tooltip/tooltip.module.ts +11 -0
- package/src/lib/matcha-tooltip/tooltip.stories.ts +259 -0
- package/src/lib/postcss.config.js +6 -0
- package/src/public-api.ts +180 -0
- package/tsconfig.lib.json +18 -0
- package/tsconfig.lib.prod.json +10 -0
- package/tsconfig.spec.json +14 -0
- package/fesm2022/matcha-components.mjs +0 -6792
- package/fesm2022/matcha-components.mjs.map +0 -1
- package/index.d.ts +0 -1800
|
@@ -0,0 +1,1031 @@
|
|
|
1
|
+
{
|
|
2
|
+
"core": {
|
|
3
|
+
"meta": {
|
|
4
|
+
"path": "components/prism-core.js",
|
|
5
|
+
"option": "mandatory"
|
|
6
|
+
},
|
|
7
|
+
"core": "Core"
|
|
8
|
+
},
|
|
9
|
+
"themes": {
|
|
10
|
+
"meta": {
|
|
11
|
+
"path": "themes/{id}.css",
|
|
12
|
+
"link": "index.html?theme={id}",
|
|
13
|
+
"exclusive": true
|
|
14
|
+
},
|
|
15
|
+
"prism": {
|
|
16
|
+
"title": "Default",
|
|
17
|
+
"option": "default"
|
|
18
|
+
},
|
|
19
|
+
"prism-dark": "Dark",
|
|
20
|
+
"prism-funky": "Funky",
|
|
21
|
+
"prism-okaidia": {
|
|
22
|
+
"title": "Okaidia",
|
|
23
|
+
"owner": "ocodia"
|
|
24
|
+
},
|
|
25
|
+
"prism-twilight": {
|
|
26
|
+
"title": "Twilight",
|
|
27
|
+
"owner": "remybach"
|
|
28
|
+
},
|
|
29
|
+
"prism-coy": {
|
|
30
|
+
"title": "Coy",
|
|
31
|
+
"owner": "tshedor"
|
|
32
|
+
},
|
|
33
|
+
"prism-solarizedlight": {
|
|
34
|
+
"title": "Solarized Light",
|
|
35
|
+
"owner": "hectormatos2011 "
|
|
36
|
+
},
|
|
37
|
+
"prism-tomorrow": {
|
|
38
|
+
"title": "Tomorrow Night",
|
|
39
|
+
"owner": "Rosey"
|
|
40
|
+
}
|
|
41
|
+
},
|
|
42
|
+
"languages": {
|
|
43
|
+
"meta": {
|
|
44
|
+
"path": "components/prism-{id}",
|
|
45
|
+
"noCSS": true,
|
|
46
|
+
"examplesPath": "examples/prism-{id}",
|
|
47
|
+
"addCheckAll": true
|
|
48
|
+
},
|
|
49
|
+
"markup": {
|
|
50
|
+
"title": "Markup",
|
|
51
|
+
"alias": ["html", "xml", "svg", "mathml"],
|
|
52
|
+
"aliasTitles": {
|
|
53
|
+
"html": "HTML",
|
|
54
|
+
"xml": "XML",
|
|
55
|
+
"svg": "SVG",
|
|
56
|
+
"mathml": "MathML"
|
|
57
|
+
},
|
|
58
|
+
"option": "default"
|
|
59
|
+
},
|
|
60
|
+
"css": {
|
|
61
|
+
"title": "CSS",
|
|
62
|
+
"option": "default",
|
|
63
|
+
"peerDependencies": "markup"
|
|
64
|
+
},
|
|
65
|
+
"clike": {
|
|
66
|
+
"title": "C-like",
|
|
67
|
+
"option": "default",
|
|
68
|
+
"overrideExampleHeader": true
|
|
69
|
+
},
|
|
70
|
+
"javascript": {
|
|
71
|
+
"title": "JavaScript",
|
|
72
|
+
"require": "clike",
|
|
73
|
+
"peerDependencies": "markup",
|
|
74
|
+
"alias": "js",
|
|
75
|
+
"option": "default"
|
|
76
|
+
},
|
|
77
|
+
"abap": {
|
|
78
|
+
"title": "ABAP",
|
|
79
|
+
"owner": "dellagustin"
|
|
80
|
+
},
|
|
81
|
+
"abnf": {
|
|
82
|
+
"title": "Augmented Backus–Naur form",
|
|
83
|
+
"owner": "RunDevelopment"
|
|
84
|
+
},
|
|
85
|
+
"actionscript": {
|
|
86
|
+
"title": "ActionScript",
|
|
87
|
+
"require": "javascript",
|
|
88
|
+
"peerDependencies": "markup",
|
|
89
|
+
"owner": "Golmote"
|
|
90
|
+
},
|
|
91
|
+
"ada": {
|
|
92
|
+
"title": "Ada",
|
|
93
|
+
"owner": "Lucretia"
|
|
94
|
+
},
|
|
95
|
+
"apacheconf": {
|
|
96
|
+
"title": "Apache Configuration",
|
|
97
|
+
"owner": "GuiTeK"
|
|
98
|
+
},
|
|
99
|
+
"apl": {
|
|
100
|
+
"title": "APL",
|
|
101
|
+
"owner": "ngn"
|
|
102
|
+
},
|
|
103
|
+
"applescript": {
|
|
104
|
+
"title": "AppleScript",
|
|
105
|
+
"owner": "Golmote"
|
|
106
|
+
},
|
|
107
|
+
"arduino": {
|
|
108
|
+
"title": "Arduino",
|
|
109
|
+
"require": "cpp",
|
|
110
|
+
"owner": "eisbehr-"
|
|
111
|
+
},
|
|
112
|
+
"arff": {
|
|
113
|
+
"title": "ARFF",
|
|
114
|
+
"owner": "Golmote"
|
|
115
|
+
},
|
|
116
|
+
"asciidoc": {
|
|
117
|
+
"alias": "adoc",
|
|
118
|
+
"title": "AsciiDoc",
|
|
119
|
+
"owner": "Golmote"
|
|
120
|
+
},
|
|
121
|
+
"asm6502": {
|
|
122
|
+
"title": "6502 Assembly",
|
|
123
|
+
"owner": "kzurawel"
|
|
124
|
+
},
|
|
125
|
+
"aspnet": {
|
|
126
|
+
"title": "ASP.NET (C#)",
|
|
127
|
+
"require": ["markup", "csharp"],
|
|
128
|
+
"owner": "nauzilus"
|
|
129
|
+
},
|
|
130
|
+
"autohotkey": {
|
|
131
|
+
"title": "AutoHotkey",
|
|
132
|
+
"owner": "aviaryan"
|
|
133
|
+
},
|
|
134
|
+
"autoit": {
|
|
135
|
+
"title": "AutoIt",
|
|
136
|
+
"owner": "Golmote"
|
|
137
|
+
},
|
|
138
|
+
"bash": {
|
|
139
|
+
"title": "Bash",
|
|
140
|
+
"alias": "shell",
|
|
141
|
+
"aliasTitles": {
|
|
142
|
+
"shell": "Shell"
|
|
143
|
+
},
|
|
144
|
+
"owner": "zeitgeist87"
|
|
145
|
+
},
|
|
146
|
+
"basic": {
|
|
147
|
+
"title": "BASIC",
|
|
148
|
+
"owner": "Golmote"
|
|
149
|
+
},
|
|
150
|
+
"batch": {
|
|
151
|
+
"title": "Batch",
|
|
152
|
+
"owner": "Golmote"
|
|
153
|
+
},
|
|
154
|
+
"bison": {
|
|
155
|
+
"title": "Bison",
|
|
156
|
+
"require": "c",
|
|
157
|
+
"owner": "Golmote"
|
|
158
|
+
},
|
|
159
|
+
"bnf": {
|
|
160
|
+
"title": "Backus–Naur form",
|
|
161
|
+
"alias": "rbnf",
|
|
162
|
+
"aliasTitles": {
|
|
163
|
+
"rbnf": "Routing Backus–Naur form"
|
|
164
|
+
},
|
|
165
|
+
"owner": "RunDevelopment"
|
|
166
|
+
},
|
|
167
|
+
"brainfuck": {
|
|
168
|
+
"title": "Brainfuck",
|
|
169
|
+
"owner": "Golmote"
|
|
170
|
+
},
|
|
171
|
+
"bro": {
|
|
172
|
+
"title": "Bro",
|
|
173
|
+
"owner": "wayward710"
|
|
174
|
+
},
|
|
175
|
+
"c": {
|
|
176
|
+
"title": "C",
|
|
177
|
+
"require": "clike",
|
|
178
|
+
"owner": "zeitgeist87"
|
|
179
|
+
},
|
|
180
|
+
"csharp": {
|
|
181
|
+
"title": "C#",
|
|
182
|
+
"require": "clike",
|
|
183
|
+
"alias": "dotnet",
|
|
184
|
+
"owner": "mvalipour"
|
|
185
|
+
},
|
|
186
|
+
"cpp": {
|
|
187
|
+
"title": "C++",
|
|
188
|
+
"require": "c",
|
|
189
|
+
"owner": "zeitgeist87"
|
|
190
|
+
},
|
|
191
|
+
"cil": {
|
|
192
|
+
"title": "CIL",
|
|
193
|
+
"owner": "sbrl"
|
|
194
|
+
},
|
|
195
|
+
"coffeescript": {
|
|
196
|
+
"title": "CoffeeScript",
|
|
197
|
+
"require": "javascript",
|
|
198
|
+
"alias": "coffee",
|
|
199
|
+
"owner": "R-osey"
|
|
200
|
+
},
|
|
201
|
+
"cmake": {
|
|
202
|
+
"title": "CMake",
|
|
203
|
+
"owner": "mjrogozinski"
|
|
204
|
+
},
|
|
205
|
+
"clojure": {
|
|
206
|
+
"title": "Clojure",
|
|
207
|
+
"owner": "troglotit"
|
|
208
|
+
},
|
|
209
|
+
"crystal": {
|
|
210
|
+
"title": "Crystal",
|
|
211
|
+
"require": "ruby",
|
|
212
|
+
"owner": "MakeNowJust"
|
|
213
|
+
},
|
|
214
|
+
"csp": {
|
|
215
|
+
"title": "Content-Security-Policy",
|
|
216
|
+
"owner": "ScottHelme"
|
|
217
|
+
},
|
|
218
|
+
"css-extras": {
|
|
219
|
+
"title": "CSS Extras",
|
|
220
|
+
"require": "css",
|
|
221
|
+
"owner": "milesj"
|
|
222
|
+
},
|
|
223
|
+
"d": {
|
|
224
|
+
"title": "D",
|
|
225
|
+
"require": "clike",
|
|
226
|
+
"owner": "Golmote"
|
|
227
|
+
},
|
|
228
|
+
"dart": {
|
|
229
|
+
"title": "Dart",
|
|
230
|
+
"require": "clike",
|
|
231
|
+
"owner": "Golmote"
|
|
232
|
+
},
|
|
233
|
+
"diff": {
|
|
234
|
+
"title": "Diff",
|
|
235
|
+
"owner": "uranusjr"
|
|
236
|
+
},
|
|
237
|
+
"django": {
|
|
238
|
+
"title": "Django/Jinja2",
|
|
239
|
+
"require": "markup-templating",
|
|
240
|
+
"alias": "jinja2",
|
|
241
|
+
"owner": "romanvm"
|
|
242
|
+
},
|
|
243
|
+
"docker": {
|
|
244
|
+
"title": "Docker",
|
|
245
|
+
"alias": "dockerfile",
|
|
246
|
+
"owner": "JustinBeckwith"
|
|
247
|
+
},
|
|
248
|
+
"ebnf": {
|
|
249
|
+
"title": "Extended Backus–Naur form",
|
|
250
|
+
"owner": "RunDevelopment"
|
|
251
|
+
},
|
|
252
|
+
"eiffel": {
|
|
253
|
+
"title": "Eiffel",
|
|
254
|
+
"owner": "Conaclos"
|
|
255
|
+
},
|
|
256
|
+
"ejs": {
|
|
257
|
+
"title": "EJS",
|
|
258
|
+
"require": ["javascript", "markup-templating"],
|
|
259
|
+
"owner": "RunDevelopment"
|
|
260
|
+
},
|
|
261
|
+
"elixir": {
|
|
262
|
+
"title": "Elixir",
|
|
263
|
+
"owner": "Golmote"
|
|
264
|
+
},
|
|
265
|
+
"elm": {
|
|
266
|
+
"title": "Elm",
|
|
267
|
+
"owner": "zwilias"
|
|
268
|
+
},
|
|
269
|
+
"erb": {
|
|
270
|
+
"title": "ERB",
|
|
271
|
+
"require": ["ruby", "markup-templating"],
|
|
272
|
+
"owner": "Golmote"
|
|
273
|
+
},
|
|
274
|
+
"erlang": {
|
|
275
|
+
"title": "Erlang",
|
|
276
|
+
"owner": "Golmote"
|
|
277
|
+
},
|
|
278
|
+
"fsharp": {
|
|
279
|
+
"title": "F#",
|
|
280
|
+
"require": "clike",
|
|
281
|
+
"owner": "simonreynolds7"
|
|
282
|
+
},
|
|
283
|
+
"flow": {
|
|
284
|
+
"title": "Flow",
|
|
285
|
+
"require": "javascript",
|
|
286
|
+
"owner": "Golmote"
|
|
287
|
+
},
|
|
288
|
+
"fortran": {
|
|
289
|
+
"title": "Fortran",
|
|
290
|
+
"owner": "Golmote"
|
|
291
|
+
},
|
|
292
|
+
"gcode": {
|
|
293
|
+
"title": "G-code",
|
|
294
|
+
"owner": "RunDevelopment"
|
|
295
|
+
},
|
|
296
|
+
"gedcom": {
|
|
297
|
+
"title": "GEDCOM",
|
|
298
|
+
"owner": "Golmote"
|
|
299
|
+
},
|
|
300
|
+
"gherkin": {
|
|
301
|
+
"title": "Gherkin",
|
|
302
|
+
"owner": "hason"
|
|
303
|
+
},
|
|
304
|
+
"git": {
|
|
305
|
+
"title": "Git",
|
|
306
|
+
"owner": "lgiraudel"
|
|
307
|
+
},
|
|
308
|
+
"glsl": {
|
|
309
|
+
"title": "GLSL",
|
|
310
|
+
"require": "clike",
|
|
311
|
+
"owner": "Golmote"
|
|
312
|
+
},
|
|
313
|
+
"gml": {
|
|
314
|
+
"title": "GameMaker Language",
|
|
315
|
+
"alias": "gamemakerlanguage",
|
|
316
|
+
"require": "clike",
|
|
317
|
+
"owner": "LiarOnce"
|
|
318
|
+
},
|
|
319
|
+
"go": {
|
|
320
|
+
"title": "Go",
|
|
321
|
+
"require": "clike",
|
|
322
|
+
"owner": "arnehormann"
|
|
323
|
+
},
|
|
324
|
+
"graphql": {
|
|
325
|
+
"title": "GraphQL",
|
|
326
|
+
"owner": "Golmote"
|
|
327
|
+
},
|
|
328
|
+
"groovy": {
|
|
329
|
+
"title": "Groovy",
|
|
330
|
+
"require": "clike",
|
|
331
|
+
"owner": "robfletcher"
|
|
332
|
+
},
|
|
333
|
+
"haml": {
|
|
334
|
+
"title": "Haml",
|
|
335
|
+
"require": "ruby",
|
|
336
|
+
"peerDependencies": [
|
|
337
|
+
"css",
|
|
338
|
+
"coffeescript",
|
|
339
|
+
"erb",
|
|
340
|
+
"javascript",
|
|
341
|
+
"less",
|
|
342
|
+
"markdown",
|
|
343
|
+
"ruby",
|
|
344
|
+
"scss",
|
|
345
|
+
"textile"
|
|
346
|
+
],
|
|
347
|
+
"owner": "Golmote"
|
|
348
|
+
},
|
|
349
|
+
"handlebars": {
|
|
350
|
+
"title": "Handlebars",
|
|
351
|
+
"require": "markup-templating",
|
|
352
|
+
"owner": "Golmote"
|
|
353
|
+
},
|
|
354
|
+
"haskell": {
|
|
355
|
+
"title": "Haskell",
|
|
356
|
+
"alias": "hs",
|
|
357
|
+
"owner": "bholst"
|
|
358
|
+
},
|
|
359
|
+
"haxe": {
|
|
360
|
+
"title": "Haxe",
|
|
361
|
+
"require": "clike",
|
|
362
|
+
"owner": "Golmote"
|
|
363
|
+
},
|
|
364
|
+
"hcl": {
|
|
365
|
+
"title": "HCL",
|
|
366
|
+
"owner": "outsideris"
|
|
367
|
+
},
|
|
368
|
+
"http": {
|
|
369
|
+
"title": "HTTP",
|
|
370
|
+
"peerDependencies": [
|
|
371
|
+
"javascript",
|
|
372
|
+
"markup"
|
|
373
|
+
],
|
|
374
|
+
"owner": "danielgtaylor"
|
|
375
|
+
},
|
|
376
|
+
"hpkp": {
|
|
377
|
+
"title": "HTTP Public-Key-Pins",
|
|
378
|
+
"owner": "ScottHelme"
|
|
379
|
+
},
|
|
380
|
+
"hsts": {
|
|
381
|
+
"title": "HTTP Strict-Transport-Security",
|
|
382
|
+
"owner": "ScottHelme"
|
|
383
|
+
},
|
|
384
|
+
"ichigojam": {
|
|
385
|
+
"title": "IchigoJam",
|
|
386
|
+
"owner": "BlueCocoa"
|
|
387
|
+
},
|
|
388
|
+
"icon": {
|
|
389
|
+
"title": "Icon",
|
|
390
|
+
"owner": "Golmote"
|
|
391
|
+
},
|
|
392
|
+
"inform7": {
|
|
393
|
+
"title": "Inform 7",
|
|
394
|
+
"owner": "Golmote"
|
|
395
|
+
},
|
|
396
|
+
"ini": {
|
|
397
|
+
"title": "Ini",
|
|
398
|
+
"owner": "aviaryan"
|
|
399
|
+
},
|
|
400
|
+
"io": {
|
|
401
|
+
"title": "Io",
|
|
402
|
+
"owner": "AlesTsurko"
|
|
403
|
+
},
|
|
404
|
+
"j": {
|
|
405
|
+
"title": "J",
|
|
406
|
+
"owner": "Golmote"
|
|
407
|
+
},
|
|
408
|
+
"java": {
|
|
409
|
+
"title": "Java",
|
|
410
|
+
"require": "clike",
|
|
411
|
+
"owner": "sherblot"
|
|
412
|
+
},
|
|
413
|
+
"javadoc": {
|
|
414
|
+
"title": "JavaDoc",
|
|
415
|
+
"require": ["markup", "java", "javadoclike"],
|
|
416
|
+
"peerDependencies": [
|
|
417
|
+
"scala"
|
|
418
|
+
],
|
|
419
|
+
"owner": "RunDevelopment"
|
|
420
|
+
},
|
|
421
|
+
"javadoclike": {
|
|
422
|
+
"title": "JavaDoc-like",
|
|
423
|
+
"peerDependencies": [
|
|
424
|
+
"java",
|
|
425
|
+
"javascript",
|
|
426
|
+
"php"
|
|
427
|
+
],
|
|
428
|
+
"owner": "RunDevelopment"
|
|
429
|
+
},
|
|
430
|
+
"javastacktrace": {
|
|
431
|
+
"title": "Java stack trace",
|
|
432
|
+
"owner": "RunDevelopment"
|
|
433
|
+
},
|
|
434
|
+
"jolie": {
|
|
435
|
+
"title": "Jolie",
|
|
436
|
+
"require": "clike",
|
|
437
|
+
"owner": "thesave"
|
|
438
|
+
},
|
|
439
|
+
"jsdoc": {
|
|
440
|
+
"title": "JSDoc",
|
|
441
|
+
"require": ["javascript", "javadoclike"],
|
|
442
|
+
"peerDependencies": [
|
|
443
|
+
"actionscript",
|
|
444
|
+
"coffeescript"
|
|
445
|
+
],
|
|
446
|
+
"owner": "RunDevelopment"
|
|
447
|
+
},
|
|
448
|
+
"js-extras": {
|
|
449
|
+
"title": "JS Extras",
|
|
450
|
+
"require": "javascript",
|
|
451
|
+
"peerDependencies": [
|
|
452
|
+
"actionscript",
|
|
453
|
+
"coffeescript",
|
|
454
|
+
"flow",
|
|
455
|
+
"n4js",
|
|
456
|
+
"typescript"
|
|
457
|
+
],
|
|
458
|
+
"owner": "RunDevelopment"
|
|
459
|
+
},
|
|
460
|
+
"json": {
|
|
461
|
+
"title": "JSON",
|
|
462
|
+
"owner": "CupOfTea696"
|
|
463
|
+
},
|
|
464
|
+
"jsonp": {
|
|
465
|
+
"title": "JSONP",
|
|
466
|
+
"require": "json",
|
|
467
|
+
"owner": "RunDevelopment"
|
|
468
|
+
},
|
|
469
|
+
"json5": {
|
|
470
|
+
"title": "JSON5",
|
|
471
|
+
"require": "json",
|
|
472
|
+
"owner": "RunDevelopment"
|
|
473
|
+
},
|
|
474
|
+
"julia": {
|
|
475
|
+
"title": "Julia",
|
|
476
|
+
"owner": "cdagnino"
|
|
477
|
+
},
|
|
478
|
+
"keyman": {
|
|
479
|
+
"title": "Keyman",
|
|
480
|
+
"owner": "mcdurdin"
|
|
481
|
+
},
|
|
482
|
+
"kotlin": {
|
|
483
|
+
"title": "Kotlin",
|
|
484
|
+
"require": "clike",
|
|
485
|
+
"owner": "Golmote"
|
|
486
|
+
},
|
|
487
|
+
"latex": {
|
|
488
|
+
"title": "LaTeX",
|
|
489
|
+
"owner": "japborst"
|
|
490
|
+
},
|
|
491
|
+
"less": {
|
|
492
|
+
"title": "Less",
|
|
493
|
+
"require": "css",
|
|
494
|
+
"owner": "Golmote"
|
|
495
|
+
},
|
|
496
|
+
"liquid": {
|
|
497
|
+
"title": "Liquid",
|
|
498
|
+
"owner": "cinhtau"
|
|
499
|
+
},
|
|
500
|
+
"lisp": {
|
|
501
|
+
"title": "Lisp",
|
|
502
|
+
"alias": ["emacs", "elisp", "emacs-lisp"],
|
|
503
|
+
"owner": "JuanCaicedo"
|
|
504
|
+
},
|
|
505
|
+
"livescript": {
|
|
506
|
+
"title": "LiveScript",
|
|
507
|
+
"owner": "Golmote"
|
|
508
|
+
},
|
|
509
|
+
"lolcode": {
|
|
510
|
+
"title": "LOLCODE",
|
|
511
|
+
"owner": "Golmote"
|
|
512
|
+
},
|
|
513
|
+
"lua": {
|
|
514
|
+
"title": "Lua",
|
|
515
|
+
"owner": "Golmote"
|
|
516
|
+
},
|
|
517
|
+
"makefile": {
|
|
518
|
+
"title": "Makefile",
|
|
519
|
+
"owner": "Golmote"
|
|
520
|
+
},
|
|
521
|
+
"markdown": {
|
|
522
|
+
"title": "Markdown",
|
|
523
|
+
"require": "markup",
|
|
524
|
+
"alias": "md",
|
|
525
|
+
"owner": "Golmote"
|
|
526
|
+
},
|
|
527
|
+
"markup-templating": {
|
|
528
|
+
"title": "Markup templating",
|
|
529
|
+
"require": "markup",
|
|
530
|
+
"owner": "Golmote"
|
|
531
|
+
},
|
|
532
|
+
"matlab": {
|
|
533
|
+
"title": "MATLAB",
|
|
534
|
+
"owner": "Golmote"
|
|
535
|
+
},
|
|
536
|
+
"mel": {
|
|
537
|
+
"title": "MEL",
|
|
538
|
+
"owner": "Golmote"
|
|
539
|
+
},
|
|
540
|
+
"mizar": {
|
|
541
|
+
"title": "Mizar",
|
|
542
|
+
"owner": "Golmote"
|
|
543
|
+
},
|
|
544
|
+
"monkey": {
|
|
545
|
+
"title": "Monkey",
|
|
546
|
+
"owner": "Golmote"
|
|
547
|
+
},
|
|
548
|
+
"n1ql": {
|
|
549
|
+
"title": "N1QL",
|
|
550
|
+
"owner": "TMWilds"
|
|
551
|
+
},
|
|
552
|
+
"n4js": {
|
|
553
|
+
"title": "N4JS",
|
|
554
|
+
"require": "javascript",
|
|
555
|
+
"peerDependencies": [
|
|
556
|
+
"jsdoc"
|
|
557
|
+
],
|
|
558
|
+
"alias": "n4jsd",
|
|
559
|
+
"owner": "bsmith-n4"
|
|
560
|
+
},
|
|
561
|
+
"nand2tetris-hdl": {
|
|
562
|
+
"title": "Nand To Tetris HDL",
|
|
563
|
+
"owner": "stephanmax"
|
|
564
|
+
},
|
|
565
|
+
"nasm": {
|
|
566
|
+
"title": "NASM",
|
|
567
|
+
"owner": "rbmj"
|
|
568
|
+
},
|
|
569
|
+
"nginx": {
|
|
570
|
+
"title": "nginx",
|
|
571
|
+
"owner": "westonganger",
|
|
572
|
+
"require": "clike"
|
|
573
|
+
},
|
|
574
|
+
"nim": {
|
|
575
|
+
"title": "Nim",
|
|
576
|
+
"owner": "Golmote"
|
|
577
|
+
},
|
|
578
|
+
"nix": {
|
|
579
|
+
"title": "Nix",
|
|
580
|
+
"owner": "Golmote"
|
|
581
|
+
},
|
|
582
|
+
"nsis": {
|
|
583
|
+
"title": "NSIS",
|
|
584
|
+
"owner": "idleberg"
|
|
585
|
+
},
|
|
586
|
+
"objectivec": {
|
|
587
|
+
"title": "Objective-C",
|
|
588
|
+
"require": "c",
|
|
589
|
+
"owner": "uranusjr"
|
|
590
|
+
},
|
|
591
|
+
"ocaml": {
|
|
592
|
+
"title": "OCaml",
|
|
593
|
+
"owner": "Golmote"
|
|
594
|
+
},
|
|
595
|
+
"opencl": {
|
|
596
|
+
"title": "OpenCL",
|
|
597
|
+
"require": "cpp",
|
|
598
|
+
"peerDependencies": [
|
|
599
|
+
"c",
|
|
600
|
+
"cpp"
|
|
601
|
+
],
|
|
602
|
+
"overrideExampleHeader": true,
|
|
603
|
+
"owner": "Milania1"
|
|
604
|
+
},
|
|
605
|
+
"oz": {
|
|
606
|
+
"title": "Oz",
|
|
607
|
+
"owner": "Golmote"
|
|
608
|
+
},
|
|
609
|
+
"parigp": {
|
|
610
|
+
"title": "PARI/GP",
|
|
611
|
+
"owner": "Golmote"
|
|
612
|
+
},
|
|
613
|
+
"parser": {
|
|
614
|
+
"title": "Parser",
|
|
615
|
+
"require": "markup",
|
|
616
|
+
"owner": "Golmote"
|
|
617
|
+
},
|
|
618
|
+
"pascal": {
|
|
619
|
+
"title": "Pascal",
|
|
620
|
+
"alias": "objectpascal",
|
|
621
|
+
"aliasTitles": {
|
|
622
|
+
"objectpascal": "Object Pascal"
|
|
623
|
+
},
|
|
624
|
+
"owner": "Golmote"
|
|
625
|
+
},
|
|
626
|
+
"perl": {
|
|
627
|
+
"title": "Perl",
|
|
628
|
+
"owner": "Golmote"
|
|
629
|
+
},
|
|
630
|
+
"php": {
|
|
631
|
+
"title": "PHP",
|
|
632
|
+
"require": ["clike", "markup-templating"],
|
|
633
|
+
"owner": "milesj"
|
|
634
|
+
},
|
|
635
|
+
"phpdoc": {
|
|
636
|
+
"title": "PHPDoc",
|
|
637
|
+
"require": ["php", "javadoclike"],
|
|
638
|
+
"owner": "RunDevelopment"
|
|
639
|
+
},
|
|
640
|
+
"php-extras": {
|
|
641
|
+
"title": "PHP Extras",
|
|
642
|
+
"require": "php",
|
|
643
|
+
"owner": "milesj"
|
|
644
|
+
},
|
|
645
|
+
"plsql": {
|
|
646
|
+
"title": "PL/SQL",
|
|
647
|
+
"require": "sql",
|
|
648
|
+
"owner": "Golmote"
|
|
649
|
+
},
|
|
650
|
+
"powershell": {
|
|
651
|
+
"title": "PowerShell",
|
|
652
|
+
"owner": "nauzilus"
|
|
653
|
+
},
|
|
654
|
+
"processing": {
|
|
655
|
+
"title": "Processing",
|
|
656
|
+
"require": "clike",
|
|
657
|
+
"owner": "Golmote"
|
|
658
|
+
},
|
|
659
|
+
"prolog": {
|
|
660
|
+
"title": "Prolog",
|
|
661
|
+
"owner": "Golmote"
|
|
662
|
+
},
|
|
663
|
+
"properties": {
|
|
664
|
+
"title": ".properties",
|
|
665
|
+
"owner": "Golmote"
|
|
666
|
+
},
|
|
667
|
+
"protobuf": {
|
|
668
|
+
"title": "Protocol Buffers",
|
|
669
|
+
"require": "clike",
|
|
670
|
+
"owner": "just-boris"
|
|
671
|
+
},
|
|
672
|
+
"pug": {
|
|
673
|
+
"title": "Pug",
|
|
674
|
+
"require": ["markup", "javascript"],
|
|
675
|
+
"peerDependencies": [
|
|
676
|
+
"coffeescript",
|
|
677
|
+
"ejs",
|
|
678
|
+
"handlebars",
|
|
679
|
+
"less",
|
|
680
|
+
"livescript",
|
|
681
|
+
"markdown",
|
|
682
|
+
"scss",
|
|
683
|
+
"stylus",
|
|
684
|
+
"twig"
|
|
685
|
+
],
|
|
686
|
+
"owner": "Golmote"
|
|
687
|
+
},
|
|
688
|
+
"puppet": {
|
|
689
|
+
"title": "Puppet",
|
|
690
|
+
"owner": "Golmote"
|
|
691
|
+
},
|
|
692
|
+
"pure": {
|
|
693
|
+
"title": "Pure",
|
|
694
|
+
"peerDependencies": [
|
|
695
|
+
"c",
|
|
696
|
+
"cpp",
|
|
697
|
+
"fortran"
|
|
698
|
+
],
|
|
699
|
+
"owner": "Golmote"
|
|
700
|
+
},
|
|
701
|
+
"python": {
|
|
702
|
+
"title": "Python",
|
|
703
|
+
"alias": "py",
|
|
704
|
+
"owner": "multipetros"
|
|
705
|
+
},
|
|
706
|
+
"q": {
|
|
707
|
+
"title": "Q (kdb+ database)",
|
|
708
|
+
"owner": "Golmote"
|
|
709
|
+
},
|
|
710
|
+
"qore": {
|
|
711
|
+
"title": "Qore",
|
|
712
|
+
"require": "clike",
|
|
713
|
+
"owner": "temnroegg"
|
|
714
|
+
},
|
|
715
|
+
"r": {
|
|
716
|
+
"title": "R",
|
|
717
|
+
"owner": "Golmote"
|
|
718
|
+
},
|
|
719
|
+
"jsx": {
|
|
720
|
+
"title": "React JSX",
|
|
721
|
+
"require": ["markup", "javascript"],
|
|
722
|
+
"peerDependencies": [
|
|
723
|
+
"jsdoc",
|
|
724
|
+
"js-extras"
|
|
725
|
+
],
|
|
726
|
+
"owner": "vkbansal"
|
|
727
|
+
},
|
|
728
|
+
"tsx": {
|
|
729
|
+
"title": "React TSX",
|
|
730
|
+
"require": ["jsx", "typescript"]
|
|
731
|
+
},
|
|
732
|
+
"renpy": {
|
|
733
|
+
"title": "Ren'py",
|
|
734
|
+
"owner": "HyuchiaDiego"
|
|
735
|
+
},
|
|
736
|
+
"reason": {
|
|
737
|
+
"title": "Reason",
|
|
738
|
+
"require": "clike",
|
|
739
|
+
"owner": "Golmote"
|
|
740
|
+
},
|
|
741
|
+
"regex": {
|
|
742
|
+
"title": "Regex",
|
|
743
|
+
"peerDependencies": [
|
|
744
|
+
"actionscript",
|
|
745
|
+
"coffeescript",
|
|
746
|
+
"flow",
|
|
747
|
+
"javascript",
|
|
748
|
+
"typescript",
|
|
749
|
+
"vala"
|
|
750
|
+
],
|
|
751
|
+
"owner": "RunDevelopment"
|
|
752
|
+
},
|
|
753
|
+
"rest": {
|
|
754
|
+
"title": "reST (reStructuredText)",
|
|
755
|
+
"owner": "Golmote"
|
|
756
|
+
},
|
|
757
|
+
"rip": {
|
|
758
|
+
"title": "Rip",
|
|
759
|
+
"owner": "ravinggenius"
|
|
760
|
+
},
|
|
761
|
+
"roboconf": {
|
|
762
|
+
"title": "Roboconf",
|
|
763
|
+
"owner": "Golmote"
|
|
764
|
+
},
|
|
765
|
+
"ruby": {
|
|
766
|
+
"title": "Ruby",
|
|
767
|
+
"require": "clike",
|
|
768
|
+
"alias": "rb",
|
|
769
|
+
"owner": "samflores"
|
|
770
|
+
},
|
|
771
|
+
"rust": {
|
|
772
|
+
"title": "Rust",
|
|
773
|
+
"owner": "Golmote"
|
|
774
|
+
},
|
|
775
|
+
"sas": {
|
|
776
|
+
"title": "SAS",
|
|
777
|
+
"owner": "Golmote"
|
|
778
|
+
},
|
|
779
|
+
"sass": {
|
|
780
|
+
"title": "Sass (Sass)",
|
|
781
|
+
"require": "css",
|
|
782
|
+
"owner": "Golmote"
|
|
783
|
+
},
|
|
784
|
+
"scss": {
|
|
785
|
+
"title": "Sass (Scss)",
|
|
786
|
+
"require": "css",
|
|
787
|
+
"owner": "MoOx"
|
|
788
|
+
},
|
|
789
|
+
"scala": {
|
|
790
|
+
"title": "Scala",
|
|
791
|
+
"require": "java",
|
|
792
|
+
"owner": "jozic"
|
|
793
|
+
},
|
|
794
|
+
"scheme": {
|
|
795
|
+
"title": "Scheme",
|
|
796
|
+
"owner": "bacchus123"
|
|
797
|
+
},
|
|
798
|
+
"smalltalk": {
|
|
799
|
+
"title": "Smalltalk",
|
|
800
|
+
"owner": "Golmote"
|
|
801
|
+
},
|
|
802
|
+
"smarty": {
|
|
803
|
+
"title": "Smarty",
|
|
804
|
+
"require": "markup-templating",
|
|
805
|
+
"owner": "Golmote"
|
|
806
|
+
},
|
|
807
|
+
"sql": {
|
|
808
|
+
"title": "SQL",
|
|
809
|
+
"owner": "multipetros"
|
|
810
|
+
},
|
|
811
|
+
"soy": {
|
|
812
|
+
"title": "Soy (Closure Template)",
|
|
813
|
+
"require": "markup-templating",
|
|
814
|
+
"owner": "Golmote"
|
|
815
|
+
},
|
|
816
|
+
"stylus": {
|
|
817
|
+
"title": "Stylus",
|
|
818
|
+
"owner": "vkbansal"
|
|
819
|
+
},
|
|
820
|
+
"swift": {
|
|
821
|
+
"title": "Swift",
|
|
822
|
+
"require": "clike",
|
|
823
|
+
"owner": "chrischares"
|
|
824
|
+
},
|
|
825
|
+
"tap": {
|
|
826
|
+
"title": "TAP",
|
|
827
|
+
"owner": "isaacs",
|
|
828
|
+
"require": "yaml"
|
|
829
|
+
},
|
|
830
|
+
"tcl": {
|
|
831
|
+
"title": "Tcl",
|
|
832
|
+
"owner": "PeterChaplin"
|
|
833
|
+
},
|
|
834
|
+
"textile": {
|
|
835
|
+
"title": "Textile",
|
|
836
|
+
"require": "markup",
|
|
837
|
+
"peerDependencies": "css",
|
|
838
|
+
"owner": "Golmote"
|
|
839
|
+
},
|
|
840
|
+
"toml": {
|
|
841
|
+
"title": "TOML",
|
|
842
|
+
"owner": "RunDevelopment"
|
|
843
|
+
},
|
|
844
|
+
"tt2": {
|
|
845
|
+
"title": "Template Toolkit 2",
|
|
846
|
+
"require": ["clike", "markup-templating"],
|
|
847
|
+
"owner": "gflohr"
|
|
848
|
+
},
|
|
849
|
+
"twig": {
|
|
850
|
+
"title": "Twig",
|
|
851
|
+
"require": "markup",
|
|
852
|
+
"owner": "brandonkelly"
|
|
853
|
+
},
|
|
854
|
+
"typescript": {
|
|
855
|
+
"title": "TypeScript",
|
|
856
|
+
"require": "javascript",
|
|
857
|
+
"alias": "ts",
|
|
858
|
+
"owner": "vkbansal"
|
|
859
|
+
},
|
|
860
|
+
"t4-cs": {
|
|
861
|
+
"title": "T4 Text Templates (C#)",
|
|
862
|
+
"require": ["t4-templating", "csharp"],
|
|
863
|
+
"alias": "t4",
|
|
864
|
+
"owner": "RunDevelopment"
|
|
865
|
+
},
|
|
866
|
+
"t4-vb": {
|
|
867
|
+
"title": "T4 Text Templates (VB)",
|
|
868
|
+
"require": ["t4-templating", "visual-basic"],
|
|
869
|
+
"owner": "RunDevelopment"
|
|
870
|
+
},
|
|
871
|
+
"t4-templating": {
|
|
872
|
+
"title": "T4 templating",
|
|
873
|
+
"owner": "RunDevelopment"
|
|
874
|
+
},
|
|
875
|
+
"vala": {
|
|
876
|
+
"title": "Vala",
|
|
877
|
+
"require": "clike",
|
|
878
|
+
"owner": "TemplarVolk"
|
|
879
|
+
},
|
|
880
|
+
"vbnet": {
|
|
881
|
+
"title": "VB.Net",
|
|
882
|
+
"require": "basic",
|
|
883
|
+
"owner": "Bigsby"
|
|
884
|
+
},
|
|
885
|
+
"velocity": {
|
|
886
|
+
"title": "Velocity",
|
|
887
|
+
"require": "markup",
|
|
888
|
+
"owner": "Golmote"
|
|
889
|
+
},
|
|
890
|
+
"verilog": {
|
|
891
|
+
"title": "Verilog",
|
|
892
|
+
"owner": "a-rey"
|
|
893
|
+
},
|
|
894
|
+
"vhdl": {
|
|
895
|
+
"title": "VHDL",
|
|
896
|
+
"owner": "a-rey"
|
|
897
|
+
},
|
|
898
|
+
"vim": {
|
|
899
|
+
"title": "vim",
|
|
900
|
+
"owner": "westonganger"
|
|
901
|
+
},
|
|
902
|
+
"visual-basic": {
|
|
903
|
+
"title": "Visual Basic",
|
|
904
|
+
"alias": "vb",
|
|
905
|
+
"owner": "Golmote"
|
|
906
|
+
},
|
|
907
|
+
"wasm": {
|
|
908
|
+
"title": "WebAssembly",
|
|
909
|
+
"owner": "Golmote"
|
|
910
|
+
},
|
|
911
|
+
"wiki": {
|
|
912
|
+
"title": "Wiki markup",
|
|
913
|
+
"require": "markup",
|
|
914
|
+
"owner": "Golmote"
|
|
915
|
+
},
|
|
916
|
+
"xeora": {
|
|
917
|
+
"title": "Xeora",
|
|
918
|
+
"require": "markup",
|
|
919
|
+
"alias": "xeoracube",
|
|
920
|
+
"aliasTitles": {
|
|
921
|
+
"xeoracube": "XeoraCube"
|
|
922
|
+
},
|
|
923
|
+
"owner": "freakmaxi"
|
|
924
|
+
},
|
|
925
|
+
"xojo": {
|
|
926
|
+
"title": "Xojo (REALbasic)",
|
|
927
|
+
"owner": "Golmote"
|
|
928
|
+
},
|
|
929
|
+
"xquery": {
|
|
930
|
+
"title": "XQuery",
|
|
931
|
+
"require": "markup",
|
|
932
|
+
"owner": "Golmote"
|
|
933
|
+
},
|
|
934
|
+
"yaml": {
|
|
935
|
+
"title": "YAML",
|
|
936
|
+
"alias": "yml",
|
|
937
|
+
"owner": "hason"
|
|
938
|
+
}
|
|
939
|
+
},
|
|
940
|
+
"plugins": {
|
|
941
|
+
"meta": {
|
|
942
|
+
"path": "plugins/{id}/prism-{id}",
|
|
943
|
+
"link": "plugins/{id}/"
|
|
944
|
+
},
|
|
945
|
+
"line-highlight": "Line Highlight",
|
|
946
|
+
"line-numbers": {
|
|
947
|
+
"title": "Line Numbers",
|
|
948
|
+
"owner": "kuba-kubula"
|
|
949
|
+
},
|
|
950
|
+
"show-invisibles": {
|
|
951
|
+
"title": "Show Invisibles",
|
|
952
|
+
"after": [
|
|
953
|
+
"autolinker",
|
|
954
|
+
"data-uri-highlight"
|
|
955
|
+
]
|
|
956
|
+
},
|
|
957
|
+
"autolinker": "Autolinker",
|
|
958
|
+
"wpd": "WebPlatform Docs",
|
|
959
|
+
"custom-class": {
|
|
960
|
+
"title": "Custom Class",
|
|
961
|
+
"owner": "dvkndn",
|
|
962
|
+
"noCSS": true
|
|
963
|
+
},
|
|
964
|
+
"file-highlight": {
|
|
965
|
+
"title": "File Highlight",
|
|
966
|
+
"noCSS": true
|
|
967
|
+
},
|
|
968
|
+
"show-language": {
|
|
969
|
+
"title": "Show Language",
|
|
970
|
+
"owner": "nauzilus",
|
|
971
|
+
"noCSS": true,
|
|
972
|
+
"require": "toolbar"
|
|
973
|
+
},
|
|
974
|
+
"jsonp-highlight": {
|
|
975
|
+
"title": "JSONP Highlight",
|
|
976
|
+
"noCSS": true,
|
|
977
|
+
"owner": "nauzilus"
|
|
978
|
+
},
|
|
979
|
+
"highlight-keywords": {
|
|
980
|
+
"title": "Highlight Keywords",
|
|
981
|
+
"owner": "vkbansal",
|
|
982
|
+
"noCSS": true
|
|
983
|
+
},
|
|
984
|
+
"remove-initial-line-feed": {
|
|
985
|
+
"title": "Remove initial line feed",
|
|
986
|
+
"owner": "Golmote",
|
|
987
|
+
"noCSS": true
|
|
988
|
+
},
|
|
989
|
+
"previewers": {
|
|
990
|
+
"title": "Previewers",
|
|
991
|
+
"owner": "Golmote"
|
|
992
|
+
},
|
|
993
|
+
"autoloader": {
|
|
994
|
+
"title": "Autoloader",
|
|
995
|
+
"owner": "Golmote",
|
|
996
|
+
"noCSS": true
|
|
997
|
+
},
|
|
998
|
+
"keep-markup": {
|
|
999
|
+
"title": "Keep Markup",
|
|
1000
|
+
"owner": "Golmote",
|
|
1001
|
+
"after": "normalize-whitespace",
|
|
1002
|
+
"noCSS": true
|
|
1003
|
+
},
|
|
1004
|
+
"command-line": {
|
|
1005
|
+
"title": "Command Line",
|
|
1006
|
+
"owner": "chriswells0"
|
|
1007
|
+
},
|
|
1008
|
+
"unescaped-markup": "Unescaped Markup",
|
|
1009
|
+
"normalize-whitespace": {
|
|
1010
|
+
"title": "Normalize Whitespace",
|
|
1011
|
+
"owner": "zeitgeist87",
|
|
1012
|
+
"after": "unescaped-markup",
|
|
1013
|
+
"noCSS": true
|
|
1014
|
+
},
|
|
1015
|
+
"data-uri-highlight": {
|
|
1016
|
+
"title": "Data-URI Highlight",
|
|
1017
|
+
"owner": "Golmote",
|
|
1018
|
+
"noCSS": true
|
|
1019
|
+
},
|
|
1020
|
+
"toolbar": {
|
|
1021
|
+
"title": "Toolbar",
|
|
1022
|
+
"owner": "mAAdhaTTah"
|
|
1023
|
+
},
|
|
1024
|
+
"copy-to-clipboard": {
|
|
1025
|
+
"title": "Copy to Clipboard Button",
|
|
1026
|
+
"owner": "mAAdhaTTah",
|
|
1027
|
+
"require": "toolbar",
|
|
1028
|
+
"noCSS": true
|
|
1029
|
+
}
|
|
1030
|
+
}
|
|
1031
|
+
}
|