@crystaldesign/diva-navigator 26.3.0-rc.1 → 26.3.0-rc.3

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.
@@ -2158,10 +2158,11 @@ function matchProduct(_x, _x2, _x3) {
2158
2158
  }
2159
2159
 
2160
2160
  /**
2161
- * Gets the product by the given divaNr.
2161
+ * Checks if the given divaNr is a valid product.
2162
2162
  *
2163
2163
  * @param divaNr The divaNr to get the product for
2164
- * @param apiGetProductByFilter The function to get the product by filter
2164
+ * @param jwt The jwt to use for the request
2165
+ * @param catalogService The catalog service to use for the request
2165
2166
  */
2166
2167
  function _matchProduct() {
2167
2168
  _matchProduct = _asyncToGenerator(/*#__PURE__*/_regeneratorRuntime.mark(function _callee(url, shopBaseUrl, apiGetProductByFilter) {
@@ -2272,49 +2273,58 @@ function _matchProduct() {
2272
2273
  }));
2273
2274
  return _matchProduct.apply(this, arguments);
2274
2275
  }
2275
- function getProductByDivaNr(_x4, _x5) {
2276
- return _getProductByDivaNr.apply(this, arguments);
2276
+ function checkProductByDivaNr(_x4, _x5, _x6) {
2277
+ return _checkProductByDivaNr.apply(this, arguments);
2277
2278
  }
2278
- function _getProductByDivaNr() {
2279
- _getProductByDivaNr = _asyncToGenerator(/*#__PURE__*/_regeneratorRuntime.mark(function _callee2(divaNr, apiGetProductByFilter) {
2280
- var filter, product, item;
2279
+ function _checkProductByDivaNr() {
2280
+ _checkProductByDivaNr = _asyncToGenerator(/*#__PURE__*/_regeneratorRuntime.mark(function _callee2(divaNr, jwt, catalogService) {
2281
+ var response, data, item;
2281
2282
  return _regeneratorRuntime.wrap(function _callee2$(_context2) {
2282
2283
  while (1) switch (_context2.prev = _context2.next) {
2283
2284
  case 0:
2284
- filter = [{
2285
- id: 'divaNr',
2286
- op: 'eq',
2287
- value: divaNr
2288
- }, {
2289
- id: 'baseProduct',
2290
- op: 'eq',
2291
- value: false
2292
- }];
2285
+ _context2.prev = 0;
2293
2286
  _context2.next = 3;
2294
- return apiGetProductByFilter(filter, 1, true, true);
2287
+ return fetch("".concat(catalogService, "/v1/products/").concat(divaNr, "/list"), {
2288
+ headers: {
2289
+ Authorization: "Bearer ".concat(jwt)
2290
+ }
2291
+ });
2295
2292
  case 3:
2296
- product = _context2.sent;
2297
- item = product.data[0];
2298
- if (item !== null && item !== void 0 && item._id) {
2299
- _context2.next = 7;
2293
+ response = _context2.sent;
2294
+ if (!response.ok) {
2295
+ _context2.next = 11;
2300
2296
  break;
2301
2297
  }
2302
- return _context2.abrupt("return", undefined);
2298
+ _context2.next = 7;
2299
+ return response.json();
2303
2300
  case 7:
2301
+ data = _context2.sent;
2302
+ item = data === null || data === void 0 ? void 0 : data[0];
2303
+ if (!item) {
2304
+ _context2.next = 11;
2305
+ break;
2306
+ }
2304
2307
  return _context2.abrupt("return", {
2305
2308
  id: item._id,
2306
2309
  organizationId: item.organizationId,
2307
2310
  organizationIdDisplayText: item.organizationId_displayText
2308
2311
  });
2309
- case 8:
2312
+ case 11:
2313
+ return _context2.abrupt("return", undefined);
2314
+ case 14:
2315
+ _context2.prev = 14;
2316
+ _context2.t0 = _context2["catch"](0);
2317
+ LOG$1.warn('Error getting product by divaNr or id', _context2.t0);
2318
+ return _context2.abrupt("return", undefined);
2319
+ case 18:
2310
2320
  case "end":
2311
2321
  return _context2.stop();
2312
2322
  }
2313
- }, _callee2);
2323
+ }, _callee2, null, [[0, 14]]);
2314
2324
  }));
2315
- return _getProductByDivaNr.apply(this, arguments);
2325
+ return _checkProductByDivaNr.apply(this, arguments);
2316
2326
  }
2317
- function checkConfigurationByDivaNr(_x6, _x7, _x8) {
2327
+ function checkConfigurationByDivaNr(_x7, _x8, _x9) {
2318
2328
  return _checkConfigurationByDivaNr.apply(this, arguments);
2319
2329
  }
2320
2330
  function _checkConfigurationByDivaNr() {
@@ -2342,28 +2352,17 @@ function _checkConfigurationByDivaNr() {
2342
2352
  case 8:
2343
2353
  data = _context3.sent;
2344
2354
  return _context3.abrupt("return", {
2345
- isValid: true,
2346
2355
  organizationId: data.basket.OrganizationId,
2347
2356
  organizationIdDisplayText: data.basket.OrganizationId_displayText,
2348
2357
  orderStatus: data.basket.OrderStatus
2349
2358
  });
2350
2359
  case 10:
2351
- return _context3.abrupt("return", {
2352
- isValid: false,
2353
- organizationId: undefined,
2354
- organizationIdDisplayText: undefined,
2355
- orderStatus: undefined
2356
- });
2360
+ return _context3.abrupt("return", undefined);
2357
2361
  case 13:
2358
2362
  _context3.prev = 13;
2359
2363
  _context3.t0 = _context3["catch"](1);
2360
2364
  LOG$1.warn('Error checking configuration by divaNr', _context3.t0);
2361
- return _context3.abrupt("return", {
2362
- isValid: false,
2363
- organizationId: undefined,
2364
- organizationIdDisplayText: undefined,
2365
- orderStatus: undefined
2366
- });
2365
+ return _context3.abrupt("return", undefined);
2367
2366
  case 17:
2368
2367
  case "end":
2369
2368
  return _context3.stop();
@@ -2376,7 +2375,7 @@ function _checkConfigurationByDivaNr() {
2376
2375
  * Resolves a divaNr to a FetchedResult by trying basket first, then product.
2377
2376
  * Returns null if neither is found or enabled.
2378
2377
  */
2379
- function resolveDivaNr(_x9, _x10, _x11) {
2378
+ function resolveDivaNr(_x10, _x11) {
2380
2379
  return _resolveDivaNr.apply(this, arguments);
2381
2380
  }
2382
2381
 
@@ -2384,9 +2383,9 @@ function resolveDivaNr(_x9, _x10, _x11) {
2384
2383
  * Opens the given result in the current organization.
2385
2384
  */
2386
2385
  function _resolveDivaNr() {
2387
- _resolveDivaNr = _asyncToGenerator(/*#__PURE__*/_regeneratorRuntime.mark(function _callee4(divaNr, options, apiGetProductByFilter) {
2386
+ _resolveDivaNr = _asyncToGenerator(/*#__PURE__*/_regeneratorRuntime.mark(function _callee4(divaNr, options) {
2388
2387
  var _options$qrCodeScanne, _options$qrCodeScanne2;
2389
- var basketEnabled, result, productEnabled, product;
2388
+ var basketEnabled, basket, productEnabled, product;
2390
2389
  return _regeneratorRuntime.wrap(function _callee4$(_context4) {
2391
2390
  while (1) switch (_context4.prev = _context4.next) {
2392
2391
  case 0:
@@ -2398,16 +2397,16 @@ function _resolveDivaNr() {
2398
2397
  _context4.next = 4;
2399
2398
  return checkConfigurationByDivaNr(divaNr, options.jwt, options.basketService);
2400
2399
  case 4:
2401
- result = _context4.sent;
2402
- if (!result.isValid) {
2400
+ basket = _context4.sent;
2401
+ if (!basket) {
2403
2402
  _context4.next = 7;
2404
2403
  break;
2405
2404
  }
2406
2405
  return _context4.abrupt("return", {
2407
2406
  type: 'basket',
2408
- organizationId: result.organizationId,
2409
- organizationIdDisplayText: result.organizationIdDisplayText,
2410
- orderStatus: result.orderStatus,
2407
+ organizationId: basket.organizationId,
2408
+ organizationIdDisplayText: basket.organizationIdDisplayText,
2409
+ orderStatus: basket.orderStatus,
2411
2410
  divaNr: divaNr
2412
2411
  });
2413
2412
  case 7:
@@ -2417,7 +2416,7 @@ function _resolveDivaNr() {
2417
2416
  break;
2418
2417
  }
2419
2418
  _context4.next = 11;
2420
- return getProductByDivaNr(divaNr, apiGetProductByFilter);
2419
+ return checkProductByDivaNr(divaNr, options.jwt, options.catalogService);
2421
2420
  case 11:
2422
2421
  product = _context4.sent;
2423
2422
  if (!product) {
@@ -2528,7 +2527,8 @@ function Scanner(_ref) {
2528
2527
  options = {
2529
2528
  qrCodeScanner: qrCodeScanner,
2530
2529
  jwt: jwt,
2531
- basketService: apiConfig.basketService
2530
+ basketService: apiConfig.basketService,
2531
+ catalogService: apiConfig.catalogService
2532
2532
  };
2533
2533
  divaNr = matchDivaNr(text);
2534
2534
  if (!divaNr) {
@@ -2537,7 +2537,7 @@ function Scanner(_ref) {
2537
2537
  }
2538
2538
  LOG.debug('Found DivaNr in QR Code: ' + divaNr);
2539
2539
  _context.next = 6;
2540
- return resolveDivaNr(divaNr, options, productHandler.apiGetProductByFilter.bind(productHandler));
2540
+ return resolveDivaNr(divaNr, options);
2541
2541
  case 6:
2542
2542
  result = _context.sent;
2543
2543
  if (!result) {
@@ -2679,7 +2679,8 @@ function OrgActionButtons(_ref) {
2679
2679
  var _useTranslation = useTranslation(),
2680
2680
  t = _useTranslation.t;
2681
2681
  var isSameOrg = !result.organizationId || result.organizationId === organizationId;
2682
- if (isSameOrg) {
2682
+ var isProduct = result.type === 'product';
2683
+ if (isSameOrg || isProduct && !isWrapperOrg) {
2683
2684
  return /*#__PURE__*/jsx(Button$1, {
2684
2685
  variant: "contained",
2685
2686
  onClick: onOpenCurrent,
@@ -2722,8 +2723,8 @@ function ScannerModalContent() {
2722
2723
  qrCodeScanner = _useDivaCore$state.navigationConfiguration.qrCodeScanner,
2723
2724
  jwt = _useDivaCore$state.jwt,
2724
2725
  apiConfig = _useDivaCore$state.apiConfig,
2725
- organization = _useDivaCore$state.organization,
2726
- productHandler = _useDivaCore.handler.productHandler;
2726
+ organization = _useDivaCore$state.organization;
2727
+ _useDivaCore.handler.productHandler;
2727
2728
  var _React$useState = React.useState(false),
2728
2729
  _React$useState2 = _slicedToArray(_React$useState, 2),
2729
2730
  showScanner = _React$useState2[0],
@@ -2771,8 +2772,9 @@ function ScannerModalContent() {
2771
2772
  return resolveDivaNr(normalized, {
2772
2773
  qrCodeScanner: qrCodeScanner,
2773
2774
  jwt: jwt,
2774
- basketService: apiConfig.basketService
2775
- }, productHandler.apiGetProductByFilter.bind(productHandler));
2775
+ basketService: apiConfig.basketService,
2776
+ catalogService: apiConfig.catalogService
2777
+ });
2776
2778
  case 5:
2777
2779
  result = _context.sent;
2778
2780
  if (!cancelled) {
@@ -1 +1 @@
1
- {"version":3,"file":"Scanner.d.ts","sourceRoot":"","sources":["../../../../../../src/Header/QrCodeScanner/Scanner.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAwC,MAAM,OAAO,CAAC;AAM7D,OAAO,EAAE,aAAa,EAAiH,MAAM,SAAS,CAAC;AAIvJ,UAAU,YAAY;IACpB,QAAQ,EAAE,CAAC,MAAM,EAAE,aAAa,KAAK,IAAI,CAAC;CAC3C;AAED,wBAAgB,OAAO,CAAC,EAAE,QAAQ,EAAE,EAAE,YAAY,qBAqGjD"}
1
+ {"version":3,"file":"Scanner.d.ts","sourceRoot":"","sources":["../../../../../../src/Header/QrCodeScanner/Scanner.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAwC,MAAM,OAAO,CAAC;AAM7D,OAAO,EACL,aAAa,EAOd,MAAM,SAAS,CAAC;AAIjB,UAAU,YAAY;IACpB,QAAQ,EAAE,CAAC,MAAM,EAAE,aAAa,KAAK,IAAI,CAAC;CAC3C;AAED,wBAAgB,OAAO,CAAC,EAAE,QAAQ,EAAE,EAAE,YAAY,qBA+GjD"}
@@ -1 +1 @@
1
- {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../../../src/Header/QrCodeScanner/index.tsx"],"names":[],"mappings":"AACA,OAAO,KAAK,MAAM,OAAO,CAAC;AAyK1B,MAAM,CAAC,OAAO,gCAyBb"}
1
+ {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../../../src/Header/QrCodeScanner/index.tsx"],"names":[],"mappings":"AACA,OAAO,KAAK,MAAM,OAAO,CAAC;AA2K1B,MAAM,CAAC,OAAO,gCAyBb"}
@@ -49,35 +49,22 @@ export declare function matchProduct(url: string, shopBaseUrl: string, apiGetPro
49
49
  organizationIdDisplayText?: string;
50
50
  } | undefined>;
51
51
  /**
52
- * Gets the product by the given divaNr.
52
+ * Checks if the given divaNr is a valid product.
53
53
  *
54
54
  * @param divaNr The divaNr to get the product for
55
- * @param apiGetProductByFilter The function to get the product by filter
55
+ * @param jwt The jwt to use for the request
56
+ * @param catalogService The catalog service to use for the request
56
57
  */
57
- export declare function getProductByDivaNr(divaNr: string, apiGetProductByFilter: (filter: {
58
- id: string;
59
- op: string;
60
- value: string | number | boolean;
61
- }[], limit: number, useFilter?: boolean, hierarchy?: boolean) => Promise<{
62
- data: any[];
63
- }>): Promise<{
58
+ export declare function checkProductByDivaNr(divaNr: string, jwt: string, catalogService: string): Promise<{
64
59
  id: string;
65
60
  organizationId?: string;
66
61
  organizationIdDisplayText?: string;
67
62
  } | undefined>;
68
63
  export declare function checkConfigurationByDivaNr(divaNr: string, jwt: string, basketService: string): Promise<{
69
- isValid: boolean;
70
64
  organizationId: any;
71
65
  organizationIdDisplayText: any;
72
66
  orderStatus: any;
73
- }>;
74
- type ApiGetProductByFilter = (filter: {
75
- id: string;
76
- op: string;
77
- value: string | number | boolean;
78
- }[], limit: number, useFilter?: boolean, hierarchy?: boolean) => Promise<{
79
- data: any[];
80
- }>;
67
+ } | undefined>;
81
68
  export interface ResolveDivaNrOptions {
82
69
  qrCodeScanner?: boolean | {
83
70
  basket?: boolean;
@@ -85,12 +72,13 @@ export interface ResolveDivaNrOptions {
85
72
  };
86
73
  jwt: string;
87
74
  basketService: string;
75
+ catalogService: string;
88
76
  }
89
77
  /**
90
78
  * Resolves a divaNr to a FetchedResult by trying basket first, then product.
91
79
  * Returns null if neither is found or enabled.
92
80
  */
93
- export declare function resolveDivaNr(divaNr: string, options: ResolveDivaNrOptions, apiGetProductByFilter: ApiGetProductByFilter): Promise<FetchedResult | null>;
81
+ export declare function resolveDivaNr(divaNr: string, options: ResolveDivaNrOptions): Promise<FetchedResult | null>;
94
82
  /**
95
83
  * Opens the given result in the current organization.
96
84
  */
@@ -99,5 +87,4 @@ export declare function openResultInCurrentOrg(result: FetchedResult, openCompon
99
87
  * Opens the given result in the target organization (new tab).
100
88
  */
101
89
  export declare function openResultInTargetOrg(result: FetchedResult, openComponent: (data: Action) => void, closeModal: () => void): void;
102
- export {};
103
90
  //# sourceMappingURL=utils.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"utils.d.ts","sourceRoot":"","sources":["../../../../../../src/Header/QrCodeScanner/utils.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,MAAM,EAAa,MAAM,0BAA0B,CAAC;AAI7D,MAAM,MAAM,aAAa,GACrB;IAAE,IAAI,EAAE,QAAQ,CAAC;IAAC,cAAc,CAAC,EAAE,MAAM,CAAC;IAAC,yBAAyB,CAAC,EAAE,MAAM,CAAC;IAAC,WAAW,CAAC,EAAE,MAAM,CAAC;IAAC,MAAM,EAAE,MAAM,CAAA;CAAE,GACrH;IAAE,IAAI,EAAE,SAAS,CAAC;IAAC,SAAS,EAAE,MAAM,CAAC;IAAC,cAAc,CAAC,EAAE,MAAM,CAAC;IAAC,yBAAyB,CAAC,EAAE,MAAM,CAAA;CAAE,CAAC;AAExG;;;;;;;;;;;;GAYG;AACH,wBAAgB,WAAW,CAAC,GAAG,EAAE,MAAM,sBA0BtC;AAED;;;;;;;;;;;GAWG;AACH,wBAAsB,YAAY,CAChC,GAAG,EAAE,MAAM,EACX,WAAW,EAAE,MAAM,EACnB,qBAAqB,EAAE,CACrB,MAAM,EAAE;IAAE,EAAE,EAAE,MAAM,CAAC;IAAC,EAAE,EAAE,MAAM,CAAC;IAAC,KAAK,EAAE,MAAM,GAAG,MAAM,GAAG,OAAO,CAAA;CAAE,EAAE,EACtE,KAAK,EAAE,MAAM,EACb,SAAS,CAAC,EAAE,OAAO,EACnB,SAAS,CAAC,EAAE,OAAO,KAChB,OAAO,CAAC;IAAE,IAAI,EAAE,GAAG,EAAE,CAAA;CAAE,CAAC,GAC5B,OAAO,CAAC;IAAE,EAAE,EAAE,MAAM,CAAC;IAAC,cAAc,CAAC,EAAE,MAAM,CAAC;IAAC,yBAAyB,CAAC,EAAE,MAAM,CAAA;CAAE,GAAG,SAAS,CAAC,CAwDlG;AAED;;;;;GAKG;AACH,wBAAsB,kBAAkB,CACtC,MAAM,EAAE,MAAM,EACd,qBAAqB,EAAE,CACrB,MAAM,EAAE;IAAE,EAAE,EAAE,MAAM,CAAC;IAAC,EAAE,EAAE,MAAM,CAAC;IAAC,KAAK,EAAE,MAAM,GAAG,MAAM,GAAG,OAAO,CAAA;CAAE,EAAE,EACtE,KAAK,EAAE,MAAM,EACb,SAAS,CAAC,EAAE,OAAO,EACnB,SAAS,CAAC,EAAE,OAAO,KAChB,OAAO,CAAC;IAAE,IAAI,EAAE,GAAG,EAAE,CAAA;CAAE,CAAC,GAC5B,OAAO,CAAC;IAAE,EAAE,EAAE,MAAM,CAAC;IAAC,cAAc,CAAC,EAAE,MAAM,CAAC;IAAC,yBAAyB,CAAC,EAAE,MAAM,CAAA;CAAE,GAAG,SAAS,CAAC,CASlG;AAED,wBAAsB,0BAA0B,CAAC,MAAM,EAAE,MAAM,EAAE,GAAG,EAAE,MAAM,EAAE,aAAa,EAAE,MAAM;;;;;GAyBlG;AAED,KAAK,qBAAqB,GAAG,CAC3B,MAAM,EAAE;IAAE,EAAE,EAAE,MAAM,CAAC;IAAC,EAAE,EAAE,MAAM,CAAC;IAAC,KAAK,EAAE,MAAM,GAAG,MAAM,GAAG,OAAO,CAAA;CAAE,EAAE,EACtE,KAAK,EAAE,MAAM,EACb,SAAS,CAAC,EAAE,OAAO,EACnB,SAAS,CAAC,EAAE,OAAO,KAChB,OAAO,CAAC;IAAE,IAAI,EAAE,GAAG,EAAE,CAAA;CAAE,CAAC,CAAC;AAE9B,MAAM,WAAW,oBAAoB;IACnC,aAAa,CAAC,EAAE,OAAO,GAAG;QAAE,MAAM,CAAC,EAAE,OAAO,CAAC;QAAC,OAAO,CAAC,EAAE,OAAO,CAAA;KAAE,CAAC;IAClE,GAAG,EAAE,MAAM,CAAC;IACZ,aAAa,EAAE,MAAM,CAAC;CACvB;AAED;;;GAGG;AACH,wBAAsB,aAAa,CACjC,MAAM,EAAE,MAAM,EACd,OAAO,EAAE,oBAAoB,EAC7B,qBAAqB,EAAE,qBAAqB,GAC3C,OAAO,CAAC,aAAa,GAAG,IAAI,CAAC,CA6B/B;AAED;;GAEG;AACH,wBAAgB,sBAAsB,CAAC,MAAM,EAAE,aAAa,EAAE,aAAa,EAAE,CAAC,IAAI,EAAE,MAAM,KAAK,IAAI,EAAE,UAAU,EAAE,MAAM,IAAI,GAAG,IAAI,CAajI;AAED;;GAEG;AACH,wBAAgB,qBAAqB,CAAC,MAAM,EAAE,aAAa,EAAE,aAAa,EAAE,CAAC,IAAI,EAAE,MAAM,KAAK,IAAI,EAAE,UAAU,EAAE,MAAM,IAAI,GAAG,IAAI,CAQhI"}
1
+ {"version":3,"file":"utils.d.ts","sourceRoot":"","sources":["../../../../../../src/Header/QrCodeScanner/utils.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,MAAM,EAAa,MAAM,0BAA0B,CAAC;AAI7D,MAAM,MAAM,aAAa,GACrB;IAAE,IAAI,EAAE,QAAQ,CAAC;IAAC,cAAc,CAAC,EAAE,MAAM,CAAC;IAAC,yBAAyB,CAAC,EAAE,MAAM,CAAC;IAAC,WAAW,CAAC,EAAE,MAAM,CAAC;IAAC,MAAM,EAAE,MAAM,CAAA;CAAE,GACrH;IAAE,IAAI,EAAE,SAAS,CAAC;IAAC,SAAS,EAAE,MAAM,CAAC;IAAC,cAAc,CAAC,EAAE,MAAM,CAAC;IAAC,yBAAyB,CAAC,EAAE,MAAM,CAAA;CAAE,CAAC;AAExG;;;;;;;;;;;;GAYG;AACH,wBAAgB,WAAW,CAAC,GAAG,EAAE,MAAM,sBA0BtC;AAED;;;;;;;;;;;GAWG;AACH,wBAAsB,YAAY,CAChC,GAAG,EAAE,MAAM,EACX,WAAW,EAAE,MAAM,EACnB,qBAAqB,EAAE,CACrB,MAAM,EAAE;IAAE,EAAE,EAAE,MAAM,CAAC;IAAC,EAAE,EAAE,MAAM,CAAC;IAAC,KAAK,EAAE,MAAM,GAAG,MAAM,GAAG,OAAO,CAAA;CAAE,EAAE,EACtE,KAAK,EAAE,MAAM,EACb,SAAS,CAAC,EAAE,OAAO,EACnB,SAAS,CAAC,EAAE,OAAO,KAChB,OAAO,CAAC;IAAE,IAAI,EAAE,GAAG,EAAE,CAAA;CAAE,CAAC,GAC5B,OAAO,CAAC;IAAE,EAAE,EAAE,MAAM,CAAC;IAAC,cAAc,CAAC,EAAE,MAAM,CAAC;IAAC,yBAAyB,CAAC,EAAE,MAAM,CAAA;CAAE,GAAG,SAAS,CAAC,CAwDlG;AAED;;;;;;GAMG;AACH,wBAAsB,oBAAoB,CACxC,MAAM,EAAE,MAAM,EACd,GAAG,EAAE,MAAM,EACX,cAAc,EAAE,MAAM,GACrB,OAAO,CAAC;IAAE,EAAE,EAAE,MAAM,CAAC;IAAC,cAAc,CAAC,EAAE,MAAM,CAAC;IAAC,yBAAyB,CAAC,EAAE,MAAM,CAAA;CAAE,GAAG,SAAS,CAAC,CAmBlG;AAED,wBAAsB,0BAA0B,CAAC,MAAM,EAAE,MAAM,EAAE,GAAG,EAAE,MAAM,EAAE,aAAa,EAAE,MAAM;;;;eAwBlG;AAED,MAAM,WAAW,oBAAoB;IACnC,aAAa,CAAC,EAAE,OAAO,GAAG;QAAE,MAAM,CAAC,EAAE,OAAO,CAAC;QAAC,OAAO,CAAC,EAAE,OAAO,CAAA;KAAE,CAAC;IAClE,GAAG,EAAE,MAAM,CAAC;IACZ,aAAa,EAAE,MAAM,CAAC;IACtB,cAAc,EAAE,MAAM,CAAC;CACxB;AAED;;;GAGG;AACH,wBAAsB,aAAa,CAAC,MAAM,EAAE,MAAM,EAAE,OAAO,EAAE,oBAAoB,GAAG,OAAO,CAAC,aAAa,GAAG,IAAI,CAAC,CA6BhH;AAED;;GAEG;AACH,wBAAgB,sBAAsB,CAAC,MAAM,EAAE,aAAa,EAAE,aAAa,EAAE,CAAC,IAAI,EAAE,MAAM,KAAK,IAAI,EAAE,UAAU,EAAE,MAAM,IAAI,GAAG,IAAI,CAajI;AAED;;GAEG;AACH,wBAAgB,qBAAqB,CAAC,MAAM,EAAE,aAAa,EAAE,aAAa,EAAE,CAAC,IAAI,EAAE,MAAM,KAAK,IAAI,EAAE,UAAU,EAAE,MAAM,IAAI,GAAG,IAAI,CAQhI"}
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@crystaldesign/diva-navigator",
3
- "version": "26.3.0-rc.1",
3
+ "version": "26.3.0-rc.3",
4
4
  "license": "MIT",
5
5
  "devDependencies": {
6
6
  "@testing-library/jest-dom": "^6.5.0",
@@ -25,5 +25,5 @@
25
25
  },
26
26
  "module": "build/esm/index.js",
27
27
  "types": "./build/types/navigator/src/index.d.ts",
28
- "gitHead": "179868abab9c6193d79fcbdc63cabd85c91ffa21"
28
+ "gitHead": "9d05a9680c3054f24d068eb81f5cd7067abf7beb"
29
29
  }