@radix-ng/primitives 0.28.0 → 0.30.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.
Files changed (101) hide show
  1. package/checkbox/src/checkbox.directive.d.ts +11 -0
  2. package/core/index.d.ts +2 -0
  3. package/core/src/isNumber.d.ts +1 -0
  4. package/core/src/nullish.d.ts +1 -0
  5. package/dialog/src/dialog.config.d.ts +1 -0
  6. package/fesm2022/radix-ng-primitives-accordion.mjs +20 -20
  7. package/fesm2022/radix-ng-primitives-alert-dialog.mjs +22 -22
  8. package/fesm2022/radix-ng-primitives-aspect-ratio.mjs +3 -3
  9. package/fesm2022/radix-ng-primitives-avatar.mjs +16 -16
  10. package/fesm2022/radix-ng-primitives-checkbox.mjs +28 -17
  11. package/fesm2022/radix-ng-primitives-checkbox.mjs.map +1 -1
  12. package/fesm2022/radix-ng-primitives-collapsible.mjs +10 -10
  13. package/fesm2022/radix-ng-primitives-context-menu.mjs +36 -36
  14. package/fesm2022/radix-ng-primitives-core.mjs +14 -8
  15. package/fesm2022/radix-ng-primitives-core.mjs.map +1 -1
  16. package/fesm2022/radix-ng-primitives-dialog.mjs +40 -38
  17. package/fesm2022/radix-ng-primitives-dialog.mjs.map +1 -1
  18. package/fesm2022/radix-ng-primitives-dropdown-menu.mjs +35 -35
  19. package/fesm2022/radix-ng-primitives-hover-card.mjs +30 -33
  20. package/fesm2022/radix-ng-primitives-hover-card.mjs.map +1 -1
  21. package/fesm2022/radix-ng-primitives-label.mjs +3 -3
  22. package/fesm2022/radix-ng-primitives-menu.mjs +429 -62
  23. package/fesm2022/radix-ng-primitives-menu.mjs.map +1 -1
  24. package/fesm2022/radix-ng-primitives-menubar.mjs +87 -139
  25. package/fesm2022/radix-ng-primitives-menubar.mjs.map +1 -1
  26. package/fesm2022/radix-ng-primitives-popover.mjs +30 -33
  27. package/fesm2022/radix-ng-primitives-popover.mjs.map +1 -1
  28. package/fesm2022/radix-ng-primitives-progress.mjs +68 -90
  29. package/fesm2022/radix-ng-primitives-progress.mjs.map +1 -1
  30. package/fesm2022/radix-ng-primitives-radio.mjs +13 -13
  31. package/fesm2022/radix-ng-primitives-roving-focus.mjs +7 -7
  32. package/fesm2022/radix-ng-primitives-select.mjs +36 -36
  33. package/fesm2022/radix-ng-primitives-separator.mjs +4 -4
  34. package/fesm2022/radix-ng-primitives-separator.mjs.map +1 -1
  35. package/fesm2022/radix-ng-primitives-slider.mjs +131 -102
  36. package/fesm2022/radix-ng-primitives-slider.mjs.map +1 -1
  37. package/fesm2022/radix-ng-primitives-switch.mjs +13 -13
  38. package/fesm2022/radix-ng-primitives-tabs.mjs +16 -16
  39. package/fesm2022/radix-ng-primitives-toggle-group.mjs +136 -15
  40. package/fesm2022/radix-ng-primitives-toggle-group.mjs.map +1 -1
  41. package/fesm2022/radix-ng-primitives-toggle.mjs +6 -6
  42. package/fesm2022/radix-ng-primitives-toolbar.mjs +155 -0
  43. package/fesm2022/radix-ng-primitives-toolbar.mjs.map +1 -0
  44. package/fesm2022/radix-ng-primitives-tooltip.mjs +30 -33
  45. package/fesm2022/radix-ng-primitives-tooltip.mjs.map +1 -1
  46. package/fesm2022/radix-ng-primitives-visually-hidden.mjs +9 -9
  47. package/hover-card/src/hover-card-root.directive.d.ts +4 -4
  48. package/menu/index.d.ts +20 -9
  49. package/menu/src/menu-content.directive.d.ts +1 -1
  50. package/menu/src/menu-directive.d.ts +1 -1
  51. package/menu/src/menu-group.directive.d.ts +1 -1
  52. package/menu/src/menu-item-checkbox.directive.d.ts +21 -0
  53. package/menu/src/menu-item-indicator.directive.d.ts +10 -0
  54. package/menu/src/menu-item-radio.directive.d.ts +20 -0
  55. package/menu/src/menu-item.directive.d.ts +8 -2
  56. package/menu/src/menu-label.directive.d.ts +1 -1
  57. package/menu/src/menu-radio-group.directive.d.ts +6 -0
  58. package/menu/src/menu-separator.directive.d.ts +1 -2
  59. package/menu/src/menu-trigger.directive.d.ts +35 -0
  60. package/menu/src/utils.d.ts +3 -0
  61. package/menubar/index.d.ts +1 -1
  62. package/menubar/src/menubar-content.directive.d.ts +2 -2
  63. package/menubar/src/menubar-item-checkbox.directive.d.ts +2 -10
  64. package/menubar/src/menubar-item-indicator.directive.d.ts +2 -1
  65. package/menubar/src/menubar-item-radio.directive.d.ts +2 -10
  66. package/menubar/src/menubar-item.directive.d.ts +1 -3
  67. package/menubar/src/menubar-radio-group.directive.d.ts +1 -1
  68. package/menubar/src/menubar-root.directive.d.ts +3 -4
  69. package/menubar/src/menubar-separator.directive.d.ts +1 -1
  70. package/menubar/src/menubar-trigger.directive.d.ts +2 -7
  71. package/package.json +9 -128
  72. package/popover/src/popover-root.directive.d.ts +4 -4
  73. package/progress/src/progress-root.directive.d.ts +19 -33
  74. package/schematics/collection.json +10 -0
  75. package/schematics/ng-add/index.d.ts +6 -0
  76. package/schematics/ng-add/index.js +61 -0
  77. package/schematics/ng-add/index.js.map +1 -0
  78. package/schematics/ng-add/package-config.d.ts +18 -0
  79. package/schematics/ng-add/package-config.js +51 -0
  80. package/schematics/ng-add/package-config.js.map +1 -0
  81. package/separator/src/separator.directive.d.ts +1 -1
  82. package/slider/src/slider-horizontal.component.d.ts +6 -7
  83. package/slider/src/slider-impl.directive.d.ts +6 -7
  84. package/slider/src/slider-root.component.d.ts +78 -4
  85. package/slider/src/slider-vertical.component.d.ts +6 -7
  86. package/toggle-group/index.d.ts +1 -0
  87. package/toggle-group/src/toggle-group-item.directive.d.ts +8 -2
  88. package/toggle-group/src/toggle-group-without-focus.directive.d.ts +69 -0
  89. package/toggle-group/src/toggle-group.directive.d.ts +12 -1
  90. package/toggle-group/src/toggle-group.token.d.ts +8 -3
  91. package/toolbar/README.md +3 -0
  92. package/toolbar/index.d.ts +19 -0
  93. package/toolbar/src/toolbar-button.directive.d.ts +11 -0
  94. package/toolbar/src/toolbar-link.directive.d.ts +7 -0
  95. package/toolbar/src/toolbar-root.directive.d.ts +8 -0
  96. package/toolbar/src/toolbar-root.token.d.ts +5 -0
  97. package/toolbar/src/toolbar-separator.directive.d.ts +6 -0
  98. package/toolbar/src/toolbar-toggle-group.directive.d.ts +6 -0
  99. package/toolbar/src/toolbar-toggle-item.directive.d.ts +6 -0
  100. package/tooltip/src/tooltip-root.directive.d.ts +4 -4
  101. package/compodoc/documentation.json +0 -39585
