@things-factory/meta-ui 9.0.20 → 9.0.25

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 (31) hide show
  1. package/dist-client/mixin/meta-base-mixin.d.ts +5 -5
  2. package/dist-client/mixin/meta-basic-grist-mixin.d.ts +9 -9
  3. package/dist-client/mixin/meta-button-mixin.d.ts +5 -5
  4. package/dist-client/mixin/meta-form-mixin.d.ts +11 -11
  5. package/dist-client/mixin/meta-grist-tab-mixin.d.ts +10 -10
  6. package/dist-client/mixin/meta-main-tab-mixin.d.ts +9 -9
  7. package/dist-client/mixin/meta-master-detail-mixin.d.ts +9 -9
  8. package/dist-client/mixin/meta-service-mixin.d.ts +5 -5
  9. package/dist-client/mixin/meta-tab-detail-mixin.d.ts +9 -9
  10. package/dist-client/mixin/meta-tab-mixin.d.ts +7 -7
  11. package/dist-client/pages/activity/meta-activity-viewer-element.d.ts +2 -2
  12. package/dist-client/pages/activity/meta-activity-writer-element.d.ts +2 -2
  13. package/dist-client/pages/activity/meta-activiy-mixin.d.ts +2 -2
  14. package/dist-client/pages/button-role/button-role-detail.d.ts +9 -9
  15. package/dist-client/pages/button-role/button-role-page.d.ts +9 -9
  16. package/dist-client/pages/meta-form-element.d.ts +11 -11
  17. package/dist-client/pages/meta-grist-element.d.ts +9 -9
  18. package/dist-client/pages/meta-grist-page.d.ts +9 -9
  19. package/dist-client/pages/meta-grist-tab-element.d.ts +10 -10
  20. package/dist-client/pages/meta-grist-tab-page.d.ts +10 -10
  21. package/dist-client/pages/meta-main-tab-element.d.ts +9 -9
  22. package/dist-client/pages/meta-main-tab-page.d.ts +9 -9
  23. package/dist-client/pages/meta-master-detail-element.d.ts +9 -9
  24. package/dist-client/pages/meta-master-detail-page.d.ts +9 -9
  25. package/dist-client/pages/meta-tab-detail-element.d.ts +9 -9
  26. package/dist-client/pages/meta-tab-detail-page.d.ts +9 -9
  27. package/dist-client/pages/meta-tab-element.d.ts +7 -7
  28. package/dist-client/pages/work-code/work-code-detail-popup.d.ts +9 -9
  29. package/dist-client/tsconfig.tsbuildinfo +1 -1
  30. package/dist-server/tsconfig.tsbuildinfo +1 -1
  31. package/package.json +9 -9
@@ -6,13 +6,13 @@ export function MetaBaseMixin(baseElement: any): {
6
6
  ********************************************************
7
7
  * @returns {Boolean} 엘리먼트 여부
8
8
  */
9
- readonly isElement: boolean;
9
+ get isElement(): boolean;
10
10
  /**
11
11
  * @description 페이지 내 포함된 하나의 컴포넌트 여부
12
12
  *******************************************
13
13
  * @returns {Boolean} 컴포넌트 여부
14
14
  */
15
- readonly isDetail: boolean;
15
+ get isDetail(): boolean;
16
16
  /**
17
17
  * @description 시나리오 기반 데이터 변경 이벤트 핸들러
18
18
  **********************************************
@@ -34,14 +34,14 @@ export function MetaBaseMixin(baseElement: any): {
34
34
  *************************************
35
35
  * @returns {Boolean} 팝업 오픈 여부
36
36
  */
37
- readonly isPopup: boolean;
37
+ get isPopup(): boolean;
38
38
  /**
39
39
  * @description 페이지 여부 리턴 (마스터 디테일의 디테일 엘리먼트나 팝업 화면은 페이지가 아니다.)
40
40
  * - 페이지란 라우트 정보를 가지는 페이지를 뜻한다.
41
41
  ******************************************
42
42
  * @returns {Boolean} 페이지 여부
43
43
  */
44
- readonly isPage: boolean;
44
+ get isPage(): boolean;
45
45
  /**
46
46
  * @description 메뉴 메타 정보 조회 && 화면 생성을 위한 Configuration 구성
47
47
  *****************************************************************
@@ -85,5 +85,5 @@ export function MetaBaseMixin(baseElement: any): {
85
85
  ***************************
86
86
  * @returns {Object} 프로퍼티 오브젝트
87
87
  */
88
- readonly properties: any;
88
+ get properties(): any;
89
89
  };
