matcha-components 20.12.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 -6637
- package/fesm2022/matcha-components.mjs.map +0 -1
- package/index.d.ts +0 -1738
package/index.d.ts
DELETED
|
@@ -1,1738 +0,0 @@
|
|
|
1
|
-
import * as i0 from '@angular/core';
|
|
2
|
-
import { OnInit, OnChanges, EventEmitter, SimpleChanges, AfterContentInit, OnDestroy, QueryList, ElementRef, Renderer2, TemplateRef, ChangeDetectorRef, AfterViewInit, NgZone, ApplicationRef, Injector, RendererFactory2, Type, ComponentRef } from '@angular/core';
|
|
3
|
-
import * as rxjs from 'rxjs';
|
|
4
|
-
import { Observable } from 'rxjs';
|
|
5
|
-
import * as i3 from '@angular/forms';
|
|
6
|
-
import { FormControlName, ControlValueAccessor, NgControl } from '@angular/forms';
|
|
7
|
-
import * as i2 from '@angular/common';
|
|
8
|
-
|
|
9
|
-
/**
|
|
10
|
-
* Interface que deve ser implementada por componentes que querem usar matcha-option como filho
|
|
11
|
-
*
|
|
12
|
-
* Permite que matcha-option seja usado em diferentes contextos:
|
|
13
|
-
* - matcha-autocomplete
|
|
14
|
-
* - matcha-select
|
|
15
|
-
* - matcha-menu
|
|
16
|
-
* - etc.
|
|
17
|
-
*/
|
|
18
|
-
interface MatchaOptionParent {
|
|
19
|
-
/**
|
|
20
|
-
* Método chamado quando uma opção é selecionada
|
|
21
|
-
* @param option - A instância do MatchaOptionComponent selecionado
|
|
22
|
-
*/
|
|
23
|
-
selectOption(option: any): void;
|
|
24
|
-
}
|
|
25
|
-
/**
|
|
26
|
-
* Token de injeção para MatchaOptionParent
|
|
27
|
-
* Usado para injetar o componente pai no matcha-option
|
|
28
|
-
*/
|
|
29
|
-
declare const MATCHA_OPTION_PARENT: unique symbol;
|
|
30
|
-
|
|
31
|
-
declare class MatchaAccordionItemComponent implements OnInit, OnChanges {
|
|
32
|
-
private _stretch;
|
|
33
|
-
private _isOpen;
|
|
34
|
-
set stretch(value: boolean | string);
|
|
35
|
-
get stretch(): boolean;
|
|
36
|
-
get stretchClass(): boolean;
|
|
37
|
-
private _clickableHeader;
|
|
38
|
-
set clickableHeader(value: boolean | string);
|
|
39
|
-
get clickableHeader(): boolean;
|
|
40
|
-
set isOpen(value: boolean | string);
|
|
41
|
-
get isOpen(): boolean;
|
|
42
|
-
get isOpenClass(): boolean;
|
|
43
|
-
opened: EventEmitter<boolean>;
|
|
44
|
-
toggleRequested: EventEmitter<void>;
|
|
45
|
-
ngOnInit(): void;
|
|
46
|
-
ngOnChanges(changes: SimpleChanges): void;
|
|
47
|
-
toggleAccordion(): void;
|
|
48
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<MatchaAccordionItemComponent, never>;
|
|
49
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<MatchaAccordionItemComponent, "matcha-accordion-item", never, { "stretch": { "alias": "stretch"; "required": false; }; "clickableHeader": { "alias": "clickableHeader"; "required": false; }; "isOpen": { "alias": "isOpen"; "required": false; }; }, { "opened": "opened"; "toggleRequested": "toggleRequested"; }, never, ["matcha-accordion-header", "matcha-accordion-content", "*"], false, never>;
|
|
50
|
-
}
|
|
51
|
-
|
|
52
|
-
declare class MatchaAccordionComponent implements AfterContentInit, OnDestroy {
|
|
53
|
-
private _multiple;
|
|
54
|
-
set multiple(value: boolean | string);
|
|
55
|
-
get multiple(): boolean;
|
|
56
|
-
openedChange: EventEmitter<boolean>;
|
|
57
|
-
items: QueryList<MatchaAccordionItemComponent>;
|
|
58
|
-
private subscriptions;
|
|
59
|
-
ngAfterContentInit(): void;
|
|
60
|
-
ngOnDestroy(): void;
|
|
61
|
-
private setupItems;
|
|
62
|
-
toggleItem(selectedItem: MatchaAccordionItemComponent): void;
|
|
63
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<MatchaAccordionComponent, never>;
|
|
64
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<MatchaAccordionComponent, "matcha-accordion", never, { "multiple": { "alias": "multiple"; "required": false; }; }, { "openedChange": "openedChange"; }, ["items"], ["*"], false, never>;
|
|
65
|
-
}
|
|
66
|
-
|
|
67
|
-
declare class MatchaAccordionHeaderComponent {
|
|
68
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<MatchaAccordionHeaderComponent, never>;
|
|
69
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<MatchaAccordionHeaderComponent, "matcha-accordion-header", never, {}, {}, never, ["*"], false, never>;
|
|
70
|
-
}
|
|
71
|
-
|
|
72
|
-
declare class MatchaAccordionContentComponent {
|
|
73
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<MatchaAccordionContentComponent, never>;
|
|
74
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<MatchaAccordionContentComponent, "matcha-accordion-content", never, {}, {}, never, ["*"], false, never>;
|
|
75
|
-
}
|
|
76
|
-
|
|
77
|
-
declare class MatchaInfiniteScrollComponent implements OnInit, OnDestroy {
|
|
78
|
-
private element;
|
|
79
|
-
scrolledToEnd: EventEmitter<void>;
|
|
80
|
-
private observer;
|
|
81
|
-
constructor(element: ElementRef);
|
|
82
|
-
ngOnInit(): void;
|
|
83
|
-
ngOnDestroy(): void;
|
|
84
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<MatchaInfiniteScrollComponent, never>;
|
|
85
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<MatchaInfiniteScrollComponent, "matcha-infinite-scroll", never, {}, { "scrolledToEnd": "scrolledToEnd"; }, never, never, false, never>;
|
|
86
|
-
}
|
|
87
|
-
|
|
88
|
-
declare class MatchaInfiniteScrollDataComponent implements OnInit, OnDestroy, OnChanges {
|
|
89
|
-
private element;
|
|
90
|
-
/**
|
|
91
|
-
* Função que carrega os dados com base no número da página.
|
|
92
|
-
* Deve retornar um Observable com um array de itens.
|
|
93
|
-
*/
|
|
94
|
-
loadData: (page: number) => Observable<any[]>;
|
|
95
|
-
/**
|
|
96
|
-
* Lista inicial (opcional) para iniciar a agregação.
|
|
97
|
-
*/
|
|
98
|
-
initialList: any[];
|
|
99
|
-
/**
|
|
100
|
-
* Threshold para o Intersection Observer (padrão: 0.1 = 10% do elemento visível).
|
|
101
|
-
*/
|
|
102
|
-
threshold: number;
|
|
103
|
-
/**
|
|
104
|
-
* Chave para resetar a diretiva (para componentes como select).
|
|
105
|
-
*/
|
|
106
|
-
resetKey: any;
|
|
107
|
-
/**
|
|
108
|
-
* Novo input para o autocomplete, onde será aplicado o debounce.
|
|
109
|
-
*/
|
|
110
|
-
searchTerm: any;
|
|
111
|
-
/**
|
|
112
|
-
* Emite a lista acumulada de itens.
|
|
113
|
-
*/
|
|
114
|
-
aggregatedData: EventEmitter<any[]>;
|
|
115
|
-
/**
|
|
116
|
-
* Emite o item exato, quando a aggregatedData tiver um único item igual ao searchTerm.
|
|
117
|
-
*/
|
|
118
|
-
exactMatch: EventEmitter<any>;
|
|
119
|
-
private aggregatedList;
|
|
120
|
-
private currentPage;
|
|
121
|
-
private observer;
|
|
122
|
-
private dataSubscription;
|
|
123
|
-
private searchSubscription;
|
|
124
|
-
private searchTermSubject;
|
|
125
|
-
constructor(element: ElementRef);
|
|
126
|
-
ngOnInit(): void;
|
|
127
|
-
ngOnChanges(changes: SimpleChanges): void;
|
|
128
|
-
/**
|
|
129
|
-
* Inicializa ou reinicializa a lista agregada e o contador de página.
|
|
130
|
-
*/
|
|
131
|
-
private initialize;
|
|
132
|
-
/**
|
|
133
|
-
* Reseta apenas as assinaturas e o estado dos dados (não a inscrição do searchTerm).
|
|
134
|
-
*/
|
|
135
|
-
private resetData;
|
|
136
|
-
/**
|
|
137
|
-
* Carrega a próxima página de dados utilizando a função loadData.
|
|
138
|
-
*/
|
|
139
|
-
private loadNextPage;
|
|
140
|
-
/**
|
|
141
|
-
* Verifica se a lista agregada possui exatamente um item e se esse item é igual ao searchTerm.
|
|
142
|
-
* Se sim, emite o output exactMatch com esse item.
|
|
143
|
-
*/
|
|
144
|
-
private checkExactMatch;
|
|
145
|
-
ngOnDestroy(): void;
|
|
146
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<MatchaInfiniteScrollDataComponent, never>;
|
|
147
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<MatchaInfiniteScrollDataComponent, "matcha-infinite-scroll-data", never, { "loadData": { "alias": "loadData"; "required": false; }; "initialList": { "alias": "initialList"; "required": false; }; "threshold": { "alias": "threshold"; "required": false; }; "resetKey": { "alias": "resetKey"; "required": false; }; "searchTerm": { "alias": "searchTerm"; "required": false; }; }, { "aggregatedData": "aggregatedData"; "exactMatch": "exactMatch"; }, never, never, false, never>;
|
|
148
|
-
}
|
|
149
|
-
|
|
150
|
-
declare class MatchaLazyloadComponent implements OnInit, OnDestroy {
|
|
151
|
-
private element;
|
|
152
|
-
scrolledToEnd: EventEmitter<void>;
|
|
153
|
-
private observer;
|
|
154
|
-
constructor(element: ElementRef);
|
|
155
|
-
ngOnInit(): void;
|
|
156
|
-
ngOnDestroy(): void;
|
|
157
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<MatchaLazyloadComponent, never>;
|
|
158
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<MatchaLazyloadComponent, "matcha-lazyload", never, {}, { "scrolledToEnd": "scrolledToEnd"; }, never, ["*"], false, never>;
|
|
159
|
-
}
|
|
160
|
-
|
|
161
|
-
declare class MatchaLazyloadDataComponent implements OnInit, OnDestroy, OnChanges {
|
|
162
|
-
private element;
|
|
163
|
-
/**
|
|
164
|
-
* Função que carrega os dados com base no número da página.
|
|
165
|
-
* Deve retornar um Observable com um array de itens.
|
|
166
|
-
*/
|
|
167
|
-
loadData: (page: number) => Observable<any[]>;
|
|
168
|
-
/**
|
|
169
|
-
* Lista inicial (opcional) para iniciar a agregação.
|
|
170
|
-
*/
|
|
171
|
-
initialList: any[];
|
|
172
|
-
/**
|
|
173
|
-
* Threshold para o Intersection Observer (padrão: 0.1 = 10% do elemento visível).
|
|
174
|
-
*/
|
|
175
|
-
threshold: number;
|
|
176
|
-
/**
|
|
177
|
-
* Root margin para o Intersection Observer (padrão: '0px').
|
|
178
|
-
* Use valores como '100px' para acionar 100px antes do elemento aparecer.
|
|
179
|
-
* Aceita valores como: '10px', '10px 20px', '10% 5% 0px 5%'
|
|
180
|
-
*/
|
|
181
|
-
rootMargin: string;
|
|
182
|
-
/**
|
|
183
|
-
* Chave para resetar a diretiva (para componentes como select).
|
|
184
|
-
*/
|
|
185
|
-
resetKey: any;
|
|
186
|
-
/**
|
|
187
|
-
* Novo input para o autocomplete, onde será aplicado o debounce.
|
|
188
|
-
*/
|
|
189
|
-
searchTerm: any;
|
|
190
|
-
/**
|
|
191
|
-
* Emite a lista acumulada de itens.
|
|
192
|
-
*/
|
|
193
|
-
aggregatedData: EventEmitter<any[]>;
|
|
194
|
-
/**
|
|
195
|
-
* Emite o item exato, quando a aggregatedData tiver um único item igual ao searchTerm.
|
|
196
|
-
*/
|
|
197
|
-
exactMatch: EventEmitter<any>;
|
|
198
|
-
private aggregatedList;
|
|
199
|
-
private currentPage;
|
|
200
|
-
private observer;
|
|
201
|
-
private dataSubscription;
|
|
202
|
-
private searchSubscription;
|
|
203
|
-
private searchTermSubject;
|
|
204
|
-
constructor(element: ElementRef);
|
|
205
|
-
ngOnInit(): void;
|
|
206
|
-
ngOnChanges(changes: SimpleChanges): void;
|
|
207
|
-
/**
|
|
208
|
-
* Inicializa ou reinicializa a lista agregada e o contador de página.
|
|
209
|
-
*/
|
|
210
|
-
private initialize;
|
|
211
|
-
/**
|
|
212
|
-
* Reseta apenas as assinaturas e o estado dos dados (não a inscrição do searchTerm).
|
|
213
|
-
*/
|
|
214
|
-
private resetData;
|
|
215
|
-
/**
|
|
216
|
-
* Carrega a próxima página de dados utilizando a função loadData.
|
|
217
|
-
*/
|
|
218
|
-
private loadNextPage;
|
|
219
|
-
/**
|
|
220
|
-
* Verifica se a lista agregada possui exatamente um item e se esse item é igual ao searchTerm.
|
|
221
|
-
* Se sim, emite o output exactMatch com esse item.
|
|
222
|
-
*/
|
|
223
|
-
private checkExactMatch;
|
|
224
|
-
ngOnDestroy(): void;
|
|
225
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<MatchaLazyloadDataComponent, never>;
|
|
226
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<MatchaLazyloadDataComponent, "matcha-lazyload-data", never, { "loadData": { "alias": "loadData"; "required": false; }; "initialList": { "alias": "initialList"; "required": false; }; "threshold": { "alias": "threshold"; "required": false; }; "rootMargin": { "alias": "rootMargin"; "required": false; }; "resetKey": { "alias": "resetKey"; "required": false; }; "searchTerm": { "alias": "searchTerm"; "required": false; }; }, { "aggregatedData": "aggregatedData"; "exactMatch": "exactMatch"; }, never, ["*"], false, never>;
|
|
227
|
-
}
|
|
228
|
-
|
|
229
|
-
declare class MatchaButtonComponent implements OnChanges, OnInit {
|
|
230
|
-
private _elementRef;
|
|
231
|
-
private _renderer;
|
|
232
|
-
size: string | null;
|
|
233
|
-
sizeXs: string | null;
|
|
234
|
-
sizeSm: string | null;
|
|
235
|
-
sizeMd: string | null;
|
|
236
|
-
sizeLg: string | null;
|
|
237
|
-
sizeXl: string | null;
|
|
238
|
-
color: string | null;
|
|
239
|
-
get colorAttr(): string | null;
|
|
240
|
-
private _basic;
|
|
241
|
-
get basic(): boolean | string;
|
|
242
|
-
set basic(v: boolean | string);
|
|
243
|
-
private _outline;
|
|
244
|
-
get outline(): boolean | string;
|
|
245
|
-
set outline(v: boolean | string);
|
|
246
|
-
private _alpha;
|
|
247
|
-
get alpha(): boolean | string;
|
|
248
|
-
set alpha(v: boolean | string);
|
|
249
|
-
private _pill;
|
|
250
|
-
get pill(): boolean | string;
|
|
251
|
-
set pill(v: boolean | string);
|
|
252
|
-
private _link;
|
|
253
|
-
get link(): boolean | string;
|
|
254
|
-
set link(v: boolean | string);
|
|
255
|
-
private _icon;
|
|
256
|
-
get icon(): boolean | string;
|
|
257
|
-
set icon(v: boolean | string);
|
|
258
|
-
constructor(_elementRef: ElementRef, _renderer: Renderer2);
|
|
259
|
-
private _config;
|
|
260
|
-
ngOnInit(): void;
|
|
261
|
-
ngOnChanges(): void;
|
|
262
|
-
private clearConfig;
|
|
263
|
-
private setConfig;
|
|
264
|
-
private setSize;
|
|
265
|
-
private setOutline;
|
|
266
|
-
private setPill;
|
|
267
|
-
private setLink;
|
|
268
|
-
private setBasic;
|
|
269
|
-
private setIcon;
|
|
270
|
-
private addRippleEffect;
|
|
271
|
-
ngOnDestroy(): void;
|
|
272
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<MatchaButtonComponent, never>;
|
|
273
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<MatchaButtonComponent, "[matcha-button]", never, { "size": { "alias": "size"; "required": false; }; "sizeXs": { "alias": "size-xs"; "required": false; }; "sizeSm": { "alias": "size-sm"; "required": false; }; "sizeMd": { "alias": "size-md"; "required": false; }; "sizeLg": { "alias": "size-lg"; "required": false; }; "sizeXl": { "alias": "size-xl"; "required": false; }; "color": { "alias": "color"; "required": false; }; "basic": { "alias": "basic"; "required": false; }; "outline": { "alias": "outline"; "required": false; }; "alpha": { "alias": "alpha"; "required": false; }; "pill": { "alias": "pill"; "required": false; }; "link": { "alias": "link"; "required": false; }; "icon": { "alias": "icon"; "required": false; }; }, {}, never, ["*"], false, never>;
|
|
274
|
-
}
|
|
275
|
-
|
|
276
|
-
declare class MatchaCardComponent {
|
|
277
|
-
private _color;
|
|
278
|
-
get color(): string | null;
|
|
279
|
-
set color(v: string | null);
|
|
280
|
-
get colorAttr(): string | null;
|
|
281
|
-
blockquote: 'left' | 'right' | 'none' | null;
|
|
282
|
-
blockquoteColor: string | null;
|
|
283
|
-
class: string | null;
|
|
284
|
-
private _alpha;
|
|
285
|
-
get alpha(): boolean | string;
|
|
286
|
-
set alpha(v: boolean | string);
|
|
287
|
-
get alphaAttr(): string | null;
|
|
288
|
-
private _tint;
|
|
289
|
-
get tint(): boolean | string;
|
|
290
|
-
set tint(v: boolean | string);
|
|
291
|
-
get tintAttr(): string | null;
|
|
292
|
-
private _loading;
|
|
293
|
-
get loading(): boolean | string;
|
|
294
|
-
set loading(v: boolean | string);
|
|
295
|
-
get classes(): string;
|
|
296
|
-
hasBlockquotePosition(): boolean;
|
|
297
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<MatchaCardComponent, never>;
|
|
298
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<MatchaCardComponent, "matcha-card", never, { "color": { "alias": "color"; "required": false; }; "blockquote": { "alias": "blockquote"; "required": false; }; "blockquoteColor": { "alias": "blockquoteColor"; "required": false; }; "class": { "alias": "class"; "required": false; }; "alpha": { "alias": "alpha"; "required": false; }; "tint": { "alias": "tint"; "required": false; }; "loading": { "alias": "loading"; "required": false; }; }, {}, never, ["*"], false, never>;
|
|
299
|
-
}
|
|
300
|
-
|
|
301
|
-
declare class MatchaDividerComponent {
|
|
302
|
-
gap: string | number | null;
|
|
303
|
-
gapSm: string | number | null;
|
|
304
|
-
gapMd: string | number | null;
|
|
305
|
-
gapLg: string | number | null;
|
|
306
|
-
gapXl: string | number | null;
|
|
307
|
-
private _vertical;
|
|
308
|
-
set vertical(value: boolean | string);
|
|
309
|
-
get vertical(): boolean;
|
|
310
|
-
get classes(): string;
|
|
311
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<MatchaDividerComponent, never>;
|
|
312
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<MatchaDividerComponent, "matcha-divider", never, { "gap": { "alias": "gap"; "required": false; }; "gapSm": { "alias": "gap-sm"; "required": false; }; "gapMd": { "alias": "gap-md"; "required": false; }; "gapLg": { "alias": "gap-lg"; "required": false; }; "gapXl": { "alias": "gap-xl"; "required": false; }; "vertical": { "alias": "vertical"; "required": false; }; }, {}, never, never, false, never>;
|
|
313
|
-
}
|
|
314
|
-
|
|
315
|
-
interface ILevelClasses {
|
|
316
|
-
[key: number | string]: string;
|
|
317
|
-
}
|
|
318
|
-
declare class MatchaTitleComponent {
|
|
319
|
-
color: null | string;
|
|
320
|
-
size: number | string;
|
|
321
|
-
loading: boolean;
|
|
322
|
-
type: 'pill' | 'bullet' | 'icon' | 'none';
|
|
323
|
-
icon: string;
|
|
324
|
-
iconClick: EventEmitter<object>;
|
|
325
|
-
sizeClasses: ILevelClasses;
|
|
326
|
-
getTypes(): string;
|
|
327
|
-
get signClasses(): string;
|
|
328
|
-
get textClasses(): string;
|
|
329
|
-
emitIconAction(): void;
|
|
330
|
-
hasIconClickOutput(): boolean;
|
|
331
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<MatchaTitleComponent, never>;
|
|
332
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<MatchaTitleComponent, "matcha-title", never, { "color": { "alias": "color"; "required": false; }; "size": { "alias": "size"; "required": false; }; "loading": { "alias": "loading"; "required": false; }; "type": { "alias": "type"; "required": false; }; "icon": { "alias": "icon"; "required": false; }; }, { "iconClick": "iconClick"; }, never, ["*"], false, never>;
|
|
333
|
-
}
|
|
334
|
-
|
|
335
|
-
interface DrawerItem {
|
|
336
|
-
id: string;
|
|
337
|
-
label: string;
|
|
338
|
-
icon?: string;
|
|
339
|
-
route?: string;
|
|
340
|
-
action?: () => void;
|
|
341
|
-
badge?: string | number;
|
|
342
|
-
disabled?: boolean;
|
|
343
|
-
divider?: boolean;
|
|
344
|
-
}
|
|
345
|
-
interface DrawerSection {
|
|
346
|
-
id: string;
|
|
347
|
-
title?: string;
|
|
348
|
-
items: DrawerItem[];
|
|
349
|
-
position: 'top' | 'bottom';
|
|
350
|
-
divider?: boolean;
|
|
351
|
-
}
|
|
352
|
-
type DrawerMode = 'push' | 'overlay';
|
|
353
|
-
type DrawerPosition = 'left' | 'right';
|
|
354
|
-
declare class MatchaDrawerComponent implements OnInit, OnDestroy {
|
|
355
|
-
private elementRef;
|
|
356
|
-
private renderer;
|
|
357
|
-
private cdr;
|
|
358
|
-
isOpen: boolean;
|
|
359
|
-
mode: DrawerMode;
|
|
360
|
-
position: DrawerPosition;
|
|
361
|
-
width: string;
|
|
362
|
-
hasBackdrop: boolean;
|
|
363
|
-
disableClose: boolean;
|
|
364
|
-
autoCloseOnMobile: boolean;
|
|
365
|
-
breakpoint: number;
|
|
366
|
-
elevation: number;
|
|
367
|
-
hasFooter: boolean;
|
|
368
|
-
isOpenChange: EventEmitter<boolean>;
|
|
369
|
-
drawerToggle: EventEmitter<void>;
|
|
370
|
-
drawerOpened: EventEmitter<void>;
|
|
371
|
-
drawerClosed: EventEmitter<void>;
|
|
372
|
-
drawerContent: TemplateRef<any>;
|
|
373
|
-
get drawerClasses(): string;
|
|
374
|
-
get drawerWidth(): string;
|
|
375
|
-
get drawerHeight(): string;
|
|
376
|
-
private resizeObserver;
|
|
377
|
-
private isMobile;
|
|
378
|
-
private bodyScrollLocked;
|
|
379
|
-
constructor(elementRef: ElementRef, renderer: Renderer2, cdr: ChangeDetectorRef);
|
|
380
|
-
ngOnInit(): void;
|
|
381
|
-
ngOnDestroy(): void;
|
|
382
|
-
private setupResizeObserver;
|
|
383
|
-
private checkScreenSize;
|
|
384
|
-
private setupBodyScrollLock;
|
|
385
|
-
private lockBodyScroll;
|
|
386
|
-
private unlockBodyScroll;
|
|
387
|
-
toggle(): void;
|
|
388
|
-
open(): void;
|
|
389
|
-
close(): void;
|
|
390
|
-
onBackdropClick(): void;
|
|
391
|
-
onKeyDown(event: KeyboardEvent): void;
|
|
392
|
-
getDrawerTransform(): string;
|
|
393
|
-
get animationState(): "open" | "closed";
|
|
394
|
-
get isOverlayMode(): boolean;
|
|
395
|
-
get isPushMode(): boolean;
|
|
396
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<MatchaDrawerComponent, never>;
|
|
397
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<MatchaDrawerComponent, "matcha-drawer", never, { "isOpen": { "alias": "isOpen"; "required": false; }; "mode": { "alias": "mode"; "required": false; }; "position": { "alias": "position"; "required": false; }; "width": { "alias": "width"; "required": false; }; "hasBackdrop": { "alias": "hasBackdrop"; "required": false; }; "disableClose": { "alias": "disableClose"; "required": false; }; "autoCloseOnMobile": { "alias": "autoCloseOnMobile"; "required": false; }; "breakpoint": { "alias": "breakpoint"; "required": false; }; "elevation": { "alias": "elevation"; "required": false; }; "hasFooter": { "alias": "hasFooter"; "required": false; }; }, { "isOpenChange": "isOpenChange"; "drawerToggle": "drawerToggle"; "drawerOpened": "drawerOpened"; "drawerClosed": "drawerClosed"; }, never, ["[drawer-header]", "[drawer-content]", "*", "[drawer-footer]"], false, never>;
|
|
398
|
-
}
|
|
399
|
-
|
|
400
|
-
declare class MatchaDrawerContainerComponent implements OnInit, OnDestroy {
|
|
401
|
-
hasBackdrop: boolean;
|
|
402
|
-
autoFocus: boolean;
|
|
403
|
-
drawer: MatchaDrawerComponent;
|
|
404
|
-
ngOnInit(): void;
|
|
405
|
-
ngOnDestroy(): void;
|
|
406
|
-
private setupDrawerEvents;
|
|
407
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<MatchaDrawerContainerComponent, never>;
|
|
408
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<MatchaDrawerContainerComponent, "matcha-drawer-container", never, { "hasBackdrop": { "alias": "hasBackdrop"; "required": false; }; "autoFocus": { "alias": "autoFocus"; "required": false; }; }, {}, ["drawer"], ["*"], false, never>;
|
|
409
|
-
}
|
|
410
|
-
|
|
411
|
-
declare class MatchaDrawerContentComponent {
|
|
412
|
-
padding: string;
|
|
413
|
-
scrollable: boolean;
|
|
414
|
-
maxHeight: string;
|
|
415
|
-
get contentClasses(): string;
|
|
416
|
-
get maxHeightStyle(): string;
|
|
417
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<MatchaDrawerContentComponent, never>;
|
|
418
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<MatchaDrawerContentComponent, "matcha-drawer-content", never, { "padding": { "alias": "padding"; "required": false; }; "scrollable": { "alias": "scrollable"; "required": false; }; "maxHeight": { "alias": "maxHeight"; "required": false; }; }, {}, never, ["*"], false, never>;
|
|
419
|
-
}
|
|
420
|
-
|
|
421
|
-
declare class MatchaIconComponent {
|
|
422
|
-
name: string | undefined | null;
|
|
423
|
-
size: string | undefined | null;
|
|
424
|
-
color: string | undefined | null;
|
|
425
|
-
class: string | undefined | null;
|
|
426
|
-
loading: boolean | string;
|
|
427
|
-
get classes(): string;
|
|
428
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<MatchaIconComponent, never>;
|
|
429
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<MatchaIconComponent, "matcha-icon", never, { "name": { "alias": "name"; "required": false; }; "size": { "alias": "size"; "required": false; }; "color": { "alias": "color"; "required": false; }; "class": { "alias": "class"; "required": false; }; "loading": { "alias": "loading"; "required": false; }; }, {}, never, ["*"], false, never>;
|
|
430
|
-
}
|
|
431
|
-
|
|
432
|
-
declare class MatchaGridComponent {
|
|
433
|
-
private el;
|
|
434
|
-
private renderer;
|
|
435
|
-
breakpoint: string;
|
|
436
|
-
col: string;
|
|
437
|
-
gap: string;
|
|
438
|
-
class: string;
|
|
439
|
-
span: string;
|
|
440
|
-
rowspan: string;
|
|
441
|
-
colspan: string;
|
|
442
|
-
direction: string;
|
|
443
|
-
loading: boolean | string;
|
|
444
|
-
private getStringSplited;
|
|
445
|
-
private getGridClasses;
|
|
446
|
-
setColspanClasses(span: string, breakpoint: string): void;
|
|
447
|
-
setRowspanClasses(span: string, breakpoint: string): void;
|
|
448
|
-
get classes(): string;
|
|
449
|
-
constructor(el: ElementRef, renderer: Renderer2);
|
|
450
|
-
ngOnInit(): void;
|
|
451
|
-
ngOnChanges(): void;
|
|
452
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<MatchaGridComponent, never>;
|
|
453
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<MatchaGridComponent, "matcha-grid", never, { "breakpoint": { "alias": "breakpoint"; "required": false; }; "col": { "alias": "col"; "required": false; }; "gap": { "alias": "gap"; "required": false; }; "class": { "alias": "class"; "required": false; }; "span": { "alias": "span"; "required": false; }; "rowspan": { "alias": "rowspan"; "required": false; }; "colspan": { "alias": "colspan"; "required": false; }; "direction": { "alias": "direction"; "required": false; }; "loading": { "alias": "loading"; "required": false; }; }, {}, never, ["*"], false, never>;
|
|
454
|
-
}
|
|
455
|
-
|
|
456
|
-
declare class MatchaMasonryComponent {
|
|
457
|
-
colSize: string | number | null;
|
|
458
|
-
smColSize: string | number | null;
|
|
459
|
-
mdColSize: string | number | null;
|
|
460
|
-
lgColSize: string | number | null;
|
|
461
|
-
xlColSize: string | number | null;
|
|
462
|
-
gap: string | number | null;
|
|
463
|
-
gapSm: string | number | null;
|
|
464
|
-
gapMd: string | number | null;
|
|
465
|
-
gapLg: string | number | null;
|
|
466
|
-
gapXl: string | number | null;
|
|
467
|
-
get classes(): string;
|
|
468
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<MatchaMasonryComponent, never>;
|
|
469
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<MatchaMasonryComponent, "matcha-masonry", never, { "colSize": { "alias": "col"; "required": false; }; "smColSize": { "alias": "col-sm"; "required": false; }; "mdColSize": { "alias": "col-md"; "required": false; }; "lgColSize": { "alias": "col-lg"; "required": false; }; "xlColSize": { "alias": "col-xl"; "required": false; }; "gap": { "alias": "gap"; "required": false; }; "gapSm": { "alias": "gap-sm"; "required": false; }; "gapMd": { "alias": "gap-md"; "required": false; }; "gapLg": { "alias": "gap-lg"; "required": false; }; "gapXl": { "alias": "gap-xl"; "required": false; }; }, {}, never, ["*"], false, never>;
|
|
470
|
-
}
|
|
471
|
-
|
|
472
|
-
declare class MatchaModalContentComponent {
|
|
473
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<MatchaModalContentComponent, never>;
|
|
474
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<MatchaModalContentComponent, "matcha-modal-content", never, {}, {}, never, ["*"], false, never>;
|
|
475
|
-
}
|
|
476
|
-
|
|
477
|
-
declare class MatchaModalHeaderComponent {
|
|
478
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<MatchaModalHeaderComponent, never>;
|
|
479
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<MatchaModalHeaderComponent, "matcha-modal-header", never, {}, {}, never, ["*", "matcha-modal-options"], false, never>;
|
|
480
|
-
}
|
|
481
|
-
|
|
482
|
-
declare class MatchaModalFooterComponent {
|
|
483
|
-
buttonType: number | string;
|
|
484
|
-
ngAfterViewInit(): void;
|
|
485
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<MatchaModalFooterComponent, never>;
|
|
486
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<MatchaModalFooterComponent, "matcha-modal-footer", never, { "buttonType": { "alias": ""; "required": false; }; }, {}, never, ["*"], false, never>;
|
|
487
|
-
}
|
|
488
|
-
|
|
489
|
-
declare class MatchaModalOptionsComponent {
|
|
490
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<MatchaModalOptionsComponent, never>;
|
|
491
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<MatchaModalOptionsComponent, "matcha-modal-options", never, {}, {}, never, ["*"], false, never>;
|
|
492
|
-
}
|
|
493
|
-
|
|
494
|
-
declare class MatchaModalComponent {
|
|
495
|
-
size: string | null;
|
|
496
|
-
sizeXs: string | null;
|
|
497
|
-
sizeSm: string | null;
|
|
498
|
-
sizeMd: string | null;
|
|
499
|
-
sizeLg: string | null;
|
|
500
|
-
sizeXl: string | null;
|
|
501
|
-
class: string;
|
|
502
|
-
hasBackdrop: boolean;
|
|
503
|
-
backdropClass: string;
|
|
504
|
-
get sizeAttr(): string | null;
|
|
505
|
-
get sizeAttrXs(): string | null;
|
|
506
|
-
get sizeAttrSm(): string | null;
|
|
507
|
-
get sizeAttrMd(): string | null;
|
|
508
|
-
get sizeAttrLg(): string | null;
|
|
509
|
-
get sizeAttrXl(): string | null;
|
|
510
|
-
get classes(): string;
|
|
511
|
-
constructor();
|
|
512
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<MatchaModalComponent, never>;
|
|
513
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<MatchaModalComponent, "matcha-modal", never, { "size": { "alias": "size"; "required": false; }; "sizeXs": { "alias": "size-xs"; "required": false; }; "sizeSm": { "alias": "size-sm"; "required": false; }; "sizeMd": { "alias": "size-md"; "required": false; }; "sizeLg": { "alias": "size-lg"; "required": false; }; "sizeXl": { "alias": "size-xl"; "required": false; }; "class": { "alias": "class"; "required": false; }; "hasBackdrop": { "alias": "hasBackdrop"; "required": false; }; "backdropClass": { "alias": "backdropClass"; "required": false; }; }, {}, never, ["*"], false, never>;
|
|
514
|
-
}
|
|
515
|
-
|
|
516
|
-
declare class MatchaMenuComponent {
|
|
517
|
-
private _elementRef;
|
|
518
|
-
private _renderer;
|
|
519
|
-
isParentMenu: boolean;
|
|
520
|
-
isOpen: boolean;
|
|
521
|
-
constructor(_elementRef: ElementRef, _renderer: Renderer2);
|
|
522
|
-
handleOutsideClick(event: Event): void;
|
|
523
|
-
handleMouseLeave(event: MouseEvent): void;
|
|
524
|
-
openMenu(): void;
|
|
525
|
-
closeMenu(): void;
|
|
526
|
-
toggleMenu(): void;
|
|
527
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<MatchaMenuComponent, never>;
|
|
528
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<MatchaMenuComponent, "matcha-menu", ["matchaMenu"], { "isParentMenu": { "alias": "isParentMenu"; "required": false; }; }, {}, never, ["*"], false, never>;
|
|
529
|
-
}
|
|
530
|
-
|
|
531
|
-
declare class MatchaToolbarComponent implements OnInit, OnDestroy {
|
|
532
|
-
elevation: number;
|
|
533
|
-
isMobileScreen: boolean;
|
|
534
|
-
get elevationClass(): string;
|
|
535
|
-
private readonly mobileBreakpoint;
|
|
536
|
-
private resizeTimeout;
|
|
537
|
-
ngOnInit(): void;
|
|
538
|
-
onResize(): void;
|
|
539
|
-
private checkScreenWidth;
|
|
540
|
-
ngOnDestroy(): void;
|
|
541
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<MatchaToolbarComponent, never>;
|
|
542
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<MatchaToolbarComponent, "matcha-toolbar", never, { "elevation": { "alias": "elevation"; "required": false; }; }, {}, never, ["matcha-toolbar-main-button", "matcha-toolbar-custom-button", "matcha-title", "search-form", "matcha-toolbar-button", "matcha-toolbar-content", "*"], false, never>;
|
|
543
|
-
}
|
|
544
|
-
|
|
545
|
-
declare class MatchaToolbarButtonComponent {
|
|
546
|
-
icon: string;
|
|
547
|
-
buttonClick: EventEmitter<any>;
|
|
548
|
-
get classes(): string;
|
|
549
|
-
emitButtonClick(): void;
|
|
550
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<MatchaToolbarButtonComponent, never>;
|
|
551
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<MatchaToolbarButtonComponent, "matcha-toolbar-button", never, { "icon": { "alias": "icon"; "required": false; }; }, { "buttonClick": "buttonClick"; }, never, never, false, never>;
|
|
552
|
-
}
|
|
553
|
-
|
|
554
|
-
declare class MatchaToolbarContentComponent {
|
|
555
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<MatchaToolbarContentComponent, never>;
|
|
556
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<MatchaToolbarContentComponent, "matcha-toolbar-content", never, {}, {}, never, ["*"], false, never>;
|
|
557
|
-
}
|
|
558
|
-
|
|
559
|
-
declare class MatchaToolbarMainButtonComponent {
|
|
560
|
-
buttonClick: EventEmitter<any>;
|
|
561
|
-
emitButtonClick(): void;
|
|
562
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<MatchaToolbarMainButtonComponent, never>;
|
|
563
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<MatchaToolbarMainButtonComponent, "matcha-toolbar-main-button", never, {}, { "buttonClick": "buttonClick"; }, never, ["*"], false, never>;
|
|
564
|
-
}
|
|
565
|
-
|
|
566
|
-
declare class MatchaToolbarCustomButtonComponent {
|
|
567
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<MatchaToolbarCustomButtonComponent, never>;
|
|
568
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<MatchaToolbarCustomButtonComponent, "matcha-toolbar-custom-button", never, {}, {}, never, ["*"], false, never>;
|
|
569
|
-
}
|
|
570
|
-
|
|
571
|
-
declare class MatchaFormFieldComponent {
|
|
572
|
-
color: 'red' | 'pink' | 'purple' | 'deep-purple' | 'indigo' | 'blue' | 'light-blue' | 'cyan' | 'teal' | 'green' | 'light-green' | 'lime' | 'yellow' | 'amber' | 'orange' | 'deep-orange' | 'primary' | 'accent' | 'warn' | 'brown' | 'grey' | 'blue-grey' | 'primary' | 'accent' | 'warn';
|
|
573
|
-
size: string | null | undefined | 'tiny' | 'small' | 'medium' | 'large' | 'huge';
|
|
574
|
-
sizeXs: string | null;
|
|
575
|
-
sizeSm: string | null;
|
|
576
|
-
sizeMd: string | null;
|
|
577
|
-
sizeLg: string | null;
|
|
578
|
-
sizeXl: string | null;
|
|
579
|
-
controlDir?: FormControlName;
|
|
580
|
-
get control(): i3.FormControl<any> | undefined;
|
|
581
|
-
get showError(): boolean;
|
|
582
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<MatchaFormFieldComponent, never>;
|
|
583
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<MatchaFormFieldComponent, "matcha-form-field", never, { "color": { "alias": "color"; "required": false; }; "size": { "alias": "size"; "required": false; }; "sizeXs": { "alias": "size-xs"; "required": false; }; "sizeSm": { "alias": "size-sm"; "required": false; }; "sizeMd": { "alias": "size-md"; "required": false; }; "sizeLg": { "alias": "size-lg"; "required": false; }; "sizeXl": { "alias": "size-xl"; "required": false; }; }, {}, ["controlDir"], ["matcha-label", "*", "matcha-error", "matcha-autocomplete", "matcha-hint-text"], false, never>;
|
|
584
|
-
}
|
|
585
|
-
|
|
586
|
-
declare class MatchaLabelComponent {
|
|
587
|
-
color: 'red' | 'pink' | 'purple' | 'deep-purple' | 'indigo' | 'blue' | 'light-blue' | 'cyan' | 'teal' | 'green' | 'light-green' | 'lime' | 'yellow' | 'amber' | 'orange' | 'deep-orange' | 'primary' | 'accent' | 'warn' | 'brown' | 'grey' | 'blue-grey' | 'primary' | 'accent' | 'warn';
|
|
588
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<MatchaLabelComponent, never>;
|
|
589
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<MatchaLabelComponent, "matcha-label", never, { "color": { "alias": "color"; "required": false; }; }, {}, never, ["*"], false, never>;
|
|
590
|
-
}
|
|
591
|
-
|
|
592
|
-
declare class MatchaErrorComponent {
|
|
593
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<MatchaErrorComponent, never>;
|
|
594
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<MatchaErrorComponent, "matcha-error", never, {}, {}, never, ["*"], false, never>;
|
|
595
|
-
}
|
|
596
|
-
|
|
597
|
-
declare class MatchaCheckboxComponent implements ControlValueAccessor {
|
|
598
|
-
color: string;
|
|
599
|
-
indeterminate: boolean;
|
|
600
|
-
private _disabled;
|
|
601
|
-
get disabled(): boolean;
|
|
602
|
-
set disabled(value: boolean | string);
|
|
603
|
-
private _checked;
|
|
604
|
-
get checked(): boolean;
|
|
605
|
-
set checked(value: boolean | string);
|
|
606
|
-
checkedChange: EventEmitter<{
|
|
607
|
-
checked: boolean;
|
|
608
|
-
}>;
|
|
609
|
-
change: EventEmitter<Event>;
|
|
610
|
-
onChange: any;
|
|
611
|
-
onTouched: any;
|
|
612
|
-
writeValue(value: boolean): void;
|
|
613
|
-
registerOnChange(fn: any): void;
|
|
614
|
-
registerOnTouched(fn: any): void;
|
|
615
|
-
setDisabledState(isDisabled: boolean): void;
|
|
616
|
-
onInputChange(event: Event): void;
|
|
617
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<MatchaCheckboxComponent, never>;
|
|
618
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<MatchaCheckboxComponent, "matcha-checkbox", never, { "color": { "alias": "color"; "required": false; }; "indeterminate": { "alias": "indeterminate"; "required": false; }; "disabled": { "alias": "disabled"; "required": false; }; "checked": { "alias": "checked"; "required": false; }; }, { "checkedChange": "checkedChange"; "change": "change"; }, never, ["*"], false, never>;
|
|
619
|
-
}
|
|
620
|
-
|
|
621
|
-
declare class MatchaRadioComponent implements ControlValueAccessor {
|
|
622
|
-
color: string;
|
|
623
|
-
value: any;
|
|
624
|
-
name: string;
|
|
625
|
-
private _disabled;
|
|
626
|
-
set disabled(value: boolean | string);
|
|
627
|
-
get disabled(): boolean;
|
|
628
|
-
get checked(): boolean;
|
|
629
|
-
set checked(value: boolean);
|
|
630
|
-
private _checked;
|
|
631
|
-
private _modelValue;
|
|
632
|
-
checkedChange: EventEmitter<{
|
|
633
|
-
checked: boolean;
|
|
634
|
-
}>;
|
|
635
|
-
change: EventEmitter<Event>;
|
|
636
|
-
onChange: any;
|
|
637
|
-
onTouched: any;
|
|
638
|
-
writeValue(value: any): void;
|
|
639
|
-
registerOnChange(fn: any): void;
|
|
640
|
-
registerOnTouched(fn: any): void;
|
|
641
|
-
setDisabledState(isDisabled: boolean): void;
|
|
642
|
-
onInputChange(event: Event): void;
|
|
643
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<MatchaRadioComponent, never>;
|
|
644
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<MatchaRadioComponent, "matcha-radio", never, { "color": { "alias": "color"; "required": false; }; "value": { "alias": "value"; "required": false; }; "name": { "alias": "name"; "required": false; }; "disabled": { "alias": "disabled"; "required": false; }; "checked": { "alias": "checked"; "required": false; }; }, { "checkedChange": "checkedChange"; "change": "change"; }, never, ["*"], false, never>;
|
|
645
|
-
}
|
|
646
|
-
|
|
647
|
-
declare class MatchaSpinComponent {
|
|
648
|
-
private _elementRef;
|
|
649
|
-
private _renderer;
|
|
650
|
-
private _progress;
|
|
651
|
-
set progress(value: string | number);
|
|
652
|
-
get progress(): string | number;
|
|
653
|
-
color: string;
|
|
654
|
-
size: string | null;
|
|
655
|
-
sizeXs: string | null;
|
|
656
|
-
sizeSm: string | null;
|
|
657
|
-
sizeMd: string | null;
|
|
658
|
-
sizeLg: string | null;
|
|
659
|
-
sizeXl: string | null;
|
|
660
|
-
readonly strokeWidth: number;
|
|
661
|
-
constructor(_elementRef: ElementRef, _renderer: Renderer2);
|
|
662
|
-
ngOnInit(): void;
|
|
663
|
-
private setSize;
|
|
664
|
-
get diameter(): number;
|
|
665
|
-
get radius(): number;
|
|
666
|
-
get circumference(): number;
|
|
667
|
-
get dashOffset(): number;
|
|
668
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<MatchaSpinComponent, never>;
|
|
669
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<MatchaSpinComponent, "matcha-spin", never, { "progress": { "alias": "progress"; "required": false; }; "color": { "alias": "color"; "required": false; }; "size": { "alias": "size"; "required": false; }; "sizeXs": { "alias": "size-xs"; "required": false; }; "sizeSm": { "alias": "size-sm"; "required": false; }; "sizeMd": { "alias": "size-md"; "required": false; }; "sizeLg": { "alias": "size-lg"; "required": false; }; "sizeXl": { "alias": "size-xl"; "required": false; }; }, {}, never, never, false, never>;
|
|
670
|
-
}
|
|
671
|
-
|
|
672
|
-
declare class MatchaSpinnerComponent {
|
|
673
|
-
private _elementRef;
|
|
674
|
-
private _renderer;
|
|
675
|
-
private _progressValue;
|
|
676
|
-
set progress(value: string | number);
|
|
677
|
-
get progress(): string | number;
|
|
678
|
-
get _progress(): string | number;
|
|
679
|
-
color: string;
|
|
680
|
-
get _color(): string;
|
|
681
|
-
size: string | null;
|
|
682
|
-
get hostSize(): string | null;
|
|
683
|
-
sizeXs: string | null;
|
|
684
|
-
sizeSm: string | null;
|
|
685
|
-
sizeMd: string | null;
|
|
686
|
-
sizeLg: string | null;
|
|
687
|
-
sizeXl: string | null;
|
|
688
|
-
readonly diameter = 66;
|
|
689
|
-
readonly center = 33;
|
|
690
|
-
readonly radius = 30;
|
|
691
|
-
readonly strokeWidth = 5;
|
|
692
|
-
constructor(_elementRef: ElementRef, _renderer: Renderer2);
|
|
693
|
-
ngOnInit(): void;
|
|
694
|
-
private setSize;
|
|
695
|
-
get circumference(): number;
|
|
696
|
-
get dashOffset(): number;
|
|
697
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<MatchaSpinnerComponent, never>;
|
|
698
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<MatchaSpinnerComponent, "matcha-spinner", never, { "progress": { "alias": "progress"; "required": false; }; "color": { "alias": "color"; "required": false; }; "size": { "alias": "size"; "required": false; }; "sizeXs": { "alias": "size-xs"; "required": false; }; "sizeSm": { "alias": "size-sm"; "required": false; }; "sizeMd": { "alias": "size-md"; "required": false; }; "sizeLg": { "alias": "size-lg"; "required": false; }; "sizeXl": { "alias": "size-xl"; "required": false; }; }, {}, never, never, false, never>;
|
|
699
|
-
}
|
|
700
|
-
|
|
701
|
-
declare class MatchaHintTextComponent {
|
|
702
|
-
type: string;
|
|
703
|
-
size: string;
|
|
704
|
-
get iconName(): string;
|
|
705
|
-
get iconColor(): string;
|
|
706
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<MatchaHintTextComponent, never>;
|
|
707
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<MatchaHintTextComponent, "matcha-hint-text", never, { "type": { "alias": "type"; "required": false; }; "size": { "alias": "size"; "required": false; }; }, {}, never, ["*"], false, never>;
|
|
708
|
-
}
|
|
709
|
-
|
|
710
|
-
declare class MatchaSkeletonComponent {
|
|
711
|
-
amount: number | string;
|
|
712
|
-
grid: number | string;
|
|
713
|
-
height: number | string;
|
|
714
|
-
model: 'profile' | 'table' | 'empty' | string | null;
|
|
715
|
-
gap: number | string;
|
|
716
|
-
get classes(): string;
|
|
717
|
-
get heightClass(): string;
|
|
718
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<MatchaSkeletonComponent, never>;
|
|
719
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<MatchaSkeletonComponent, "matcha-skeleton", never, { "amount": { "alias": "amount"; "required": false; }; "grid": { "alias": "grid"; "required": false; }; "height": { "alias": "height"; "required": false; }; "model": { "alias": "model"; "required": false; }; "gap": { "alias": "gap"; "required": false; }; }, {}, never, ["*"], false, never>;
|
|
720
|
-
}
|
|
721
|
-
|
|
722
|
-
declare class MatchaSlideToggleComponent implements ControlValueAccessor, OnChanges, AfterViewInit {
|
|
723
|
-
private elementRef;
|
|
724
|
-
color: string;
|
|
725
|
-
private _checked;
|
|
726
|
-
set checked(value: boolean | string);
|
|
727
|
-
get checked(): boolean;
|
|
728
|
-
private _disabled;
|
|
729
|
-
set disabled(value: boolean | string);
|
|
730
|
-
get disabled(): boolean;
|
|
731
|
-
change: EventEmitter<{
|
|
732
|
-
checked: boolean;
|
|
733
|
-
}>;
|
|
734
|
-
onChange: (value: boolean) => void;
|
|
735
|
-
onTouched: () => void;
|
|
736
|
-
writeValue(value: any): void;
|
|
737
|
-
registerOnChange(fn: any): void;
|
|
738
|
-
registerOnTouched(fn: any): void;
|
|
739
|
-
setDisabledState(isDisabled: boolean): void;
|
|
740
|
-
constructor(elementRef: ElementRef<HTMLElement>);
|
|
741
|
-
ngOnChanges(changes: SimpleChanges): void;
|
|
742
|
-
ngAfterViewInit(): void;
|
|
743
|
-
onInputChange(event: Event): void;
|
|
744
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<MatchaSlideToggleComponent, never>;
|
|
745
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<MatchaSlideToggleComponent, "matcha-slide-toggle", never, { "color": { "alias": "color"; "required": false; }; "checked": { "alias": "checked"; "required": false; }; "disabled": { "alias": "disabled"; "required": false; }; }, { "change": "change"; }, never, ["*"], false, never>;
|
|
746
|
-
}
|
|
747
|
-
|
|
748
|
-
declare class MatchaButtonToggleComponent implements AfterContentInit {
|
|
749
|
-
private elementRef;
|
|
750
|
-
private _multiple;
|
|
751
|
-
get multiple(): boolean | string;
|
|
752
|
-
set multiple(v: boolean | string);
|
|
753
|
-
private _disabled;
|
|
754
|
-
get disabled(): boolean | string;
|
|
755
|
-
set disabled(v: boolean | string);
|
|
756
|
-
get isDisabled(): string | true | null;
|
|
757
|
-
private _required;
|
|
758
|
-
get required(): boolean | string;
|
|
759
|
-
set required(v: boolean | string);
|
|
760
|
-
inactiveColor: string;
|
|
761
|
-
inactiveType: string;
|
|
762
|
-
private _gap;
|
|
763
|
-
set gap(v: string | number);
|
|
764
|
-
get gapClass(): string;
|
|
765
|
-
get gap(): number;
|
|
766
|
-
buttons: QueryList<MatchaButtonComponent>;
|
|
767
|
-
constructor(elementRef: ElementRef);
|
|
768
|
-
ngAfterContentInit(): void;
|
|
769
|
-
private setButtonState;
|
|
770
|
-
private onButtonSelected;
|
|
771
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<MatchaButtonToggleComponent, never>;
|
|
772
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<MatchaButtonToggleComponent, "matcha-button-toggle", never, { "multiple": { "alias": "multiple"; "required": false; }; "disabled": { "alias": "disabled"; "required": false; }; "required": { "alias": "required"; "required": false; }; "inactiveColor": { "alias": "inactiveColor"; "required": false; }; "inactiveType": { "alias": "inactiveType"; "required": false; }; "gap": { "alias": "gap"; "required": false; }; }, {}, ["buttons"], ["*"], false, never>;
|
|
773
|
-
}
|
|
774
|
-
|
|
775
|
-
declare class MatchaTabItemComponent {
|
|
776
|
-
title: string;
|
|
777
|
-
icon: string;
|
|
778
|
-
private _active;
|
|
779
|
-
set active(value: boolean | string);
|
|
780
|
-
get active(): boolean;
|
|
781
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<MatchaTabItemComponent, never>;
|
|
782
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<MatchaTabItemComponent, "matcha-tab", never, { "title": { "alias": "title"; "required": false; }; "icon": { "alias": "icon"; "required": false; }; "active": { "alias": "active"; "required": false; }; }, {}, never, ["*"], false, never>;
|
|
783
|
-
}
|
|
784
|
-
|
|
785
|
-
declare class MatchaTabsComponent implements AfterContentInit {
|
|
786
|
-
tabs: QueryList<MatchaTabItemComponent>;
|
|
787
|
-
activeTabIndex: number;
|
|
788
|
-
tabSelected: EventEmitter<number>;
|
|
789
|
-
ngAfterContentInit(): void;
|
|
790
|
-
selectTab(tab: MatchaTabItemComponent): void;
|
|
791
|
-
selectTabByIndex(index: number): void;
|
|
792
|
-
handleKeyboardEvent(event: KeyboardEvent): void;
|
|
793
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<MatchaTabsComponent, never>;
|
|
794
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<MatchaTabsComponent, "matcha-tabs", never, { "activeTabIndex": { "alias": "activeTabIndex"; "required": false; }; }, { "tabSelected": "tabSelected"; }, ["tabs"], ["*"], false, never>;
|
|
795
|
-
}
|
|
796
|
-
|
|
797
|
-
declare class MatchaDateComponent implements AfterContentInit, OnDestroy {
|
|
798
|
-
controls: QueryList<NgControl>;
|
|
799
|
-
private startDateControl;
|
|
800
|
-
private endDateControl;
|
|
801
|
-
private subscription;
|
|
802
|
-
ngAfterContentInit(): void;
|
|
803
|
-
ngOnDestroy(): void;
|
|
804
|
-
/**
|
|
805
|
-
* Validação simples: data inicial não pode ser posterior à data final
|
|
806
|
-
*/
|
|
807
|
-
private validateDateRange;
|
|
808
|
-
/**
|
|
809
|
-
* Remove um erro específico sem afetar outros erros
|
|
810
|
-
*/
|
|
811
|
-
private removeSpecificError;
|
|
812
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<MatchaDateComponent, never>;
|
|
813
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<MatchaDateComponent, "matcha-date", never, {}, {}, ["controls"], ["*"], false, never>;
|
|
814
|
-
}
|
|
815
|
-
|
|
816
|
-
declare class MatchaTimeComponent implements AfterContentInit, OnDestroy {
|
|
817
|
-
controls: QueryList<NgControl>;
|
|
818
|
-
startDateControlName?: string;
|
|
819
|
-
endDateControlName?: string;
|
|
820
|
-
allowCrossDays: boolean;
|
|
821
|
-
private startTimeControl;
|
|
822
|
-
private endTimeControl;
|
|
823
|
-
private startDateControl;
|
|
824
|
-
private endDateControl;
|
|
825
|
-
private subscription;
|
|
826
|
-
ngAfterContentInit(): void;
|
|
827
|
-
ngOnDestroy(): void;
|
|
828
|
-
/**
|
|
829
|
-
* Validação de intervalo de tempo que pode cruzar dias
|
|
830
|
-
*/
|
|
831
|
-
private validateTimeRange;
|
|
832
|
-
/**
|
|
833
|
-
* Define erros de validação nos controles
|
|
834
|
-
*/
|
|
835
|
-
private setValidationErrors;
|
|
836
|
-
/**
|
|
837
|
-
* Remove erros específicos de validação
|
|
838
|
-
*/
|
|
839
|
-
private clearValidationErrors;
|
|
840
|
-
/**
|
|
841
|
-
* Remove um erro específico sem afetar outros erros
|
|
842
|
-
*/
|
|
843
|
-
private removeSpecificError;
|
|
844
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<MatchaTimeComponent, never>;
|
|
845
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<MatchaTimeComponent, "matcha-time", never, { "startDateControlName": { "alias": "startDateControlName"; "required": false; }; "endDateControlName": { "alias": "endDateControlName"; "required": false; }; "allowCrossDays": { "alias": "allowCrossDays"; "required": false; }; }, {}, ["controls"], ["*"], false, never>;
|
|
846
|
-
}
|
|
847
|
-
|
|
848
|
-
declare class StepComponent {
|
|
849
|
-
step: any;
|
|
850
|
-
template: TemplateRef<any>;
|
|
851
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<StepComponent, never>;
|
|
852
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<StepComponent, "matcha-step", never, { "step": { "alias": "title"; "required": false; }; }, {}, never, ["*"], false, never>;
|
|
853
|
-
}
|
|
854
|
-
|
|
855
|
-
declare class MatchaStepperStateService {
|
|
856
|
-
private steps;
|
|
857
|
-
private _steps$;
|
|
858
|
-
steps$: rxjs.Observable<any[]>;
|
|
859
|
-
private _activeStep$;
|
|
860
|
-
activeStep$: rxjs.Observable<number>;
|
|
861
|
-
private pendingActiveStep;
|
|
862
|
-
setSteps(steps: any[]): void;
|
|
863
|
-
setActiveStep(index: number): void;
|
|
864
|
-
nextStep(): void;
|
|
865
|
-
prevStep(): void;
|
|
866
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<MatchaStepperStateService, never>;
|
|
867
|
-
static ɵprov: i0.ɵɵInjectableDeclaration<MatchaStepperStateService>;
|
|
868
|
-
}
|
|
869
|
-
|
|
870
|
-
declare class MatchaStepperComponent {
|
|
871
|
-
private stepperState;
|
|
872
|
-
active: number;
|
|
873
|
-
constructor(stepperState: MatchaStepperStateService);
|
|
874
|
-
ngOnChanges(changes: SimpleChanges): void;
|
|
875
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<MatchaStepperComponent, never>;
|
|
876
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<MatchaStepperComponent, "matcha-stepper", never, { "active": { "alias": "active"; "required": false; }; }, {}, never, ["*"], false, never>;
|
|
877
|
-
}
|
|
878
|
-
|
|
879
|
-
declare class MatchaStepperContentComponent implements AfterContentInit {
|
|
880
|
-
private stepperState;
|
|
881
|
-
steps: QueryList<StepComponent>;
|
|
882
|
-
stepsArray: StepComponent[];
|
|
883
|
-
activeStep: number;
|
|
884
|
-
constructor(stepperState: MatchaStepperStateService);
|
|
885
|
-
ngAfterContentInit(): void;
|
|
886
|
-
nextStep(): void;
|
|
887
|
-
prevStep(): void;
|
|
888
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<MatchaStepperContentComponent, never>;
|
|
889
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<MatchaStepperContentComponent, "matcha-stepper-content", never, {}, {}, ["steps"], never, false, never>;
|
|
890
|
-
}
|
|
891
|
-
|
|
892
|
-
declare class MatchaStepperControllerComponent implements OnInit {
|
|
893
|
-
private stepperState;
|
|
894
|
-
disableNext: boolean;
|
|
895
|
-
steps: string[];
|
|
896
|
-
activeStep: number;
|
|
897
|
-
constructor(stepperState: MatchaStepperStateService);
|
|
898
|
-
ngOnInit(): void;
|
|
899
|
-
goToStep(index: number): void;
|
|
900
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<MatchaStepperControllerComponent, never>;
|
|
901
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<MatchaStepperControllerComponent, "matcha-stepper-controller", never, { "disableNext": { "alias": "disableNext"; "required": false; }; }, {}, never, never, false, never>;
|
|
902
|
-
}
|
|
903
|
-
|
|
904
|
-
declare class MatchaDropListService {
|
|
905
|
-
private dropZones;
|
|
906
|
-
registerDropZone(element: HTMLElement, component: any): void;
|
|
907
|
-
unregisterDropZone(element: HTMLElement): void;
|
|
908
|
-
findDropZone(element: Element | null): any;
|
|
909
|
-
getAllDropZones(): any[];
|
|
910
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<MatchaDropListService, never>;
|
|
911
|
-
static ɵprov: i0.ɵɵInjectableDeclaration<MatchaDropListService>;
|
|
912
|
-
}
|
|
913
|
-
|
|
914
|
-
declare class MatchaDragDirective implements OnInit, OnDestroy {
|
|
915
|
-
elementRef: ElementRef<HTMLElement>;
|
|
916
|
-
private renderer;
|
|
917
|
-
private ngZone;
|
|
918
|
-
private dropListService;
|
|
919
|
-
matchaDragData: any;
|
|
920
|
-
matchaDragDisabled: boolean;
|
|
921
|
-
get dragItemClass(): boolean;
|
|
922
|
-
get dragDisabledClass(): boolean;
|
|
923
|
-
private listeners;
|
|
924
|
-
private isDragging;
|
|
925
|
-
private dragHandle?;
|
|
926
|
-
private dropList?;
|
|
927
|
-
private touchStartPosition;
|
|
928
|
-
private touchCurrentPosition;
|
|
929
|
-
private touchDragThreshold;
|
|
930
|
-
private isTouchDragging;
|
|
931
|
-
private dragPreview?;
|
|
932
|
-
private touchIdentifier?;
|
|
933
|
-
constructor(elementRef: ElementRef<HTMLElement>, renderer: Renderer2, ngZone: NgZone, dropListService: MatchaDropListService);
|
|
934
|
-
ngOnInit(): void;
|
|
935
|
-
ngOnDestroy(): void;
|
|
936
|
-
setDropList(dropList: any): void;
|
|
937
|
-
setDragHandle(handle: HTMLElement): void;
|
|
938
|
-
private setupDragEvents;
|
|
939
|
-
private onDragStart;
|
|
940
|
-
private onDragEnd;
|
|
941
|
-
private onTouchStart;
|
|
942
|
-
private onTouchMove;
|
|
943
|
-
private onTouchEnd;
|
|
944
|
-
private onTouchCancel;
|
|
945
|
-
private startTouchDrag;
|
|
946
|
-
private updateTouchDrag;
|
|
947
|
-
private endTouchDrag;
|
|
948
|
-
private cancelTouchDrag;
|
|
949
|
-
private createTouchDragPreview;
|
|
950
|
-
private checkDropZones;
|
|
951
|
-
private findDropZone;
|
|
952
|
-
private findAngularComponent;
|
|
953
|
-
private createFakeDragEvent;
|
|
954
|
-
private findTouch;
|
|
955
|
-
private resetTouchState;
|
|
956
|
-
private cleanupTouchDrag;
|
|
957
|
-
private createDragImage;
|
|
958
|
-
private cleanupListeners;
|
|
959
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<MatchaDragDirective, never>;
|
|
960
|
-
static ɵdir: i0.ɵɵDirectiveDeclaration<MatchaDragDirective, "[matchaDrag]", never, { "matchaDragData": { "alias": "matchaDragData"; "required": false; }; "matchaDragDisabled": { "alias": "matchaDragDisabled"; "required": false; }; }, {}, never, never, false, never>;
|
|
961
|
-
}
|
|
962
|
-
|
|
963
|
-
interface MatchaDropListDroppedEvent<T = any> {
|
|
964
|
-
previousIndex: number;
|
|
965
|
-
currentIndex: number;
|
|
966
|
-
item: T;
|
|
967
|
-
container: MatchaDropListComponent;
|
|
968
|
-
previousContainer?: MatchaDropListComponent;
|
|
969
|
-
data: T[];
|
|
970
|
-
}
|
|
971
|
-
interface MatchaDropListConnectedToEvent<T = any> {
|
|
972
|
-
sourceData: T[];
|
|
973
|
-
targetData: T[];
|
|
974
|
-
item: T;
|
|
975
|
-
previousIndex: number;
|
|
976
|
-
currentIndex: number;
|
|
977
|
-
}
|
|
978
|
-
declare class MatchaDropListComponent<T = any> implements OnInit, OnDestroy, AfterContentInit {
|
|
979
|
-
elementRef: ElementRef<HTMLElement>;
|
|
980
|
-
private renderer;
|
|
981
|
-
private dropListService;
|
|
982
|
-
matchaDropListData: T[];
|
|
983
|
-
matchaDropListDisabled: boolean;
|
|
984
|
-
matchaDropListConnectedTo: MatchaDropListComponent[];
|
|
985
|
-
matchaDropListSortingDisabled: boolean;
|
|
986
|
-
matchaDropListAcceptPredicate?: (item: any, sourceContainer: MatchaDropListComponent, targetContainer: MatchaDropListComponent) => boolean;
|
|
987
|
-
matchaDropListDropped: EventEmitter<MatchaDropListDroppedEvent<T>>;
|
|
988
|
-
dragItems: QueryList<MatchaDragDirective>;
|
|
989
|
-
get dropListClass(): boolean;
|
|
990
|
-
private currentDragItem?;
|
|
991
|
-
private dragStartIndex;
|
|
992
|
-
private sourceContainer?;
|
|
993
|
-
isReceivingDrag: boolean;
|
|
994
|
-
showDropIndicator: boolean;
|
|
995
|
-
dropIndicatorPosition: number;
|
|
996
|
-
canAcceptDrop: boolean;
|
|
997
|
-
private calculatedDropIndex;
|
|
998
|
-
constructor(elementRef: ElementRef<HTMLElement>, renderer: Renderer2, dropListService: MatchaDropListService);
|
|
999
|
-
ngOnInit(): void;
|
|
1000
|
-
ngAfterContentInit(): void;
|
|
1001
|
-
ngOnDestroy(): void;
|
|
1002
|
-
private setupDropZone;
|
|
1003
|
-
private updateDropIndicator;
|
|
1004
|
-
onDragStart(dragItem: MatchaDragDirective, event: DragEvent): void;
|
|
1005
|
-
onDragEnd(): void;
|
|
1006
|
-
private handleDrop;
|
|
1007
|
-
private reorderItems;
|
|
1008
|
-
private transferItem;
|
|
1009
|
-
private getDragItemIndex;
|
|
1010
|
-
notifyDragStart(dragItem: MatchaDragDirective, sourceContainer: MatchaDropListComponent): void;
|
|
1011
|
-
notifyDragEnd(): void;
|
|
1012
|
-
private canAcceptCurrentDrop;
|
|
1013
|
-
handleTouchDragOver(event: any): void;
|
|
1014
|
-
handleTouchDrop(event: any, dragItem: any): void;
|
|
1015
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<MatchaDropListComponent<any>, never>;
|
|
1016
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<MatchaDropListComponent<any>, "matcha-drop-list", never, { "matchaDropListData": { "alias": "matchaDropListData"; "required": false; }; "matchaDropListDisabled": { "alias": "matchaDropListDisabled"; "required": false; }; "matchaDropListConnectedTo": { "alias": "matchaDropListConnectedTo"; "required": false; }; "matchaDropListSortingDisabled": { "alias": "matchaDropListSortingDisabled"; "required": false; }; "matchaDropListAcceptPredicate": { "alias": "matchaDropListAcceptPredicate"; "required": false; }; }, { "matchaDropListDropped": "matchaDropListDropped"; }, ["dragItems"], ["*"], false, never>;
|
|
1017
|
-
}
|
|
1018
|
-
|
|
1019
|
-
declare class MatchaPageLayoutComponent {
|
|
1020
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<MatchaPageLayoutComponent, never>;
|
|
1021
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<MatchaPageLayoutComponent, "matcha-page-layout", never, {}, {}, never, ["*"], false, never>;
|
|
1022
|
-
}
|
|
1023
|
-
|
|
1024
|
-
declare class MatchaAvatarComponent {
|
|
1025
|
-
src: string;
|
|
1026
|
-
name: string;
|
|
1027
|
-
size: 'tiny' | 'small' | 'medium' | 'large' | 'huge';
|
|
1028
|
-
color: string;
|
|
1029
|
-
private _disabled;
|
|
1030
|
-
set disabled(value: boolean | string);
|
|
1031
|
-
get disabled(): boolean;
|
|
1032
|
-
get initials(): string;
|
|
1033
|
-
get hasImage(): boolean;
|
|
1034
|
-
get hasName(): boolean;
|
|
1035
|
-
get showDefaultIcon(): boolean;
|
|
1036
|
-
get sizeClass(): string;
|
|
1037
|
-
get avatarClasses(): string;
|
|
1038
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<MatchaAvatarComponent, never>;
|
|
1039
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<MatchaAvatarComponent, "matcha-avatar", never, { "src": { "alias": "src"; "required": false; }; "name": { "alias": "name"; "required": false; }; "size": { "alias": "size"; "required": false; }; "color": { "alias": "color"; "required": false; }; "disabled": { "alias": "disabled"; "required": false; }; }, {}, never, never, false, never>;
|
|
1040
|
-
}
|
|
1041
|
-
|
|
1042
|
-
declare class MatchaOptionComponent {
|
|
1043
|
-
private parent;
|
|
1044
|
-
private elRef;
|
|
1045
|
-
value: any;
|
|
1046
|
-
disabled: boolean;
|
|
1047
|
-
selected: boolean;
|
|
1048
|
-
optionClick: EventEmitter<any>;
|
|
1049
|
-
optionSelect: EventEmitter<MatchaOptionComponent>;
|
|
1050
|
-
constructor(parent: MatchaOptionParent | null, elRef: ElementRef);
|
|
1051
|
-
onClick(): void;
|
|
1052
|
-
private findParentAndSelect;
|
|
1053
|
-
onKeydown(ev: KeyboardEvent): void;
|
|
1054
|
-
get nativeElement(): HTMLElement;
|
|
1055
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<MatchaOptionComponent, [{ optional: true; }, null]>;
|
|
1056
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<MatchaOptionComponent, "matcha-option", never, { "value": { "alias": "value"; "required": false; }; "disabled": { "alias": "disabled"; "required": false; }; }, { "optionClick": "optionClick"; "optionSelect": "optionSelect"; }, never, ["*"], false, never>;
|
|
1057
|
-
}
|
|
1058
|
-
|
|
1059
|
-
interface PanelPosition {
|
|
1060
|
-
top: number;
|
|
1061
|
-
left: number;
|
|
1062
|
-
width: number;
|
|
1063
|
-
maxHeight?: number;
|
|
1064
|
-
}
|
|
1065
|
-
type PanelPlacement = 'bottom' | 'top' | 'auto';
|
|
1066
|
-
declare class MatchaPanelComponent implements OnInit, OnDestroy, OnChanges, AfterViewInit {
|
|
1067
|
-
private elRef;
|
|
1068
|
-
private cdr;
|
|
1069
|
-
placement: PanelPlacement;
|
|
1070
|
-
maxHeight: number;
|
|
1071
|
-
minWidth: number;
|
|
1072
|
-
offset: number;
|
|
1073
|
-
triggerElement?: HTMLElement;
|
|
1074
|
-
open: boolean;
|
|
1075
|
-
opened: EventEmitter<void>;
|
|
1076
|
-
closed: EventEmitter<void>;
|
|
1077
|
-
panelRef?: ElementRef<HTMLElement>;
|
|
1078
|
-
panelStyle: {
|
|
1079
|
-
[key: string]: any;
|
|
1080
|
-
};
|
|
1081
|
-
private destroy$;
|
|
1082
|
-
private scrollListener?;
|
|
1083
|
-
private resizeListener?;
|
|
1084
|
-
constructor(elRef: ElementRef, cdr: ChangeDetectorRef);
|
|
1085
|
-
ngOnInit(): void;
|
|
1086
|
-
ngOnDestroy(): void;
|
|
1087
|
-
/**
|
|
1088
|
-
* Anexa o painel a um elemento trigger
|
|
1089
|
-
*/
|
|
1090
|
-
attachTo(trigger: HTMLElement): void;
|
|
1091
|
-
ngAfterViewInit(): void;
|
|
1092
|
-
/**
|
|
1093
|
-
* Lifecycle hook para detectar mudanças no triggerElement
|
|
1094
|
-
*/
|
|
1095
|
-
ngOnChanges(): void;
|
|
1096
|
-
/**
|
|
1097
|
-
* Abre o painel
|
|
1098
|
-
*/
|
|
1099
|
-
openPanel(): void;
|
|
1100
|
-
/**
|
|
1101
|
-
* Fecha o painel
|
|
1102
|
-
*/
|
|
1103
|
-
closePanel(): void;
|
|
1104
|
-
/**
|
|
1105
|
-
* Alterna o estado do painel
|
|
1106
|
-
*/
|
|
1107
|
-
togglePanel(): void;
|
|
1108
|
-
/**
|
|
1109
|
-
* Atualiza a posição do painel (simplificado para absolute)
|
|
1110
|
-
*/
|
|
1111
|
-
updatePosition(): void;
|
|
1112
|
-
/**
|
|
1113
|
-
* Calcula a posição ideal do painel (simplificado para absolute)
|
|
1114
|
-
*/
|
|
1115
|
-
private calculatePosition;
|
|
1116
|
-
/**
|
|
1117
|
-
* Configura listeners para scroll e resize
|
|
1118
|
-
*/
|
|
1119
|
-
private setupListeners;
|
|
1120
|
-
/**
|
|
1121
|
-
* Remove listeners
|
|
1122
|
-
*/
|
|
1123
|
-
private cleanupListeners;
|
|
1124
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<MatchaPanelComponent, never>;
|
|
1125
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<MatchaPanelComponent, "matcha-panel", never, { "placement": { "alias": "placement"; "required": false; }; "maxHeight": { "alias": "maxHeight"; "required": false; }; "minWidth": { "alias": "minWidth"; "required": false; }; "offset": { "alias": "offset"; "required": false; }; "triggerElement": { "alias": "triggerElement"; "required": false; }; "open": { "alias": "open"; "required": false; }; }, { "opened": "opened"; "closed": "closed"; }, never, ["*"], false, never>;
|
|
1126
|
-
}
|
|
1127
|
-
|
|
1128
|
-
declare class MatchaAutocompleteComponent implements AfterContentInit, AfterViewInit, MatchaOptionParent {
|
|
1129
|
-
elRef: ElementRef;
|
|
1130
|
-
private renderer;
|
|
1131
|
-
private cdr;
|
|
1132
|
-
options: QueryList<MatchaOptionComponent>;
|
|
1133
|
-
panel: MatchaPanelComponent;
|
|
1134
|
-
private selectedValue;
|
|
1135
|
-
placement: 'bottom' | 'top' | 'auto';
|
|
1136
|
-
maxHeight: number;
|
|
1137
|
-
minWidth: number;
|
|
1138
|
-
opened: EventEmitter<void>;
|
|
1139
|
-
closed: EventEmitter<void>;
|
|
1140
|
-
open: boolean;
|
|
1141
|
-
triggerElement?: HTMLElement;
|
|
1142
|
-
private activeIndex;
|
|
1143
|
-
constructor(elRef: ElementRef, renderer: Renderer2, cdr: ChangeDetectorRef);
|
|
1144
|
-
ngAfterContentInit(): void;
|
|
1145
|
-
ngAfterViewInit(): void;
|
|
1146
|
-
attachTo(input: HTMLElement): void;
|
|
1147
|
-
openPanel(): void;
|
|
1148
|
-
closePanel(): void;
|
|
1149
|
-
togglePanel(): void;
|
|
1150
|
-
resetActive(): void;
|
|
1151
|
-
private updateSelectedStates;
|
|
1152
|
-
highlightNext(): void;
|
|
1153
|
-
highlightPrevious(): void;
|
|
1154
|
-
private scrollToActive;
|
|
1155
|
-
selectActive(): void;
|
|
1156
|
-
selectOption(option: MatchaOptionComponent): void;
|
|
1157
|
-
getSelectedValue(): any;
|
|
1158
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<MatchaAutocompleteComponent, never>;
|
|
1159
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<MatchaAutocompleteComponent, "matcha-autocomplete", never, { "placement": { "alias": "placement"; "required": false; }; "maxHeight": { "alias": "maxHeight"; "required": false; }; "minWidth": { "alias": "minWidth"; "required": false; }; }, { "opened": "opened"; "closed": "closed"; }, ["options"], ["*"], false, never>;
|
|
1160
|
-
}
|
|
1161
|
-
|
|
1162
|
-
declare class MatchaTooltipDirective {
|
|
1163
|
-
private el;
|
|
1164
|
-
private renderer;
|
|
1165
|
-
tooltipText: string;
|
|
1166
|
-
tooltipDisabled: boolean | string;
|
|
1167
|
-
preferAbove: boolean;
|
|
1168
|
-
preferBelow: boolean;
|
|
1169
|
-
preferLeft: boolean;
|
|
1170
|
-
preferRight: boolean;
|
|
1171
|
-
tooltipEnableClose: boolean;
|
|
1172
|
-
private tooltipElement;
|
|
1173
|
-
private documentClickListener;
|
|
1174
|
-
constructor(el: ElementRef, renderer: Renderer2);
|
|
1175
|
-
onMouseEnter(): void;
|
|
1176
|
-
onMouseLeave(): void;
|
|
1177
|
-
onClick(event: Event): void;
|
|
1178
|
-
private createTooltip;
|
|
1179
|
-
private destroyTooltip;
|
|
1180
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<MatchaTooltipDirective, never>;
|
|
1181
|
-
static ɵdir: i0.ɵɵDirectiveDeclaration<MatchaTooltipDirective, "[matchaTooltip]", never, { "tooltipText": { "alias": "matchaTooltip"; "required": false; }; "tooltipDisabled": { "alias": "matchaTooltipDisabled"; "required": false; }; "preferAbove": { "alias": "matchaTooltipAbove"; "required": false; }; "preferBelow": { "alias": "matchaTooltipBelow"; "required": false; }; "preferLeft": { "alias": "matchaTooltipLeft"; "required": false; }; "preferRight": { "alias": "matchaTooltipRight"; "required": false; }; "tooltipEnableClose": { "alias": "matchaTooltipEnableClose"; "required": false; }; }, {}, never, never, false, never>;
|
|
1182
|
-
}
|
|
1183
|
-
|
|
1184
|
-
declare class MatchaTooltipModule {
|
|
1185
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<MatchaTooltipModule, never>;
|
|
1186
|
-
static ɵmod: i0.ɵɵNgModuleDeclaration<MatchaTooltipModule, [typeof MatchaTooltipDirective], [typeof i2.CommonModule], [typeof MatchaTooltipDirective]>;
|
|
1187
|
-
static ɵinj: i0.ɵɵInjectorDeclaration<MatchaTooltipModule>;
|
|
1188
|
-
}
|
|
1189
|
-
|
|
1190
|
-
declare class MatchaIconModule {
|
|
1191
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<MatchaIconModule, never>;
|
|
1192
|
-
static ɵmod: i0.ɵɵNgModuleDeclaration<MatchaIconModule, [typeof MatchaIconComponent], [typeof i2.CommonModule, typeof MatchaTooltipModule], [typeof MatchaIconComponent]>;
|
|
1193
|
-
static ɵinj: i0.ɵɵInjectorDeclaration<MatchaIconModule>;
|
|
1194
|
-
}
|
|
1195
|
-
|
|
1196
|
-
declare class MatchaTitleModule {
|
|
1197
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<MatchaTitleModule, never>;
|
|
1198
|
-
static ɵmod: i0.ɵɵNgModuleDeclaration<MatchaTitleModule, [typeof MatchaTitleComponent], [typeof i2.CommonModule], [typeof MatchaTitleComponent]>;
|
|
1199
|
-
static ɵinj: i0.ɵɵInjectorDeclaration<MatchaTitleModule>;
|
|
1200
|
-
}
|
|
1201
|
-
|
|
1202
|
-
declare class MatchaDividerModule {
|
|
1203
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<MatchaDividerModule, never>;
|
|
1204
|
-
static ɵmod: i0.ɵɵNgModuleDeclaration<MatchaDividerModule, [typeof MatchaDividerComponent], [typeof i2.CommonModule], [typeof MatchaDividerComponent]>;
|
|
1205
|
-
static ɵinj: i0.ɵɵInjectorDeclaration<MatchaDividerModule>;
|
|
1206
|
-
}
|
|
1207
|
-
|
|
1208
|
-
declare class MatchaButtonModule {
|
|
1209
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<MatchaButtonModule, never>;
|
|
1210
|
-
static ɵmod: i0.ɵɵNgModuleDeclaration<MatchaButtonModule, [typeof MatchaButtonComponent], never, [typeof MatchaButtonComponent]>;
|
|
1211
|
-
static ɵinj: i0.ɵɵInjectorDeclaration<MatchaButtonModule>;
|
|
1212
|
-
}
|
|
1213
|
-
|
|
1214
|
-
declare class MatchaAccordionModule {
|
|
1215
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<MatchaAccordionModule, never>;
|
|
1216
|
-
static ɵmod: i0.ɵɵNgModuleDeclaration<MatchaAccordionModule, [typeof MatchaAccordionComponent, typeof MatchaAccordionItemComponent, typeof MatchaAccordionHeaderComponent, typeof MatchaAccordionContentComponent], [typeof i2.CommonModule, typeof MatchaIconModule, typeof MatchaTitleModule, typeof MatchaDividerModule, typeof MatchaTooltipModule, typeof MatchaButtonModule], [typeof MatchaAccordionComponent, typeof MatchaAccordionItemComponent, typeof MatchaAccordionHeaderComponent, typeof MatchaAccordionContentComponent]>;
|
|
1217
|
-
static ɵinj: i0.ɵɵInjectorDeclaration<MatchaAccordionModule>;
|
|
1218
|
-
}
|
|
1219
|
-
|
|
1220
|
-
declare class MatchaInfiniteScrollModule {
|
|
1221
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<MatchaInfiniteScrollModule, never>;
|
|
1222
|
-
static ɵmod: i0.ɵɵNgModuleDeclaration<MatchaInfiniteScrollModule, [typeof MatchaInfiniteScrollComponent, typeof MatchaInfiniteScrollDataComponent], [typeof i2.CommonModule], [typeof MatchaInfiniteScrollComponent, typeof MatchaInfiniteScrollDataComponent]>;
|
|
1223
|
-
static ɵinj: i0.ɵɵInjectorDeclaration<MatchaInfiniteScrollModule>;
|
|
1224
|
-
}
|
|
1225
|
-
|
|
1226
|
-
declare class MatchaLazyloadModule {
|
|
1227
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<MatchaLazyloadModule, never>;
|
|
1228
|
-
static ɵmod: i0.ɵɵNgModuleDeclaration<MatchaLazyloadModule, [typeof MatchaLazyloadComponent, typeof MatchaLazyloadDataComponent], [typeof i2.CommonModule], [typeof MatchaLazyloadComponent, typeof MatchaLazyloadDataComponent]>;
|
|
1229
|
-
static ɵinj: i0.ɵɵInjectorDeclaration<MatchaLazyloadModule>;
|
|
1230
|
-
}
|
|
1231
|
-
|
|
1232
|
-
declare class MatchaElevationDirective {
|
|
1233
|
-
private _elementRef;
|
|
1234
|
-
private _renderer;
|
|
1235
|
-
elevation: number | string;
|
|
1236
|
-
constructor(_elementRef: ElementRef, _renderer: Renderer2);
|
|
1237
|
-
ngOnChanges(): void;
|
|
1238
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<MatchaElevationDirective, never>;
|
|
1239
|
-
static ɵdir: i0.ɵɵDirectiveDeclaration<MatchaElevationDirective, "[elevation]", never, { "elevation": { "alias": "elevation"; "required": false; }; }, {}, never, never, false, never>;
|
|
1240
|
-
}
|
|
1241
|
-
|
|
1242
|
-
declare class MatchaElevationModule {
|
|
1243
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<MatchaElevationModule, never>;
|
|
1244
|
-
static ɵmod: i0.ɵɵNgModuleDeclaration<MatchaElevationModule, [typeof MatchaElevationDirective], [typeof i2.CommonModule], [typeof MatchaElevationDirective]>;
|
|
1245
|
-
static ɵinj: i0.ɵɵInjectorDeclaration<MatchaElevationModule>;
|
|
1246
|
-
}
|
|
1247
|
-
|
|
1248
|
-
declare class MatchaModalModule {
|
|
1249
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<MatchaModalModule, never>;
|
|
1250
|
-
static ɵmod: i0.ɵɵNgModuleDeclaration<MatchaModalModule, [typeof MatchaModalHeaderComponent, typeof MatchaModalContentComponent, typeof MatchaModalFooterComponent, typeof MatchaModalOptionsComponent, typeof MatchaModalComponent], [typeof i2.CommonModule, typeof MatchaIconModule, typeof MatchaTitleModule, typeof MatchaDividerModule, typeof MatchaTooltipModule, typeof MatchaElevationModule], [typeof MatchaModalHeaderComponent, typeof MatchaModalContentComponent, typeof MatchaModalFooterComponent, typeof MatchaModalOptionsComponent, typeof MatchaModalComponent]>;
|
|
1251
|
-
static ɵinj: i0.ɵɵInjectorDeclaration<MatchaModalModule>;
|
|
1252
|
-
}
|
|
1253
|
-
|
|
1254
|
-
declare class MatchaCardModule {
|
|
1255
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<MatchaCardModule, never>;
|
|
1256
|
-
static ɵmod: i0.ɵɵNgModuleDeclaration<MatchaCardModule, [typeof MatchaCardComponent], [typeof i2.CommonModule, typeof MatchaElevationModule, typeof MatchaIconModule, typeof MatchaTitleModule, typeof MatchaDividerModule, typeof MatchaTooltipModule], [typeof MatchaCardComponent]>;
|
|
1257
|
-
static ɵinj: i0.ɵɵInjectorDeclaration<MatchaCardModule>;
|
|
1258
|
-
}
|
|
1259
|
-
|
|
1260
|
-
declare class MatchaMasonryModule {
|
|
1261
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<MatchaMasonryModule, never>;
|
|
1262
|
-
static ɵmod: i0.ɵɵNgModuleDeclaration<MatchaMasonryModule, [typeof MatchaMasonryComponent], [typeof i2.CommonModule], [typeof MatchaMasonryComponent]>;
|
|
1263
|
-
static ɵinj: i0.ɵɵInjectorDeclaration<MatchaMasonryModule>;
|
|
1264
|
-
}
|
|
1265
|
-
|
|
1266
|
-
declare class MatchaButtonToggleModule {
|
|
1267
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<MatchaButtonToggleModule, never>;
|
|
1268
|
-
static ɵmod: i0.ɵɵNgModuleDeclaration<MatchaButtonToggleModule, [typeof MatchaButtonToggleComponent], [typeof i2.CommonModule, typeof MatchaTooltipModule], [typeof MatchaButtonToggleComponent]>;
|
|
1269
|
-
static ɵinj: i0.ɵɵInjectorDeclaration<MatchaButtonToggleModule>;
|
|
1270
|
-
}
|
|
1271
|
-
|
|
1272
|
-
declare class MatchaToolbarModule {
|
|
1273
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<MatchaToolbarModule, never>;
|
|
1274
|
-
static ɵmod: i0.ɵɵNgModuleDeclaration<MatchaToolbarModule, [typeof MatchaToolbarComponent, typeof MatchaToolbarButtonComponent, typeof MatchaToolbarContentComponent, typeof MatchaToolbarMainButtonComponent, typeof MatchaToolbarCustomButtonComponent], [typeof i2.CommonModule, typeof MatchaButtonModule, typeof MatchaTitleModule, typeof MatchaTooltipModule], [typeof MatchaToolbarComponent, typeof MatchaToolbarButtonComponent, typeof MatchaToolbarContentComponent, typeof MatchaToolbarMainButtonComponent, typeof MatchaToolbarCustomButtonComponent, typeof MatchaTitleModule]>;
|
|
1275
|
-
static ɵinj: i0.ɵɵInjectorDeclaration<MatchaToolbarModule>;
|
|
1276
|
-
}
|
|
1277
|
-
|
|
1278
|
-
declare class MatchaGridModule {
|
|
1279
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<MatchaGridModule, never>;
|
|
1280
|
-
static ɵmod: i0.ɵɵNgModuleDeclaration<MatchaGridModule, [typeof MatchaGridComponent], [typeof i2.CommonModule], [typeof MatchaGridComponent]>;
|
|
1281
|
-
static ɵinj: i0.ɵɵInjectorDeclaration<MatchaGridModule>;
|
|
1282
|
-
}
|
|
1283
|
-
|
|
1284
|
-
declare class MatchaFormFieldModule {
|
|
1285
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<MatchaFormFieldModule, never>;
|
|
1286
|
-
static ɵmod: i0.ɵɵNgModuleDeclaration<MatchaFormFieldModule, [typeof MatchaFormFieldComponent, typeof MatchaLabelComponent, typeof MatchaErrorComponent], [typeof i2.CommonModule, typeof MatchaIconModule], [typeof MatchaFormFieldComponent, typeof MatchaLabelComponent, typeof MatchaErrorComponent]>;
|
|
1287
|
-
static ɵinj: i0.ɵɵInjectorDeclaration<MatchaFormFieldModule>;
|
|
1288
|
-
}
|
|
1289
|
-
|
|
1290
|
-
declare class MatchaOverflowDraggableComponent {
|
|
1291
|
-
dragRef: string;
|
|
1292
|
-
dragToScroll(): void;
|
|
1293
|
-
get classes(): string;
|
|
1294
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<MatchaOverflowDraggableComponent, never>;
|
|
1295
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<MatchaOverflowDraggableComponent, "matcha-overflow-draggable", never, { "dragRef": { "alias": "dragRef"; "required": false; }; }, {}, never, ["*"], false, never>;
|
|
1296
|
-
}
|
|
1297
|
-
|
|
1298
|
-
declare class MatchaAutocompleteTriggerDirective implements AfterViewInit, OnDestroy {
|
|
1299
|
-
private el;
|
|
1300
|
-
panel: MatchaAutocompleteComponent;
|
|
1301
|
-
private subs;
|
|
1302
|
-
constructor(el: ElementRef<HTMLInputElement>);
|
|
1303
|
-
ngAfterViewInit(): void;
|
|
1304
|
-
ngOnDestroy(): void;
|
|
1305
|
-
private writeValueToInput;
|
|
1306
|
-
onClick(): void;
|
|
1307
|
-
onFocus(): void;
|
|
1308
|
-
onInput(e: Event): void;
|
|
1309
|
-
onKeydown(ev: KeyboardEvent): void;
|
|
1310
|
-
onDocClick(ev: MouseEvent): void;
|
|
1311
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<MatchaAutocompleteTriggerDirective, never>;
|
|
1312
|
-
static ɵdir: i0.ɵɵDirectiveDeclaration<MatchaAutocompleteTriggerDirective, "[matchaAutocomplete]", never, { "panel": { "alias": "matchaAutocomplete"; "required": false; }; }, {}, never, never, false, never>;
|
|
1313
|
-
}
|
|
1314
|
-
|
|
1315
|
-
declare class MatchaOptionModule {
|
|
1316
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<MatchaOptionModule, never>;
|
|
1317
|
-
static ɵmod: i0.ɵɵNgModuleDeclaration<MatchaOptionModule, [typeof MatchaOptionComponent], [typeof i2.CommonModule], [typeof MatchaOptionComponent]>;
|
|
1318
|
-
static ɵinj: i0.ɵɵInjectorDeclaration<MatchaOptionModule>;
|
|
1319
|
-
}
|
|
1320
|
-
|
|
1321
|
-
declare class MatchaPanelModule {
|
|
1322
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<MatchaPanelModule, never>;
|
|
1323
|
-
static ɵmod: i0.ɵɵNgModuleDeclaration<MatchaPanelModule, [typeof MatchaPanelComponent], [typeof i2.CommonModule], [typeof MatchaPanelComponent]>;
|
|
1324
|
-
static ɵinj: i0.ɵɵInjectorDeclaration<MatchaPanelModule>;
|
|
1325
|
-
}
|
|
1326
|
-
|
|
1327
|
-
declare class MatchaAutocompleteModule {
|
|
1328
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<MatchaAutocompleteModule, never>;
|
|
1329
|
-
static ɵmod: i0.ɵɵNgModuleDeclaration<MatchaAutocompleteModule, [typeof MatchaAutocompleteComponent, typeof MatchaAutocompleteTriggerDirective], [typeof i2.CommonModule, typeof MatchaOptionModule, typeof MatchaPanelModule], [typeof MatchaAutocompleteComponent, typeof MatchaAutocompleteTriggerDirective, typeof MatchaOptionModule]>;
|
|
1330
|
-
static ɵinj: i0.ɵɵInjectorDeclaration<MatchaAutocompleteModule>;
|
|
1331
|
-
}
|
|
1332
|
-
|
|
1333
|
-
declare class MatchaBadgeDirective {
|
|
1334
|
-
private _elementRef;
|
|
1335
|
-
private _renderer;
|
|
1336
|
-
constructor(_elementRef: ElementRef, _renderer: Renderer2);
|
|
1337
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<MatchaBadgeDirective, never>;
|
|
1338
|
-
static ɵdir: i0.ɵɵDirectiveDeclaration<MatchaBadgeDirective, "[matcha-badge]", never, {}, {}, never, never, false, never>;
|
|
1339
|
-
}
|
|
1340
|
-
|
|
1341
|
-
declare class MatchaBadgeModule {
|
|
1342
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<MatchaBadgeModule, never>;
|
|
1343
|
-
static ɵmod: i0.ɵɵNgModuleDeclaration<MatchaBadgeModule, [typeof MatchaBadgeDirective], never, [typeof MatchaBadgeDirective]>;
|
|
1344
|
-
static ɵinj: i0.ɵɵInjectorDeclaration<MatchaBadgeModule>;
|
|
1345
|
-
}
|
|
1346
|
-
|
|
1347
|
-
declare class MatchaRippleDirective implements OnDestroy {
|
|
1348
|
-
private el;
|
|
1349
|
-
rippleColor: string;
|
|
1350
|
-
private ripples;
|
|
1351
|
-
constructor(el: ElementRef);
|
|
1352
|
-
onMouseDown(event: MouseEvent): void;
|
|
1353
|
-
ngOnDestroy(): void;
|
|
1354
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<MatchaRippleDirective, never>;
|
|
1355
|
-
static ɵdir: i0.ɵɵDirectiveDeclaration<MatchaRippleDirective, "[matchaRipple]", never, { "rippleColor": { "alias": "rippleColor"; "required": false; }; }, {}, never, never, false, never>;
|
|
1356
|
-
}
|
|
1357
|
-
|
|
1358
|
-
declare class MatchaRippleModule {
|
|
1359
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<MatchaRippleModule, never>;
|
|
1360
|
-
static ɵmod: i0.ɵɵNgModuleDeclaration<MatchaRippleModule, [typeof MatchaRippleDirective], [typeof i2.CommonModule], [typeof MatchaRippleDirective]>;
|
|
1361
|
-
static ɵinj: i0.ɵɵInjectorDeclaration<MatchaRippleModule>;
|
|
1362
|
-
}
|
|
1363
|
-
|
|
1364
|
-
declare class MatchaCheckboxModule {
|
|
1365
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<MatchaCheckboxModule, never>;
|
|
1366
|
-
static ɵmod: i0.ɵɵNgModuleDeclaration<MatchaCheckboxModule, [typeof MatchaCheckboxComponent], [typeof i2.CommonModule, typeof MatchaRippleModule], [typeof MatchaCheckboxComponent]>;
|
|
1367
|
-
static ɵinj: i0.ɵɵInjectorDeclaration<MatchaCheckboxModule>;
|
|
1368
|
-
}
|
|
1369
|
-
|
|
1370
|
-
declare class MatchaRadioModule {
|
|
1371
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<MatchaRadioModule, never>;
|
|
1372
|
-
static ɵmod: i0.ɵɵNgModuleDeclaration<MatchaRadioModule, [typeof MatchaRadioComponent], [typeof i2.CommonModule, typeof MatchaRippleModule], [typeof MatchaRadioComponent]>;
|
|
1373
|
-
static ɵinj: i0.ɵɵInjectorDeclaration<MatchaRadioModule>;
|
|
1374
|
-
}
|
|
1375
|
-
|
|
1376
|
-
declare class MatchaChipsDirective {
|
|
1377
|
-
private _elementRef;
|
|
1378
|
-
private _renderer;
|
|
1379
|
-
constructor(_elementRef: ElementRef, _renderer: Renderer2);
|
|
1380
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<MatchaChipsDirective, never>;
|
|
1381
|
-
static ɵdir: i0.ɵɵDirectiveDeclaration<MatchaChipsDirective, "[matchaChips]", never, {}, {}, never, never, false, never>;
|
|
1382
|
-
}
|
|
1383
|
-
|
|
1384
|
-
declare class MatchaChipsModule {
|
|
1385
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<MatchaChipsModule, never>;
|
|
1386
|
-
static ɵmod: i0.ɵɵNgModuleDeclaration<MatchaChipsModule, [typeof MatchaChipsDirective], never, [typeof MatchaChipsDirective]>;
|
|
1387
|
-
static ɵinj: i0.ɵɵInjectorDeclaration<MatchaChipsModule>;
|
|
1388
|
-
}
|
|
1389
|
-
|
|
1390
|
-
declare class MatchaHintTextModule {
|
|
1391
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<MatchaHintTextModule, never>;
|
|
1392
|
-
static ɵmod: i0.ɵɵNgModuleDeclaration<MatchaHintTextModule, [typeof MatchaHintTextComponent], [typeof i2.CommonModule, typeof MatchaIconModule], [typeof MatchaHintTextComponent]>;
|
|
1393
|
-
static ɵinj: i0.ɵɵInjectorDeclaration<MatchaHintTextModule>;
|
|
1394
|
-
}
|
|
1395
|
-
|
|
1396
|
-
declare class MatchaInputDirective {
|
|
1397
|
-
private _elementRef;
|
|
1398
|
-
private _renderer;
|
|
1399
|
-
constructor(_elementRef: ElementRef, _renderer: Renderer2);
|
|
1400
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<MatchaInputDirective, never>;
|
|
1401
|
-
static ɵdir: i0.ɵɵDirectiveDeclaration<MatchaInputDirective, "[matcha-input]", never, {}, {}, never, never, false, never>;
|
|
1402
|
-
}
|
|
1403
|
-
|
|
1404
|
-
declare class MatchaInputModule {
|
|
1405
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<MatchaInputModule, never>;
|
|
1406
|
-
static ɵmod: i0.ɵɵNgModuleDeclaration<MatchaInputModule, [typeof MatchaInputDirective], never, [typeof MatchaInputDirective]>;
|
|
1407
|
-
static ɵinj: i0.ɵɵInjectorDeclaration<MatchaInputModule>;
|
|
1408
|
-
}
|
|
1409
|
-
|
|
1410
|
-
declare class MatchaMenuTriggerForDirective {
|
|
1411
|
-
private _elementRef;
|
|
1412
|
-
private _renderer;
|
|
1413
|
-
menu: MatchaMenuComponent;
|
|
1414
|
-
constructor(_elementRef: ElementRef, _renderer: Renderer2);
|
|
1415
|
-
onClick(event: Event): void;
|
|
1416
|
-
onMouseEnter(): void;
|
|
1417
|
-
onMouseLeave(): void;
|
|
1418
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<MatchaMenuTriggerForDirective, never>;
|
|
1419
|
-
static ɵdir: i0.ɵɵDirectiveDeclaration<MatchaMenuTriggerForDirective, "[matchaMenuTriggerFor]", ["matchaMenuTriggerFor"], { "menu": { "alias": "matchaMenuTriggerFor"; "required": false; }; }, {}, never, never, false, never>;
|
|
1420
|
-
}
|
|
1421
|
-
|
|
1422
|
-
declare class MatchaMenuModule {
|
|
1423
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<MatchaMenuModule, never>;
|
|
1424
|
-
static ɵmod: i0.ɵɵNgModuleDeclaration<MatchaMenuModule, [typeof MatchaMenuComponent, typeof MatchaMenuTriggerForDirective], [typeof i2.CommonModule], [typeof MatchaMenuComponent, typeof MatchaMenuTriggerForDirective]>;
|
|
1425
|
-
static ɵinj: i0.ɵɵInjectorDeclaration<MatchaMenuModule>;
|
|
1426
|
-
}
|
|
1427
|
-
|
|
1428
|
-
declare class MatchaPaginatorDirective {
|
|
1429
|
-
private _elementRef;
|
|
1430
|
-
private _renderer;
|
|
1431
|
-
constructor(_elementRef: ElementRef, _renderer: Renderer2);
|
|
1432
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<MatchaPaginatorDirective, never>;
|
|
1433
|
-
static ɵdir: i0.ɵɵDirectiveDeclaration<MatchaPaginatorDirective, "[matchaPaginator]", never, {}, {}, never, never, false, never>;
|
|
1434
|
-
}
|
|
1435
|
-
|
|
1436
|
-
declare class MatchaPaginatorModule {
|
|
1437
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<MatchaPaginatorModule, never>;
|
|
1438
|
-
static ɵmod: i0.ɵɵNgModuleDeclaration<MatchaPaginatorModule, [typeof MatchaPaginatorDirective], [typeof i2.CommonModule], [typeof MatchaPaginatorDirective]>;
|
|
1439
|
-
static ɵinj: i0.ɵɵInjectorDeclaration<MatchaPaginatorModule>;
|
|
1440
|
-
}
|
|
1441
|
-
|
|
1442
|
-
declare class MatchaProgressBarDirective {
|
|
1443
|
-
private _elementRef;
|
|
1444
|
-
private _renderer;
|
|
1445
|
-
constructor(_elementRef: ElementRef, _renderer: Renderer2);
|
|
1446
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<MatchaProgressBarDirective, never>;
|
|
1447
|
-
static ɵdir: i0.ɵɵDirectiveDeclaration<MatchaProgressBarDirective, "[matcha-progress-bar]", never, {}, {}, never, never, false, never>;
|
|
1448
|
-
}
|
|
1449
|
-
|
|
1450
|
-
declare class MatchaProgressBarModule {
|
|
1451
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<MatchaProgressBarModule, never>;
|
|
1452
|
-
static ɵmod: i0.ɵɵNgModuleDeclaration<MatchaProgressBarModule, [typeof MatchaProgressBarDirective], [typeof i2.CommonModule], [typeof MatchaProgressBarDirective]>;
|
|
1453
|
-
static ɵinj: i0.ɵɵInjectorDeclaration<MatchaProgressBarModule>;
|
|
1454
|
-
}
|
|
1455
|
-
|
|
1456
|
-
declare class MatchaSidenavDirective {
|
|
1457
|
-
private _elementRef;
|
|
1458
|
-
private _renderer;
|
|
1459
|
-
constructor(_elementRef: ElementRef, _renderer: Renderer2);
|
|
1460
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<MatchaSidenavDirective, never>;
|
|
1461
|
-
static ɵdir: i0.ɵɵDirectiveDeclaration<MatchaSidenavDirective, "[matcha-sidenav]", never, {}, {}, never, never, false, never>;
|
|
1462
|
-
}
|
|
1463
|
-
|
|
1464
|
-
declare class MatchaSidenavModule {
|
|
1465
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<MatchaSidenavModule, never>;
|
|
1466
|
-
static ɵmod: i0.ɵɵNgModuleDeclaration<MatchaSidenavModule, [typeof MatchaSidenavDirective], [typeof i2.CommonModule], [typeof MatchaSidenavDirective]>;
|
|
1467
|
-
static ɵinj: i0.ɵɵInjectorDeclaration<MatchaSidenavModule>;
|
|
1468
|
-
}
|
|
1469
|
-
|
|
1470
|
-
declare class MatchaSlideToggleModule {
|
|
1471
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<MatchaSlideToggleModule, never>;
|
|
1472
|
-
static ɵmod: i0.ɵɵNgModuleDeclaration<MatchaSlideToggleModule, [typeof MatchaSlideToggleComponent], [typeof i2.CommonModule, typeof i3.FormsModule], [typeof MatchaSlideToggleComponent]>;
|
|
1473
|
-
static ɵinj: i0.ɵɵInjectorDeclaration<MatchaSlideToggleModule>;
|
|
1474
|
-
}
|
|
1475
|
-
|
|
1476
|
-
declare class MatchaSliderDirective {
|
|
1477
|
-
private _elementRef;
|
|
1478
|
-
private _renderer;
|
|
1479
|
-
constructor(_elementRef: ElementRef, _renderer: Renderer2);
|
|
1480
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<MatchaSliderDirective, never>;
|
|
1481
|
-
static ɵdir: i0.ɵɵDirectiveDeclaration<MatchaSliderDirective, "[matchaSlider]", never, {}, {}, never, never, false, never>;
|
|
1482
|
-
}
|
|
1483
|
-
|
|
1484
|
-
declare class MatchaSliderModule {
|
|
1485
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<MatchaSliderModule, never>;
|
|
1486
|
-
static ɵmod: i0.ɵɵNgModuleDeclaration<MatchaSliderModule, [typeof MatchaSliderDirective], [typeof i2.CommonModule], [typeof MatchaSliderDirective]>;
|
|
1487
|
-
static ɵinj: i0.ɵɵInjectorDeclaration<MatchaSliderModule>;
|
|
1488
|
-
}
|
|
1489
|
-
|
|
1490
|
-
declare class MatchaSnackBarDirective {
|
|
1491
|
-
private _elementRef;
|
|
1492
|
-
private _renderer;
|
|
1493
|
-
constructor(_elementRef: ElementRef, _renderer: Renderer2);
|
|
1494
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<MatchaSnackBarDirective, never>;
|
|
1495
|
-
static ɵdir: i0.ɵɵDirectiveDeclaration<MatchaSnackBarDirective, "[matchaSnackBar]", never, {}, {}, never, never, false, never>;
|
|
1496
|
-
}
|
|
1497
|
-
|
|
1498
|
-
declare class MatchaSnackBarModule {
|
|
1499
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<MatchaSnackBarModule, never>;
|
|
1500
|
-
static ɵmod: i0.ɵɵNgModuleDeclaration<MatchaSnackBarModule, [typeof MatchaSnackBarDirective], [typeof i2.CommonModule], [typeof MatchaSnackBarDirective]>;
|
|
1501
|
-
static ɵinj: i0.ɵɵInjectorDeclaration<MatchaSnackBarModule>;
|
|
1502
|
-
}
|
|
1503
|
-
|
|
1504
|
-
declare class MatchaSortHeaderDirective {
|
|
1505
|
-
private _elementRef;
|
|
1506
|
-
private _renderer;
|
|
1507
|
-
constructor(_elementRef: ElementRef, _renderer: Renderer2);
|
|
1508
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<MatchaSortHeaderDirective, never>;
|
|
1509
|
-
static ɵdir: i0.ɵɵDirectiveDeclaration<MatchaSortHeaderDirective, "[matchaSortHeader]", never, {}, {}, never, never, false, never>;
|
|
1510
|
-
}
|
|
1511
|
-
|
|
1512
|
-
declare class MatchaSortHeaderModule {
|
|
1513
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<MatchaSortHeaderModule, never>;
|
|
1514
|
-
static ɵmod: i0.ɵɵNgModuleDeclaration<MatchaSortHeaderModule, [typeof MatchaSortHeaderDirective], [typeof i2.CommonModule], [typeof MatchaSortHeaderDirective]>;
|
|
1515
|
-
static ɵinj: i0.ɵɵInjectorDeclaration<MatchaSortHeaderModule>;
|
|
1516
|
-
}
|
|
1517
|
-
|
|
1518
|
-
declare class MatchaSpinModule {
|
|
1519
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<MatchaSpinModule, never>;
|
|
1520
|
-
static ɵmod: i0.ɵɵNgModuleDeclaration<MatchaSpinModule, [typeof MatchaSpinComponent], [typeof i2.CommonModule], [typeof MatchaSpinComponent]>;
|
|
1521
|
-
static ɵinj: i0.ɵɵInjectorDeclaration<MatchaSpinModule>;
|
|
1522
|
-
}
|
|
1523
|
-
|
|
1524
|
-
declare class MatchaSpinnerModule {
|
|
1525
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<MatchaSpinnerModule, never>;
|
|
1526
|
-
static ɵmod: i0.ɵɵNgModuleDeclaration<MatchaSpinnerModule, [typeof MatchaSpinnerComponent], [typeof i2.CommonModule], [typeof MatchaSpinnerComponent]>;
|
|
1527
|
-
static ɵinj: i0.ɵɵInjectorDeclaration<MatchaSpinnerModule>;
|
|
1528
|
-
}
|
|
1529
|
-
|
|
1530
|
-
declare class PrevStepDirective {
|
|
1531
|
-
private stepper;
|
|
1532
|
-
constructor(stepper: MatchaStepperContentComponent | null);
|
|
1533
|
-
onClick(): void;
|
|
1534
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<PrevStepDirective, never>;
|
|
1535
|
-
static ɵdir: i0.ɵɵDirectiveDeclaration<PrevStepDirective, "[prevStep]", never, {}, {}, never, never, true, never>;
|
|
1536
|
-
}
|
|
1537
|
-
|
|
1538
|
-
declare class NextStepDirective {
|
|
1539
|
-
private stepper;
|
|
1540
|
-
constructor(stepper: MatchaStepperContentComponent | null);
|
|
1541
|
-
onClick(): void;
|
|
1542
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<NextStepDirective, never>;
|
|
1543
|
-
static ɵdir: i0.ɵɵDirectiveDeclaration<NextStepDirective, "[nextStep]", never, {}, {}, never, never, true, never>;
|
|
1544
|
-
}
|
|
1545
|
-
|
|
1546
|
-
declare class MatchaStepperModule {
|
|
1547
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<MatchaStepperModule, never>;
|
|
1548
|
-
static ɵmod: i0.ɵɵNgModuleDeclaration<MatchaStepperModule, [typeof MatchaStepperControllerComponent, typeof MatchaStepperComponent, typeof MatchaStepperContentComponent, typeof StepComponent], [typeof i2.CommonModule, typeof PrevStepDirective, typeof NextStepDirective], [typeof MatchaStepperControllerComponent, typeof MatchaStepperComponent, typeof MatchaStepperContentComponent, typeof StepComponent, typeof PrevStepDirective, typeof NextStepDirective]>;
|
|
1549
|
-
static ɵinj: i0.ɵɵInjectorDeclaration<MatchaStepperModule>;
|
|
1550
|
-
}
|
|
1551
|
-
|
|
1552
|
-
declare class MatchaTableDirective {
|
|
1553
|
-
private _elementRef;
|
|
1554
|
-
private _renderer;
|
|
1555
|
-
constructor(_elementRef: ElementRef, _renderer: Renderer2);
|
|
1556
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<MatchaTableDirective, never>;
|
|
1557
|
-
static ɵdir: i0.ɵɵDirectiveDeclaration<MatchaTableDirective, "[matchaTable]", never, {}, {}, never, never, false, never>;
|
|
1558
|
-
}
|
|
1559
|
-
|
|
1560
|
-
declare class MatchaTableModule {
|
|
1561
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<MatchaTableModule, never>;
|
|
1562
|
-
static ɵmod: i0.ɵɵNgModuleDeclaration<MatchaTableModule, [typeof MatchaTableDirective], [typeof i2.CommonModule], [typeof MatchaTableDirective]>;
|
|
1563
|
-
static ɵinj: i0.ɵɵInjectorDeclaration<MatchaTableModule>;
|
|
1564
|
-
}
|
|
1565
|
-
|
|
1566
|
-
declare class MatchaTabsModule {
|
|
1567
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<MatchaTabsModule, never>;
|
|
1568
|
-
static ɵmod: i0.ɵɵNgModuleDeclaration<MatchaTabsModule, [typeof MatchaTabsComponent, typeof MatchaTabItemComponent], [typeof i2.CommonModule, typeof MatchaTooltipModule, typeof MatchaIconModule], [typeof MatchaTabsComponent, typeof MatchaTabItemComponent]>;
|
|
1569
|
-
static ɵinj: i0.ɵɵInjectorDeclaration<MatchaTabsModule>;
|
|
1570
|
-
}
|
|
1571
|
-
|
|
1572
|
-
declare class MatchaDateModule {
|
|
1573
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<MatchaDateModule, never>;
|
|
1574
|
-
static ɵmod: i0.ɵɵNgModuleDeclaration<MatchaDateModule, [typeof MatchaDateComponent], [typeof i2.CommonModule, typeof i3.ReactiveFormsModule], [typeof MatchaDateComponent]>;
|
|
1575
|
-
static ɵinj: i0.ɵɵInjectorDeclaration<MatchaDateModule>;
|
|
1576
|
-
}
|
|
1577
|
-
|
|
1578
|
-
declare class MatchaTimeModule {
|
|
1579
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<MatchaTimeModule, never>;
|
|
1580
|
-
static ɵmod: i0.ɵɵNgModuleDeclaration<MatchaTimeModule, [typeof MatchaTimeComponent], [typeof i2.CommonModule, typeof i3.ReactiveFormsModule], [typeof MatchaTimeComponent]>;
|
|
1581
|
-
static ɵinj: i0.ɵɵInjectorDeclaration<MatchaTimeModule>;
|
|
1582
|
-
}
|
|
1583
|
-
|
|
1584
|
-
declare class MatchaDragHandleDirective implements OnInit {
|
|
1585
|
-
private elementRef;
|
|
1586
|
-
private dragDirective;
|
|
1587
|
-
get dragHandleClass(): boolean;
|
|
1588
|
-
constructor(elementRef: ElementRef<HTMLElement>, dragDirective: MatchaDragDirective);
|
|
1589
|
-
ngOnInit(): void;
|
|
1590
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<MatchaDragHandleDirective, never>;
|
|
1591
|
-
static ɵdir: i0.ɵɵDirectiveDeclaration<MatchaDragHandleDirective, "[matchaDragHandle]", never, {}, {}, never, never, false, never>;
|
|
1592
|
-
}
|
|
1593
|
-
|
|
1594
|
-
declare class MatchaDropListModule {
|
|
1595
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<MatchaDropListModule, never>;
|
|
1596
|
-
static ɵmod: i0.ɵɵNgModuleDeclaration<MatchaDropListModule, [typeof MatchaDropListComponent, typeof MatchaDragDirective, typeof MatchaDragHandleDirective], [typeof i2.CommonModule], [typeof MatchaDropListComponent, typeof MatchaDragDirective, typeof MatchaDragHandleDirective]>;
|
|
1597
|
-
static ɵinj: i0.ɵɵInjectorDeclaration<MatchaDropListModule>;
|
|
1598
|
-
}
|
|
1599
|
-
|
|
1600
|
-
declare class MatchaPageLayoutModule {
|
|
1601
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<MatchaPageLayoutModule, never>;
|
|
1602
|
-
static ɵmod: i0.ɵɵNgModuleDeclaration<MatchaPageLayoutModule, [typeof MatchaPageLayoutComponent], [typeof i2.CommonModule, typeof MatchaStepperModule], [typeof MatchaPageLayoutComponent]>;
|
|
1603
|
-
static ɵinj: i0.ɵɵInjectorDeclaration<MatchaPageLayoutModule>;
|
|
1604
|
-
}
|
|
1605
|
-
|
|
1606
|
-
declare class MatchaDrawerModule {
|
|
1607
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<MatchaDrawerModule, never>;
|
|
1608
|
-
static ɵmod: i0.ɵɵNgModuleDeclaration<MatchaDrawerModule, [typeof MatchaDrawerComponent, typeof MatchaDrawerContainerComponent, typeof MatchaDrawerContentComponent], [typeof i2.CommonModule, typeof MatchaButtonModule], [typeof MatchaDrawerComponent, typeof MatchaDrawerContainerComponent, typeof MatchaDrawerContentComponent]>;
|
|
1609
|
-
static ɵinj: i0.ɵɵInjectorDeclaration<MatchaDrawerModule>;
|
|
1610
|
-
}
|
|
1611
|
-
|
|
1612
|
-
declare class MatchaAvatarModule {
|
|
1613
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<MatchaAvatarModule, never>;
|
|
1614
|
-
static ɵmod: i0.ɵɵNgModuleDeclaration<MatchaAvatarModule, [typeof MatchaAvatarComponent], [typeof i2.CommonModule], [typeof MatchaAvatarComponent]>;
|
|
1615
|
-
static ɵinj: i0.ɵɵInjectorDeclaration<MatchaAvatarModule>;
|
|
1616
|
-
}
|
|
1617
|
-
|
|
1618
|
-
declare class MatchaComponentsModule {
|
|
1619
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<MatchaComponentsModule, never>;
|
|
1620
|
-
static ɵmod: i0.ɵɵNgModuleDeclaration<MatchaComponentsModule, [typeof MatchaOverflowDraggableComponent], [typeof i2.CommonModule, typeof i3.FormsModule, typeof i3.ReactiveFormsModule, typeof MatchaAccordionModule, typeof MatchaAutocompleteModule, typeof MatchaOptionModule, typeof MatchaPanelModule, typeof MatchaBadgeModule, typeof MatchaButtonModule, typeof MatchaButtonToggleModule, typeof MatchaCardModule, typeof MatchaCheckboxModule, typeof MatchaRadioModule, typeof MatchaChipsModule, typeof MatchaDividerModule, typeof MatchaElevationModule, typeof MatchaFormFieldModule, typeof MatchaHintTextModule, typeof MatchaIconModule, typeof MatchaInfiniteScrollModule, typeof MatchaLazyloadModule, typeof MatchaInputModule, typeof MatchaMasonryModule, typeof MatchaMenuModule, typeof MatchaModalModule, typeof MatchaPaginatorModule, typeof MatchaProgressBarModule, typeof MatchaRippleModule, typeof MatchaSidenavModule, typeof MatchaSlideToggleModule, typeof MatchaSliderModule, typeof MatchaSnackBarModule, typeof MatchaSortHeaderModule, typeof MatchaSpinModule, typeof MatchaSpinnerModule, typeof MatchaStepperModule, typeof MatchaTableModule, typeof MatchaTabsModule, typeof MatchaTitleModule, typeof MatchaTooltipModule, typeof MatchaDateModule, typeof MatchaTimeModule, typeof MatchaDropListModule, typeof MatchaPageLayoutModule, typeof MatchaDrawerModule], [typeof MatchaAccordionModule, typeof MatchaAutocompleteModule, typeof MatchaOptionModule, typeof MatchaPanelModule, typeof MatchaBadgeModule, typeof MatchaButtonModule, typeof MatchaButtonToggleModule, typeof MatchaCardModule, typeof MatchaCheckboxModule, typeof MatchaRadioModule, typeof MatchaChipsModule, typeof MatchaDividerModule, typeof MatchaElevationModule, typeof MatchaFormFieldModule, typeof MatchaHintTextModule, typeof MatchaIconModule, typeof MatchaInfiniteScrollModule, typeof MatchaLazyloadModule, typeof MatchaInputModule, typeof MatchaMasonryModule, typeof MatchaMenuModule, typeof MatchaModalModule, typeof MatchaPaginatorModule, typeof MatchaProgressBarModule, typeof MatchaRippleModule, typeof MatchaSidenavModule, typeof MatchaSlideToggleModule, typeof MatchaSliderModule, typeof MatchaSnackBarModule, typeof MatchaSortHeaderModule, typeof MatchaSpinModule, typeof MatchaSpinnerModule, typeof MatchaStepperModule, typeof MatchaTableModule, typeof MatchaTabsModule, typeof MatchaTitleModule, typeof MatchaTooltipModule, typeof MatchaDateModule, typeof MatchaTimeModule, typeof MatchaDropListModule, typeof MatchaPageLayoutModule, typeof MatchaAvatarModule, typeof MatchaDrawerModule]>;
|
|
1621
|
-
static ɵinj: i0.ɵɵInjectorDeclaration<MatchaComponentsModule>;
|
|
1622
|
-
}
|
|
1623
|
-
|
|
1624
|
-
declare class MatchaSkeletonModule {
|
|
1625
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<MatchaSkeletonModule, never>;
|
|
1626
|
-
static ɵmod: i0.ɵɵNgModuleDeclaration<MatchaSkeletonModule, [typeof MatchaSkeletonComponent], [typeof i2.CommonModule], [typeof MatchaSkeletonComponent]>;
|
|
1627
|
-
static ɵinj: i0.ɵɵInjectorDeclaration<MatchaSkeletonModule>;
|
|
1628
|
-
}
|
|
1629
|
-
|
|
1630
|
-
/**
|
|
1631
|
-
* Serviço responsável pela implementação técnica do overlay e backdrop dos modais.
|
|
1632
|
-
*
|
|
1633
|
-
* Este serviço lida com a criação e gerenciamento do container do overlay,
|
|
1634
|
-
* criação do backdrop e manipulação do DOM. É um serviço de baixo nível
|
|
1635
|
-
* utilizado internamente pelo MatchaModalService.
|
|
1636
|
-
*
|
|
1637
|
-
* @example
|
|
1638
|
-
* ```typescript
|
|
1639
|
-
* constructor(private overlayService: MatchaOverlayService) {}
|
|
1640
|
-
*
|
|
1641
|
-
* createOverlay() {
|
|
1642
|
-
* this.overlayService.open(MyComponent);
|
|
1643
|
-
* }
|
|
1644
|
-
* ```
|
|
1645
|
-
*/
|
|
1646
|
-
declare class MatchaOverlayService {
|
|
1647
|
-
private appRef;
|
|
1648
|
-
private injector;
|
|
1649
|
-
private rendererFactory;
|
|
1650
|
-
private overlayContainer;
|
|
1651
|
-
private activeModal;
|
|
1652
|
-
private backdrop;
|
|
1653
|
-
private renderer;
|
|
1654
|
-
constructor(appRef: ApplicationRef, injector: Injector, rendererFactory: RendererFactory2);
|
|
1655
|
-
/**
|
|
1656
|
-
* Cria o container do overlay se ainda não existir.
|
|
1657
|
-
* O container é um elemento div que será usado para hospedar os modais.
|
|
1658
|
-
*
|
|
1659
|
-
* @private
|
|
1660
|
-
*/
|
|
1661
|
-
private createOverlayContainer;
|
|
1662
|
-
/**
|
|
1663
|
-
* Remove o container do overlay do DOM.
|
|
1664
|
-
*
|
|
1665
|
-
* @private
|
|
1666
|
-
*/
|
|
1667
|
-
private removeOverlayContainer;
|
|
1668
|
-
/**
|
|
1669
|
-
* Cria o backdrop do modal se ainda não existir.
|
|
1670
|
-
* O backdrop é um elemento div que cria o efeito de escurecimento
|
|
1671
|
-
* por trás do modal.
|
|
1672
|
-
*
|
|
1673
|
-
* @private
|
|
1674
|
-
*/
|
|
1675
|
-
private createBackdrop;
|
|
1676
|
-
/**
|
|
1677
|
-
* Remove o backdrop do modal do DOM.
|
|
1678
|
-
*
|
|
1679
|
-
* @private
|
|
1680
|
-
*/
|
|
1681
|
-
private removeBackdrop;
|
|
1682
|
-
/**
|
|
1683
|
-
* Abre um componente dentro de um modal.
|
|
1684
|
-
*
|
|
1685
|
-
* @param component - O componente que será exibido dentro do modal
|
|
1686
|
-
* @param config - Configurações opcionais para o modal
|
|
1687
|
-
* @returns Uma referência ao componente criado
|
|
1688
|
-
*
|
|
1689
|
-
* @example
|
|
1690
|
-
* ```typescript
|
|
1691
|
-
* const componentRef = this.overlayService.open(MyComponent, {
|
|
1692
|
-
* data: { id: 1 }
|
|
1693
|
-
* });
|
|
1694
|
-
* ```
|
|
1695
|
-
*/
|
|
1696
|
-
open<T>(component: Type<T>, config?: any): ComponentRef<T>;
|
|
1697
|
-
/**
|
|
1698
|
-
* Fecha o modal atualmente aberto e remove o backdrop e o container.
|
|
1699
|
-
*
|
|
1700
|
-
* @example
|
|
1701
|
-
* ```typescript
|
|
1702
|
-
* this.overlayService.close();
|
|
1703
|
-
* ```
|
|
1704
|
-
*/
|
|
1705
|
-
close(): void;
|
|
1706
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<MatchaOverlayService, never>;
|
|
1707
|
-
static ɵprov: i0.ɵɵInjectableDeclaration<MatchaOverlayService>;
|
|
1708
|
-
}
|
|
1709
|
-
|
|
1710
|
-
interface ModalComponent {
|
|
1711
|
-
afterClose?: Observable<any>;
|
|
1712
|
-
data?: any;
|
|
1713
|
-
}
|
|
1714
|
-
declare class MatchaModalService {
|
|
1715
|
-
private overlayService;
|
|
1716
|
-
private afterCloseSubject;
|
|
1717
|
-
private currentData;
|
|
1718
|
-
constructor(overlayService: MatchaOverlayService);
|
|
1719
|
-
open<T extends ModalComponent>(component: Type<T>, data?: any): {
|
|
1720
|
-
componentRef: i0.ComponentRef<T>;
|
|
1721
|
-
afterClose: Observable<any>;
|
|
1722
|
-
};
|
|
1723
|
-
close(result?: any): void;
|
|
1724
|
-
getData(): any;
|
|
1725
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<MatchaModalService, never>;
|
|
1726
|
-
static ɵprov: i0.ɵɵInjectableDeclaration<MatchaModalService>;
|
|
1727
|
-
}
|
|
1728
|
-
|
|
1729
|
-
declare class StepContentDirective {
|
|
1730
|
-
template: TemplateRef<any>;
|
|
1731
|
-
step: string;
|
|
1732
|
-
constructor(template: TemplateRef<any>);
|
|
1733
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<StepContentDirective, never>;
|
|
1734
|
-
static ɵdir: i0.ɵɵDirectiveDeclaration<StepContentDirective, "[step]", never, { "step": { "alias": "step"; "required": false; }; }, {}, never, never, true, never>;
|
|
1735
|
-
}
|
|
1736
|
-
|
|
1737
|
-
export { MATCHA_OPTION_PARENT, MatchaAccordionComponent, MatchaAccordionContentComponent, MatchaAccordionHeaderComponent, MatchaAccordionItemComponent, MatchaAccordionModule, MatchaAutocompleteComponent, MatchaAutocompleteModule, MatchaAutocompleteTriggerDirective, MatchaAvatarComponent, MatchaAvatarModule, MatchaBadgeDirective, MatchaBadgeModule, MatchaButtonComponent, MatchaButtonModule, MatchaButtonToggleComponent, MatchaButtonToggleModule, MatchaCardComponent, MatchaCardModule, MatchaCheckboxComponent, MatchaCheckboxModule, MatchaChipsDirective, MatchaChipsModule, MatchaComponentsModule, MatchaDateComponent, MatchaDateModule, MatchaDividerComponent, MatchaDividerModule, MatchaDragDirective, MatchaDragHandleDirective, MatchaDrawerComponent, MatchaDrawerContainerComponent, MatchaDrawerContentComponent, MatchaDrawerModule, MatchaDropListComponent, MatchaDropListModule, MatchaElevationDirective, MatchaElevationModule, MatchaErrorComponent, MatchaFormFieldComponent, MatchaFormFieldModule, MatchaGridComponent, MatchaGridModule, MatchaHintTextComponent, MatchaHintTextModule, MatchaIconComponent, MatchaIconModule, MatchaInfiniteScrollComponent, MatchaInfiniteScrollDataComponent, MatchaInfiniteScrollModule, MatchaInputDirective, MatchaInputModule, MatchaLabelComponent, MatchaLazyloadComponent, MatchaLazyloadDataComponent, MatchaLazyloadModule, MatchaMasonryComponent, MatchaMasonryModule, MatchaMenuComponent, MatchaMenuModule, MatchaMenuTriggerForDirective, MatchaModalComponent, MatchaModalContentComponent, MatchaModalFooterComponent, MatchaModalHeaderComponent, MatchaModalModule, MatchaModalOptionsComponent, MatchaModalService, MatchaOptionComponent, MatchaOptionModule, MatchaOverlayService, MatchaPageLayoutComponent, MatchaPageLayoutModule, MatchaPaginatorDirective, MatchaPaginatorModule, MatchaPanelComponent, MatchaPanelModule, MatchaProgressBarDirective, MatchaProgressBarModule, MatchaRadioComponent, MatchaRadioModule, MatchaRippleDirective, MatchaRippleModule, MatchaSidenavDirective, MatchaSidenavModule, MatchaSkeletonComponent, MatchaSkeletonModule, MatchaSlideToggleComponent, MatchaSlideToggleModule, MatchaSliderDirective, MatchaSliderModule, MatchaSnackBarDirective, MatchaSnackBarModule, MatchaSortHeaderDirective, MatchaSortHeaderModule, MatchaSpinComponent, MatchaSpinModule, MatchaSpinnerComponent, MatchaSpinnerModule, MatchaStepperComponent, MatchaStepperContentComponent, MatchaStepperControllerComponent, MatchaStepperModule, MatchaStepperStateService, MatchaTabItemComponent, MatchaTableDirective, MatchaTableModule, MatchaTabsComponent, MatchaTabsModule, MatchaTimeComponent, MatchaTimeModule, MatchaTitleComponent, MatchaTitleModule, MatchaToolbarButtonComponent, MatchaToolbarComponent, MatchaToolbarContentComponent, MatchaToolbarCustomButtonComponent, MatchaToolbarMainButtonComponent, MatchaToolbarModule, MatchaTooltipDirective, MatchaTooltipModule, NextStepDirective, PrevStepDirective, StepComponent, StepContentDirective };
|
|
1738
|
-
export type { DrawerItem, DrawerMode, DrawerPosition, DrawerSection, ILevelClasses, MatchaDropListConnectedToEvent, MatchaDropListDroppedEvent, MatchaOptionParent, ModalComponent, PanelPlacement, PanelPosition };
|