@@ -1,5 +1,5 @@
1
1
  import * as i0 from '@angular/core';
2
- import { InjectionToken, inject, TemplateRef, DestroyRef, computed, input, numberAttribute, booleanAttribute, output, effect, untracked, SimpleChange, Directive, ElementRef, NgZone, Renderer2, isDevMode, VERSION, Injectable, makeEnvironmentProviders, signal, contentChild, ViewContainerRef, afterNextRender, assertInInjectionContext, forwardRef, Component, ChangeDetectionStrategy, NgModule } from '@angular/core';
2
+ import { InjectionToken, inject, TemplateRef, DestroyRef, computed, input, numberAttribute, booleanAttribute, output, effect, untracked, SimpleChange, Directive, ElementRef, NgZone, Renderer2, isDevMode, VERSION, Injectable, makeEnvironmentProviders, signal, contentChild, ViewContainerRef, afterNextRender, assertInInjectionContext, forwardRef, ChangeDetectionStrategy, Component, NgModule } from '@angular/core';
3
3
  import * as i1 from '@angular/cdk/overlay';
4
4
  import { Overlay, CdkConnectedOverlay, CdkOverlayOrigin } from '@angular/cdk/overlay';
5
5
  import { RdxPositionSide, RdxPositionAlign, RDX_POSITIONING_DEFAULTS, getContentPosition, getAllPossibleConnectedPositions, injectDocument, injectWindow, getArrowPositionParams, getSideAndAlignFromAllPossibleConnectedPositions } from '@radix-ng/primitives/core';
