@overmap-ai/core 1.0.44-tiptap.8 → 1.0.45-batch-bug-fixes.0
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/forms/fields/StringOrTextFields/TextField/TextField.d.ts +1 -1
- package/dist/overmap-core.js +513 -223
- package/dist/overmap-core.js.map +1 -1
- package/dist/overmap-core.umd.cjs +513 -223
- package/dist/overmap-core.umd.cjs.map +1 -1
- package/dist/sdk/sdk.d.ts +2 -1
- package/dist/sdk/services/LicenseService.d.ts +12 -0
- package/dist/sdk/services/MainService.d.ts +2 -1
- package/dist/sdk/services/ProjectService.d.ts +2 -3
- package/dist/sdk/services/index.d.ts +1 -0
- package/dist/store/slices/categorySlice.d.ts +1 -0
- package/dist/store/slices/index.d.ts +1 -0
- package/dist/store/slices/issueSlice.d.ts +21 -23
- package/dist/store/slices/licenseSlice.d.ts +25 -0
- package/dist/store/slices/organizationSlice.d.ts +5 -1
- package/dist/store/slices/projectFileSlice.d.ts +1 -0
- package/dist/store/slices/projectSlice.d.ts +7 -1
- package/dist/store/slices/settingsSlice.d.ts +7 -1
- package/dist/store/slices/workspaceSlice.d.ts +1 -0
- package/dist/store/store.d.ts +4 -1
- package/dist/typings/models/attachments.d.ts +3 -3
- package/dist/typings/models/base.d.ts +4 -0
- package/dist/typings/models/index.d.ts +1 -0
- package/dist/typings/models/license.d.ts +26 -0
- package/dist/typings/models/organizations.d.ts +2 -0
- package/dist/typings/models/projects.d.ts +2 -0
- package/package.json +1 -1
- package/dist/forms/constants.d.ts +0 -9
|
@@ -13,7 +13,7 @@ export declare const emptyTextField: {
|
|
|
13
13
|
};
|
|
14
14
|
export declare class TextField extends StringOrTextField<"text"> {
|
|
15
15
|
static readonly fieldTypeName = "Paragraph";
|
|
16
|
-
static readonly fieldTypeDescription = "Paragraph fields can hold up to
|
|
16
|
+
static readonly fieldTypeDescription = "Paragraph fields can hold up to 10000 characters and can have multiple lines.";
|
|
17
17
|
static Icon: typeof RowsIcon;
|
|
18
18
|
constructor(options: TextFieldOptions);
|
|
19
19
|
serialize(): SerializedTextField;
|