Skip to content

Commit

Permalink
feat(file-viewer): publicly release as a beta
Browse files Browse the repository at this point in the history
  • Loading branch information
Kiarokh authored and adrianschmidt committed Dec 20, 2024
1 parent 597d40a commit 9880c0f
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 1 deletion.
4 changes: 4 additions & 0 deletions etc/lime-elements.api.md
Original file line number Diff line number Diff line change
Expand Up @@ -386,6 +386,7 @@ export namespace Components {
"disabled": boolean;
"multiple": boolean;
}
// @beta
export interface LimelFileViewer {
"actions": ListItem[];
"allowDownload"?: boolean;
Expand Down Expand Up @@ -1041,6 +1042,8 @@ namespace JSX_2 {
"limel-file-dropzone": LimelFileDropzone;
// (undocumented)
"limel-file-input": LimelFileInput;
// Warning: (ae-incompatible-release-tags) The symbol ""limel-file-viewer"" is marked as @public, but its signature references "JSX_2" which is marked as @beta
//
// (undocumented)
"limel-file-viewer": LimelFileViewer;
// (undocumented)
Expand Down Expand Up @@ -1398,6 +1401,7 @@ namespace JSX_2 {
"multiple"?: boolean;
"onFilesSelected"?: (event: LimelFileInputCustomEvent<FileInfo[]>) => void;
}
// @beta
interface LimelFileViewer {
"actions"?: ListItem[];
"allowDownload"?: boolean;
Expand Down
3 changes: 2 additions & 1 deletion src/components/file-viewer/file-viewer.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,8 @@ import { LimelMenuCustomEvent } from '../../components';
* @exampleComponent limel-example-file-viewer-inbuilt-actions
* @exampleComponent limel-example-file-viewer-custom-actions
* @exampleComponent limel-example-file-viewer-with-picker
* @private
*
* @beta
*/

@Component({
Expand Down

0 comments on commit 9880c0f

Please sign in to comment.