@soppiya/app-bridge 1.1.2 → 1.1.4
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/components/articles-picker/ui/ArticlesPicker.js +13 -7
- package/dist/components/blogs-picker/ui/BlogsPicker.js +13 -7
- package/dist/components/collections-pciker/ui/CollectionPicker.js +16 -10
- package/dist/components/collections-pciker/ui/CollectionPicker.stories.d.ts +1 -4
- package/dist/components/collections-pciker/ui/CollectionPicker.stories.js +1 -4
- package/dist/components/link-list-picker/ui/LinkListPicker.js +15 -9
- package/dist/components/meta-data/index.d.ts +1 -1
- package/dist/components/meta-data/ui/MetaData.d.ts +7 -5
- package/dist/components/meta-data/ui/MetaData.js +11 -16
- package/dist/components/meta-data/ui/MetaData.stories.js +15 -7
- package/dist/components/metafield-entries/api/query.d.ts +8 -0
- package/dist/components/metafield-entries/api/query.js +18 -0
- package/dist/components/metafield-entries/index.d.ts +0 -0
- package/dist/components/metafield-entries/index.js +0 -0
- package/dist/components/metafield-entries/model/useMetaobjectEntries.d.ts +25 -0
- package/dist/components/metafield-entries/model/useMetaobjectEntries.js +46 -0
- package/dist/components/metafield-entries/ui/MetaobjectEntries.d.ts +10 -0
- package/dist/components/metafield-entries/ui/MetaobjectEntries.js +108 -0
- package/dist/components/metafield-entries/ui/MetaobjectEntries.stories.d.ts +15 -0
- package/dist/components/metafield-entries/ui/MetaobjectEntries.stories.js +10 -0
- package/dist/components/pages-picker/ui/PagesPicker.js +19 -11
- package/dist/components/products-picker/ui/ProductPicker.js +16 -10
- package/dist/components/variants-picker/ui/VariantsPicker.js +13 -7
- package/dist/shared/graphql/gql.d.ts +5 -0
- package/dist/shared/graphql/gql.js +2 -1
- package/dist/shared/graphql/graphql.d.ts +29 -0
- package/dist/shared/graphql/graphql.js +299 -1
- package/dist/styles.css +12 -4
- package/package.json +1 -1
|
@@ -2996,6 +2996,304 @@ const MetafieldsDocument = {
|
|
|
2996
2996
|
}
|
|
2997
2997
|
]
|
|
2998
2998
|
};
|
|
2999
|
+
const MetaobjectEntriesDocument = {
|
|
3000
|
+
kind: "Document",
|
|
3001
|
+
definitions: [
|
|
3002
|
+
{
|
|
3003
|
+
kind: "OperationDefinition",
|
|
3004
|
+
operation: "query",
|
|
3005
|
+
name: {
|
|
3006
|
+
kind: "Name",
|
|
3007
|
+
value: "MetaobjectEntries"
|
|
3008
|
+
},
|
|
3009
|
+
variableDefinitions: [
|
|
3010
|
+
{
|
|
3011
|
+
kind: "VariableDefinition",
|
|
3012
|
+
variable: {
|
|
3013
|
+
kind: "Variable",
|
|
3014
|
+
name: {
|
|
3015
|
+
kind: "Name",
|
|
3016
|
+
value: "after"
|
|
3017
|
+
}
|
|
3018
|
+
},
|
|
3019
|
+
type: {
|
|
3020
|
+
kind: "NamedType",
|
|
3021
|
+
name: {
|
|
3022
|
+
kind: "Name",
|
|
3023
|
+
value: "ID"
|
|
3024
|
+
}
|
|
3025
|
+
}
|
|
3026
|
+
},
|
|
3027
|
+
{
|
|
3028
|
+
kind: "VariableDefinition",
|
|
3029
|
+
variable: {
|
|
3030
|
+
kind: "Variable",
|
|
3031
|
+
name: {
|
|
3032
|
+
kind: "Name",
|
|
3033
|
+
value: "before"
|
|
3034
|
+
}
|
|
3035
|
+
},
|
|
3036
|
+
type: {
|
|
3037
|
+
kind: "NamedType",
|
|
3038
|
+
name: {
|
|
3039
|
+
kind: "Name",
|
|
3040
|
+
value: "ID"
|
|
3041
|
+
}
|
|
3042
|
+
}
|
|
3043
|
+
},
|
|
3044
|
+
{
|
|
3045
|
+
kind: "VariableDefinition",
|
|
3046
|
+
variable: {
|
|
3047
|
+
kind: "Variable",
|
|
3048
|
+
name: {
|
|
3049
|
+
kind: "Name",
|
|
3050
|
+
value: "first"
|
|
3051
|
+
}
|
|
3052
|
+
},
|
|
3053
|
+
type: {
|
|
3054
|
+
kind: "NamedType",
|
|
3055
|
+
name: {
|
|
3056
|
+
kind: "Name",
|
|
3057
|
+
value: "Int"
|
|
3058
|
+
}
|
|
3059
|
+
}
|
|
3060
|
+
},
|
|
3061
|
+
{
|
|
3062
|
+
kind: "VariableDefinition",
|
|
3063
|
+
variable: {
|
|
3064
|
+
kind: "Variable",
|
|
3065
|
+
name: {
|
|
3066
|
+
kind: "Name",
|
|
3067
|
+
value: "last"
|
|
3068
|
+
}
|
|
3069
|
+
},
|
|
3070
|
+
type: {
|
|
3071
|
+
kind: "NamedType",
|
|
3072
|
+
name: {
|
|
3073
|
+
kind: "Name",
|
|
3074
|
+
value: "Int"
|
|
3075
|
+
}
|
|
3076
|
+
}
|
|
3077
|
+
},
|
|
3078
|
+
{
|
|
3079
|
+
kind: "VariableDefinition",
|
|
3080
|
+
variable: {
|
|
3081
|
+
kind: "Variable",
|
|
3082
|
+
name: {
|
|
3083
|
+
kind: "Name",
|
|
3084
|
+
value: "query"
|
|
3085
|
+
}
|
|
3086
|
+
},
|
|
3087
|
+
type: {
|
|
3088
|
+
kind: "NamedType",
|
|
3089
|
+
name: {
|
|
3090
|
+
kind: "Name",
|
|
3091
|
+
value: "String"
|
|
3092
|
+
}
|
|
3093
|
+
}
|
|
3094
|
+
},
|
|
3095
|
+
{
|
|
3096
|
+
kind: "VariableDefinition",
|
|
3097
|
+
variable: {
|
|
3098
|
+
kind: "Variable",
|
|
3099
|
+
name: {
|
|
3100
|
+
kind: "Name",
|
|
3101
|
+
value: "filterKeys"
|
|
3102
|
+
}
|
|
3103
|
+
},
|
|
3104
|
+
type: {
|
|
3105
|
+
kind: "NamedType",
|
|
3106
|
+
name: {
|
|
3107
|
+
kind: "Name",
|
|
3108
|
+
value: "MetaobjectEntryFilterKeys"
|
|
3109
|
+
}
|
|
3110
|
+
}
|
|
3111
|
+
}
|
|
3112
|
+
],
|
|
3113
|
+
selectionSet: {
|
|
3114
|
+
kind: "SelectionSet",
|
|
3115
|
+
selections: [
|
|
3116
|
+
{
|
|
3117
|
+
kind: "Field",
|
|
3118
|
+
name: {
|
|
3119
|
+
kind: "Name",
|
|
3120
|
+
value: "metaobjectEntries"
|
|
3121
|
+
},
|
|
3122
|
+
arguments: [
|
|
3123
|
+
{
|
|
3124
|
+
kind: "Argument",
|
|
3125
|
+
name: {
|
|
3126
|
+
kind: "Name",
|
|
3127
|
+
value: "after"
|
|
3128
|
+
},
|
|
3129
|
+
value: {
|
|
3130
|
+
kind: "Variable",
|
|
3131
|
+
name: {
|
|
3132
|
+
kind: "Name",
|
|
3133
|
+
value: "after"
|
|
3134
|
+
}
|
|
3135
|
+
}
|
|
3136
|
+
},
|
|
3137
|
+
{
|
|
3138
|
+
kind: "Argument",
|
|
3139
|
+
name: {
|
|
3140
|
+
kind: "Name",
|
|
3141
|
+
value: "before"
|
|
3142
|
+
},
|
|
3143
|
+
value: {
|
|
3144
|
+
kind: "Variable",
|
|
3145
|
+
name: {
|
|
3146
|
+
kind: "Name",
|
|
3147
|
+
value: "before"
|
|
3148
|
+
}
|
|
3149
|
+
}
|
|
3150
|
+
},
|
|
3151
|
+
{
|
|
3152
|
+
kind: "Argument",
|
|
3153
|
+
name: {
|
|
3154
|
+
kind: "Name",
|
|
3155
|
+
value: "first"
|
|
3156
|
+
},
|
|
3157
|
+
value: {
|
|
3158
|
+
kind: "Variable",
|
|
3159
|
+
name: {
|
|
3160
|
+
kind: "Name",
|
|
3161
|
+
value: "first"
|
|
3162
|
+
}
|
|
3163
|
+
}
|
|
3164
|
+
},
|
|
3165
|
+
{
|
|
3166
|
+
kind: "Argument",
|
|
3167
|
+
name: {
|
|
3168
|
+
kind: "Name",
|
|
3169
|
+
value: "last"
|
|
3170
|
+
},
|
|
3171
|
+
value: {
|
|
3172
|
+
kind: "Variable",
|
|
3173
|
+
name: {
|
|
3174
|
+
kind: "Name",
|
|
3175
|
+
value: "last"
|
|
3176
|
+
}
|
|
3177
|
+
}
|
|
3178
|
+
},
|
|
3179
|
+
{
|
|
3180
|
+
kind: "Argument",
|
|
3181
|
+
name: {
|
|
3182
|
+
kind: "Name",
|
|
3183
|
+
value: "query"
|
|
3184
|
+
},
|
|
3185
|
+
value: {
|
|
3186
|
+
kind: "Variable",
|
|
3187
|
+
name: {
|
|
3188
|
+
kind: "Name",
|
|
3189
|
+
value: "query"
|
|
3190
|
+
}
|
|
3191
|
+
}
|
|
3192
|
+
},
|
|
3193
|
+
{
|
|
3194
|
+
kind: "Argument",
|
|
3195
|
+
name: {
|
|
3196
|
+
kind: "Name",
|
|
3197
|
+
value: "filterKeys"
|
|
3198
|
+
},
|
|
3199
|
+
value: {
|
|
3200
|
+
kind: "Variable",
|
|
3201
|
+
name: {
|
|
3202
|
+
kind: "Name",
|
|
3203
|
+
value: "filterKeys"
|
|
3204
|
+
}
|
|
3205
|
+
}
|
|
3206
|
+
}
|
|
3207
|
+
],
|
|
3208
|
+
selectionSet: {
|
|
3209
|
+
kind: "SelectionSet",
|
|
3210
|
+
selections: [
|
|
3211
|
+
{
|
|
3212
|
+
kind: "Field",
|
|
3213
|
+
name: {
|
|
3214
|
+
kind: "Name",
|
|
3215
|
+
value: "pageInfo"
|
|
3216
|
+
},
|
|
3217
|
+
selectionSet: {
|
|
3218
|
+
kind: "SelectionSet",
|
|
3219
|
+
selections: [
|
|
3220
|
+
{
|
|
3221
|
+
kind: "Field",
|
|
3222
|
+
name: {
|
|
3223
|
+
kind: "Name",
|
|
3224
|
+
value: "endCursor"
|
|
3225
|
+
}
|
|
3226
|
+
},
|
|
3227
|
+
{
|
|
3228
|
+
kind: "Field",
|
|
3229
|
+
name: {
|
|
3230
|
+
kind: "Name",
|
|
3231
|
+
value: "hasNextPage"
|
|
3232
|
+
}
|
|
3233
|
+
},
|
|
3234
|
+
{
|
|
3235
|
+
kind: "Field",
|
|
3236
|
+
name: {
|
|
3237
|
+
kind: "Name",
|
|
3238
|
+
value: "hasPreviousPage"
|
|
3239
|
+
}
|
|
3240
|
+
},
|
|
3241
|
+
{
|
|
3242
|
+
kind: "Field",
|
|
3243
|
+
name: {
|
|
3244
|
+
kind: "Name",
|
|
3245
|
+
value: "startCursor"
|
|
3246
|
+
}
|
|
3247
|
+
}
|
|
3248
|
+
]
|
|
3249
|
+
}
|
|
3250
|
+
},
|
|
3251
|
+
{
|
|
3252
|
+
kind: "Field",
|
|
3253
|
+
name: {
|
|
3254
|
+
kind: "Name",
|
|
3255
|
+
value: "edges"
|
|
3256
|
+
},
|
|
3257
|
+
selectionSet: {
|
|
3258
|
+
kind: "SelectionSet",
|
|
3259
|
+
selections: [
|
|
3260
|
+
{
|
|
3261
|
+
kind: "Field",
|
|
3262
|
+
name: {
|
|
3263
|
+
kind: "Name",
|
|
3264
|
+
value: "node"
|
|
3265
|
+
},
|
|
3266
|
+
selectionSet: {
|
|
3267
|
+
kind: "SelectionSet",
|
|
3268
|
+
selections: [
|
|
3269
|
+
{
|
|
3270
|
+
kind: "Field",
|
|
3271
|
+
name: {
|
|
3272
|
+
kind: "Name",
|
|
3273
|
+
value: "_id"
|
|
3274
|
+
}
|
|
3275
|
+
},
|
|
3276
|
+
{
|
|
3277
|
+
kind: "Field",
|
|
3278
|
+
name: {
|
|
3279
|
+
kind: "Name",
|
|
3280
|
+
value: "title"
|
|
3281
|
+
}
|
|
3282
|
+
}
|
|
3283
|
+
]
|
|
3284
|
+
}
|
|
3285
|
+
}
|
|
3286
|
+
]
|
|
3287
|
+
}
|
|
3288
|
+
}
|
|
3289
|
+
]
|
|
3290
|
+
}
|
|
3291
|
+
}
|
|
3292
|
+
]
|
|
3293
|
+
}
|
|
3294
|
+
}
|
|
3295
|
+
]
|
|
3296
|
+
};
|
|
2999
3297
|
const PagesDocument = {
|
|
3000
3298
|
kind: "Document",
|
|
3001
3299
|
definitions: [
|
|
@@ -4008,4 +4306,4 @@ const VariantsDocument = {
|
|
|
4008
4306
|
}
|
|
4009
4307
|
]
|
|
4010
4308
|
};
|
|
4011
|
-
export { graphql_AccountEmailIntent as AccountEmailIntent, graphql_AccountEmailUpdateActionIntent as AccountEmailUpdateActionIntent, AddMediasDocument, graphql_graphql_AppSortKeys as AppSortKeys, graphql_ArticleCommentPermission as ArticleCommentPermission, graphql_ArticleSortKeys as ArticleSortKeys, graphql_ArticleStatus as ArticleStatus, ArticlesDocument, graphql_BlogSortKeys as BlogSortKeys, BlogsDocument, graphql_CartDiscountScope as CartDiscountScope, graphql_CartDiscountSource as CartDiscountSource, graphql_CartDiscountStatus as CartDiscountStatus, graphql_CartDiscountType as CartDiscountType, graphql_CartLineItemSource as CartLineItemSource, graphql_CartSortkeys as CartSortkeys, graphql_CartStatus as CartStatus, graphql_CheckoutAutoFulfillment as CheckoutAutoFulfillment, graphql_CheckoutContactMethod as CheckoutContactMethod, graphql_CheckoutExcludeRequiredOptional as CheckoutExcludeRequiredOptional, graphql_CheckoutNameRequirement as CheckoutNameRequirement, graphql_CollectionProductSortkey as CollectionProductSortkey, graphql_CollectionSortKey as CollectionSortKey, CollectionsDocument, graphql_CustomerAddressSortkeys as CustomerAddressSortkeys, graphql_CustomerSegmentCombine as CustomerSegmentCombine, graphql_CustomerSegmentConditionField as CustomerSegmentConditionField, graphql_CustomerSegmentConditionOperator as CustomerSegmentConditionOperator, graphql_CustomerSegmentSortkeys as CustomerSegmentSortkeys, graphql_CustomerSortkeys as CustomerSortkeys, graphql_DefaultThemeTemplateType as DefaultThemeTemplateType, DeleteMediasDocument, graphql_DeliveryProfileSortKeys as DeliveryProfileSortKeys, graphql_DeliveryZoneRateConditionType as DeliveryZoneRateConditionType, graphql_DeliveryZoneSortKeys as DeliveryZoneSortKeys, graphql_DiscountAooMinimumPurchaseType as DiscountAooMinimumPurchaseType, graphql_DiscountAooType as DiscountAooType, graphql_DiscountAopApplication as DiscountAopApplication, graphql_DiscountAopMinimunPurchaseType as DiscountAopMinimunPurchaseType, graphql_DiscountAopType as DiscountAopType, graphql_DiscountApplication as DiscountApplication, graphql_DiscountBxgyApplication as DiscountBxgyApplication, graphql_DiscountBxgyMinimunPurchaseType as DiscountBxgyMinimunPurchaseType, graphql_DiscountBxgyOfferApplication as DiscountBxgyOfferApplication, graphql_DiscountBxgyType as DiscountBxgyType, graphql_DiscountFsMinimunPurchaseType as DiscountFsMinimunPurchaseType, graphql_DiscountFsType as DiscountFsType, graphql_DiscountSortKeys as DiscountSortKeys, graphql_DiscountType as DiscountType, graphql_DomainRecordType as DomainRecordType, graphql_DomainSortkeys as DomainSortkeys, graphql_EditThemeTemplateType as EditThemeTemplateType, graphql_InventorySortKeys as InventorySortKeys, graphql_LinklistSortKeys as LinklistSortKeys, graphql_LinklistType as LinklistType, LinklistsDocument, graphql_LocationSortKeys as LocationSortKeys, graphql_LogActions as LogActions, graphql_LogResources as LogResources, graphql_LogSortKeys as LogSortKeys, graphql_LoginMethod as LoginMethod, graphql_MarketSortKeys as MarketSortKeys, graphql_MarketVariantSortKeys as MarketVariantSortKeys, graphql_MediaSortKeys as MediaSortKeys, graphql_MediaType as MediaType, MediaUsageDocument, MediasDocument, graphql_MetafieldEntryType as MetafieldEntryType, graphql_MetafieldScope as MetafieldScope, graphql_MetafieldSortKeys as MetafieldSortKeys, graphql_MetafieldType as MetafieldType, MetafieldsDocument, graphql_MetaobjectEntrySortKeys as MetaobjectEntrySortKeys, graphql_MetaobjectFieldType as MetaobjectFieldType, graphql_MetaobjectSortKeys as MetaobjectSortKeys, graphql_PageSortKeys as PageSortKeys, graphql_PageStatus as PageStatus, PagesDocument, graphql_PayStoreInvoiceStatus as PayStoreInvoiceStatus, graphql_PaymentChargeType as PaymentChargeType, graphql_PaymentSortKeys as PaymentSortKeys, graphql_PaymentType as PaymentType, graphql_PickupProfileReadyIn as PickupProfileReadyIn, graphql_PickupProfileSortKeys as PickupProfileSortKeys, graphql_PresetSortKeys as PresetSortKeys, graphql_PresetType as PresetType, graphql_ProductSortKeys as ProductSortKeys, graphql_ProductStatus as ProductStatus, ProductsDocument, graphql_PurchaseSortKeys as PurchaseSortKeys, graphql_PurchaseStatus as PurchaseStatus, graphql_RedirectSortKeys as RedirectSortKeys, graphql_ShippingProfileSortKeys as ShippingProfileSortKeys, graphql_ShippingZoneRateConditionType as ShippingZoneRateConditionType, graphql_ShippingZoneSortKeys as ShippingZoneSortKeys, graphql_StaffAppPermission as StaffAppPermission, graphql_StaffSortKeys as StaffSortKeys, StoragePlanDocument, graphql_StoreInvoiceBeneficiary as StoreInvoiceBeneficiary, graphql_StoreInvoicePaymentStatus as StoreInvoicePaymentStatus, graphql_StoreInvoiceRefundStatus as StoreInvoiceRefundStatus, graphql_StoreInvoiceSortKeys as StoreInvoiceSortKeys, graphql_StoreLengthUnit as StoreLengthUnit, graphql_StoreSortkeys as StoreSortkeys, graphql_StoreWeightUnit as StoreWeightUnit, graphql_SupplierSortKeys as SupplierSortKeys, graphql_TaxOverrideLevel as TaxOverrideLevel, graphql_TaxOverrideType as TaxOverrideType, graphql_TaxSortKeys as TaxSortKeys, graphql_graphql_ThemeSortKeys as ThemeSortKeys, graphql_TransferSortKeys as TransferSortKeys, graphql_TransferStatus as TransferStatus, graphql_UserDeviceSortKeys as UserDeviceSortKeys, graphql_UserPasskeySortKeys as UserPasskeySortKeys, graphql_UserSessionSortKeys as UserSessionSortKeys, graphql_VariantSortKeys as VariantSortKeys, graphql_VariantStatus as VariantStatus, VariantsDocument, graphql_WhoamiType as WhoamiType, graphql_AppSortKeys as _AppSortKeys, graphql_CategorySortKeys as _CategorySortKeys, graphql_ContinentSortKeys as _ContinentSortKeys, graphql_CountrySortKeys as _CountrySortKeys, graphql_CurrencySortKeys as _CurrencySortKeys, graphql_HscodeSortKeys as _HscodeSortKeys, graphql_LanguageSortKeys as _LanguageSortKeys, graphql_PackageSortKeys as _PackageSortKeys, graphql_PaymentGatewaySortKeys as _PaymentGatewaySortKeys, graphql_PaymentProviderSortKeys as _PaymentProviderSortKeys, graphql_PhoneSortKeys as _PhoneSortKeys, graphql_RegionSortKeys as _RegionSortKeys, graphql_SoppiyaPaymentSortKeys as _SoppiyaPaymentSortKeys, graphql_ThemeSortKeys as _ThemeSortKeys, graphql_ThemeVersionSortKeys as _ThemeVersionSortKeys, graphql_TimezoneSortKeys as _TimezoneSortKeys };
|
|
4309
|
+
export { graphql_AccountEmailIntent as AccountEmailIntent, graphql_AccountEmailUpdateActionIntent as AccountEmailUpdateActionIntent, AddMediasDocument, graphql_graphql_AppSortKeys as AppSortKeys, graphql_ArticleCommentPermission as ArticleCommentPermission, graphql_ArticleSortKeys as ArticleSortKeys, graphql_ArticleStatus as ArticleStatus, ArticlesDocument, graphql_BlogSortKeys as BlogSortKeys, BlogsDocument, graphql_CartDiscountScope as CartDiscountScope, graphql_CartDiscountSource as CartDiscountSource, graphql_CartDiscountStatus as CartDiscountStatus, graphql_CartDiscountType as CartDiscountType, graphql_CartLineItemSource as CartLineItemSource, graphql_CartSortkeys as CartSortkeys, graphql_CartStatus as CartStatus, graphql_CheckoutAutoFulfillment as CheckoutAutoFulfillment, graphql_CheckoutContactMethod as CheckoutContactMethod, graphql_CheckoutExcludeRequiredOptional as CheckoutExcludeRequiredOptional, graphql_CheckoutNameRequirement as CheckoutNameRequirement, graphql_CollectionProductSortkey as CollectionProductSortkey, graphql_CollectionSortKey as CollectionSortKey, CollectionsDocument, graphql_CustomerAddressSortkeys as CustomerAddressSortkeys, graphql_CustomerSegmentCombine as CustomerSegmentCombine, graphql_CustomerSegmentConditionField as CustomerSegmentConditionField, graphql_CustomerSegmentConditionOperator as CustomerSegmentConditionOperator, graphql_CustomerSegmentSortkeys as CustomerSegmentSortkeys, graphql_CustomerSortkeys as CustomerSortkeys, graphql_DefaultThemeTemplateType as DefaultThemeTemplateType, DeleteMediasDocument, graphql_DeliveryProfileSortKeys as DeliveryProfileSortKeys, graphql_DeliveryZoneRateConditionType as DeliveryZoneRateConditionType, graphql_DeliveryZoneSortKeys as DeliveryZoneSortKeys, graphql_DiscountAooMinimumPurchaseType as DiscountAooMinimumPurchaseType, graphql_DiscountAooType as DiscountAooType, graphql_DiscountAopApplication as DiscountAopApplication, graphql_DiscountAopMinimunPurchaseType as DiscountAopMinimunPurchaseType, graphql_DiscountAopType as DiscountAopType, graphql_DiscountApplication as DiscountApplication, graphql_DiscountBxgyApplication as DiscountBxgyApplication, graphql_DiscountBxgyMinimunPurchaseType as DiscountBxgyMinimunPurchaseType, graphql_DiscountBxgyOfferApplication as DiscountBxgyOfferApplication, graphql_DiscountBxgyType as DiscountBxgyType, graphql_DiscountFsMinimunPurchaseType as DiscountFsMinimunPurchaseType, graphql_DiscountFsType as DiscountFsType, graphql_DiscountSortKeys as DiscountSortKeys, graphql_DiscountType as DiscountType, graphql_DomainRecordType as DomainRecordType, graphql_DomainSortkeys as DomainSortkeys, graphql_EditThemeTemplateType as EditThemeTemplateType, graphql_InventorySortKeys as InventorySortKeys, graphql_LinklistSortKeys as LinklistSortKeys, graphql_LinklistType as LinklistType, LinklistsDocument, graphql_LocationSortKeys as LocationSortKeys, graphql_LogActions as LogActions, graphql_LogResources as LogResources, graphql_LogSortKeys as LogSortKeys, graphql_LoginMethod as LoginMethod, graphql_MarketSortKeys as MarketSortKeys, graphql_MarketVariantSortKeys as MarketVariantSortKeys, graphql_MediaSortKeys as MediaSortKeys, graphql_MediaType as MediaType, MediaUsageDocument, MediasDocument, graphql_MetafieldEntryType as MetafieldEntryType, graphql_MetafieldScope as MetafieldScope, graphql_MetafieldSortKeys as MetafieldSortKeys, graphql_MetafieldType as MetafieldType, MetafieldsDocument, MetaobjectEntriesDocument, graphql_MetaobjectEntrySortKeys as MetaobjectEntrySortKeys, graphql_MetaobjectFieldType as MetaobjectFieldType, graphql_MetaobjectSortKeys as MetaobjectSortKeys, graphql_PageSortKeys as PageSortKeys, graphql_PageStatus as PageStatus, PagesDocument, graphql_PayStoreInvoiceStatus as PayStoreInvoiceStatus, graphql_PaymentChargeType as PaymentChargeType, graphql_PaymentSortKeys as PaymentSortKeys, graphql_PaymentType as PaymentType, graphql_PickupProfileReadyIn as PickupProfileReadyIn, graphql_PickupProfileSortKeys as PickupProfileSortKeys, graphql_PresetSortKeys as PresetSortKeys, graphql_PresetType as PresetType, graphql_ProductSortKeys as ProductSortKeys, graphql_ProductStatus as ProductStatus, ProductsDocument, graphql_PurchaseSortKeys as PurchaseSortKeys, graphql_PurchaseStatus as PurchaseStatus, graphql_RedirectSortKeys as RedirectSortKeys, graphql_ShippingProfileSortKeys as ShippingProfileSortKeys, graphql_ShippingZoneRateConditionType as ShippingZoneRateConditionType, graphql_ShippingZoneSortKeys as ShippingZoneSortKeys, graphql_StaffAppPermission as StaffAppPermission, graphql_StaffSortKeys as StaffSortKeys, StoragePlanDocument, graphql_StoreInvoiceBeneficiary as StoreInvoiceBeneficiary, graphql_StoreInvoicePaymentStatus as StoreInvoicePaymentStatus, graphql_StoreInvoiceRefundStatus as StoreInvoiceRefundStatus, graphql_StoreInvoiceSortKeys as StoreInvoiceSortKeys, graphql_StoreLengthUnit as StoreLengthUnit, graphql_StoreSortkeys as StoreSortkeys, graphql_StoreWeightUnit as StoreWeightUnit, graphql_SupplierSortKeys as SupplierSortKeys, graphql_TaxOverrideLevel as TaxOverrideLevel, graphql_TaxOverrideType as TaxOverrideType, graphql_TaxSortKeys as TaxSortKeys, graphql_graphql_ThemeSortKeys as ThemeSortKeys, graphql_TransferSortKeys as TransferSortKeys, graphql_TransferStatus as TransferStatus, graphql_UserDeviceSortKeys as UserDeviceSortKeys, graphql_UserPasskeySortKeys as UserPasskeySortKeys, graphql_UserSessionSortKeys as UserSessionSortKeys, graphql_VariantSortKeys as VariantSortKeys, graphql_VariantStatus as VariantStatus, VariantsDocument, graphql_WhoamiType as WhoamiType, graphql_AppSortKeys as _AppSortKeys, graphql_CategorySortKeys as _CategorySortKeys, graphql_ContinentSortKeys as _ContinentSortKeys, graphql_CountrySortKeys as _CountrySortKeys, graphql_CurrencySortKeys as _CurrencySortKeys, graphql_HscodeSortKeys as _HscodeSortKeys, graphql_LanguageSortKeys as _LanguageSortKeys, graphql_PackageSortKeys as _PackageSortKeys, graphql_PaymentGatewaySortKeys as _PaymentGatewaySortKeys, graphql_PaymentProviderSortKeys as _PaymentProviderSortKeys, graphql_PhoneSortKeys as _PhoneSortKeys, graphql_RegionSortKeys as _RegionSortKeys, graphql_SoppiyaPaymentSortKeys as _SoppiyaPaymentSortKeys, graphql_ThemeSortKeys as _ThemeSortKeys, graphql_ThemeVersionSortKeys as _ThemeVersionSortKeys, graphql_TimezoneSortKeys as _TimezoneSortKeys };
|
package/dist/styles.css
CHANGED
|
@@ -497,6 +497,10 @@
|
|
|
497
497
|
translate: var(--tw-translate-x) var(--tw-translate-y);
|
|
498
498
|
}
|
|
499
499
|
|
|
500
|
+
.cursor-default\! {
|
|
501
|
+
cursor: default !important;
|
|
502
|
+
}
|
|
503
|
+
|
|
500
504
|
.grid-cols-\[repeat\(1\,1fr\)\] {
|
|
501
505
|
grid-template-columns: repeat(1, 1fr);
|
|
502
506
|
}
|
|
@@ -575,12 +579,12 @@
|
|
|
575
579
|
border-top-color: #ebebeb;
|
|
576
580
|
}
|
|
577
581
|
|
|
578
|
-
.border-
|
|
579
|
-
border-
|
|
582
|
+
.border-t-\[\#ebebeb\]\! {
|
|
583
|
+
border-top-color: #ebebeb !important;
|
|
580
584
|
}
|
|
581
585
|
|
|
582
|
-
.border-b-\[\#ebebeb\]
|
|
583
|
-
border-bottom-color: #ebebeb
|
|
586
|
+
.border-b-\[\#ebebeb\] {
|
|
587
|
+
border-bottom-color: #ebebeb;
|
|
584
588
|
}
|
|
585
589
|
|
|
586
590
|
.\!bg-\[\#f7f7f7\] {
|
|
@@ -595,6 +599,10 @@
|
|
|
595
599
|
background-color: #f1f1f1;
|
|
596
600
|
}
|
|
597
601
|
|
|
602
|
+
.bg-\[\#f1f1f1ab\] {
|
|
603
|
+
background-color: #f1f1f1ab;
|
|
604
|
+
}
|
|
605
|
+
|
|
598
606
|
.bg-gray-400 {
|
|
599
607
|
background-color: var(--color-gray-400);
|
|
600
608
|
}
|