@vendure/admin-ui 1.4.0-beta.0 → 1.4.0
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/bundles/vendure-admin-ui-catalog.umd.js +25 -8
- package/bundles/vendure-admin-ui-catalog.umd.js.map +1 -1
- package/bundles/vendure-admin-ui-core.umd.js +414 -223
- package/bundles/vendure-admin-ui-core.umd.js.map +1 -1
- package/catalog/components/facet-list/facet-list.component.d.ts +3 -5
- package/catalog/vendure-admin-ui-catalog.metadata.json +1 -1
- package/core/common/generated-types.d.ts +59 -0
- package/core/common/version.d.ts +1 -1
- package/core/data/definitions/settings-definitions.d.ts +1 -0
- package/core/data/providers/settings-data.service.d.ts +3 -0
- package/core/shared/components/extension-host/extension-host.service.d.ts +3 -1
- package/core/shared/dynamic-form-inputs/code-editor-form-input/json-editor-form-input.component.d.ts +1 -1
- package/core/shared/dynamic-form-inputs/date-form-input/date-form-input.component.d.ts +3 -0
- package/core/shared/dynamic-form-inputs/number-form-input/number-form-input.component.d.ts +5 -0
- package/core/shared/dynamic-form-inputs/register-dynamic-input-components.d.ts +2 -2
- package/core/shared/dynamic-form-inputs/select-form-input/select-form-input.component.d.ts +1 -0
- package/core/shared/dynamic-form-inputs/text-form-input/text-form-input.component.d.ts +5 -3
- package/core/vendure-admin-ui-core.metadata.json +1 -1
- package/esm2015/catalog/components/facet-detail/facet-detail.component.js +2 -2
- package/esm2015/catalog/components/facet-list/facet-list.component.js +24 -9
- package/esm2015/catalog/components/variant-price-detail/variant-price-detail.component.js +2 -2
- package/esm2015/core/common/generated-types.js +1 -1
- package/esm2015/core/common/introspection-result.js +249 -183
- package/esm2015/core/common/version.js +2 -2
- package/esm2015/core/data/definitions/settings-definitions.js +24 -1
- package/esm2015/core/data/providers/settings-data.service.js +10 -2
- package/esm2015/core/shared/components/extension-host/extension-host.component.js +3 -3
- package/esm2015/core/shared/components/extension-host/extension-host.service.js +16 -2
- package/esm2015/core/shared/components/tabbed-custom-fields/tabbed-custom-fields.component.js +4 -2
- package/esm2015/core/shared/dynamic-form-inputs/code-editor-form-input/json-editor-form-input.component.js +5 -1
- package/esm2015/core/shared/dynamic-form-inputs/date-form-input/date-form-input.component.js +14 -2
- package/esm2015/core/shared/dynamic-form-inputs/dynamic-form-input/dynamic-form-input.component.js +1 -1
- package/esm2015/core/shared/dynamic-form-inputs/number-form-input/number-form-input.component.js +22 -2
- package/esm2015/core/shared/dynamic-form-inputs/select-form-input/select-form-input.component.js +6 -2
- package/esm2015/core/shared/dynamic-form-inputs/text-form-input/text-form-input.component.js +10 -2
- package/fesm2015/vendure-admin-ui-catalog.js +23 -5
- package/fesm2015/vendure-admin-ui-catalog.js.map +1 -1
- package/fesm2015/vendure-admin-ui-core.js +343 -182
- package/fesm2015/vendure-admin-ui-core.js.map +1 -1
- package/package.json +2 -2
|
@@ -845,6 +845,29 @@ const GET_TAX_RATE_LIST = gql `
|
|
|
845
845
|
}
|
|
846
846
|
${TAX_RATE_FRAGMENT}
|
|
847
847
|
`;
|
|
848
|
+
const GET_TAX_RATE_LIST_SIMPLE = gql `
|
|
849
|
+
query GetTaxRateListSimple($options: TaxRateListOptions) {
|
|
850
|
+
taxRates(options: $options) {
|
|
851
|
+
items {
|
|
852
|
+
id
|
|
853
|
+
createdAt
|
|
854
|
+
updatedAt
|
|
855
|
+
name
|
|
856
|
+
enabled
|
|
857
|
+
value
|
|
858
|
+
category {
|
|
859
|
+
id
|
|
860
|
+
name
|
|
861
|
+
}
|
|
862
|
+
zone {
|
|
863
|
+
id
|
|
864
|
+
name
|
|
865
|
+
}
|
|
866
|
+
}
|
|
867
|
+
totalItems
|
|
868
|
+
}
|
|
869
|
+
}
|
|
870
|
+
`;
|
|
848
871
|
const GET_TAX_RATE = gql `
|
|
849
872
|
query GetTaxRate($id: ID!) {
|
|
850
873
|
taxRate(id: $id) {
|
|
@@ -5170,6 +5193,14 @@ class SettingsDataService {
|
|
|
5170
5193
|
},
|
|
5171
5194
|
}, fetchPolicy);
|
|
5172
5195
|
}
|
|
5196
|
+
getTaxRatesSimple(take = 10, skip = 0, fetchPolicy) {
|
|
5197
|
+
return this.baseDataService.query(GET_TAX_RATE_LIST_SIMPLE, {
|
|
5198
|
+
options: {
|
|
5199
|
+
take,
|
|
5200
|
+
skip,
|
|
5201
|
+
},
|
|
5202
|
+
}, fetchPolicy);
|
|
5203
|
+
}
|
|
5173
5204
|
getTaxRate(id) {
|
|
5174
5205
|
return this.baseDataService.query(GET_TAX_RATE, {
|
|
5175
5206
|
id,
|
|
@@ -7313,188 +7344,254 @@ UserMenuComponent.propDecorators = {
|
|
|
7313
7344
|
|
|
7314
7345
|
// tslint:disable
|
|
7315
7346
|
const result = {
|
|
7316
|
-
possibleTypes: {
|
|
7317
|
-
AddFulfillmentToOrderResult: [
|
|
7318
|
-
|
|
7319
|
-
|
|
7320
|
-
|
|
7321
|
-
|
|
7322
|
-
|
|
7323
|
-
|
|
7324
|
-
|
|
7347
|
+
"possibleTypes": {
|
|
7348
|
+
"AddFulfillmentToOrderResult": [
|
|
7349
|
+
"Fulfillment",
|
|
7350
|
+
"EmptyOrderLineSelectionError",
|
|
7351
|
+
"ItemsAlreadyFulfilledError",
|
|
7352
|
+
"InsufficientStockOnHandError",
|
|
7353
|
+
"InvalidFulfillmentHandlerError",
|
|
7354
|
+
"FulfillmentStateTransitionError",
|
|
7355
|
+
"CreateFulfillmentError"
|
|
7325
7356
|
],
|
|
7326
|
-
AddManualPaymentToOrderResult: [
|
|
7327
|
-
|
|
7328
|
-
|
|
7329
|
-
'Order',
|
|
7330
|
-
'EmptyOrderLineSelectionError',
|
|
7331
|
-
'QuantityTooGreatError',
|
|
7332
|
-
'MultipleOrderError',
|
|
7333
|
-
'CancelActiveOrderError',
|
|
7334
|
-
'OrderStateTransitionError',
|
|
7357
|
+
"AddManualPaymentToOrderResult": [
|
|
7358
|
+
"Order",
|
|
7359
|
+
"ManualPaymentStateError"
|
|
7335
7360
|
],
|
|
7336
|
-
|
|
7337
|
-
|
|
7338
|
-
|
|
7339
|
-
CreatePromotionResult: ['Promotion', 'MissingConditionsError'],
|
|
7340
|
-
CustomField: [
|
|
7341
|
-
'BooleanCustomFieldConfig',
|
|
7342
|
-
'DateTimeCustomFieldConfig',
|
|
7343
|
-
'FloatCustomFieldConfig',
|
|
7344
|
-
'IntCustomFieldConfig',
|
|
7345
|
-
'LocaleStringCustomFieldConfig',
|
|
7346
|
-
'RelationCustomFieldConfig',
|
|
7347
|
-
'StringCustomFieldConfig',
|
|
7348
|
-
'TextCustomFieldConfig',
|
|
7361
|
+
"AuthenticationResult": [
|
|
7362
|
+
"CurrentUser",
|
|
7363
|
+
"InvalidCredentialsError"
|
|
7349
7364
|
],
|
|
7350
|
-
|
|
7351
|
-
|
|
7352
|
-
|
|
7353
|
-
|
|
7354
|
-
|
|
7355
|
-
|
|
7356
|
-
|
|
7357
|
-
'RelationCustomFieldConfig',
|
|
7358
|
-
'TextCustomFieldConfig',
|
|
7365
|
+
"CancelOrderResult": [
|
|
7366
|
+
"Order",
|
|
7367
|
+
"EmptyOrderLineSelectionError",
|
|
7368
|
+
"QuantityTooGreatError",
|
|
7369
|
+
"MultipleOrderError",
|
|
7370
|
+
"CancelActiveOrderError",
|
|
7371
|
+
"OrderStateTransitionError"
|
|
7359
7372
|
],
|
|
7360
|
-
|
|
7361
|
-
|
|
7362
|
-
|
|
7363
|
-
'ChannelDefaultLanguageError',
|
|
7364
|
-
'CreateFulfillmentError',
|
|
7365
|
-
'EmailAddressConflictError',
|
|
7366
|
-
'EmptyOrderLineSelectionError',
|
|
7367
|
-
'FulfillmentStateTransitionError',
|
|
7368
|
-
'InsufficientStockError',
|
|
7369
|
-
'InsufficientStockOnHandError',
|
|
7370
|
-
'InvalidCredentialsError',
|
|
7371
|
-
'InvalidFulfillmentHandlerError',
|
|
7372
|
-
'ItemsAlreadyFulfilledError',
|
|
7373
|
-
'LanguageNotAvailableError',
|
|
7374
|
-
'ManualPaymentStateError',
|
|
7375
|
-
'MimeTypeError',
|
|
7376
|
-
'MissingConditionsError',
|
|
7377
|
-
'MultipleOrderError',
|
|
7378
|
-
'NativeAuthStrategyError',
|
|
7379
|
-
'NegativeQuantityError',
|
|
7380
|
-
'NoChangesSpecifiedError',
|
|
7381
|
-
'NothingToRefundError',
|
|
7382
|
-
'OrderLimitError',
|
|
7383
|
-
'OrderModificationStateError',
|
|
7384
|
-
'OrderStateTransitionError',
|
|
7385
|
-
'PaymentMethodMissingError',
|
|
7386
|
-
'PaymentOrderMismatchError',
|
|
7387
|
-
'PaymentStateTransitionError',
|
|
7388
|
-
'ProductOptionInUseError',
|
|
7389
|
-
'QuantityTooGreatError',
|
|
7390
|
-
'RefundOrderStateError',
|
|
7391
|
-
'RefundPaymentIdMissingError',
|
|
7392
|
-
'RefundStateTransitionError',
|
|
7393
|
-
'SettlePaymentError',
|
|
7373
|
+
"CreateAssetResult": [
|
|
7374
|
+
"Asset",
|
|
7375
|
+
"MimeTypeError"
|
|
7394
7376
|
],
|
|
7395
|
-
|
|
7396
|
-
|
|
7397
|
-
|
|
7398
|
-
'OrderModificationStateError',
|
|
7399
|
-
'PaymentMethodMissingError',
|
|
7400
|
-
'RefundPaymentIdMissingError',
|
|
7401
|
-
'OrderLimitError',
|
|
7402
|
-
'NegativeQuantityError',
|
|
7403
|
-
'InsufficientStockError',
|
|
7377
|
+
"CreateChannelResult": [
|
|
7378
|
+
"Channel",
|
|
7379
|
+
"LanguageNotAvailableError"
|
|
7404
7380
|
],
|
|
7405
|
-
|
|
7406
|
-
|
|
7407
|
-
|
|
7408
|
-
'Administrator',
|
|
7409
|
-
'Allocation',
|
|
7410
|
-
'Asset',
|
|
7411
|
-
'AuthenticationMethod',
|
|
7412
|
-
'Cancellation',
|
|
7413
|
-
'Channel',
|
|
7414
|
-
'Collection',
|
|
7415
|
-
'Country',
|
|
7416
|
-
'Customer',
|
|
7417
|
-
'CustomerGroup',
|
|
7418
|
-
'Facet',
|
|
7419
|
-
'FacetValue',
|
|
7420
|
-
'Fulfillment',
|
|
7421
|
-
'HistoryEntry',
|
|
7422
|
-
'Job',
|
|
7423
|
-
'Order',
|
|
7424
|
-
'OrderItem',
|
|
7425
|
-
'OrderLine',
|
|
7426
|
-
'OrderModification',
|
|
7427
|
-
'Payment',
|
|
7428
|
-
'PaymentMethod',
|
|
7429
|
-
'Product',
|
|
7430
|
-
'ProductOption',
|
|
7431
|
-
'ProductOptionGroup',
|
|
7432
|
-
'ProductVariant',
|
|
7433
|
-
'Promotion',
|
|
7434
|
-
'Refund',
|
|
7435
|
-
'Release',
|
|
7436
|
-
'Return',
|
|
7437
|
-
'Role',
|
|
7438
|
-
'Sale',
|
|
7439
|
-
'ShippingMethod',
|
|
7440
|
-
'StockAdjustment',
|
|
7441
|
-
'Surcharge',
|
|
7442
|
-
'Tag',
|
|
7443
|
-
'TaxCategory',
|
|
7444
|
-
'TaxRate',
|
|
7445
|
-
'User',
|
|
7446
|
-
'Zone',
|
|
7381
|
+
"CreateCustomerResult": [
|
|
7382
|
+
"Customer",
|
|
7383
|
+
"EmailAddressConflictError"
|
|
7447
7384
|
],
|
|
7448
|
-
|
|
7449
|
-
|
|
7450
|
-
|
|
7451
|
-
'CollectionList',
|
|
7452
|
-
'CountryList',
|
|
7453
|
-
'CustomerGroupList',
|
|
7454
|
-
'CustomerList',
|
|
7455
|
-
'FacetList',
|
|
7456
|
-
'HistoryEntryList',
|
|
7457
|
-
'JobList',
|
|
7458
|
-
'OrderList',
|
|
7459
|
-
'PaymentMethodList',
|
|
7460
|
-
'ProductList',
|
|
7461
|
-
'ProductVariantList',
|
|
7462
|
-
'PromotionList',
|
|
7463
|
-
'RoleList',
|
|
7464
|
-
'ShippingMethodList',
|
|
7465
|
-
'TagList',
|
|
7466
|
-
'TaxRateList',
|
|
7385
|
+
"CreatePromotionResult": [
|
|
7386
|
+
"Promotion",
|
|
7387
|
+
"MissingConditionsError"
|
|
7467
7388
|
],
|
|
7468
|
-
|
|
7469
|
-
|
|
7470
|
-
|
|
7471
|
-
|
|
7472
|
-
|
|
7473
|
-
|
|
7474
|
-
|
|
7475
|
-
|
|
7476
|
-
|
|
7477
|
-
'RefundStateTransitionError',
|
|
7389
|
+
"CustomField": [
|
|
7390
|
+
"BooleanCustomFieldConfig",
|
|
7391
|
+
"DateTimeCustomFieldConfig",
|
|
7392
|
+
"FloatCustomFieldConfig",
|
|
7393
|
+
"IntCustomFieldConfig",
|
|
7394
|
+
"LocaleStringCustomFieldConfig",
|
|
7395
|
+
"RelationCustomFieldConfig",
|
|
7396
|
+
"StringCustomFieldConfig",
|
|
7397
|
+
"TextCustomFieldConfig"
|
|
7478
7398
|
],
|
|
7479
|
-
|
|
7480
|
-
|
|
7481
|
-
|
|
7482
|
-
|
|
7483
|
-
|
|
7484
|
-
|
|
7485
|
-
|
|
7399
|
+
"CustomFieldConfig": [
|
|
7400
|
+
"StringCustomFieldConfig",
|
|
7401
|
+
"LocaleStringCustomFieldConfig",
|
|
7402
|
+
"IntCustomFieldConfig",
|
|
7403
|
+
"FloatCustomFieldConfig",
|
|
7404
|
+
"BooleanCustomFieldConfig",
|
|
7405
|
+
"DateTimeCustomFieldConfig",
|
|
7406
|
+
"RelationCustomFieldConfig",
|
|
7407
|
+
"TextCustomFieldConfig"
|
|
7486
7408
|
],
|
|
7487
|
-
|
|
7488
|
-
|
|
7489
|
-
|
|
7490
|
-
|
|
7491
|
-
|
|
7492
|
-
|
|
7493
|
-
|
|
7494
|
-
|
|
7495
|
-
|
|
7496
|
-
|
|
7497
|
-
|
|
7409
|
+
"ErrorResult": [
|
|
7410
|
+
"AlreadyRefundedError",
|
|
7411
|
+
"CancelActiveOrderError",
|
|
7412
|
+
"ChannelDefaultLanguageError",
|
|
7413
|
+
"CreateFulfillmentError",
|
|
7414
|
+
"EmailAddressConflictError",
|
|
7415
|
+
"EmptyOrderLineSelectionError",
|
|
7416
|
+
"FulfillmentStateTransitionError",
|
|
7417
|
+
"InsufficientStockError",
|
|
7418
|
+
"InsufficientStockOnHandError",
|
|
7419
|
+
"InvalidCredentialsError",
|
|
7420
|
+
"InvalidFulfillmentHandlerError",
|
|
7421
|
+
"ItemsAlreadyFulfilledError",
|
|
7422
|
+
"LanguageNotAvailableError",
|
|
7423
|
+
"ManualPaymentStateError",
|
|
7424
|
+
"MimeTypeError",
|
|
7425
|
+
"MissingConditionsError",
|
|
7426
|
+
"MultipleOrderError",
|
|
7427
|
+
"NativeAuthStrategyError",
|
|
7428
|
+
"NegativeQuantityError",
|
|
7429
|
+
"NoChangesSpecifiedError",
|
|
7430
|
+
"NothingToRefundError",
|
|
7431
|
+
"OrderLimitError",
|
|
7432
|
+
"OrderModificationStateError",
|
|
7433
|
+
"OrderStateTransitionError",
|
|
7434
|
+
"PaymentMethodMissingError",
|
|
7435
|
+
"PaymentOrderMismatchError",
|
|
7436
|
+
"PaymentStateTransitionError",
|
|
7437
|
+
"ProductOptionInUseError",
|
|
7438
|
+
"QuantityTooGreatError",
|
|
7439
|
+
"RefundOrderStateError",
|
|
7440
|
+
"RefundPaymentIdMissingError",
|
|
7441
|
+
"RefundStateTransitionError",
|
|
7442
|
+
"SettlePaymentError"
|
|
7443
|
+
],
|
|
7444
|
+
"ModifyOrderResult": [
|
|
7445
|
+
"Order",
|
|
7446
|
+
"NoChangesSpecifiedError",
|
|
7447
|
+
"OrderModificationStateError",
|
|
7448
|
+
"PaymentMethodMissingError",
|
|
7449
|
+
"RefundPaymentIdMissingError",
|
|
7450
|
+
"OrderLimitError",
|
|
7451
|
+
"NegativeQuantityError",
|
|
7452
|
+
"InsufficientStockError"
|
|
7453
|
+
],
|
|
7454
|
+
"NativeAuthenticationResult": [
|
|
7455
|
+
"CurrentUser",
|
|
7456
|
+
"InvalidCredentialsError",
|
|
7457
|
+
"NativeAuthStrategyError"
|
|
7458
|
+
],
|
|
7459
|
+
"Node": [
|
|
7460
|
+
"Address",
|
|
7461
|
+
"Administrator",
|
|
7462
|
+
"Allocation",
|
|
7463
|
+
"Asset",
|
|
7464
|
+
"AuthenticationMethod",
|
|
7465
|
+
"Cancellation",
|
|
7466
|
+
"Channel",
|
|
7467
|
+
"Collection",
|
|
7468
|
+
"Country",
|
|
7469
|
+
"Customer",
|
|
7470
|
+
"CustomerGroup",
|
|
7471
|
+
"Facet",
|
|
7472
|
+
"FacetValue",
|
|
7473
|
+
"Fulfillment",
|
|
7474
|
+
"HistoryEntry",
|
|
7475
|
+
"Job",
|
|
7476
|
+
"Order",
|
|
7477
|
+
"OrderItem",
|
|
7478
|
+
"OrderLine",
|
|
7479
|
+
"OrderModification",
|
|
7480
|
+
"Payment",
|
|
7481
|
+
"PaymentMethod",
|
|
7482
|
+
"Product",
|
|
7483
|
+
"ProductOption",
|
|
7484
|
+
"ProductOptionGroup",
|
|
7485
|
+
"ProductVariant",
|
|
7486
|
+
"Promotion",
|
|
7487
|
+
"Refund",
|
|
7488
|
+
"Release",
|
|
7489
|
+
"Return",
|
|
7490
|
+
"Role",
|
|
7491
|
+
"Sale",
|
|
7492
|
+
"ShippingMethod",
|
|
7493
|
+
"StockAdjustment",
|
|
7494
|
+
"Surcharge",
|
|
7495
|
+
"Tag",
|
|
7496
|
+
"TaxCategory",
|
|
7497
|
+
"TaxRate",
|
|
7498
|
+
"User",
|
|
7499
|
+
"Zone"
|
|
7500
|
+
],
|
|
7501
|
+
"PaginatedList": [
|
|
7502
|
+
"AdministratorList",
|
|
7503
|
+
"AssetList",
|
|
7504
|
+
"CollectionList",
|
|
7505
|
+
"CountryList",
|
|
7506
|
+
"CustomerGroupList",
|
|
7507
|
+
"CustomerList",
|
|
7508
|
+
"FacetList",
|
|
7509
|
+
"HistoryEntryList",
|
|
7510
|
+
"JobList",
|
|
7511
|
+
"OrderList",
|
|
7512
|
+
"PaymentMethodList",
|
|
7513
|
+
"ProductList",
|
|
7514
|
+
"ProductVariantList",
|
|
7515
|
+
"PromotionList",
|
|
7516
|
+
"RoleList",
|
|
7517
|
+
"ShippingMethodList",
|
|
7518
|
+
"TagList",
|
|
7519
|
+
"TaxRateList"
|
|
7520
|
+
],
|
|
7521
|
+
"RefundOrderResult": [
|
|
7522
|
+
"Refund",
|
|
7523
|
+
"QuantityTooGreatError",
|
|
7524
|
+
"NothingToRefundError",
|
|
7525
|
+
"OrderStateTransitionError",
|
|
7526
|
+
"MultipleOrderError",
|
|
7527
|
+
"PaymentOrderMismatchError",
|
|
7528
|
+
"RefundOrderStateError",
|
|
7529
|
+
"AlreadyRefundedError",
|
|
7530
|
+
"RefundStateTransitionError"
|
|
7531
|
+
],
|
|
7532
|
+
"RemoveOptionGroupFromProductResult": [
|
|
7533
|
+
"Product",
|
|
7534
|
+
"ProductOptionInUseError"
|
|
7535
|
+
],
|
|
7536
|
+
"SearchResultPrice": [
|
|
7537
|
+
"PriceRange",
|
|
7538
|
+
"SinglePrice"
|
|
7539
|
+
],
|
|
7540
|
+
"SettlePaymentResult": [
|
|
7541
|
+
"Payment",
|
|
7542
|
+
"SettlePaymentError",
|
|
7543
|
+
"PaymentStateTransitionError",
|
|
7544
|
+
"OrderStateTransitionError"
|
|
7545
|
+
],
|
|
7546
|
+
"SettleRefundResult": [
|
|
7547
|
+
"Refund",
|
|
7548
|
+
"RefundStateTransitionError"
|
|
7549
|
+
],
|
|
7550
|
+
"StockMovement": [
|
|
7551
|
+
"Allocation",
|
|
7552
|
+
"Cancellation",
|
|
7553
|
+
"Release",
|
|
7554
|
+
"Return",
|
|
7555
|
+
"Sale",
|
|
7556
|
+
"StockAdjustment"
|
|
7557
|
+
],
|
|
7558
|
+
"StockMovementItem": [
|
|
7559
|
+
"StockAdjustment",
|
|
7560
|
+
"Allocation",
|
|
7561
|
+
"Sale",
|
|
7562
|
+
"Cancellation",
|
|
7563
|
+
"Return",
|
|
7564
|
+
"Release"
|
|
7565
|
+
],
|
|
7566
|
+
"TransitionFulfillmentToStateResult": [
|
|
7567
|
+
"Fulfillment",
|
|
7568
|
+
"FulfillmentStateTransitionError"
|
|
7569
|
+
],
|
|
7570
|
+
"TransitionOrderToStateResult": [
|
|
7571
|
+
"Order",
|
|
7572
|
+
"OrderStateTransitionError"
|
|
7573
|
+
],
|
|
7574
|
+
"TransitionPaymentToStateResult": [
|
|
7575
|
+
"Payment",
|
|
7576
|
+
"PaymentStateTransitionError"
|
|
7577
|
+
],
|
|
7578
|
+
"UpdateChannelResult": [
|
|
7579
|
+
"Channel",
|
|
7580
|
+
"LanguageNotAvailableError"
|
|
7581
|
+
],
|
|
7582
|
+
"UpdateCustomerResult": [
|
|
7583
|
+
"Customer",
|
|
7584
|
+
"EmailAddressConflictError"
|
|
7585
|
+
],
|
|
7586
|
+
"UpdateGlobalSettingsResult": [
|
|
7587
|
+
"GlobalSettings",
|
|
7588
|
+
"ChannelDefaultLanguageError"
|
|
7589
|
+
],
|
|
7590
|
+
"UpdatePromotionResult": [
|
|
7591
|
+
"Promotion",
|
|
7592
|
+
"MissingConditionsError"
|
|
7593
|
+
]
|
|
7594
|
+
}
|
|
7498
7595
|
};
|
|
7499
7596
|
|
|
7500
7597
|
// Allows the introspectionResult to be imported as a named symbol
|
|
@@ -8280,6 +8377,10 @@ class JsonEditorFormInputComponent {
|
|
|
8280
8377
|
this.changeDetector = changeDetector;
|
|
8281
8378
|
this.isValid = true;
|
|
8282
8379
|
}
|
|
8380
|
+
get height() {
|
|
8381
|
+
var _a;
|
|
8382
|
+
return ((_a = this.config.ui) === null || _a === void 0 ? void 0 : _a.height) || this.config.height;
|
|
8383
|
+
}
|
|
8283
8384
|
ngOnInit() {
|
|
8284
8385
|
this.formControl.addValidators(jsonValidator());
|
|
8285
8386
|
}
|
|
@@ -8451,12 +8552,24 @@ CustomerGroupFormInputComponent.propDecorators = {
|
|
|
8451
8552
|
* @docsPage default-inputs
|
|
8452
8553
|
*/
|
|
8453
8554
|
class DateFormInputComponent {
|
|
8555
|
+
get min() {
|
|
8556
|
+
var _a;
|
|
8557
|
+
return ((_a = this.config.ui) === null || _a === void 0 ? void 0 : _a.min) || this.config.min;
|
|
8558
|
+
}
|
|
8559
|
+
get max() {
|
|
8560
|
+
var _a;
|
|
8561
|
+
return ((_a = this.config.ui) === null || _a === void 0 ? void 0 : _a.max) || this.config.max;
|
|
8562
|
+
}
|
|
8563
|
+
get yearRange() {
|
|
8564
|
+
var _a;
|
|
8565
|
+
return ((_a = this.config.ui) === null || _a === void 0 ? void 0 : _a.yearRange) || this.config.yearRange;
|
|
8566
|
+
}
|
|
8454
8567
|
}
|
|
8455
8568
|
DateFormInputComponent.id = 'date-form-input';
|
|
8456
8569
|
DateFormInputComponent.decorators = [
|
|
8457
8570
|
{ type: Component, args: [{
|
|
8458
8571
|
selector: 'vdr-date-form-input',
|
|
8459
|
-
template: "<vdr-datetime-picker\r\n [formControl]=\"formControl\"\r\n [min]=\"
|
|
8572
|
+
template: "<vdr-datetime-picker\r\n [formControl]=\"formControl\"\r\n [min]=\"min\"\r\n [max]=\"max\"\r\n [yearRange]=\"yearRange\"\r\n [readonly]=\"readonly\"\r\n>\r\n</vdr-datetime-picker>\r\n",
|
|
8460
8573
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
8461
8574
|
styles: [""]
|
|
8462
8575
|
},] }
|
|
@@ -8506,12 +8619,32 @@ FacetValueFormInputComponent.ctorParameters = () => [
|
|
|
8506
8619
|
* @docsPage default-inputs
|
|
8507
8620
|
*/
|
|
8508
8621
|
class NumberFormInputComponent {
|
|
8622
|
+
get prefix() {
|
|
8623
|
+
var _a;
|
|
8624
|
+
return ((_a = this.config.ui) === null || _a === void 0 ? void 0 : _a.prefix) || this.config.prefix;
|
|
8625
|
+
}
|
|
8626
|
+
get suffix() {
|
|
8627
|
+
var _a;
|
|
8628
|
+
return ((_a = this.config.ui) === null || _a === void 0 ? void 0 : _a.suffix) || this.config.suffix;
|
|
8629
|
+
}
|
|
8630
|
+
get min() {
|
|
8631
|
+
var _a;
|
|
8632
|
+
return ((_a = this.config.ui) === null || _a === void 0 ? void 0 : _a.min) || this.config.min;
|
|
8633
|
+
}
|
|
8634
|
+
get max() {
|
|
8635
|
+
var _a;
|
|
8636
|
+
return ((_a = this.config.ui) === null || _a === void 0 ? void 0 : _a.max) || this.config.max;
|
|
8637
|
+
}
|
|
8638
|
+
get step() {
|
|
8639
|
+
var _a;
|
|
8640
|
+
return ((_a = this.config.ui) === null || _a === void 0 ? void 0 : _a.step) || this.config.step;
|
|
8641
|
+
}
|
|
8509
8642
|
}
|
|
8510
8643
|
NumberFormInputComponent.id = 'number-form-input';
|
|
8511
8644
|
NumberFormInputComponent.decorators = [
|
|
8512
8645
|
{ type: Component, args: [{
|
|
8513
8646
|
selector: 'vdr-number-form-input',
|
|
8514
|
-
template: "<vdr-affixed-input
|
|
8647
|
+
template: "<vdr-affixed-input\r\n [suffix]=\"suffix\"\r\n [prefix]=\"prefix\"\r\n>\r\n <input\r\n type=\"number\"\r\n [readonly]=\"readonly\"\r\n [min]=\"min\"\r\n [max]=\"max\"\r\n [step]=\"step\"\r\n [formControl]=\"formControl\"\r\n />\r\n</vdr-affixed-input>\r\n",
|
|
8515
8648
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
8516
8649
|
styles: [""]
|
|
8517
8650
|
},] }
|
|
@@ -8646,12 +8779,16 @@ RichTextFormInputComponent.decorators = [
|
|
|
8646
8779
|
* @docsPage default-inputs
|
|
8647
8780
|
*/
|
|
8648
8781
|
class SelectFormInputComponent {
|
|
8782
|
+
get options() {
|
|
8783
|
+
var _a;
|
|
8784
|
+
return ((_a = this.config.ui) === null || _a === void 0 ? void 0 : _a.options) || this.config.options;
|
|
8785
|
+
}
|
|
8649
8786
|
}
|
|
8650
8787
|
SelectFormInputComponent.id = 'select-form-input';
|
|
8651
8788
|
SelectFormInputComponent.decorators = [
|
|
8652
8789
|
{ type: Component, args: [{
|
|
8653
8790
|
selector: 'vdr-select-form-input',
|
|
8654
|
-
template: "<select clrSelect [formControl]=\"formControl\" [vdrDisabled]=\"readonly\">\r\n <option *ngIf=\"config.nullable\" [ngValue]=\"null\"></option>\r\n <option *ngFor=\"let option of
|
|
8791
|
+
template: "<select clrSelect [formControl]=\"formControl\" [vdrDisabled]=\"readonly\">\r\n <option *ngIf=\"config.nullable\" [ngValue]=\"null\"></option>\r\n <option *ngFor=\"let option of options\" [value]=\"option.value\">\r\n {{ (option | customFieldLabel) || option.label || option.value }}\r\n </option>\r\n</select>\r\n",
|
|
8655
8792
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
8656
8793
|
styles: ["select{width:100%}\n"]
|
|
8657
8794
|
},] }
|
|
@@ -8668,12 +8805,20 @@ SelectFormInputComponent.propDecorators = {
|
|
|
8668
8805
|
* @docsPage default-inputs
|
|
8669
8806
|
*/
|
|
8670
8807
|
class TextFormInputComponent {
|
|
8808
|
+
get prefix() {
|
|
8809
|
+
var _a;
|
|
8810
|
+
return ((_a = this.config.ui) === null || _a === void 0 ? void 0 : _a.prefix) || this.config.prefix;
|
|
8811
|
+
}
|
|
8812
|
+
get suffix() {
|
|
8813
|
+
var _a;
|
|
8814
|
+
return ((_a = this.config.ui) === null || _a === void 0 ? void 0 : _a.suffix) || this.config.suffix;
|
|
8815
|
+
}
|
|
8671
8816
|
}
|
|
8672
8817
|
TextFormInputComponent.id = 'text-form-input';
|
|
8673
8818
|
TextFormInputComponent.decorators = [
|
|
8674
8819
|
{ type: Component, args: [{
|
|
8675
8820
|
selector: 'vdr-text-form-input',
|
|
8676
|
-
template: "<input\r\n
|
|
8821
|
+
template: "<vdr-affixed-input\r\n [suffix]=\"suffix\"\r\n [prefix]=\"prefix\"\r\n>\r\n <input type=\"text\" [readonly]=\"readonly\" [formControl]=\"formControl\" />\r\n</vdr-affixed-input>\r\n",
|
|
8677
8822
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
8678
8823
|
styles: ["input{width:100%}\n"]
|
|
8679
8824
|
},] }
|
|
@@ -11267,6 +11412,19 @@ class ExtensionHostService {
|
|
|
11267
11412
|
this.destroyMessage$.next();
|
|
11268
11413
|
break;
|
|
11269
11414
|
}
|
|
11415
|
+
case 'active-route': {
|
|
11416
|
+
const routeData = {
|
|
11417
|
+
url: window.location.href,
|
|
11418
|
+
origin: window.location.origin,
|
|
11419
|
+
pathname: window.location.pathname,
|
|
11420
|
+
params: this.routeSnapshot.params,
|
|
11421
|
+
queryParams: this.routeSnapshot.queryParams,
|
|
11422
|
+
fragment: this.routeSnapshot.fragment,
|
|
11423
|
+
};
|
|
11424
|
+
this.sendMessage({ data: routeData, error: false, complete: false, requestId: data.requestId }, origin);
|
|
11425
|
+
this.sendMessage({ data: null, error: false, complete: true, requestId: data.requestId }, origin);
|
|
11426
|
+
break;
|
|
11427
|
+
}
|
|
11270
11428
|
case 'graphql-query': {
|
|
11271
11429
|
const { document, variables, fetchPolicy } = data.data;
|
|
11272
11430
|
this.dataService
|
|
@@ -11293,8 +11451,9 @@ class ExtensionHostService {
|
|
|
11293
11451
|
}
|
|
11294
11452
|
};
|
|
11295
11453
|
}
|
|
11296
|
-
init(extensionWindow) {
|
|
11454
|
+
init(extensionWindow, routeSnapshot) {
|
|
11297
11455
|
this.extensionWindow = extensionWindow;
|
|
11456
|
+
this.routeSnapshot = routeSnapshot;
|
|
11298
11457
|
window.addEventListener('message', this.handleMessage);
|
|
11299
11458
|
}
|
|
11300
11459
|
destroy() {
|
|
@@ -11351,7 +11510,7 @@ class ExtensionHostComponent {
|
|
|
11351
11510
|
if (this.openInIframe) {
|
|
11352
11511
|
const extensionWindow = this.extensionFrame.nativeElement.contentWindow;
|
|
11353
11512
|
if (extensionWindow) {
|
|
11354
|
-
this.extensionHostService.init(extensionWindow);
|
|
11513
|
+
this.extensionHostService.init(extensionWindow, this.route.snapshot);
|
|
11355
11514
|
}
|
|
11356
11515
|
}
|
|
11357
11516
|
}
|
|
@@ -11365,7 +11524,7 @@ class ExtensionHostComponent {
|
|
|
11365
11524
|
if (!extensionWindow) {
|
|
11366
11525
|
return;
|
|
11367
11526
|
}
|
|
11368
|
-
this.extensionHostService.init(extensionWindow);
|
|
11527
|
+
this.extensionHostService.init(extensionWindow, this.route.snapshot);
|
|
11369
11528
|
this.extensionWindowIsOpen = true;
|
|
11370
11529
|
this.extensionWindow = extensionWindow;
|
|
11371
11530
|
let timer;
|
|
@@ -12893,7 +13052,9 @@ class TabbedCustomFieldsComponent {
|
|
|
12893
13052
|
tabMap.set(tabName, [field]);
|
|
12894
13053
|
}
|
|
12895
13054
|
}
|
|
12896
|
-
return Array.from(tabMap.entries())
|
|
13055
|
+
return Array.from(tabMap.entries())
|
|
13056
|
+
.sort((a, b) => (a[0] === this.defaultTabName ? -1 : 1))
|
|
13057
|
+
.map(([tabName, customFields]) => ({ tabName, customFields }));
|
|
12897
13058
|
}
|
|
12898
13059
|
}
|
|
12899
13060
|
TabbedCustomFieldsComponent.decorators = [
|
|
@@ -15332,7 +15493,7 @@ function patchObject(obj, patch) {
|
|
|
15332
15493
|
}
|
|
15333
15494
|
|
|
15334
15495
|
// Auto-generated by the set-version.js script.
|
|
15335
|
-
const ADMIN_UI_VERSION = '1.4.0
|
|
15496
|
+
const ADMIN_UI_VERSION = '1.4.0';
|
|
15336
15497
|
|
|
15337
15498
|
/**
|
|
15338
15499
|
* Responsible for registering dashboard widget components and querying for layouts.
|
|
@@ -15552,5 +15713,5 @@ function unicodePatternValidator(patternRe) {
|
|
|
15552
15713
|
* Generated bundle index. Do not edit.
|
|
15553
15714
|
*/
|
|
15554
15715
|
|
|
15555
|
-
export { ADDRESS_FRAGMENT, ADD_CUSTOMERS_TO_GROUP, 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, ADMINISTRATOR_FRAGMENT, ADMIN_UI_VERSION, ALL_CUSTOM_FIELDS_FRAGMENT, ASSET_FRAGMENT, 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, AssetPreviewPipe, AssetSearchInputComponent, AssetType, AuthDataService, AuthGuard, AuthService, BOOLEAN_CUSTOM_FIELD_FRAGMENT, BaseDataService, BaseDetailComponent, BaseEntityResolver, BaseListComponent, BooleanFormInputComponent, BreadcrumbComponent, CANCEL_JOB, CANCEL_ORDER, 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_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, ComponentRegistryService, ConfigurableInputComponent, CoreModule, CurrencyCode, CurrencyFormInputComponent, CurrencyInputComponent, CustomDetailComponentHostComponent, CustomDetailComponentService, CustomFieldComponentService, CustomFieldControlComponent, CustomFieldLabelPipe, CustomHttpTranslationLoader, CustomerDataService, CustomerGroupFormInputComponent, CustomerLabelComponent, DATE_TIME_CUSTOM_FIELD_FRAGMENT, DELETE_ADMINISTRATOR, DELETE_ASSETS, DELETE_CHANNEL, DELETE_COLLECTION, DELETE_COUNTRY, DELETE_CUSTOMER, DELETE_CUSTOMER_GROUP, DELETE_CUSTOMER_NOTE, DELETE_FACET, DELETE_FACET_VALUES, DELETE_ORDER_NOTE, DELETE_PAYMENT_METHOD, DELETE_PRODUCT, DELETE_PRODUCT_VARIANT, DELETE_PROMOTION, DELETE_ROLE, DELETE_SHIPPING_METHOD, DELETE_TAG, DELETE_TAX_CATEGORY, DELETE_TAX_RATE, DELETE_ZONE, DISCOUNT_FRAGMENT, 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_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_UI_STATE, GET_USER_STATUS, GET_ZONE, GET_ZONES, GLOBAL_SETTINGS_FRAGMENT, GlobalFlag, HasPermissionPipe, HealthCheckService, HelpTooltipComponent, HistoryEntryDetailComponent, HistoryEntryType, HttpLoaderFactory, I18nService, INT_CUSTOM_FIELD_FRAGMENT, 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_METHOD_FRAGMENT, 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, ProductSelectorComponent, ProductSelectorFormInputComponent, PromotionDataService, ProsemirrorService, QueryResult, REFUND_FRAGMENT, REFUND_ORDER, REINDEX, RELATION_CUSTOM_FIELD_FRAGMENT, REMOVE_CUSTOMERS_FROM_GROUP, 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, RelationAssetInputComponent, RelationCardComponent, RelationCardDetailDirective, RelationCardPreviewDirective, RelationCustomerInputComponent, RelationFormInputComponent, RelationProductInputComponent, RelationProductVariantInputComponent, RelationSelectorDialogComponent, RichTextEditorComponent, RichTextFormInputComponent, SEARCH_PRODUCTS, SETTLE_PAYMENT, SETTLE_REFUND, SET_ACTIVE_CHANNEL, SET_AS_LOGGED_IN, SET_AS_LOGGED_OUT, SET_CONTENT_LANGUAGE, SET_DISPLAY_UI_EXTENSION_POINTS, SET_UI_LANGUAGE_AND_LOCALE, SET_UI_LOCALE, SET_UI_THEME, SHIPPING_METHOD_FRAGMENT, STRING_CUSTOM_FIELD_FRAGMENT, SelectFormInputComponent, SelectToggleComponent, SentenceCasePipe, ServerConfigService, SettingsDataService, SharedModule, ShippingMethodDataService, SimpleDialogComponent, SingleSearchSelectionModel, SingleSearchSelectionModelFactory, SortOrder, SortPipe, StateI18nTokenPipe, StatusBadgeComponent, StockMovementType, StringToColorPipe, 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, blockQuoteRule, buildInputRules, buildKeymap, buildMenuItems, bulletListRule, canInsert, clientResolvers, codeBlockRule, configurableDefinitionToInstance, configurableOperationValueIsValid, createApollo, createResolveData, createUpdatedTranslatable, dayOfWeekIndex, defaultFormInputs, detailBreadcrumb, encodeConfigArgValue, findTranslation, flattenFacetValues, getAppConfig, getClientDefaults, getConfigArgValue, getDefaultConfigArgValue, getDefaultUiLanguage, getDefaultUiLocale, getLocales, getMarkRange, getServerLocation, headingRule, hostExternalFrame, initializeServerConfigService, insertImageItem, interpolateDescription, result as introspectionResult, isEntityCreateOrUpdateMutation, jsonValidator, linkItem, linkSelectPlugin, loadAppConfig, markActive, orderedListRule, registerCustomDetailComponent, registerCustomFieldComponent, registerDashboardWidget, registerDefaultFormInputs, registerFormInputComponent, removeReadonlyCustomFields, setDashboardWidgetLayout, stringToColor, toConfigurableOperationInput, transformRelationCustomFieldInputs, unicodePatternValidator, weekDayNames, ɵ1, ɵ10, ɵ2, ɵ3, ɵ4, ɵ5, ɵ6, ɵ7, ɵ8, ɵ9 };
|
|
15716
|
+
export { ADDRESS_FRAGMENT, ADD_CUSTOMERS_TO_GROUP, 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, ADMINISTRATOR_FRAGMENT, ADMIN_UI_VERSION, ALL_CUSTOM_FIELDS_FRAGMENT, ASSET_FRAGMENT, 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, AssetPreviewPipe, AssetSearchInputComponent, AssetType, AuthDataService, AuthGuard, AuthService, BOOLEAN_CUSTOM_FIELD_FRAGMENT, BaseDataService, BaseDetailComponent, BaseEntityResolver, BaseListComponent, BooleanFormInputComponent, BreadcrumbComponent, CANCEL_JOB, CANCEL_ORDER, 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_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, ComponentRegistryService, ConfigurableInputComponent, CoreModule, CurrencyCode, CurrencyFormInputComponent, CurrencyInputComponent, CustomDetailComponentHostComponent, CustomDetailComponentService, CustomFieldComponentService, CustomFieldControlComponent, CustomFieldLabelPipe, CustomHttpTranslationLoader, CustomerDataService, CustomerGroupFormInputComponent, CustomerLabelComponent, DATE_TIME_CUSTOM_FIELD_FRAGMENT, DELETE_ADMINISTRATOR, DELETE_ASSETS, DELETE_CHANNEL, DELETE_COLLECTION, DELETE_COUNTRY, DELETE_CUSTOMER, DELETE_CUSTOMER_GROUP, DELETE_CUSTOMER_NOTE, DELETE_FACET, DELETE_FACET_VALUES, DELETE_ORDER_NOTE, DELETE_PAYMENT_METHOD, DELETE_PRODUCT, DELETE_PRODUCT_VARIANT, DELETE_PROMOTION, DELETE_ROLE, DELETE_SHIPPING_METHOD, DELETE_TAG, DELETE_TAX_CATEGORY, DELETE_TAX_RATE, DELETE_ZONE, DISCOUNT_FRAGMENT, 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_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, HistoryEntryDetailComponent, HistoryEntryType, HttpLoaderFactory, I18nService, INT_CUSTOM_FIELD_FRAGMENT, 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_METHOD_FRAGMENT, 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, ProductSelectorComponent, ProductSelectorFormInputComponent, PromotionDataService, ProsemirrorService, QueryResult, REFUND_FRAGMENT, REFUND_ORDER, REINDEX, RELATION_CUSTOM_FIELD_FRAGMENT, REMOVE_CUSTOMERS_FROM_GROUP, 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, RelationAssetInputComponent, RelationCardComponent, RelationCardDetailDirective, RelationCardPreviewDirective, RelationCustomerInputComponent, RelationFormInputComponent, RelationProductInputComponent, RelationProductVariantInputComponent, RelationSelectorDialogComponent, RichTextEditorComponent, RichTextFormInputComponent, SEARCH_PRODUCTS, SETTLE_PAYMENT, SETTLE_REFUND, SET_ACTIVE_CHANNEL, SET_AS_LOGGED_IN, SET_AS_LOGGED_OUT, SET_CONTENT_LANGUAGE, SET_DISPLAY_UI_EXTENSION_POINTS, SET_UI_LANGUAGE_AND_LOCALE, SET_UI_LOCALE, SET_UI_THEME, SHIPPING_METHOD_FRAGMENT, STRING_CUSTOM_FIELD_FRAGMENT, SelectFormInputComponent, SelectToggleComponent, SentenceCasePipe, ServerConfigService, SettingsDataService, SharedModule, ShippingMethodDataService, SimpleDialogComponent, SingleSearchSelectionModel, SingleSearchSelectionModelFactory, SortOrder, SortPipe, StateI18nTokenPipe, StatusBadgeComponent, StockMovementType, StringToColorPipe, 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, blockQuoteRule, buildInputRules, buildKeymap, buildMenuItems, bulletListRule, canInsert, clientResolvers, codeBlockRule, configurableDefinitionToInstance, configurableOperationValueIsValid, createApollo, createResolveData, createUpdatedTranslatable, dayOfWeekIndex, defaultFormInputs, detailBreadcrumb, encodeConfigArgValue, findTranslation, flattenFacetValues, getAppConfig, getClientDefaults, getConfigArgValue, getDefaultConfigArgValue, getDefaultUiLanguage, getDefaultUiLocale, getLocales, getMarkRange, getServerLocation, headingRule, hostExternalFrame, initializeServerConfigService, insertImageItem, interpolateDescription, result as introspectionResult, isEntityCreateOrUpdateMutation, jsonValidator, linkItem, linkSelectPlugin, loadAppConfig, markActive, orderedListRule, registerCustomDetailComponent, registerCustomFieldComponent, registerDashboardWidget, registerDefaultFormInputs, registerFormInputComponent, removeReadonlyCustomFields, setDashboardWidgetLayout, stringToColor, toConfigurableOperationInput, transformRelationCustomFieldInputs, unicodePatternValidator, weekDayNames, ɵ1, ɵ10, ɵ2, ɵ3, ɵ4, ɵ5, ɵ6, ɵ7, ɵ8, ɵ9 };
|
|
15556
15717
|
//# sourceMappingURL=vendure-admin-ui-core.js.map
|