@progress/kendo-angular-common 19.3.1-develop.4 → 20.0.0-develop.1
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.
|
@@ -22,3 +22,7 @@ export const isFirefox = (userAgent) => {
|
|
|
22
22
|
const mobileOS = detectMobileOS(userAgent);
|
|
23
23
|
return (desktopBrowser && desktopBrowser.mozilla) || (mobileOS && mobileOS.browser === 'firefox');
|
|
24
24
|
};
|
|
25
|
+
/**
|
|
26
|
+
* @hidden
|
|
27
|
+
*/
|
|
28
|
+
export const firefoxMaxHeight = 17895697;
|
package/esm2022/utils.mjs
CHANGED
|
@@ -7,7 +7,7 @@ export { isChanged } from './utils/is-changed';
|
|
|
7
7
|
export { anyChanged } from './utils/any-changed';
|
|
8
8
|
export { hasObservers } from './utils/has-observers';
|
|
9
9
|
export { guid } from './utils/guid';
|
|
10
|
-
export { isSafari, isFirefox } from './utils/detect-browser';
|
|
10
|
+
export { isSafari, isFirefox, firefoxMaxHeight } from './utils/detect-browser';
|
|
11
11
|
export * from './utils/html-attributes';
|
|
12
12
|
export { isControlRequired } from './utils/forms-utils';
|
|
13
13
|
export { areObjectsEqual } from './utils/objects-equal';
|
|
@@ -78,6 +78,10 @@ const isFirefox = (userAgent) => {
|
|
|
78
78
|
const mobileOS = detectMobileOS(userAgent);
|
|
79
79
|
return (desktopBrowser && desktopBrowser.mozilla) || (mobileOS && mobileOS.browser === 'firefox');
|
|
80
80
|
};
|
|
81
|
+
/**
|
|
82
|
+
* @hidden
|
|
83
|
+
*/
|
|
84
|
+
const firefoxMaxHeight = 17895697;
|
|
81
85
|
|
|
82
86
|
/* eslint-disable @typescript-eslint/no-explicit-any */
|
|
83
87
|
/**
|
|
@@ -1635,5 +1639,5 @@ const replaceMessagePlaceholder = (message, name, value) => (message ?? '').repl
|
|
|
1635
1639
|
* Generated bundle index. Do not edit.
|
|
1636
1640
|
*/
|
|
1637
1641
|
|
|
1638
|
-
export { DraggableDirective, EventsOutsideAngularDirective, KENDO_ADORNMENTS, KENDO_COMMON, KENDO_DRAGGABLE, KENDO_EVENTS, KENDO_RESIZESENSOR, KENDO_TEMPLATE_CONTEXT, KENDO_TOGGLEBUTTONTABSTOP, KENDO_WATERMARK, KendoInput, Keys, MultiTabStop, PrefixTemplateDirective, PreventableEvent, ResizeBatchService, ResizeCompatService, ResizeObserverService, ResizeSensorComponent, ScrollbarWidthService, SeparatorComponent, SuffixTemplateDirective, TemplateContextDirective, ToggleButtonTabStopDirective, WatermarkOverlayComponent, anyChanged, applyAttributes, areObjectsEqual, closest, closestBySelector, closestInScope, contains, findElement, findFocusable, findFocusableChild, focusableSelector, getLicenseMessage, guid, hasClasses, hasObservers, isChanged, isControlRequired, isDocumentAvailable, isFirefox, isFocusable, isFocusableWithTabKey, isObject, isObjectPresent, isPresent, isSafari, isString, isVisible, matchesClasses, matchesNodeName, normalizeNumpadKeys, parseAttributes, parseCSSClassNames, processCssValue, removeHTMLAttributes, replaceMessagePlaceholder, rtlScrollPosition, scrollbarWidth, setHTMLAttributes, shouldShowValidationUI, splitStringToArray };
|
|
1642
|
+
export { DraggableDirective, EventsOutsideAngularDirective, KENDO_ADORNMENTS, KENDO_COMMON, KENDO_DRAGGABLE, KENDO_EVENTS, KENDO_RESIZESENSOR, KENDO_TEMPLATE_CONTEXT, KENDO_TOGGLEBUTTONTABSTOP, KENDO_WATERMARK, KendoInput, Keys, MultiTabStop, PrefixTemplateDirective, PreventableEvent, ResizeBatchService, ResizeCompatService, ResizeObserverService, ResizeSensorComponent, ScrollbarWidthService, SeparatorComponent, SuffixTemplateDirective, TemplateContextDirective, ToggleButtonTabStopDirective, WatermarkOverlayComponent, anyChanged, applyAttributes, areObjectsEqual, closest, closestBySelector, closestInScope, contains, findElement, findFocusable, findFocusableChild, firefoxMaxHeight, focusableSelector, getLicenseMessage, guid, hasClasses, hasObservers, isChanged, isControlRequired, isDocumentAvailable, isFirefox, isFocusable, isFocusableWithTabKey, isObject, isObjectPresent, isPresent, isSafari, isString, isVisible, matchesClasses, matchesNodeName, normalizeNumpadKeys, parseAttributes, parseCSSClassNames, processCssValue, removeHTMLAttributes, replaceMessagePlaceholder, rtlScrollPosition, scrollbarWidth, setHTMLAttributes, shouldShowValidationUI, splitStringToArray };
|
|
1639
1643
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@progress/kendo-angular-common",
|
|
3
|
-
"version": "
|
|
3
|
+
"version": "20.0.0-develop.1",
|
|
4
4
|
"description": "Kendo UI for Angular - Utility Package",
|
|
5
5
|
"license": "SEE LICENSE IN LICENSE.md",
|
|
6
6
|
"author": "Progress",
|
|
@@ -23,7 +23,7 @@
|
|
|
23
23
|
"@progress/kendo-common": "^1.0.1",
|
|
24
24
|
"@progress/kendo-draggable": "^3.0.2",
|
|
25
25
|
"tslib": "^2.3.1",
|
|
26
|
-
"@progress/kendo-angular-schematics": "
|
|
26
|
+
"@progress/kendo-angular-schematics": "20.0.0-develop.1"
|
|
27
27
|
},
|
|
28
28
|
"publishConfig": {
|
|
29
29
|
"access": "public"
|
package/utils.d.ts
CHANGED
|
@@ -7,7 +7,7 @@ export { isChanged } from './utils/is-changed';
|
|
|
7
7
|
export { anyChanged } from './utils/any-changed';
|
|
8
8
|
export { hasObservers } from './utils/has-observers';
|
|
9
9
|
export { guid } from './utils/guid';
|
|
10
|
-
export { isSafari, isFirefox } from './utils/detect-browser';
|
|
10
|
+
export { isSafari, isFirefox, firefoxMaxHeight } from './utils/detect-browser';
|
|
11
11
|
export * from './utils/html-attributes';
|
|
12
12
|
export { isControlRequired } from './utils/forms-utils';
|
|
13
13
|
export { areObjectsEqual } from './utils/objects-equal';
|