@dignite-ng/expand.cms 0.0.28 → 0.0.29

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.
Files changed (75) hide show
  1. package/config/enums/route-names.d.ts +0 -1
  2. package/config/providers/route.provider.d.ts +3 -2
  3. package/esm2022/config/enums/route-names.mjs +1 -1
  4. package/esm2022/config/providers/route.provider.mjs +36 -13
  5. package/esm2022/lib/cms-routing.module.mjs +7 -7
  6. package/esm2022/lib/cms.module.mjs +13 -6
  7. package/esm2022/lib/components/admin/domains/domains.component.mjs +86 -0
  8. package/esm2022/lib/components/admin/domains/index.mjs +2 -0
  9. package/esm2022/lib/components/admin/entries/create-or-edit-entries.component.mjs +5 -3
  10. package/esm2022/lib/components/admin/entries/entries.component.mjs +67 -52
  11. package/esm2022/lib/components/admin/fields/fields.component.mjs +3 -3
  12. package/esm2022/lib/components/admin/index.mjs +2 -1
  13. package/esm2022/lib/components/admin/sections/entry-types/create-or-edit.component.mjs +1 -3
  14. package/esm2022/lib/components/admin/sections/sections.component.mjs +20 -34
  15. package/esm2022/lib/components/admin/sites/sites.component.mjs +6 -255
  16. package/esm2022/lib/components/dynamic-form/entry/entry-config.component.mjs +22 -23
  17. package/esm2022/lib/components/dynamic-form/table/table-control.component.mjs +11 -3
  18. package/esm2022/lib/constants/styles.mjs +8 -1
  19. package/esm2022/lib/proxy/admin/domains/domain-admin.service.mjs +34 -0
  20. package/esm2022/lib/proxy/admin/domains/index.mjs +3 -0
  21. package/esm2022/lib/proxy/admin/domains/models.mjs +2 -0
  22. package/esm2022/lib/proxy/admin/entries/entry-admin.service.mjs +11 -6
  23. package/esm2022/lib/proxy/admin/entries/models.mjs +1 -1
  24. package/esm2022/lib/proxy/admin/fields/models.mjs +1 -1
  25. package/esm2022/lib/proxy/admin/sections/models.mjs +1 -1
  26. package/esm2022/lib/proxy/admin/sections/section-admin.service.mjs +4 -4
  27. package/esm2022/lib/proxy/admin/settings/index.mjs +2 -0
  28. package/esm2022/lib/proxy/admin/settings/site-settings-admin.service.mjs +33 -0
  29. package/esm2022/lib/proxy/fields/models.mjs +1 -1
  30. package/esm2022/lib/proxy/sections/models.mjs +1 -1
  31. package/esm2022/lib/proxy/settings/models.mjs +2 -0
  32. package/esm2022/lib/toolbar/toolbar-btn-default-action.mjs +16 -16
  33. package/esm2022/lib/toolbar/toolbar-config.mjs +2 -3
  34. package/esm2022/public-api.mjs +2 -1
  35. package/fesm2022/dignite-ng-expand.cms-config.mjs +35 -12
  36. package/fesm2022/dignite-ng-expand.cms-config.mjs.map +1 -1
  37. package/fesm2022/dignite-ng-expand.cms.mjs +317 -441
  38. package/fesm2022/dignite-ng-expand.cms.mjs.map +1 -1
  39. package/lib/cms.module.d.ts +17 -17
  40. package/lib/components/admin/domains/domains.component.d.ts +21 -0
  41. package/lib/components/admin/domains/index.d.ts +1 -0
  42. package/lib/components/admin/entries/create-or-edit-entries.component.d.ts +1 -0
  43. package/lib/components/admin/entries/entries.component.d.ts +9 -8
  44. package/lib/components/admin/index.d.ts +1 -0
  45. package/lib/components/admin/sections/sections.component.d.ts +1 -5
  46. package/lib/components/admin/sites/sites.component.d.ts +1 -68
  47. package/lib/components/dynamic-form/entry/entry-config.component.d.ts +1 -4
  48. package/lib/components/dynamic-form/table/table-control.component.d.ts +4 -1
  49. package/lib/constants/styles.d.ts +1 -1
  50. package/lib/proxy/admin/domains/domain-admin.service.d.ts +13 -0
  51. package/lib/proxy/admin/domains/index.d.ts +2 -0
  52. package/lib/proxy/admin/domains/models.d.ts +7 -0
  53. package/lib/proxy/admin/entries/entry-admin.service.d.ts +2 -1
  54. package/lib/proxy/admin/entries/models.d.ts +7 -12
  55. package/lib/proxy/admin/fields/models.d.ts +2 -2
  56. package/lib/proxy/admin/sections/models.d.ts +2 -9
  57. package/lib/proxy/admin/settings/index.d.ts +1 -0
  58. package/lib/proxy/admin/settings/site-settings-admin.service.d.ts +13 -0
  59. package/lib/proxy/fields/models.d.ts +1 -1
  60. package/lib/proxy/sections/models.d.ts +2 -2
  61. package/lib/proxy/settings/models.d.ts +5 -0
  62. package/lib/toolbar/toolbar-btn-default-action.d.ts +0 -1
  63. package/lib/toolbar/toolbar-config.d.ts +0 -1
  64. package/package.json +1 -1
  65. package/public-api.d.ts +1 -0
  66. package/esm2022/lib/proxy/admin/sites/index.mjs +0 -3
  67. package/esm2022/lib/proxy/admin/sites/models.mjs +0 -2
  68. package/esm2022/lib/proxy/admin/sites/site-admin.service.mjs +0 -51
  69. package/esm2022/lib/proxy/dignite/abp/data/index.mjs +0 -2
  70. package/esm2022/lib/proxy/sites/models.mjs +0 -2
  71. package/lib/proxy/admin/sites/index.d.ts +0 -2
  72. package/lib/proxy/admin/sites/models.d.ts +0 -30
  73. package/lib/proxy/admin/sites/site-admin.service.d.ts +0 -18
  74. package/lib/proxy/dignite/abp/data/index.d.ts +0 -1
  75. package/lib/proxy/sites/models.d.ts +0 -4
@@ -2,22 +2,22 @@ import { NgModuleFactory, ModuleWithProviders } from '@angular/core';
2
2
  import * as i0 from "@angular/core";
3
3
  import * as i1 from "./components/admin/entries/entries.component";
4
4
  import * as i2 from "./components/admin/fields/fields.component";
5
- import * as i3 from "./components/admin/sites/sites.component";
6
- import * as i4 from "./components/admin/sections/sections.component";
7
- import * as i5 from "./components/admin/fields/field-group.component";
8
- import * as i6 from "./components/admin/fields/create-field.component";
9
- import * as i7 from "./components/admin/fields/edit-field.component";
10
- import * as i8 from "./components/admin/fields/create-or-edit-field.component";
11
- import * as i9 from "./components/admin/sections/entry-types/create-or-edit.component";
12
- import * as i10 from "./components/admin/entries/create.component";
13
- import * as i11 from "./components/admin/entries/edit.component";
14
- import * as i12 from "./components/admin/entries/create-or-edit-entries.component";
15
- import * as i13 from "./components/dynamic-form/table/table-config.component";
16
- import * as i14 from "./components/dynamic-form/table/table-control.component";
17
- import * as i15 from "./components/dynamic-form/matrix/matrix-config.component";
18
- import * as i16 from "./components/dynamic-form/matrix/matrix-control.component";
19
- import * as i17 from "./components/dynamic-form/entry/entry-config.component";
20
- import * as i18 from "./components/dynamic-form/entry/entry-control.component";
5
+ import * as i3 from "./components/admin/sections/sections.component";
6
+ import * as i4 from "./components/admin/fields/field-group.component";
7
+ import * as i5 from "./components/admin/fields/create-field.component";
8
+ import * as i6 from "./components/admin/fields/edit-field.component";
9
+ import * as i7 from "./components/admin/fields/create-or-edit-field.component";
10
+ import * as i8 from "./components/admin/sections/entry-types/create-or-edit.component";
11
+ import * as i9 from "./components/admin/entries/create.component";
12
+ import * as i10 from "./components/admin/entries/edit.component";
13
+ import * as i11 from "./components/admin/entries/create-or-edit-entries.component";
14
+ import * as i12 from "./components/dynamic-form/table/table-config.component";
15
+ import * as i13 from "./components/dynamic-form/table/table-control.component";
16
+ import * as i14 from "./components/dynamic-form/matrix/matrix-config.component";
17
+ import * as i15 from "./components/dynamic-form/matrix/matrix-control.component";
18
+ import * as i16 from "./components/dynamic-form/entry/entry-config.component";
19
+ import * as i17 from "./components/dynamic-form/entry/entry-control.component";
20
+ import * as i18 from "./components/admin/domains/domains.component";
21
21
  import * as i19 from "@abp/ng.core";