@@ -287,10 +287,10 @@ class RdxTooltipContentDirective {
287
287
  [input]: new SimpleChange(previousValue, currentValue, firstChange)
288
288
  });
289
289
  }
290
- static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.0.5", ngImport: i0, type: RdxTooltipContentDirective, deps: [], target: i0.ɵɵFactoryTarget.Directive }); }
291
- static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "17.1.0", version: "19.0.5", type: RdxTooltipContentDirective, isStandalone: true, selector: "[rdxTooltipContent]", inputs: { side: { classPropertyName: "side", publicName: "side", isSignal: true, isRequired: false, transformFunction: null }, sideOffset: { classPropertyName: "sideOffset", publicName: "sideOffset", isSignal: true, isRequired: false, transformFunction: null }, align: { classPropertyName: "align", publicName: "align", isSignal: true, isRequired: false, transformFunction: null }, alignOffset: { classPropertyName: "alignOffset", publicName: "alignOffset", isSignal: true, isRequired: false, transformFunction: null }, alternatePositionsDisabled: { classPropertyName: "alternatePositionsDisabled", publicName: "alternatePositionsDisabled", isSignal: true, isRequired: false, transformFunction: null }, onOverlayEscapeKeyDownDisabled: { classPropertyName: "onOverlayEscapeKeyDownDisabled", publicName: "onOverlayEscapeKeyDownDisabled", isSignal: true, isRequired: false, transformFunction: null }, onOverlayOutsideClickDisabled: { classPropertyName: "onOverlayOutsideClickDisabled", publicName: "onOverlayOutsideClickDisabled", isSignal: true, isRequired: false, transformFunction: null } }, outputs: { onOverlayEscapeKeyDown: "onOverlayEscapeKeyDown", onOverlayOutsideClick: "onOverlayOutsideClick", onOpen: "onOpen", onClosed: "onClosed" }, hostDirectives: [{ directive: i1.CdkConnectedOverlay }], ngImport: i0 }); }
290
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.1.4", ngImport: i0, type: RdxTooltipContentDirective, deps: [], target: i0.ɵɵFactoryTarget.Directive }); }
291
+ static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "17.1.0", version: "19.1.4", type: RdxTooltipContentDirective, isStandalone: true, selector: "[rdxTooltipContent]", inputs: { side: { classPropertyName: "side", publicName: "side", isSignal: true, isRequired: false, transformFunction: null }, sideOffset: { classPropertyName: "sideOffset", publicName: "sideOffset", isSignal: true, isRequired: false, transformFunction: null }, align: { classPropertyName: "align", publicName: "align", isSignal: true, isRequired: false, transformFunction: null }, alignOffset: { classPropertyName: "alignOffset", publicName: "alignOffset", isSignal: true, isRequired: false, transformFunction: null }, alternatePositionsDisabled: { classPropertyName: "alternatePositionsDisabled", publicName: "alternatePositionsDisabled", isSignal: true, isRequired: false, transformFunction: null }, onOverlayEscapeKeyDownDisabled: { classPropertyName: "onOverlayEscapeKeyDownDisabled", publicName: "onOverlayEscapeKeyDownDisabled", isSignal: true, isRequired: false, transformFunction: null }, onOverlayOutsideClickDisabled: { classPropertyName: "onOverlayOutsideClickDisabled", publicName: "onOverlayOutsideClickDisabled", isSignal: true, isRequired: false, transformFunction: null } }, outputs: { onOverlayEscapeKeyDown: "onOverlayEscapeKeyDown", onOverlayOutsideClick: "onOverlayOutsideClick", onOpen: "onOpen", onClosed: "onClosed" }, hostDirectives: [{ directive: i1.CdkConnectedOverlay }], ngImport: i0 }); }
292
292
  }
