@omnia/fx 8.0.382-dev → 8.0.384-dev
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/internal-do-not-import-from-here/services/SecurityService.d.ts +2 -1
- package/internal-do-not-import-from-here/ux/ComponentTypings.d.ts +225 -231
- package/internal-do-not-import-from-here/ux/InternalDefineComponent.d.ts +2 -1
- package/internal-do-not-import-from-here/ux/admin/system/submenu/customemail/loc/localize.d.ts +4 -0
- package/internal-do-not-import-from-here/ux/appprovisioning/components/AppInstanceTemplatePickerVueComponent.d.ts +2 -1
- package/internal-do-not-import-from-here/ux/appprovisioning/components/index.d.ts +0 -1
- package/internal-do-not-import-from-here/ux/aurora/admin/blades/blueprints/components/store/ButtonsEditorStore.d.ts +4 -4
- package/internal-do-not-import-from-here/ux/aurora/admin/blades/blueprints/components/store/ComponentEditorStore.d.ts +3 -3
- package/internal-do-not-import-from-here/ux/aurora/components/buttonstyle/ButtonStylePicker.d.ts +3 -1
- package/internal-do-not-import-from-here/ux/fileuploader/FileUploader.d.ts +31 -0
- package/internal-do-not-import-from-here/ux/identities/IdentityRenderer.d.ts +6 -6
- package/internal-do-not-import-from-here/ux/inputtoken/InputToken.d.ts +23 -30
- package/internal-do-not-import-from-here/ux/journey/JourneyBlade.css.d.ts +1 -1
- package/internal-do-not-import-from-here/ux/journey/JourneyBlade.d.ts +2 -2
- package/internal-do-not-import-from-here/ux/journey/SettingsJourneyMenu.d.ts +4 -3
- package/internal-do-not-import-from-here/ux/journey/models/SettingsBladeRegistration.d.ts +1 -1
- package/internal-do-not-import-from-here/ux/journey/stores/JourneyStore.d.ts +58 -1
- package/internal-do-not-import-from-here/ux/optionpicker/OptionPicker.d.ts +27 -79
- package/internal-do-not-import-from-here/ux/oxide/avatar/Avatar.d.ts +1 -1
- package/internal-do-not-import-from-here/ux/oxide/badge/Badge.d.ts +2 -2
- package/internal-do-not-import-from-here/ux/oxide/btn/Button.d.ts +2 -2
- package/internal-do-not-import-from-here/ux/oxide/dialog/Dialog.d.ts +4 -3
- package/internal-do-not-import-from-here/ux/oxide/scrollcontainer/ScrollContainer.d.ts +1 -1
- package/internal-do-not-import-from-here/ux/oxide/select/Select.d.ts +2 -2
- package/internal-do-not-import-from-here/ux/oxide/speeddial/SpeedDial.d.ts +2 -2
- package/internal-do-not-import-from-here/ux/oxide/treeview/OTreeViewV3.d.ts +1 -1
- package/internal-do-not-import-from-here/ux/oxide/treeview/Treeview.d.ts +1 -1
- package/internal-do-not-import-from-here/ux/properties/models/PropertyPicker.d.ts +2 -0
- package/internal-do-not-import-from-here/ux/properties/property-picker/PropertyPicker.d.ts +1 -1
- package/internal-do-not-import-from-here/ux/selection/SelectionComponent.d.ts +21 -21
- package/internal-do-not-import-from-here/ux/sitelogoicon/SiteLogoIcon.d.ts +9 -12
- package/internal-do-not-import-from-here/wctypings.d.ts +28 -0
- package/package.json +3 -3
@@ -1,5 +1,5 @@
|
|
1
1
|
import { OmniaContext } from "../contexts";
|
2
|
-
import { guid, OmniaRole, PermissionBinding, RolePermissionSettingWithContextParam, AzurePermissionResource, AuthenticationSettings, AuthenticationConfiguration } from "../models";
|
2
|
+
import { guid, OmniaRole, PermissionBinding, RolePermissionSettingWithContextParam, AzurePermissionResource, AuthenticationSettings, AuthenticationConfiguration, AzureAdEnvironment } from "../models";
|
3
3
|
export declare class SecurityService {
|
4
4
|
private serviceContainerContext;
|
5
5
|
omniaContext: OmniaContext;
|
@@ -19,6 +19,7 @@ export declare class SecurityService {
|
|
19
19
|
getAuthenticationSettingsByUserTypeId: (userTypeId: guid) => Promise<AuthenticationSettings>;
|
20
20
|
saveAuthenticationSettings: (authConfig: AuthenticationConfiguration) => Promise<void>;
|
21
21
|
validateAzureAdPermissionsSynced: (permissionIds: Array<string>) => Promise<boolean>;
|
22
|
+
getAzureAdEnvironment: () => Promise<AzureAdEnvironment>;
|
22
23
|
syncAzureAdPermissions: () => Promise<void>;
|
23
24
|
private createHttpClientFromServiceId;
|
24
25
|
}
|
@@ -96,237 +96,231 @@ export interface VRadioSlots extends VuetifySlots<VuetifyProps<Pick<VRadio, "$pr
|
|
96
96
|
}
|
97
97
|
export interface VCheckboxSlots extends VuetifySlots<VuetifyProps<Pick<VCheckbox, "$props">>> {
|
98
98
|
}
|
99
|
-
declare
|
100
|
-
|
101
|
-
|
102
|
-
|
103
|
-
|
104
|
-
|
105
|
-
|
106
|
-
|
107
|
-
|
108
|
-
|
109
|
-
|
110
|
-
|
111
|
-
|
112
|
-
|
113
|
-
|
114
|
-
|
115
|
-
|
116
|
-
|
117
|
-
|
118
|
-
|
119
|
-
|
120
|
-
|
121
|
-
|
122
|
-
|
123
|
-
|
124
|
-
|
125
|
-
|
126
|
-
|
127
|
-
|
128
|
-
|
129
|
-
|
130
|
-
|
131
|
-
|
132
|
-
|
133
|
-
|
134
|
-
|
135
|
-
|
136
|
-
|
137
|
-
|
138
|
-
|
139
|
-
|
140
|
-
|
141
|
-
|
142
|
-
|
143
|
-
|
144
|
-
|
145
|
-
|
146
|
-
|
147
|
-
|
148
|
-
|
149
|
-
|
150
|
-
|
151
|
-
|
152
|
-
|
153
|
-
|
154
|
-
|
155
|
-
|
156
|
-
|
157
|
-
|
158
|
-
|
159
|
-
|
160
|
-
|
161
|
-
|
162
|
-
|
163
|
-
|
164
|
-
|
165
|
-
|
166
|
-
|
167
|
-
|
168
|
-
|
169
|
-
|
170
|
-
|
171
|
-
|
172
|
-
|
173
|
-
|
174
|
-
|
175
|
-
|
176
|
-
|
177
|
-
|
178
|
-
|
179
|
-
|
180
|
-
|
181
|
-
|
182
|
-
|
183
|
-
|
184
|
-
|
185
|
-
|
186
|
-
|
187
|
-
|
188
|
-
|
189
|
-
|
190
|
-
|
191
|
-
|
192
|
-
|
193
|
-
|
194
|
-
|
195
|
-
|
196
|
-
|
197
|
-
|
198
|
-
|
199
|
-
|
200
|
-
|
201
|
-
|
202
|
-
|
203
|
-
|
204
|
-
|
205
|
-
|
206
|
-
|
207
|
-
|
208
|
-
|
209
|
-
|
210
|
-
|
211
|
-
|
212
|
-
|
213
|
-
|
214
|
-
|
215
|
-
|
216
|
-
|
217
|
-
|
218
|
-
|
219
|
-
|
220
|
-
|
221
|
-
|
222
|
-
|
223
|
-
|
224
|
-
|
225
|
-
|
226
|
-
|
227
|
-
|
228
|
-
|
229
|
-
|
230
|
-
|
231
|
-
|
232
|
-
|
233
|
-
|
234
|
-
|
235
|
-
|
236
|
-
|
237
|
-
|
238
|
-
|
239
|
-
|
240
|
-
|
241
|
-
|
242
|
-
|
243
|
-
|
244
|
-
|
245
|
-
|
246
|
-
|
247
|
-
|
248
|
-
|
249
|
-
|
250
|
-
|
251
|
-
|
252
|
-
|
253
|
-
|
254
|
-
|
255
|
-
|
256
|
-
|
257
|
-
|
258
|
-
|
259
|
-
|
260
|
-
|
261
|
-
|
262
|
-
|
263
|
-
|
264
|
-
|
265
|
-
|
266
|
-
|
267
|
-
|
268
|
-
|
269
|
-
|
270
|
-
|
271
|
-
|
272
|
-
|
273
|
-
|
274
|
-
|
275
|
-
|
276
|
-
|
277
|
-
|
278
|
-
|
279
|
-
|
280
|
-
|
281
|
-
|
282
|
-
|
283
|
-
|
284
|
-
|
285
|
-
|
286
|
-
|
287
|
-
|
288
|
-
|
289
|
-
|
290
|
-
|
291
|
-
|
292
|
-
|
293
|
-
|
294
|
-
|
295
|
-
|
296
|
-
|
297
|
-
|
298
|
-
|
299
|
-
|
300
|
-
|
301
|
-
|
302
|
-
|
303
|
-
|
304
|
-
|
305
|
-
|
306
|
-
|
307
|
-
|
308
|
-
|
309
|
-
|
310
|
-
|
311
|
-
|
312
|
-
|
313
|
-
|
314
|
-
|
315
|
-
|
316
|
-
|
317
|
-
|
318
|
-
|
319
|
-
|
320
|
-
|
321
|
-
|
322
|
-
|
323
|
-
|
324
|
-
[name: string]: any;
|
325
|
-
};
|
326
|
-
"v-icon": VuetifyProps<Pick<VIcon, "$props">> & {
|
327
|
-
[name: string]: any;
|
328
|
-
};
|
329
|
-
}
|
99
|
+
declare module "vue" {
|
100
|
+
interface HTMLAttributes {
|
101
|
+
"v-intersect"?: VuetifyValue<Pick<Parameters<typeof Intersect.mounted>[1], "value">>;
|
102
|
+
}
|
103
|
+
interface IntrinsicElementAttributes {
|
104
|
+
"v-tabs": VuetifyProps<Pick<VTabs, "$props">> & {
|
105
|
+
[name: string]: any;
|
106
|
+
};
|
107
|
+
"v-tab": VuetifyProps<Pick<VTab, "$props">> & {
|
108
|
+
[name: string]: any;
|
109
|
+
};
|
110
|
+
"v-calendar": VuetifyProps<Pick<VCalendar, "$props">> & {
|
111
|
+
[name: string]: any;
|
112
|
+
};
|
113
|
+
"v-treeview": VuetifyProps<Pick<VTreeview, "$props">> & {
|
114
|
+
[name: string]: any;
|
115
|
+
};
|
116
|
+
"v-speed-dial": VuetifyProps<Pick<VSpeedDial, "$props">> & {
|
117
|
+
[name: string]: any;
|
118
|
+
};
|
119
|
+
"v-fab": VuetifyProps<Pick<VFab, "$props">> & {
|
120
|
+
[name: string]: any;
|
121
|
+
};
|
122
|
+
"v-number-input": VuetifyProps<Pick<VNumberInput, "$props">> & {
|
123
|
+
[name: string]: any;
|
124
|
+
};
|
125
|
+
"v-time-picker": VuetifyProps<Pick<VTimePicker, "$props">> & {
|
126
|
+
[name: string]: any;
|
127
|
+
};
|
128
|
+
"v-lazy": VuetifyProps<Pick<VLazy, "$props">> & {
|
129
|
+
[name: string]: any;
|
130
|
+
};
|
131
|
+
"v-col": VuetifyProps<Pick<VCol, "$props">> & {
|
132
|
+
[name: string]: any;
|
133
|
+
};
|
134
|
+
"v-tooltip": VuetifyProps<Pick<VTooltip, "$props">> & {
|
135
|
+
[name: string]: any;
|
136
|
+
};
|
137
|
+
"v-textarea": VuetifyProps<Pick<VTextarea, "$props">> & {
|
138
|
+
[name: string]: any;
|
139
|
+
};
|
140
|
+
"v-radio-group": VuetifyProps<Pick<VRadioGroup, "$props">> & {
|
141
|
+
[name: string]: any;
|
142
|
+
};
|
143
|
+
"v-switch": VuetifyProps<Pick<VSwitch, "$props">> & {
|
144
|
+
[name: string]: any;
|
145
|
+
};
|
146
|
+
"v-form": VuetifyProps<Pick<VForm, "$props">> & {
|
147
|
+
[name: string]: any;
|
148
|
+
};
|
149
|
+
"v-badge": VuetifyProps<Pick<VBadge, "$props">> & {
|
150
|
+
[name: string]: any;
|
151
|
+
};
|
152
|
+
"v-breadcrumbs": VuetifyProps<Pick<VBreadcrumbs, "$props">> & {
|
153
|
+
[name: string]: any;
|
154
|
+
};
|
155
|
+
"v-select": VuetifyProps<Pick<VSelect, "$props">> & {
|
156
|
+
[name: string]: any;
|
157
|
+
};
|
158
|
+
"v-chip": VuetifyProps<Pick<VChip, "$props">> & {
|
159
|
+
[name: string]: any;
|
160
|
+
};
|
161
|
+
"v-data-table-server": VuetifyProps<Pick<VDataTableServer, "$props">> & {
|
162
|
+
[name: string]: any;
|
163
|
+
};
|
164
|
+
"v-data-table": VuetifyProps<Pick<VDataTable, "$props">> & {
|
165
|
+
[name: string]: any;
|
166
|
+
};
|
167
|
+
"v-data-table-row": VuetifyProps<Pick<VDataTableRow, "$props">> & {
|
168
|
+
[name: string]: any;
|
169
|
+
};
|
170
|
+
"v-data-table-rows": VuetifyProps<Pick<VDataTableRows, "$props">> & {
|
171
|
+
[name: string]: any;
|
172
|
+
};
|
173
|
+
"v-data-table-virtual": VuetifyProps<Pick<VDataTableVirtual, "$props">> & {
|
174
|
+
[name: string]: any;
|
175
|
+
};
|
176
|
+
"v-checkbox": VuetifyProps<Pick<VCheckbox, "$props">> & {
|
177
|
+
[name: string]: any;
|
178
|
+
};
|
179
|
+
"v-checkbox-btn": VuetifyProps<Pick<VCheckboxBtn, "$props">> & {
|
180
|
+
[name: string]: any;
|
181
|
+
};
|
182
|
+
"v-table": VuetifyProps<Pick<VTable, "$props">> & {
|
183
|
+
[name: string]: any;
|
184
|
+
};
|
185
|
+
"v-text-field": VuetifyProps<Pick<VTextField, "$props">> & {
|
186
|
+
[name: string]: any;
|
187
|
+
};
|
188
|
+
"v-menu": VuetifyProps<Pick<VMenu, "$props">> & {
|
189
|
+
[name: string]: any;
|
190
|
+
};
|
191
|
+
"v-virtual-scroll": VuetifyProps<Pick<VVirtualScroll, "$props">> & {
|
192
|
+
[name: string]: any;
|
193
|
+
};
|
194
|
+
"v-infinite-scroll": VuetifyProps<Pick<VInfiniteScroll, "$props">> & {
|
195
|
+
[name: string]: any;
|
196
|
+
};
|
197
|
+
"v-autocomplete": VuetifyProps<Pick<VAutocomplete, "$props">> & {
|
198
|
+
[name: string]: any;
|
199
|
+
};
|
200
|
+
"v-expansion-panels": VuetifyProps<Pick<VExpansionPanels, "$props">> & {
|
201
|
+
[name: string]: any;
|
202
|
+
};
|
203
|
+
"v-expansion-panel": VuetifyProps<Pick<VExpansionPanel, "$props">> & {
|
204
|
+
[name: string]: any;
|
205
|
+
};
|
206
|
+
"v-expansion-panel-text": VuetifyProps<Pick<VExpansionPanelText, "$props">> & {
|
207
|
+
[name: string]: any;
|
208
|
+
};
|
209
|
+
"v-expansion-panel-title": VuetifyProps<Pick<VExpansionPanelTitle, "$props">> & {
|
210
|
+
[name: string]: any;
|
211
|
+
};
|
212
|
+
"v-card": VuetifyProps<Pick<VCard, "$props">> & {
|
213
|
+
[name: string]: any;
|
214
|
+
};
|
215
|
+
"v-card-actions": VuetifyProps<Pick<VCardActions, "$props">> & {
|
216
|
+
[name: string]: any;
|
217
|
+
};
|
218
|
+
"v-card-item": VuetifyProps<Pick<VCardItem, "$props">> & {
|
219
|
+
[name: string]: any;
|
220
|
+
};
|
221
|
+
"v-card-subtitle": VuetifyProps<Pick<VCardSubtitle, "$props">> & {
|
222
|
+
[name: string]: any;
|
223
|
+
};
|
224
|
+
"v-card-text": VuetifyProps<Pick<VCardText, "$props">> & {
|
225
|
+
[name: string]: any;
|
226
|
+
};
|
227
|
+
"v-card-title": VuetifyProps<Pick<VCardTitle, "$props">> & {
|
228
|
+
[name: string]: any;
|
229
|
+
};
|
230
|
+
"v-btn": VuetifyProps<Pick<VBtn, "$props">> & {
|
231
|
+
[name: string]: any;
|
232
|
+
};
|
233
|
+
"v-btn-group": VuetifyProps<Pick<VBtnGroup, "$props">> & {
|
234
|
+
[name: string]: any;
|
235
|
+
};
|
236
|
+
"v-btn-toggle": VuetifyProps<Pick<VBtnToggle, "$props">> & {
|
237
|
+
[name: string]: any;
|
238
|
+
};
|
239
|
+
"v-navigation-drawer": VuetifyProps<Pick<VNavigationDrawer, "$props">> & {
|
240
|
+
[name: string]: any;
|
241
|
+
};
|
242
|
+
"v-list": VuetifyProps<Pick<VList, "$props">> & {
|
243
|
+
[name: string]: any;
|
244
|
+
};
|
245
|
+
"v-list-item": VuetifyProps<Pick<VListItem, "$props">> & {
|
246
|
+
[name: string]: any;
|
247
|
+
};
|
248
|
+
"v-list-group": VuetifyProps<Pick<VListGroup, "$props">> & {
|
249
|
+
[name: string]: any;
|
250
|
+
};
|
251
|
+
"v-list-img": VuetifyProps<Pick<VListImg, "$props">> & {
|
252
|
+
[name: string]: any;
|
253
|
+
};
|
254
|
+
"v-list-item-action": VuetifyProps<Pick<VListItemAction, "$props">> & {
|
255
|
+
[name: string]: any;
|
256
|
+
};
|
257
|
+
"v-list-item-title": VuetifyProps<Pick<VListItemTitle, "$props">> & {
|
258
|
+
[name: string]: any;
|
259
|
+
};
|
260
|
+
"v-list-item-subtitle": VuetifyProps<Pick<VListItemSubtitle, "$props">> & {
|
261
|
+
[name: string]: any;
|
262
|
+
};
|
263
|
+
"v-list-item-media": VuetifyProps<Pick<VListItemMedia, "$props">> & {
|
264
|
+
[name: string]: any;
|
265
|
+
};
|
266
|
+
"v-list-subheader": VuetifyProps<Pick<VListSubheader, "$props">> & {
|
267
|
+
[name: string]: any;
|
268
|
+
};
|
269
|
+
"v-dialog": VuetifyProps<Pick<VDialog, "$props">> & {
|
270
|
+
[name: string]: any;
|
271
|
+
};
|
272
|
+
"v-dialog-bottom-transition": VuetifyProps<Pick<VDialogBottomTransition, "$props">> & {
|
273
|
+
[name: string]: any;
|
274
|
+
};
|
275
|
+
"v-dialog-top-transition": VuetifyProps<Pick<VDialogTopTransition, "$props">> & {
|
276
|
+
[name: string]: any;
|
277
|
+
};
|
278
|
+
"v-dialog-transition": VuetifyProps<Pick<VDialogTransition, "$props">> & {
|
279
|
+
[name: string]: any;
|
280
|
+
};
|
281
|
+
"v-pagination": VuetifyProps<Pick<VPagination, "$props">> & {
|
282
|
+
[name: string]: any;
|
283
|
+
};
|
284
|
+
"v-date-picker": VuetifyProps<Pick<VDatePicker, "$props">> & {};
|
285
|
+
"v-rating": VuetifyProps<Pick<VRating, "$props">> & {
|
286
|
+
[name: string]: any;
|
287
|
+
};
|
288
|
+
"v-range-slider": VuetifyProps<Pick<VRangeSlider, "$props">> & {
|
289
|
+
[name: string]: any;
|
290
|
+
};
|
291
|
+
"v-snackbar": VuetifyProps<Pick<VSnackbar, "$props">> & {
|
292
|
+
[name: string]: any;
|
293
|
+
};
|
294
|
+
"v-slide-group": VuetifyProps<Pick<VSlideGroup, "$props">> & {
|
295
|
+
[name: string]: any;
|
296
|
+
};
|
297
|
+
"v-slide-group-item": VuetifyProps<Pick<VSlideGroupItem, "$props">> & {
|
298
|
+
[name: string]: any;
|
299
|
+
};
|
300
|
+
"v-stepper": VuetifyProps<Pick<VStepper, "$props">> & {
|
301
|
+
[name: string]: any;
|
302
|
+
};
|
303
|
+
"v-stepper-header": VuetifyProps<Pick<VStepperHeader, "$props">> & {
|
304
|
+
[name: string]: any;
|
305
|
+
};
|
306
|
+
"v-stepper-window": VuetifyProps<Pick<VStepperWindow, "$props">> & {
|
307
|
+
[name: string]: any;
|
308
|
+
};
|
309
|
+
"v-stepper-actions": VuetifyProps<Pick<VStepperActions, "$props">> & {
|
310
|
+
[name: string]: any;
|
311
|
+
};
|
312
|
+
"v-stepper-item": VuetifyProps<Pick<VStepperItem, "$props">> & {
|
313
|
+
[name: string]: any;
|
314
|
+
};
|
315
|
+
"v-stepper-window-item": VuetifyProps<Pick<VStepperWindowItem, "$props">> & {
|
316
|
+
[name: string]: any;
|
317
|
+
};
|
318
|
+
"v-hover": VuetifyProps<Pick<VHover, "$props">> & {
|
319
|
+
[name: string]: any;
|
320
|
+
};
|
321
|
+
"v-icon": VuetifyProps<Pick<VIcon, "$props">> & {
|
322
|
+
[name: string]: any;
|
323
|
+
};
|
330
324
|
}
|
331
325
|
}
|
332
326
|
export {};
|
@@ -1,5 +1,5 @@
|
|
1
1
|
import { SubscriptionHandler } from "@omnia/fx";
|
2
|
-
import { ComponentInjectOptions, ComponentObjectPropsOptions, ComponentOptions, ComponentOptionsBase, ComponentOptionsMixin, ComponentPropsOptions, ComputedOptions, CreateComponentPublicInstance, DefineComponent, EmitsOptions, ExtractDefaultPropTypes, MethodOptions, ObjectEmitsOptions, Prop, PropType, Ref, RenderFunction, Slot, SlotsType, VNode, VNodeArrayChildren, VNodeProps, VNodeTypes, watch, watchEffect } from "vue";
|
2
|
+
import { ComponentInjectOptions, ComponentObjectPropsOptions, ComponentOptions, ComponentOptionsBase, ComponentOptionsMixin, ComponentPropsOptions, ComputedOptions, ComputedRef, CreateComponentPublicInstance, DefineComponent, EmitsOptions, ExtractDefaultPropTypes, MethodOptions, ObjectEmitsOptions, Prop, PropType, Ref, RenderFunction, Slot, SlotsType, VNode, VNodeArrayChildren, VNodeProps, VNodeTypes, watch, watchEffect } from "vue";
|
3
3
|
import { LooseRequired, Prettify, UnionToIntersection } from "@vue/shared";
|
4
4
|
import { ColorSchemaType, ColorSchemaTypes, ComponentBundleManifest, Directives, guid } from "@omnia/fx-models";
|
5
5
|
import { ColorSchemaStoreType, VueComponentBaseProps } from ".";
|
@@ -134,6 +134,7 @@ type InternalSetupContext<ExtractedPropsType, Props, E = EmitsOptions, S extends
|
|
134
134
|
attrs: Data;
|
135
135
|
slots: ExtractVSlots<Props> & S;
|
136
136
|
seo: boolean;
|
137
|
+
mobile: ComputedRef<boolean>;
|
137
138
|
models?: Required<ExtractVModels<Props>>;
|
138
139
|
colors: ReturnType<typeof useColorSchemaSetup>;
|
139
140
|
validator: IValidator;
|
package/internal-do-not-import-from-here/ux/admin/system/submenu/customemail/loc/localize.d.ts
CHANGED
@@ -1,6 +1,10 @@
|
|
1
1
|
export declare namespace CustomEmailSettingsLocalization {
|
2
2
|
const namespace = "Omnia.Fx.Ux.CustomEmailSettings";
|
3
3
|
interface locInterface {
|
4
|
+
New7TestConfigureApplicationAccessPolicyPS: string;
|
5
|
+
New7ConfigureApplicationAccessPolicyPS: string;
|
6
|
+
New7ConfigureApplicationAccessPolicyMessage: string;
|
7
|
+
New7TestConfigureApplicationAccessPolicyMessage: string;
|
4
8
|
Header: string;
|
5
9
|
Email: string;
|
6
10
|
UserMailbox: string;
|
@@ -1,6 +1,6 @@
|
|
1
1
|
import { AppDefinition, AppTemplate, guid } from "@omnia/fx-models";
|
2
2
|
import { DefineEmit } from "@omnia/fx/ux";
|
3
|
-
|
3
|
+
declare const _default: (props: import("@omnia/fx/ux").ExtractProps<{
|
4
4
|
"emit:update:initialAppTemplateId": (value: guid) => void;
|
5
5
|
} & {
|
6
6
|
"v-model:initialAppTemplateId"?: guid;
|
@@ -36,3 +36,4 @@ export declare const AppInstanceTemplatePickerVueComponent: (props: import("@omn
|
|
36
36
|
default?: import("vue").Slot;
|
37
37
|
}, never>;
|
38
38
|
} & {} & Omit<import("@omnia/fx/ux").VueComponentBaseProps, "appDefinitionId" | "colsGrid" | "stylesTemplate" | "isSort" | "showEnabledTemplatesOnly" | "templatesToShow" | "isBlade" | "initialAppTemplateId" | "emit:update:initialAppTemplateId" | "v-model:initialAppTemplateId" | "waitingAfterTemplateSelected" | "wrapperClass" | "emit:handleTemplateSelected"> & import("@omnia/fx/ux").VNodeEvents) => any;
|
39
|
+
export default _default;
|
@@ -1,16 +1,16 @@
|
|
1
|
-
import { ButtonBlueprint, ButtonBlueprintType, ButtonBlueprintVariant, ButtonBlueprints,
|
1
|
+
import { ButtonBlueprint, ButtonBlueprintType, ButtonBlueprintVariant, ButtonBlueprints, ButtonVariant, ComponentBlueprints } from "@omnia/fx-models";
|
2
2
|
export declare const useButtonsEditorStore: () => {
|
3
3
|
state: {
|
4
4
|
blueprints: ButtonBlueprints;
|
5
5
|
editingButtonBlueprint: ButtonBlueprint;
|
6
|
-
editingButtonType:
|
6
|
+
editingButtonType: ButtonVariant;
|
7
7
|
editingButtonBlueprintType: ButtonBlueprintType;
|
8
8
|
strategy: string;
|
9
9
|
};
|
10
10
|
events: import("@omnia/fx/stores").StoreEvents<{
|
11
11
|
blueprints: ButtonBlueprints;
|
12
12
|
editingButtonBlueprint: ButtonBlueprint;
|
13
|
-
editingButtonType:
|
13
|
+
editingButtonType: ButtonVariant;
|
14
14
|
editingButtonBlueprintType: ButtonBlueprintType;
|
15
15
|
strategy: string;
|
16
16
|
}, Record<string, import("@omnia/fx-models").IMessageBusTopicPublishSubscriber<any>>>;
|
@@ -18,7 +18,7 @@ export declare const useButtonsEditorStore: () => {
|
|
18
18
|
setEditingBlueprints(blueprints: ComponentBlueprints): void;
|
19
19
|
addVariant(category: ButtonBlueprintType): ButtonBlueprintVariant;
|
20
20
|
deleteEditingBlueprint(): void;
|
21
|
-
setEditingBlueprint(type: ButtonBlueprintType, buttonType:
|
21
|
+
setEditingBlueprint(type: ButtonBlueprintType, buttonType: ButtonVariant): void;
|
22
22
|
applyChanges(): void;
|
23
23
|
}>;
|
24
24
|
} & {
|
@@ -61,14 +61,14 @@ export declare const useComponentsEditorStore: () => {
|
|
61
61
|
state: {
|
62
62
|
blueprints: import("@omnia/fx-models").ButtonBlueprints;
|
63
63
|
editingButtonBlueprint: import("@omnia/fx-models").ButtonBlueprint;
|
64
|
-
editingButtonType: import("@omnia/fx-models").
|
64
|
+
editingButtonType: import("@omnia/fx-models").ButtonVariant;
|
65
65
|
editingButtonBlueprintType: import("@omnia/fx-models").ButtonBlueprintType;
|
66
66
|
strategy: string;
|
67
67
|
};
|
68
68
|
events: import("@omnia/fx/stores").StoreEvents<{
|
69
69
|
blueprints: import("@omnia/fx-models").ButtonBlueprints;
|
70
70
|
editingButtonBlueprint: import("@omnia/fx-models").ButtonBlueprint;
|
71
|
-
editingButtonType: import("@omnia/fx-models").
|
71
|
+
editingButtonType: import("@omnia/fx-models").ButtonVariant;
|
72
72
|
editingButtonBlueprintType: import("@omnia/fx-models").ButtonBlueprintType;
|
73
73
|
strategy: string;
|
74
74
|
}, Record<string, import("@omnia/fx-models").IMessageBusTopicPublishSubscriber<any>>>;
|
@@ -76,7 +76,7 @@ export declare const useComponentsEditorStore: () => {
|
|
76
76
|
setEditingBlueprints(blueprints: ComponentBlueprints): void;
|
77
77
|
addVariant(category: import("@omnia/fx-models").ButtonBlueprintType): import("@omnia/fx-models").ButtonBlueprintVariant;
|
78
78
|
deleteEditingBlueprint(): void;
|
79
|
-
setEditingBlueprint(type: import("@omnia/fx-models").ButtonBlueprintType, buttonType: import("@omnia/fx-models").
|
79
|
+
setEditingBlueprint(type: import("@omnia/fx-models").ButtonBlueprintType, buttonType: import("@omnia/fx-models").ButtonVariant): void;
|
80
80
|
applyChanges(): void;
|
81
81
|
}>;
|
82
82
|
} & {
|
package/internal-do-not-import-from-here/ux/aurora/components/buttonstyle/ButtonStylePicker.d.ts
CHANGED
@@ -7,6 +7,8 @@ declare const _default: (props: import("@omnia/fx/ux").ExtractProps<{
|
|
7
7
|
modelValue?: ButtonBlueprint | ButtonBlueprintVariant;
|
8
8
|
} & {
|
9
9
|
label?: string;
|
10
|
+
} & {
|
11
|
+
variant?: "list" | "picker";
|
10
12
|
} & {
|
11
13
|
placeholder?: string;
|
12
14
|
} & {
|
@@ -23,5 +25,5 @@ declare const _default: (props: import("@omnia/fx/ux").ExtractProps<{
|
|
23
25
|
"v-slots"?: {} & Omit<{
|
24
26
|
default?: import("vue").Slot;
|
25
27
|
}, never>;
|
26
|
-
} & {} & Omit<import("@omnia/fx/ux").VueComponentBaseProps, "label" | "modelValue" | "v-model" | "toned" | "placeholder" | "emit:update:modelValue" | "themeType" | "sampleText" | "customStyling"> & import("@omnia/fx/ux").VNodeEvents) => any;
|
28
|
+
} & {} & Omit<import("@omnia/fx/ux").VueComponentBaseProps, "variant" | "label" | "modelValue" | "v-model" | "toned" | "placeholder" | "emit:update:modelValue" | "themeType" | "sampleText" | "customStyling"> & import("@omnia/fx/ux").VNodeEvents) => any;
|
27
29
|
export default _default;
|