@vendure/admin-ui 2.0.0-next.27 → 2.0.0-next.28
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/core/common/component-registry-types.d.ts +1 -1
- package/core/common/generated-types.d.ts +714 -4
- package/core/common/version.d.ts +1 -1
- package/core/components/channel-switcher/channel-switcher.component.d.ts +3 -3
- package/core/data/definitions/settings-definitions.d.ts +6 -0
- package/core/data/providers/settings-data.service.d.ts +10 -1
- package/core/providers/channel/channel.service.d.ts +14 -0
- package/core/public_api.d.ts +1 -0
- package/esm2020/core/common/component-registry-types.mjs +1 -1
- package/esm2020/core/common/generated-types.mjs +15 -1
- package/esm2020/core/common/introspection-result.mjs +6 -2
- package/esm2020/core/common/version.mjs +2 -2
- package/esm2020/core/components/channel-switcher/channel-switcher.component.mjs +7 -13
- package/esm2020/core/components/main-nav/main-nav.component.mjs +8 -1
- package/esm2020/core/data/definitions/order-definitions.mjs +15 -1
- package/esm2020/core/data/definitions/settings-definitions.mjs +60 -1
- package/esm2020/core/data/providers/settings-data.service.mjs +25 -2
- package/esm2020/core/providers/channel/channel.service.mjs +36 -0
- package/esm2020/core/public_api.mjs +2 -1
- package/esm2020/order/components/order-detail/order-detail.component.mjs +12 -11
- package/esm2020/order/components/order-list/order-list.component.mjs +21 -10
- package/esm2020/order/components/seller-orders-card/seller-orders-card.component.mjs +38 -0
- package/esm2020/order/components/seller-orders-card/seller-orders-card.graphql.mjs +25 -0
- package/esm2020/order/order.module.mjs +5 -2
- package/esm2020/order/order.routes.mjs +48 -9
- package/esm2020/order/providers/routing/order-resolver.mjs +2 -1
- package/esm2020/order/public_api.mjs +3 -1
- package/esm2020/settings/components/channel-detail/channel-detail.component.mjs +11 -5
- package/esm2020/settings/components/seller-detail/seller-detail.component.mjs +106 -0
- package/esm2020/settings/components/seller-list/seller-list.component.mjs +47 -0
- package/esm2020/settings/providers/routing/channel-resolver.mjs +2 -1
- package/esm2020/settings/providers/routing/seller-resolver.mjs +28 -0
- package/esm2020/settings/public_api.mjs +4 -1
- package/esm2020/settings/settings.module.mjs +7 -1
- package/esm2020/settings/settings.routes.mjs +27 -1
- package/fesm2015/vendure-admin-ui-core.mjs +160 -15
- package/fesm2015/vendure-admin-ui-core.mjs.map +1 -1
- package/fesm2015/vendure-admin-ui-order.mjs +124 -19
- package/fesm2015/vendure-admin-ui-order.mjs.map +1 -1
- package/fesm2015/vendure-admin-ui-settings.mjs +194 -5
- package/fesm2015/vendure-admin-ui-settings.mjs.map +1 -1
- package/fesm2020/vendure-admin-ui-core.mjs +160 -15
- package/fesm2020/vendure-admin-ui-core.mjs.map +1 -1
- package/fesm2020/vendure-admin-ui-order.mjs +127 -19
- package/fesm2020/vendure-admin-ui-order.mjs.map +1 -1
- package/fesm2020/vendure-admin-ui-settings.mjs +193 -5
- package/fesm2020/vendure-admin-ui-settings.mjs.map +1 -1
- package/order/components/order-list/order-list.component.d.ts +4 -2
- package/order/components/seller-orders-card/seller-orders-card.component.d.ts +24 -0
- package/order/components/seller-orders-card/seller-orders-card.graphql.d.ts +1 -0
- package/order/order.module.d.ts +4 -3
- package/order/order.routes.d.ts +2 -2
- package/order/public_api.d.ts +2 -0
- package/package.json +2 -2
- package/settings/components/channel-detail/channel-detail.component.d.ts +2 -1
- package/settings/components/seller-detail/seller-detail.component.d.ts +31 -0
- package/settings/components/seller-list/seller-list.component.d.ts +14 -0
- package/settings/providers/routing/seller-resolver.d.ts +11 -0
- package/settings/public_api.d.ts +3 -0
- package/settings/settings.module.d.ts +14 -12
- package/settings/settings.routes.d.ts +1 -0
- package/static/i18n-messages/cs.json +10 -0
- package/static/i18n-messages/de.json +11 -3
- package/static/i18n-messages/en.json +11 -3
- package/static/i18n-messages/es.json +10 -0
- package/static/i18n-messages/fr.json +10 -0
- package/static/i18n-messages/it.json +10 -0
- package/static/i18n-messages/pl.json +10 -0
- package/static/i18n-messages/pt_BR.json +10 -0
- package/static/i18n-messages/pt_PT.json +10 -0
- package/static/i18n-messages/ru.json +10 -0
- package/static/i18n-messages/uk.json +10 -0
- package/static/i18n-messages/zh_Hans.json +10 -0
- package/static/i18n-messages/zh_Hant.json +10 -0
|
@@ -2,7 +2,7 @@ import * as i0 from '@angular/core';
|
|
|
2
2
|
import { Injectable, Component, isDevMode, Inject, HostListener, ChangeDetectionStrategy, Input, EventEmitter, Output, Directive, Optional, Pipe, ViewChild, APP_INITIALIZER, Injector, NgModule, ChangeDetectorRef, ViewContainerRef, ViewChildren, forwardRef, HostBinding, ContentChild, TemplateRef, SkipSelf, ContentChildren, CUSTOM_ELEMENTS_SCHEMA } from '@angular/core';
|
|
3
3
|
import * as i6 from '@angular/common';
|
|
4
4
|
import { DOCUMENT, CommonModule, PlatformLocation } from '@angular/common';
|
|
5
|
-
import { concatMap, bufferCount, map, filter, distinctUntilChanged, skip, takeUntil, tap, take, finalize, switchMap, mergeMap, mapTo, catchError,
|
|
5
|
+
import { concatMap, bufferCount, map, filter, distinctUntilChanged, skip, takeUntil, tap, take, finalize, switchMap, mergeMap, mapTo, catchError, shareReplay, startWith, throttleTime, scan, debounceTime, delay, bufferWhen, delayWhen } from 'rxjs/operators';
|
|
6
6
|
import * as i1 from 'apollo-angular';
|
|
7
7
|
import { gql, ApolloModule, APOLLO_OPTIONS } from 'apollo-angular';
|
|
8
8
|
import { pick } from '@vendure/common/lib/pick';
|
|
@@ -2341,6 +2341,12 @@ var LogicalOperator;
|
|
|
2341
2341
|
LogicalOperator["AND"] = "AND";
|
|
2342
2342
|
LogicalOperator["OR"] = "OR";
|
|
2343
2343
|
})(LogicalOperator || (LogicalOperator = {}));
|
|
2344
|
+
var OrderType;
|
|
2345
|
+
(function (OrderType) {
|
|
2346
|
+
OrderType["Aggregate"] = "Aggregate";
|
|
2347
|
+
OrderType["Regular"] = "Regular";
|
|
2348
|
+
OrderType["Seller"] = "Seller";
|
|
2349
|
+
})(OrderType || (OrderType = {}));
|
|
2344
2350
|
/**
|
|
2345
2351
|
* @description
|
|
2346
2352
|
* Permissions for administrators and customers. Used to control access to
|
|
@@ -2403,6 +2409,8 @@ var Permission;
|
|
|
2403
2409
|
Permission["CreateProduct"] = "CreateProduct";
|
|
2404
2410
|
/** Grants permission to create Promotion */
|
|
2405
2411
|
Permission["CreatePromotion"] = "CreatePromotion";
|
|
2412
|
+
/** Grants permission to create Seller */
|
|
2413
|
+
Permission["CreateSeller"] = "CreateSeller";
|
|
2406
2414
|
/** Grants permission to create PaymentMethods, ShippingMethods, TaxCategories, TaxRates, Zones, Countries, System & GlobalSettings */
|
|
2407
2415
|
Permission["CreateSettings"] = "CreateSettings";
|
|
2408
2416
|
/** Grants permission to create ShippingMethod */
|
|
@@ -2443,6 +2451,8 @@ var Permission;
|
|
|
2443
2451
|
Permission["DeleteProduct"] = "DeleteProduct";
|
|
2444
2452
|
/** Grants permission to delete Promotion */
|
|
2445
2453
|
Permission["DeletePromotion"] = "DeletePromotion";
|
|
2454
|
+
/** Grants permission to delete Seller */
|
|
2455
|
+
Permission["DeleteSeller"] = "DeleteSeller";
|
|
2446
2456
|
/** Grants permission to delete PaymentMethods, ShippingMethods, TaxCategories, TaxRates, Zones, Countries, System & GlobalSettings */
|
|
2447
2457
|
Permission["DeleteSettings"] = "DeleteSettings";
|
|
2448
2458
|
/** Grants permission to delete ShippingMethod */
|
|
@@ -2488,6 +2498,8 @@ var Permission;
|
|
|
2488
2498
|
Permission["ReadProduct"] = "ReadProduct";
|
|
2489
2499
|
/** Grants permission to read Promotion */
|
|
2490
2500
|
Permission["ReadPromotion"] = "ReadPromotion";
|
|
2501
|
+
/** Grants permission to read Seller */
|
|
2502
|
+
Permission["ReadSeller"] = "ReadSeller";
|
|
2491
2503
|
/** Grants permission to read PaymentMethods, ShippingMethods, TaxCategories, TaxRates, Zones, Countries, System & GlobalSettings */
|
|
2492
2504
|
Permission["ReadSettings"] = "ReadSettings";
|
|
2493
2505
|
/** Grants permission to read ShippingMethod */
|
|
@@ -2532,6 +2544,8 @@ var Permission;
|
|
|
2532
2544
|
Permission["UpdateProduct"] = "UpdateProduct";
|
|
2533
2545
|
/** Grants permission to update Promotion */
|
|
2534
2546
|
Permission["UpdatePromotion"] = "UpdatePromotion";
|
|
2547
|
+
/** Grants permission to update Seller */
|
|
2548
|
+
Permission["UpdateSeller"] = "UpdateSeller";
|
|
2535
2549
|
/** Grants permission to update PaymentMethods, ShippingMethods, TaxCategories, TaxRates, Zones, Countries, System & GlobalSettings */
|
|
2536
2550
|
Permission["UpdateSettings"] = "UpdateSettings";
|
|
2537
2551
|
/** Grants permission to update ShippingMethod */
|
|
@@ -3224,6 +3238,7 @@ const ORDER_FRAGMENT = gql `
|
|
|
3224
3238
|
id
|
|
3225
3239
|
createdAt
|
|
3226
3240
|
updatedAt
|
|
3241
|
+
type
|
|
3227
3242
|
orderPlacedAt
|
|
3228
3243
|
code
|
|
3229
3244
|
state
|
|
@@ -3301,6 +3316,19 @@ const ORDER_DETAIL_FRAGMENT = gql `
|
|
|
3301
3316
|
id
|
|
3302
3317
|
createdAt
|
|
3303
3318
|
updatedAt
|
|
3319
|
+
type
|
|
3320
|
+
aggregateOrder {
|
|
3321
|
+
id
|
|
3322
|
+
code
|
|
3323
|
+
}
|
|
3324
|
+
sellerOrders {
|
|
3325
|
+
id
|
|
3326
|
+
code
|
|
3327
|
+
channels {
|
|
3328
|
+
id
|
|
3329
|
+
code
|
|
3330
|
+
}
|
|
3331
|
+
}
|
|
3304
3332
|
code
|
|
3305
3333
|
state
|
|
3306
3334
|
nextStates
|
|
@@ -4201,8 +4229,21 @@ const CHANNEL_FRAGMENT = gql `
|
|
|
4201
4229
|
id
|
|
4202
4230
|
name
|
|
4203
4231
|
}
|
|
4232
|
+
seller {
|
|
4233
|
+
id
|
|
4234
|
+
name
|
|
4235
|
+
}
|
|
4204
4236
|
}
|
|
4205
4237
|
`;
|
|
4238
|
+
const SELLER_FRAGMENT = gql `
|
|
4239
|
+
fragment Seller on Seller {
|
|
4240
|
+
id
|
|
4241
|
+
createdAt
|
|
4242
|
+
updatedAt
|
|
4243
|
+
name
|
|
4244
|
+
}
|
|
4245
|
+
`;
|
|
4246
|
+
// TODO v2: change this to paginated list
|
|
4206
4247
|
const GET_CHANNELS = gql `
|
|
4207
4248
|
query GetChannels {
|
|
4208
4249
|
channels {
|
|
@@ -4219,6 +4260,49 @@ const GET_CHANNEL = gql `
|
|
|
4219
4260
|
}
|
|
4220
4261
|
${CHANNEL_FRAGMENT}
|
|
4221
4262
|
`;
|
|
4263
|
+
const GET_SELLERS = gql `
|
|
4264
|
+
query GetSellers($options: SellerListOptions) {
|
|
4265
|
+
sellers(options: $options) {
|
|
4266
|
+
items {
|
|
4267
|
+
...Seller
|
|
4268
|
+
}
|
|
4269
|
+
totalItems
|
|
4270
|
+
}
|
|
4271
|
+
}
|
|
4272
|
+
${SELLER_FRAGMENT}
|
|
4273
|
+
`;
|
|
4274
|
+
const GET_SELLER = gql `
|
|
4275
|
+
query GetSeller($id: ID!) {
|
|
4276
|
+
seller(id: $id) {
|
|
4277
|
+
...Seller
|
|
4278
|
+
}
|
|
4279
|
+
}
|
|
4280
|
+
${SELLER_FRAGMENT}
|
|
4281
|
+
`;
|
|
4282
|
+
const CREATE_SELLER = gql `
|
|
4283
|
+
mutation CreateSeller($input: CreateSellerInput!) {
|
|
4284
|
+
createSeller(input: $input) {
|
|
4285
|
+
...Seller
|
|
4286
|
+
}
|
|
4287
|
+
}
|
|
4288
|
+
${SELLER_FRAGMENT}
|
|
4289
|
+
`;
|
|
4290
|
+
const UPDATE_SELLER = gql `
|
|
4291
|
+
mutation UpdateSeller($input: UpdateSellerInput!) {
|
|
4292
|
+
updateSeller(input: $input) {
|
|
4293
|
+
...Seller
|
|
4294
|
+
}
|
|
4295
|
+
}
|
|
4296
|
+
${SELLER_FRAGMENT}
|
|
4297
|
+
`;
|
|
4298
|
+
const DELETE_SELLER = gql `
|
|
4299
|
+
mutation DeleteSeller($id: ID!) {
|
|
4300
|
+
deleteSeller(id: $id) {
|
|
4301
|
+
result
|
|
4302
|
+
message
|
|
4303
|
+
}
|
|
4304
|
+
}
|
|
4305
|
+
`;
|
|
4222
4306
|
const GET_ACTIVE_CHANNEL = gql `
|
|
4223
4307
|
query GetActiveChannel {
|
|
4224
4308
|
activeChannel {
|
|
@@ -4561,6 +4645,9 @@ const GET_SERVER_CONFIG = gql `
|
|
|
4561
4645
|
Promotion {
|
|
4562
4646
|
...CustomFields
|
|
4563
4647
|
}
|
|
4648
|
+
Seller {
|
|
4649
|
+
...CustomFields
|
|
4650
|
+
}
|
|
4564
4651
|
ShippingMethod {
|
|
4565
4652
|
...CustomFields
|
|
4566
4653
|
}
|
|
@@ -5159,6 +5246,29 @@ class SettingsDataService {
|
|
|
5159
5246
|
id,
|
|
5160
5247
|
});
|
|
5161
5248
|
}
|
|
5249
|
+
getSellers(options) {
|
|
5250
|
+
return this.baseDataService.query(GET_SELLERS, { options });
|
|
5251
|
+
}
|
|
5252
|
+
getSeller(id) {
|
|
5253
|
+
return this.baseDataService.query(GET_SELLER, {
|
|
5254
|
+
id,
|
|
5255
|
+
});
|
|
5256
|
+
}
|
|
5257
|
+
createSeller(input) {
|
|
5258
|
+
return this.baseDataService.mutate(CREATE_SELLER, {
|
|
5259
|
+
input,
|
|
5260
|
+
});
|
|
5261
|
+
}
|
|
5262
|
+
updateSeller(input) {
|
|
5263
|
+
return this.baseDataService.mutate(UPDATE_SELLER, {
|
|
5264
|
+
input,
|
|
5265
|
+
});
|
|
5266
|
+
}
|
|
5267
|
+
deleteSeller(id) {
|
|
5268
|
+
return this.baseDataService.mutate(DELETE_SELLER, {
|
|
5269
|
+
id,
|
|
5270
|
+
});
|
|
5271
|
+
}
|
|
5162
5272
|
getActiveChannel(fetchPolicy) {
|
|
5163
5273
|
return this.baseDataService.query(GET_ACTIVE_CHANNEL, {}, fetchPolicy);
|
|
5164
5274
|
}
|
|
@@ -7228,6 +7338,36 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.2.3", ngImpor
|
|
|
7228
7338
|
}]
|
|
7229
7339
|
}], ctorParameters: function () { return [{ type: i0.ComponentFactoryResolver }, { type: OverlayHostService }]; } });
|
|
7230
7340
|
|
|
7341
|
+
class ChannelService {
|
|
7342
|
+
constructor(dataService, localStorageService) {
|
|
7343
|
+
this.dataService = dataService;
|
|
7344
|
+
this.localStorageService = localStorageService;
|
|
7345
|
+
this.defaultChannelIsActive$ = this.dataService.client
|
|
7346
|
+
.userStatus()
|
|
7347
|
+
.mapStream(({ userStatus }) => {
|
|
7348
|
+
const activeChannel = userStatus.channels.find(c => c.id === userStatus.activeChannelId);
|
|
7349
|
+
return activeChannel ? activeChannel.code === DEFAULT_CHANNEL_CODE : false;
|
|
7350
|
+
})
|
|
7351
|
+
.pipe(shareReplay(1));
|
|
7352
|
+
}
|
|
7353
|
+
setActiveChannel(channelId) {
|
|
7354
|
+
return this.dataService.client.setActiveChannel(channelId).pipe(map(({ setActiveChannel }) => setActiveChannel), tap(userStatus => {
|
|
7355
|
+
const activeChannel = userStatus.channels.find(c => c.id === channelId);
|
|
7356
|
+
if (activeChannel) {
|
|
7357
|
+
this.localStorageService.set('activeChannelToken', activeChannel.token);
|
|
7358
|
+
}
|
|
7359
|
+
}));
|
|
7360
|
+
}
|
|
7361
|
+
}
|
|
7362
|
+
ChannelService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.2.3", ngImport: i0, type: ChannelService, deps: [{ token: DataService }, { token: LocalStorageService }], target: i0.ɵɵFactoryTarget.Injectable });
|
|
7363
|
+
ChannelService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "13.2.3", ngImport: i0, type: ChannelService, providedIn: 'root' });
|
|
7364
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.2.3", ngImport: i0, type: ChannelService, decorators: [{
|
|
7365
|
+
type: Injectable,
|
|
7366
|
+
args: [{
|
|
7367
|
+
providedIn: 'root',
|
|
7368
|
+
}]
|
|
7369
|
+
}], ctorParameters: function () { return [{ type: DataService }, { type: LocalStorageService }]; } });
|
|
7370
|
+
|
|
7231
7371
|
/**
|
|
7232
7372
|
* @description
|
|
7233
7373
|
* Used for building dropdown menus.
|
|
@@ -7537,9 +7677,9 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.2.3", ngImpor
|
|
|
7537
7677
|
}] });
|
|
7538
7678
|
|
|
7539
7679
|
class ChannelSwitcherComponent {
|
|
7540
|
-
constructor(dataService,
|
|
7680
|
+
constructor(dataService, channelService) {
|
|
7541
7681
|
this.dataService = dataService;
|
|
7542
|
-
this.
|
|
7682
|
+
this.channelService = channelService;
|
|
7543
7683
|
this.displayFilterThreshold = 10;
|
|
7544
7684
|
this.filterControl = new FormControl('');
|
|
7545
7685
|
}
|
|
@@ -7559,21 +7699,15 @@ class ChannelSwitcherComponent {
|
|
|
7559
7699
|
this.activeChannelCode$ = activeChannel$.pipe(map(channel => channel.code));
|
|
7560
7700
|
}
|
|
7561
7701
|
setActiveChannel(channelId) {
|
|
7562
|
-
this.
|
|
7563
|
-
const activeChannel = setActiveChannel.channels.find(c => c.id === channelId);
|
|
7564
|
-
if (activeChannel) {
|
|
7565
|
-
this.localStorageService.set('activeChannelToken', activeChannel.token);
|
|
7566
|
-
}
|
|
7567
|
-
this.filterControl.patchValue('');
|
|
7568
|
-
});
|
|
7702
|
+
this.channelService.setActiveChannel(channelId).subscribe(() => this.filterControl.patchValue(''));
|
|
7569
7703
|
}
|
|
7570
7704
|
}
|
|
7571
|
-
ChannelSwitcherComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.2.3", ngImport: i0, type: ChannelSwitcherComponent, deps: [{ token: DataService }, { token:
|
|
7705
|
+
ChannelSwitcherComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.2.3", ngImport: i0, type: ChannelSwitcherComponent, deps: [{ token: DataService }, { token: ChannelService }], target: i0.ɵɵFactoryTarget.Component });
|
|
7572
7706
|
ChannelSwitcherComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.2.3", type: ChannelSwitcherComponent, selector: "vdr-channel-switcher", ngImport: i0, template: "<ng-container>\r\n <vdr-dropdown>\r\n <button class=\"btn btn-link active-channel\" vdrDropdownTrigger>\r\n <vdr-channel-badge [channelCode]=\"activeChannelCode$ | async\"></vdr-channel-badge>\r\n <span class=\"active-channel\">{{\r\n activeChannelCode$ | async | channelCodeToLabel | translate\r\n }}</span>\r\n <span class=\"trigger\"><clr-icon shape=\"caret down\"></clr-icon></span>\r\n </button>\r\n <vdr-dropdown-menu vdrPosition=\"bottom-right\">\r\n <input\r\n *ngIf=\"((channelCount$ | async) || 0) >= displayFilterThreshold\"\r\n [formControl]=\"filterControl\"\r\n type=\"text\"\r\n class=\"ml2 mr2\"\r\n [placeholder]=\"'common.filter' | translate\"\r\n />\r\n <button\r\n *ngFor=\"let channel of channels$ | async\"\r\n type=\"button\"\r\n vdrDropdownItem\r\n (click)=\"setActiveChannel(channel.id)\"\r\n >\r\n <vdr-channel-badge [channelCode]=\"channel.code\"></vdr-channel-badge>\r\n {{ channel.code | channelCodeToLabel | translate }}\r\n </button>\r\n </vdr-dropdown-menu>\r\n </vdr-dropdown>\r\n</ng-container>\r\n", styles: [":host{display:flex;align-items:center;margin:0 .5rem;height:2.5rem}.active-channel{color:var(--color-grey-200)}.active-channel clr-icon{color:#fff}\n"], components: [{ type: DropdownComponent, selector: "vdr-dropdown", inputs: ["manualToggle"] }, { type: ChannelBadgeComponent, selector: "vdr-channel-badge", inputs: ["channelCode"] }, { type: DropdownMenuComponent, selector: "vdr-dropdown-menu", inputs: ["vdrPosition", "customClasses"] }], directives: [{ type: DropdownTriggerDirective, selector: "[vdrDropdownTrigger]" }, { type: i1$3.ClrIconCustomTag, selector: "clr-icon" }, { type: i6.NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }, { type: FormFieldControlDirective, selector: "input, textarea, select" }, { type: i2.DefaultValueAccessor, selector: "input:not([type=checkbox])[formControlName],textarea[formControlName],input:not([type=checkbox])[formControl],textarea[formControl],input:not([type=checkbox])[ngModel],textarea[ngModel],[ngDefaultControl]" }, { type: i2.NgControlStatus, selector: "[formControlName],[ngModel],[formControl]" }, { type: i2.FormControlDirective, selector: "[formControl]", inputs: ["formControl", "disabled", "ngModel"], outputs: ["ngModelChange"], exportAs: ["ngForm"] }, { type: i6.NgForOf, selector: "[ngFor][ngForOf]", inputs: ["ngForOf", "ngForTrackBy", "ngForTemplate"] }, { type: DropdownItemDirective, selector: "[vdrDropdownItem]" }], pipes: { "async": i6.AsyncPipe, "translate": i7.TranslatePipe, "channelCodeToLabel": ChannelLabelPipe }, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
7573
7707
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.2.3", ngImport: i0, type: ChannelSwitcherComponent, decorators: [{
|
|
7574
7708
|
type: Component,
|
|
7575
7709
|
args: [{ selector: 'vdr-channel-switcher', changeDetection: ChangeDetectionStrategy.OnPush, template: "<ng-container>\r\n <vdr-dropdown>\r\n <button class=\"btn btn-link active-channel\" vdrDropdownTrigger>\r\n <vdr-channel-badge [channelCode]=\"activeChannelCode$ | async\"></vdr-channel-badge>\r\n <span class=\"active-channel\">{{\r\n activeChannelCode$ | async | channelCodeToLabel | translate\r\n }}</span>\r\n <span class=\"trigger\"><clr-icon shape=\"caret down\"></clr-icon></span>\r\n </button>\r\n <vdr-dropdown-menu vdrPosition=\"bottom-right\">\r\n <input\r\n *ngIf=\"((channelCount$ | async) || 0) >= displayFilterThreshold\"\r\n [formControl]=\"filterControl\"\r\n type=\"text\"\r\n class=\"ml2 mr2\"\r\n [placeholder]=\"'common.filter' | translate\"\r\n />\r\n <button\r\n *ngFor=\"let channel of channels$ | async\"\r\n type=\"button\"\r\n vdrDropdownItem\r\n (click)=\"setActiveChannel(channel.id)\"\r\n >\r\n <vdr-channel-badge [channelCode]=\"channel.code\"></vdr-channel-badge>\r\n {{ channel.code | channelCodeToLabel | translate }}\r\n </button>\r\n </vdr-dropdown-menu>\r\n </vdr-dropdown>\r\n</ng-container>\r\n", styles: [":host{display:flex;align-items:center;margin:0 .5rem;height:2.5rem}.active-channel{color:var(--color-grey-200)}.active-channel clr-icon{color:#fff}\n"] }]
|
|
7576
|
-
}], ctorParameters: function () { return [{ type: DataService }, { type:
|
|
7710
|
+
}], ctorParameters: function () { return [{ type: DataService }, { type: ChannelService }]; } });
|
|
7577
7711
|
|
|
7578
7712
|
class ThemeSwitcherComponent {
|
|
7579
7713
|
constructor(dataService, localStorageService) {
|
|
@@ -8312,6 +8446,13 @@ class MainNavComponent {
|
|
|
8312
8446
|
collapsible: true,
|
|
8313
8447
|
collapsedByDefault: true,
|
|
8314
8448
|
items: [
|
|
8449
|
+
{
|
|
8450
|
+
requiresPermission: allow(Permission.ReadSeller),
|
|
8451
|
+
id: 'sellers',
|
|
8452
|
+
label: marker('nav.sellers'),
|
|
8453
|
+
routerLink: ['/settings', 'sellers'],
|
|
8454
|
+
icon: 'store',
|
|
8455
|
+
},
|
|
8315
8456
|
{
|
|
8316
8457
|
requiresPermission: allow(Permission.ReadChannel),
|
|
8317
8458
|
id: 'channels',
|
|
@@ -8831,6 +8972,7 @@ const result = {
|
|
|
8831
8972
|
"Return",
|
|
8832
8973
|
"Role",
|
|
8833
8974
|
"Sale",
|
|
8975
|
+
"Seller",
|
|
8834
8976
|
"ShippingMethod",
|
|
8835
8977
|
"StockAdjustment",
|
|
8836
8978
|
"Surcharge",
|
|
@@ -8838,6 +8980,7 @@ const result = {
|
|
|
8838
8980
|
"TaxCategory",
|
|
8839
8981
|
"TaxRate",
|
|
8840
8982
|
"User",
|
|
8983
|
+
"Vendor",
|
|
8841
8984
|
"Zone"
|
|
8842
8985
|
],
|
|
8843
8986
|
"PaginatedList": [
|
|
@@ -8857,9 +9000,11 @@ const result = {
|
|
|
8857
9000
|
"ProductVariantList",
|
|
8858
9001
|
"PromotionList",
|
|
8859
9002
|
"RoleList",
|
|
9003
|
+
"SellerList",
|
|
8860
9004
|
"ShippingMethodList",
|
|
8861
9005
|
"TagList",
|
|
8862
|
-
"TaxRateList"
|
|
9006
|
+
"TaxRateList",
|
|
9007
|
+
"VendorList"
|
|
8863
9008
|
],
|
|
8864
9009
|
"RefundOrderResult": [
|
|
8865
9010
|
"AlreadyRefundedError",
|
|
@@ -17911,7 +18056,7 @@ function patchObject(obj, patch) {
|
|
|
17911
18056
|
}
|
|
17912
18057
|
|
|
17913
18058
|
// Auto-generated by the set-version.js script.
|
|
17914
|
-
const ADMIN_UI_VERSION = '2.0.0-next.
|
|
18059
|
+
const ADMIN_UI_VERSION = '2.0.0-next.28';
|
|
17915
18060
|
|
|
17916
18061
|
/**
|
|
17917
18062
|
* @description
|
|
@@ -18226,5 +18371,5 @@ function unicodePatternValidator(patternRe) {
|
|
|
18226
18371
|
* Generated bundle index. Do not edit.
|
|
18227
18372
|
*/
|
|
18228
18373
|
|
|
18229
|
-
export { ADDRESS_FRAGMENT, ADD_CUSTOMERS_TO_GROUP, ADD_ITEM_TO_DRAFT_ORDER, ADD_MANUAL_PAYMENT_TO_ORDER, ADD_MEMBERS_TO_ZONE, ADD_NOTE_TO_CUSTOMER, ADD_NOTE_TO_ORDER, ADD_OPTION_GROUP_TO_PRODUCT, ADD_OPTION_TO_GROUP, ADJUST_DRAFT_ORDER_LINE, ADMINISTRATOR_FRAGMENT, ADMIN_UI_VERSION, ALL_CUSTOM_FIELDS_FRAGMENT, APPLY_COUPON_CODE_TO_DRAFT_ORDER, ASSET_FRAGMENT, ASSIGN_COLLECTIONS_TO_CHANNEL, ASSIGN_FACETS_TO_CHANNEL, ASSIGN_PRODUCTS_TO_CHANNEL, ASSIGN_ROLE_TO_ADMINISTRATOR, ASSIGN_VARIANTS_TO_CHANNEL, ATTEMPT_LOGIN, AUTH_REDIRECT_PARAM, ActionBarComponent, ActionBarItemsComponent, ActionBarLeftComponent, ActionBarRightComponent, AddressFormComponent, AdjustmentType, AdministratorDataService, AffixedInputComponent, AppComponent, AppComponentModule, AppShellComponent, AssetFileInputComponent, AssetGalleryComponent, AssetPickerDialogComponent, AssetPreviewComponent, AssetPreviewDialogComponent, AssetPreviewLinksComponent, AssetPreviewPipe, AssetSearchInputComponent, AssetType, AuthDataService, AuthGuard, AuthService, BOOLEAN_CUSTOM_FIELD_FRAGMENT, BaseCodeEditorFormInputComponent, BaseDataService, BaseDetailComponent, BaseEntityResolver, BaseListComponent, BooleanFormInputComponent, BreadcrumbComponent, BulkActionMenuComponent, BulkActionRegistryService, CANCEL_JOB, CANCEL_ORDER, CANCEL_PAYMENT, CHANNEL_FRAGMENT, COLLECTION_FRAGMENT, CONFIGURABLE_OPERATION_DEF_FRAGMENT, CONFIGURABLE_OPERATION_FRAGMENT, COUNTRY_FRAGMENT, CREATE_ADMINISTRATOR, CREATE_ASSETS, CREATE_CHANNEL, CREATE_COLLECTION, CREATE_COUNTRY, CREATE_CUSTOMER, CREATE_CUSTOMER_ADDRESS, CREATE_CUSTOMER_GROUP, CREATE_DRAFT_ORDER, CREATE_FACET, CREATE_FACET_VALUES, CREATE_FULFILLMENT, CREATE_PAYMENT_METHOD, CREATE_PRODUCT, CREATE_PRODUCT_OPTION_GROUP, CREATE_PRODUCT_VARIANTS, CREATE_PROMOTION, CREATE_ROLE, CREATE_SHIPPING_METHOD, CREATE_TAG, CREATE_TAX_CATEGORY, CREATE_TAX_RATE, CREATE_ZONE, CURRENT_USER_FRAGMENT, CUSTOMER_FRAGMENT, CUSTOMER_GROUP_FRAGMENT, CUSTOM_FIELD_CONFIG_FRAGMENT, CanDeactivateDetailGuard, ChannelAssignmentControlComponent, ChannelBadgeComponent, ChannelLabelPipe, ChannelSwitcherComponent, CheckJobsLink, ChipComponent, ClientDataService, CollectionDataService, CombinationModeFormInputComponent, ComponentRegistryService, ConfigurableInputComponent, ContextMenuComponent, ContextMenuService, CoreModule, CurrencyCode, CurrencyFormInputComponent, CurrencyInputComponent, CustomDetailComponentHostComponent, CustomDetailComponentService, CustomFieldComponentService, CustomFieldControlComponent, CustomFieldDescriptionPipe, CustomFieldLabelPipe, CustomHttpTranslationLoader, CustomerDataService, CustomerGroupFormInputComponent, CustomerLabelComponent, DATE_TIME_CUSTOM_FIELD_FRAGMENT, DELETE_ADMINISTRATOR, DELETE_ASSETS, DELETE_CHANNEL, DELETE_COLLECTION, DELETE_COLLECTIONS, DELETE_COUNTRY, DELETE_CUSTOMER, DELETE_CUSTOMER_ADDRESS, DELETE_CUSTOMER_GROUP, DELETE_CUSTOMER_NOTE, DELETE_DRAFT_ORDER, DELETE_FACET, DELETE_FACETS, DELETE_FACET_VALUES, DELETE_ORDER_NOTE, DELETE_PAYMENT_METHOD, DELETE_PRODUCT, DELETE_PRODUCTS, DELETE_PRODUCT_OPTION, DELETE_PRODUCT_VARIANT, DELETE_PROMOTION, DELETE_ROLE, DELETE_SHIPPING_METHOD, DELETE_TAG, DELETE_TAX_CATEGORY, DELETE_TAX_RATE, DELETE_ZONE, DISCOUNT_FRAGMENT, DRAFT_ORDER_ELIGIBLE_SHIPPING_METHODS, DashboardWidgetService, DataModule, DataService, DataTableColumnComponent, DataTableComponent, DateFormInputComponent, DatetimePickerComponent, DatetimePickerService, DefaultInterceptor, DeletionResult, DialogButtonsDirective, DialogComponentOutletComponent, DialogTitleDirective, DisabledDirective, DropdownComponent, DropdownItemDirective, DropdownMenuComponent, DropdownTriggerDirective, DurationPipe, DynamicFormInputComponent, ERROR_RESULT_FRAGMENT, EditNoteDialogComponent, EmptyPlaceholderComponent, EntityInfoComponent, ErrorCode, ExtensionHostComponent, ExtensionHostConfig, ExtensionHostService, ExternalImageDialogComponent, FACET_VALUE_FRAGMENT, FACET_WITH_VALUES_FRAGMENT, FLOAT_CUSTOM_FIELD_FRAGMENT, FULFILLMENT_FRAGMENT, FacetDataService, FacetValueChipComponent, FacetValueFormInputComponent, FacetValueSelectorComponent, FetchAdapter, FileSizePipe, FocalPointControlComponent, FormFieldComponent, FormFieldControlDirective, FormItemComponent, FormattedAddressComponent, GET_ACTIVE_ADMINISTRATOR, GET_ACTIVE_CHANNEL, GET_ADJUSTMENT_OPERATIONS, GET_ADMINISTRATOR, GET_ADMINISTRATORS, GET_ASSET, GET_ASSET_LIST, GET_AVAILABLE_COUNTRIES, GET_CHANNEL, GET_CHANNELS, GET_CLIENT_STATE, GET_COLLECTION, GET_COLLECTION_CONTENTS, GET_COLLECTION_FILTERS, GET_COLLECTION_LIST, GET_COUNTRY, GET_COUNTRY_LIST, GET_CURRENT_USER, GET_CUSTOMER, GET_CUSTOMER_GROUPS, GET_CUSTOMER_GROUP_WITH_CUSTOMERS, GET_CUSTOMER_HISTORY, GET_CUSTOMER_LIST, GET_FACET_LIST, GET_FACET_VALUE_LIST, GET_FACET_WITH_VALUES, GET_GLOBAL_SETTINGS, GET_JOBS_BY_ID, GET_JOBS_LIST, GET_JOB_INFO, GET_JOB_QUEUE_LIST, GET_NEWTORK_STATUS, GET_ORDER, GET_ORDERS_LIST, GET_ORDER_HISTORY, GET_ORDER_SUMMARY, GET_PAYMENT_METHOD, GET_PAYMENT_METHOD_LIST, GET_PAYMENT_METHOD_OPERATIONS, GET_PENDING_SEARCH_INDEX_UPDATES, GET_PRODUCT_LIST, GET_PRODUCT_OPTION_GROUP, GET_PRODUCT_OPTION_GROUPS, GET_PRODUCT_SIMPLE, GET_PRODUCT_VARIANT, GET_PRODUCT_VARIANT_LIST, GET_PRODUCT_VARIANT_LIST_SIMPLE, GET_PRODUCT_VARIANT_OPTIONS, GET_PRODUCT_WITH_VARIANTS, GET_PROMOTION, GET_PROMOTION_LIST, GET_ROLE, GET_ROLES, GET_SERVER_CONFIG, GET_SHIPPING_METHOD, GET_SHIPPING_METHOD_LIST, GET_SHIPPING_METHOD_OPERATIONS, GET_TAG, GET_TAG_LIST, GET_TAX_CATEGORIES, GET_TAX_CATEGORY, GET_TAX_RATE, GET_TAX_RATE_LIST, GET_TAX_RATE_LIST_SIMPLE, GET_UI_STATE, GET_USER_STATUS, GET_ZONE, GET_ZONES, GLOBAL_SETTINGS_FRAGMENT, GlobalFlag, HasPermissionPipe, HealthCheckService, HelpTooltipComponent, HistoryEntryComponentService, HistoryEntryDetailComponent, HistoryEntryType, HtmlEditorFormInputComponent, HttpLoaderFactory, I18nService, INT_CUSTOM_FIELD_FRAGMENT, IconSize, IfDefaultChannelActiveDirective, IfDirectiveBase, IfMultichannelDirective, IfPermissionsDirective, InjectableTranslateMessageFormatCompiler, ItemsPerPageControlsComponent, JOB_INFO_FRAGMENT, JobQueueService, JobState, JsonEditorFormInputComponent, LOCALE_STRING_CUSTOM_FIELD_FRAGMENT, LOG_OUT, LabeledDataComponent, LanguageCode, LanguageSelectorComponent, LinkDialogComponent, LocalStorageService, LocaleBasePipe, LocaleCurrencyNamePipe, LocaleCurrencyPipe, LocaleDatePipe, LocaleLanguageNamePipe, LocaleRegionNamePipe, LogicalOperator, MODIFY_ORDER, MOVE_COLLECTION, MainNavComponent, ManageTagsDialogComponent, ModalDialogComponent, ModalService, NavBuilderService, NotificationComponent, NotificationService, NumberFormInputComponent, ORDER_ADDRESS_FRAGMENT, ORDER_DETAIL_FRAGMENT, ORDER_FRAGMENT, ORDER_LINE_FRAGMENT, ObjectTreeComponent, OmitTypenameLink, OrderDataService, OrderStateLabelComponent, OverlayHostComponent, OverlayHostService, PAYMENT_FRAGMENT, PAYMENT_METHOD_FRAGMENT, PREVIEW_COLLECTION_CONTENTS, PRODUCT_DETAIL_FRAGMENT, PRODUCT_OPTION_FRAGMENT, PRODUCT_OPTION_GROUP_FRAGMENT, PRODUCT_OPTION_GROUP_WITH_OPTIONS_FRAGMENT, PRODUCT_SELECTOR_SEARCH, PRODUCT_VARIANT_FRAGMENT, PROMOTION_FRAGMENT, PaginationControlsComponent, PasswordFormInputComponent, PercentageSuffixInputComponent, Permission, ProductDataService, ProductMultiSelectorDialogComponent, ProductMultiSelectorFormInputComponent, ProductSearchInputComponent, ProductSelectorFormInputComponent, ProductVariantSelectorComponent, PromotionDataService, ProsemirrorService, QueryResult, REFUND_FRAGMENT, REFUND_ORDER, REINDEX, RELATION_CUSTOM_FIELD_FRAGMENT, REMOVE_COLLECTIONS_FROM_CHANNEL, REMOVE_COUPON_CODE_FROM_DRAFT_ORDER, REMOVE_CUSTOMERS_FROM_GROUP, REMOVE_DRAFT_ORDER_LINE, REMOVE_FACETS_FROM_CHANNEL, REMOVE_MEMBERS_FROM_ZONE, REMOVE_OPTION_GROUP_FROM_PRODUCT, REMOVE_PRODUCTS_FROM_CHANNEL, REMOVE_VARIANTS_FROM_CHANNEL, REQUEST_COMPLETED, REQUEST_STARTED, ROLE_FRAGMENT, RUN_PENDING_SEARCH_INDEX_UPDATES, RadioCardComponent, RadioCardFieldsetComponent, RawHtmlDialogComponent, RelationAssetInputComponent, RelationCardComponent, RelationCardDetailDirective, RelationCardPreviewDirective, RelationCustomerInputComponent, RelationFormInputComponent, RelationGenericInputComponent, RelationProductInputComponent, RelationProductVariantInputComponent, RelationSelectorDialogComponent, RichTextEditorComponent, RichTextFormInputComponent, SEARCH_PRODUCTS, SETTLE_PAYMENT, SETTLE_REFUND, SET_ACTIVE_CHANNEL, SET_AS_LOGGED_IN, SET_AS_LOGGED_OUT, SET_BILLING_ADDRESS_FOR_DRAFT_ORDER, SET_CONTENT_LANGUAGE, SET_CUSTOMER_FOR_DRAFT_ORDER, SET_DISPLAY_UI_EXTENSION_POINTS, SET_DRAFT_ORDER_SHIPPING_METHOD, SET_SHIPPING_ADDRESS_FOR_DRAFT_ORDER, SET_UI_LANGUAGE_AND_LOCALE, SET_UI_LOCALE, SET_UI_THEME, SHIPPING_METHOD_FRAGMENT, STRING_CUSTOM_FIELD_FRAGMENT, SelectFormInputComponent, SelectToggleComponent, SelectionManager, SentenceCasePipe, ServerConfigService, SettingsDataService, SharedModule, ShippingMethodDataService, SimpleDialogComponent, SingleSearchSelectionModel, SingleSearchSelectionModelFactory, SortOrder, SortPipe, StateI18nTokenPipe, StatusBadgeComponent, StockMovementType, StringToColorPipe, SubMenuWithIcon, TAG_FRAGMENT, TAX_CATEGORY_FRAGMENT, TAX_RATE_FRAGMENT, TEST_ELIGIBLE_SHIPPING_METHODS, TEST_SHIPPING_METHOD, TEXT_CUSTOM_FIELD_FRAGMENT, TRANSITION_FULFILLMENT_TO_STATE, TRANSITION_ORDER_TO_STATE, TRANSITION_PAYMENT_TO_STATE, TabbedCustomFieldsComponent, TableRowActionComponent, TagSelectorComponent, TextFormInputComponent, TextareaFormInputComponent, ThemeSwitcherComponent, TimeAgoPipe, TimelineEntryComponent, TitleInputComponent, UPDATE_ACTIVE_ADMINISTRATOR, UPDATE_ADMINISTRATOR, UPDATE_ASSET, UPDATE_CHANNEL, UPDATE_COLLECTION, UPDATE_COUNTRY, UPDATE_CUSTOMER, UPDATE_CUSTOMER_ADDRESS, UPDATE_CUSTOMER_GROUP, UPDATE_CUSTOMER_NOTE, UPDATE_FACET, UPDATE_FACET_VALUES, UPDATE_GLOBAL_SETTINGS, UPDATE_ORDER_CUSTOM_FIELDS, UPDATE_ORDER_NOTE, UPDATE_PAYMENT_METHOD, UPDATE_PRODUCT, UPDATE_PRODUCT_OPTION, UPDATE_PRODUCT_OPTION_GROUP, UPDATE_PRODUCT_VARIANTS, UPDATE_PROMOTION, UPDATE_ROLE, UPDATE_SHIPPING_METHOD, UPDATE_TAG, UPDATE_TAX_CATEGORY, UPDATE_TAX_RATE, UPDATE_USER_CHANNELS, UPDATE_ZONE, USER_STATUS_FRAGMENT, UiExtensionPointComponent, UiLanguageSwitcherDialogComponent, UserMenuComponent, ZONE_FRAGMENT, addActionBarItem, addCustomFields, addNavMenuItem, addNavMenuSection, addTable, blockQuoteRule, buildInputRules, buildKeymap, buildMenuItems, bulletListRule, canInsert, clientResolvers, codeBlockRule, configurableDefinitionToInstance, configurableOperationValueIsValid, createApollo, createResolveData, createUpdatedTranslatable, currentChannelIsNotDefault, customMenuPlugin, dayOfWeekIndex, defaultFormInputs, detailBreadcrumb, encodeConfigArgValue, findTranslation, getAppConfig, getChannelCodeFromUserStatus, getClientDefaults, getConfigArgValue, getDefaultConfigArgValue, getDefaultUiLanguage, getDefaultUiLocale, getLocales, getMarkRange, getServerLocation, getTableMenu, getTableNodes, headingRule, hostExternalFrame, iframeNode, iframeNodeView, imageContextMenuPlugin, initializeServerConfigService, insertImageItem, interpolateDescription, result as introspectionResult, isEntityCreateOrUpdateMutation, isMultiChannel, jsonValidator, linkItem, linkSelectPlugin, loadAppConfig, markActive, orderedListRule, rawEditorPlugin, registerBulkAction, registerCustomDetailComponent, registerCustomFieldComponent, registerDashboardWidget, registerDefaultFormInputs, registerFormInputComponent, registerHistoryEntryComponent, removeReadonlyCustomFields, renderClarityIcon, setDashboardWidgetLayout, stringToColor, tableContextMenuPlugin, toConfigurableOperationInput, transformRelationCustomFieldInputs, unicodePatternValidator, weekDayNames, wrapInMenuItemWithIcon };
|
|
18374
|
+
export { ADDRESS_FRAGMENT, ADD_CUSTOMERS_TO_GROUP, ADD_ITEM_TO_DRAFT_ORDER, ADD_MANUAL_PAYMENT_TO_ORDER, ADD_MEMBERS_TO_ZONE, ADD_NOTE_TO_CUSTOMER, ADD_NOTE_TO_ORDER, ADD_OPTION_GROUP_TO_PRODUCT, ADD_OPTION_TO_GROUP, ADJUST_DRAFT_ORDER_LINE, ADMINISTRATOR_FRAGMENT, ADMIN_UI_VERSION, ALL_CUSTOM_FIELDS_FRAGMENT, APPLY_COUPON_CODE_TO_DRAFT_ORDER, ASSET_FRAGMENT, ASSIGN_COLLECTIONS_TO_CHANNEL, ASSIGN_FACETS_TO_CHANNEL, ASSIGN_PRODUCTS_TO_CHANNEL, ASSIGN_ROLE_TO_ADMINISTRATOR, ASSIGN_VARIANTS_TO_CHANNEL, ATTEMPT_LOGIN, AUTH_REDIRECT_PARAM, ActionBarComponent, ActionBarItemsComponent, ActionBarLeftComponent, ActionBarRightComponent, AddressFormComponent, AdjustmentType, AdministratorDataService, AffixedInputComponent, AppComponent, AppComponentModule, AppShellComponent, AssetFileInputComponent, AssetGalleryComponent, AssetPickerDialogComponent, AssetPreviewComponent, AssetPreviewDialogComponent, AssetPreviewLinksComponent, AssetPreviewPipe, AssetSearchInputComponent, AssetType, AuthDataService, AuthGuard, AuthService, BOOLEAN_CUSTOM_FIELD_FRAGMENT, BaseCodeEditorFormInputComponent, BaseDataService, BaseDetailComponent, BaseEntityResolver, BaseListComponent, BooleanFormInputComponent, BreadcrumbComponent, BulkActionMenuComponent, BulkActionRegistryService, CANCEL_JOB, CANCEL_ORDER, CANCEL_PAYMENT, CHANNEL_FRAGMENT, COLLECTION_FRAGMENT, CONFIGURABLE_OPERATION_DEF_FRAGMENT, CONFIGURABLE_OPERATION_FRAGMENT, COUNTRY_FRAGMENT, CREATE_ADMINISTRATOR, CREATE_ASSETS, CREATE_CHANNEL, CREATE_COLLECTION, CREATE_COUNTRY, CREATE_CUSTOMER, CREATE_CUSTOMER_ADDRESS, CREATE_CUSTOMER_GROUP, CREATE_DRAFT_ORDER, CREATE_FACET, CREATE_FACET_VALUES, CREATE_FULFILLMENT, CREATE_PAYMENT_METHOD, CREATE_PRODUCT, CREATE_PRODUCT_OPTION_GROUP, CREATE_PRODUCT_VARIANTS, CREATE_PROMOTION, CREATE_ROLE, CREATE_SELLER, CREATE_SHIPPING_METHOD, CREATE_TAG, CREATE_TAX_CATEGORY, CREATE_TAX_RATE, CREATE_ZONE, CURRENT_USER_FRAGMENT, CUSTOMER_FRAGMENT, CUSTOMER_GROUP_FRAGMENT, CUSTOM_FIELD_CONFIG_FRAGMENT, CanDeactivateDetailGuard, ChannelAssignmentControlComponent, ChannelBadgeComponent, ChannelLabelPipe, ChannelService, ChannelSwitcherComponent, CheckJobsLink, ChipComponent, ClientDataService, CollectionDataService, CombinationModeFormInputComponent, ComponentRegistryService, ConfigurableInputComponent, ContextMenuComponent, ContextMenuService, CoreModule, CurrencyCode, CurrencyFormInputComponent, CurrencyInputComponent, CustomDetailComponentHostComponent, CustomDetailComponentService, CustomFieldComponentService, CustomFieldControlComponent, CustomFieldDescriptionPipe, CustomFieldLabelPipe, CustomHttpTranslationLoader, CustomerDataService, CustomerGroupFormInputComponent, CustomerLabelComponent, DATE_TIME_CUSTOM_FIELD_FRAGMENT, DELETE_ADMINISTRATOR, DELETE_ASSETS, DELETE_CHANNEL, DELETE_COLLECTION, DELETE_COLLECTIONS, DELETE_COUNTRY, DELETE_CUSTOMER, DELETE_CUSTOMER_ADDRESS, DELETE_CUSTOMER_GROUP, DELETE_CUSTOMER_NOTE, DELETE_DRAFT_ORDER, DELETE_FACET, DELETE_FACETS, DELETE_FACET_VALUES, DELETE_ORDER_NOTE, DELETE_PAYMENT_METHOD, DELETE_PRODUCT, DELETE_PRODUCTS, DELETE_PRODUCT_OPTION, DELETE_PRODUCT_VARIANT, DELETE_PROMOTION, DELETE_ROLE, DELETE_SELLER, DELETE_SHIPPING_METHOD, DELETE_TAG, DELETE_TAX_CATEGORY, DELETE_TAX_RATE, DELETE_ZONE, DISCOUNT_FRAGMENT, DRAFT_ORDER_ELIGIBLE_SHIPPING_METHODS, DashboardWidgetService, DataModule, DataService, DataTableColumnComponent, DataTableComponent, DateFormInputComponent, DatetimePickerComponent, DatetimePickerService, DefaultInterceptor, DeletionResult, DialogButtonsDirective, DialogComponentOutletComponent, DialogTitleDirective, DisabledDirective, DropdownComponent, DropdownItemDirective, DropdownMenuComponent, DropdownTriggerDirective, DurationPipe, DynamicFormInputComponent, ERROR_RESULT_FRAGMENT, EditNoteDialogComponent, EmptyPlaceholderComponent, EntityInfoComponent, ErrorCode, ExtensionHostComponent, ExtensionHostConfig, ExtensionHostService, ExternalImageDialogComponent, FACET_VALUE_FRAGMENT, FACET_WITH_VALUES_FRAGMENT, FLOAT_CUSTOM_FIELD_FRAGMENT, FULFILLMENT_FRAGMENT, FacetDataService, FacetValueChipComponent, FacetValueFormInputComponent, FacetValueSelectorComponent, FetchAdapter, FileSizePipe, FocalPointControlComponent, FormFieldComponent, FormFieldControlDirective, FormItemComponent, FormattedAddressComponent, GET_ACTIVE_ADMINISTRATOR, GET_ACTIVE_CHANNEL, GET_ADJUSTMENT_OPERATIONS, GET_ADMINISTRATOR, GET_ADMINISTRATORS, GET_ASSET, GET_ASSET_LIST, GET_AVAILABLE_COUNTRIES, GET_CHANNEL, GET_CHANNELS, GET_CLIENT_STATE, GET_COLLECTION, GET_COLLECTION_CONTENTS, GET_COLLECTION_FILTERS, GET_COLLECTION_LIST, GET_COUNTRY, GET_COUNTRY_LIST, GET_CURRENT_USER, GET_CUSTOMER, GET_CUSTOMER_GROUPS, GET_CUSTOMER_GROUP_WITH_CUSTOMERS, GET_CUSTOMER_HISTORY, GET_CUSTOMER_LIST, GET_FACET_LIST, GET_FACET_VALUE_LIST, GET_FACET_WITH_VALUES, GET_GLOBAL_SETTINGS, GET_JOBS_BY_ID, GET_JOBS_LIST, GET_JOB_INFO, GET_JOB_QUEUE_LIST, GET_NEWTORK_STATUS, GET_ORDER, GET_ORDERS_LIST, GET_ORDER_HISTORY, GET_ORDER_SUMMARY, GET_PAYMENT_METHOD, GET_PAYMENT_METHOD_LIST, GET_PAYMENT_METHOD_OPERATIONS, GET_PENDING_SEARCH_INDEX_UPDATES, GET_PRODUCT_LIST, GET_PRODUCT_OPTION_GROUP, GET_PRODUCT_OPTION_GROUPS, GET_PRODUCT_SIMPLE, GET_PRODUCT_VARIANT, GET_PRODUCT_VARIANT_LIST, GET_PRODUCT_VARIANT_LIST_SIMPLE, GET_PRODUCT_VARIANT_OPTIONS, GET_PRODUCT_WITH_VARIANTS, GET_PROMOTION, GET_PROMOTION_LIST, GET_ROLE, GET_ROLES, GET_SELLER, GET_SELLERS, GET_SERVER_CONFIG, GET_SHIPPING_METHOD, GET_SHIPPING_METHOD_LIST, GET_SHIPPING_METHOD_OPERATIONS, GET_TAG, GET_TAG_LIST, GET_TAX_CATEGORIES, GET_TAX_CATEGORY, GET_TAX_RATE, GET_TAX_RATE_LIST, GET_TAX_RATE_LIST_SIMPLE, GET_UI_STATE, GET_USER_STATUS, GET_ZONE, GET_ZONES, GLOBAL_SETTINGS_FRAGMENT, GlobalFlag, HasPermissionPipe, HealthCheckService, HelpTooltipComponent, HistoryEntryComponentService, HistoryEntryDetailComponent, HistoryEntryType, HtmlEditorFormInputComponent, HttpLoaderFactory, I18nService, INT_CUSTOM_FIELD_FRAGMENT, IconSize, IfDefaultChannelActiveDirective, IfDirectiveBase, IfMultichannelDirective, IfPermissionsDirective, InjectableTranslateMessageFormatCompiler, ItemsPerPageControlsComponent, JOB_INFO_FRAGMENT, JobQueueService, JobState, JsonEditorFormInputComponent, LOCALE_STRING_CUSTOM_FIELD_FRAGMENT, LOG_OUT, LabeledDataComponent, LanguageCode, LanguageSelectorComponent, LinkDialogComponent, LocalStorageService, LocaleBasePipe, LocaleCurrencyNamePipe, LocaleCurrencyPipe, LocaleDatePipe, LocaleLanguageNamePipe, LocaleRegionNamePipe, LogicalOperator, MODIFY_ORDER, MOVE_COLLECTION, MainNavComponent, ManageTagsDialogComponent, ModalDialogComponent, ModalService, NavBuilderService, NotificationComponent, NotificationService, NumberFormInputComponent, ORDER_ADDRESS_FRAGMENT, ORDER_DETAIL_FRAGMENT, ORDER_FRAGMENT, ORDER_LINE_FRAGMENT, ObjectTreeComponent, OmitTypenameLink, OrderDataService, OrderStateLabelComponent, OrderType, OverlayHostComponent, OverlayHostService, PAYMENT_FRAGMENT, PAYMENT_METHOD_FRAGMENT, PREVIEW_COLLECTION_CONTENTS, PRODUCT_DETAIL_FRAGMENT, PRODUCT_OPTION_FRAGMENT, PRODUCT_OPTION_GROUP_FRAGMENT, PRODUCT_OPTION_GROUP_WITH_OPTIONS_FRAGMENT, PRODUCT_SELECTOR_SEARCH, PRODUCT_VARIANT_FRAGMENT, PROMOTION_FRAGMENT, PaginationControlsComponent, PasswordFormInputComponent, PercentageSuffixInputComponent, Permission, ProductDataService, ProductMultiSelectorDialogComponent, ProductMultiSelectorFormInputComponent, ProductSearchInputComponent, ProductSelectorFormInputComponent, ProductVariantSelectorComponent, PromotionDataService, ProsemirrorService, QueryResult, REFUND_FRAGMENT, REFUND_ORDER, REINDEX, RELATION_CUSTOM_FIELD_FRAGMENT, REMOVE_COLLECTIONS_FROM_CHANNEL, REMOVE_COUPON_CODE_FROM_DRAFT_ORDER, REMOVE_CUSTOMERS_FROM_GROUP, REMOVE_DRAFT_ORDER_LINE, REMOVE_FACETS_FROM_CHANNEL, REMOVE_MEMBERS_FROM_ZONE, REMOVE_OPTION_GROUP_FROM_PRODUCT, REMOVE_PRODUCTS_FROM_CHANNEL, REMOVE_VARIANTS_FROM_CHANNEL, REQUEST_COMPLETED, REQUEST_STARTED, ROLE_FRAGMENT, RUN_PENDING_SEARCH_INDEX_UPDATES, RadioCardComponent, RadioCardFieldsetComponent, RawHtmlDialogComponent, RelationAssetInputComponent, RelationCardComponent, RelationCardDetailDirective, RelationCardPreviewDirective, RelationCustomerInputComponent, RelationFormInputComponent, RelationGenericInputComponent, RelationProductInputComponent, RelationProductVariantInputComponent, RelationSelectorDialogComponent, RichTextEditorComponent, RichTextFormInputComponent, SEARCH_PRODUCTS, SELLER_FRAGMENT, SETTLE_PAYMENT, SETTLE_REFUND, SET_ACTIVE_CHANNEL, SET_AS_LOGGED_IN, SET_AS_LOGGED_OUT, SET_BILLING_ADDRESS_FOR_DRAFT_ORDER, SET_CONTENT_LANGUAGE, SET_CUSTOMER_FOR_DRAFT_ORDER, SET_DISPLAY_UI_EXTENSION_POINTS, SET_DRAFT_ORDER_SHIPPING_METHOD, SET_SHIPPING_ADDRESS_FOR_DRAFT_ORDER, SET_UI_LANGUAGE_AND_LOCALE, SET_UI_LOCALE, SET_UI_THEME, SHIPPING_METHOD_FRAGMENT, STRING_CUSTOM_FIELD_FRAGMENT, SelectFormInputComponent, SelectToggleComponent, SelectionManager, SentenceCasePipe, ServerConfigService, SettingsDataService, SharedModule, ShippingMethodDataService, SimpleDialogComponent, SingleSearchSelectionModel, SingleSearchSelectionModelFactory, SortOrder, SortPipe, StateI18nTokenPipe, StatusBadgeComponent, StockMovementType, StringToColorPipe, SubMenuWithIcon, TAG_FRAGMENT, TAX_CATEGORY_FRAGMENT, TAX_RATE_FRAGMENT, TEST_ELIGIBLE_SHIPPING_METHODS, TEST_SHIPPING_METHOD, TEXT_CUSTOM_FIELD_FRAGMENT, TRANSITION_FULFILLMENT_TO_STATE, TRANSITION_ORDER_TO_STATE, TRANSITION_PAYMENT_TO_STATE, TabbedCustomFieldsComponent, TableRowActionComponent, TagSelectorComponent, TextFormInputComponent, TextareaFormInputComponent, ThemeSwitcherComponent, TimeAgoPipe, TimelineEntryComponent, TitleInputComponent, UPDATE_ACTIVE_ADMINISTRATOR, UPDATE_ADMINISTRATOR, UPDATE_ASSET, UPDATE_CHANNEL, UPDATE_COLLECTION, UPDATE_COUNTRY, UPDATE_CUSTOMER, UPDATE_CUSTOMER_ADDRESS, UPDATE_CUSTOMER_GROUP, UPDATE_CUSTOMER_NOTE, UPDATE_FACET, UPDATE_FACET_VALUES, UPDATE_GLOBAL_SETTINGS, UPDATE_ORDER_CUSTOM_FIELDS, UPDATE_ORDER_NOTE, UPDATE_PAYMENT_METHOD, UPDATE_PRODUCT, UPDATE_PRODUCT_OPTION, UPDATE_PRODUCT_OPTION_GROUP, UPDATE_PRODUCT_VARIANTS, UPDATE_PROMOTION, UPDATE_ROLE, UPDATE_SELLER, UPDATE_SHIPPING_METHOD, UPDATE_TAG, UPDATE_TAX_CATEGORY, UPDATE_TAX_RATE, UPDATE_USER_CHANNELS, UPDATE_ZONE, USER_STATUS_FRAGMENT, UiExtensionPointComponent, UiLanguageSwitcherDialogComponent, UserMenuComponent, ZONE_FRAGMENT, addActionBarItem, addCustomFields, addNavMenuItem, addNavMenuSection, addTable, blockQuoteRule, buildInputRules, buildKeymap, buildMenuItems, bulletListRule, canInsert, clientResolvers, codeBlockRule, configurableDefinitionToInstance, configurableOperationValueIsValid, createApollo, createResolveData, createUpdatedTranslatable, currentChannelIsNotDefault, customMenuPlugin, dayOfWeekIndex, defaultFormInputs, detailBreadcrumb, encodeConfigArgValue, findTranslation, getAppConfig, getChannelCodeFromUserStatus, getClientDefaults, getConfigArgValue, getDefaultConfigArgValue, getDefaultUiLanguage, getDefaultUiLocale, getLocales, getMarkRange, getServerLocation, getTableMenu, getTableNodes, headingRule, hostExternalFrame, iframeNode, iframeNodeView, imageContextMenuPlugin, initializeServerConfigService, insertImageItem, interpolateDescription, result as introspectionResult, isEntityCreateOrUpdateMutation, isMultiChannel, jsonValidator, linkItem, linkSelectPlugin, loadAppConfig, markActive, orderedListRule, rawEditorPlugin, registerBulkAction, registerCustomDetailComponent, registerCustomFieldComponent, registerDashboardWidget, registerDefaultFormInputs, registerFormInputComponent, registerHistoryEntryComponent, removeReadonlyCustomFields, renderClarityIcon, setDashboardWidgetLayout, stringToColor, tableContextMenuPlugin, toConfigurableOperationInput, transformRelationCustomFieldInputs, unicodePatternValidator, weekDayNames, wrapInMenuItemWithIcon };
|
|
18230
18375
|
//# sourceMappingURL=vendure-admin-ui-core.mjs.map
|