293
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.0.5", ngImport: i0, type: RdxTooltipContentDirective, decorators: [{
293
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.1.4", ngImport: i0, type: RdxTooltipContentDirective, decorators: [{
294
294
  type: Directive,
295
295
  args: [{
296
296
  selector: '[rdxTooltipContent]',
@@ -331,10 +331,10 @@ class RdxTooltipTriggerDirective {
331
331
  click() {
332
332
  this.rootDirective.handleClose();
333
333
  }
334
- static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.0.5", ngImport: i0, type: RdxTooltipTriggerDirective, deps: [], target: i0.ɵɵFactoryTarget.Directive }); }
335
- static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "19.0.5", type: RdxTooltipTriggerDirective, isStandalone: true, selector: "[rdxTooltipTrigger]", host: { attributes: { "type": "button" }, listeners: { "pointerenter": "pointerenter()", "pointerleave": "pointerleave()", "focus": "focus()", "blur": "blur()", "click": "click()" }, properties: { "attr.id": "name()", "attr.aria-haspopup": "\"dialog\"", "attr.aria-expanded": "rootDirective.isOpen()", "attr.aria-controls": "rootDirective.contentDirective().name()", "attr.data-state": "rootDirective.state()" } }, hostDirectives: [{ directive: i1.CdkOverlayOrigin }], ngImport: i0 }); }
334
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.1.4", ngImport: i0, type: RdxTooltipTriggerDirective, deps: [], target: i0.ɵɵFactoryTarget.Directive }); }
335
+ static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "19.1.4", type: RdxTooltipTriggerDirective, isStandalone: true, selector: "[rdxTooltipTrigger]", host: { attributes: { "type": "button" }, listeners: { "pointerenter": "pointerenter()", "pointerleave": "pointerleave()", "focus": "focus()", "blur": "blur()", "click": "click()" }, properties: { "attr.id": "name()", "attr.aria-haspopup": "\"dialog\"", "attr.aria-expanded": "rootDirective.isOpen()", "attr.aria-controls": "rootDirective.contentDirective().name()", "attr.data-state": "rootDirective.state()" } }, hostDirectives: [{ directive: i1.CdkOverlayOrigin }], ngImport: i0 }); }
336
336
  }
337
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.0.5", ngImport: i0, type: RdxTooltipTriggerDirective, decorators: [{
337
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.1.4", ngImport: i0, type: RdxTooltipTriggerDirective, decorators: [{
338
338
  type: Directive,
