@budibase/types 3.18.1 → 3.18.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.
- package/dist/api/web/app/application.d.ts +9 -9
- package/dist/api/web/app/rows/index.d.ts +4 -4
- package/dist/api/web/app/static.d.ts +3 -3
- package/dist/api/web/global/auditLogs.d.ts +3 -3
- package/dist/api/web/system/environment.d.ts +1 -0
- package/dist/documents/app/component.d.ts +8 -5
- package/dist/documents/app/index.d.ts +2 -2
- package/dist/documents/app/{app.d.ts → workspace.d.ts} +11 -11
- package/dist/documents/app/workspaceApp.d.ts +1 -1
- package/dist/index.js +1 -1
- package/dist/index.js.map +2 -2
- package/dist/sdk/featureFlag.d.ts +0 -1
- package/dist/ui/bindings/binding.d.ts +1 -0
- package/dist/ui/components/codeEditor.d.ts +6 -1
- package/dist/ui/stores/grid/condition.d.ts +6 -1
- package/package.json +3 -2
|
@@ -2,7 +2,6 @@ export declare enum FeatureFlag {
|
|
|
2
2
|
DEBUG_UI = "DEBUG_UI",
|
|
3
3
|
USE_ZOD_VALIDATOR = "USE_ZOD_VALIDATOR",
|
|
4
4
|
AI_AGENTS = "AI_AGENTS",
|
|
5
|
-
WORKSPACES = "WORKSPACES",
|
|
6
5
|
DIRECT_LOGIN_TO_ACCOUNT_PORTAL = "DIRECT_LOGIN_TO_ACCOUNT_PORTAL"
|
|
7
6
|
}
|
|
8
7
|
export declare const FeatureFlagDefaults: Record<FeatureFlag, boolean>;
|
|
@@ -11,13 +11,18 @@ interface HBSEditorMode {
|
|
|
11
11
|
interface HTMLEditorMode {
|
|
12
12
|
name: "text/html";
|
|
13
13
|
}
|
|
14
|
-
|
|
14
|
+
interface PureHTMLEditorMode {
|
|
15
|
+
name: "html";
|
|
16
|
+
}
|
|
17
|
+
export type EditorMode = JSEditorMode | HBSEditorMode | HTMLEditorMode | PureHTMLEditorMode;
|
|
15
18
|
type EditorModeMapBase = (JSEditorMode & {
|
|
16
19
|
key: "JS";
|
|
17
20
|
}) | (HBSEditorMode & {
|
|
18
21
|
key: "Handlebars";
|
|
19
22
|
}) | (HTMLEditorMode & {
|
|
20
23
|
key: "Text";
|
|
24
|
+
}) | (PureHTMLEditorMode & {
|
|
25
|
+
key: "HTML";
|
|
21
26
|
});
|
|
22
27
|
export type EditorModesMap = {
|
|
23
28
|
[M in EditorModeMapBase as M["key"]]: Omit<M, "key">;
|
|
@@ -2,9 +2,14 @@ import { FieldType, SearchFilter } from "@budibase/types";
|
|
|
2
2
|
export interface UICondition {
|
|
3
3
|
column: string;
|
|
4
4
|
type: FieldType;
|
|
5
|
-
referenceValue:
|
|
5
|
+
referenceValue: unknown;
|
|
6
6
|
operator: SearchFilter["operator"];
|
|
7
7
|
metadataKey: string;
|
|
8
8
|
metadataValue: string;
|
|
9
9
|
target: string;
|
|
10
|
+
buttonIndex?: number;
|
|
11
|
+
newValue?: unknown;
|
|
12
|
+
action?: string;
|
|
13
|
+
setting?: string;
|
|
14
|
+
settingValue?: unknown;
|
|
10
15
|
}
|
package/package.json
CHANGED
|
@@ -1,9 +1,10 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@budibase/types",
|
|
3
|
-
"version": "3.18.
|
|
3
|
+
"version": "3.18.3",
|
|
4
4
|
"description": "Budibase types",
|
|
5
5
|
"main": "dist/index.js",
|
|
6
6
|
"types": "dist/index.d.ts",
|
|
7
|
+
"sideEffects": false,
|
|
7
8
|
"author": "Budibase",
|
|
8
9
|
"license": "GPL-3.0",
|
|
9
10
|
"scripts": {
|
|
@@ -25,5 +26,5 @@
|
|
|
25
26
|
"dependencies": {
|
|
26
27
|
"scim-patch": "^0.8.1"
|
|
27
28
|
},
|
|
28
|
-
"gitHead": "
|
|
29
|
+
"gitHead": "572306dc0decede5567d7b3644f0afa890797638"
|
|
29
30
|
}
|