matcha-components 20.262.0 → 20.264.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/index.d.ts CHANGED
@@ -2117,11 +2117,40 @@ declare class MatchaTimeRangeModule {
2117
2117
  }
2118
2118
 
2119
2119
  declare class MatchaDropListService {
2120
+ private ngZone;
2120
2121
  private dropZones;
2122
+ private namedDropZones;
2123
+ readonly currentDragData: i0.WritableSignal<any>;
2124
+ readonly currentDragType: i0.WritableSignal<string>;
2125
+ private activeDrag;
2126
+ private ghostElement;
2127
+ private dragOffsetX;
2128
+ private dragOffsetY;
2129
+ private lastTargetContainer;
2130
+ private globalListeners;
2131
+ private hoverTimer;
2132
+ private lastHoveredItemIndex;
2133
+ private hasMoved;
2134
+ private startX;
2135
+ private startY;
2136
+ constructor(ngZone: NgZone);
2121
2137
  registerDropZone(element: HTMLElement, component: any): void;
2122
2138
  unregisterDropZone(element: HTMLElement): void;
2123
2139
  findDropZone(element: Element | null): any;
2124
2140
  getAllDropZones(): any[];
2141
+ registerNamedDropZone(id: string | number, directive: any): void;
2142
+ unregisterNamedDropZone(id: string | number): void;
2143
+ beginDrag(dragDirective: any, nativeEl: HTMLElement, event: MouseEvent | TouchEvent, groupEl?: HTMLElement): void;
2144
+ private createGhost;
2145
+ private setupGlobalListeners;
2146
+ private onPointerMove;
2147
+ private onPointerUp;
2148
+ private findContainerFromElements;
2149
+ private findNamedDropZoneAt;
2150
+ private handleHoverExpand;
2151
+ private cleanup;
2152
+ private getClientX;
2153
+ private getClientY;
2125
2154
  static ɵfac: i0.ɵɵFactoryDeclaration<MatchaDropListService, never>;
2126
2155
  static ɵprov: i0.ɵɵInjectableDeclaration<MatchaDropListService>;
2127
2156
  }
@@ -2133,46 +2162,23 @@ declare class MatchaDragDirective implements OnInit, OnDestroy {
2133
2162
  private dropListService;
2134
2163
  matchaDragData: any;
2135
2164
  matchaDragDisabled: boolean;
2165
+ matchaDragGroupEl: HTMLElement | null;
2166
+ matchaDragType: string;
2167
+ matchaDragStarted: EventEmitter<void>;
2136
2168
  get dragItemClass(): boolean;
2137
2169
  get dragDisabledClass(): boolean;
2138
2170
  private listeners;
2139
- private isDragging;
2140
2171
  private dragHandle?;
2141
2172
  private dropList?;
2142
- private touchStartPosition;
2143
- private touchCurrentPosition;
2144
- private touchDragThreshold;
2145
- private isTouchDragging;
2146
- private dragPreview?;
2147
- private touchIdentifier?;
2148
2173
  constructor(elementRef: ElementRef<HTMLElement>, renderer: Renderer2, ngZone: NgZone, dropListService: MatchaDropListService);
2149
2174
  ngOnInit(): void;
2150
2175
  ngOnDestroy(): void;
2151
2176
  setDropList(dropList: any): void;
2152
2177
  setDragHandle(handle: HTMLElement): void;
2153
- private setupDragEvents;
2154
- private onDragStart;
2155
- private onDragEnd;
2156
- private onTouchStart;
2157
- private onTouchMove;
2158
- private onTouchEnd;
2159
- private onTouchCancel;
2160
- private startTouchDrag;
2161
- private updateTouchDrag;
2162
- private endTouchDrag;
2163
- private cancelTouchDrag;
2164
- private createTouchDragPreview;
2165
- private checkDropZones;
2166
- private findDropZone;
2167
- private findAngularComponent;
2168
- private createFakeDragEvent;
2169
- private findTouch;
2170
- private resetTouchState;
2171
- private cleanupTouchDrag;
2172
- private createDragImage;
2178
+ private setupPointerEvents;
2173
2179
  private cleanupListeners;
2174
2180
  static ɵfac: i0.ɵɵFactoryDeclaration<MatchaDragDirective, never>;
2175
- static ɵdir: i0.ɵɵDirectiveDeclaration<MatchaDragDirective, "[matchaDrag]", never, { "matchaDragData": { "alias": "matchaDragData"; "required": false; }; "matchaDragDisabled": { "alias": "matchaDragDisabled"; "required": false; }; }, {}, never, never, false, never>;
2181
+ static ɵdir: i0.ɵɵDirectiveDeclaration<MatchaDragDirective, "[matchaDrag]", never, { "matchaDragData": { "alias": "matchaDragData"; "required": false; }; "matchaDragDisabled": { "alias": "matchaDragDisabled"; "required": false; }; "matchaDragGroupEl": { "alias": "matchaDragGroupEl"; "required": false; }; "matchaDragType": { "alias": "matchaDragType"; "required": false; }; }, { "matchaDragStarted": "matchaDragStarted"; }, never, never, false, never>;
2176
2182
  }