339
339
  args: [{
340
340
  selector: '[rdxTooltipTrigger]',
@@ -452,10 +452,7 @@ class RdxCdkEventService {
452
452
  */
453
453
  if (major > 19 || (major === 19 && minor > 0) || (major === 0 && minor === 0)) {
454
454
  destroyClickDomRootEventListener = this.ngZone.runOutsideAngular(() => {
455
- const destroyClickDomRootEventListenerInternal = this.renderer2.listen(target, eventName, callback,
456
- // eslint-disable-next-line @typescript-eslint/ban-ts-comment
457
- // @ts-expect-error
458
- options);
455
+ const destroyClickDomRootEventListenerInternal = this.renderer2.listen(target, eventName, callback, options);
459
456
  return () => {
460
457
  destroyClickDomRootEventListenerInternal();
461
458
  this.#clickDomRootEventCallbacks.clear();
@@ -476,10 +473,10 @@ class RdxCdkEventService {
476
473
  }
477
474
  this.onDestroyCallbacks.add(destroyClickDomRootEventListener);
478
475
  }
479
- static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.0.5", ngImport: i0, type: RdxCdkEventService, deps: [], target: i0.ɵɵFactoryTarget.Injectable }); }
480
- static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "19.0.5", ngImport: i0, type: RdxCdkEventService }); }
476
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.1.4", ngImport: i0, type: RdxCdkEventService, deps: [], target: i0.ɵɵFactoryTarget.Injectable }); }
477
+ static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "19.1.4", ngImport: i0, type: RdxCdkEventService }); }
481
478
  }
482
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.0.5", ngImport: i0, type: RdxCdkEventService, decorators: [{
479
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.1.4", ngImport: i0, type: RdxCdkEventService, decorators: [{
483
480
  type: Injectable
484
481
  }], ctorParameters: () => [] });
485
482
  const RdxCdkEventServiceToken = new InjectionToken('RdxCdkEventServiceToken');
@@ -845,10 +842,10 @@ class RdxTooltipRootDirective {
845
842
  }), takeUntilDestroyed())
846
843
  .subscribe();
847
844
  }
848
- static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.0.5", ngImport: i0, type: RdxTooltipRootDirective, deps: [], target: i0.ɵɵFactoryTarget.Directive }); }
849
- static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "17.2.0", version: "19.0.5", type: RdxTooltipRootDirective, isStandalone: true, selector: "[rdxTooltipRoot]", inputs: { anchor: { classPropertyName: "anchor", publicName: "anchor", isSignal: true, isRequired: false, transformFunction: null }, defaultOpen: { classPropertyName: "defaultOpen", publicName: "defaultOpen", isSignal: true, isRequired: false, transformFunction: null }, open: { classPropertyName: "open", publicName: "open", isSignal: true, isRequired: false, transformFunction: null }, openDelay: { classPropertyName: "openDelay", publicName: "openDelay", isSignal: true, isRequired: false, transformFunction: null }, closeDelay: { classPropertyName: "closeDelay", publicName: "closeDelay", isSignal: true, isRequired: false, transformFunction: null }, externalControl: { classPropertyName: "externalControl", publicName: "externalControl", isSignal: true, isRequired: false, transformFunction: null }, cssAnimation: { classPropertyName: "cssAnimation", publicName: "cssAnimation", isSignal: true, isRequired: false, transformFunction: null }, cssOpeningAnimation: { classPropertyName: "cssOpeningAnimation", publicName: "cssOpeningAnimation", isSignal: true, isRequired: false, transformFunction: null }, cssClosingAnimation: { classPropertyName: "cssClosingAnimation", publicName: "cssClosingAnimation", isSignal: true, isRequired: false, transformFunction: null } }, queries: [{ propertyName: "contentDirective", first: true, predicate: RdxTooltipContentDirective, descendants: true, isSignal: true }, { propertyName: "triggerDirective", first: true, predicate: RdxTooltipTriggerDirective, descendants: true, isSignal: true }, { propertyName: "arrowDirective", first: true, predicate: RdxTooltipArrowToken, descendants: true, isSignal: true }, { propertyName: "closeDirective", first: true, predicate: RdxTooltipCloseToken, descendants: true, isSignal: true }, { propertyName: "contentAttributesComponent", first: true, predicate: RdxTooltipContentAttributesToken, descendants: true, isSignal: true }, { propertyName: "internalAnchorDirective", first: true, predicate: RdxTooltipAnchorToken, descendants: true, isSignal: true }], exportAs: ["rdxTooltipRoot"], ngImport: i0 }); }
845
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.1.4", ngImport: i0, type: RdxTooltipRootDirective, deps: [], target: i0.ɵɵFactoryTarget.Directive }); }
846
+ static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "17.2.0", version: "19.1.4", type: RdxTooltipRootDirective, isStandalone: true, selector: "[rdxTooltipRoot]", inputs: { anchor: { classPropertyName: "anchor", publicName: "anchor", isSignal: true, isRequired: false, transformFunction: null }, defaultOpen: { classPropertyName: "defaultOpen", publicName: "defaultOpen", isSignal: true, isRequired: false, transformFunction: null }, open: { classPropertyName: "open", publicName: "open", isSignal: true, isRequired: false, transformFunction: null }, openDelay: { classPropertyName: "openDelay", publicName: "openDelay", isSignal: true, isRequired: false, transformFunction: null }, closeDelay: { classPropertyName: "closeDelay", publicName: "closeDelay", isSignal: true, isRequired: false, transformFunction: null }, externalControl: { classPropertyName: "externalControl", publicName: "externalControl", isSignal: true, isRequired: false, transformFunction: null }, cssAnimation: { classPropertyName: "cssAnimation", publicName: "cssAnimation", isSignal: true, isRequired: false, transformFunction: null }, cssOpeningAnimation: { classPropertyName: "cssOpeningAnimation", publicName: "cssOpeningAnimation", isSignal: true, isRequired: false, transformFunction: null }, cssClosingAnimation: { classPropertyName: "cssClosingAnimation", publicName: "cssClosingAnimation", isSignal: true, isRequired: false, transformFunction: null } }, queries: [{ propertyName: "contentDirective", first: true, predicate: RdxTooltipContentDirective, descendants: true, isSignal: true }, { propertyName: "triggerDirective", first: true, predicate: RdxTooltipTriggerDirective, descendants: true, isSignal: true }, { propertyName: "arrowDirective", first: true, predicate: RdxTooltipArrowToken, descendants: true, isSignal: true }, { propertyName: "closeDirective", first: true, predicate: RdxTooltipCloseToken, descendants: true, isSignal: true }, { propertyName: "contentAttributesComponent", first: true, predicate: RdxTooltipContentAttributesToken, descendants: true, isSignal: true }, { propertyName: "internalAnchorDirective", first: true, predicate: RdxTooltipAnchorToken, descendants: true, isSignal: true }], exportAs: ["rdxTooltipRoot"], ngImport: i0 }); }
850
847
  }
