@clickview/player 0.0.17-dev.0 → 0.0.17-rc.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.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@clickview/player",
3
- "version": "0.0.17-dev.0",
3
+ "version": "0.0.17-rc.0",
4
4
  "description": "ClickView Player",
5
5
  "main": "dist/player-app.js",
6
6
  "scripts": {
@@ -28,7 +28,7 @@
28
28
  "@babel/core": "7.11.6",
29
29
  "@clickview/eslint-config": "1.0.1",
30
30
  "@clickview/player-font": "0.0.12",
31
- "@clickview/tooling": "0.0.33-dev.0",
31
+ "@clickview/tooling": "0.0.32",
32
32
  "@storybook/react": "6.0.26",
33
33
  "@types/chromecast-caf-sender": "1.0.3",
34
34
  "@types/cropperjs": "1.3.0",
@@ -42,7 +42,7 @@
42
42
  "webpack-dev-server": "3.11.0"
43
43
  },
44
44
  "dependencies": {
45
- "@clickview/styles": "1.0.26-dev.0",
45
+ "@clickview/styles": "1.0.26-rc.0",
46
46
  "@microsoft/signalr": "5.0.2",
47
47
  "cropperjs": "1.5.6",
48
48
  "draft-convert": "2.1.10",
@@ -1,18 +0,0 @@
1
- import { ObjectHash } from 'backbone';
2
- export declare const TextHelper: {
3
- escapeExpression(text: string): string;
4
- escapeRegExp(str: string): string;
5
- slugify(str: string): string;
6
- linkifyText(text: string, options?: ObjectHash): string;
7
- isEqual(str1: string | number, str2: string | number): boolean;
8
- toTitleCase(str: string): string;
9
- /**
10
- * DOMPurify.sanitize encodes '&' characters.
11
- * At the moment, this appears to be the intended behaviour:
12
- * https://github.com/cure53/DOMPurify/issues/379
13
- *
14
- * Note: DOMPurify.sanitize does not escape HTML. It will remove
15
- * any XSS threats, leaving safe HTML.
16
- */
17
- sanitize(text: string): string;
18
- };