@anglr/common 8.0.0-beta.20211217111139 → 8.0.0-beta.20211217112423
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/es2015/positions/src/modules/tooltip/misc/tooltip.interface.js.map +1 -1
- package/es2020/positions/src/modules/tooltip/misc/tooltip.interface.js.map +1 -1
- package/package.json +1 -1
- package/positions/common-positions.d.ts +1 -1
- package/positions/common-positions.internal.d.ts +1 -1
- package/positions/src/modules/tooltip/misc/tooltip.interface.d.ts +1 -1
- package/version.bak +1 -1
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"tooltip.interface.js","sourceRoot":"","sources":["../../../../../../positions/src/modules/tooltip/misc/tooltip.interface.ts"],"names":[],"mappings":"","sourcesContent":["import {TemplateRef, Type} from '@angular/core';\nimport type {PositionsCoordinates} from 'positions';\n\n/**\n * Represents component that is used for rendering tooltip\n */\nexport interface TooltipRenderer<TData = any>\n{\n //######################### properties #########################\n\n /**\n * Data that are rendered in tooltip\n */\n data: TData|null;\n\n /**\n * Template used for rendering tooltip\n */\n template: TemplateRef<TData>|null;\n\n /**\n * Indication whether are html tags allowed in tooltip text\n */\n allowHtml: boolean;\n\n /**\n * Css class that is applied to tooltip renderer component\n */\n cssClass: string|null;\n\n //######################### methods #########################\n\n /**\n * Registers handlers that allows reaction to entering or leaving tooltip\n * @param enter - Called when mouse enter tooltip component, hover\n * @param leave - Called when mouse leaves tooltip component\n */\n registerHoverEvents(enter: () => void, leave: () => void): void;\n\n /**\n * Explicitly runs invalidation of content (change detection)\n */\n invalidateVisuals(): void;\n}\n\n/**\n * Options used for tooltip directive\n */\nexport interface TooltipOptions\n{\n /**\n * Delay for displaying of tooltip on hover\n */\n delay?: number;\n\n /**\n * Indication whether is tooltip displayed at fixed position, or if it is displayed where cursor enters element\n */\n fixedPosition?: boolean;\n\n /**\n * Position where should be tooltip displayed at element\n */\n elementPositionAt?: PositionsCoordinates;\n\n /**\n * Position of tooltip where should placed at\n */\n tooltipPosition?: PositionsCoordinates;\n\n /**\n * Allows selection of text in tooltip\n */\n allowSelection?: boolean|null;\n\n /**\n * Css class that is applied to tooltip renderer component\n */\n tooltipCssClass?: string|null;\n\n
|
|
1
|
+
{"version":3,"file":"tooltip.interface.js","sourceRoot":"","sources":["../../../../../../positions/src/modules/tooltip/misc/tooltip.interface.ts"],"names":[],"mappings":"","sourcesContent":["import {TemplateRef, Type} from '@angular/core';\nimport type {PositionsCoordinates} from 'positions';\n\n/**\n * Represents component that is used for rendering tooltip\n */\nexport interface TooltipRenderer<TData = any>\n{\n //######################### properties #########################\n\n /**\n * Data that are rendered in tooltip\n */\n data: TData|null;\n\n /**\n * Template used for rendering tooltip\n */\n template: TemplateRef<TData>|null;\n\n /**\n * Indication whether are html tags allowed in tooltip text\n */\n allowHtml: boolean;\n\n /**\n * Css class that is applied to tooltip renderer component\n */\n cssClass: string|null;\n\n //######################### methods #########################\n\n /**\n * Registers handlers that allows reaction to entering or leaving tooltip\n * @param enter - Called when mouse enter tooltip component, hover\n * @param leave - Called when mouse leaves tooltip component\n */\n registerHoverEvents(enter: () => void, leave: () => void): void;\n\n /**\n * Explicitly runs invalidation of content (change detection)\n */\n invalidateVisuals(): void;\n}\n\n/**\n * Options used for tooltip directive\n */\nexport interface TooltipOptions\n{\n /**\n * Delay for displaying of tooltip on hover\n */\n delay?: number;\n\n /**\n * Indication whether is tooltip displayed at fixed position, or if it is displayed where cursor enters element\n */\n fixedPosition?: boolean;\n\n /**\n * Position where should be tooltip displayed at element\n */\n elementPositionAt?: PositionsCoordinates;\n\n /**\n * Position of tooltip where should placed at\n */\n tooltipPosition?: PositionsCoordinates;\n\n /**\n * Allows selection of text in tooltip\n */\n allowSelection?: boolean|null;\n\n /**\n * Css class that is applied to tooltip renderer component\n */\n tooltipCssClass?: string|null;\n\n /**\n * Indication whether stop propagation of \"hover\" event\n */\n stopPropagation?: boolean|null;\n\n /**\n * Type of tooltip renderer that is used for rendering tooltip\n */\n tooltipRenderer?: Type<TooltipRenderer>;\n}"]}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"tooltip.interface.js","sourceRoot":"","sources":["../../../../../../positions/src/modules/tooltip/misc/tooltip.interface.ts"],"names":[],"mappings":"","sourcesContent":["import {TemplateRef, Type} from '@angular/core';\nimport type {PositionsCoordinates} from 'positions';\n\n/**\n * Represents component that is used for rendering tooltip\n */\nexport interface TooltipRenderer<TData = any>\n{\n //######################### properties #########################\n\n /**\n * Data that are rendered in tooltip\n */\n data: TData|null;\n\n /**\n * Template used for rendering tooltip\n */\n template: TemplateRef<TData>|null;\n\n /**\n * Indication whether are html tags allowed in tooltip text\n */\n allowHtml: boolean;\n\n /**\n * Css class that is applied to tooltip renderer component\n */\n cssClass: string|null;\n\n //######################### methods #########################\n\n /**\n * Registers handlers that allows reaction to entering or leaving tooltip\n * @param enter - Called when mouse enter tooltip component, hover\n * @param leave - Called when mouse leaves tooltip component\n */\n registerHoverEvents(enter: () => void, leave: () => void): void;\n\n /**\n * Explicitly runs invalidation of content (change detection)\n */\n invalidateVisuals(): void;\n}\n\n/**\n * Options used for tooltip directive\n */\nexport interface TooltipOptions\n{\n /**\n * Delay for displaying of tooltip on hover\n */\n delay?: number;\n\n /**\n * Indication whether is tooltip displayed at fixed position, or if it is displayed where cursor enters element\n */\n fixedPosition?: boolean;\n\n /**\n * Position where should be tooltip displayed at element\n */\n elementPositionAt?: PositionsCoordinates;\n\n /**\n * Position of tooltip where should placed at\n */\n tooltipPosition?: PositionsCoordinates;\n\n /**\n * Allows selection of text in tooltip\n */\n allowSelection?: boolean|null;\n\n /**\n * Css class that is applied to tooltip renderer component\n */\n tooltipCssClass?: string|null;\n\n
|
|
1
|
+
{"version":3,"file":"tooltip.interface.js","sourceRoot":"","sources":["../../../../../../positions/src/modules/tooltip/misc/tooltip.interface.ts"],"names":[],"mappings":"","sourcesContent":["import {TemplateRef, Type} from '@angular/core';\nimport type {PositionsCoordinates} from 'positions';\n\n/**\n * Represents component that is used for rendering tooltip\n */\nexport interface TooltipRenderer<TData = any>\n{\n //######################### properties #########################\n\n /**\n * Data that are rendered in tooltip\n */\n data: TData|null;\n\n /**\n * Template used for rendering tooltip\n */\n template: TemplateRef<TData>|null;\n\n /**\n * Indication whether are html tags allowed in tooltip text\n */\n allowHtml: boolean;\n\n /**\n * Css class that is applied to tooltip renderer component\n */\n cssClass: string|null;\n\n //######################### methods #########################\n\n /**\n * Registers handlers that allows reaction to entering or leaving tooltip\n * @param enter - Called when mouse enter tooltip component, hover\n * @param leave - Called when mouse leaves tooltip component\n */\n registerHoverEvents(enter: () => void, leave: () => void): void;\n\n /**\n * Explicitly runs invalidation of content (change detection)\n */\n invalidateVisuals(): void;\n}\n\n/**\n * Options used for tooltip directive\n */\nexport interface TooltipOptions\n{\n /**\n * Delay for displaying of tooltip on hover\n */\n delay?: number;\n\n /**\n * Indication whether is tooltip displayed at fixed position, or if it is displayed where cursor enters element\n */\n fixedPosition?: boolean;\n\n /**\n * Position where should be tooltip displayed at element\n */\n elementPositionAt?: PositionsCoordinates;\n\n /**\n * Position of tooltip where should placed at\n */\n tooltipPosition?: PositionsCoordinates;\n\n /**\n * Allows selection of text in tooltip\n */\n allowSelection?: boolean|null;\n\n /**\n * Css class that is applied to tooltip renderer component\n */\n tooltipCssClass?: string|null;\n\n /**\n * Indication whether stop propagation of \"hover\" event\n */\n stopPropagation?: boolean|null;\n\n /**\n * Type of tooltip renderer that is used for rendering tooltip\n */\n tooltipRenderer?: Type<TooltipRenderer>;\n}"]}
|
package/package.json
CHANGED
|
@@ -279,7 +279,7 @@ export declare interface TooltipOptions {
|
|
|
279
279
|
* Css class that is applied to tooltip renderer component
|
|
280
280
|
*/
|
|
281
281
|
tooltipCssClass?: string | null;
|
|
282
|
-
|
|
282
|
+
/**
|
|
283
283
|
* Indication whether stop propagation of "hover" event
|
|
284
284
|
*/
|
|
285
285
|
stopPropagation?: boolean | null;
|
|
@@ -301,7 +301,7 @@ export declare interface TooltipOptions {
|
|
|
301
301
|
* Css class that is applied to tooltip renderer component
|
|
302
302
|
*/
|
|
303
303
|
tooltipCssClass?: string | null;
|
|
304
|
-
|
|
304
|
+
/**
|
|
305
305
|
* Indication whether stop propagation of "hover" event
|
|
306
306
|
*/
|
|
307
307
|
stopPropagation?: boolean | null;
|
package/version.bak
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
8.0.0-beta.
|
|
1
|
+
8.0.0-beta.20211217112423
|