851
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.0.5", ngImport: i0, type: RdxTooltipRootDirective, decorators: [{
848
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.1.4", ngImport: i0, type: RdxTooltipRootDirective, decorators: [{
852
849
  type: Directive,
853
850
  args: [{
854
851
  selector: '[rdxTooltipRoot]',
@@ -898,15 +895,15 @@ class RdxTooltipAnchorDirective {
898
895
  });
899
896
  this.rootDirective?.triggerDirective().elementRef.nativeElement.dispatchEvent(clickEvent);
900
897
  }
901
- static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.0.5", ngImport: i0, type: RdxTooltipAnchorDirective, deps: [], target: i0.ɵɵFactoryTarget.Directive }); }
902
- static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "19.0.5", type: RdxTooltipAnchorDirective, isStandalone: true, selector: "[rdxTooltipAnchor]", host: { attributes: { "type": "button" }, listeners: { "click": "click()" }, properties: { "attr.id": "name()", "attr.aria-haspopup": "\"dialog\"" } }, providers: [
898
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.1.4", ngImport: i0, type: RdxTooltipAnchorDirective, deps: [], target: i0.ɵɵFactoryTarget.Directive }); }
899
+ static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "19.1.4", type: RdxTooltipAnchorDirective, isStandalone: true, selector: "[rdxTooltipAnchor]", host: { attributes: { "type": "button" }, listeners: { "click": "click()" }, properties: { "attr.id": "name()", "attr.aria-haspopup": "\"dialog\"" } }, providers: [
903
900
  {
904
901
  provide: RdxTooltipAnchorToken,
905
902
  useExisting: forwardRef(() => RdxTooltipAnchorDirective)
906
903
  }
907
904
  ], exportAs: ["rdxTooltipAnchor"], hostDirectives: [{ directive: i1.CdkOverlayOrigin }], ngImport: i0 }); }
908
905
  }
