@streamlayer/react 1.14.6 → 1.14.7

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.
Files changed (38) hide show
  1. package/lib/app/event.d.ts +3 -1
  2. package/lib/app/masters.d.ts +2 -0
  3. package/lib/cjs/advertisement.js +30 -30
  4. package/lib/cjs/gamification-feature2.js +1 -1
  5. package/lib/cjs/masters2.js +9 -5
  6. package/lib/cjs/notification.js +1 -1
  7. package/lib/cjs/provider.js +16 -16
  8. package/lib/cjs/useStreamLayerApp2.js +2 -2
  9. package/lib/classic/app/event.d.ts +3 -1
  10. package/lib/classic/app/masters.d.ts +2 -0
  11. package/lib/classic/cjs/advertisement.js +30 -30
  12. package/lib/classic/cjs/gamification-feature2.js +1 -1
  13. package/lib/classic/cjs/masters2.js +9 -5
  14. package/lib/classic/cjs/notification.js +1 -1
  15. package/lib/classic/cjs/provider.js +16 -16
  16. package/lib/classic/cjs/useStreamLayerApp2.js +2 -2
  17. package/lib/classic/es/advertisement.js +2584 -2561
  18. package/lib/classic/es/gamification-feature2.js +1 -1
  19. package/lib/classic/es/masters2.js +363 -337
  20. package/lib/classic/es/notification.js +19 -19
  21. package/lib/classic/es/provider.js +1928 -1909
  22. package/lib/classic/es/useStreamLayerApp2.js +4 -4
  23. package/lib/classic/style.css +1 -1
  24. package/lib/dist/cjs/gamification-feature.js +1 -1
  25. package/lib/dist/cjs/gamification-feature2.js +1 -1
  26. package/lib/dist/cjs/masters.js +32 -28
  27. package/lib/dist/es/gamification-feature.js +1 -1
  28. package/lib/dist/es/gamification-feature2.js +1 -1
  29. package/lib/dist/es/masters.js +5933 -5894
  30. package/lib/dist/style.css +1 -1
  31. package/lib/es/advertisement.js +2584 -2561
  32. package/lib/es/gamification-feature2.js +1 -1
  33. package/lib/es/masters2.js +363 -337
  34. package/lib/es/notification.js +19 -19
  35. package/lib/es/provider.js +1925 -1906
  36. package/lib/es/useStreamLayerApp2.js +4 -4
  37. package/lib/style.css +1 -1
  38. package/package.json +14 -14
@@ -1,4 +1,6 @@
1
1
  export type StreamLayerSDKEventProps = {
2
2
  event?: string;
3
3
  };
4
- export declare const StreamLayerSDKEvent: React.FC<StreamLayerSDKEventProps>;
4
+ export declare const StreamLayerSDKEvent: React.FC<StreamLayerSDKEventProps & {
5
+ internal?: boolean;
6
+ }>;
@@ -7,11 +7,13 @@ export declare const MastersStreamLayerProvider: React.FC<Omit<StreamLayerProps,
7
7
  }>;
8
8
  export declare class MastersStreamLayerSDKReact extends Component<{
9
9
  betPack?: boolean;
10
+ useContainer?: boolean;
10
11
  }, {
11
12
  hasError: boolean;
12
13
  }> {
13
14
  constructor(props: {
14
15
  betPack?: boolean;
16
+ useContainer?: boolean;
15
17
  });
16
18
  static getDerivedStateFromError(): {
17
19
  hasError: boolean;