22
22
  import * as i20 from "@abp/ng.theme.shared";
23
23
  import * as i21 from "./cms-routing.module";
@@ -30,6 +30,6 @@ export declare class CmsModule {
30
30
  static forChild(options?: any): ModuleWithProviders<CmsModule>;
31
31
  static forLazy(options?: any): NgModuleFactory<CmsModule>;
32
32
  static ɵfac: i0.ɵɵFactoryDeclaration<CmsModule, never>;
33
- static ɵmod: i0.ɵɵNgModuleDeclaration<CmsModule, [typeof i1.EntriesComponent, typeof i2.FieldsComponent, typeof i3.SitesComponent, typeof i4.SectionsComponent, typeof i5.FieldGroupComponent, typeof i6.CreateFieldComponent, typeof i7.EditFieldComponent, typeof i8.CreateOrEditFieldComponent, typeof i9.CreateOrEditComponent, typeof i10.CreateComponent, typeof i11.EditComponent, typeof i12.CreateOrEditEntriesComponent, typeof i13.TableConfigComponent, typeof i14.TableControlComponent, typeof i15.MatrixConfigComponent, typeof i16.MatrixControlComponent, typeof i17.EntryConfigComponent, typeof i18.EntryControlComponent], [typeof i19.CoreModule, typeof i20.ThemeSharedModule, typeof i21.CmsRoutingModule, typeof i22.FormsModule, typeof i23.NgbNavModule, typeof i23.NgbAccordionModule, typeof i23.NgbDropdownModule, typeof i24.PageModule, typeof i25.NzSelectModule, typeof i26.DynamicFormModule], [typeof i13.TableConfigComponent, typeof i14.TableControlComponent, typeof i15.MatrixConfigComponent, typeof i16.MatrixControlComponent, typeof i17.EntryConfigComponent, typeof i18.EntryControlComponent]>;
33
+ static ɵmod: i0.ɵɵNgModuleDeclaration<CmsModule, [typeof i1.EntriesComponent, typeof i2.FieldsComponent, typeof i3.SectionsComponent, typeof i4.FieldGroupComponent, typeof i5.CreateFieldComponent, typeof i6.EditFieldComponent, typeof i7.CreateOrEditFieldComponent, typeof i8.CreateOrEditComponent, typeof i9.CreateComponent, typeof i10.EditComponent, typeof i11.CreateOrEditEntriesComponent, typeof i12.TableConfigComponent, typeof i13.TableControlComponent, typeof i14.MatrixConfigComponent, typeof i15.MatrixControlComponent, typeof i16.EntryConfigComponent, typeof i17.EntryControlComponent, typeof i18.DomainsComponent], [typeof i19.CoreModule, typeof i20.ThemeSharedModule, typeof i21.CmsRoutingModule, typeof i22.FormsModule, typeof i23.NgbNavModule, typeof i23.NgbAccordionModule, typeof i23.NgbDropdownModule, typeof i24.PageModule, typeof i25.NzSelectModule, typeof i26.DynamicFormModule], [typeof i12.TableConfigComponent, typeof i13.TableControlComponent, typeof i14.MatrixConfigComponent, typeof i15.MatrixControlComponent, typeof i16.EntryConfigComponent, typeof i17.EntryControlComponent, typeof i18.DomainsComponent]>;
34
34
  static ɵinj: i0.ɵɵInjectorDeclaration<CmsModule>;
35
35
  }
