@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 CHANGED
@@ -1,6 +1,6 @@
1
1
  # @pie-framework/pie-fixed-player-static
2
2
 
3
- Version: 1.0.0-152280c.1
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.1
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
- declare global {
7
- interface HTMLElementTagNameMap {
8
- 'pie-fixed-player': HTMLElement;
9
- }
4
+ // Custom element type augmentation
5
+ global {
6
+ interface HTMLElementTagNameMap {
7
+ 'pie-fixed-player': HTMLElement;
8
+ }
10
9
 
11
- interface Window {
12
- /**
13
- * Global debug flag for PIE components
14
- * Set to true to enable debug logging
15
- */
16
- PIE_DEBUG?: boolean;
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
- * Global loader configuration for PIE components
20
- * Alternative to setting loader-config attribute on individual elements
21
- */
22
- PIE_LOADER_CONFIG?: {
23
- trackPageActions?: boolean;
24
- maxResourceRetries?: number;
25
- resourceRetryDelay?: number;
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
- * New Relic Browser Agent
30
- */
31
- newrelic?: {
32
- addPageAction(name: string, attributes?: Record<string, any>): void;
33
- noticeError(error: Error, attributes?: Record<string, any>): void;
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
  }