909
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.0.5", ngImport: i0, type: RdxTooltipAnchorDirective, decorators: [{
906
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.1.4", ngImport: i0, type: RdxTooltipAnchorDirective, decorators: [{
910
907
  type: Directive,
911
908
  args: [{
912
909
  selector: '[rdxTooltipAnchor]',
@@ -1020,15 +1017,15 @@ class RdxTooltipArrowDirective {
1020
1017
  });
1021
1018
  });
1022
1019
  }
1023
- static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.0.5", ngImport: i0, type: RdxTooltipArrowDirective, deps: [], target: i0.ɵɵFactoryTarget.Directive }); }
1024
- static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "17.1.0", version: "19.0.5", type: RdxTooltipArrowDirective, isStandalone: true, selector: "[rdxTooltipArrow]", inputs: { width: { classPropertyName: "width", publicName: "width", isSignal: true, isRequired: false, transformFunction: null }, height: { classPropertyName: "height", publicName: "height", isSignal: true, isRequired: false, transformFunction: null } }, providers: [
1020
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.1.4", ngImport: i0, type: RdxTooltipArrowDirective, deps: [], target: i0.ɵɵFactoryTarget.Directive }); }
1021
+ static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "17.1.0", version: "19.1.4", type: RdxTooltipArrowDirective, isStandalone: true, selector: "[rdxTooltipArrow]", inputs: { width: { classPropertyName: "width", publicName: "width", isSignal: true, isRequired: false, transformFunction: null }, height: { classPropertyName: "height", publicName: "height", isSignal: true, isRequired: false, transformFunction: null } }, providers: [
1025
1022
  {
1026
1023
  provide: RdxTooltipArrowToken,
1027
1024
  useExisting: forwardRef(() => RdxTooltipArrowDirective)
1028
1025
  }
1029
1026
  ], ngImport: i0 }); }
1030
1027
  }
1031
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.0.5", ngImport: i0, type: RdxTooltipArrowDirective, decorators: [{
1028
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.1.4", ngImport: i0, type: RdxTooltipArrowDirective, decorators: [{
1032
1029
  type: Directive,
1033
1030
  args: [{
1034
1031
  selector: '[rdxTooltipArrow]',
@@ -1063,15 +1060,15 @@ class RdxTooltipCloseDirective {
1063
1060
  });
1064
1061
  });
1065
1062
  }
1066
- static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.0.5", ngImport: i0, type: RdxTooltipCloseDirective, deps: [], target: i0.ɵɵFactoryTarget.Directive }); }
1067
- static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "19.0.5", type: RdxTooltipCloseDirective, isStandalone: true, selector: "[rdxTooltipClose]", host: { attributes: { "type": "button" }, listeners: { "click": "rootDirective.handleClose(true)" } }, providers: [
1063
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.1.4", ngImport: i0, type: RdxTooltipCloseDirective, deps: [], target: i0.ɵɵFactoryTarget.Directive }); }
1064
+ static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "19.1.4", type: RdxTooltipCloseDirective, isStandalone: true, selector: "[rdxTooltipClose]", host: { attributes: { "type": "button" }, listeners: { "click": "rootDirective.handleClose(true)" } }, providers: [
1068
1065
  {
1069
1066
  provide: RdxTooltipCloseToken,
1070
1067
  useExisting: forwardRef(() => RdxTooltipCloseDirective)
1071
1068
  }
1072
1069
  ], ngImport: i0 }); }
1073
1070
  }
1074
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.0.5", ngImport: i0, type: RdxTooltipCloseDirective, decorators: [{
1071
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.1.4", ngImport: i0, type: RdxTooltipCloseDirective, decorators: [{
1075
1072
  type: Directive,
