@playkit-js/playkit-js-ui 0.78.0 → 0.78.1-canary.0-3e307cf
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/dist/playkit-js-ui.d.ts +18 -0
- package/dist/playkit-ui.js +1 -1
- package/dist/playkit-ui.js.map +1 -1
- package/package.json +1 -1
- package/src/components/logo/logo.tsx +25 -10
- package/src/types/user-theme.ts +13 -0
- package/src/utils/themes-manager.ts +11 -2
package/dist/playkit-js-ui.d.ts
CHANGED
|
@@ -1917,6 +1917,17 @@ export declare type ColorType = {
|
|
|
1917
1917
|
warning: string;
|
|
1918
1918
|
live: string;
|
|
1919
1919
|
playerBackground: string;
|
|
1920
|
+
paperSurface: string;
|
|
1921
|
+
elevatedSurface: string;
|
|
1922
|
+
protectionSurface: string;
|
|
1923
|
+
tone1: string;
|
|
1924
|
+
tone2: string;
|
|
1925
|
+
tone3: string;
|
|
1926
|
+
tone4: string;
|
|
1927
|
+
tone5: string;
|
|
1928
|
+
tone6: string;
|
|
1929
|
+
tone7: string;
|
|
1930
|
+
tone8: string;
|
|
1920
1931
|
};
|
|
1921
1932
|
|
|
1922
1933
|
declare namespace Components {
|
|
@@ -4554,6 +4565,13 @@ declare class Logo extends Component<any, any> {
|
|
|
4554
4565
|
* @memberof Logo
|
|
4555
4566
|
*/
|
|
4556
4567
|
private _handleLogoUrl;
|
|
4568
|
+
/**
|
|
4569
|
+
* sets the url with the entry id
|
|
4570
|
+
* @param {string} url - the url configured on the logo
|
|
4571
|
+
* @returns {boolean} - whether the url was set with entry id or not
|
|
4572
|
+
* @memberof Logo
|
|
4573
|
+
*/
|
|
4574
|
+
private _setLogoUrlWithEntryId;
|
|
4557
4575
|
/**
|
|
4558
4576
|
* should render component
|
|
4559
4577
|
* @returns {boolean} - whether to render the component
|