sage-nexus-ui 1.2.5 → 1.2.6
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 +6 -0
- package/dist/components/LogoOptions/LogoOption11.d.ts +6 -0
- package/dist/components/LogoOptions/LogoOption12.d.ts +6 -0
- package/dist/components/LogoOptions/LogoOption2.d.ts +1 -0
- package/dist/components/LogoOptions/LogoOption3.d.ts +1 -1
- package/dist/components/LogoOptions/LogoOption4.d.ts +1 -1
- package/dist/components/LogoOptions/LogoOption5.d.ts +1 -1
- package/dist/components/LogoOptions/LogoOption6.d.ts +1 -1
- package/dist/components/LogoOptions/LogoOption7.d.ts +1 -1
- package/dist/components/LogoOptions/LogoOption8.d.ts +0 -1
- package/dist/components/LogoOptions/LogoOption9.d.ts +6 -0
- package/dist/components/LogoOptions/index.d.ts +16 -0
- package/dist/index.d.ts +12 -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 3 — Sage
|
|
4
|
+
/** Option 3 — Sage Headline Bold, nexus lower-case, shimmer on x glyph */
|
|
5
5
|
export declare const LogoOption3: ({ 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 4 — Sage
|
|
4
|
+
/** Option 4 — Sage Text Medium font, NEXUS all-caps, shimmer on X glyph */
|
|
5
5
|
export declare const LogoOption4: ({ 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 5 — Sage
|
|
4
|
+
/** Option 5 — Sage UI Medium weight, NEXUS all-caps, shimmer on X glyph */
|
|
5
5
|
export declare const LogoOption5: ({ 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 6 — Sage
|
|
4
|
+
/** Option 6 — Sage UI Medium weight, NEXUS all-caps, shimmer on node icon */
|
|
5
5
|
export declare const LogoOption6: ({ 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 7 —
|
|
4
|
+
/** Option 7 — Sage UI Medium weight, NEXUS all-caps, shimmer on whole word */
|
|
5
5
|
export declare const LogoOption7: ({ size }: LogoProps) => import("react/jsx-runtime").JSX.Element;
|
|
6
6
|
export {};
|
|
@@ -7,6 +7,10 @@ export * from "./LogoOption5";
|
|
|
7
7
|
export * from "./LogoOption6";
|
|
8
8
|
export * from "./LogoOption7";
|
|
9
9
|
export * from "./LogoOption8";
|
|
10
|
+
export * from "./LogoOption9";
|
|
11
|
+
export * from "./LogoOption10";
|
|
12
|
+
export * from "./LogoOption11";
|
|
13
|
+
export * from "./LogoOption12";
|
|
10
14
|
export declare const LogoOptions: {
|
|
11
15
|
LogoOptionBase: ({ size, fontFamily, fontWeight, text, letterSpacing, nodeShimmerMode, baselineOffset, ariaLabel, }: import("./LogoOptionBase").LogoOptionBaseProps) => import("react/jsx-runtime").JSX.Element;
|
|
12
16
|
LogoOption1: ({ size }: {
|
|
@@ -33,5 +37,17 @@ export declare const LogoOptions: {
|
|
|
33
37
|
LogoOption8: ({ size }: {
|
|
34
38
|
size?: "sm" | "md" | "lg";
|
|
35
39
|
}) => import("react/jsx-runtime").JSX.Element;
|
|
40
|
+
LogoOption9: ({ size }: {
|
|
41
|
+
size?: "sm" | "md" | "lg";
|
|
42
|
+
}) => import("react/jsx-runtime").JSX.Element;
|
|
43
|
+
LogoOption10: ({ size }: {
|
|
44
|
+
size?: "sm" | "md" | "lg";
|
|
45
|
+
}) => import("react/jsx-runtime").JSX.Element;
|
|
46
|
+
LogoOption11: ({ size }: {
|
|
47
|
+
size?: "sm" | "md" | "lg";
|
|
48
|
+
}) => import("react/jsx-runtime").JSX.Element;
|
|
49
|
+
LogoOption12: ({ size }: {
|
|
50
|
+
size?: "sm" | "md" | "lg";
|
|
51
|
+
}) => import("react/jsx-runtime").JSX.Element;
|
|
36
52
|
};
|
|
37
53
|
export default LogoOptions;
|
package/dist/index.d.ts
CHANGED
|
@@ -229,6 +229,18 @@ declare const LogoOptions: {
|
|
|
229
229
|
LogoOption8: ({ size }: {
|
|
230
230
|
size?: "sm" | "md" | "lg";
|
|
231
231
|
}) => react_jsx_runtime.JSX.Element;
|
|
232
|
+
LogoOption9: ({ size }: {
|
|
233
|
+
size?: "sm" | "md" | "lg";
|
|
234
|
+
}) => react_jsx_runtime.JSX.Element;
|
|
235
|
+
LogoOption10: ({ size }: {
|
|
236
|
+
size?: "sm" | "md" | "lg";
|
|
237
|
+
}) => react_jsx_runtime.JSX.Element;
|
|
238
|
+
LogoOption11: ({ size }: {
|
|
239
|
+
size?: "sm" | "md" | "lg";
|
|
240
|
+
}) => react_jsx_runtime.JSX.Element;
|
|
241
|
+
LogoOption12: ({ size }: {
|
|
242
|
+
size?: "sm" | "md" | "lg";
|
|
243
|
+
}) => react_jsx_runtime.JSX.Element;
|
|
232
244
|
};
|
|
233
245
|
|
|
234
246
|
interface NexusHomeProps {
|