@pie-framework/pie-fixed-player-static 1.0.0-152280c.1 → 1.0.0-152280c.2
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/README.md +2 -2
- package/dist/index.d.ts +28 -28
- package/dist/pie-fixed-player.js +1178 -1030
- package/package.json +3 -3
package/README.md
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
# @pie-framework/pie-fixed-player-static
|
|
2
2
|
|
|
3
|
-
Version: 1.0.0-152280c.
|
|
3
|
+
Version: 1.0.0-152280c.2
|
|
4
4
|
|
|
5
5
|
Pre-bundled PIE fixed player with static element versions for production use.
|
|
6
6
|
|
|
@@ -18,7 +18,7 @@ in Pieoneer, use `pie-inline-player` instead.
|
|
|
18
18
|
## Installation
|
|
19
19
|
|
|
20
20
|
```bash
|
|
21
|
-
npm install @pie-framework/pie-fixed-player-static@1.0.0-152280c.
|
|
21
|
+
npm install @pie-framework/pie-fixed-player-static@1.0.0-152280c.2
|
|
22
22
|
```
|
|
23
23
|
|
|
24
24
|
## Usage
|
package/dist/index.d.ts
CHANGED
|
@@ -1,36 +1,36 @@
|
|
|
1
1
|
declare module '@pie-framework/pie-fixed-player-static' {
|
|
2
2
|
export {};
|
|
3
|
-
}
|
|
4
3
|
|
|
5
|
-
// Custom element type augmentation
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
4
|
+
// Custom element type augmentation
|
|
5
|
+
global {
|
|
6
|
+
interface HTMLElementTagNameMap {
|
|
7
|
+
'pie-fixed-player': HTMLElement;
|
|
8
|
+
}
|
|
10
9
|
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
10
|
+
interface Window {
|
|
11
|
+
/**
|
|
12
|
+
* Global debug flag for PIE components
|
|
13
|
+
* Set to true to enable debug logging
|
|
14
|
+
*/
|
|
15
|
+
PIE_DEBUG?: boolean;
|
|
17
16
|
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
17
|
+
/**
|
|
18
|
+
* Global loader configuration for PIE components
|
|
19
|
+
* Alternative to setting loader-config attribute on individual elements
|
|
20
|
+
*/
|
|
21
|
+
PIE_LOADER_CONFIG?: {
|
|
22
|
+
trackPageActions?: boolean;
|
|
23
|
+
maxResourceRetries?: number;
|
|
24
|
+
resourceRetryDelay?: number;
|
|
25
|
+
};
|
|
27
26
|
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
27
|
+
/**
|
|
28
|
+
* New Relic Browser Agent
|
|
29
|
+
*/
|
|
30
|
+
newrelic?: {
|
|
31
|
+
addPageAction(name: string, attributes?: Record<string, any>): void;
|
|
32
|
+
noticeError(error: Error, attributes?: Record<string, any>): void;
|
|
33
|
+
};
|
|
34
|
+
}
|
|
35
35
|
}
|
|
36
36
|
}
|