Skip to content

Commit

Permalink
#24362 refactor dot-file-upload component, add Monaco Editor using If…
Browse files Browse the repository at this point in the history
…rame and integrate with dojo theme
  • Loading branch information
zulqarnainvd committed Mar 31, 2023
1 parent fd52e4e commit b2de5c7
Show file tree
Hide file tree
Showing 127 changed files with 38,481 additions and 1,494 deletions.
1 change: 1 addition & 0 deletions core-web/libs/dotcms-models/src/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -53,4 +53,5 @@ export * from './lib/dot-field-variable.model';
export * from './lib/dot-field-variable.model';
export * from './lib/dot-experiments-constants';
export * from './lib/dot-experiments.model';
export * from './lib/dot-file-upload.model';
export * from './lib/shared-models';
12 changes: 12 additions & 0 deletions core-web/libs/dotcms-models/src/lib/dot-file-upload.model.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
import { DotCMSTempFile } from './dot-temp-file.model';

export enum DotFileCurrentStatus {
UPLOADFILE = 'UploadFile',
CODEEDITOR = 'CodeEditor',
FILELIST = 'FileList'
}

export interface DotUploadFile {
currentState: DotFileCurrentStatus;
assets: DotCMSTempFile[];
}
Loading

0 comments on commit b2de5c7

Please sign in to comment.