@fluid-topics/ft-wc-utils 1.1.81 → 1.1.82

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/index.d.ts CHANGED
@@ -12,6 +12,7 @@ export declare const isTouchScreen: boolean;
12
12
  export * from "./CacheRegistry";
13
13
  export * from "./CancelablePromise";
14
14
  export * from "./ClusteringHelper";
15
+ export * from "./DateFormatter";
15
16
  export * from "./Debouncer";
16
17
  export * from "./decorators";
17
18
  export * from "./designSystemVariables";
package/build/index.js CHANGED
@@ -26,6 +26,7 @@ import * as redux from "./redux";
26
26
  import * as ScopedRegistryLitElement from "./ScopedRegistryLitElement";
27
27
  import * as urlHelpers from "./urlHelpers";
28
28
  import * as FtFormComponent from "./FtFormComponent";
29
+ import { DateFormatter } from "./DateFormatter";
29
30
  export const isSafari = (navigator.vendor && !!navigator.vendor.match(/apple/i))
30
31
  || ((_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]";
31
32
  export const isTouchScreen = (("ontouchstart" in window)
@@ -43,6 +44,7 @@ window.ftGlobals = (_d = window.ftGlobals) !== null && _d !== void 0 ? _d : {
43
44
  ...CacheRegistry,
44
45
  ...CancelablePromise,
45
46
  ...ClusteringHelper,
47
+ ...DateFormatter,
46
48
  ...Debouncer,
47
49
  ...decorators,
48
50
  ...designSystemVariables,
@@ -67,6 +69,7 @@ window.ftGlobals = (_d = window.ftGlobals) !== null && _d !== void 0 ? _d : {
67
69
  export * from "./CacheRegistry";
68
70
  export * from "./CancelablePromise";
69
71
  export * from "./ClusteringHelper";
72
+ export * from "./DateFormatter";
70
73
  export * from "./Debouncer";
71
74
  export * from "./decorators";
72
75
  export * from "./designSystemVariables";
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@fluid-topics/ft-wc-utils",
3
- "version": "1.1.81",
3
+ "version": "1.1.82",
4
4
  "description": "Internal web components tools",
5
5
  "author": "Fluid Topics <devtopics@antidot.net>",
6
6
  "license": "ISC",
@@ -15,13 +15,14 @@
15
15
  "dependencies": {
16
16
  "@floating-ui/dom": "1.5.3",
17
17
  "@fluid-topics/design-system-variables": "0.0.24",
18
- "@fluid-topics/public-api": "1.0.70",
18
+ "@fluid-topics/public-api": "1.0.71",
19
19
  "@reduxjs/toolkit": "1.9.5",
20
20
  "@types/mark.js": "8.11.12",
21
21
  "@webcomponents/scoped-custom-element-registry": "0.0.9",
22
22
  "composed-offset-position": "^0.0.4",
23
23
  "lit": "3.1.0",
24
- "mark.js": "8.11.1"
24
+ "mark.js": "8.11.1",
25
+ "moment": "2.29.4"
25
26
  },
26
- "gitHead": "5dea8a4771738158973c6e7abcd669b1ba24d778"
27
+ "gitHead": "2fd30a90406265aa7cc0714cafe53090343c0086"
27
28
  }