sage-nexus-ui 1.2.6 → 1.2.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.
- package/dist/components/LogoOptions/LogoOption10.d.ts +1 -1
- package/dist/components/LogoOptions/LogoOption11.d.ts +0 -1
- package/dist/components/LogoOptions/LogoOption12.d.ts +1 -1
- package/dist/components/LogoOptions/LogoOption13.d.ts +6 -0
- package/dist/components/LogoOptions/LogoOption14.d.ts +6 -0
- package/dist/components/LogoOptions/LogoOption15.d.ts +6 -0
- package/dist/components/LogoOptions/LogoOption8.d.ts +1 -0
- package/dist/components/LogoOptions/LogoOption9.d.ts +1 -1
- package/dist/components/LogoOptions/index.d.ts +12 -0
- package/dist/index.d.ts +9 -0
- package/dist/index.mjs +1 -1
- package/package.json +1 -1
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
type LogoProps = {
|
|
2
2
|
size?: "sm" | "md" | "lg";
|
|
3
3
|
};
|
|
4
|
-
/** Option 10 —
|
|
4
|
+
/** Option 10 — Sage UI Light, NEXUS all-caps, shimmer on whole word */
|
|
5
5
|
export declare const LogoOption10: ({ size }: LogoProps) => import("react/jsx-runtime").JSX.Element;
|
|
6
6
|
export {};
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
type LogoProps = {
|
|
2
2
|
size?: "sm" | "md" | "lg";
|
|
3
3
|
};
|
|
4
|
-
/** Option 12 — Arial
|
|
4
|
+
/** Option 12 — Arial Bold, NEXUS all-caps, shimmer on node icon */
|
|
5
5
|
export declare const LogoOption12: ({ size }: LogoProps) => import("react/jsx-runtime").JSX.Element;
|
|
6
6
|
export {};
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
type LogoProps = {
|
|
2
2
|
size?: "sm" | "md" | "lg";
|
|
3
3
|
};
|
|
4
|
-
/** Option 9 —
|
|
4
|
+
/** Option 9 — Sage UI Light, NEXUS all-caps, shimmer on node icon */
|
|
5
5
|
export declare const LogoOption9: ({ size }: LogoProps) => import("react/jsx-runtime").JSX.Element;
|
|
6
6
|
export {};
|
|
@@ -11,6 +11,9 @@ export * from "./LogoOption9";
|
|
|
11
11
|
export * from "./LogoOption10";
|
|
12
12
|
export * from "./LogoOption11";
|
|
13
13
|
export * from "./LogoOption12";
|
|
14
|
+
export * from "./LogoOption13";
|
|
15
|
+
export * from "./LogoOption14";
|
|
16
|
+
export * from "./LogoOption15";
|
|
14
17
|
export declare const LogoOptions: {
|
|
15
18
|
LogoOptionBase: ({ size, fontFamily, fontWeight, text, letterSpacing, nodeShimmerMode, baselineOffset, ariaLabel, }: import("./LogoOptionBase").LogoOptionBaseProps) => import("react/jsx-runtime").JSX.Element;
|
|
16
19
|
LogoOption1: ({ size }: {
|
|
@@ -49,5 +52,14 @@ export declare const LogoOptions: {
|
|
|
49
52
|
LogoOption12: ({ size }: {
|
|
50
53
|
size?: "sm" | "md" | "lg";
|
|
51
54
|
}) => import("react/jsx-runtime").JSX.Element;
|
|
55
|
+
LogoOption13: ({ size }: {
|
|
56
|
+
size?: "sm" | "md" | "lg";
|
|
57
|
+
}) => import("react/jsx-runtime").JSX.Element;
|
|
58
|
+
LogoOption14: ({ size }: {
|
|
59
|
+
size?: "sm" | "md" | "lg";
|
|
60
|
+
}) => import("react/jsx-runtime").JSX.Element;
|
|
61
|
+
LogoOption15: ({ size }: {
|
|
62
|
+
size?: "sm" | "md" | "lg";
|
|
63
|
+
}) => import("react/jsx-runtime").JSX.Element;
|
|
52
64
|
};
|
|
53
65
|
export default LogoOptions;
|
package/dist/index.d.ts
CHANGED
|
@@ -241,6 +241,15 @@ declare const LogoOptions: {
|
|
|
241
241
|
LogoOption12: ({ size }: {
|
|
242
242
|
size?: "sm" | "md" | "lg";
|
|
243
243
|
}) => react_jsx_runtime.JSX.Element;
|
|
244
|
+
LogoOption13: ({ size }: {
|
|
245
|
+
size?: "sm" | "md" | "lg";
|
|
246
|
+
}) => react_jsx_runtime.JSX.Element;
|
|
247
|
+
LogoOption14: ({ size }: {
|
|
248
|
+
size?: "sm" | "md" | "lg";
|
|
249
|
+
}) => react_jsx_runtime.JSX.Element;
|
|
250
|
+
LogoOption15: ({ size }: {
|
|
251
|
+
size?: "sm" | "md" | "lg";
|
|
252
|
+
}) => react_jsx_runtime.JSX.Element;
|
|
244
253
|
};
|
|
245
254
|
|
|
246
255
|
interface NexusHomeProps {
|