@fluid-topics/ft-wc-utils 1.3.62 → 1.3.63
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/build/globals.min.js +14 -14
- package/build/index.js +2 -0
- package/package.json +2 -2
package/build/index.js
CHANGED
|
@@ -37,6 +37,7 @@ import * as FluidTopicsA11yEvents from "./a11y/FluidTopicsA11yEvents";
|
|
|
37
37
|
import * as FluidTopicsA11yHints from "./a11y/FluidTopicsA11yHints";
|
|
38
38
|
import { screenReaderStyles } from "./accessibility.styles";
|
|
39
39
|
import * as search from "./search";
|
|
40
|
+
import * as FtLitElementWithAriaNotification from "./FtLitElementWithAriaNotification";
|
|
40
41
|
export const isSafari = (navigator.vendor && !!navigator.vendor.match(/apple/i))
|
|
41
42
|
|| ((_c = (_b = (_a = window.safari) === null || _a === void 0 ? void 0 : _a.pushNotification) === null || _b === void 0 ? void 0 : _b.toString()) !== null && _c !== void 0 ? _c : "") === "[object SafariRemoteNotification]";
|
|
42
43
|
export const isTouchScreen = (("ontouchstart" in window)
|
|
@@ -67,6 +68,7 @@ window.ftGlobals = (_d = window.ftGlobals) !== null && _d !== void 0 ? _d : {
|
|
|
67
68
|
...FtdsBase,
|
|
68
69
|
...FtFormComponent,
|
|
69
70
|
...FtLitElement,
|
|
71
|
+
...FtLitElementWithAriaNotification,
|
|
70
72
|
...genericTypes,
|
|
71
73
|
...helpers,
|
|
72
74
|
...highlightHtml,
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@fluid-topics/ft-wc-utils",
|
|
3
|
-
"version": "1.3.
|
|
3
|
+
"version": "1.3.63",
|
|
4
4
|
"description": "Internal web components tools",
|
|
5
5
|
"author": "Fluid Topics <devtopics@antidot.net>",
|
|
6
6
|
"license": "ISC",
|
|
@@ -24,5 +24,5 @@
|
|
|
24
24
|
"mark.js": "8.11.1",
|
|
25
25
|
"moment": "2.29.4"
|
|
26
26
|
},
|
|
27
|
-
"gitHead": "
|
|
27
|
+
"gitHead": "d5a25917d4f07daff26d04ec39843e9d03c7a86e"
|
|
28
28
|
}
|