@dignite-ng/expand.cms 3.0.0-rc.50 → 3.0.1

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.
@@ -77,8 +77,8 @@ export declare class CreateOrEditEntriesComponent {
77
77
  getEntryList(): Promise<unknown>;
78
78
  /**对数组按照父子关系进行分组 */
79
79
  groupByParentId(arr: any, id: string, layer: any): any[];
80
- /**标题转化别名 */
81
- setTitleToSlugBlur(event: any): void;
80
+ /**别名转化 */
81
+ slugChange(event: any): void;
82
82
  /**获取条目版本列表 */
83
83
  getAllVersionsList(): Promise<unknown>;
84
84
  /**激活 */
@@ -3,7 +3,6 @@ export declare class CreateOrUpdateEntryInputBase {
3
3
  /**条目id */
4
4
  entryTypeId: any;
5
5
  /**标题 */
6
- title: any;
7
6
  /**别名 */
8
7
  slug: any;
9
8
  /**语言 */
@@ -8,7 +8,6 @@ export interface CreateEntryInput extends CreateOrUpdateEntryInputBase {
8
8
  export interface CreateOrUpdateEntryInputBase extends CustomizableObject {
9
9
  entryTypeId: string;
10
10
  culture: string;
11
- title: string;
12
11
  slug: string;
13
12
  parentId?: string;
14
13
  draft: boolean;
@@ -24,7 +23,6 @@ export interface EntryDto extends ExtensibleAuditedEntityDto<string> {
24
23
  sectionId?: string;
25
24
  entryTypeId?: string;
26
25
  culture?: string;
27
- title?: string;
28
26
  slug?: string;
29
27
  publishTime?: string;
30
28
  status: EntryStatus;
@@ -42,7 +40,6 @@ export interface GetEntriesInput extends PagedAndSortedResultRequestDto {
42
40
  entryTypeId?: string;
43
41
  startPublishDate?: string;
44
42
  expiryPublishDate?: string;
45
- filter?: string;
46
43
  status?: EntryStatus;
47
44
  creatorId?: string;
48
45
  queryingByFieldsJson?: string;
@@ -1,4 +1,4 @@
1
- import type { FieldDto1 } from '../../fields/models';
1
+ import type { FieldDto as FieldDto1 } from '../../fields/models';
2
2
  import type { EntityDto, PagedAndSortedResultRequestDto } from '@abp/ng.core';
3
3
  export interface CreateFieldInput extends CreateOrUpdateFieldInputBase {
4
4
  }
@@ -1,5 +1,5 @@
1
1
  import type { EntityDto } from '@abp/ng.core';
2
- export interface FieldDto1 extends EntityDto<string> {
2
+ export interface FieldDto extends EntityDto<string> {
3
3
  name?: string;
4
4
  displayName?: string;
5
5
  description?: string;
@@ -1,7 +1,7 @@
1
- import type { FieldDto1 } from '../fields/models';
1
+ import type { FieldDto } from '../fields/models';
2
2
  export interface EntryFieldDto {
3
3
  fieldId?: string;
4
- field: FieldDto1;
4
+ field: FieldDto;
5
5
  displayName?: string;
6
6
  required: boolean;
7
7
  showInList: boolean;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@dignite-ng/expand.cms",
3
- "version": "3.0.0-rc.50",
3
+ "version": "3.0.1",
4
4
  "homepage": "https://abp.io",
5
5
  "repository": {
6
6
  "type": "git",