1076
1073
  args: [{
1077
1074
  selector: '[rdxTooltipClose]',
@@ -1131,8 +1128,8 @@ class RdxTooltipContentAttributesComponent {
1131
1128
  ((this.rootDirective.cssOpeningAnimation() && this.rootDirective.state() === RdxTooltipState.OPEN) ||
1132
1129
  (this.rootDirective.cssClosingAnimation() && this.rootDirective.state() === RdxTooltipState.CLOSED)));
1133
1130
  }
1134
- static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.0.5", ngImport: i0, type: RdxTooltipContentAttributesComponent, deps: [], target: i0.ɵɵFactoryTarget.Component }); }
1135
- static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "19.0.5", type: RdxTooltipContentAttributesComponent, isStandalone: true, selector: "[rdxTooltipContentAttributes]", host: { listeners: { "animationstart": "onAnimationStart($event)", "animationend": "onAnimationEnd($event)", "pointerenter": "pointerenter()", "pointerleave": "pointerleave()", "focus": "focus()", "blur": "blur()" }, properties: { "attr.role": "\"dialog\"", "attr.id": "name()", "attr.data-state": "rootDirective.state()", "attr.data-side": "rootDirective.contentDirective().side()", "attr.data-align": "rootDirective.contentDirective().align()", "style": "disableAnimation() ? {animation: \"none !important\"} : null" } }, providers: [
1131
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.1.4", ngImport: i0, type: RdxTooltipContentAttributesComponent, deps: [], target: i0.ɵɵFactoryTarget.Component }); }
1132
+ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "19.1.4", type: RdxTooltipContentAttributesComponent, isStandalone: true, selector: "[rdxTooltipContentAttributes]", host: { listeners: { "animationstart": "onAnimationStart($event)", "animationend": "onAnimationEnd($event)", "pointerenter": "pointerenter()", "pointerleave": "pointerleave()", "focus": "focus()", "blur": "blur()" }, properties: { "attr.role": "\"dialog\"", "attr.id": "name()", "attr.data-state": "rootDirective.state()", "attr.data-side": "rootDirective.contentDirective().side()", "attr.data-align": "rootDirective.contentDirective().align()", "style": "disableAnimation() ? {animation: \"none !important\"} : null" } }, providers: [
1136
1133
  {
1137
1134
  provide: RdxTooltipContentAttributesToken,
1138
1135
  useExisting: forwardRef(() => RdxTooltipContentAttributesComponent)
@@ -1141,7 +1138,7 @@ class RdxTooltipContentAttributesComponent {
1141
1138
  <ng-content />
1142
1139
  `, isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
1143
1140
  }
1144
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.0.5", ngImport: i0, type: RdxTooltipContentAttributesComponent, decorators: [{
1141
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.1.4", ngImport: i0, type: RdxTooltipContentAttributesComponent, decorators: [{
1145
1142
  type: Component,
1146
1143
  args: [{
1147
1144
  selector: '[rdxTooltipContentAttributes]',
@@ -1182,8 +1179,8 @@ const _imports = [
1182
1179
  RdxTooltipContentAttributesComponent
1183
1180
  ];
1184
1181
  class RdxTooltipModule {
1185
- static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.0.5", ngImport: i0, type: RdxTooltipModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule }); }
1186
- static { this.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "19.0.5", ngImport: i0, type: RdxTooltipModule, imports: [RdxTooltipArrowDirective,
1182
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.1.4", ngImport: i0, type: RdxTooltipModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule }); }
1183
+ static { this.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "19.1.4", ngImport: i0, type: RdxTooltipModule, imports: [RdxTooltipArrowDirective,
1187
1184
  RdxTooltipCloseDirective,
1188
1185
  RdxTooltipContentDirective,
1189
1186
  RdxTooltipTriggerDirective,
@@ -1196,9 +1193,9 @@ class RdxTooltipModule {
1196
1193
  RdxTooltipRootDirective,
1197
1194
  RdxTooltipAnchorDirective,
1198
1195
  RdxTooltipContentAttributesComponent] }); }
1199
- static { this.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "19.0.5", ngImport: i0, type: RdxTooltipModule }); }
1196
+ static { this.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "19.1.4", ngImport: i0, type: RdxTooltipModule }); }
1200
1197
  }
1201
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.0.5", ngImport: i0, type: RdxTooltipModule, decorators: [{
1198
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.1.4", ngImport: i0, type: RdxTooltipModule, decorators: [{
1202
1199
  type: NgModule,
1203
1200
  args: [{
1204
1201
  imports: [..._imports],