@playkit-js/playkit-js-ui 0.79.1 → 0.79.2-canary.0-32cfdfb

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.
@@ -880,6 +880,37 @@ declare type AdSkipProps = {
880
880
  */
881
881
  declare function adsUI(props: any): VNode<any> | undefined;
882
882
 
883
+ /**
884
+ * AdvancedAudioDesc component
885
+ *
886
+ * @class AdvancedAudioDesc
887
+ * @example <AdvancedAudioDesc step={5} />
888
+ * @extends {Component}
889
+ */
890
+ declare class AdvancedAudioDesc extends Component<any, any> {
891
+ constructor(props: any);
892
+ /**
893
+ * should render component
894
+ * @returns {boolean} - whether to render the component
895
+ */
896
+ _shouldRender(): boolean;
897
+ /**
898
+ * AdvancedAudioDesc click handler
899
+ *
900
+ * @returns {void}
901
+ * @memberof AdvancedAudioDesc
902
+ */
903
+ onClick: () => void;
904
+ /**
905
+ * render component
906
+ *
907
+ * @param {*} props - component props
908
+ * @returns {React$Element} - component element
909
+ * @memberof AdvancedAudioDesc
910
+ */
911
+ render({ AdvancedAudioDescText, innerRef }: any): VNode<any> | undefined;
912
+ }
913
+
883
914
  /**
884
915
  * AdvancedAudioDescToggle component
885
916
  *
@@ -1990,6 +2021,7 @@ declare namespace Components {
1990
2021
  HeightResolution,
1991
2022
  getLabelBadgeType,
1992
2023
  AdvancedAudioDescToggle,
2024
+ AdvancedAudioDesc,
1993
2025
  ExpandableText,
1994
2026
  Scrollable,
1995
2027
  ProgressIndicator,
@@ -3292,6 +3324,7 @@ declare const IconType: {
3292
3324
  ClosedCaptionsOn: string;
3293
3325
  ClosedCaptionsOff: string;
3294
3326
  AdvancedAudioDescription: string;
3327
+ AdvancedAudioDescriptionActive: string;
3295
3328
  };
3296
3329
 
3297
3330
  /**