@mdxui/named 8.0.0 → 8.2.0
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/index.js +28 -19
- package/dist/components/index.js.map +1 -1
- package/dist/index.js +28 -19
- package/dist/index.js.map +1 -1
- package/dist/styles.css +410 -222
- package/dist/view/index.d.ts +1 -1
- package/dist/view/index.js +631 -22
- package/dist/view/index.js.map +1 -1
- package/package.json +1 -1
package/dist/view/index.d.ts
CHANGED
|
@@ -106,7 +106,7 @@ type NamedAgentLandingContent = {
|
|
|
106
106
|
cta: NamedAgentCta;
|
|
107
107
|
};
|
|
108
108
|
|
|
109
|
-
type NamedAgentTemplate = 'studio' | 'executive';
|
|
109
|
+
type NamedAgentTemplate = 'studio' | 'executive' | 'gallery';
|
|
110
110
|
type NamedAgentViewProps = DialectViewProps<NamedAgentLandingContent> & {
|
|
111
111
|
/** Design language for the page. Defaults to the named-agents baseline. */
|
|
112
112
|
template?: NamedAgentTemplate;
|