@ws-ui/shared 0.1.12 → 0.1.14
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/index.cjs.js +31 -31
- package/dist/index.cjs.js.map +1 -1
- package/dist/index.es.js +4 -4
- package/dist/index.es.js.map +1 -1
- package/dist/types/api.d.ts +3 -2
- package/package.json +1 -1
package/dist/types/api.d.ts
CHANGED
|
@@ -96,12 +96,13 @@ export declare enum FileFolderType {
|
|
|
96
96
|
*/
|
|
97
97
|
MOBILE = "mobile",
|
|
98
98
|
MOBILEFORM = "mform",
|
|
99
|
-
FILE = "file"
|
|
99
|
+
FILE = "file",
|
|
100
|
+
TEXT = "text"
|
|
100
101
|
}
|
|
101
102
|
/**
|
|
102
103
|
* Folder child with content. It represents files and excludes folders
|
|
103
104
|
*/
|
|
104
|
-
export type FileFolderTypeWithContent = FileFolderType.CLASS | FileFolderType.WEBFORM | FileFolderType.METHOD | FileFolderType.WELCOME | FileFolderType.ROLES | FileFolderType.MODEL | FileFolderType.FILE | FileFolderType.DEBUGGER | FileFolderType.DATA_EXPLORER | FileFolderType.SETTINGS;
|
|
105
|
+
export type FileFolderTypeWithContent = FileFolderType.CLASS | FileFolderType.WEBFORM | FileFolderType.METHOD | FileFolderType.WELCOME | FileFolderType.ROLES | FileFolderType.MODEL | FileFolderType.FILE | FileFolderType.DEBUGGER | FileFolderType.DATA_EXPLORER | FileFolderType.SETTINGS | FileFolderType.TEXT;
|
|
105
106
|
/**
|
|
106
107
|
* Designer request verb enumeration
|
|
107
108
|
*/
|