2177
2183
 
2178
2184
  interface MatchaDropListDroppedEvent<T = any> {
@@ -2190,7 +2196,7 @@ interface MatchaDropListConnectedToEvent<T = any> {
2190
2196
  previousIndex: number;
2191
2197
  currentIndex: number;
2192
2198
  }
2193
- declare class MatchaDropListComponent<T = any> implements OnInit, OnDestroy, AfterContentInit {
2199
+ declare class MatchaDropListComponent<T = any> implements OnInit, OnDestroy {
2194
2200
  elementRef: ElementRef<HTMLElement>;
2195
2201
  private renderer;
2196
2202
  private dropListService;
@@ -2199,36 +2205,46 @@ declare class MatchaDropListComponent<T = any> implements OnInit, OnDestroy, Aft
2199
2205
  matchaDropListConnectedTo: MatchaDropListComponent[];
2200
2206
  matchaDropListSortingDisabled: boolean;
2201
2207
  matchaDropListAcceptPredicate?: (item: any, sourceContainer: MatchaDropListComponent, targetContainer: MatchaDropListComponent) => boolean;
2208
+ matchaDropListAcceptTypes: string[];
2209
+ matchaDropListTreeMode: boolean;
2210
+ matchaDropListHoverExpandDelay: number;
2202
2211
  matchaDropListDropped: EventEmitter<MatchaDropListDroppedEvent<T>>;
2203
- dragItems: QueryList<MatchaDragDirective>;
2212
+ matchaDropListHoverExpand: EventEmitter<any>;
2213
+ private _directDragItems;
2214
+ get directDragItems(): MatchaDragDirective[];
2204
2215
  get dropListClass(): boolean;
2205
- private currentDragItem?;
2206
- private dragStartIndex;
2207
- private sourceContainer?;
2208
2216
  isReceivingDrag: boolean;
2209
2217
  showDropIndicator: boolean;
2210
2218
  dropIndicatorPosition: number;
2211
2219
  canAcceptDrop: boolean;
2212
2220
  private calculatedDropIndex;
2221
+ private currentDragItem?;
2222
+ private dragStartIndex;
2223
+ private sourceContainer?;
2213
2224
  constructor(elementRef: ElementRef<HTMLElement>, renderer: Renderer2, dropListService: MatchaDropListService);
2214
2225
  ngOnInit(): void;
2215
- ngAfterContentInit(): void;
2226
+ registerDragItem(item: MatchaDragDirective): void;
2227
+ unregisterDragItem(item: MatchaDragDirective): void;
2216
2228
  ngOnDestroy(): void;
2217
- private setupDropZone;
2218
- private updateDropIndicator;
2219
- onDragStart(dragItem: MatchaDragDirective, event: DragEvent): void;
2220
- onDragEnd(): void;
2221
- private handleDrop;
2222
- private reorderItems;
2223
- private transferItem;
2224
- private getDragItemIndex;
2229
+ onPointerDragStart(dragItem: MatchaDragDirective): void;
2230
+ onPointerDragEnd(): void;
2231
+ updatePlaceholder(clientX: number, clientY: number, dragDirective: MatchaDragDirective, sourceContainer?: MatchaDropListComponent): void;
2232
+ clearPlaceholder(): void;
2233
+ private getInnerContainer;
2234
+ finalizeDrop(dragDirective: MatchaDragDirective, sourceContainer: MatchaDropListComponent): void;
2235
+ getItemIndexAt(clientX: number, clientY: number): number;
2236
+ emitHoverExpand(itemIndex: number): void;
2225
2237
  notifyDragStart(dragItem: MatchaDragDirective, sourceContainer: MatchaDropListComponent): void;
2226
2238
  notifyDragEnd(): void;
2227
- private canAcceptCurrentDrop;
2228
- handleTouchDragOver(event: any): void;
2229
- handleTouchDrop(event: any, dragItem: any): void;
2239
+ private reorderItems;
2240
+ private transferItem;
2241
+ getDragItemIndex(dragItem: MatchaDragDirective): number;
2242
+ onDragStart(dragItem: MatchaDragDirective, _event: any): void;
2243
+ onDragEnd(): void;
2244
+ handleTouchDragOver(_event: any): void;
2245
+ handleTouchDrop(_event: any, _dragItem: any): void;
2230
2246
  static ɵfac: i0.ɵɵFactoryDeclaration<MatchaDropListComponent<any>, never>;
2231
- 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>;
2247
+ 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; }; "matchaDropListAcceptTypes": { "alias": "matchaDropListAcceptTypes"; "required": false; }; "matchaDropListTreeMode": { "alias": "matchaDropListTreeMode"; "required": false; }; "matchaDropListHoverExpandDelay": { "alias": "matchaDropListHoverExpandDelay"; "required": false; }; }, { "matchaDropListDropped": "matchaDropListDropped"; "matchaDropListHoverExpand": "matchaDropListHoverExpand"; }, never, ["*"], false, never>;
2232
2248
  }
