@ws-ui/shared 0.3.1 → 0.3.3

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.
@@ -92,6 +92,10 @@ export declare enum FileFolderType {
92
92
  * Represent the roles
93
93
  */
94
94
  ROLES = "roles",
95
+ /**
96
+ * Represent the http handler
97
+ */
98
+ HTTP_HANDLERS = "http-handlers",
95
99
  /**
96
100
  * Represent the data models file
97
101
  */
@@ -111,7 +115,7 @@ export declare enum FileFolderType {
111
115
  /**
112
116
  * Folder child with content. It represents files and excludes folders
113
117
  */
114
- 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;
118
+ 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 | FileFolderType.HTTP_HANDLERS;
115
119
  /**
116
120
  * Designer request verb enumeration
117
121
  */
@@ -4,6 +4,6 @@ export interface ICodeEditorConfig {
4
4
  }
5
5
  export type TEditorConfig = Partial<ICodeEditorConfig>;
6
6
  export interface IEditor {
7
- key: 'editors:roles' | 'editors:webforms' | 'editors:code' | 'editors:code:method' | 'editors:unknown' | 'editors:debugger' | 'editors:img' | 'editors:model' | 'editors:settings' | 'editors:reports';
7
+ key: 'editors:roles' | 'editors:webforms' | 'editors:code' | 'editors:code:method' | 'editors:unknown' | 'editors:debugger' | 'editors:img' | 'editors:model' | 'editors:settings' | 'editors:reports' | 'editors:http-handlers';
8
8
  config?: TEditorConfig;
9
9
  }
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@ws-ui/shared",
3
3
  "private": false,
4
- "version": "0.3.1",
4
+ "version": "0.3.3",
5
5
  "type": "module",
6
6
  "main": "./dist/index.cjs.js",
7
7
  "module": "./dist/index.es.js",
@@ -30,7 +30,7 @@
30
30
  "@popperjs/core": "^2.9.2",
31
31
  "@radix-ui/react-popover": "^0.1.6",
32
32
  "@ws-ui/craftjs-core": "^0.2.13",
33
- "@ws-ui/icons": "^0.2.1",
33
+ "@ws-ui/icons": "^0.2.2",
34
34
  "classnames": "^2.3.1",
35
35
  "lodash": "^4.17.21",
36
36
  "markdown-to-jsx": "^7.1.3",