@blocklet/pages-kit 0.2.310 → 0.2.311
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/lib/cjs/builtin/async/ai-runtime/index.js +2 -0
- package/lib/cjs/builtin/async/ai-runtime/runtime-components/ChatOutput/MessageMetadataRenderer.js +8 -5
- package/lib/cjs/builtin/async/ai-runtime/runtime-components/V0/Input.js +152 -0
- package/lib/cjs/builtin/async/ai-runtime/runtime-components/V0/Output.js +79 -0
- package/lib/cjs/builtin/async/ai-runtime/runtime-components/V0/Page.js +147 -0
- package/lib/cjs/builtin/async/ai-runtime/runtime-components/V0/index.js +12 -0
- package/lib/cjs/builtin/mui/material.js +3 -2
- package/lib/cjs/tsconfig.tsbuildinfo +1 -0
- package/lib/cjs/utils/inject-global-components-dump-json.js +1167 -0
- package/lib/esm/builtin/async/ai-runtime/index.js +2 -0
- package/lib/esm/builtin/async/ai-runtime/runtime-components/ChatOutput/MessageMetadataRenderer.js +8 -5
- package/lib/esm/builtin/async/ai-runtime/runtime-components/V0/Input.js +146 -0
- package/lib/esm/builtin/async/ai-runtime/runtime-components/V0/Output.js +73 -0
- package/lib/esm/builtin/async/ai-runtime/runtime-components/V0/Page.js +142 -0
- package/lib/esm/builtin/async/ai-runtime/runtime-components/V0/index.js +3 -0
- package/lib/esm/builtin/mui/material.js +1 -1
- package/lib/esm/tsconfig.tsbuildinfo +1 -0
- package/lib/esm/utils/inject-global-components-dump-json.js +1165 -0
- package/lib/types/builtin/async/ai-runtime/index.d.ts +1 -0
- package/lib/types/builtin/async/ai-runtime/runtime-components/V0/Input.d.ts +7 -0
- package/lib/types/builtin/async/ai-runtime/runtime-components/V0/Output.d.ts +1 -0
- package/lib/types/builtin/async/ai-runtime/runtime-components/V0/Page.d.ts +5 -0
- package/lib/types/builtin/async/ai-runtime/runtime-components/V0/index.d.ts +3 -0
- package/lib/types/builtin/mui/material.d.ts +1 -1
- package/lib/types/tsconfig.tsbuildinfo +1 -0
- package/lib/types/utils/inject-global-components-dump-json.d.ts +1 -0
- package/package.json +9 -5
|
@@ -14,3 +14,4 @@ export { default as AutoForm } from './runtime-components/AutoForm';
|
|
|
14
14
|
export { default as SimpleOutput } from './runtime-components/SimpleOutput';
|
|
15
15
|
export { default as ChatOutput } from './runtime-components/ChatOutput';
|
|
16
16
|
export { default as PhotoGalleryItem } from './runtime-components/PhotoGalleryItem';
|
|
17
|
+
export * from './runtime-components/V0';
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
export default function AutoForm({ submitText, inlineLabel, autoFillLastForm, submitInQuestionField, chatMode, }: {
|
|
2
|
+
submitText?: string;
|
|
3
|
+
inlineLabel?: boolean;
|
|
4
|
+
autoFillLastForm?: boolean;
|
|
5
|
+
submitInQuestionField?: boolean;
|
|
6
|
+
chatMode?: boolean;
|
|
7
|
+
}): import("react/jsx-runtime").JSX.Element;
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export default function V0Output(): import("react/jsx-runtime").JSX.Element;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
export { Alert, AlertTitle, Autocomplete, Avatar, Box, Button, ButtonGroup, Card, CardActionArea, CardActions, CardContent, CardHeader, CardMedia, CircularProgress, ClickAwayListener, Collapse, Container, Dialog, DialogActions, DialogContent, DialogTitle, Divider, Fade, GlobalStyles, Grid, Grow, LinearProgress, Link, List, ListItem, ListItemAvatar, ListItemButton, ListItemIcon, ListItemSecondaryAction, ListSubheader, Menu, MenuItem, MenuList, Paper, Popper, Slide, Stack, Switch, TextField, ThemeProvider, Tooltip, Typography, Zoom, alpha, createTheme, styled, useMediaQuery, useTheme, } from '@mui/material';
|
|
1
|
+
export { Alert, AlertTitle, Autocomplete, Avatar, Box, Button, IconButton, ButtonGroup, Card, CardActionArea, CardActions, CardContent, CardHeader, CardMedia, CircularProgress, ClickAwayListener, Collapse, Container, Dialog, DialogActions, DialogContent, DialogTitle, Divider, Fade, GlobalStyles, Grid, Grow, LinearProgress, Link, List, ListItem, ListItemAvatar, ListItemButton, ListItemIcon, ListItemSecondaryAction, ListSubheader, Menu, MenuItem, MenuList, Paper, Popper, Slide, Stack, Switch, TextField, ThemeProvider, Tooltip, Typography, Zoom, alpha, createTheme, styled, useMediaQuery, useTheme, } from '@mui/material';
|