@ldmjs/ui 1.0.71 → 1.0.73
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/css/calendar.css +1 -7
- package/dist/css/index.css +4 -4
- package/dist/index.js +102 -71
- package/dist/lib/calendar.js +1 -1
- package/dist/types/dialogs.d.ts +7 -0
- package/package.json +1 -1
package/dist/types/dialogs.d.ts
CHANGED
|
@@ -64,6 +64,7 @@ export interface IModalInfo {
|
|
|
64
64
|
height: string | number;
|
|
65
65
|
noModal?: boolean;
|
|
66
66
|
};
|
|
67
|
+
help?: boolean;
|
|
67
68
|
/* eslint-disable-next-line @typescript-eslint/no-explicit-any */
|
|
68
69
|
resolveFunction?: (data?: any) => void;
|
|
69
70
|
/**
|
|
@@ -144,6 +145,7 @@ export class InfoDialog extends Dialog {
|
|
|
144
145
|
minimizable?: boolean;
|
|
145
146
|
description?: string;
|
|
146
147
|
hostObject?: IHostObject;
|
|
148
|
+
help?: boolean;
|
|
147
149
|
constructor(data: {
|
|
148
150
|
title: string;
|
|
149
151
|
component: string;
|
|
@@ -157,6 +159,7 @@ export class InfoDialog extends Dialog {
|
|
|
157
159
|
minimizable?: boolean;
|
|
158
160
|
description?: string;
|
|
159
161
|
hostObject?: IHostObject;
|
|
162
|
+
help?: boolean;
|
|
160
163
|
});
|
|
161
164
|
}
|
|
162
165
|
|
|
@@ -187,6 +190,7 @@ export class SelectDialog<T> {
|
|
|
187
190
|
okTitle?: string;
|
|
188
191
|
cancelTitle?: string;
|
|
189
192
|
hostObject?: IHostObject;
|
|
193
|
+
help?: boolean;
|
|
190
194
|
constructor(data: {
|
|
191
195
|
title: string;
|
|
192
196
|
component: string;
|
|
@@ -207,6 +211,7 @@ export class SelectDialog<T> {
|
|
|
207
211
|
okTitle?: string;
|
|
208
212
|
cancelTitle?: string;
|
|
209
213
|
hostObject?: IHostObject;
|
|
214
|
+
help?: boolean;
|
|
210
215
|
});
|
|
211
216
|
}
|
|
212
217
|
|
|
@@ -242,6 +247,7 @@ export class CreateEditDialog<T> {
|
|
|
242
247
|
noModal?: boolean;
|
|
243
248
|
okTitle?: string;
|
|
244
249
|
cancelTitle?: string;
|
|
250
|
+
help?: boolean;
|
|
245
251
|
constructor(data: {
|
|
246
252
|
title: string;
|
|
247
253
|
component: string;
|
|
@@ -274,5 +280,6 @@ export class CreateEditDialog<T> {
|
|
|
274
280
|
noModal?: boolean;
|
|
275
281
|
okTitle?: string;
|
|
276
282
|
cancelTitle?: string;
|
|
283
|
+
help?: boolean;
|
|
277
284
|
});
|
|
278
285
|
}
|