@wistia/vhs 2.76.5-beta.0403cd7e.5667586 → 2.76.5-beta.14b94478.e6f1391
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/components/WistiaLogo/WistiaLogo.d.ts +14 -11
- package/dist/components/WistiaLogo/WistiaLogo.d.ts.map +1 -1
- package/dist/components/WistiaLogoNew/WistiaLogoNew.d.ts +39 -0
- package/dist/components/WistiaLogoNew/WistiaLogoNew.d.ts.map +1 -0
- package/dist/components/WistiaLogoNew/index.d.ts +2 -0
- package/dist/components/WistiaLogoNew/index.d.ts.map +1 -0
- package/dist/index.cjs +512 -478
- package/dist/index.cjs.map +4 -4
- package/dist/index.d.ts +1 -1
- package/dist/index.d.ts.map +1 -1
- package/dist/index.mjs +504 -470
- package/dist/index.mjs.map +4 -4
- package/package.json +2 -2
|
@@ -1,9 +1,14 @@
|
|
|
1
1
|
import type { ComponentPropsWithoutRef } from 'react';
|
|
2
2
|
export type WistiaLogoProps = Omit<ComponentPropsWithoutRef<'svg'>, 'href'> & {
|
|
3
3
|
/**
|
|
4
|
-
*
|
|
4
|
+
* Display the icon portion of the logo
|
|
5
5
|
*/
|
|
6
|
-
|
|
6
|
+
brandmark?: boolean;
|
|
7
|
+
/**
|
|
8
|
+
* @ignore
|
|
9
|
+
* Allows user to override default logo colors
|
|
10
|
+
*/
|
|
11
|
+
colorOverride?: string;
|
|
7
12
|
/**
|
|
8
13
|
* Height, in pixels, of the logo
|
|
9
14
|
*/
|
|
@@ -13,27 +18,25 @@ export type WistiaLogoProps = Omit<ComponentPropsWithoutRef<'svg'>, 'href'> & {
|
|
|
13
18
|
* Change the color when hovering over the logo
|
|
14
19
|
*/
|
|
15
20
|
hoverColor?: string;
|
|
16
|
-
/**
|
|
17
|
-
* Display just the icon portion of the logo (ie. hide `Wistia` text)
|
|
18
|
-
* note: there is no analogue to this because by brand guidelines, the
|
|
19
|
-
* `Wistia` text must not be displayed without the "flags" iconography
|
|
20
|
-
*/
|
|
21
|
-
iconOnly?: boolean;
|
|
22
21
|
/**
|
|
23
22
|
* If provided, will wrap the logo in a link
|
|
24
23
|
*/
|
|
25
24
|
href?: string;
|
|
26
25
|
/**
|
|
27
|
-
*
|
|
26
|
+
* Display the text portion of the logo
|
|
27
|
+
*/
|
|
28
|
+
logotype?: boolean;
|
|
29
|
+
/**
|
|
30
|
+
* An accessible, short-text description of the logo
|
|
28
31
|
*/
|
|
29
32
|
title?: string;
|
|
30
33
|
/**
|
|
31
34
|
* Style of the logo
|
|
32
35
|
*/
|
|
33
|
-
variant?: '
|
|
36
|
+
variant?: 'black' | 'standard' | 'white';
|
|
34
37
|
};
|
|
35
38
|
export declare const WistiaLogo: {
|
|
36
|
-
({
|
|
39
|
+
({ brandmark, colorOverride, height, hoverColor, href, logotype, title, variant, ...otherProps }?: WistiaLogoProps): import("react/jsx-runtime").JSX.Element | null;
|
|
37
40
|
displayName: string;
|
|
38
41
|
};
|
|
39
42
|
//# sourceMappingURL=WistiaLogo.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"WistiaLogo.d.ts","sourceRoot":"","sources":["../../../src/components/WistiaLogo/WistiaLogo.tsx"],"names":[],"mappings":"AACA,OAAO,KAAK,EAAE,wBAAwB,
|
|
1
|
+
{"version":3,"file":"WistiaLogo.d.ts","sourceRoot":"","sources":["../../../src/components/WistiaLogo/WistiaLogo.tsx"],"names":[],"mappings":"AACA,OAAO,KAAK,EAAE,wBAAwB,EAAO,MAAM,OAAO,CAAC;AA8E3D,MAAM,MAAM,eAAe,GAAG,IAAI,CAAC,wBAAwB,CAAC,KAAK,CAAC,EAAE,MAAM,CAAC,GAAG;IAC5E;;OAEG;IACH,SAAS,CAAC,EAAE,OAAO,CAAC;IACpB;;;OAGG;IACH,aAAa,CAAC,EAAE,MAAM,CAAC;IACvB;;OAEG;IACH,MAAM,CAAC,EAAE,MAAM,CAAC;IAChB;;;OAGG;IACH,UAAU,CAAC,EAAE,MAAM,CAAC;IACpB;;OAEG;IACH,IAAI,CAAC,EAAE,MAAM,CAAC;IACd;;OAEG;IACH,QAAQ,CAAC,EAAE,OAAO,CAAC;IACnB;;OAEG;IACH,KAAK,CAAC,EAAE,MAAM,CAAC;IACf;;OAEG;IACH,OAAO,CAAC,EAAE,OAAO,GAAG,UAAU,GAAG,OAAO,CAAC;CAC1C,CAAC;AAEF,eAAO,MAAM,UAAU;uGAUpB,eAAe;;CA4CjB,CAAC"}
|
|
@@ -0,0 +1,39 @@
|
|
|
1
|
+
import type { ComponentPropsWithoutRef } from 'react';
|
|
2
|
+
export type WistiaLogoProps = Omit<ComponentPropsWithoutRef<'svg'>, 'href'> & {
|
|
3
|
+
/**
|
|
4
|
+
* An optional accessible description for the logo
|
|
5
|
+
*/
|
|
6
|
+
description?: string;
|
|
7
|
+
/**
|
|
8
|
+
* Height, in pixels, of the logo
|
|
9
|
+
*/
|
|
10
|
+
height?: number;
|
|
11
|
+
/**
|
|
12
|
+
* @ignore
|
|
13
|
+
* Change the color when hovering over the logo
|
|
14
|
+
*/
|
|
15
|
+
hoverColor?: string;
|
|
16
|
+
/**
|
|
17
|
+
* Display just the icon portion of the logo (ie. hide `Wistia` text)
|
|
18
|
+
* note: there is no analogue to this because by brand guidelines, the
|
|
19
|
+
* `Wistia` text must not be displayed without the "flags" iconography
|
|
20
|
+
*/
|
|
21
|
+
iconOnly?: boolean;
|
|
22
|
+
/**
|
|
23
|
+
* If provided, will wrap the logo in a link
|
|
24
|
+
*/
|
|
25
|
+
href?: string;
|
|
26
|
+
/**
|
|
27
|
+
* An accessible title for the logo (defaults to "Wistia Logo")
|
|
28
|
+
*/
|
|
29
|
+
title?: string;
|
|
30
|
+
/**
|
|
31
|
+
* Style of the logo
|
|
32
|
+
*/
|
|
33
|
+
variant?: 'dark' | 'light' | 'standard';
|
|
34
|
+
};
|
|
35
|
+
export declare const WistiaLogoNew: {
|
|
36
|
+
({ description, height, hoverColor, href, iconOnly, title, variant, ...otherProps }: WistiaLogoProps): import("react/jsx-runtime").JSX.Element;
|
|
37
|
+
displayName: string;
|
|
38
|
+
};
|
|
39
|
+
//# sourceMappingURL=WistiaLogoNew.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"WistiaLogoNew.d.ts","sourceRoot":"","sources":["../../../src/components/WistiaLogoNew/WistiaLogoNew.tsx"],"names":[],"mappings":"AACA,OAAO,KAAK,EAAE,wBAAwB,EAAE,MAAM,OAAO,CAAC;AA8DtD,MAAM,MAAM,eAAe,GAAG,IAAI,CAAC,wBAAwB,CAAC,KAAK,CAAC,EAAE,MAAM,CAAC,GAAG;IAC5E;;OAEG;IACH,WAAW,CAAC,EAAE,MAAM,CAAC;IACrB;;OAEG;IACH,MAAM,CAAC,EAAE,MAAM,CAAC;IAChB;;;OAGG;IACH,UAAU,CAAC,EAAE,MAAM,CAAC;IACpB;;;;OAIG;IACH,QAAQ,CAAC,EAAE,OAAO,CAAC;IACnB;;OAEG;IACH,IAAI,CAAC,EAAE,MAAM,CAAC;IACd;;OAEG;IACH,KAAK,CAAC,EAAE,MAAM,CAAC;IACf;;OAEG;IACH,OAAO,CAAC,EAAE,MAAM,GAAG,OAAO,GAAG,UAAU,CAAC;CACzC,CAAC;AAEF,eAAO,MAAM,aAAa;yFASvB,eAAe;;CAyCjB,CAAC"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../src/components/WistiaLogoNew/index.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,aAAa,EAAE,MAAM,iBAAiB,CAAC"}
|