@@ -6,19 +6,19 @@ export function MetaBasicGristMixin(baseElement: any): {
6
6
  ***********************
7
7
  * @returns {HTMLElement}
8
8
  */
9
- readonly grist: HTMLElement;
9
+ get grist(): HTMLElement;
10
10
  /**
11
11
  * @description 필터 폼
12
12
  ***********************
13
13
  * @returns {HTMLElement}
14
14
  */
15
- readonly filterForm: HTMLElement;
15
+ get filterForm(): HTMLElement;
16
16
  /**
17
17
  * @description 컨텍스트
18
18
  ***********************
19
19
  * @returns {HTMLElement}
20
20
  */
21
- readonly context: HTMLElement;
21
+ get context(): HTMLElement;
22
22
  /******************************************************
23
23
  * LifeCycle
24
24
  ******************************************************/
@@ -80,11 +80,11 @@ export function MetaBasicGristMixin(baseElement: any): {
80
80
  findOne(id: string): Promise<any>;
81
81
  deleteByIds(ids: string): boolean;
82
82
  updateMultiple(params: any[]): Promise<boolean>;
83
- readonly isElement: boolean;
84
- readonly isDetail: boolean;
83
+ get isElement(): boolean;
84
+ get isDetail(): boolean;
85
85
  dataChangeEventHandler(e: any): Promise<void>;
86
- readonly isPopup: boolean;
87
- readonly isPage: boolean;
86
+ get isPopup(): boolean;
87
+ get isPage(): boolean;
88
88
  getAndParseMenuMeta(): any;
89
89
  menuInfo: any;
90
90
  etcConfig: any;
@@ -98,11 +98,11 @@ export function MetaBasicGristMixin(baseElement: any): {
98
98
  **************************
99
99
  * @returns {Array} 스타일
100
100
  */
101
- readonly styles: any[];
101
+ get styles(): any[];
102
102
  /**
103
103
  * @description 프로퍼티 정의
104
104
  ***************************************
105
105
  * @returns {Object} 프로퍼티
106
106
  */
107
- readonly properties: any;
107
+ get properties(): any;
108
108
  };
@@ -57,13 +57,13 @@ export function MetaButtonMixin(baseElement: any): {
57
57
  findOne(id: string): Promise<any>;
58
58
  deleteByIds(ids: string): boolean;
59
59
  updateMultiple(params: any[]): Promise<boolean>;
60
- readonly isElement: boolean;
61
- readonly isDetail: boolean;
60
+ get isElement(): boolean;
61
+ get isDetail(): boolean;
62
62
  dataChangeEventHandler(e: any): Promise<void>;
63
63
  connectedCallback(): Promise<void>;
64
64
  pageUpdated(changes: any, lifecycle: any, before: any): Promise<void>;
65
- readonly isPopup: boolean;
66
- readonly isPage: boolean;
65
+ get isPopup(): boolean;
66
+ get isPage(): boolean;
67
67
  getAndParseMenuMeta(): any;
68
68
  menuInfo: any;
69
69
  etcConfig: any;
@@ -77,7 +77,7 @@ export function MetaButtonMixin(baseElement: any): {
77
77
  * @description 프로퍼티
78
78
  ***********************
79
79
  */
80
- readonly properties: {
80
+ get properties(): {
81
81
  /**
82
82
  * @description 버튼 구성 정보
83
83
  ***************************
@@ -6,7 +6,7 @@ export function MetaFormMixin(baseElement: any): {
6
6
  ***********************
7
7
  * @returns {HTMLElement}
8
8
  */
9
- readonly context: HTMLElement;
9
+ get context(): HTMLElement;
10
10
  /******************************************************
11
11
  * LifeCycle
12
12
  ******************************************************/
@@ -57,19 +57,19 @@ export function MetaFormMixin(baseElement: any): {
57
57
  ***********************************
58
58
  * @returns {Object} 원본 데이터 (변경 값 무시)
59
59
  */
60
- readonly orgData: any;
60
+ get orgData(): any;
61
61
  /**
62
62
  * @description 변경된 데이터
63
63
  **************************
64
64
  * @returns {Object} 변경된 데이터만
65
65
  */
66
- readonly dirtyData: any;
66
+ get dirtyData(): any;
67
67
  /**
68
68
  * @description 현재 데이터
69
69
  *************************
70
70
  * @returns {Object} 화면에 표현되어 있는 현재 데이터 (수정된 값 반영)
71
71
  */
72
- readonly currentData: any;
72
+ get currentData(): any;
73
73
  /**
74
74
  * @description 레코드 데이터에서 쓰레기 데이터 정리
75
75
  ********************************************
@@ -81,7 +81,7 @@ export function MetaFormMixin(baseElement: any): {
81
81
  *****************************************************
82
82
  * @returns {Object}
83
83
  */
84
- readonly patchData: any;
84
+ get patchData(): any;
85
85
  /********************************************************************
86
86
  * C R U D Functions
87
87
  ********************************************************************/
@@ -125,12 +125,12 @@ export function MetaFormMixin(baseElement: any): {
125
125
  findOne(id: string): Promise<any>;
126
126
  deleteByIds(ids: string): boolean;
127
127
  updateMultiple(params: any[]): Promise<boolean>;
128
- readonly isElement: boolean;
129
- readonly isDetail: boolean;
128
+ get isElement(): boolean;
129
+ get isDetail(): boolean;
130
130
  dataChangeEventHandler(e: any): Promise<void>;
131
131
  pageUpdated(changes: any, lifecycle: any, before: any): Promise<void>;
132
- readonly isPopup: boolean;
133
- readonly isPage: boolean;
132
+ get isPopup(): boolean;
133
+ get isPage(): boolean;
134
134
  getAndParseMenuMeta(): any;
135
135
  menuInfo: any;
136
136
  etcConfig: any;
@@ -143,11 +143,11 @@ export function MetaFormMixin(baseElement: any): {
143
143
  **************************
144
144
  * @returns {Array} 스타일
145
145
  */
146
- readonly styles: any[];
146
+ get styles(): any[];
147
147
  /**
148
148
  * @description 프로퍼티 정의
149
149
  ***************************
150
150
  * @returns {Object} 프로퍼티
151
151
  */
152
- readonly properties: any;
152
+ get properties(): any;
153
153
  };
@@ -6,25 +6,25 @@ export function MetaGristTabMixin(baseElement: any): {
6
6
  ***********************
7
7
  * @returns {HTMLElement}
8
8
  */
9
- readonly grist: HTMLElement;
9
+ get grist(): HTMLElement;
10
10
  /**
11
11
  * @description 필터 폼
12
12
  ***********************
13
13
  * @returns {HTMLElement}
14
14
  */
15
- readonly filterForm: HTMLElement;
15
+ get filterForm(): HTMLElement;
16
16
  /**
17
17
  * @description 디테일 Element
18
18
  *****************************
19
19
  * @returns {HTMLElement}
20
20
  */
21
- readonly detailElement: HTMLElement;
21
+ get detailElement(): HTMLElement;
22
22
  /**
23
23
  * @description 컨텍스트
24
24
  ***********************
25
25
  * @returns {HTMLElement}
26
26
  */
27
- readonly context: HTMLElement;
27
+ get context(): HTMLElement;
28
28
  /******************************************************
29
29
  * LifeCycle
30
30
  ******************************************************/
@@ -104,11 +104,11 @@ export function MetaGristTabMixin(baseElement: any): {
104
104
  findOne(id: string): Promise<any>;
105
105
  deleteByIds(ids: string): boolean;
106
106
  updateMultiple(params: any[]): Promise<boolean>;
107
- readonly isElement: boolean;
108
- readonly isDetail: boolean;
107
+ get isElement(): boolean;
108
+ get isDetail(): boolean;
109
109
  dataChangeEventHandler(e: any): Promise<void>;
110
- readonly isPopup: boolean;
111
- readonly isPage: boolean;
110
+ get isPopup(): boolean;
111
+ get isPage(): boolean;
112
112
  getAndParseMenuMeta(): any;
113
113
  menuInfo: any;
114
114
  etcConfig: any;
@@ -122,11 +122,11 @@ export function MetaGristTabMixin(baseElement: any): {
122
122
  **************************
123
123
  * @returns {Array} 스타일
124
124
  */
125
- readonly styles: any[];
125
+ get styles(): any[];
126
126
  /**
127
127
  * @description 프로퍼티 정의
128
128
  ****************************
129
129
  * @returns {Object} 프로퍼티
130
130
  */
131
- readonly properties: any;
131
+ get properties(): any;
132
132
  };
@@ -6,19 +6,19 @@ export function MetaMainTabMixin(baseElement: any): {
6
6
  ***********************
7
7
  * @returns {HTMLElement}
8
8
  */
9
- readonly grist: HTMLElement;
9
+ get grist(): HTMLElement;
10
10
  /**
11
11
  * @description 필터 폼
12
12
  ***********************
13
13
  * @returns {HTMLElement}
14
14
  */
15
- readonly filterForm: HTMLElement;
15
+ get filterForm(): HTMLElement;
16
16
  /**
17
17
  * @description 컨텍스트
18
18
  ***********************
19
19
  * @returns {HTMLElement}
20
20
  */
21
- readonly context: HTMLElement;
21
+ get context(): HTMLElement;
22
22
  /******************************************************
23
23
  * LifeCycle
24
24
  ******************************************************/
@@ -80,12 +80,12 @@ export function MetaMainTabMixin(baseElement: any): {
80
80
  findOne(id: string): Promise<any>;
81
81
  deleteByIds(ids: string): boolean;
82
82
  updateMultiple(params: any[]): Promise<boolean>;
83
- readonly isElement: boolean;
84
- readonly isDetail: boolean;
83
+ get isElement(): boolean;
84
+ get isDetail(): boolean;
85
85
  dataChangeEventHandler(e: any): Promise<void>;
86
86
  pageUpdated(changes: any, lifecycle: any, before: any): Promise<void>;
87
- readonly isPopup: boolean;
88
- readonly isPage: boolean;
87
+ get isPopup(): boolean;
88
+ get isPage(): boolean;
89
89
  getAndParseMenuMeta(): any;
90
90
  menuInfo: any;
91
91
  etcConfig: any;
@@ -99,11 +99,11 @@ export function MetaMainTabMixin(baseElement: any): {
99
99
  **************************
100
100
  * @returns {Array} 스타일
101
101
  */
102
- readonly styles: any[];
102
+ get styles(): any[];
103
103
  /**
104
104
  * @description 프로퍼티 정의
105
105
  ***************************
106
106
  * @returns {Object} 프로퍼티
107
107
  */
108
- readonly properties: any;
108
+ get properties(): any;
109
109
  };
@@ -6,19 +6,19 @@ export function MetaMasterDetailMixin(baseElement: any): {
6
6
  ***********************
7
7
  * @returns {HTMLElement}
8
8
  */
9
- readonly grist: HTMLElement;
9
+ get grist(): HTMLElement;
10
10
  /**
11
11
  * @description 필터 폼
12
12
  ***********************
13
13
  * @returns {HTMLElement}
14
14
  */
15
- readonly filterForm: HTMLElement;
15
+ get filterForm(): HTMLElement;
16
16
  /**
17
17
  * @description 컨텍스트
18
18
  ***********************
19
19
  * @returns {HTMLElement}
20
20
  */
21
- readonly context: HTMLElement;
21
+ get context(): HTMLElement;
22
22
  /******************************************************
23
23
  * LifeCycle
24
24
  ******************************************************/
@@ -143,12 +143,12 @@ export function MetaMasterDetailMixin(baseElement: any): {
143
143
  findOne(id: string): Promise<any>;
144
144
  deleteByIds(ids: string): boolean;
145
145
  updateMultiple(params: any[]): Promise<boolean>;
146
- readonly isElement: boolean;
147
- readonly isDetail: boolean;
146
+ get isElement(): boolean;
147
+ get isDetail(): boolean;
148
148
  dataChangeEventHandler(e: any): Promise<void>;
149
149
  pageUpdated(changes: any, lifecycle: any, before: any): Promise<void>;
150
- readonly isPopup: boolean;
151
- readonly isPage: boolean;
150
+ get isPopup(): boolean;
151
+ get isPage(): boolean;
152
152
  getAndParseMenuMeta(): any;
153
153
  menuInfo: any;
154
154
  etcConfig: any;
@@ -162,11 +162,11 @@ export function MetaMasterDetailMixin(baseElement: any): {
162
162
  **************************
163
163
  * @returns {Array} 스타일
164
164
  */
165
- readonly styles: any[];
165
+ get styles(): any[];
166
166
  /**
167
167
  * @description 프로퍼티 정의
168
168
  ****************************
169
169
  * @returns {Object} 프로퍼티
170
170
  */
171
- readonly properties: any;
171
+ get properties(): any;
172
172
  };
@@ -41,13 +41,13 @@ export function MetaServiceMixin(baseElement: any): {
41
41
  * @param {Array} params
42
42
  */
43
43
  updateMultiple(params: any[]): Promise<boolean>;
44
- readonly isElement: boolean;
45
- readonly isDetail: boolean;
44
+ get isElement(): boolean;
45
+ get isDetail(): boolean;
46
46
  dataChangeEventHandler(e: any): Promise<void>;
47
47
  connectedCallback(): Promise<void>;
48
48
  pageUpdated(changes: any, lifecycle: any, before: any): Promise<void>;
49
- readonly isPopup: boolean;
50
- readonly isPage: boolean;
49
+ get isPopup(): boolean;
50
+ get isPage(): boolean;
51
51
  getAndParseMenuMeta(): any;
52
52
  menuInfo: any;
53
53
  etcConfig: any;
@@ -62,5 +62,5 @@ export function MetaServiceMixin(baseElement: any): {
62
62
  ******************************
63
63
  * @returns {Object} 프로퍼티
64
64
  */
65
- readonly properties: any;
65
+ get properties(): any;
66
66
  };
@@ -6,19 +6,19 @@ export function MetaTabDetailMixin(baseElement: any): {
6
6
  ***********************
7
7
  * @returns {HTMLElement}
8
8
  */
9
- readonly grist: HTMLElement;
9
+ get grist(): HTMLElement;
10
10
  /**
11
11
  * @description 필터 폼
12
12
  ***********************
13
13
  * @returns {HTMLElement}
14
14
  */
15
- readonly filterForm: HTMLElement;
15
+ get filterForm(): HTMLElement;
16
16
  /**
17
17
  * @description 컨텍스트
18
18
  ***********************
19
19
  * @returns {HTMLElement}
20
20
  */
21
- readonly context: HTMLElement;
21
+ get context(): HTMLElement;
22
22
  /******************************************************
23
23
  * LifeCycle
24
24
  ******************************************************/
@@ -81,12 +81,12 @@ export function MetaTabDetailMixin(baseElement: any): {
81
81
  findOne(id: string): Promise<any>;
82
82
  deleteByIds(ids: string): boolean;
83
83
  updateMultiple(params: any[]): Promise<boolean>;
84
- readonly isElement: boolean;
85
- readonly isDetail: boolean;
84
+ get isElement(): boolean;
85
+ get isDetail(): boolean;
86
86
  dataChangeEventHandler(e: any): Promise<void>;
87
87
  pageUpdated(changes: any, lifecycle: any, before: any): Promise<void>;
88
- readonly isPopup: boolean;
89
- readonly isPage: boolean;
88
+ get isPopup(): boolean;
89
+ get isPage(): boolean;
90
90
  getAndParseMenuMeta(): any;
91
91
  menuInfo: any;
92
92
  etcConfig: any;
@@ -100,11 +100,11 @@ export function MetaTabDetailMixin(baseElement: any): {
100
100
  **************************
101
101
  * @returns {Array} 스타일
102
102
  */
103
- readonly styles: any[];
103
+ get styles(): any[];
104
104
  /**
105
105
  * @description 프로퍼티 정의
106
106
  ***************************************
107
107
  * @returns {Object} 프로퍼티
108
108
  */
109
- readonly properties: any;
109
+ get properties(): any;
110
110
  };
@@ -6,7 +6,7 @@ export function MetaTabMixin(baseElement: any): {
6
6
  ***********************
7
7
  * @returns {HTMLElement}
8
8
  */
9
- readonly context: HTMLElement;
9
+ get context(): HTMLElement;
10
10
  /******************************************************
11
11
  * LifeCycle
12
12
  ******************************************************/
@@ -78,12 +78,12 @@ export function MetaTabMixin(baseElement: any): {
78
78
  findOne(id: string): Promise<any>;
79
79
  deleteByIds(ids: string): boolean;
80
80
  updateMultiple(params: any[]): Promise<boolean>;
81
- readonly isElement: boolean;
82
- readonly isDetail: boolean;
81
+ get isElement(): boolean;
82
+ get isDetail(): boolean;
83
83
  dataChangeEventHandler(e: any): Promise<void>;
84
84
  pageUpdated(changes: any, lifecycle: any, before: any): Promise<void>;
85
- readonly isPopup: boolean;
86
- readonly isPage: boolean;
85
+ get isPopup(): boolean;
86
+ get isPage(): boolean;
87
87
  getAndParseMenuMeta(): any;
88
88
  menuInfo: any;
89
89
  etcConfig: any;
@@ -98,11 +98,11 @@ export function MetaTabMixin(baseElement: any): {
98
98
  **************************
99
99
  * @returns {Array} 스타일
100
100
  */
101
- readonly styles: any[];
101
+ get styles(): any[];
102
102
  /**
103
103
  * @description 프로퍼티 정의
104
104
  **************************
105
105
  * @returns {Object} 프로퍼티
106
106
  */
107
- readonly properties: any;
107
+ get properties(): any;
108
108
  };
@@ -8,12 +8,12 @@ declare const MetaActivityViewerElement_base: {
8
8
  getMenuInfo(id: any, menuRouting: any): Promise<void>;
9
9
  };
10
10
  [x: string]: any;
11
- readonly properties: {
11
+ get properties(): {
12
12
  activityId: StringConstructor;
13
13
  input: ObjectConstructor;
14
14
  output: ObjectConstructor;
15
15
  };
16
- readonly styles: import("lit").CSSResult;
16
+ get styles(): import("lit").CSSResult;
17
17
  };
18
18
  /**
19
19
  * @description Auto Generate Activity Viewer Element
@@ -8,12 +8,12 @@ declare const MetaActivityWriterElement_base: {
8
8
  getMenuInfo(id: any, menuRouting: any): Promise<void>;
9
9
  };
10
10
  [x: string]: any;
11
- readonly properties: {
11
+ get properties(): {
12
12
  activityId: StringConstructor;
13
13
  input: ObjectConstructor;
14
14
  output: ObjectConstructor;
15
15
  };
16
- readonly styles: import("lit").CSSResult;
16
+ get styles(): import("lit").CSSResult;
17
17
  };
18
18
  /**
19
19
  * @description Auto Generate Activity Write Element
@@ -8,10 +8,10 @@ export function MetaActivityMixin(baseElement: any): {
8
8
  getMenuInfo(id: any, menuRouting: any): Promise<void>;
9
9
  };
10
10
  [x: string]: any;
11
- readonly properties: {
11
+ get properties(): {
12
12
  activityId: StringConstructor;
13
13
  input: ObjectConstructor;
14
14
  output: ObjectConstructor;
15
15
  };
16
- readonly styles: import("lit").CSSResult;
16
+ get styles(): import("lit").CSSResult;
17
17
  };
@@ -1,9 +1,9 @@
1
1
  declare const ButtonRoleDetail_base: {
2
2
  new (): {
3
3
  [x: string]: any;
4
- readonly grist: HTMLElement;
5
- readonly filterForm: HTMLElement;
6
- readonly context: HTMLElement;
4
+ get grist(): HTMLElement;
5
+ get filterForm(): HTMLElement;
6
+ get context(): HTMLElement;
7
7
  connectedCallback(): Promise<void>;
8
8
  gristId: string | undefined;
9
9
  filterFormId: string | undefined;
@@ -46,11 +46,11 @@ declare const ButtonRoleDetail_base: {
46
46
  findOne(id: string): Promise<any>;
47
47
  deleteByIds(ids: string): boolean;
48
48
  updateMultiple(params: any[]): Promise<boolean>;
49
- readonly isElement: boolean;
50
- readonly isDetail: boolean;
49
+ get isElement(): boolean;
50
+ get isDetail(): boolean;
51
51
  dataChangeEventHandler(e: any): Promise<void>;
52
- readonly isPopup: boolean;
53
- readonly isPage: boolean;
52
+ get isPopup(): boolean;
53
+ get isPage(): boolean;
54
54
  getAndParseMenuMeta(): any;
55
55
  menuInfo: any;
56
56
  etcConfig: any;
@@ -59,8 +59,8 @@ declare const ButtonRoleDetail_base: {
59
59
  setParentId(id: string): void;
60
60
  parent_id: string | undefined;
61
61
  };
62
- readonly styles: any[];
63
- readonly properties: any;
62
+ get styles(): any[];
63
+ get properties(): any;
64
64
  };
65
65
  export class ButtonRoleDetail extends ButtonRoleDetail_base {
66
66
  defaultPageConfig: any;
@@ -1,9 +1,9 @@
1
1
  declare const ButtonRolePage_base: {
2
2
  new (): {
3
3
  [x: string]: any;
4
- readonly grist: HTMLElement;
5
- readonly filterForm: HTMLElement;
6
- readonly context: HTMLElement;
4
+ get grist(): HTMLElement;
5
+ get filterForm(): HTMLElement;
6
+ get context(): HTMLElement;
7
7
  connectedCallback(): Promise<void>;
8
8
  gristId: string | undefined;
9
9
  filterFormId: string | undefined;
@@ -55,12 +55,12 @@ declare const ButtonRolePage_base: {
55
55
  findOne(id: string): Promise<any>;
56
56
  deleteByIds(ids: string): boolean;
57
57
  updateMultiple(params: any[]): Promise<boolean>;
58
- readonly isElement: boolean;
59
- readonly isDetail: boolean;
58
+ get isElement(): boolean;
59
+ get isDetail(): boolean;
60
60
  dataChangeEventHandler(e: any): Promise<void>;
61
61
  pageUpdated(changes: any, lifecycle: any, before: any): Promise<void>;
62
- readonly isPopup: boolean;
63
- readonly isPage: boolean;
62
+ get isPopup(): boolean;
63
+ get isPage(): boolean;
64
64
  getAndParseMenuMeta(): any;
65
65
  menuInfo: any;
66
66
  etcConfig: any;
@@ -69,8 +69,8 @@ declare const ButtonRolePage_base: {
69
69
  setParentId(id: string): void;
70
70
  parent_id: string | undefined;
71
71
  };
72
- readonly styles: any[];
73
- readonly properties: any;
72
+ get styles(): any[];
73
+ get properties(): any;
74
74
  };
75
75
  /**
76
76
  * @description Meta API로 버튼 권한 생성
@@ -1,7 +1,7 @@
1
1
  declare const MetaFormElement_base: {
2
2
  new (): {
3
3
  [x: string]: any;
4
- readonly context: HTMLElement;
4
+ get context(): HTMLElement;
5
5
  connectedCallback(): Promise<void>;
6
6
  dataSet: any;
7
7
  parent_id: string | undefined;
@@ -15,11 +15,11 @@ declare const MetaFormElement_base: {
15
15
  formRenderConfig: any;
16
16
  parseFormConfigs(): Promise<void>;
17
17
  formConfigSet: any;
18
- readonly orgData: any;
19
- readonly dirtyData: any;
20
- readonly currentData: any;
18
+ get orgData(): any;
19
+ get dirtyData(): any;
20
+ get currentData(): any;
21
21
  removeGarbageData(data: any): any;
22
- readonly patchData: any;
22
+ get patchData(): any;
23
23
  fetch(): Promise<void>;
24
24
  save(): boolean;
25
25
  clear(): Promise<void>;
@@ -42,12 +42,12 @@ declare const MetaFormElement_base: {
42
42
  findOne(id: string): Promise<any>;
43
43
  deleteByIds(ids: string): boolean;
44
44
  updateMultiple(params: any[]): Promise<boolean>;
45
- readonly isElement: boolean;
46
- readonly isDetail: boolean;
45
+ get isElement(): boolean;
46
+ get isDetail(): boolean;
47
47
  dataChangeEventHandler(e: any): Promise<void>;
48
48
  pageUpdated(changes: any, lifecycle: any, before: any): Promise<void>;
49
- readonly isPopup: boolean;
50
- readonly isPage: boolean;
49
+ get isPopup(): boolean;
50
+ get isPage(): boolean;
51
51
  getAndParseMenuMeta(): any;
52
52
  menuInfo: any;
53
53
  etcConfig: any;
@@ -55,8 +55,8 @@ declare const MetaFormElement_base: {
55
55
  executeCallScenarioButtonClick(action: any, params: any, afterCallback: Function): Promise<void>;
56
56
  setParentId(id: string): void;
57
57
  };
58
- readonly styles: any[];
59
- readonly properties: any;
58
+ get styles(): any[];
59
+ get properties(): any;
60
60
  };
61
61
  export class MetaFormElement extends MetaFormElement_base {
62
62
  }