@nocobase/client 1.6.0-beta.14 → 1.6.0-beta.16
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/es/application/Application.d.ts +3 -1
- package/es/collection-manager/interfaces/properties/index.d.ts +3 -0
- package/es/collection-manager/interfaces/time.d.ts +0 -11
- package/es/index.mjs +819 -708
- package/es/modules/fields/component/TimePicker/timePickerComponentFieldSettings.d.ts +10 -0
- package/es/schema-initializer/items/DataBlockInitializer.d.ts +1 -0
- package/es/schema-settings/SchemaSettingsTimeFormat.d.ts +13 -0
- package/lib/index.js +122 -108
- package/package.json +5 -5
|
@@ -15,7 +15,7 @@ import { PluginSettingOptions, PluginSettingsManager } from './PluginSettingsMan
|
|
|
15
15
|
import { ComponentTypeAndString, RouterManager, RouterOptions } from './RouterManager';
|
|
16
16
|
import { WebSocketClient, WebSocketClientOptions } from './WebSocketClient';
|
|
17
17
|
import { SchemaInitializer, SchemaInitializerManager } from './schema-initializer';
|
|
18
|
-
import { SchemaSettings,
|
|
18
|
+
import { SchemaSettings, SchemaSettingsItemType, SchemaSettingsManager } from './schema-settings';
|
|
19
19
|
import { CollectionFieldInterfaceComponentOption } from '../data-source/collection-field-interface/CollectionFieldInterface';
|
|
20
20
|
import { DataSourceManager, type DataSourceManagerOptions } from '../data-source/data-source/DataSourceManager';
|
|
21
21
|
import type { CollectionFieldInterfaceFactory } from '../data-source';
|
|
@@ -73,6 +73,7 @@ export declare class Application {
|
|
|
73
73
|
schemaSettingsManager: SchemaSettingsManager;
|
|
74
74
|
dataSourceManager: DataSourceManager;
|
|
75
75
|
name: string;
|
|
76
|
+
favicon: string;
|
|
76
77
|
globalVars: Record<string, any>;
|
|
77
78
|
jsonLogic: JsonLogic;
|
|
78
79
|
loading: boolean;
|
|
@@ -84,6 +85,7 @@ export declare class Application {
|
|
|
84
85
|
get pm(): PluginManager;
|
|
85
86
|
get disableAcl(): boolean;
|
|
86
87
|
get isWsAuthorized(): boolean;
|
|
88
|
+
updateFavicon(favicon?: string): void;
|
|
87
89
|
setWsAuthorized(authorized: boolean): void;
|
|
88
90
|
constructor(options?: ApplicationOptions);
|
|
89
91
|
private initListeners;
|
|
@@ -86,6 +86,9 @@ export declare const reverseFieldProperties: Record<string, ISchema>;
|
|
|
86
86
|
export declare const dateTimeProps: {
|
|
87
87
|
[key: string]: ISchema;
|
|
88
88
|
};
|
|
89
|
+
export declare const timeProps: {
|
|
90
|
+
[key: string]: ISchema;
|
|
91
|
+
};
|
|
89
92
|
export declare const dataSource: ISchema;
|
|
90
93
|
export declare const defaultProps: {
|
|
91
94
|
'uiSchema.title': {
|
|
@@ -24,17 +24,6 @@ export declare class TimeFieldInterface extends CollectionFieldInterface {
|
|
|
24
24
|
availableTypes: string[];
|
|
25
25
|
hasDefaultValue: boolean;
|
|
26
26
|
properties: {
|
|
27
|
-
'uiSchema.x-component-props.format': {
|
|
28
|
-
type: string;
|
|
29
|
-
title: string;
|
|
30
|
-
'x-component': string;
|
|
31
|
-
'x-decorator': string;
|
|
32
|
-
default: string;
|
|
33
|
-
enum: {
|
|
34
|
-
label: string;
|
|
35
|
-
value: string;
|
|
36
|
-
}[];
|
|
37
|
-
};
|
|
38
27
|
'uiSchema.title': {
|
|
39
28
|
type: string;
|
|
40
29
|
title: string;
|