2233
2249
 
2234
2250
  declare class MatchaDragHandleDirective implements OnInit {
@@ -2241,9 +2257,29 @@ declare class MatchaDragHandleDirective implements OnInit {
2241
2257
  static ɵdir: i0.ɵɵDirectiveDeclaration<MatchaDragHandleDirective, "[matchaDragHandle]", never, {}, {}, never, never, false, never>;
2242
2258
  }
2243
2259
 
2260
+ interface MatchaDropZoneDroppedEvent<T = any> {
2261
+ item: T;
2262
+ clientX: number;
2263
+ clientY: number;
2264
+ }
2265
+ declare class MatchaDropZoneDirective implements OnInit, OnDestroy {
2266
+ elementRef: ElementRef<HTMLElement>;
2267
+ private dropListService;
2268
+ matchaDropZoneId: string | number;
2269
+ matchaDropZoneAcceptTypes: string[];
2270
+ matchaDropZoneDropped: EventEmitter<MatchaDropZoneDroppedEvent<any>>;
2271
+ get isDropRejected(): boolean;
2272
+ constructor(elementRef: ElementRef<HTMLElement>, dropListService: MatchaDropListService);
2273
+ ngOnInit(): void;
2274
+ ngOnDestroy(): void;
2275
+ handleDrop(item: any, clientX: number, clientY: number): void;
2276
+ static ɵfac: i0.ɵɵFactoryDeclaration<MatchaDropZoneDirective, never>;
2277
+ static ɵdir: i0.ɵɵDirectiveDeclaration<MatchaDropZoneDirective, "[matchaDropZone]", never, { "matchaDropZoneId": { "alias": "matchaDropZoneId"; "required": true; }; "matchaDropZoneAcceptTypes": { "alias": "matchaDropZoneAcceptTypes"; "required": false; }; }, { "matchaDropZoneDropped": "matchaDropZoneDropped"; }, never, never, false, never>;
2278
+ }
2279
+
2244
2280
  declare class MatchaDropListModule {
2245
2281
  static ɵfac: i0.ɵɵFactoryDeclaration<MatchaDropListModule, never>;
2246
- static ɵmod: i0.ɵɵNgModuleDeclaration<MatchaDropListModule, [typeof MatchaDropListComponent, typeof MatchaDragDirective, typeof MatchaDragHandleDirective], [typeof i2.CommonModule], [typeof MatchaDropListComponent, typeof MatchaDragDirective, typeof MatchaDragHandleDirective]>;
2282
+ static ɵmod: i0.ɵɵNgModuleDeclaration<MatchaDropListModule, [typeof MatchaDropListComponent, typeof MatchaDragDirective, typeof MatchaDragHandleDirective, typeof MatchaDropZoneDirective], [typeof i2.CommonModule], [typeof MatchaDropListComponent, typeof MatchaDragDirective, typeof MatchaDragHandleDirective, typeof MatchaDropZoneDirective]>;
2247
2283
  static ɵinj: i0.ɵɵInjectorDeclaration<MatchaDropListModule>;
2248
2284
  }
2249
2285
 
@@ -2725,7 +2761,7 @@ declare class MatchaSnackBarComponent implements OnInit, OnDestroy {
2725
2761
  duration: number;
2726
2762
  visible: boolean;
2727
2763
  private timeoutId;
2728
- get colorAttr(): "error" | "info" | "warning" | "success";
2764
+ get colorAttr(): "error" | "warning" | "info" | "success";
2729
2765
  get positionAttr(): "top" | "bottom";
2730
2766
  get classes(): string;
2731
2767
  constructor(snackBarService: MatchaSnackBarService);
@@ -3221,5 +3257,5 @@ declare class MatchaToolbarModule {
3221
3257
  static ɵinj: i0.ɵɵInjectorDeclaration<MatchaToolbarModule>;
3222
3258
  }
3223
3259
 
3224
- export { CopyButtonComponent, INITIAL_CONFIG, MATCHA_MASK_CONFIG, MATCHA_OPTION_PARENT, MaskExpression, MatchaAccordionComponent, MatchaAccordionContentComponent, MatchaAccordionHeaderComponent, MatchaAccordionItemComponent, MatchaAccordionModule, MatchaAutocompleteComponent, MatchaAutocompleteModule, MatchaAutocompleteTriggerDirective, MatchaAvatarComponent, MatchaAvatarModule, MatchaBreakpointObservableModule, MatchaBreakpointObserver, MatchaButtonComponent, MatchaButtonModule, MatchaButtonToggleComponent, MatchaButtonToggleModule, MatchaCardComponent, MatchaCardModule, MatchaCheckboxComponent, MatchaCheckboxModule, MatchaChipComponent, MatchaChipListComponent, MatchaChipModule, MatchaComponentsModule, MatchaDateComponent, MatchaDateModule, MatchaDateRangeComponent, MatchaDateRangeModule, MatchaDividerComponent, MatchaDividerModule, MatchaDragDirective, MatchaDragHandleDirective, MatchaDrawerComponent, MatchaDrawerContainerComponent, MatchaDrawerContentComponent, MatchaDrawerModule, MatchaDropListComponent, MatchaDropListModule, MatchaElevationDirective, MatchaElevationModule, MatchaErrorComponent, MatchaFormFieldComponent, MatchaFormFieldModule, MatchaGridComponent, MatchaGridModule, MatchaHighlightComponent, MatchaHighlightModule, MatchaHintTextComponent, MatchaHintTextModule, MatchaIconComponent, MatchaIconModule, MatchaInfiniteScrollComponent, MatchaInfiniteScrollDataComponent, MatchaInfiniteScrollModule, MatchaInputPhoneComponent, MatchaInputPhoneModule, MatchaLabelComponent, MatchaLazyloadComponent, MatchaLazyloadDataComponent, MatchaLazyloadModule, MatchaListComponent, MatchaListItemComponent, MatchaListModule, MatchaMaskApplierService, MatchaMaskCompatibleDirective, MatchaMaskModule, MatchaMaskPipe, MatchaMaskService, MatchaMasonryComponent, MatchaMasonryModule, MatchaMenuComponent, MatchaMenuItemDirective, MatchaMenuModule, MatchaMenuTriggerDirective, MatchaModalComponent, MatchaModalContentComponent, MatchaModalFooterComponent, MatchaModalHeaderComponent, MatchaModalModule, MatchaModalOptionsComponent, MatchaModalService, MatchaMsgBoxActionsComponent, MatchaMsgBoxComponent, MatchaMsgBoxModule, MatchaOptionComponent, MatchaOptionModule, MatchaOverlayService, MatchaPageLayoutComponent, MatchaPageLayoutModule, MatchaPaginatorComponent, MatchaPaginatorIntl, MatchaPaginatorModule, MatchaPanelComponent, MatchaPanelModule, MatchaProgressBarComponent, MatchaProgressBarModule, MatchaRadioComponent, MatchaRadioGroupComponent, MatchaRadioModule, MatchaRippleDirective, MatchaRippleModule, MatchaSelectComponent, MatchaSelectModule, MatchaSelectTriggerDirective, MatchaSkeletonComponent, MatchaSkeletonModule, MatchaSlideToggleComponent, MatchaSlideToggleModule, MatchaSliderComponent, MatchaSliderModule, MatchaSnackBarComponent, MatchaSnackBarModule, MatchaSnackBarService, MatchaSpinComponent, MatchaSpinModule, MatchaSpinnerComponent, MatchaSpinnerModule, MatchaStepperComponent, MatchaStepperContentComponent, MatchaStepperControllerComponent, MatchaStepperModule, MatchaStepperStateService, MatchaSubmenuTriggerDirective, MatchaTabItemComponent, MatchaTableComponent, MatchaTableModule, MatchaTabsComponent, MatchaTabsModule, MatchaTextEditorComponent, MatchaTextEditorModule, MatchaTimeComponent, MatchaTimeModule, MatchaTimeRangeComponent, MatchaTimeRangeModule, MatchaTitleComponent, MatchaTitleModule, MatchaToolbarButtonComponent, MatchaToolbarComponent, MatchaToolbarContentComponent, MatchaToolbarCustomButtonComponent, MatchaToolbarMainButtonComponent, MatchaToolbarModule, MatchaTooltipDirective, MatchaTooltipModule, NEW_CONFIG, NextStepDirective, PrevStepDirective, StepComponent, StepContentDirective, buildSunEditorConfig, compatibleOptions, initialConfig, timeMasks, withoutValidation };
3225
- export type { BreakpointState, DrawerMode, DrawerPosition, ILevelClasses, InputTransformFn, MatchaDropListConnectedToEvent, MatchaDropListDroppedEvent, MatchaMaskConfig, MatchaMaskOptions, MatchaOptionParent, MatchaSnackBarConfig, MatchaTextEditorOptions, ModalComponent, OutputTransformFn, PageEvent, PanelPlacement, PanelPosition, SliderOptions, TabChangeEvent };
3260
+ export { CopyButtonComponent, INITIAL_CONFIG, MATCHA_MASK_CONFIG, MATCHA_OPTION_PARENT, MaskExpression, MatchaAccordionComponent, MatchaAccordionContentComponent, MatchaAccordionHeaderComponent, MatchaAccordionItemComponent, MatchaAccordionModule, MatchaAutocompleteComponent, MatchaAutocompleteModule, MatchaAutocompleteTriggerDirective, MatchaAvatarComponent, MatchaAvatarModule, MatchaBreakpointObservableModule, MatchaBreakpointObserver, MatchaButtonComponent, MatchaButtonModule, MatchaButtonToggleComponent, MatchaButtonToggleModule, MatchaCardComponent, MatchaCardModule, MatchaCheckboxComponent, MatchaCheckboxModule, MatchaChipComponent, MatchaChipListComponent, MatchaChipModule, MatchaComponentsModule, MatchaDateComponent, MatchaDateModule, MatchaDateRangeComponent, MatchaDateRangeModule, MatchaDividerComponent, MatchaDividerModule, MatchaDragDirective, MatchaDragHandleDirective, MatchaDrawerComponent, MatchaDrawerContainerComponent, MatchaDrawerContentComponent, MatchaDrawerModule, MatchaDropListComponent, MatchaDropListModule, MatchaDropListService, MatchaDropZoneDirective, MatchaElevationDirective, MatchaElevationModule, MatchaErrorComponent, MatchaFormFieldComponent, MatchaFormFieldModule, MatchaGridComponent, MatchaGridModule, MatchaHighlightComponent, MatchaHighlightModule, MatchaHintTextComponent, MatchaHintTextModule, MatchaIconComponent, MatchaIconModule, MatchaInfiniteScrollComponent, MatchaInfiniteScrollDataComponent, MatchaInfiniteScrollModule, MatchaInputPhoneComponent, MatchaInputPhoneModule, MatchaLabelComponent, MatchaLazyloadComponent, MatchaLazyloadDataComponent, MatchaLazyloadModule, MatchaListComponent, MatchaListItemComponent, MatchaListModule, MatchaMaskApplierService, MatchaMaskCompatibleDirective, MatchaMaskModule, MatchaMaskPipe, MatchaMaskService, MatchaMasonryComponent, MatchaMasonryModule, MatchaMenuComponent, MatchaMenuItemDirective, MatchaMenuModule, MatchaMenuTriggerDirective, MatchaModalComponent, MatchaModalContentComponent, MatchaModalFooterComponent, MatchaModalHeaderComponent, MatchaModalModule, MatchaModalOptionsComponent, MatchaModalService, MatchaMsgBoxActionsComponent, MatchaMsgBoxComponent, MatchaMsgBoxModule, MatchaOptionComponent, MatchaOptionModule, MatchaOverlayService, MatchaPageLayoutComponent, MatchaPageLayoutModule, MatchaPaginatorComponent, MatchaPaginatorIntl, MatchaPaginatorModule, MatchaPanelComponent, MatchaPanelModule, MatchaProgressBarComponent, MatchaProgressBarModule, MatchaRadioComponent, MatchaRadioGroupComponent, MatchaRadioModule, MatchaRippleDirective, MatchaRippleModule, MatchaSelectComponent, MatchaSelectModule, MatchaSelectTriggerDirective, MatchaSkeletonComponent, MatchaSkeletonModule, MatchaSlideToggleComponent, MatchaSlideToggleModule, MatchaSliderComponent, MatchaSliderModule, MatchaSnackBarComponent, MatchaSnackBarModule, MatchaSnackBarService, MatchaSpinComponent, MatchaSpinModule, MatchaSpinnerComponent, MatchaSpinnerModule, MatchaStepperComponent, MatchaStepperContentComponent, MatchaStepperControllerComponent, MatchaStepperModule, MatchaStepperStateService, MatchaSubmenuTriggerDirective, MatchaTabItemComponent, MatchaTableComponent, MatchaTableModule, MatchaTabsComponent, MatchaTabsModule, MatchaTextEditorComponent, MatchaTextEditorModule, MatchaTimeComponent, MatchaTimeModule, MatchaTimeRangeComponent, MatchaTimeRangeModule, MatchaTitleComponent, MatchaTitleModule, MatchaToolbarButtonComponent, MatchaToolbarComponent, MatchaToolbarContentComponent, MatchaToolbarCustomButtonComponent, MatchaToolbarMainButtonComponent, MatchaToolbarModule, MatchaTooltipDirective, MatchaTooltipModule, NEW_CONFIG, NextStepDirective, PrevStepDirective, StepComponent, StepContentDirective, buildSunEditorConfig, compatibleOptions, initialConfig, timeMasks, withoutValidation };
3261
+ export type { BreakpointState, DrawerMode, DrawerPosition, ILevelClasses, InputTransformFn, MatchaDropListConnectedToEvent, MatchaDropListDroppedEvent, MatchaDropZoneDroppedEvent, MatchaMaskConfig, MatchaMaskOptions, MatchaOptionParent, MatchaSnackBarConfig, MatchaTextEditorOptions, ModalComponent, OutputTransformFn, PageEvent, PanelPlacement, PanelPosition, SliderOptions, TabChangeEvent };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "matcha-components",
3
- "version": "20.262.0",
3
+ "version": "20.264.0",
4
4
  "peerDependencies": {},
5
5
  "dependencies": {
6
6
  "tslib": "^2.3.0"