@@ -0,0 +1,21 @@
1
+ import { AbstractControl, FormGroup, ValidationErrors } from '@angular/forms';
2
+ import { Observable } from 'rxjs';
3
+ import * as i0 from "@angular/core";
4
+ export declare class DomainsComponent {
5
+ private toaster;
6
+ private _DomainAdminService;
7
+ private _LocalizationService;
8
+ /**表单实体 */
9
+ newEntity: FormGroup | undefined;
10
+ /**domain详情 */
11
+ domainInfo: any;
12
+ get domainNameInput(): AbstractControl<any, any>;
13
+ ngOnInit(): Promise<void>;
14
+ /**用于获取已绑定的域名 */
15
+ getDomainsBound(): Promise<unknown>;
16
+ repetitionAsyncValidator(): (ctrl: AbstractControl) => Promise<ValidationErrors | null> | Observable<ValidationErrors | null>;
17
+ /**保存 */
18
+ SaveSubmit(): void;
19
+ static ɵfac: i0.ɵɵFactoryDeclaration<DomainsComponent, never>;
20
+ static ɵcmp: i0.ɵɵComponentDeclaration<DomainsComponent, "cms-domains", never, {}, {}, never, never, false, never>;
21
+ }
@@ -0,0 +1 @@
1
+ export * from './domains.component';
@@ -72,6 +72,7 @@ export declare class CreateOrEditEntriesComponent implements AfterContentInit {
72
72
  time: number;
73
73
  /**定义自定义异步验证 */
74
74
  repetitionAsyncValidator(): (ctrl: AbstractControl) => Promise<ValidationErrors | null> | Observable<ValidationErrors | null>;
75
+ private config;
75
76
  /**获取版块详情 */
76
77
  getSectionSelect(): Promise<unknown>;
77
78
  /**获取条目版本列表 */
@@ -4,28 +4,24 @@ import { OnInit } from '@angular/core';
4
4
  import { FormGroup } from '@angular/forms';
5
5
  import { EntryAdminService, EntryDto, GetEntriesInput } from '../../../proxy/admin/entries';
6
6
  import { ColumnMode } from "@swimlane/ngx-datatable";
7
- import { SiteAdminService } from '../../../proxy/admin/sites';
8
7
  import { SectionAdminService } from '../../../proxy/admin/sections';
9
8
  import { Router } from '@angular/router';
10
9
  import * as i0 from "@angular/core";
11
10
  export declare class EntriesComponent implements OnInit {
12
11
  private _EntryAdminService;
13
- private _SiteAdminService;
14
12
  private _SectionAdminService;
15
13
  private toaster;
16
14
  private confirmation;
17
15
  private configState;
18
16
  private router;
19
17
  private _LocalizationService;
20
- constructor(_EntryAdminService: EntryAdminService, _SiteAdminService: SiteAdminService, _SectionAdminService: SectionAdminService, toaster: ToasterService, confirmation: ConfirmationService, configState: ConfigStateService, router: Router, _LocalizationService: LocalizationService);
18
+ constructor(_EntryAdminService: EntryAdminService, _SectionAdminService: SectionAdminService, toaster: ToasterService, confirmation: ConfirmationService, configState: ConfigStateService, router: Router, _LocalizationService: LocalizationService);
21
19
  private fb;
22
20
  private _UpdateListService;
23
21
  readonly list: ListService<any>;
24
22
  ngOnInit(): void;
25
23
  /**站点列表 */
26
- siteList: any[any];
27
24
  /**选择的站点id */
28
- siteId: string;
29
25
  /**站点下的版块 */
30
26
  SiteOfSectionList: any[any];
31
27
  /**版块下的语言列表 */
@@ -36,20 +32,25 @@ export declare class EntriesComponent implements OnInit {
36
32
  _entryStatusOptions: ABP.Option<typeof import("../../../proxy/entries").EntryStatus>[];
37
33
  /**获取页面数据 */
38
34
  getPageDate(): Promise<void>;
39
- /**切换站点 */
40
- siteIdChange(): Promise<void>;
41
35
  /**切换板块 */
42
36
  sectionIdChange(): Promise<void>;
43
37
  /**切换语言 */
44
38
  cultureChange(): Promise<void>;
45
39
  /**获取站点列表 */
46
- getsiteList(): Promise<unknown>;
47
40
  /**获取站点下的版块 */
48
41
  getSiteOfSectionList(): Promise<unknown>;
49
42
  /**获取版块下的条目类型 */
50
43
  getSectionOfEntryType(): void;
44
+ private config;
45
+ private _SiteSettingsAdminService;
51
46
  /**获取版块下的语言列表 */
52
47
  getSectionLanguagesList(): Promise<unknown>;
48
+ /**站点设置语言 */
49
+ SiteSettingsAdminLanguages: any[];
50
+ /**
51
+ * 获取站点设置语言
52
+ */
53
+ getSiteSettingsLanguages(): Promise<unknown>;
53
54
  resetData(): void;
54
55
  /**新增-单个 */
55
56
  createEntriesBtn(): void;
@@ -2,3 +2,4 @@ export * from './entries';
2
2
  export * from './fields';
3
3
  export * from './sites';
4
4
  export * from './sections';
5
+ export * from './domains';
@@ -3,7 +3,6 @@ import { ToasterService, ConfirmationService } from '@abp/ng.theme.shared';
3
3
  import { ElementRef, OnInit } from '@angular/core';
4
4
  import { AbstractControl, FormBuilder, FormGroup, ValidationErrors, ValidatorFn } from '@angular/forms';
5
5
  import { EntryTypeAdminService, GetSectionsInput, SectionAdminService, SectionDto } from '../../../proxy/admin/sections';
6
- import { SiteAdminService } from '../../../proxy/admin/sites';
7
6
  import { ColumnMode } from '@swimlane/ngx-datatable';
8
7
  import { SectionType } from '../../../proxy/sections';
9
8
  import { CmsApiService } from '../../../services/cms-api.service';
@@ -13,7 +12,6 @@ import * as i0 from "@angular/core";
13
12
  export declare class SectionsComponent implements OnInit {
14
13
  readonly list: ListService;
15
14
  private _SectionAdminService;
16
- private _SiteAdminService;
17
15
  private toaster;
18
16
  private confirmation;
19
17
  private fb;
@@ -21,7 +19,7 @@ export declare class SectionsComponent implements OnInit {
21
19
  _LocalizationService: LocalizationService;
22
20
  _CmsApiService: CmsApiService;
23
21
  private router;
24
- constructor(list: ListService, _SectionAdminService: SectionAdminService, _SiteAdminService: SiteAdminService, toaster: ToasterService, confirmation: ConfirmationService, fb: FormBuilder, _EntryTypeAdminService: EntryTypeAdminService, _LocalizationService: LocalizationService, _CmsApiService: CmsApiService, router: Router);
22
+ constructor(list: ListService, _SectionAdminService: SectionAdminService, toaster: ToasterService, confirmation: ConfirmationService, fb: FormBuilder, _EntryTypeAdminService: EntryTypeAdminService, _LocalizationService: LocalizationService, _CmsApiService: CmsApiService, router: Router);
25
23
  private _UpdateListService;
26
24
  /**跳转编辑 */
27
25
  jumpSectionsEdit(row: any, item: any): void;
@@ -39,8 +37,6 @@ export declare class SectionsComponent implements OnInit {
39
37
  ngOnInit(): Promise<void>;
40
38
  /**站点切换 */
41
39
  siteIdChange(): void;
42
- /**获取版块列表 */
43
- getSiteList(): Promise<unknown>;
44
40
  /**创建版块模态框状态 */
45
41
  visibleOpen: boolean;
46
42
  /**用于确定模态的繁忙状态是否为真 */
@@ -1,72 +1,5 @@
1
- import { ConfigStateService, ListService, LocalizationService, PagedResultDto } from '@abp/ng.core';
2
- import { ToasterService, ConfirmationService } from '@abp/ng.theme.shared';
3
- import { OnInit, ElementRef } from '@angular/core';
4
- import { AbstractControl, FormBuilder, FormGroup, ValidationErrors } from '@angular/forms';
5
- import { GetSitesInput, SiteDto, SiteAdminService } from '../../../proxy/admin/sites';
6
- import { ColumnMode } from "@swimlane/ngx-datatable";
7
- import { CmsApiService } from '../../../services/cms-api.service';
8
- import { Observable } from 'rxjs';
9
1
  import * as i0 from "@angular/core";
10
- export declare class SitesComponent implements OnInit {
11
- readonly list: ListService;
12
- private _SiteAdminService;
13
- private toaster;
14
- private confirmation;
15
- private fb;
16
- private configState;
17
- private _LocalizationService;
18
- private _CmsApiService;
19
- constructor(list: ListService, _SiteAdminService: SiteAdminService, toaster: ToasterService, confirmation: ConfirmationService, fb: FormBuilder, configState: ConfigStateService, _LocalizationService: LocalizationService, _CmsApiService: CmsApiService);
20
- /**创建站点模态框状态 */
21
- createSitesOpen: boolean;
22
- /**用于确定模态的繁忙状态是否为真 */
23
- modalBusy: boolean;
24
- /**创建站点表单 */
25
- createOrEditForm: FormGroup | undefined;
26
- get languagesInput(): any;
27
- /**语言列表 */
28
- languages: any[];
29
- /**站点给定的表单值 */
30
- selected: any;
31
- /**表单控件模板-动态赋值表单控件 */
32
- createModalSubmit: ElementRef;
33
- ColumnMode: typeof ColumnMode;
34
- data: PagedResultDto<SiteDto>;
35
- filters: GetSitesInput;
36
- ngOnInit(): void;
37
- hookToQuery(): void;
38
- /**删除字段 */
39
- deletefield(row: any): void;
40
- /**创建站点模态框状态改变 */
41
- createGroupVisibleChange(event: any): void;
42
- /**选择语言改变 */
43
- languagesChange(event: any): void;
44
- /**设置默认语言 */
45
- setDefault(items: any): void;
46
- /**设置表单中的语言 */
47
- setFromLangguages(): void;
48
- /**表单保存提交 */
49
- createOrEditSave(): void;
50
- /**创建站点保存 */
51
- createSave(): void;
52
- /**编辑站点保存 */
53
- EditSave(): void;
54
- /**创建站点按钮 */
55
- createSitesBtn(): void;
56
- /**编辑站点按钮 */
57
- EditSitesBtn(rows: any): void;
58
- /**设置字段控件异步验证 */
59
- setAsyncValidatorsFn(): void;
60
- /**更新语言和默认状态 */
61
- updateLanguages(siteLanguages: any): void;
62
- get nameInput(): AbstractControl<any, any>;
63
- get hostInput(): AbstractControl<any, any>;
64
- /**字段标签input失去标点生成字段名字 */
65
- disPlayNameInputBlur(event: any): void;
66
- /**name定义自定义异步验证 */
67
- nameRepetitionAsyncValidator(): (ctrl: AbstractControl) => Promise<ValidationErrors | null> | Observable<ValidationErrors | null>;
68
- /**host定义自定义异步验证 */
69
- hostRepetitionAsyncValidator(): (ctrl: AbstractControl) => Promise<ValidationErrors | null> | Observable<ValidationErrors | null>;
2
+ export declare class SitesComponent {
70
3
  static ɵfac: i0.ɵɵFactoryDeclaration<SitesComponent, never>;
71
4
  static ɵcmp: i0.ɵɵComponentDeclaration<SitesComponent, "cms-sites", never, {}, {}, never, never, false, never>;
72
5
  }
@@ -1,13 +1,11 @@
1
1
  import { AfterContentInit, ElementRef } from '@angular/core';
2
2
  import { FormBuilder, FormGroup } from '@angular/forms';
3
- import { SiteAdminService } from '../../../proxy/admin/sites';
4
3
  import { SectionAdminService } from '../../../proxy/admin/sections';
5
4
  import * as i0 from "@angular/core";
6
5
  export declare class EntryConfigComponent implements AfterContentInit {
7
6
  private fb;
8
- private _SiteAdminService;
9
7
  private _SectionAdminService;
10
- constructor(fb: FormBuilder, _SiteAdminService: SiteAdminService, _SectionAdminService: SectionAdminService);
8
+ constructor(fb: FormBuilder, _SectionAdminService: SectionAdminService);
11
9
  /**表单控件类型 */
12
10
  _type: any;
13
11
  set type(v: any);
@@ -32,7 +30,6 @@ export declare class EntryConfigComponent implements AfterContentInit {
32
30
  dataLoaded(val: any): Promise<void>;
33
31
  AfterInit(): Promise<unknown>;
34
32
  /**获取站点列表 */
35
- getsiteList(): Promise<unknown>;
36
33
  /**获取站点下的版块 */
37
34
  getSiteOfSectionList(): Promise<unknown>;
38
35
  /**切换站点 */
@@ -16,6 +16,9 @@ export declare class TableControlComponent {
16
16
  /**父级字段名称,用于为表单设置控件赋值 */
17
17
  _selected: any;
18
18
  set selected(v: any);
19
+ /**语言 */
20
+ _culture: any;
21
+ set culture(v: any);
19
22
  submitclick: ElementRef;
20
23
  /** 获取父级字段代表的表单组*/
21
24
  extraProperties: FormGroup | undefined;
@@ -32,5 +35,5 @@ export declare class TableControlComponent {
32
35
  /**调整表格位置 */
33
36
  TableArrowUpOrDown(type: any, index: any): void;
34
37
  static ɵfac: i0.ɵɵFactoryDeclaration<TableControlComponent, never>;
35
- static ɵcmp: i0.ɵɵComponentDeclaration<TableControlComponent, "df-table-control", never, { "entity": { "alias": "entity"; "required": false; }; "fields": { "alias": "fields"; "required": false; }; "parentFiledName": { "alias": "parentFiledName"; "required": false; }; "selected": { "alias": "selected"; "required": false; }; }, {}, never, never, false, never>;
38
+ static ɵcmp: i0.ɵɵComponentDeclaration<TableControlComponent, "df-table-control", never, { "entity": { "alias": "entity"; "required": false; }; "fields": { "alias": "fields"; "required": false; }; "parentFiledName": { "alias": "parentFiledName"; "required": false; }; "selected": { "alias": "selected"; "required": false; }; "culture": { "alias": "culture"; "required": false; }; }, {}, never, never, false, never>;
36
39
  }
@@ -1,2 +1,2 @@
1
- declare const _default: "\n.lpx-content-container .lpx-content{min-height:calc(100vh - 34px);padding:1.25em 2em 1.25em}h1,h2,h3,h4,h5,h6{color:inherit}.lpx-settings .lpx-context-menu{overflow:auto}\na {\n text-decoration: unset;\n}\n";
1
+ declare const _default: "\n.lpx-content-container .lpx-content{min-height:calc(100vh - 34px);padding:1.25em 2em 1.25em}h1,h2,h3,h4,h5,h6{color:inherit}.lpx-settings .lpx-context-menu{overflow:auto}\na {\n text-decoration: unset;\n}\n:root .cellClassRight{\n transform: translateX(17px);\n background: var(--lpx-card-bg);\n}\n.form-label{\n font-size: 12px;\n}\n";
2
2
  export default _default;
@@ -0,0 +1,13 @@
1
+ import type { DomainDto, UpdateDomainInput } from './models';
2
+ import { RestService, Rest } from '@abp/ng.core';
3
+ import * as i0 from "@angular/core";
4
+ export declare class DomainAdminService {
5
+ private restService;
6
+ apiName: string;
7
+ getBound: (config?: Partial<Rest.Config>) => import("rxjs").Observable<DomainDto>;
8
+ nameExists: (domainName: string, config?: Partial<Rest.Config>) => import("rxjs").Observable<boolean>;
9
+ update: (input: UpdateDomainInput, config?: Partial<Rest.Config>) => import("rxjs").Observable<DomainDto>;
10
+ constructor(restService: RestService);
11
+ static ɵfac: i0.ɵɵFactoryDeclaration<DomainAdminService, never>;
12
+ static ɵprov: i0.ɵɵInjectableDeclaration<DomainAdminService>;
13
+ }
@@ -0,0 +1,2 @@
1
+ export * from './domain-admin.service';
2
+ export * from './models';
@@ -0,0 +1,7 @@
1
+ import type { CreationAuditedEntityDto } from '@abp/ng.core';
2
+ export interface DomainDto extends CreationAuditedEntityDto<string> {
3
+ domainName?: string;
4
+ }
5
+ export interface UpdateDomainInput {
6
+ domainName: string;
7
+ }
@@ -7,11 +7,12 @@ export declare class EntryAdminService {
7
7
  apiName: string;
8
8
  activate: (id: string, config?: Partial<Rest.Config>) => import("rxjs").Observable<void>;
9
9
  create: (input: CreateEntryInput, config?: Partial<Rest.Config>) => import("rxjs").Observable<EntryDto>;
10
- delete: (id: string, config?: Partial<Rest.Config>) => import("rxjs").Observable<void>;
11
10
  cultureExistWithSingleSection: (input: CultureExistWithSingleSectionInput, config?: Partial<Rest.Config>) => import("rxjs").Observable<boolean>;
11
+ delete: (id: string, config?: Partial<Rest.Config>) => import("rxjs").Observable<void>;
12
12
  get: (id: string, config?: Partial<Rest.Config>) => import("rxjs").Observable<EntryDto>;
13
13
  getAllVersions: (id: string, config?: Partial<Rest.Config>) => import("rxjs").Observable<ListResultDto<EntryDto>>;
14
14
  getList: (input: GetEntriesInput, config?: Partial<Rest.Config>) => import("rxjs").Observable<PagedResultDto<EntryDto>>;
15
+ getListByIds: (sectionId: string, ids: string[], config?: Partial<Rest.Config>) => import("rxjs").Observable<ListResultDto<EntryDto>>;
15
16
  move: (id: string, input: MoveEntryInput, config?: Partial<Rest.Config>) => import("rxjs").Observable<void>;
16
17
  slugExists: (input: SlugExistsInput, config?: Partial<Rest.Config>) => import("rxjs").Observable<boolean>;
17
18
  update: (id: string, input: UpdateEntryInput, config?: Partial<Rest.Config>) => import("rxjs").Observable<EntryDto>;
@@ -1,7 +1,7 @@
1
+ import type { CustomizableObject } from '../../dignite/abp/data/models';
1
2
  import type { ExtensibleAuditedEntityDto, PagedAndSortedResultRequestDto } from '@abp/ng.core';
3
+ import type { EntryStatus } from '../../entries/entry-status.enum';
2
4
  import type { CmsUserDto } from '../../volo/cms-kit/users/models';
3
- import { CustomizableObject } from '../../dignite/abp/data';
4
- import { EntryStatus } from '../../entries';
5
5
  export interface CreateEntryInput extends CreateOrUpdateEntryInputBase {
6
6
  initialVersionId?: string;
7
7
  }
@@ -15,6 +15,11 @@ export interface CreateOrUpdateEntryInputBase extends CustomizableObject {
15
15
  publishTime: string;
16
16
  versionNotes?: string;
17
17
  }
18
+ export interface CultureExistWithSingleSectionInput {
19
+ culture: string;
20
+ sectionId: string;
21
+ entryTypeId: string;
22
+ }
18
23
  export interface EntryDto extends ExtensibleAuditedEntityDto<string> {
19
24
  sectionId?: string;
20
25
  entryTypeId?: string;
@@ -31,16 +36,6 @@ export interface EntryDto extends ExtensibleAuditedEntityDto<string> {
31
36
  author: CmsUserDto;
32
37
  concurrencyStamp?: string;
33
38
  }
34
- export interface EntryTypeExistsInput {
35
- culture: string;
36
- sectionId: string;
37
- entryTypeId: string;
38
- }
39
- export interface CultureExistWithSingleSectionInput {
40
- culture: string;
41
- sectionId: string;
42
- entryTypeId: string;
43
- }
44
39
  export interface GetEntriesInput extends PagedAndSortedResultRequestDto {
45
40
  culture: string;
46
41
  sectionId: string;
@@ -1,4 +1,4 @@
1
- import type { FieldDtoEntity } from '../../fields/models';
1
+ import type { FieldDtoConfig } from '../../fields/models';
2
2
  import type { EntityDto, PagedAndSortedResultRequestDto } from '@abp/ng.core';
3
3
  export interface CreateFieldInput extends CreateOrUpdateFieldInputBase {
4
4
  }
@@ -13,7 +13,7 @@ export interface CreateOrUpdateFieldInputBase {
13
13
  formControlName: string;
14
14
  formConfiguration: Record<string, object>;
15
15
  }
16
- export interface FieldDto extends FieldDtoEntity {
16
+ export interface FieldDto extends FieldDtoConfig {
17
17
  groupId?: string;
18
18
  groupName?: string;
19
19
  creationTime?: string;
@@ -1,7 +1,6 @@
1
1
  import type { AuditedEntityDto, ExtensibleAuditedEntityDto, ExtensibleObject, PagedAndSortedResultRequestDto } from '@abp/ng.core';
2
2
  import type { SectionType } from '../../sections/section-type.enum';
3
3
  import type { EntryFieldTabDto } from '../../sections/models';
4
- import type { SiteDto } from '../sites/models';
5
4
  export interface CreateEntryTypeInput extends CreateOrUpdateEntryTypeInputBase {
6
5
  sectionId: string;
7
6
  }
@@ -16,11 +15,10 @@ export interface CreateOrUpdateSectionInputBase extends ExtensibleObject {
16
15
  name: string;
17
16
  isDefault: boolean;
18
17
  isActive: boolean;
19
- route: string;
20
- template: string;
18
+ route?: string;
19
+ template?: string;
21
20
  }
22
21
  export interface CreateSectionInput extends CreateOrUpdateSectionInputBase {
23
- siteId: string;
24
22
  }
25
23
  export interface EntryFieldInput {
26
24
  fieldId: string;
@@ -42,13 +40,10 @@ export interface EntryTypeNameExistsInput {
42
40
  name: string;
43
41
  }
44
42
  export interface GetSectionsInput extends PagedAndSortedResultRequestDto {
45
- siteId?: string;
46
43
  filter?: string;
47
44
  isActive?: boolean;
48
45
  }
49
46
  export interface SectionDto extends ExtensibleAuditedEntityDto<string> {
50
- siteId?: string;
51
- site: SiteDto;
52
47
  type: SectionType;
53
48
  displayName?: string;
54
49
  name?: string;
@@ -60,11 +55,9 @@ export interface SectionDto extends ExtensibleAuditedEntityDto<string> {
60
55
  entryTypes: EntryTypeDto[];
61
56
  }
62
57
  export interface SectionNameExistsInput {
63
- siteId: string;
64
58
  name: string;
65
59
  }
66
60
  export interface SectionRouteExistsInput {
67
- siteId: string;
68
61
  route: string;
69
62
  }
70
63
  export interface UpdateEntryTypeInput extends CreateOrUpdateEntryTypeInputBase {
@@ -0,0 +1 @@
1
+ export * from './site-settings-admin.service';
@@ -0,0 +1,13 @@
1
+ import { RestService, Rest } from '@abp/ng.core';
2
+ import type { BrandDto } from '../../settings/models';
3
+ import * as i0 from "@angular/core";
4
+ export declare class SiteSettingsAdminService {
5
+ private restService;
6
+ apiName: string;
7
+ getAllLanguages: (config?: Partial<Rest.Config>) => import("rxjs").Observable<string[]>;
8
+ getBrand: (config?: Partial<Rest.Config>) => import("rxjs").Observable<BrandDto>;
9
+ getDefaultLanguage: (config?: Partial<Rest.Config>) => import("rxjs").Observable<string>;
10
+ constructor(restService: RestService);
11
+ static ɵfac: i0.ɵɵFactoryDeclaration<SiteSettingsAdminService, never>;
12
+ static ɵprov: i0.ɵɵInjectableDeclaration<SiteSettingsAdminService>;
13
+ }
@@ -1,5 +1,5 @@
1
1
  import type { EntityDto } from '@abp/ng.core';
2
- export interface FieldDtoEntity extends EntityDto<string> {
2
+ export interface FieldDtoConfig extends EntityDto<string> {
3
3
  name?: string;
4
4
  displayName?: string;
5
5
  description?: string;
@@ -1,7 +1,7 @@
1
- import type { FieldDtoEntity } from '../fields/models';
1
+ import type { FieldDtoConfig } from '../fields/models';
2
2
  export interface EntryFieldDto {
3
3
  fieldId?: string;
4
- field: FieldDtoEntity;
4
+ field: FieldDtoConfig;
5
5
  displayName?: string;
6
6
  required: boolean;
7
7
  showOnList: boolean;
@@ -0,0 +1,5 @@
1
+ export interface BrandDto {
2
+ appName?: string;
3
+ logoUrl?: string;
4
+ logoReverseUrl?: string;
5
+ }
@@ -4,7 +4,6 @@ export declare const Sections_Defaults_Toolbar_Action: ToolbarAction<any[]>[];
4
4
  /**版块-创建-编辑 */
5
5
  export declare const Sections_Create_Or_Edit_Defaults_Toolbar_Action: ToolbarAction<any[]>[];
6
6
  /**站点 */
7
- export declare const Sites_Defaults_Toolbar_Action: ToolbarAction<any[]>[];
8
7
  /**字段 */
9
8
  export declare const Fields_Defaults_Toolbar_Action: ToolbarAction<any[]>[];
10
9
  /**字段-创建 */
@@ -7,7 +7,6 @@ export declare const ActionGroup: {
7
7
  Fields: import("@abp/ng.theme.shared/extensions").ToolbarAction<any[]>[];
8
8
  FieldsCreate: import("@abp/ng.theme.shared/extensions").ToolbarAction<any[]>[];
9
9
  FieldsEdit: import("@abp/ng.theme.shared/extensions").ToolbarAction<any[]>[];
10
- Sites: import("@abp/ng.theme.shared/extensions").ToolbarAction<any[]>[];
11
10
  Sections: import("@abp/ng.theme.shared/extensions").ToolbarAction<any[]>[];
12
11
  SectionsCreateOrEdit: import("@abp/ng.theme.shared/extensions").ToolbarAction<any[]>[];
13
12
  };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@dignite-ng/expand.cms",
3
- "version": "0.0.28",
3
+ "version": "0.0.29",
4
4
  "peerDependencies": {
5
5
  "@angular/common": "^16.2.0",
6
6
  "@angular/core": "^16.2.0",
package/public-api.d.ts CHANGED
@@ -1,3 +1,4 @@
1
1
  export * from './lib/cms.module';
2
2
  export * from './lib/components/dynamic-form';
3
3
  export * from './lib/services/simple-reuse-strategy';
4
+ export * from './lib/components/admin/domains';
@@ -1,3 +0,0 @@
1
- export * from './models';
2
- export * from './site-admin.service';
3
- //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiaW5kZXguanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi8uLi8uLi8uLi8uLi8uLi8uLi9wcm9qZWN0cy9jbXMvc3JjL2xpYi9wcm94eS9hZG1pbi9zaXRlcy9pbmRleC50cyJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiQUFBQSxjQUFjLFVBQVUsQ0FBQztBQUN6QixjQUFjLHNCQUFzQixDQUFDIiwic291cmNlc0NvbnRlbnQiOlsiZXhwb3J0ICogZnJvbSAnLi9tb2RlbHMnO1xuZXhwb3J0ICogZnJvbSAnLi9zaXRlLWFkbWluLnNlcnZpY2UnO1xuIl19
@@ -1,2 +0,0 @@
1
- export {};
2
- //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoibW9kZWxzLmpzIiwic291cmNlUm9vdCI6IiIsInNvdXJjZXMiOlsiLi4vLi4vLi4vLi4vLi4vLi4vLi4vcHJvamVjdHMvY21zL3NyYy9saWIvcHJveHkvYWRtaW4vc2l0ZXMvbW9kZWxzLnRzIl0sIm5hbWVzIjpbXSwibWFwcGluZ3MiOiIiLCJzb3VyY2VzQ29udGVudCI6WyJpbXBvcnQgdHlwZSB7IEV4dGVuc2libGVBdWRpdGVkRW50aXR5RHRvLCBFeHRlbnNpYmxlT2JqZWN0IH0gZnJvbSAnQGFicC9uZy5jb3JlJztcclxuaW1wb3J0IHR5cGUgeyBTaXRlTGFuZ3VhZ2VEdG8gfSBmcm9tICcuLi8uLi9zaXRlcy9tb2RlbHMnO1xyXG5cclxuZXhwb3J0IGludGVyZmFjZSBDcmVhdGVPclVwZGF0ZVNpdGVJbnB1dEJhc2UgZXh0ZW5kcyBFeHRlbnNpYmxlT2JqZWN0IHtcclxuICBkaXNwbGF5TmFtZTogc3RyaW5nO1xyXG4gIG5hbWU6IHN0cmluZztcclxuICBsYW5ndWFnZXM6IFNpdGVMYW5ndWFnZUlucHV0W107XHJcbiAgaG9zdDogc3RyaW5nO1xyXG4gIGlzQWN0aXZlOiBib29sZWFuO1xyXG59XHJcblxyXG5leHBvcnQgaW50ZXJmYWNlIENyZWF0ZVNpdGVJbnB1dCBleHRlbmRzIENyZWF0ZU9yVXBkYXRlU2l0ZUlucHV0QmFzZSB7XHJcbn1cclxuXHJcbmV4cG9ydCBpbnRlcmZhY2UgR2V0U2l0ZXNJbnB1dCB7XHJcbiAgZmlsdGVyPzogc3RyaW5nO1xyXG4gIGlzQWN0aXZlPzogYm9vbGVhbjtcclxufVxyXG5cclxuZXhwb3J0IGludGVyZmFjZSBTaXRlRHRvIGV4dGVuZHMgRXh0ZW5zaWJsZUF1ZGl0ZWRFbnRpdHlEdG88c3RyaW5nPiB7XHJcbiAgZGlzcGxheU5hbWU/OiBzdHJpbmc7XHJcbiAgbmFtZT86IHN0cmluZztcclxuICBsYW5ndWFnZXM6IFNpdGVMYW5ndWFnZUR0b1tdO1xyXG4gIGhvc3Q/OiBzdHJpbmc7XHJcbiAgaXNBY3RpdmU6IGJvb2xlYW47XHJcbiAgY29uY3VycmVuY3lTdGFtcD86IHN0cmluZztcclxufVxyXG5cclxuZXhwb3J0IGludGVyZmFjZSBTaXRlTGFuZ3VhZ2VJbnB1dCB7XHJcbiAgaXNEZWZhdWx0OiBib29sZWFuO1xyXG4gIGN1bHR1cmVOYW1lOiBzdHJpbmc7XHJcbn1cclxuXHJcbmV4cG9ydCBpbnRlcmZhY2UgVXBkYXRlU2l0ZUlucHV0IGV4dGVuZHMgQ3JlYXRlT3JVcGRhdGVTaXRlSW5wdXRCYXNlIHtcclxuICBjb25jdXJyZW5jeVN0YW1wPzogc3RyaW5nO1xyXG59XHJcbiJdfQ==
@@ -1,51 +0,0 @@
1
- import { Injectable } from '@angular/core';
2
- import * as i0 from "@angular/core";
3
- import * as i1 from "@abp/ng.core";
4
- class SiteAdminService {
5
- restService;
6
- apiName = 'CmsAdmin';
7
- create = (input, config) => this.restService.request({
8
- method: 'POST',
9
- url: '/api/cms-admin/sites',
10
- body: input,
11
- }, { apiName: this.apiName, ...config });
12
- delete = (id, config) => this.restService.request({
13
- method: 'DELETE',
14
- url: `/api/cms-admin/sites/${id}`,
15
- }, { apiName: this.apiName, ...config });
16
- get = (id, config) => this.restService.request({
17
- method: 'GET',
18
- url: `/api/cms-admin/sites/${id}`,
19
- }, { apiName: this.apiName, ...config });
20
- getList = (input, config) => this.restService.request({
21
- method: 'GET',
22
- url: '/api/cms-admin/sites',
23
- params: { filter: input.filter, isActive: input.isActive },
24
- }, { apiName: this.apiName, ...config });
25
- hostExists = (name, config) => this.restService.request({
26
- method: 'GET',
27
- url: `/api/cms-admin/sites/host-exists/${name}`,
28
- }, { apiName: this.apiName, ...config });
29
- nameExists = (name, config) => this.restService.request({
30
- method: 'GET',
31
- url: `/api/cms-admin/sites/name-exists/${name}`,
32
- }, { apiName: this.apiName, ...config });
33
- update = (id, input, config) => this.restService.request({
34
- method: 'PUT',
35
- url: `/api/cms-admin/sites/${id}`,
36
- body: input,
37
- }, { apiName: this.apiName, ...config });
38
- constructor(restService) {
39
- this.restService = restService;
40
- }
41
- static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: SiteAdminService, deps: [{ token: i1.RestService }], target: i0.ɵɵFactoryTarget.Injectable });
42
- static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: SiteAdminService, providedIn: 'root' });
43
- }
44
- export { SiteAdminService };
45
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: SiteAdminService, decorators: [{
46
- type: Injectable,
47
- args: [{
48
- providedIn: 'root',
49
- }]
50
- }], ctorParameters: function () { return [{ type: i1.RestService }]; } });
51
- //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoic2l0ZS1hZG1pbi5zZXJ2aWNlLmpzIiwic291cmNlUm9vdCI6IiIsInNvdXJjZXMiOlsiLi4vLi4vLi4vLi4vLi4vLi4vLi4vcHJvamVjdHMvY21zL3NyYy9saWIvcHJveHkvYWRtaW4vc2l0ZXMvc2l0ZS1hZG1pbi5zZXJ2aWNlLnRzIl0sIm5hbWVzIjpbXSwibWFwcGluZ3MiOiJBQUdBLE9BQU8sRUFBRSxVQUFVLEVBQUUsTUFBTSxlQUFlLENBQUM7OztBQUUzQyxNQUdhLGdCQUFnQjtJQThEUDtJQTdEcEIsT0FBTyxHQUFHLFVBQVUsQ0FBQztJQUdyQixNQUFNLEdBQUcsQ0FBQyxLQUFzQixFQUFFLE1BQTZCLEVBQUUsRUFBRSxDQUNqRSxJQUFJLENBQUMsV0FBVyxDQUFDLE9BQU8sQ0FBZTtRQUNyQyxNQUFNLEVBQUUsTUFBTTtRQUNkLEdBQUcsRUFBRSxzQkFBc0I7UUFDM0IsSUFBSSxFQUFFLEtBQUs7S0FDWixFQUNELEVBQUUsT0FBTyxFQUFFLElBQUksQ0FBQyxPQUFPLEVBQUMsR0FBRyxNQUFNLEVBQUUsQ0FBQyxDQUFDO0lBR3ZDLE1BQU0sR0FBRyxDQUFDLEVBQVUsRUFBRSxNQUE2QixFQUFFLEVBQUUsQ0FDckQsSUFBSSxDQUFDLFdBQVcsQ0FBQyxPQUFPLENBQVk7UUFDbEMsTUFBTSxFQUFFLFFBQVE7UUFDaEIsR0FBRyxFQUFFLHdCQUF3QixFQUFFLEVBQUU7S0FDbEMsRUFDRCxFQUFFLE9BQU8sRUFBRSxJQUFJLENBQUMsT0FBTyxFQUFDLEdBQUcsTUFBTSxFQUFFLENBQUMsQ0FBQztJQUd2QyxHQUFHLEdBQUcsQ0FBQyxFQUFVLEVBQUUsTUFBNkIsRUFBRSxFQUFFLENBQ2xELElBQUksQ0FBQyxXQUFXLENBQUMsT0FBTyxDQUFlO1FBQ3JDLE1BQU0sRUFBRSxLQUFLO1FBQ2IsR0FBRyxFQUFFLHdCQUF3QixFQUFFLEVBQUU7S0FDbEMsRUFDRCxFQUFFLE9BQU8sRUFBRSxJQUFJLENBQUMsT0FBTyxFQUFDLEdBQUcsTUFBTSxFQUFFLENBQUMsQ0FBQztJQUd2QyxPQUFPLEdBQUcsQ0FBQyxLQUFvQixFQUFFLE1BQTZCLEVBQUUsRUFBRSxDQUNoRSxJQUFJLENBQUMsV0FBVyxDQUFDLE9BQU8sQ0FBK0I7UUFDckQsTUFBTSxFQUFFLEtBQUs7UUFDYixHQUFHLEVBQUUsc0JBQXNCO1FBQzNCLE1BQU0sRUFBRSxFQUFFLE1BQU0sRUFBRSxLQUFLLENBQUMsTUFBTSxFQUFFLFFBQVEsRUFBRSxLQUFLLENBQUMsUUFBUSxFQUFFO0tBQzNELEVBQ0QsRUFBRSxPQUFPLEVBQUUsSUFBSSxDQUFDLE9BQU8sRUFBQyxHQUFHLE1BQU0sRUFBRSxDQUFDLENBQUM7SUFHdkMsVUFBVSxHQUFHLENBQUMsSUFBWSxFQUFFLE1BQTZCLEVBQUUsRUFBRSxDQUMzRCxJQUFJLENBQUMsV0FBVyxDQUFDLE9BQU8sQ0FBZTtRQUNyQyxNQUFNLEVBQUUsS0FBSztRQUNiLEdBQUcsRUFBRSxvQ0FBb0MsSUFBSSxFQUFFO0tBQ2hELEVBQ0QsRUFBRSxPQUFPLEVBQUUsSUFBSSxDQUFDLE9BQU8sRUFBQyxHQUFHLE1BQU0sRUFBRSxDQUFDLENBQUM7SUFHdkMsVUFBVSxHQUFHLENBQUMsSUFBWSxFQUFFLE1BQTZCLEVBQUUsRUFBRSxDQUMzRCxJQUFJLENBQUMsV0FBVyxDQUFDLE9BQU8sQ0FBZTtRQUNyQyxNQUFNLEVBQUUsS0FBSztRQUNiLEdBQUcsRUFBRSxvQ0FBb0MsSUFBSSxFQUFFO0tBQ2hELEVBQ0QsRUFBRSxPQUFPLEVBQUUsSUFBSSxDQUFDLE9BQU8sRUFBQyxHQUFHLE1BQU0sRUFBRSxDQUFDLENBQUM7SUFHdkMsTUFBTSxHQUFHLENBQUMsRUFBVSxFQUFFLEtBQXNCLEVBQUUsTUFBNkIsRUFBRSxFQUFFLENBQzdFLElBQUksQ0FBQyxXQUFXLENBQUMsT0FBTyxDQUFlO1FBQ3JDLE1BQU0sRUFBRSxLQUFLO1FBQ2IsR0FBRyxFQUFFLHdCQUF3QixFQUFFLEVBQUU7UUFDakMsSUFBSSxFQUFFLEtBQUs7S0FDWixFQUNELEVBQUUsT0FBTyxFQUFFLElBQUksQ0FBQyxPQUFPLEVBQUMsR0FBRyxNQUFNLEVBQUUsQ0FBQyxDQUFDO0lBRXZDLFlBQW9CLFdBQXdCO1FBQXhCLGdCQUFXLEdBQVgsV0FBVyxDQUFhO0lBQUcsQ0FBQzt3R0E5RHJDLGdCQUFnQjs0R0FBaEIsZ0JBQWdCLGNBRmYsTUFBTTs7U0FFUCxnQkFBZ0I7NEZBQWhCLGdCQUFnQjtrQkFINUIsVUFBVTttQkFBQztvQkFDVixVQUFVLEVBQUUsTUFBTTtpQkFDbkIiLCJzb3VyY2VzQ29udGVudCI6WyJpbXBvcnQgdHlwZSB7IENyZWF0ZVNpdGVJbnB1dCwgR2V0U2l0ZXNJbnB1dCwgU2l0ZUR0bywgVXBkYXRlU2l0ZUlucHV0IH0gZnJvbSAnLi9tb2RlbHMnO1xyXG5pbXBvcnQgeyBSZXN0U2VydmljZSwgUmVzdCB9IGZyb20gJ0BhYnAvbmcuY29yZSc7XHJcbmltcG9ydCB0eXBlIHsgUGFnZWRSZXN1bHREdG8gfSBmcm9tICdAYWJwL25nLmNvcmUnO1xyXG5pbXBvcnQgeyBJbmplY3RhYmxlIH0gZnJvbSAnQGFuZ3VsYXIvY29yZSc7XHJcblxyXG5ASW5qZWN0YWJsZSh7XHJcbiAgcHJvdmlkZWRJbjogJ3Jvb3QnLFxyXG59KVxyXG5leHBvcnQgY2xhc3MgU2l0ZUFkbWluU2VydmljZSB7XHJcbiAgYXBpTmFtZSA9ICdDbXNBZG1pbic7XHJcbiAgXHJcblxyXG4gIGNyZWF0ZSA9IChpbnB1dDogQ3JlYXRlU2l0ZUlucHV0LCBjb25maWc/OiBQYXJ0aWFsPFJlc3QuQ29uZmlnPikgPT5cclxuICAgIHRoaXMucmVzdFNlcnZpY2UucmVxdWVzdDxhbnksIFNpdGVEdG8+KHtcclxuICAgICAgbWV0aG9kOiAnUE9TVCcsXHJcbiAgICAgIHVybDogJy9hcGkvY21zLWFkbWluL3NpdGVzJyxcclxuICAgICAgYm9keTogaW5wdXQsXHJcbiAgICB9LFxyXG4gICAgeyBhcGlOYW1lOiB0aGlzLmFwaU5hbWUsLi4uY29uZmlnIH0pO1xyXG4gIFxyXG5cclxuICBkZWxldGUgPSAoaWQ6IHN0cmluZywgY29uZmlnPzogUGFydGlhbDxSZXN0LkNvbmZpZz4pID0+XHJcbiAgICB0aGlzLnJlc3RTZXJ2aWNlLnJlcXVlc3Q8YW55LCB2b2lkPih7XHJcbiAgICAgIG1ldGhvZDogJ0RFTEVURScsXHJcbiAgICAgIHVybDogYC9hcGkvY21zLWFkbWluL3NpdGVzLyR7aWR9YCxcclxuICAgIH0sXHJcbiAgICB7IGFwaU5hbWU6IHRoaXMuYXBpTmFtZSwuLi5jb25maWcgfSk7XHJcbiAgXHJcblxyXG4gIGdldCA9IChpZDogc3RyaW5nLCBjb25maWc/OiBQYXJ0aWFsPFJlc3QuQ29uZmlnPikgPT5cclxuICAgIHRoaXMucmVzdFNlcnZpY2UucmVxdWVzdDxhbnksIFNpdGVEdG8+KHtcclxuICAgICAgbWV0aG9kOiAnR0VUJyxcclxuICAgICAgdXJsOiBgL2FwaS9jbXMtYWRtaW4vc2l0ZXMvJHtpZH1gLFxyXG4gICAgfSxcclxuICAgIHsgYXBpTmFtZTogdGhpcy5hcGlOYW1lLC4uLmNvbmZpZyB9KTtcclxuICBcclxuXHJcbiAgZ2V0TGlzdCA9IChpbnB1dDogR2V0U2l0ZXNJbnB1dCwgY29uZmlnPzogUGFydGlhbDxSZXN0LkNvbmZpZz4pID0+XHJcbiAgICB0aGlzLnJlc3RTZXJ2aWNlLnJlcXVlc3Q8YW55LCBQYWdlZFJlc3VsdER0bzxTaXRlRHRvPj4oe1xyXG4gICAgICBtZXRob2Q6ICdHRVQnLFxyXG4gICAgICB1cmw6ICcvYXBpL2Ntcy1hZG1pbi9zaXRlcycsXHJcbiAgICAgIHBhcmFtczogeyBmaWx0ZXI6IGlucHV0LmZpbHRlciwgaXNBY3RpdmU6IGlucHV0LmlzQWN0aXZlIH0sXHJcbiAgICB9LFxyXG4gICAgeyBhcGlOYW1lOiB0aGlzLmFwaU5hbWUsLi4uY29uZmlnIH0pO1xyXG4gIFxyXG5cclxuICBob3N0RXhpc3RzID0gKG5hbWU6IHN0cmluZywgY29uZmlnPzogUGFydGlhbDxSZXN0LkNvbmZpZz4pID0+XHJcbiAgICB0aGlzLnJlc3RTZXJ2aWNlLnJlcXVlc3Q8YW55LCBib29sZWFuPih7XHJcbiAgICAgIG1ldGhvZDogJ0dFVCcsXHJcbiAgICAgIHVybDogYC9hcGkvY21zLWFkbWluL3NpdGVzL2hvc3QtZXhpc3RzLyR7bmFtZX1gLFxyXG4gICAgfSxcclxuICAgIHsgYXBpTmFtZTogdGhpcy5hcGlOYW1lLC4uLmNvbmZpZyB9KTtcclxuICBcclxuXHJcbiAgbmFtZUV4aXN0cyA9IChuYW1lOiBzdHJpbmcsIGNvbmZpZz86IFBhcnRpYWw8UmVzdC5Db25maWc+KSA9PlxyXG4gICAgdGhpcy5yZXN0U2VydmljZS5yZXF1ZXN0PGFueSwgYm9vbGVhbj4oe1xyXG4gICAgICBtZXRob2Q6ICdHRVQnLFxyXG4gICAgICB1cmw6IGAvYXBpL2Ntcy1hZG1pbi9zaXRlcy9uYW1lLWV4aXN0cy8ke25hbWV9YCxcclxuICAgIH0sXHJcbiAgICB7IGFwaU5hbWU6IHRoaXMuYXBpTmFtZSwuLi5jb25maWcgfSk7XHJcbiAgXHJcblxyXG4gIHVwZGF0ZSA9IChpZDogc3RyaW5nLCBpbnB1dDogVXBkYXRlU2l0ZUlucHV0LCBjb25maWc/OiBQYXJ0aWFsPFJlc3QuQ29uZmlnPikgPT5cclxuICAgIHRoaXMucmVzdFNlcnZpY2UucmVxdWVzdDxhbnksIFNpdGVEdG8+KHtcclxuICAgICAgbWV0aG9kOiAnUFVUJyxcclxuICAgICAgdXJsOiBgL2FwaS9jbXMtYWRtaW4vc2l0ZXMvJHtpZH1gLFxyXG4gICAgICBib2R5OiBpbnB1dCxcclxuICAgIH0sXHJcbiAgICB7IGFwaU5hbWU6IHRoaXMuYXBpTmFtZSwuLi5jb25maWcgfSk7XHJcblxyXG4gIGNvbnN0cnVjdG9yKHByaXZhdGUgcmVzdFNlcnZpY2U6IFJlc3RTZXJ2aWNlKSB7fVxyXG59XHJcbiJdfQ==
@@ -1,2 +0,0 @@
1
- export * from './models';
2
- //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiaW5kZXguanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi8uLi8uLi8uLi8uLi8uLi8uLi8uLi9wcm9qZWN0cy9jbXMvc3JjL2xpYi9wcm94eS9kaWduaXRlL2FicC9kYXRhL2luZGV4LnRzIl0sIm5hbWVzIjpbXSwibWFwcGluZ3MiOiJBQUFBLGNBQWMsVUFBVSxDQUFDIiwic291cmNlc0NvbnRlbnQiOlsiZXhwb3J0ICogZnJvbSAnLi9tb2RlbHMnO1xuIl19
@@ -1,2 +0,0 @@
1
- export {};
2
- //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoibW9kZWxzLmpzIiwic291cmNlUm9vdCI6IiIsInNvdXJjZXMiOlsiLi4vLi4vLi4vLi4vLi4vLi4vcHJvamVjdHMvY21zL3NyYy9saWIvcHJveHkvc2l0ZXMvbW9kZWxzLnRzIl0sIm5hbWVzIjpbXSwibWFwcGluZ3MiOiIiLCJzb3VyY2VzQ29udGVudCI6WyJcclxuZXhwb3J0IGludGVyZmFjZSBTaXRlTGFuZ3VhZ2VEdG8ge1xyXG4gIGlzRGVmYXVsdDogYm9vbGVhbjtcclxuICBjdWx0dXJlTmFtZT86IHN0cmluZztcclxufVxyXG4iXX0=
@@ -1,2 +0,0 @@
1
- export * from './models';
2
- export * from './site-admin.service';