diff --git a/dist/js/libs/oj/debug_esm/ojaccordion.js b/dist/js/libs/oj/debug_esm/ojaccordion.js
index 09e43402..36dd8d56 100644
--- a/dist/js/libs/oj/debug_esm/ojaccordion.js
+++ b/dist/js/libs/oj/debug_esm/ojaccordion.js
@@ -5,11 +5,11 @@
* as shown at https://oss.oracle.com/licenses/upl/
* @ignore
*/
-import oj from 'ojs/ojcore-base';
+import oj from './ojcore-base.js';
import $ from 'jquery';
-import { warn } from 'ojs/ojlogger';
-import 'ojs/ojcomponentcore';
-import 'ojs/ojcollapsible';
+import { warn } from './ojlogger.js';
+import './ojcomponentcore.js';
+import './ojcollapsible.js';
var __oj_accordion_metadata =
{
diff --git a/dist/js/libs/oj/debug_esm/ojactioncard.js b/dist/js/libs/oj/debug_esm/ojactioncard.js
index dd8b91fb..83b9197c 100644
--- a/dist/js/libs/oj/debug_esm/ojactioncard.js
+++ b/dist/js/libs/oj/debug_esm/ojactioncard.js
@@ -6,10 +6,10 @@
* @ignore
*/
import { jsx } from 'preact/jsx-runtime';
-import { Root, customElement } from 'ojs/ojvcomponent';
+import { Root, customElement } from './ojvcomponent.js';
import { Component, createRef } from 'preact';
-import { recentPointer } from 'ojs/ojdomutils';
-import { isEventClickthroughDisabled } from 'ojs/ojdatacollection-common';
+import { recentPointer } from './ojdomutils.js';
+import { isEventClickthroughDisabled } from './ojdatacollection-common.js';
var __decorate = (null && null.__decorate) || function (decorators, target, key, desc) {
var c = arguments.length, r = c < 3 ? target : desc === null ? desc = Object.getOwnPropertyDescriptor(target, key) : desc, d;
diff --git a/dist/js/libs/oj/debug_esm/ojamdloader.js b/dist/js/libs/oj/debug_esm/ojamdloader.js
new file mode 100644
index 00000000..8f0d14f9
--- /dev/null
+++ b/dist/js/libs/oj/debug_esm/ojamdloader.js
@@ -0,0 +1,59 @@
+/**
+ * @license
+ * Copyright (c) 2014, 2026, Oracle and/or its affiliates.
+ * Licensed under The Universal Permissive License (UPL), Version 1.0
+ * as shown at https://oss.oracle.com/licenses/upl/
+ * @ignore
+ */
+async function _readText(url) {
+ if (typeof process !== 'undefined' && process.versions?.node && url.protocol === 'file:') {
+ const { readFile } = await import('node:fs/promises');
+ return readFile(url, 'utf8');
+ }
+
+ const response = await fetch(url);
+ if (!response.ok) {
+ throw new Error(`Failed to load ${url}: ${response.status}`);
+ }
+ return response.text();
+}
+
+function _captureDefinedObject(source) {
+ let captured;
+ const define = (value) => {
+ captured = value;
+ };
+ new Function('define', source)(define);
+ if (captured === undefined) {
+ throw new Error('AMD bundle did not call define with an object payload');
+ }
+ return captured;
+}
+
+function _isMissingResourceError(error) {
+ return error?.code === 'ENOENT' || /Failed to load .*: 404/.test(error?.message || '');
+}
+
+export async function loadAmdObject(url) {
+ const source = await _readText(url);
+ return _captureDefinedObject(source);
+}
+
+export async function loadMergedAmdBundle(rootUrl, overlayUrl) {
+ const rootObject = await loadAmdObject(rootUrl);
+ const rootBundle = rootObject.root ?? rootObject;
+
+ if (!overlayUrl) {
+ return { ...rootBundle };
+ }
+
+ try {
+ const overlayObject = await loadAmdObject(overlayUrl);
+ return { ...rootBundle, ...overlayObject };
+ } catch (error) {
+ if (_isMissingResourceError(error)) {
+ return { ...rootBundle };
+ }
+ throw error;
+ }
+}
diff --git a/dist/js/libs/oj/debug_esm/ojanimation.js b/dist/js/libs/oj/debug_esm/ojanimation.js
index 8bfb0626..cf41dda4 100644
--- a/dist/js/libs/oj/debug_esm/ojanimation.js
+++ b/dist/js/libs/oj/debug_esm/ojanimation.js
@@ -5,11 +5,11 @@
* as shown at https://oss.oracle.com/licenses/upl/
* @ignore
*/
-import oj from 'ojs/ojcore-base';
+import oj from './ojcore-base.js';
import $ from 'jquery';
-import { getReadingDirection } from 'ojs/ojdomutils';
-import { parseJSONFromFontFamily } from 'ojs/ojthemeutils';
-import { warn, error } from 'ojs/ojlogger';
+import { getReadingDirection } from './ojdomutils.js';
+import { parseJSONFromFontFamily } from './ojthemeutils.js';
+import { warn, error } from './ojlogger.js';
const _TRANSLATE = 'translate(';
const _TRANSLATE2 = ') translateZ(0)';
diff --git a/dist/js/libs/oj/debug_esm/ojarraydatagriddatasource.js b/dist/js/libs/oj/debug_esm/ojarraydatagriddatasource.js
index c2d1d01a..b9ad2bf2 100644
--- a/dist/js/libs/oj/debug_esm/ojarraydatagriddatasource.js
+++ b/dist/js/libs/oj/debug_esm/ojarraydatagriddatasource.js
@@ -5,8 +5,8 @@
* as shown at https://oss.oracle.com/licenses/upl/
* @ignore
*/
-import oj from 'ojs/ojcore-base';
-import 'ojs/ojdatasource-common';
+import oj from './ojcore-base.js';
+import './ojdatasource-common.js';
/**
* @class ArrayCellSet
diff --git a/dist/js/libs/oj/debug_esm/ojarraydataprovider.js b/dist/js/libs/oj/debug_esm/ojarraydataprovider.js
index 6046c62e..169765fd 100644
--- a/dist/js/libs/oj/debug_esm/ojarraydataprovider.js
+++ b/dist/js/libs/oj/debug_esm/ojarraydataprovider.js
@@ -5,10 +5,10 @@
* as shown at https://oss.oracle.com/licenses/upl/
* @ignore
*/
-import oj from 'ojs/ojcore-base';
-import { SortUtils } from 'ojs/ojdataprovider';
-import { EventTargetMixin } from 'ojs/ojeventtarget';
-import { ArrayDataProviderImpl, getCapability, createOptimizedKeySet, createOptimizedKeyMap, getVal } from 'ojs/ojarraydataproviderimpl';
+import oj from './ojcore-base.js';
+import { SortUtils } from './ojdataprovider.js';
+import { EventTargetMixin } from './ojeventtarget.js';
+import { ArrayDataProviderImpl, getCapability, createOptimizedKeySet, createOptimizedKeyMap, getVal } from './ojarraydataproviderimpl.js';
/**
* @preserve Copyright 2013 jQuery Foundation and other contributors
diff --git a/dist/js/libs/oj/debug_esm/ojarraydataproviderimpl.js b/dist/js/libs/oj/debug_esm/ojarraydataproviderimpl.js
index 50e04e41..e7376c85 100644
--- a/dist/js/libs/oj/debug_esm/ojarraydataproviderimpl.js
+++ b/dist/js/libs/oj/debug_esm/ojarraydataproviderimpl.js
@@ -5,11 +5,11 @@
* as shown at https://oss.oracle.com/licenses/upl/
* @ignore
*/
-import { wrapWithAbortHandling, FilterFactory, DataProviderRefreshEvent, DataProviderMutationEvent } from 'ojs/ojdataprovider';
-import ojSet from 'ojs/ojset';
-import oj from 'ojs/ojcore-base';
-import ojMap from 'ojs/ojmap';
-import { warn } from 'ojs/ojlogger';
+import { wrapWithAbortHandling, FilterFactory, DataProviderRefreshEvent, DataProviderMutationEvent } from './ojdataprovider.js';
+import ojSet from './ojset.js';
+import oj from './ojcore-base.js';
+import ojMap from './ojmap.js';
+import { warn } from './ojlogger.js';
const _ATDEFAULT = '@default';
const getFetchCapability = () => {
diff --git a/dist/js/libs/oj/debug_esm/ojarraypagingdatasource.js b/dist/js/libs/oj/debug_esm/ojarraypagingdatasource.js
index bd0089f8..b57d2b79 100644
--- a/dist/js/libs/oj/debug_esm/ojarraypagingdatasource.js
+++ b/dist/js/libs/oj/debug_esm/ojarraypagingdatasource.js
@@ -5,10 +5,10 @@
* as shown at https://oss.oracle.com/licenses/upl/
* @ignore
*/
-import oj from 'ojs/ojcore-base';
+import oj from './ojcore-base.js';
import 'jquery';
import { observableArray } from 'knockout';
-import 'ojs/ojdatasource-common';
+import './ojdatasource-common.js';
/**
* @preserve Copyright 2013 jQuery Foundation and other contributors
diff --git a/dist/js/libs/oj/debug_esm/ojarraytabledatasource.js b/dist/js/libs/oj/debug_esm/ojarraytabledatasource.js
index 117c918c..11a6de9f 100644
--- a/dist/js/libs/oj/debug_esm/ojarraytabledatasource.js
+++ b/dist/js/libs/oj/debug_esm/ojarraytabledatasource.js
@@ -5,11 +5,11 @@
* as shown at https://oss.oracle.com/licenses/upl/
* @ignore
*/
-import oj from 'ojs/ojcore-base';
+import oj from './ojcore-base.js';
import $ from 'jquery';
-import { info } from 'ojs/ojlogger';
-import { applyParameters } from 'ojs/ojtranslation';
-import { TableDataSource } from 'ojs/ojdatasource-common';
+import { info } from './ojlogger.js';
+import { applyParameters } from './ojtranslation.js';
+import { TableDataSource } from './ojdatasource-common.js';
/**
* @export
diff --git a/dist/js/libs/oj/debug_esm/ojarraytreedataprovider.js b/dist/js/libs/oj/debug_esm/ojarraytreedataprovider.js
index ba8dbd5d..562f518b 100644
--- a/dist/js/libs/oj/debug_esm/ojarraytreedataprovider.js
+++ b/dist/js/libs/oj/debug_esm/ojarraytreedataprovider.js
@@ -5,10 +5,10 @@
* as shown at https://oss.oracle.com/licenses/upl/
* @ignore
*/
-import oj from 'ojs/ojcore-base';
-import ArrayDataProvider from 'ojs/ojarraydataprovider';
-import { EventTargetMixin } from 'ojs/ojeventtarget';
-import { warn } from 'ojs/ojlogger';
+import oj from './ojcore-base.js';
+import ArrayDataProvider from './ojarraydataprovider.js';
+import { EventTargetMixin } from './ojeventtarget.js';
+import { warn } from './ojlogger.js';
/**
* @preserve Copyright 2013 jQuery Foundation and other contributors
diff --git a/dist/js/libs/oj/debug_esm/ojasyncvalidator-daterestriction.js b/dist/js/libs/oj/debug_esm/ojasyncvalidator-daterestriction.js
index a7c42672..06949f75 100644
--- a/dist/js/libs/oj/debug_esm/ojasyncvalidator-daterestriction.js
+++ b/dist/js/libs/oj/debug_esm/ojasyncvalidator-daterestriction.js
@@ -5,7 +5,7 @@
* as shown at https://oss.oracle.com/licenses/upl/
* @ignore
*/
-import SyncValidatorAdapter from 'ojs/ojasyncvalidator-adapter';
+import SyncValidatorAdapter from './ojasyncvalidator-adapter.js';
/**
* @preserve Copyright 2013 jQuery Foundation and other contributors
@@ -71,7 +71,7 @@ class AsyncDateRestrictionValidator extends SyncValidatorAdapter {
}
_InitLoadingPromise() {
if (!this._loadingPromise) {
- this._loadingPromise = import('ojs/ojvalidator-daterestriction');
+ this._loadingPromise = import('./ojvalidator-daterestriction.js');
}
}
}
diff --git a/dist/js/libs/oj/debug_esm/ojasyncvalidator-datetimerange.js b/dist/js/libs/oj/debug_esm/ojasyncvalidator-datetimerange.js
index fde0d4a8..7b06f274 100644
--- a/dist/js/libs/oj/debug_esm/ojasyncvalidator-datetimerange.js
+++ b/dist/js/libs/oj/debug_esm/ojasyncvalidator-datetimerange.js
@@ -5,7 +5,7 @@
* as shown at https://oss.oracle.com/licenses/upl/
* @ignore
*/
-import SyncValidatorAdapter from 'ojs/ojasyncvalidator-adapter';
+import SyncValidatorAdapter from './ojasyncvalidator-adapter.js';
/**
* @preserve Copyright 2013 jQuery Foundation and other contributors
@@ -70,7 +70,7 @@ class AsyncDateTimeRangeValidator extends SyncValidatorAdapter {
}
_InitLoadingPromise() {
if (!this._loadingPromise) {
- this._loadingPromise = import('ojs/ojvalidator-datetimerange');
+ this._loadingPromise = import('./ojvalidator-datetimerange.js');
}
}
}
diff --git a/dist/js/libs/oj/debug_esm/ojasyncvalidator-length.js b/dist/js/libs/oj/debug_esm/ojasyncvalidator-length.js
index 8fa6a410..abd492b4 100644
--- a/dist/js/libs/oj/debug_esm/ojasyncvalidator-length.js
+++ b/dist/js/libs/oj/debug_esm/ojasyncvalidator-length.js
@@ -5,7 +5,7 @@
* as shown at https://oss.oracle.com/licenses/upl/
* @ignore
*/
-import SyncValidatorAdapter from 'ojs/ojasyncvalidator-adapter';
+import SyncValidatorAdapter from './ojasyncvalidator-adapter.js';
/**
* @preserve Copyright 2013 jQuery Foundation and other contributors
@@ -71,7 +71,7 @@ class AsyncLengthValidator extends SyncValidatorAdapter {
}
_InitLoadingPromise() {
if (!this._loadingPromise) {
- this._loadingPromise = import('ojs/ojvalidator-length');
+ this._loadingPromise = import('./ojvalidator-length.js');
}
}
}
diff --git a/dist/js/libs/oj/debug_esm/ojasyncvalidator-numberrange.js b/dist/js/libs/oj/debug_esm/ojasyncvalidator-numberrange.js
index d6b4cdf6..a1588e43 100644
--- a/dist/js/libs/oj/debug_esm/ojasyncvalidator-numberrange.js
+++ b/dist/js/libs/oj/debug_esm/ojasyncvalidator-numberrange.js
@@ -5,7 +5,7 @@
* as shown at https://oss.oracle.com/licenses/upl/
* @ignore
*/
-import SyncValidatorAdapter from 'ojs/ojasyncvalidator-adapter';
+import SyncValidatorAdapter from './ojasyncvalidator-adapter.js';
/**
* @preserve Copyright 2013 jQuery Foundation and other contributors
@@ -72,7 +72,7 @@ class AsyncNumberRangeValidator extends SyncValidatorAdapter {
}
_InitLoadingPromise() {
if (!this._loadingPromise) {
- this._loadingPromise = import('ojs/ojvalidator-numberrange');
+ this._loadingPromise = import('./ojvalidator-numberrange.js');
}
}
}
diff --git a/dist/js/libs/oj/debug_esm/ojasyncvalidator-regexp.js b/dist/js/libs/oj/debug_esm/ojasyncvalidator-regexp.js
index 89574df2..52fa043c 100644
--- a/dist/js/libs/oj/debug_esm/ojasyncvalidator-regexp.js
+++ b/dist/js/libs/oj/debug_esm/ojasyncvalidator-regexp.js
@@ -5,7 +5,7 @@
* as shown at https://oss.oracle.com/licenses/upl/
* @ignore
*/
-import SyncValidatorAdapter from 'ojs/ojasyncvalidator-adapter';
+import SyncValidatorAdapter from './ojasyncvalidator-adapter.js';
/**
* @preserve Copyright 2013 jQuery Foundation and other contributors
@@ -73,7 +73,7 @@ class AsyncRegExpValidator extends SyncValidatorAdapter {
}
_InitLoadingPromise() {
if (!this._loadingPromise) {
- this._loadingPromise = import('ojs/ojvalidator-regexp');
+ this._loadingPromise = import('./ojvalidator-regexp.js');
}
}
}
diff --git a/dist/js/libs/oj/debug_esm/ojasyncvalidator-required.js b/dist/js/libs/oj/debug_esm/ojasyncvalidator-required.js
index d4daaed4..a927d1d5 100644
--- a/dist/js/libs/oj/debug_esm/ojasyncvalidator-required.js
+++ b/dist/js/libs/oj/debug_esm/ojasyncvalidator-required.js
@@ -5,7 +5,7 @@
* as shown at https://oss.oracle.com/licenses/upl/
* @ignore
*/
-import SyncValidatorAdapter from 'ojs/ojasyncvalidator-adapter';
+import SyncValidatorAdapter from './ojasyncvalidator-adapter.js';
/**
* @preserve Copyright 2013 jQuery Foundation and other contributors
@@ -72,7 +72,7 @@ class AsyncRequiredValidator extends SyncValidatorAdapter {
}
_InitLoadingPromise() {
if (!this._loadingPromise) {
- this._loadingPromise = import('ojs/ojvalidator-required');
+ this._loadingPromise = import('./ojvalidator-required.js');
}
}
}
diff --git a/dist/js/libs/oj/debug_esm/ojattributegrouphandler.js b/dist/js/libs/oj/debug_esm/ojattributegrouphandler.js
index e444551e..d9a8a3f3 100644
--- a/dist/js/libs/oj/debug_esm/ojattributegrouphandler.js
+++ b/dist/js/libs/oj/debug_esm/ojattributegrouphandler.js
@@ -5,7 +5,7 @@
* as shown at https://oss.oracle.com/licenses/upl/
* @ignore
*/
-import oj from 'ojs/ojcore-base';
+import oj from './ojcore-base.js';
import $ from 'jquery';
/**
diff --git a/dist/js/libs/oj/debug_esm/ojavailabletimezones.js b/dist/js/libs/oj/debug_esm/ojavailabletimezones.js
index 33ea2700..91640f4f 100644
--- a/dist/js/libs/oj/debug_esm/ojavailabletimezones.js
+++ b/dist/js/libs/oj/debug_esm/ojavailabletimezones.js
@@ -5,10 +5,10 @@
* as shown at https://oss.oracle.com/licenses/upl/
* @ignore
*/
-import { __getBundle } from 'ojs/ojlocaledata';
-import { OraI18nUtils } from 'ojs/ojconverterutils-i18n';
-import { getLocale } from 'ojs/ojconfig';
-import { getISODateOffset } from 'ojs/ojconverter-nativedatetime';
+import { __getBundle } from './ojlocaledata.js';
+import { OraI18nUtils } from './ojconverterutils-i18n.js';
+import { getLocale } from './ojconfig.js';
+import { getISODateOffset } from './ojconverter-nativedatetime.js';
// OraI18nUtils is an undocumented class that is ok for other JET code to call
// but we don't want it to be a public API. So we need to cast it to any here.
diff --git a/dist/js/libs/oj/debug_esm/ojavatar.js b/dist/js/libs/oj/debug_esm/ojavatar.js
index 4cd8aad2..ac45d6b2 100644
--- a/dist/js/libs/oj/debug_esm/ojavatar.js
+++ b/dist/js/libs/oj/debug_esm/ojavatar.js
@@ -6,8 +6,8 @@
* @ignore
*/
import { jsxs, jsx } from 'preact/jsx-runtime';
-import { customElement } from 'ojs/ojvcomponent';
-import { getCachedCSSVarValues } from 'ojs/ojthemeutils';
+import { customElement } from './ojvcomponent.js';
+import { getCachedCSSVarValues } from './ojthemeutils.js';
import { Component } from 'preact';
var __decorate = (null && null.__decorate) || function (decorators, target, key, desc) {
diff --git a/dist/js/libs/oj/debug_esm/ojbinddom.js b/dist/js/libs/oj/debug_esm/ojbinddom.js
index 6e2a6ac7..116ab5c1 100644
--- a/dist/js/libs/oj/debug_esm/ojbinddom.js
+++ b/dist/js/libs/oj/debug_esm/ojbinddom.js
@@ -5,12 +5,12 @@
* as shown at https://oss.oracle.com/licenses/upl/
* @ignore
*/
-import BindingProviderImpl from 'ojs/ojkoshared';
-import { OJ_BIND_CONVERTED_NODE, AttributeUtils, ElementUtils } from 'ojs/ojcustomelement-utils';
+import BindingProviderImpl from './ojkoshared.js';
+import { OJ_BIND_CONVERTED_NODE, AttributeUtils, ElementUtils } from './ojcustomelement-utils.js';
import { bindingHandlers, virtualElements, applyBindingsToDescendants, computed, utils } from 'knockout';
-import oj from 'ojs/ojcore-base';
-import { error } from 'ojs/ojlogger';
-import Context from 'ojs/ojcontext';
+import oj from './ojcore-base.js';
+import { error } from './ojlogger.js';
+import Context from './ojcontext.js';
/**
*
diff --git a/dist/js/libs/oj/debug_esm/ojbindingprovider.js b/dist/js/libs/oj/debug_esm/ojbindingprovider.js
index 363c1191..c2365676 100644
--- a/dist/js/libs/oj/debug_esm/ojbindingprovider.js
+++ b/dist/js/libs/oj/debug_esm/ojbindingprovider.js
@@ -5,7 +5,7 @@
* as shown at https://oss.oracle.com/licenses/upl/
* @ignore
*/
-import BindingProviderImpl from 'ojs/ojkoshared';
+import BindingProviderImpl from './ojkoshared.js';
/**
* Utility class with functions for interacting with the JET binding provider.
diff --git a/dist/js/libs/oj/debug_esm/ojbindpropagation.js b/dist/js/libs/oj/debug_esm/ojbindpropagation.js
index ffa11e73..1180a30b 100644
--- a/dist/js/libs/oj/debug_esm/ojbindpropagation.js
+++ b/dist/js/libs/oj/debug_esm/ojbindpropagation.js
@@ -5,7 +5,7 @@
* as shown at https://oss.oracle.com/licenses/upl/
* @ignore
*/
-import { getElementRegistration } from 'ojs/ojcustomelement-registry';
+import { getElementRegistration } from './ojcustomelement-registry.js';
const STATIC_PROPAGATION = Symbol('StaticContextPropagation');
const CONSUMED_CONTEXT = Symbol('ConsumedContext');
diff --git a/dist/js/libs/oj/debug_esm/ojbufferingdataprovider.js b/dist/js/libs/oj/debug_esm/ojbufferingdataprovider.js
index e74b5dc8..455bcb8d 100644
--- a/dist/js/libs/oj/debug_esm/ojbufferingdataprovider.js
+++ b/dist/js/libs/oj/debug_esm/ojbufferingdataprovider.js
@@ -5,13 +5,13 @@
* as shown at https://oss.oracle.com/licenses/upl/
* @ignore
*/
-import oj from 'ojs/ojcore-base';
-import { KeyCache, DataProviderRefreshEvent } from 'ojs/ojdataprovider';
-import { EventTargetMixin } from 'ojs/ojeventtarget';
-import ojMap from 'ojs/ojmap';
-import ojSet from 'ojs/ojset';
-import { BufferingDataProviderSubmittableChangeEvent } from 'ojs/ojbufferingdataproviderevents';
-import { BufferingDataProviderUtils, EditBuffer } from 'ojs/ojbufferingutils';
+import oj from './ojcore-base.js';
+import { KeyCache, DataProviderRefreshEvent } from './ojdataprovider.js';
+import { EventTargetMixin } from './ojeventtarget.js';
+import ojMap from './ojmap.js';
+import ojSet from './ojset.js';
+import { BufferingDataProviderSubmittableChangeEvent } from './ojbufferingdataproviderevents.js';
+import { BufferingDataProviderUtils, EditBuffer } from './ojbufferingutils.js';
/**
* @preserve Copyright 2013 jQuery Foundation and other contributors
diff --git a/dist/js/libs/oj/debug_esm/ojbufferingdataproviderevents.js b/dist/js/libs/oj/debug_esm/ojbufferingdataproviderevents.js
index b71e9405..52631d79 100644
--- a/dist/js/libs/oj/debug_esm/ojbufferingdataproviderevents.js
+++ b/dist/js/libs/oj/debug_esm/ojbufferingdataproviderevents.js
@@ -5,7 +5,7 @@
* as shown at https://oss.oracle.com/licenses/upl/
* @ignore
*/
-import { GenericEvent } from 'ojs/ojeventtarget';
+import { GenericEvent } from './ojeventtarget.js';
class BufferingDataProviderSubmittableChangeEvent extends GenericEvent {
constructor(detail) {
diff --git a/dist/js/libs/oj/debug_esm/ojbufferingtreedataprovider.js b/dist/js/libs/oj/debug_esm/ojbufferingtreedataprovider.js
index 93d21453..1ef84e8f 100644
--- a/dist/js/libs/oj/debug_esm/ojbufferingtreedataprovider.js
+++ b/dist/js/libs/oj/debug_esm/ojbufferingtreedataprovider.js
@@ -5,15 +5,15 @@
* as shown at https://oss.oracle.com/licenses/upl/
* @ignore
*/
-import oj from 'ojs/ojcore-base';
-import { DataProviderRefreshEvent, KeyCache } from 'ojs/ojdataprovider';
-import { EventTargetMixin } from 'ojs/ojeventtarget';
-import ojMap from 'ojs/ojmap';
-import ojSet from 'ojs/ojset';
-import { BufferingDataProviderUtils, EditBuffer, TreeEditBuffer } from 'ojs/ojbufferingutils';
-import { BufferingDataProviderSubmittableChangeEvent } from 'ojs/ojbufferingdataproviderevents';
-import { MutableArrayTreeDataProvider } from 'ojs/ojmutablearraytreedataprovider';
-import { error } from 'ojs/ojlogger';
+import oj from './ojcore-base.js';
+import { DataProviderRefreshEvent, KeyCache } from './ojdataprovider.js';
+import { EventTargetMixin } from './ojeventtarget.js';
+import ojMap from './ojmap.js';
+import ojSet from './ojset.js';
+import { BufferingDataProviderUtils, EditBuffer, TreeEditBuffer } from './ojbufferingutils.js';
+import { BufferingDataProviderSubmittableChangeEvent } from './ojbufferingdataproviderevents.js';
+import { MutableArrayTreeDataProvider } from './ojmutablearraytreedataprovider.js';
+import { error } from './ojlogger.js';
/**
* @preserve Copyright 2013 jQuery Foundation and other contributors
diff --git a/dist/js/libs/oj/debug_esm/ojbufferingutils.js b/dist/js/libs/oj/debug_esm/ojbufferingutils.js
index 4735e838..2b1ebfd3 100644
--- a/dist/js/libs/oj/debug_esm/ojbufferingutils.js
+++ b/dist/js/libs/oj/debug_esm/ojbufferingutils.js
@@ -5,9 +5,9 @@
* as shown at https://oss.oracle.com/licenses/upl/
* @ignore
*/
-import oj from 'ojs/ojcore-base';
-import { SortUtils, FilterFactory, DataProviderUtils, wrapWithAbortHandling, DataProviderMutationEvent } from 'ojs/ojdataprovider';
-import ojMap from 'ojs/ojmap';
+import oj from './ojcore-base.js';
+import { SortUtils, FilterFactory, DataProviderUtils, wrapWithAbortHandling, DataProviderMutationEvent } from './ojdataprovider.js';
+import ojMap from './ojmap.js';
class BufferingDataProviderUtils {
static fetchByKeysFromBuffer(params, editBuffer) {
diff --git a/dist/js/libs/oj/debug_esm/ojbutton.js b/dist/js/libs/oj/debug_esm/ojbutton.js
index 44936a6c..f5a96002 100644
--- a/dist/js/libs/oj/debug_esm/ojbutton.js
+++ b/dist/js/libs/oj/debug_esm/ojbutton.js
@@ -5,16 +5,16 @@
* as shown at https://oss.oracle.com/licenses/upl/
* @ignore
*/
-import 'ojs/ojoption';
-import oj from 'ojs/ojcore-base';
+import './ojoption.js';
+import oj from './ojcore-base.js';
import $ from 'jquery';
-import { isTouchSupported, recentTouchEnd, unwrap } from 'ojs/ojdomutils';
-import { getCachedCSSVarValues } from 'ojs/ojthemeutils';
-import { __GetWidgetConstructor, _OJ_CONTAINER_ATTR, setDefaultOptions, createDynamicPropertyGetter } from 'ojs/ojcomponentcore';
-import ChildMutationObserver from 'ojs/ojchildmutationobserver';
-import LabelledByUtils from 'ojs/ojlabelledbyutils';
-import { CustomElementUtils } from 'ojs/ojcustomelement-utils';
-import 'ojs/ojbutton2';
+import { isTouchSupported, recentTouchEnd, unwrap } from './ojdomutils.js';
+import { getCachedCSSVarValues } from './ojthemeutils.js';
+import { __GetWidgetConstructor, _OJ_CONTAINER_ATTR, setDefaultOptions, createDynamicPropertyGetter } from './ojcomponentcore.js';
+import ChildMutationObserver from './ojchildmutationobserver.js';
+import LabelledByUtils from './ojlabelledbyutils.js';
+import { CustomElementUtils } from './ojcustomelement-utils.js';
+import './ojbutton2.js';
var __oj_menu_button_metadata =
{
diff --git a/dist/js/libs/oj/debug_esm/ojbutton2.js b/dist/js/libs/oj/debug_esm/ojbutton2.js
index a0e869ad..d5c7d7ee 100644
--- a/dist/js/libs/oj/debug_esm/ojbutton2.js
+++ b/dist/js/libs/oj/debug_esm/ojbutton2.js
@@ -6,13 +6,13 @@
* @ignore
*/
import { jsx, jsxs } from 'preact/jsx-runtime';
-import { recentTouchEnd, makeFocusable, getNoJQFocusHandlers } from 'ojs/ojdomutils';
-import { startDetectContextMenuGesture, stopDetectContextMenuGesture } from 'ojs/ojgestureutils';
-import { getUniqueId, Root, customElement } from 'ojs/ojvcomponent';
+import { recentTouchEnd, makeFocusable, getNoJQFocusHandlers } from './ojdomutils.js';
+import { startDetectContextMenuGesture, stopDetectContextMenuGesture } from './ojgestureutils.js';
+import { getUniqueId, Root, customElement } from './ojvcomponent.js';
import { Component, createRef } from 'preact';
-import { VMenu } from 'ojs/ojvmenu';
-import 'ojs/ojvcomponent-binding';
-import { getCachedCSSVarValues } from 'ojs/ojthemeutils';
+import { VMenu } from './ojvmenu.js';
+import './ojvcomponent-binding.js';
+import { getCachedCSSVarValues } from './ojthemeutils.js';
var __decorate = (null && null.__decorate) || function (decorators, target, key, desc) {
var c = arguments.length, r = c < 3 ? target : desc === null ? desc = Object.getOwnPropertyDescriptor(target, key) : desc, d;
diff --git a/dist/js/libs/oj/debug_esm/ojbuttonlegacy.js b/dist/js/libs/oj/debug_esm/ojbuttonlegacy.js
index 508f5f9d..a0f325d5 100644
--- a/dist/js/libs/oj/debug_esm/ojbuttonlegacy.js
+++ b/dist/js/libs/oj/debug_esm/ojbuttonlegacy.js
@@ -5,8 +5,8 @@
* as shown at https://oss.oracle.com/licenses/upl/
* @ignore
*/
-import 'ojs/ojcomponentcore';
-import oj from 'ojs/ojcore-base';
+import './ojcomponentcore.js';
+import oj from './ojcore-base.js';
// This is not used but in order for the build to include the code it must export something
class ButtonLegacy {
diff --git a/dist/js/libs/oj/debug_esm/ojcachedfetchbyoffsetresultsdataprovider.js b/dist/js/libs/oj/debug_esm/ojcachedfetchbyoffsetresultsdataprovider.js
index d7ca525d..5d4c2f92 100644
--- a/dist/js/libs/oj/debug_esm/ojcachedfetchbyoffsetresultsdataprovider.js
+++ b/dist/js/libs/oj/debug_esm/ojcachedfetchbyoffsetresultsdataprovider.js
@@ -5,9 +5,9 @@
* as shown at https://oss.oracle.com/licenses/upl/
* @ignore
*/
-import oj from 'ojs/ojcore-base';
-import { wrapWithAbortHandling } from 'ojs/ojdataprovider';
-import { EventTargetMixin } from 'ojs/ojeventtarget';
+import oj from './ojcore-base.js';
+import { wrapWithAbortHandling } from './ojdataprovider.js';
+import { EventTargetMixin } from './ojeventtarget.js';
/**
* @license
diff --git a/dist/js/libs/oj/debug_esm/ojcachediteratorresultsdataprovider.js b/dist/js/libs/oj/debug_esm/ojcachediteratorresultsdataprovider.js
index 9bd2f9b4..fc4a43f0 100644
--- a/dist/js/libs/oj/debug_esm/ojcachediteratorresultsdataprovider.js
+++ b/dist/js/libs/oj/debug_esm/ojcachediteratorresultsdataprovider.js
@@ -5,9 +5,9 @@
* as shown at https://oss.oracle.com/licenses/upl/
* @ignore
*/
-import oj from 'ojs/ojcore-base';
-import { wrapWithAbortHandling } from 'ojs/ojdataprovider';
-import { EventTargetMixin } from 'ojs/ojeventtarget';
+import oj from './ojcore-base.js';
+import { wrapWithAbortHandling } from './ojdataprovider.js';
+import { EventTargetMixin } from './ojeventtarget.js';
/**
* @license
diff --git a/dist/js/libs/oj/debug_esm/ojcachingdataprovider.js b/dist/js/libs/oj/debug_esm/ojcachingdataprovider.js
index 78b093fb..e42397f7 100644
--- a/dist/js/libs/oj/debug_esm/ojcachingdataprovider.js
+++ b/dist/js/libs/oj/debug_esm/ojcachingdataprovider.js
@@ -5,7 +5,7 @@
* as shown at https://oss.oracle.com/licenses/upl/
* @ignore
*/
-import { info } from 'ojs/ojlogger';
+import { info } from './ojlogger.js';
var _a;
class AsyncIteratorWrapper {
diff --git a/dist/js/libs/oj/debug_esm/ojchart-toolkit.js b/dist/js/libs/oj/debug_esm/ojchart-toolkit.js
index d0199b60..9b8313b4 100644
--- a/dist/js/libs/oj/debug_esm/ojchart-toolkit.js
+++ b/dist/js/libs/oj/debug_esm/ojchart-toolkit.js
@@ -5,10 +5,10 @@
* as shown at https://oss.oracle.com/licenses/upl/
* @ignore
*/
-import { Obj, Point, ArrayUtils, BaseComponentDefaults, CSSStyle, Agent, ColorUtils, JsonUtils, Container, Stroke, Line, SimpleMarker, Displayable, HtmlTooltipManager, ResourceUtils, SelectionEffectUtils, MouseEvent, KeyboardEvent, KeyboardHandler, Rectangle, TextUtils, BackgroundOutputText, OutputText, BackgroundMultilineText, MultilineText, TextObjPeer, EventManager, EventFactory, ToolkitUtils, Dimension, Rect, SimpleObjPeer, PathUtils, Path, Automation, BaseComponent, Math as Math$1, PatternFill, LinearGradientFill, SolidFill, Matrix, Polygon, Circle, CustomDatatipPeer, CustomAnimation, Animator, SvgDocumentUtils, IconButton, AnimFadeIn, AnimFadeOut, ParallelPlayable, Shape, Polyline, DataAnimationHandler, SequentialPlayable, AnimPopIn, PolygonUtils, LayoutUtils, ImageMarker, PixelMap, ClipPath, CategoryRolloverHandler, PanZoomHandler, MarqueeHandler, SimpleScrollbar, AriaUtils, SelectionHandler, BlackBoxAnimationHandler, Playable, Context, BaseComponentCache } from 'ojs/ojdvt-toolkit';
-import { LinearScaleAxisValueFormatter, BaseAxisInfo, DataAxisInfoMixin } from 'ojs/ojdvt-axis';
-import { Legend } from 'ojs/ojlegend-toolkit';
-import { Overview } from 'ojs/ojdvt-overview';
+import { Obj, Point, ArrayUtils, BaseComponentDefaults, CSSStyle, Agent, ColorUtils, JsonUtils, Container, Stroke, Line, SimpleMarker, Displayable, HtmlTooltipManager, ResourceUtils, SelectionEffectUtils, MouseEvent, KeyboardEvent, KeyboardHandler, Rectangle, TextUtils, BackgroundOutputText, OutputText, BackgroundMultilineText, MultilineText, TextObjPeer, EventManager, EventFactory, ToolkitUtils, Dimension, Rect, SimpleObjPeer, PathUtils, Path, Automation, BaseComponent, Math as Math$1, PatternFill, LinearGradientFill, SolidFill, Matrix, Polygon, Circle, CustomDatatipPeer, CustomAnimation, Animator, SvgDocumentUtils, IconButton, AnimFadeIn, AnimFadeOut, ParallelPlayable, Shape, Polyline, DataAnimationHandler, SequentialPlayable, AnimPopIn, PolygonUtils, LayoutUtils, ImageMarker, PixelMap, ClipPath, CategoryRolloverHandler, PanZoomHandler, MarqueeHandler, SimpleScrollbar, AriaUtils, SelectionHandler, BlackBoxAnimationHandler, Playable, Context, BaseComponentCache } from './ojdvt-toolkit.js';
+import { LinearScaleAxisValueFormatter, BaseAxisInfo, DataAxisInfoMixin } from './ojdvt-axis.js';
+import { Legend } from './ojlegend-toolkit.js';
+import { Overview } from './ojdvt-overview.js';
const DvtChartDataItemUtils = {
/**
diff --git a/dist/js/libs/oj/debug_esm/ojchart-utils.js b/dist/js/libs/oj/debug_esm/ojchart-utils.js
index 9e31673a..6e3e6cb5 100644
--- a/dist/js/libs/oj/debug_esm/ojchart-utils.js
+++ b/dist/js/libs/oj/debug_esm/ojchart-utils.js
@@ -5,7 +5,7 @@
* as shown at https://oss.oracle.com/licenses/upl/
* @ignore
*/
-import { DataAxisInfoMixin, LinearScaleAxisValueFormatter } from 'ojs/ojdvt-axis';
+import { DataAxisInfoMixin, LinearScaleAxisValueFormatter } from './ojdvt-axis.js';
function getLabelFormatInfo(options) {
let axisOptions = {};
diff --git a/dist/js/libs/oj/debug_esm/ojchart.js b/dist/js/libs/oj/debug_esm/ojchart.js
index ba9b92cc..0bfd7f68 100644
--- a/dist/js/libs/oj/debug_esm/ojchart.js
+++ b/dist/js/libs/oj/debug_esm/ojchart.js
@@ -5,14 +5,14 @@
* as shown at https://oss.oracle.com/licenses/upl/
* @ignore
*/
-import oj from 'ojs/ojcore-base';
-import DvtAttributeUtils from 'ojs/ojdvt-base';
-import 'ojs/ojcomponentcore';
+import oj from './ojcore-base.js';
+import DvtAttributeUtils from './ojdvt-base.js';
+import './ojcomponentcore.js';
import $ from 'jquery';
-import * as ConverterUtils from 'ojs/ojconverterutils-i18n';
-import * as NumberConverter from 'ojs/ojconverter-number';
-import { error } from 'ojs/ojlogger';
-import { Chart, SparkChart } from 'ojs/ojchart-toolkit';
+import * as ConverterUtils from './ojconverterutils-i18n.js';
+import * as NumberConverter from './ojconverter-number.js';
+import { error } from './ojlogger.js';
+import { Chart, SparkChart } from './ojchart-toolkit.js';
/**
* Object type that defines an axis line.
diff --git a/dist/js/libs/oj/debug_esm/ojcheckboxset.js b/dist/js/libs/oj/debug_esm/ojcheckboxset.js
index 687cc5da..121004d2 100644
--- a/dist/js/libs/oj/debug_esm/ojcheckboxset.js
+++ b/dist/js/libs/oj/debug_esm/ojcheckboxset.js
@@ -5,15 +5,15 @@
* as shown at https://oss.oracle.com/licenses/upl/
* @ignore
*/
-import 'ojs/ojcomponentcore';
-import { EditableValueUtils } from 'ojs/ojeditablevalue';
-import 'ojs/ojradiocheckbox';
-import 'ojs/ojoption';
-import oj from 'ojs/ojcore-base';
+import './ojcomponentcore.js';
+import { EditableValueUtils } from './ojeditablevalue.js';
+import './ojradiocheckbox.js';
+import './ojoption.js';
+import oj from './ojcore-base.js';
import $ from 'jquery';
-import { warn } from 'ojs/ojlogger';
-import { getTranslatedString } from 'ojs/ojtranslation';
-import LabeledByUtils from 'ojs/ojlabelledbyutils';
+import { warn } from './ojlogger.js';
+import { getTranslatedString } from './ojtranslation.js';
+import LabeledByUtils from './ojlabelledbyutils.js';
(function () {
var __oj_checkboxset_metadata =
diff --git a/dist/js/libs/oj/debug_esm/ojchildmutationobserver.js b/dist/js/libs/oj/debug_esm/ojchildmutationobserver.js
index 49895832..b1c7b9f2 100644
--- a/dist/js/libs/oj/debug_esm/ojchildmutationobserver.js
+++ b/dist/js/libs/oj/debug_esm/ojchildmutationobserver.js
@@ -5,9 +5,9 @@
* as shown at https://oss.oracle.com/licenses/upl/
* @ignore
*/
-import 'ojs/ojcustomelement';
-import { CustomElementUtils, ElementUtils } from 'ojs/ojcustomelement-utils';
-import { isElementRegistered } from 'ojs/ojcustomelement-registry';
+import './ojcustomelement.js';
+import { CustomElementUtils, ElementUtils } from './ojcustomelement-utils.js';
+import { isElementRegistered } from './ojcustomelement-registry.js';
/**
* Child mutation observer.
diff --git a/dist/js/libs/oj/debug_esm/ojcollapsible.js b/dist/js/libs/oj/debug_esm/ojcollapsible.js
index 2b174318..6c9c06dd 100644
--- a/dist/js/libs/oj/debug_esm/ojcollapsible.js
+++ b/dist/js/libs/oj/debug_esm/ojcollapsible.js
@@ -5,14 +5,14 @@
* as shown at https://oss.oracle.com/licenses/upl/
* @ignore
*/
-import oj from 'ojs/ojcore-base';
+import oj from './ojcore-base.js';
import $ from 'jquery';
-import { subtreeShown, subtreeHidden } from 'ojs/ojcomponentcore';
-import Context from 'ojs/ojcontext';
-import { unwrap, isValidIdentifier } from 'ojs/ojdomutils';
-import 'ojs/ojcustomelement';
-import 'ojs/ojanimation';
-import { CustomElementUtils } from 'ojs/ojcustomelement-utils';
+import { subtreeShown, subtreeHidden } from './ojcomponentcore.js';
+import Context from './ojcontext.js';
+import { unwrap, isValidIdentifier } from './ojdomutils.js';
+import './ojcustomelement.js';
+import './ojanimation.js';
+import { CustomElementUtils } from './ojcustomelement-utils.js';
var __oj_collapsible_metadata =
{
diff --git a/dist/js/libs/oj/debug_esm/ojcollectiondatagriddatasource.js b/dist/js/libs/oj/debug_esm/ojcollectiondatagriddatasource.js
index bd5fe78b..b7b88369 100644
--- a/dist/js/libs/oj/debug_esm/ojcollectiondatagriddatasource.js
+++ b/dist/js/libs/oj/debug_esm/ojcollectiondatagriddatasource.js
@@ -5,9 +5,9 @@
* as shown at https://oss.oracle.com/licenses/upl/
* @ignore
*/
-import oj from 'ojs/ojcore-base';
-import 'ojs/ojdatasource-common';
-import { error } from 'ojs/ojlogger';
+import oj from './ojcore-base.js';
+import './ojdatasource-common.js';
+import { error } from './ojlogger.js';
import 'jquery';
/**
diff --git a/dist/js/libs/oj/debug_esm/ojcollectiondataprovider.js b/dist/js/libs/oj/debug_esm/ojcollectiondataprovider.js
index 9de753f4..6133356d 100644
--- a/dist/js/libs/oj/debug_esm/ojcollectiondataprovider.js
+++ b/dist/js/libs/oj/debug_esm/ojcollectiondataprovider.js
@@ -5,10 +5,10 @@
* as shown at https://oss.oracle.com/licenses/upl/
* @ignore
*/
-import oj from 'ojs/ojcore-base';
-import { FilterUtils } from 'ojs/ojdataprovider';
-import { CollectionTableDataSource } from 'ojs/ojcollectiontabledatasource';
-import 'ojs/ojdataprovideradapter';
+import oj from './ojcore-base.js';
+import { FilterUtils } from './ojdataprovider.js';
+import { CollectionTableDataSource } from './ojcollectiontabledatasource.js';
+import './ojdataprovideradapter.js';
/**
* @preserve Copyright 2013 jQuery Foundation and other contributors
diff --git a/dist/js/libs/oj/debug_esm/ojcollectiontabledatasource.js b/dist/js/libs/oj/debug_esm/ojcollectiontabledatasource.js
index 9a922ff4..26fb4ae5 100644
--- a/dist/js/libs/oj/debug_esm/ojcollectiontabledatasource.js
+++ b/dist/js/libs/oj/debug_esm/ojcollectiontabledatasource.js
@@ -5,8 +5,8 @@
* as shown at https://oss.oracle.com/licenses/upl/
* @ignore
*/
-import { Collection, Events, Model } from 'ojs/ojmodel';
-import 'ojs/ojdatasource-common';
+import { Collection, Events, Model } from './ojmodel.js';
+import './ojdatasource-common.js';
import $ from 'jquery';
/**
diff --git a/dist/js/libs/oj/debug_esm/ojcollectiontreedatasource.js b/dist/js/libs/oj/debug_esm/ojcollectiontreedatasource.js
index c6faf856..6f0ce87b 100644
--- a/dist/js/libs/oj/debug_esm/ojcollectiontreedatasource.js
+++ b/dist/js/libs/oj/debug_esm/ojcollectiontreedatasource.js
@@ -5,9 +5,9 @@
* as shown at https://oss.oracle.com/licenses/upl/
* @ignore
*/
-import oj from 'ojs/ojcore-base';
-import 'ojs/ojdatasource-common';
-import { Collection, Model, Events } from 'ojs/ojmodel';
+import oj from './ojcore-base.js';
+import './ojdatasource-common.js';
+import { Collection, Model, Events } from './ojmodel.js';
/**
* A CollectionNodeSet represents a collection of nodes. The CollectionNodeSet is an object returned by the success callback
diff --git a/dist/js/libs/oj/debug_esm/ojcolor.js b/dist/js/libs/oj/debug_esm/ojcolor.js
index 78ceb10a..0c3b2a5c 100644
--- a/dist/js/libs/oj/debug_esm/ojcolor.js
+++ b/dist/js/libs/oj/debug_esm/ojcolor.js
@@ -5,7 +5,7 @@
* as shown at https://oss.oracle.com/licenses/upl/
* @ignore
*/
-import oj from 'ojs/ojcore-base';
+import oj from './ojcore-base.js';
var trimLeft = /^\s+/;
var trimRight = /\s+$/;
diff --git a/dist/js/libs/oj/debug_esm/ojcolorpalette.js b/dist/js/libs/oj/debug_esm/ojcolorpalette.js
index 02ffb211..58fab432 100644
--- a/dist/js/libs/oj/debug_esm/ojcolorpalette.js
+++ b/dist/js/libs/oj/debug_esm/ojcolorpalette.js
@@ -5,18 +5,18 @@
* as shown at https://oss.oracle.com/licenses/upl/
* @ignore
*/
-import 'ojs/ojcomponentcore';
-import 'ojs/ojarraytabledatasource';
-import 'ojs/ojlistview';
-import 'ojs/ojeditablevalue';
-import oj from 'ojs/ojcore-base';
-import oj$1 from 'ojs/ojcore';
+import './ojcomponentcore.js';
+import './ojarraytabledatasource.js';
+import './ojlistview.js';
+import './ojeditablevalue.js';
+import oj from './ojcore-base.js';
+import oj$1 from './ojcore.js';
import $ from 'jquery';
-import Color from 'ojs/ojcolor';
-import ColorConverter from 'ojs/ojconverter-color';
-import { error, warn } from 'ojs/ojlogger';
-import Context from 'ojs/ojcontext';
-import LabeledByUtils from 'ojs/ojlabelledbyutils';
+import Color from './ojcolor.js';
+import ColorConverter from './ojconverter-color.js';
+import { error, warn } from './ojlogger.js';
+import Context from './ojcontext.js';
+import LabeledByUtils from './ojlabelledbyutils.js';
(function () {
var __oj_color_palette_metadata =
diff --git a/dist/js/libs/oj/debug_esm/ojcolorspectrum.js b/dist/js/libs/oj/debug_esm/ojcolorspectrum.js
index 1355c0c8..1e2d717e 100644
--- a/dist/js/libs/oj/debug_esm/ojcolorspectrum.js
+++ b/dist/js/libs/oj/debug_esm/ojcolorspectrum.js
@@ -5,18 +5,18 @@
* as shown at https://oss.oracle.com/licenses/upl/
* @ignore
*/
-import 'ojs/ojcore';
-import 'ojs/ojcomponentcore';
-import 'ojs/ojslider';
+import './ojcore.js';
+import './ojcomponentcore.js';
+import './ojslider.js';
import 'jqueryui-amd/widgets/draggable';
-import 'ojs/ojtouchproxy';
-import 'ojs/ojeditablevalue';
-import oj from 'ojs/ojcore-base';
+import './ojtouchproxy.js';
+import './ojeditablevalue.js';
+import oj from './ojcore-base.js';
import $ from 'jquery';
-import Color from 'ojs/ojcolor';
-import { isTouchSupported } from 'ojs/ojdomutils';
-import { warn, error } from 'ojs/ojlogger';
-import LabeledByUtils from 'ojs/ojlabelledbyutils';
+import Color from './ojcolor.js';
+import { isTouchSupported } from './ojdomutils.js';
+import { warn, error } from './ojlogger.js';
+import LabeledByUtils from './ojlabelledbyutils.js';
(function () {
// ojColorSpectrum class names
diff --git a/dist/js/libs/oj/debug_esm/ojcomponentcore.js b/dist/js/libs/oj/debug_esm/ojcomponentcore.js
index 715aec26..d88e569a 100644
--- a/dist/js/libs/oj/debug_esm/ojcomponentcore.js
+++ b/dist/js/libs/oj/debug_esm/ojcomponentcore.js
@@ -10,20 +10,20 @@ import 'jqueryui-amd/unique-id';
import 'jqueryui-amd/keycode';
import 'jqueryui-amd/focusable';
import 'jqueryui-amd/tabbable';
-import oj from 'ojs/ojcore';
+import oj from './ojcore.js';
import $ from 'jquery';
-import Message from 'ojs/ojmessaging';
-import { info, error } from 'ojs/ojlogger';
-import { getDefaultValue, getPropertyMetadata, getFlattenedAttributes } from 'ojs/ojmetadatautils';
-import oj$1 from 'ojs/ojcore-base';
-import { fixResizeListeners, dispatchEvent, recentTouchEnd, isTouchSupported, makeFocusable, getReadingDirection } from 'ojs/ojdomutils';
-import 'ojs/ojcustomelement';
-import { CustomElementUtils, ElementUtils, transformPreactValue, addPrivatePropGetterSetters, ElementState, AttributeUtils, JetElementError } from 'ojs/ojcustomelement-utils';
-import { isElementRegistered, getElementProperties, registerElement } from 'ojs/ojcustomelement-registry';
-import { DefaultsUtils } from 'ojs/ojdefaultsutils';
-import { applyParameters, getComponentTranslations } from 'ojs/ojtranslation';
-import 'ojs/ojfocusutils';
-import { startDetectContextMenuGesture, stopDetectContextMenuGesture } from 'ojs/ojgestureutils';
+import Message from './ojmessaging.js';
+import { info, error } from './ojlogger.js';
+import { getDefaultValue, getPropertyMetadata, getFlattenedAttributes } from './ojmetadatautils.js';
+import oj$1 from './ojcore-base.js';
+import { fixResizeListeners, dispatchEvent, recentTouchEnd, isTouchSupported, makeFocusable, getReadingDirection } from './ojdomutils.js';
+import './ojcustomelement.js';
+import { CustomElementUtils, ElementUtils, transformPreactValue, addPrivatePropGetterSetters, ElementState, AttributeUtils, JetElementError } from './ojcustomelement-utils.js';
+import { isElementRegistered, getElementProperties, registerElement } from './ojcustomelement-registry.js';
+import { DefaultsUtils } from './ojdefaultsutils.js';
+import { applyParameters, getComponentTranslations } from './ojtranslation.js';
+import './ojfocusutils.js';
+import { startDetectContextMenuGesture, stopDetectContextMenuGesture } from './ojgestureutils.js';
/**
* This picks a strategy for where to put each piece of information
diff --git a/dist/js/libs/oj/debug_esm/ojcomposite-knockout.js b/dist/js/libs/oj/debug_esm/ojcomposite-knockout.js
index 1c2e6cf6..6879c3fa 100644
--- a/dist/js/libs/oj/debug_esm/ojcomposite-knockout.js
+++ b/dist/js/libs/oj/debug_esm/ojcomposite-knockout.js
@@ -5,13 +5,13 @@
* as shown at https://oss.oracle.com/licenses/upl/
* @ignore
*/
-import oj from 'ojs/ojcore-base';
+import oj from './ojcore-base.js';
import { virtualElements, applyBindingsToDescendants, contextFor, observable, ignoreDependencies, applyBindings, cleanNode, bindingHandlers, utils, computed } from 'knockout';
-import 'ojs/ojcustomelement';
-import { CustomElementUtils, AttributeUtils } from 'ojs/ojcustomelement-utils';
-import BindingProviderImpl from 'ojs/ojkoshared';
-import { warn, error } from 'ojs/ojlogger';
-import TemplateEngine from 'ojs/ojtemplateengine-ko';
+import './ojcustomelement.js';
+import { CustomElementUtils, AttributeUtils } from './ojcustomelement-utils.js';
+import BindingProviderImpl from './ojkoshared.js';
+import { warn, error } from './ojlogger.js';
+import TemplateEngine from './ojtemplateengine-ko.js';
/**
* @ignore
diff --git a/dist/js/libs/oj/debug_esm/ojcomposite.js b/dist/js/libs/oj/debug_esm/ojcomposite.js
index 2cf04299..f2227801 100644
--- a/dist/js/libs/oj/debug_esm/ojcomposite.js
+++ b/dist/js/libs/oj/debug_esm/ojcomposite.js
@@ -5,14 +5,14 @@
* as shown at https://oss.oracle.com/licenses/upl/
* @ignore
*/
-import oj from 'ojs/ojcore-base';
-import { stringToNodeArray } from 'ojs/ojhtmlutils';
-import { info, warn } from 'ojs/ojlogger';
-import { getDefaultValue } from 'ojs/ojmetadatautils';
-import 'ojs/ojcomposite-knockout';
-import 'ojs/ojcustomelement';
-import { LifecycleElementState, CustomElementUtils, ElementUtils, transformPreactValue, addPrivatePropGetterSetters, JetElementError, CHILD_BINDING_PROVIDER } from 'ojs/ojcustomelement-utils';
-import { getElementDescriptor, getElementRegistration, registerElement, isElementRegistered, isComposite } from 'ojs/ojcustomelement-registry';
+import oj from './ojcore-base.js';
+import { stringToNodeArray } from './ojhtmlutils.js';
+import { info, warn } from './ojlogger.js';
+import { getDefaultValue } from './ojmetadatautils.js';
+import './ojcomposite-knockout.js';
+import './ojcustomelement.js';
+import { LifecycleElementState, CustomElementUtils, ElementUtils, transformPreactValue, addPrivatePropGetterSetters, JetElementError, CHILD_BINDING_PROVIDER } from './ojcustomelement-utils.js';
+import { getElementDescriptor, getElementRegistration, registerElement, isElementRegistered, isComposite } from './ojcustomelement-registry.js';
const CompositeInternal = {};
diff --git a/dist/js/libs/oj/debug_esm/ojconfig.js b/dist/js/libs/oj/debug_esm/ojconfig.js
index 6cea7cf1..39c58d91 100644
--- a/dist/js/libs/oj/debug_esm/ojconfig.js
+++ b/dist/js/libs/oj/debug_esm/ojconfig.js
@@ -5,9 +5,9 @@
* as shown at https://oss.oracle.com/licenses/upl/
* @ignore
*/
-import oj from 'ojs/ojcore-base';
-import ojt from 'ojL10n!ojtranslations/nls/ojtranslations';
-import { CustomElementUtils } from 'ojs/ojcustomelement-utils';
+import oj from './ojcore-base.js';
+import { loadMergedAmdBundle } from './ojamdloader.js';
+import { CustomElementUtils } from './ojcustomelement-utils.js';
/**
* @namespace oj.Config
@@ -23,7 +23,10 @@ const Config = {};
const TEMPLATE_ENGINE_KO = Symbol();
const PREACT_TEMPLATE_PROMISE = Symbol();
-let trans = ojt;
+let trans = {
+ _ojLocale_: 'en',
+ ...(await loadMergedAmdBundle(new URL('../resources/nls/ojtranslations.js', import.meta.url)))
+};
let deploymentMode = 'production';
/**
@@ -92,11 +95,13 @@ Config.getLocale = function () {
* @memberof oj.Config
*/
Config.setLocale = function (locale, callback) {
- var prefix = 'ojL10n!ojtranslations/nls/';
- var translationBundle = prefix + locale + '/ojtranslations';
+ var translationLocale = locale === 'root' ? 'root' : locale;
/* ojWebpackError: 'Config.setLocale() is not supported when the ojs/ojcore module has been bundled by Webpack' */
- const translationPromise = import(translationBundle).then((translations) => {
- trans = translations;
+ const translationPromise = loadMergedAmdBundle(
+ new URL('../resources/nls/ojtranslations.js', import.meta.url),
+ new URL(`../resources/nls/${translationLocale}/ojtranslations.js`, import.meta.url)
+ ).then((translations) => {
+ trans = { _ojLocale_: translationLocale, ...translations };
});
var promises = [translationPromise];
@@ -108,22 +113,21 @@ Config.setLocale = function (locale, callback) {
// translation bundle, this code will do that without
// incurring the download hit of the ojs/ojlocaledata module.
if (oj.LocaleData) {
- var localeBundle = prefix + locale + '/localeElements';
- const localePromise = import(localeBundle).then((localeElements) => {
- if (localeElements) {
- oj.LocaleData.__updateBundle(Object.assign({}, localeElements.default));
- }
+ const localePromise = loadMergedAmdBundle(
+ new URL('../resources/nls/localeElements.js', import.meta.url),
+ new URL(`../resources/nls/${translationLocale}/localeElements.js`, import.meta.url)
+ ).then((localeElements) => {
+ oj.LocaleData.__updateBundle(Object.assign({}, localeElements));
});
promises.push(localePromise);
if (oj.TimezoneData) {
- var tzBundlesPromises = oj.TimezoneData.__getBundleNames().map((bundleName) =>
- import(`${prefix}${locale}${bundleName}`)
- );
- promises.push(
- Promise.all(tzBundlesPromises).then((timezoneBundles) => {
- timezoneBundles.forEach(oj.TimezoneData.__mergeIntoLocaleElements);
- })
- );
+ const timezonePromise = loadMergedAmdBundle(
+ new URL('../resources/nls/timezoneData.js', import.meta.url),
+ new URL(`../resources/nls/${translationLocale}/timezoneData.js`, import.meta.url)
+ ).then((timezoneData) => {
+ oj.TimezoneData.__mergeIntoLocaleElements(timezoneData);
+ });
+ promises.push(timezonePromise);
}
}
Promise.all(promises).then(() => {
@@ -277,11 +281,11 @@ Config._getEngineByType = function (templateProp) {
let promise;
switch (templateProp) {
case PREACT_TEMPLATE_PROMISE:
- promise = import('ojs/ojtemplateengine-preact');
+ promise = import('./ojtemplateengine-preact.js');
break;
case TEMPLATE_ENGINE_KO:
default:
- promise = import('ojs/ojtemplateengine-ko');
+ promise = import('./ojtemplateengine-ko.js');
}
Config[templateProp] = promise.then((engine) => engine.default);
}
diff --git a/dist/js/libs/oj/debug_esm/ojcontext.js b/dist/js/libs/oj/debug_esm/ojcontext.js
index 389e633c..525456dc 100644
--- a/dist/js/libs/oj/debug_esm/ojcontext.js
+++ b/dist/js/libs/oj/debug_esm/ojcontext.js
@@ -5,9 +5,9 @@
* as shown at https://oss.oracle.com/licenses/upl/
* @ignore
*/
-import oj from 'ojs/ojcore-base';
-import { option, LEVEL_LOG, log, info, error } from 'ojs/ojlogger';
-import { getMetadata } from 'ojs/ojcustomelement-registry';
+import oj from './ojcore-base.js';
+import { option, LEVEL_LOG, log, info, error } from './ojlogger.js';
+import { getMetadata } from './ojcustomelement-registry.js';
/**
* Internally used by the {@link oj.BusyContext} to track a components state
diff --git a/dist/js/libs/oj/debug_esm/ojconverter-color.js b/dist/js/libs/oj/debug_esm/ojconverter-color.js
index 2725f108..6c13f9b8 100644
--- a/dist/js/libs/oj/debug_esm/ojconverter-color.js
+++ b/dist/js/libs/oj/debug_esm/ojconverter-color.js
@@ -5,10 +5,10 @@
* as shown at https://oss.oracle.com/licenses/upl/
* @ignore
*/
-import oj from 'ojs/ojcore-base';
-import { getTranslatedString } from 'ojs/ojtranslation';
-import Converter from 'ojs/ojconverter';
-import { ConverterError } from 'ojs/ojvalidation-error';
+import oj from './ojcore-base.js';
+import { getTranslatedString } from './ojtranslation.js';
+import Converter from './ojconverter.js';
+import { ConverterError } from './ojvalidation-error.js';
/**
* ColorConverter Contract.
diff --git a/dist/js/libs/oj/debug_esm/ojconverter-datetime.js b/dist/js/libs/oj/debug_esm/ojconverter-datetime.js
index a2c0ac19..47aad503 100644
--- a/dist/js/libs/oj/debug_esm/ojconverter-datetime.js
+++ b/dist/js/libs/oj/debug_esm/ojconverter-datetime.js
@@ -5,15 +5,15 @@
* as shown at https://oss.oracle.com/licenses/upl/
* @ignore
*/
-import { OraI18nUtils, IntlConverterUtils as IntlConverterUtils$1 } from 'ojs/ojconverterutils-i18n';
-import Converter from 'ojs/ojconverter';
-import { __getBundle } from 'ojs/ojlocaledata';
-import { NativeParserImpl, NativeDateTimePatternConverter, NativeDateTimeConverter } from 'ojs/ojconverter-nativedatetime';
-import { getLocale } from 'ojs/ojconfig';
-import oj$1 from 'ojs/ojcore-base';
-import { getMergedDateTimePreferencesWithOptions } from 'ojs/ojconverter-preferences';
-import { AvailableTimeZones } from 'ojs/ojavailabletimezones';
-import { _processConverterError } from 'ojs/ojconverter-datetimeerror';
+import { OraI18nUtils, IntlConverterUtils as IntlConverterUtils$1 } from './ojconverterutils-i18n.js';
+import Converter from './ojconverter.js';
+import { __getBundle } from './ojlocaledata.js';
+import { NativeParserImpl, NativeDateTimePatternConverter, NativeDateTimeConverter } from './ojconverter-nativedatetime.js';
+import { getLocale } from './ojconfig.js';
+import oj$1 from './ojcore-base.js';
+import { getMergedDateTimePreferencesWithOptions } from './ojconverter-preferences.js';
+import { AvailableTimeZones } from './ojavailabletimezones.js';
+import { _processConverterError } from './ojconverter-datetimeerror.js';
/**
* DateTimeConverter Contract.
@@ -41,7 +41,7 @@ const DateTimeConverter = function (options) {
};
// Subclass from oj.Object
-oj.Object.createSubclass(DateTimeConverter, Converter, 'oj.DateTimeConverter');
+oj$1.Object.createSubclass(DateTimeConverter, Converter, 'oj.DateTimeConverter');
/**
* Initializes the date time converter instance with the set options.
@@ -86,7 +86,7 @@ DateTimeConverter.prototype.format = function (value) {
* @ojdeprecated {since: '11.0.0', description: 'Use !!(resolvedOptions()["hour"] && !resolvedOptions()["hour12"])'}
*/
DateTimeConverter.prototype.isHourInDaySet = function () {
- oj.Assert.failedInAbstractFunction();
+ oj$1.Assert.failedInAbstractFunction();
};
/**
@@ -101,7 +101,7 @@ DateTimeConverter.prototype.isHourInDaySet = function () {
* @ojdeprecated {since: '11.0.0', description: 'Use !!(resolvedOptions()["hour"] && resolvedOptions()["hour12"])'}
*/
DateTimeConverter.prototype.isHourInAMPMSet = function () {
- oj.Assert.failedInAbstractFunction();
+ oj$1.Assert.failedInAbstractFunction();
};
/**
@@ -116,7 +116,7 @@ DateTimeConverter.prototype.isHourInAMPMSet = function () {
* @ojdeprecated {since: '11.0.0', description: 'Use resolvedOptions()["minute"] !== undefined'}
*/
DateTimeConverter.prototype.isMinuteSet = function () {
- oj.Assert.failedInAbstractFunction();
+ oj$1.Assert.failedInAbstractFunction();
};
/**
@@ -131,7 +131,7 @@ DateTimeConverter.prototype.isMinuteSet = function () {
* @ojdeprecated {since: '11.0.0', description: 'Use resolvedOptions()["second"] !== undefined'}
*/
DateTimeConverter.prototype.isSecondSet = function () {
- oj.Assert.failedInAbstractFunction();
+ oj$1.Assert.failedInAbstractFunction();
};
/**
@@ -146,7 +146,7 @@ DateTimeConverter.prototype.isSecondSet = function () {
* @ojdeprecated {since: '11.0.0', description: 'Use resolvedOptions()["millisecond"] !== undefined'}
*/
DateTimeConverter.prototype.isMilliSecondSet = function () {
- oj.Assert.failedInAbstractFunction();
+ oj$1.Assert.failedInAbstractFunction();
};
/**
@@ -161,7 +161,7 @@ DateTimeConverter.prototype.isMilliSecondSet = function () {
* @ojdeprecated {since: '11.0.0', description: 'Use resolvedOptions()["year"] !== undefined'}
*/
DateTimeConverter.prototype.isYearSet = function () {
- oj.Assert.failedInAbstractFunction();
+ oj$1.Assert.failedInAbstractFunction();
};
/**
@@ -176,7 +176,7 @@ DateTimeConverter.prototype.isYearSet = function () {
* @ojdeprecated {since: '11.0.0', description: 'Use resolvedOptions()["month"] !== undefined'}
*/
DateTimeConverter.prototype.isMonthSet = function () {
- oj.Assert.failedInAbstractFunction();
+ oj$1.Assert.failedInAbstractFunction();
};
/**
@@ -191,7 +191,7 @@ DateTimeConverter.prototype.isMonthSet = function () {
* @ojdeprecated {since: '11.0.0', description: 'Use resolvedOptions()["day"] !== undefined'}
*/
DateTimeConverter.prototype.isDaySet = function () {
- oj.Assert.failedInAbstractFunction();
+ oj$1.Assert.failedInAbstractFunction();
};
/**
@@ -206,7 +206,7 @@ DateTimeConverter.prototype.isDaySet = function () {
* @ojdeprecated {since: '11.0.0', description: 'Use resolvedOptions()["weekday"] !== undefined'}
*/
DateTimeConverter.prototype.isDayNameSet = function () {
- oj.Assert.failedInAbstractFunction();
+ oj$1.Assert.failedInAbstractFunction();
};
/**
@@ -225,7 +225,7 @@ DateTimeConverter.prototype.isDayNameSet = function () {
*/
// eslint-disable-next-line no-unused-vars
DateTimeConverter.prototype.calculateWeek = function (value) {
- oj.Assert.failedInAbstractFunction();
+ oj$1.Assert.failedInAbstractFunction();
};
/**
diff --git a/dist/js/libs/oj/debug_esm/ojconverter-datetimeerror.js b/dist/js/libs/oj/debug_esm/ojconverter-datetimeerror.js
index 8ec190dd..75739132 100644
--- a/dist/js/libs/oj/debug_esm/ojconverter-datetimeerror.js
+++ b/dist/js/libs/oj/debug_esm/ojconverter-datetimeerror.js
@@ -5,7 +5,7 @@
* as shown at https://oss.oracle.com/licenses/upl/
* @ignore
*/
-import { getTranslatedString } from 'ojs/ojtranslation';
+import { getTranslatedString } from './ojtranslation.js';
const _processConverterError = (e, formatter, exampleType = 'date') => {
const cause = e.cause;
diff --git a/dist/js/libs/oj/debug_esm/ojconverter-localdate.js b/dist/js/libs/oj/debug_esm/ojconverter-localdate.js
index 82463dfd..3538062b 100644
--- a/dist/js/libs/oj/debug_esm/ojconverter-localdate.js
+++ b/dist/js/libs/oj/debug_esm/ojconverter-localdate.js
@@ -5,9 +5,9 @@
* as shown at https://oss.oracle.com/licenses/upl/
* @ignore
*/
-import { NativeDateTimePatternConverter, NativeDateTimeConverter } from 'ojs/ojconverter-nativedatetime';
-import { getMergedDateTimePreferencesWithOptions } from 'ojs/ojconverter-preferences';
-import { _processConverterError } from 'ojs/ojconverter-datetimeerror';
+import { NativeDateTimePatternConverter, NativeDateTimeConverter } from './ojconverter-nativedatetime.js';
+import { getMergedDateTimePreferencesWithOptions } from './ojconverter-preferences.js';
+import { _processConverterError } from './ojconverter-datetimeerror.js';
import { DateTimeUtils } from '@oracle/oraclejet-preact/UNSAFE_IntlDateTime';
// A date-only converter that merges in user preferences, if any.
diff --git a/dist/js/libs/oj/debug_esm/ojconverter-nativedatetime.js b/dist/js/libs/oj/debug_esm/ojconverter-nativedatetime.js
index ed5b63dd..04b5dbf3 100644
--- a/dist/js/libs/oj/debug_esm/ojconverter-nativedatetime.js
+++ b/dist/js/libs/oj/debug_esm/ojconverter-nativedatetime.js
@@ -5,10 +5,10 @@
* as shown at https://oss.oracle.com/licenses/upl/
* @ignore
*/
-import { getLocale } from 'ojs/ojconfig';
+import { getLocale } from './ojconfig.js';
import { getFormatParse, normalizeIsoString, CalendarUtils, NativeParserImpl, DateTimeUtils, getISODateOffset, NativeDateTimeConstants } from '@oracle/oraclejet-preact/UNSAFE_IntlDateTime';
export { NativeParserImpl, getISODateOffset } from '@oracle/oraclejet-preact/UNSAFE_IntlDateTime';
-import { warn } from 'ojs/ojlogger';
+import { warn } from './ojlogger.js';
import { FormatParseError } from '@oracle/oraclejet-preact/UNSAFE_IntlFormatParse';
export { FormatParseError } from '@oracle/oraclejet-preact/UNSAFE_IntlFormatParse';
diff --git a/dist/js/libs/oj/debug_esm/ojconverter-nativenumber.js b/dist/js/libs/oj/debug_esm/ojconverter-nativenumber.js
index 6437688f..20a6e95a 100644
--- a/dist/js/libs/oj/debug_esm/ojconverter-nativenumber.js
+++ b/dist/js/libs/oj/debug_esm/ojconverter-nativenumber.js
@@ -5,8 +5,8 @@
* as shown at https://oss.oracle.com/licenses/upl/
* @ignore
*/
-import { getLocale } from 'ojs/ojconfig';
-import { getMergedNumberPreferencesWithOptions } from 'ojs/ojconverter-preferences';
+import { getLocale } from './ojconfig.js';
+import { getMergedNumberPreferencesWithOptions } from './ojconverter-preferences.js';
const _DECIMAL_SEP = '.';
const _MINUS = '-';
diff --git a/dist/js/libs/oj/debug_esm/ojconverter-number.js b/dist/js/libs/oj/debug_esm/ojconverter-number.js
index ffe351fd..de2ba503 100644
--- a/dist/js/libs/oj/debug_esm/ojconverter-number.js
+++ b/dist/js/libs/oj/debug_esm/ojconverter-number.js
@@ -5,15 +5,15 @@
* as shown at https://oss.oracle.com/licenses/upl/
* @ignore
*/
-import { info, error } from 'ojs/ojlogger';
-import { OraI18nUtils, IntlConverterUtils } from 'ojs/ojconverterutils-i18n';
-import { __getBundle } from 'ojs/ojlocaledata';
-import Converter from 'ojs/ojconverter';
-import { getTranslatedString } from 'ojs/ojtranslation';
-import { getLocale } from 'ojs/ojconfig';
-import oj$1 from 'ojs/ojcore-base';
-import { ConverterError } from 'ojs/ojvalidation-error';
-import { getMergedNumberPreferencesWithOptions } from 'ojs/ojconverter-preferences';
+import { info, error } from './ojlogger.js';
+import { OraI18nUtils, IntlConverterUtils } from './ojconverterutils-i18n.js';
+import { __getBundle } from './ojlocaledata.js';
+import Converter from './ojconverter.js';
+import { getTranslatedString } from './ojtranslation.js';
+import { getLocale } from './ojconfig.js';
+import oj$1 from './ojcore-base.js';
+import { ConverterError } from './ojvalidation-error.js';
+import { getMergedNumberPreferencesWithOptions } from './ojconverter-preferences.js';
/* xeslint-disable no-param-reassign */
/**
@@ -2421,7 +2421,7 @@ const NumberConverter = function () {
};
// Subclass from oj.Object
-oj.Object.createSubclass(NumberConverter, Converter, 'oj.NumberConverter');
+oj$1.Object.createSubclass(NumberConverter, Converter, 'oj.NumberConverter');
/**
* Initializes the number converter instance with the set options.
diff --git a/dist/js/libs/oj/debug_esm/ojconverter-preferences.js b/dist/js/libs/oj/debug_esm/ojconverter-preferences.js
index 59fc6378..c2d1acbc 100644
--- a/dist/js/libs/oj/debug_esm/ojconverter-preferences.js
+++ b/dist/js/libs/oj/debug_esm/ojconverter-preferences.js
@@ -5,8 +5,8 @@
* as shown at https://oss.oracle.com/licenses/upl/
* @ignore
*/
-import { error } from 'ojs/ojlogger';
-import { parseJSONFromFontFamily } from 'ojs/ojthemeutils';
+import { error } from './ojlogger.js';
+import { parseJSONFromFontFamily } from './ojthemeutils.js';
import { formatWithYearFormat as formatWithYearFormat$1 } from '@oracle/oraclejet-preact/UNSAFE_IntlDateTime';
/**
diff --git a/dist/js/libs/oj/debug_esm/ojconverter.js b/dist/js/libs/oj/debug_esm/ojconverter.js
index 88007a15..f2576be1 100644
--- a/dist/js/libs/oj/debug_esm/ojconverter.js
+++ b/dist/js/libs/oj/debug_esm/ojconverter.js
@@ -5,7 +5,7 @@
* as shown at https://oss.oracle.com/licenses/upl/
* @ignore
*/
-import oj from 'ojs/ojcore-base';
+import oj from './ojcore-base.js';
import $ from 'jquery';
/**
diff --git a/dist/js/libs/oj/debug_esm/ojconverterutils-i18n.js b/dist/js/libs/oj/debug_esm/ojconverterutils-i18n.js
index 896c9c6b..197fa2a5 100644
--- a/dist/js/libs/oj/debug_esm/ojconverterutils-i18n.js
+++ b/dist/js/libs/oj/debug_esm/ojconverterutils-i18n.js
@@ -5,12 +5,12 @@
* as shown at https://oss.oracle.com/licenses/upl/
* @ignore
*/
-import oj from 'ojs/ojcore-base';
-import { getTranslatedString } from 'ojs/ojtranslation';
+import oj from './ojcore-base.js';
+import { getTranslatedString } from './ojtranslation.js';
import $ from 'jquery';
import { DateTimeUtils } from '@oracle/oraclejet-preact/UNSAFE_IntlDateTime';
-import ConverterUtils from 'ojs/ojconverterutils';
-import { ConverterError } from 'ojs/ojvalidation-error';
+import ConverterUtils from './ojconverterutils.js';
+import { ConverterError } from './ojvalidation-error.js';
/*
DESCRIPTION
diff --git a/dist/js/libs/oj/debug_esm/ojconverterutils.js b/dist/js/libs/oj/debug_esm/ojconverterutils.js
index e99f7962..c5642f75 100644
--- a/dist/js/libs/oj/debug_esm/ojconverterutils.js
+++ b/dist/js/libs/oj/debug_esm/ojconverterutils.js
@@ -5,8 +5,8 @@
* as shown at https://oss.oracle.com/licenses/upl/
* @ignore
*/
-import oj from 'ojs/ojcore-base';
-import { error } from 'ojs/ojlogger';
+import oj from './ojcore-base.js';
+import { error } from './ojlogger.js';
class ConverterUtils {
}
diff --git a/dist/js/libs/oj/debug_esm/ojconveyorbelt.js b/dist/js/libs/oj/debug_esm/ojconveyorbelt.js
index 420ca941..f9f4ad9f 100644
--- a/dist/js/libs/oj/debug_esm/ojconveyorbelt.js
+++ b/dist/js/libs/oj/debug_esm/ojconveyorbelt.js
@@ -5,14 +5,14 @@
* as shown at https://oss.oracle.com/licenses/upl/
* @ignore
*/
-import oj from 'ojs/ojcore-base';
+import oj from './ojcore-base.js';
import $ from 'jquery';
-import { getCachedCSSVarValues } from 'ojs/ojthemeutils';
-import { subtreeDetached, subtreeAttached, setDefaultOptions, createDynamicPropertyGetter } from 'ojs/ojcomponentcore';
-import { warn } from 'ojs/ojlogger';
-import Context from 'ojs/ojcontext';
-import { getDeviceRenderMode, getAutomationMode } from 'ojs/ojconfig';
-import { setScrollLeft, calculateScrollLeft, addResizeListener, removeResizeListener } from 'ojs/ojdomutils';
+import { getCachedCSSVarValues } from './ojthemeutils.js';
+import { subtreeDetached, subtreeAttached, setDefaultOptions, createDynamicPropertyGetter } from './ojcomponentcore.js';
+import { warn } from './ojlogger.js';
+import Context from './ojcontext.js';
+import { getDeviceRenderMode, getAutomationMode } from './ojconfig.js';
+import { setScrollLeft, calculateScrollLeft, addResizeListener, removeResizeListener } from './ojdomutils.js';
import 'touchr';
var __oj_conveyor_belt_metadata =
diff --git a/dist/js/libs/oj/debug_esm/ojcore-base.js b/dist/js/libs/oj/debug_esm/ojcore-base.js
index d19d76ef..e727b375 100644
--- a/dist/js/libs/oj/debug_esm/ojcore-base.js
+++ b/dist/js/libs/oj/debug_esm/ojcore-base.js
@@ -5,8 +5,8 @@
* as shown at https://oss.oracle.com/licenses/upl/
* @ignore
*/
-import { error, log, warn, info } from 'ojs/ojlogger';
-import 'ojs/ojwebdrivertest-proxy';
+import { error, log, warn, info } from './ojlogger.js';
+import './ojwebdrivertest-proxy.js';
/**
* Defines the oj namespace
diff --git a/dist/js/libs/oj/debug_esm/ojcore.js b/dist/js/libs/oj/debug_esm/ojcore.js
index 0f94fae1..3b9eac2d 100644
--- a/dist/js/libs/oj/debug_esm/ojcore.js
+++ b/dist/js/libs/oj/debug_esm/ojcore.js
@@ -5,14 +5,14 @@
* as shown at https://oss.oracle.com/licenses/upl/
* @ignore
*/
-import oj from 'ojs/ojcore-base';
-import * as Logger from 'ojs/ojlogger';
-import Context from 'ojs/ojcontext';
-import * as Config from 'ojs/ojconfig';
-import * as ResponsiveUtils from 'ojs/ojresponsiveutils';
-import * as ThemeUtils from 'ojs/ojthemeutils';
-import * as TimerUtils from 'ojs/ojtimerutils';
-import * as Translations from 'ojs/ojtranslation';
+import oj from './ojcore-base.js';
+import * as Logger from './ojlogger.js';
+import Context from './ojcontext.js';
+import * as Config from './ojconfig.js';
+import * as ResponsiveUtils from './ojresponsiveutils.js';
+import * as ThemeUtils from './ojthemeutils.js';
+import * as TimerUtils from './ojtimerutils.js';
+import * as Translations from './ojtranslation.js';
/**
* @ojoverviewdoc ModuleLoadingOverview - [5]JET Module Loading
@@ -36,10 +36,10 @@ import * as Translations from 'ojs/ojtranslation';
* //Loading a JET component in your Typescript code
*
* //To typecheck the element APIs, import as below.
- * import {ojAccordion} from "ojs/ojaccordion";
+ * import {ojAccordion} from './ojaccordion.js';
*
* //For the transpiled javascript to load the element's module, import as below
- * import "ojs/ojaccordion";
+ * import './ojaccordion.js';
*
One return value
* Some modules directly return a single object or constructor function. Applications would typically call functions on the returned
* object or instantiate new objects via the constructor function. For example, the 'ojs/ojcontext' module
@@ -61,7 +61,7 @@ import * as Translations from 'ojs/ojtranslation';
*
*
* //TypeScript example
- * import {ColorAttributeGroupHandler, ShapeAttributeGroupHandler} from "ojs/ojattributegrouphandler";
+ * import {ColorAttributeGroupHandler, ShapeAttributeGroupHandler} from './ojattributegrouphandler.js';
* let colorHandler = new ColorAttributeGroupHandler();
* let shapeHandler = new ShapeAttributeGroupHandler({'0-2 years': 'triangleDown',
* '3-5 years': 'circle',
@@ -80,7 +80,7 @@ import * as Translations from 'ojs/ojtranslation';
* };
*
* //Another example
- * import * as Logger from "ojs/ojlogger";
+ * import * as Logger from './ojlogger.js';
* Logger.log("Please enter a valid input");
*
*
diff --git a/dist/js/libs/oj/debug_esm/ojcorerouter.js b/dist/js/libs/oj/debug_esm/ojcorerouter.js
index 44b7942a..123a67a0 100644
--- a/dist/js/libs/oj/debug_esm/ojcorerouter.js
+++ b/dist/js/libs/oj/debug_esm/ojcorerouter.js
@@ -5,9 +5,9 @@
* as shown at https://oss.oracle.com/licenses/upl/
* @ignore
*/
-import { info } from 'ojs/ojlogger';
-import { BehaviorSubject } from 'ojs/ojobservable';
-import UrlPathAdapter from 'ojs/ojurlpathadapter';
+import { info } from './ojlogger.js';
+import { BehaviorSubject } from './ojobservable.js';
+import UrlPathAdapter from './ojurlpathadapter.js';
/**
* An interface describing the object used by {@link CoreRouter} to represent
diff --git a/dist/js/libs/oj/debug_esm/ojcspexpressionevaluator-internal.js b/dist/js/libs/oj/debug_esm/ojcspexpressionevaluator-internal.js
index 914704b8..0ec8404e 100644
--- a/dist/js/libs/oj/debug_esm/ojcspexpressionevaluator-internal.js
+++ b/dist/js/libs/oj/debug_esm/ojcspexpressionevaluator-internal.js
@@ -5,7 +5,7 @@
* as shown at https://oss.oracle.com/licenses/upl/
* @ignore
*/
-import { ExpParser, TEMPLATE_ELEMENT, TEMPLATE_LITERAL, NEW_EXP, ARROW_EXP, RETURN_STATEMENT, FUNCTION_EXP, OBJECT_EXP, getKeyValue, ARRAY_EXP, CONDITIONAL_EXP, LOGICAL_EXP, BINARY_EXP, UNARY_EXP, IDENTIFIER, CALL_EXP, MEMBER_EXP, LITERAL } from 'ojs/ojexpparser';
+import { ExpParser, TEMPLATE_ELEMENT, TEMPLATE_LITERAL, NEW_EXP, ARROW_EXP, RETURN_STATEMENT, FUNCTION_EXP, OBJECT_EXP, getKeyValue, ARRAY_EXP, CONDITIONAL_EXP, LOGICAL_EXP, BINARY_EXP, UNARY_EXP, IDENTIFIER, CALL_EXP, MEMBER_EXP, LITERAL } from './ojexpparser.js';
/**
* @license
diff --git a/dist/js/libs/oj/debug_esm/ojcspexpressionevaluator.js b/dist/js/libs/oj/debug_esm/ojcspexpressionevaluator.js
index 16f1ad1c..6adb410b 100644
--- a/dist/js/libs/oj/debug_esm/ojcspexpressionevaluator.js
+++ b/dist/js/libs/oj/debug_esm/ojcspexpressionevaluator.js
@@ -5,8 +5,8 @@
* as shown at https://oss.oracle.com/licenses/upl/
* @ignore
*/
-import { CspExpressionEvaluatorInternal } from 'ojs/ojcspexpressionevaluator-internal';
-import 'ojs/ojkoshared';
+import { CspExpressionEvaluatorInternal } from './ojcspexpressionevaluator-internal.js';
+import './ojkoshared.js';
/**
* @license
diff --git a/dist/js/libs/oj/debug_esm/ojcube.js b/dist/js/libs/oj/debug_esm/ojcube.js
index a88ea08e..14daa56b 100644
--- a/dist/js/libs/oj/debug_esm/ojcube.js
+++ b/dist/js/libs/oj/debug_esm/ojcube.js
@@ -5,9 +5,9 @@
* as shown at https://oss.oracle.com/licenses/upl/
* @ignore
*/
-import oj from 'ojs/ojcore-base';
+import oj from './ojcore-base.js';
import $ from 'jquery';
-import { DataSourceCommon } from 'ojs/ojdatasource-common';
+import { DataSourceCommon } from './ojdatasource-common.js';
/**
* @class CubeAggType
diff --git a/dist/js/libs/oj/debug_esm/ojcustomelement-utils.js b/dist/js/libs/oj/debug_esm/ojcustomelement-utils.js
index b4e0a46a..fa7a239d 100644
--- a/dist/js/libs/oj/debug_esm/ojcustomelement-utils.js
+++ b/dist/js/libs/oj/debug_esm/ojcustomelement-utils.js
@@ -5,11 +5,11 @@
* as shown at https://oss.oracle.com/licenses/upl/
* @ignore
*/
-import oj from 'ojs/ojcore-base';
-import { isElementRegistered, getElementRegistration, getElementDescriptor, getMetadata, getElementProperties } from 'ojs/ojcustomelement-registry';
-import Context from 'ojs/ojcontext';
-import { warn } from 'ojs/ojlogger';
-import { verifyThemeVersion } from 'ojs/ojthemeutils';
+import oj from './ojcore-base.js';
+import { isElementRegistered, getElementRegistration, getElementDescriptor, getMetadata, getElementProperties } from './ojcustomelement-registry.js';
+import Context from './ojcontext.js';
+import { warn } from './ojlogger.js';
+import { verifyThemeVersion } from './ojthemeutils.js';
const _SUPPORTED_TYPES_MAP = {};
/**
@@ -125,7 +125,7 @@ ElementUtils._RESERVED_TAGS = new Set([
ElementUtils._ELEMENT_NAME_REGEXP = /^[a-z][.0-9_a-z]*-[-.0-9_a-z]*$/;
/**
- * This list should be kept in sync with GlobalProps from "ojs/ojvcomponent"
+ * This list should be kept in sync with GlobalProps from './ojvcomponent.js'
*
* This list provides a map of global property to attribute names
* where the attribute name is used for both key and value if no property
diff --git a/dist/js/libs/oj/debug_esm/ojcustomelement.js b/dist/js/libs/oj/debug_esm/ojcustomelement.js
index e75fceb2..1a204034 100644
--- a/dist/js/libs/oj/debug_esm/ojcustomelement.js
+++ b/dist/js/libs/oj/debug_esm/ojcustomelement.js
@@ -5,13 +5,13 @@
* as shown at https://oss.oracle.com/licenses/upl/
* @ignore
*/
-import oj from 'ojs/ojcore';
-import { info, warn } from 'ojs/ojlogger';
-import { CustomElementUtils, AttributeUtils, transformPreactValue, ElementUtils, JetElementError } from 'ojs/ojcustomelement-utils';
-import { getElementProperties, getElementDescriptor } from 'ojs/ojcustomelement-registry';
-import { getPropertyMetadata, getFlattenedAttributes, checkEnumValues, getDefaultValue } from 'ojs/ojmetadatautils';
-import { whenDocumentReady } from 'ojs/ojbootstrap';
-import oj$1 from 'ojs/ojcore-base';
+import oj from './ojcore.js';
+import { info, warn } from './ojlogger.js';
+import { CustomElementUtils, AttributeUtils, transformPreactValue, ElementUtils, JetElementError } from './ojcustomelement-utils.js';
+import { getElementProperties, getElementDescriptor } from './ojcustomelement-registry.js';
+import { getPropertyMetadata, getFlattenedAttributes, checkEnumValues, getDefaultValue } from './ojmetadatautils.js';
+import { whenDocumentReady } from './ojbootstrap.js';
+import oj$1 from './ojcore-base.js';
/**
* Custom element bridge prototype.
diff --git a/dist/js/libs/oj/debug_esm/ojdatacollection-common.js b/dist/js/libs/oj/debug_esm/ojdatacollection-common.js
index 7f69caa7..da9ab4a8 100644
--- a/dist/js/libs/oj/debug_esm/ojdatacollection-common.js
+++ b/dist/js/libs/oj/debug_esm/ojdatacollection-common.js
@@ -5,11 +5,11 @@
* as shown at https://oss.oracle.com/licenses/upl/
* @ignore
*/
-import oj from 'ojs/ojcore-base';
-import { getNoJQFocusHandlers as getNoJQFocusHandlers$1 } from 'ojs/ojdomutils';
-import { error, warn } from 'ojs/ojlogger';
-import { getFocusableElementsInNode as getFocusableElementsInNode$1, checkVisibility, disableElement as disableElement$1, disableAllFocusableElements as disableAllFocusableElements$1, enableAllFocusableElements as enableAllFocusableElements$1, getActionableElementsInNode as getActionableElementsInNode$1, getLogicalChildPopup as getLogicalChildPopup$1 } from 'ojs/ojkeyboardfocus-utils';
-import { DataProviderUtils } from 'ojs/ojdataprovider';
+import oj from './ojcore-base.js';
+import { getNoJQFocusHandlers as getNoJQFocusHandlers$1 } from './ojdomutils.js';
+import { error, warn } from './ojlogger.js';
+import { getFocusableElementsInNode as getFocusableElementsInNode$1, checkVisibility, disableElement as disableElement$1, disableAllFocusableElements as disableAllFocusableElements$1, enableAllFocusableElements as enableAllFocusableElements$1, getActionableElementsInNode as getActionableElementsInNode$1, getLogicalChildPopup as getLogicalChildPopup$1 } from './ojkeyboardfocus-utils.js';
+import { DataProviderUtils } from './ojdataprovider.js';
/**
* This class contains utility methods used by the data collection components (DataGrid, Listview, and Table).
diff --git a/dist/js/libs/oj/debug_esm/ojdatacollection-utils.js b/dist/js/libs/oj/debug_esm/ojdatacollection-utils.js
index 410f9f14..6800a1be 100644
--- a/dist/js/libs/oj/debug_esm/ojdatacollection-utils.js
+++ b/dist/js/libs/oj/debug_esm/ojdatacollection-utils.js
@@ -5,9 +5,9 @@
* as shown at https://oss.oracle.com/licenses/upl/
* @ignore
*/
-import oj from 'ojs/ojcore-base';
+import oj from './ojcore-base.js';
import $ from 'jquery';
-import { __GetWidgetConstructor } from 'ojs/ojcomponentcore';
+import { __GetWidgetConstructor } from './ojcomponentcore.js';
/**
* This class contains all utility methods used by the data grid collection model.
diff --git a/dist/js/libs/oj/debug_esm/ojdatagrid.js b/dist/js/libs/oj/debug_esm/ojdatagrid.js
index 5931c920..b4029880 100644
--- a/dist/js/libs/oj/debug_esm/ojdatagrid.js
+++ b/dist/js/libs/oj/debug_esm/ojdatagrid.js
@@ -6,27 +6,27 @@
* @ignore
*/
import 'touchr';
-import 'ojs/ojdatasource-common';
-import 'ojs/ojdatacollection-utils';
-import 'ojs/ojinputnumber';
-import 'ojs/ojmenu';
-import 'ojs/ojmenuselectmany';
-import 'ojs/ojdialog';
-import 'ojs/ojbutton';
+import './ojdatasource-common.js';
+import './ojdatacollection-utils.js';
+import './ojinputnumber.js';
+import './ojmenu.js';
+import './ojmenuselectmany.js';
+import './ojdialog.js';
+import './ojbutton.js';
import 'ojdnd';
-import oj from 'ojs/ojcore-base';
+import oj from './ojcore-base.js';
import { FormVariantContext } from '@oracle/oraclejet-preact/hooks/UNSAFE_useFormVariantContext';
-import { _OJ_CONTAINER_ATTR, subtreeAttached, __GetWidgetConstructor } from 'ojs/ojcomponentcore';
-import Context from 'ojs/ojcontext';
-import { isIE, isEdge, isMobileTouchDevice, isIos, isMac, isWebkit, applyMergedInlineStyles, applyRendererContent, disableAllFocusableElements, enableAllFocusableElements, getFocusableElementsInNode, isContextMenuKeyEvent, getActionableElementsInNode, handleActionableTab, handleActionablePrevTab, disableDefaultBrowserStyling } from 'ojs/ojdatacollection-common';
-import { setScrollLeft, isTouchSupported, removeResizeListener, addResizeListener, getCSSTimeUnitAsMillis } from 'ojs/ojdomutils';
-import { __getTemplateEngine } from 'ojs/ojconfig';
-import { CustomElementUtils } from 'ojs/ojcustomelement-utils';
-import { getAllLogicalChildPopups } from 'ojs/ojkeyboardfocus-utils';
+import { _OJ_CONTAINER_ATTR, subtreeAttached, __GetWidgetConstructor } from './ojcomponentcore.js';
+import Context from './ojcontext.js';
+import { isIE, isEdge, isMobileTouchDevice, isIos, isMac, isWebkit, applyMergedInlineStyles, applyRendererContent, disableAllFocusableElements, enableAllFocusableElements, getFocusableElementsInNode, isContextMenuKeyEvent, getActionableElementsInNode, handleActionableTab, handleActionablePrevTab, disableDefaultBrowserStyling } from './ojdatacollection-common.js';
+import { setScrollLeft, isTouchSupported, removeResizeListener, addResizeListener, getCSSTimeUnitAsMillis } from './ojdomutils.js';
+import { __getTemplateEngine } from './ojconfig.js';
+import { CustomElementUtils } from './ojcustomelement-utils.js';
+import { getAllLogicalChildPopups } from './ojkeyboardfocus-utils.js';
import $ from 'jquery';
-import { error } from 'ojs/ojlogger';
-import { getCachedCSSVarValues } from 'ojs/ojthemeutils';
-import { loadAllPendingBundles } from 'ojs/ojtranslationbundleutils';
+import { error } from './ojlogger.js';
+import { getCachedCSSVarValues } from './ojthemeutils.js';
+import { loadAllPendingBundles } from './ojtranslationbundleutils.js';
// eslint-disable-next-line wrap-iife
(function () {
@@ -39755,8 +39755,8 @@ async function getPreactTranslationPromise$1() {
return loadAllPendingBundles();
}
-// import { ImmutableSet } from 'ojs/ojkeyset';
-// import { DataGridProvider } from 'ojs/ojdatagridprovider';
+// import { ImmutableSet } from './ojkeyset.js';
+// import { DataGridProvider } from './ojdatagridprovider.js';
/**
* @ojcomponent oj.ojDataGrid
diff --git a/dist/js/libs/oj/debug_esm/ojdatagridprovider.js b/dist/js/libs/oj/debug_esm/ojdatagridprovider.js
index 6a669826..28968ac9 100644
--- a/dist/js/libs/oj/debug_esm/ojdatagridprovider.js
+++ b/dist/js/libs/oj/debug_esm/ojdatagridprovider.js
@@ -5,7 +5,7 @@
* as shown at https://oss.oracle.com/licenses/upl/
* @ignore
*/
-import { GenericEvent } from 'ojs/ojeventtarget';
+import { GenericEvent } from './ojeventtarget.js';
class DataGridProviderRefreshEvent extends GenericEvent {
constructor(detail) {
diff --git a/dist/js/libs/oj/debug_esm/ojdataprovider.js b/dist/js/libs/oj/debug_esm/ojdataprovider.js
index 03eabaeb..daa155bd 100644
--- a/dist/js/libs/oj/debug_esm/ojdataprovider.js
+++ b/dist/js/libs/oj/debug_esm/ojdataprovider.js
@@ -5,9 +5,9 @@
* as shown at https://oss.oracle.com/licenses/upl/
* @ignore
*/
-import oj$1 from 'ojs/ojcore-base';
-import { error, warn } from 'ojs/ojlogger';
-import { GenericEvent } from 'ojs/ojeventtarget';
+import oj$1 from './ojcore-base.js';
+import { error, warn } from './ojlogger.js';
+import { GenericEvent } from './ojeventtarget.js';
/**
* @preserve Copyright 2013 jQuery Foundation and other contributors
@@ -291,7 +291,7 @@ import { GenericEvent } from 'ojs/ojeventtarget';
* }
*
*/
-oj.DataProvider = function () {};
+oj$1.DataProvider = function () {};
/**
* Get an AsyncIterable object for iterating the data. Iterating data on this AsyncIterable object can be
diff --git a/dist/js/libs/oj/debug_esm/ojdataprovideradapter-base.js b/dist/js/libs/oj/debug_esm/ojdataprovideradapter-base.js
index 38bc2407..a38e647f 100644
--- a/dist/js/libs/oj/debug_esm/ojdataprovideradapter-base.js
+++ b/dist/js/libs/oj/debug_esm/ojdataprovideradapter-base.js
@@ -5,8 +5,8 @@
* as shown at https://oss.oracle.com/licenses/upl/
* @ignore
*/
-import oj from 'ojs/ojcore-base';
-import { EventTargetMixin } from 'ojs/ojeventtarget';
+import oj from './ojcore-base.js';
+import { EventTargetMixin } from './ojeventtarget.js';
class DataSourceAdapter {
constructor(dataSource) {
diff --git a/dist/js/libs/oj/debug_esm/ojdataprovideradapter.js b/dist/js/libs/oj/debug_esm/ojdataprovideradapter.js
index 059ebbae..23ea1949 100644
--- a/dist/js/libs/oj/debug_esm/ojdataprovideradapter.js
+++ b/dist/js/libs/oj/debug_esm/ojdataprovideradapter.js
@@ -5,11 +5,11 @@
* as shown at https://oss.oracle.com/licenses/upl/
* @ignore
*/
-import oj from 'ojs/ojcore-base';
-import { DataProviderRefreshEvent, DataProviderMutationEvent } from 'ojs/ojdataprovider';
-import { Model } from 'ojs/ojmodel';
-import DataSourceAdapter from 'ojs/ojdataprovideradapter-base';
-import { GenericEvent, EventTargetMixin } from 'ojs/ojeventtarget';
+import oj from './ojcore-base.js';
+import { DataProviderRefreshEvent, DataProviderMutationEvent } from './ojdataprovider.js';
+import { Model } from './ojmodel.js';
+import DataSourceAdapter from './ojdataprovideradapter-base.js';
+import { GenericEvent, EventTargetMixin } from './ojeventtarget.js';
class TableDataSourceAdapter extends DataSourceAdapter {
constructor(tableDataSource) {
diff --git a/dist/js/libs/oj/debug_esm/ojdataproviderfactory.js b/dist/js/libs/oj/debug_esm/ojdataproviderfactory.js
index fa6c2dd1..e9a0cf50 100644
--- a/dist/js/libs/oj/debug_esm/ojdataproviderfactory.js
+++ b/dist/js/libs/oj/debug_esm/ojdataproviderfactory.js
@@ -5,11 +5,11 @@
* as shown at https://oss.oracle.com/licenses/upl/
* @ignore
*/
-import { EventTargetMixin } from 'ojs/ojeventtarget';
-import CachedIteratorResultsDataProvider from 'ojs/ojcachediteratorresultsdataprovider';
-import CachedFetchByOffsetResultsDataProvider from 'ojs/ojcachedfetchbyoffsetresultsdataprovider';
-import DedupDataProvider from 'ojs/ojdedupdataprovider';
-import MutateEventFilteringDataProvider from 'ojs/ojmutateeventfilteringdataprovider';
+import { EventTargetMixin } from './ojeventtarget.js';
+import CachedIteratorResultsDataProvider from './ojcachediteratorresultsdataprovider.js';
+import CachedFetchByOffsetResultsDataProvider from './ojcachedfetchbyoffsetresultsdataprovider.js';
+import DedupDataProvider from './ojdedupdataprovider.js';
+import MutateEventFilteringDataProvider from './ojmutateeventfilteringdataprovider.js';
/**
*
diff --git a/dist/js/libs/oj/debug_esm/ojdataproviderscroller.js b/dist/js/libs/oj/debug_esm/ojdataproviderscroller.js
index 1b631e3c..679571ab 100644
--- a/dist/js/libs/oj/debug_esm/ojdataproviderscroller.js
+++ b/dist/js/libs/oj/debug_esm/ojdataproviderscroller.js
@@ -5,17 +5,17 @@
* as shown at https://oss.oracle.com/licenses/upl/
* @ignore
*/
-import oj from 'ojs/ojcore-base';
+import oj from './ojcore-base.js';
import $ from 'jquery';
-import Context from 'ojs/ojcontext';
-import { applyRendererContent, getEventDetail, isRequestIdleCallbackSupported, calculateOffsetTop, getDefaultScrollBarWidth, isFetchAborted, isElementIntersectingScrollerBounds, isIterateAfterDoneNotAllowed } from 'ojs/ojdatacollection-common';
-import { __getTemplateEngine } from 'ojs/ojconfig';
-import { fadeOut, fadeIn } from 'ojs/ojanimation';
-import { info, log, error } from 'ojs/ojlogger';
-import DomScroller from 'ojs/ojdomscroller';
-import KeySet from 'ojs/ojset';
-import KeyMap from 'ojs/ojmap';
-import { getAbortReason } from 'ojs/ojabortreason';
+import Context from './ojcontext.js';
+import { applyRendererContent, getEventDetail, isRequestIdleCallbackSupported, calculateOffsetTop, getDefaultScrollBarWidth, isFetchAborted, isElementIntersectingScrollerBounds, isIterateAfterDoneNotAllowed } from './ojdatacollection-common.js';
+import { __getTemplateEngine } from './ojconfig.js';
+import { fadeOut, fadeIn } from './ojanimation.js';
+import { info, log, error } from './ojlogger.js';
+import DomScroller from './ojdomscroller.js';
+import KeySet from './ojset.js';
+import KeyMap from './ojmap.js';
+import { getAbortReason } from './ojabortreason.js';
/**
* Base class for IteratingDataProviderContentHandler and TreeDataProviderContentHandler
diff --git a/dist/js/libs/oj/debug_esm/ojdatasource-common.js b/dist/js/libs/oj/debug_esm/ojdatasource-common.js
index 3ef73e09..efdde036 100644
--- a/dist/js/libs/oj/debug_esm/ojdatasource-common.js
+++ b/dist/js/libs/oj/debug_esm/ojdatasource-common.js
@@ -5,8 +5,8 @@
* as shown at https://oss.oracle.com/licenses/upl/
* @ignore
*/
-import oj$1 from 'ojs/ojcore-base';
-import oj$2 from 'ojs/ojcore';
+import oj$1 from './ojcore-base.js';
+import oj$2 from './ojcore.js';
/**
* @preserve Copyright 2013 jQuery Foundation and other contributors
diff --git a/dist/js/libs/oj/debug_esm/ojdatetimepicker.js b/dist/js/libs/oj/debug_esm/ojdatetimepicker.js
index 6d8740a9..c10ee9a7 100644
--- a/dist/js/libs/oj/debug_esm/ojdatetimepicker.js
+++ b/dist/js/libs/oj/debug_esm/ojdatetimepicker.js
@@ -5,30 +5,30 @@
* as shown at https://oss.oracle.com/licenses/upl/
* @ignore
*/
-import 'ojs/ojcore';
+import './ojcore.js';
import $ from 'jquery';
-import { EditableValueUtils } from 'ojs/ojeditablevalue';
-import 'ojs/ojinputtext';
-import 'ojs/ojconverterutils';
-import 'ojs/ojanimation';
-import 'ojs/ojpopup';
-import 'ojs/ojbutton';
-import oj from 'ojs/ojcore-base';
-import { getDeviceRenderMode, getLocale } from 'ojs/ojconfig';
+import { EditableValueUtils } from './ojeditablevalue.js';
+import './ojinputtext.js';
+import './ojconverterutils.js';
+import './ojanimation.js';
+import './ojpopup.js';
+import './ojbutton.js';
+import oj from './ojcore-base.js';
+import { getDeviceRenderMode, getLocale } from './ojconfig.js';
import { Swipe, DIRECTION_HORIZONTAL, Pan, DIRECTION_VERTICAL, Tap } from 'hammerjs';
-import { isComponentInitialized, setDefaultOptions, createDynamicPropertyGetter } from 'ojs/ojcomponentcore';
-import { IntlConverterUtils, OraI18nUtils } from 'ojs/ojconverterutils-i18n';
-import DateTimeRangeValidator from 'ojs/ojvalidator-datetimerange';
-import DateRestrictionValidator from 'ojs/ojvalidator-daterestriction';
-import { IntlDateTimeConverter } from 'ojs/ojconverter-datetime';
-import { getFirstDayOfWeek, getDayNames, getMonthNames, __getBundle } from 'ojs/ojlocaledata';
-import { info, warn, error, warning } from 'ojs/ojlogger';
-import { getCachedCSSVarValues, parseJSONFromFontFamily } from 'ojs/ojthemeutils';
-import Context from 'ojs/ojcontext';
-import FocusUtils from 'ojs/ojfocusutils';
-import { makeFocusable, isTouchSupported } from 'ojs/ojdomutils';
-import LabeledByUtils from 'ojs/ojlabelledbyutils';
-import { PositionUtils } from 'ojs/ojpopupcore';
+import { isComponentInitialized, setDefaultOptions, createDynamicPropertyGetter } from './ojcomponentcore.js';
+import { IntlConverterUtils, OraI18nUtils } from './ojconverterutils-i18n.js';
+import DateTimeRangeValidator from './ojvalidator-datetimerange.js';
+import DateRestrictionValidator from './ojvalidator-daterestriction.js';
+import { IntlDateTimeConverter } from './ojconverter-datetime.js';
+import { getFirstDayOfWeek, getDayNames, getMonthNames, __getBundle } from './ojlocaledata.js';
+import { info, warn, error, warning } from './ojlogger.js';
+import { getCachedCSSVarValues, parseJSONFromFontFamily } from './ojthemeutils.js';
+import Context from './ojcontext.js';
+import FocusUtils from './ojfocusutils.js';
+import { makeFocusable, isTouchSupported } from './ojdomutils.js';
+import LabeledByUtils from './ojlabelledbyutils.js';
+import { PositionUtils } from './ojpopupcore.js';
(function () {
var bindingMeta = {
diff --git a/dist/js/libs/oj/debug_esm/ojdebouncingdataproviderview.js b/dist/js/libs/oj/debug_esm/ojdebouncingdataproviderview.js
index 1b011a36..88c3de76 100644
--- a/dist/js/libs/oj/debug_esm/ojdebouncingdataproviderview.js
+++ b/dist/js/libs/oj/debug_esm/ojdebouncingdataproviderview.js
@@ -5,7 +5,7 @@
* as shown at https://oss.oracle.com/licenses/upl/
* @ignore
*/
-import { wrapWithAbortHandling } from 'ojs/ojdataprovider';
+import { wrapWithAbortHandling } from './ojdataprovider.js';
/**
* Helper class for debouncing fetch requests.
diff --git a/dist/js/libs/oj/debug_esm/ojdedupdataprovider.js b/dist/js/libs/oj/debug_esm/ojdedupdataprovider.js
index bfa76836..cb97de96 100644
--- a/dist/js/libs/oj/debug_esm/ojdedupdataprovider.js
+++ b/dist/js/libs/oj/debug_esm/ojdedupdataprovider.js
@@ -5,10 +5,10 @@
* as shown at https://oss.oracle.com/licenses/upl/
* @ignore
*/
-import oj from 'ojs/ojcore-base';
-import { DataProviderMutationEvent } from 'ojs/ojdataprovider';
-import { EventTargetMixin } from 'ojs/ojeventtarget';
-import CachedIteratorResultsDataProvider from 'ojs/ojcachediteratorresultsdataprovider';
+import oj from './ojcore-base.js';
+import { DataProviderMutationEvent } from './ojdataprovider.js';
+import { EventTargetMixin } from './ojeventtarget.js';
+import CachedIteratorResultsDataProvider from './ojcachediteratorresultsdataprovider.js';
/**
* @license
diff --git a/dist/js/libs/oj/debug_esm/ojdefaultsutils.js b/dist/js/libs/oj/debug_esm/ojdefaultsutils.js
index 69c63e3c..81984d46 100644
--- a/dist/js/libs/oj/debug_esm/ojdefaultsutils.js
+++ b/dist/js/libs/oj/debug_esm/ojdefaultsutils.js
@@ -5,7 +5,7 @@
* as shown at https://oss.oracle.com/licenses/upl/
* @ignore
*/
-import { deepFreeze, getDefaultValues } from 'ojs/ojmetadatautils';
+import { deepFreeze, getDefaultValues } from './ojmetadatautils.js';
/**
* Utility methods for handling defaults coming from metadata,
diff --git a/dist/js/libs/oj/debug_esm/ojdefer.js b/dist/js/libs/oj/debug_esm/ojdefer.js
index d4abe117..870841fa 100644
--- a/dist/js/libs/oj/debug_esm/ojdefer.js
+++ b/dist/js/libs/oj/debug_esm/ojdefer.js
@@ -5,9 +5,9 @@
* as shown at https://oss.oracle.com/licenses/upl/
* @ignore
*/
-import BindingProviderImpl from 'ojs/ojkoshared';
+import BindingProviderImpl from './ojkoshared.js';
import { bindingHandlers, applyBindingsToDescendants } from 'knockout';
-import oj from 'ojs/ojcore-base';
+import oj from './ojcore-base.js';
(function () {
BindingProviderImpl.addPostprocessor({
diff --git a/dist/js/libs/oj/debug_esm/ojdeferreddataprovider.js b/dist/js/libs/oj/debug_esm/ojdeferreddataprovider.js
index 5f92885a..536568b4 100644
--- a/dist/js/libs/oj/debug_esm/ojdeferreddataprovider.js
+++ b/dist/js/libs/oj/debug_esm/ojdeferreddataprovider.js
@@ -5,8 +5,8 @@
* as shown at https://oss.oracle.com/licenses/upl/
* @ignore
*/
-import oj from 'ojs/ojcore-base';
-import { wrapWithAbortHandling, DataProviderFeatureChecker } from 'ojs/ojdataprovider';
+import oj from './ojcore-base.js';
+import { wrapWithAbortHandling, DataProviderFeatureChecker } from './ojdataprovider.js';
/**
* @preserve Copyright 2013 jQuery Foundation and other contributors
diff --git a/dist/js/libs/oj/debug_esm/ojdiagram-toolkit.js b/dist/js/libs/oj/debug_esm/ojdiagram-toolkit.js
index 9d0c6334..5aaaa65e 100644
--- a/dist/js/libs/oj/debug_esm/ojdiagram-toolkit.js
+++ b/dist/js/libs/oj/debug_esm/ojdiagram-toolkit.js
@@ -5,11 +5,11 @@
* as shown at https://oss.oracle.com/licenses/upl/
* @ignore
*/
-import { BaseComponentDefaults, CSSStyle, CategoryRolloverHandler, Obj, Point, Matrix, Rectangle, PathUtils, Polygon, Polyline, Circle, Rect, Container, Stroke, Path, SelectionEffectUtils, ToolkitUtils, JsonUtils, Agent, MultilineText, OutputText, TextUtils, BackgroundMultilineText, BackgroundOutputText, Displayable, ResourceUtils, MouseEvent, KeyboardEvent, ArrayUtils, CustomAnimation, Animator, Playable, AnimFadeOut, AnimFadeIn, BaseComponent, ImageMarker, SimpleMarker, PatternFill, KeyboardHandler, AnimScaleTo, SolidFill, EventManager, IconButton, EventFactory, ClipPath, Dimension, Automation, DataAnimationHandler, BlackBoxAnimationHandler, SelectionHandler } from 'ojs/ojdvt-toolkit';
-import { PanZoomCanvasKeyboardHandler, PanZoomComponent, PanZoomCanvas } from 'ojs/ojdvt-panzoomcanvas';
-import { getLogicalChildPopup } from 'ojs/ojkeyboardfocus-utils';
-import { Overview } from 'ojs/ojdvt-overview';
-import { isElementRegistered } from 'ojs/ojcustomelement-registry';
+import { BaseComponentDefaults, CSSStyle, CategoryRolloverHandler, Obj, Point, Matrix, Rectangle, PathUtils, Polygon, Polyline, Circle, Rect, Container, Stroke, Path, SelectionEffectUtils, ToolkitUtils, JsonUtils, Agent, MultilineText, OutputText, TextUtils, BackgroundMultilineText, BackgroundOutputText, Displayable, ResourceUtils, MouseEvent, KeyboardEvent, ArrayUtils, CustomAnimation, Animator, Playable, AnimFadeOut, AnimFadeIn, BaseComponent, ImageMarker, SimpleMarker, PatternFill, KeyboardHandler, AnimScaleTo, SolidFill, EventManager, IconButton, EventFactory, ClipPath, Dimension, Automation, DataAnimationHandler, BlackBoxAnimationHandler, SelectionHandler } from './ojdvt-toolkit.js';
+import { PanZoomCanvasKeyboardHandler, PanZoomComponent, PanZoomCanvas } from './ojdvt-panzoomcanvas.js';
+import { getLogicalChildPopup } from './ojkeyboardfocus-utils.js';
+import { Overview } from './ojdvt-overview.js';
+import { isElementRegistered } from './ojcustomelement-registry.js';
/**
* Default values and utility functions for component versioning.
diff --git a/dist/js/libs/oj/debug_esm/ojdiagram-utils.js b/dist/js/libs/oj/debug_esm/ojdiagram-utils.js
index f16e9831..0a6668f4 100644
--- a/dist/js/libs/oj/debug_esm/ojdiagram-utils.js
+++ b/dist/js/libs/oj/debug_esm/ojdiagram-utils.js
@@ -5,8 +5,8 @@
* as shown at https://oss.oracle.com/licenses/upl/
* @ignore
*/
-import ojMap from 'ojs/ojmap';
-import oj from 'ojs/ojcore-base';
+import ojMap from './ojmap.js';
+import oj from './ojcore-base.js';
/**
* @namespace
diff --git a/dist/js/libs/oj/debug_esm/ojdiagram.js b/dist/js/libs/oj/debug_esm/ojdiagram.js
index 3189b98d..cc4e8759 100644
--- a/dist/js/libs/oj/debug_esm/ojdiagram.js
+++ b/dist/js/libs/oj/debug_esm/ojdiagram.js
@@ -5,17 +5,17 @@
* as shown at https://oss.oracle.com/licenses/upl/
* @ignore
*/
-import oj from 'ojs/ojcore-base';
-import { __GetWidgetConstructor, setDefaultOptions, createDynamicPropertyGetter } from 'ojs/ojcomponentcore';
-import DvtAttributeUtils from 'ojs/ojdvt-base';
-import * as DiagramUtils from 'ojs/ojdiagram-utils';
+import oj from './ojcore-base.js';
+import { __GetWidgetConstructor, setDefaultOptions, createDynamicPropertyGetter } from './ojcomponentcore.js';
+import DvtAttributeUtils from './ojdvt-base.js';
+import * as DiagramUtils from './ojdiagram-utils.js';
import $ from 'jquery';
-import { Diagram } from 'ojs/ojdiagram-toolkit';
-import * as Logger from 'ojs/ojlogger';
-import { error } from 'ojs/ojlogger';
-import { KeySetImpl } from 'ojs/ojkeyset';
-import 'ojs/ojdatasource-common';
-import { enableAllFocusableElements, disableAllFocusableElements, getActionableElementsInNode, getFocusableElementsInNode } from 'ojs/ojkeyboardfocus-utils';
+import { Diagram } from './ojdiagram-toolkit.js';
+import * as Logger from './ojlogger.js';
+import { error } from './ojlogger.js';
+import { KeySetImpl } from './ojkeyset.js';
+import './ojdatasource-common.js';
+import { enableAllFocusableElements, disableAllFocusableElements, getActionableElementsInNode, getFocusableElementsInNode } from './ojkeyboardfocus-utils.js';
/**
* Ignore tag only needed for DVTs that have jsDoc in separate _doc.js files.
diff --git a/dist/js/libs/oj/debug_esm/ojdialog.js b/dist/js/libs/oj/debug_esm/ojdialog.js
index 39f39f71..71b276b5 100644
--- a/dist/js/libs/oj/debug_esm/ojdialog.js
+++ b/dist/js/libs/oj/debug_esm/ojdialog.js
@@ -5,18 +5,18 @@
* as shown at https://oss.oracle.com/licenses/upl/
* @ignore
*/
-import { PositionUtils, ZOrderUtils, PopupService, PopupWhenReadyMediator } from 'ojs/ojpopupcore';
-import 'ojs/ojbutton';
+import { PositionUtils, ZOrderUtils, PopupService, PopupWhenReadyMediator } from './ojpopupcore.js';
+import './ojbutton.js';
import 'jqueryui-amd/widgets/mouse';
import 'jqueryui-amd/widgets/draggable';
import $ from 'jquery';
-import oj from 'ojs/ojcore-base';
-import { isAncestorOrSelf, removeResizeListener, addResizeListener, getCSSLengthAsFloat } from 'ojs/ojdomutils';
-import { parseJSONFromFontFamily } from 'ojs/ojthemeutils';
-import { subtreeAttached, subtreeDetached, setDefaultOptions, createDynamicPropertyGetter } from 'ojs/ojcomponentcore';
-import { startAnimation } from 'ojs/ojanimation';
-import FocusUtils from 'ojs/ojfocusutils';
-import { CustomElementUtils } from 'ojs/ojcustomelement-utils';
+import oj from './ojcore-base.js';
+import { isAncestorOrSelf, removeResizeListener, addResizeListener, getCSSLengthAsFloat } from './ojdomutils.js';
+import { parseJSONFromFontFamily } from './ojthemeutils.js';
+import { subtreeAttached, subtreeDetached, setDefaultOptions, createDynamicPropertyGetter } from './ojcomponentcore.js';
+import { startAnimation } from './ojanimation.js';
+import FocusUtils from './ojfocusutils.js';
+import { CustomElementUtils } from './ojcustomelement-utils.js';
(function () {
const OJ_RESIZABLE_HANDLE_SELECTOR = '.oj-resizable-handle';
diff --git a/dist/js/libs/oj/debug_esm/ojdomscroller.js b/dist/js/libs/oj/debug_esm/ojdomscroller.js
index b435e2e7..4385f1fb 100644
--- a/dist/js/libs/oj/debug_esm/ojdomscroller.js
+++ b/dist/js/libs/oj/debug_esm/ojdomscroller.js
@@ -5,10 +5,10 @@
* as shown at https://oss.oracle.com/licenses/upl/
* @ignore
*/
-import oj from 'ojs/ojcore-base';
+import oj from './ojcore-base.js';
import $ from 'jquery';
-import { getScrollEventElement, CHECKVIEWPORT_THRESHOLD } from 'ojs/ojdatacollection-common';
-import { warn } from 'ojs/ojlogger';
+import { getScrollEventElement, CHECKVIEWPORT_THRESHOLD } from './ojdatacollection-common.js';
+import { warn } from './ojlogger.js';
/* jslint browser: true*/
/**
diff --git a/dist/js/libs/oj/debug_esm/ojdomutils.js b/dist/js/libs/oj/debug_esm/ojdomutils.js
index 195bd9f3..ab1fd333 100644
--- a/dist/js/libs/oj/debug_esm/ojdomutils.js
+++ b/dist/js/libs/oj/debug_esm/ojdomutils.js
@@ -5,8 +5,8 @@
* as shown at https://oss.oracle.com/licenses/upl/
* @ignore
*/
-import { parseJSONFromFontFamily } from 'ojs/ojthemeutils';
-import oj from 'ojs/ojcore-base';
+import { parseJSONFromFontFamily } from './ojthemeutils.js';
+import oj from './ojcore-base.js';
import $ from 'jquery';
/**
diff --git a/dist/js/libs/oj/debug_esm/ojdrawerlayout.js b/dist/js/libs/oj/debug_esm/ojdrawerlayout.js
index ab3a0a39..90da5f6d 100644
--- a/dist/js/libs/oj/debug_esm/ojdrawerlayout.js
+++ b/dist/js/libs/oj/debug_esm/ojdrawerlayout.js
@@ -6,16 +6,16 @@
* @ignore
*/
import { jsxs, jsx } from 'preact/jsx-runtime';
-import { Root, customElement } from 'ojs/ojvcomponent';
+import { Root, customElement } from './ojvcomponent.js';
import { Component, createRef } from 'preact';
import $ from 'jquery';
-import { expand, slideIn, collapse, slideOut } from 'ojs/ojanimation';
-import { removeResizeListener, addResizeListener } from 'ojs/ojdomutils';
-import 'ojs/ojcore-base';
-import 'ojs/ojpopup';
-import { PopupService, ZOrderUtils, PositionUtils } from 'ojs/ojpopupcore';
-import { DrawerConstants, DrawerUtils } from 'ojs/ojdrawerutils';
-import Context from 'ojs/ojcontext';
+import { expand, slideIn, collapse, slideOut } from './ojanimation.js';
+import { removeResizeListener, addResizeListener } from './ojdomutils.js';
+import './ojcore-base.js';
+import './ojpopup.js';
+import { PopupService, ZOrderUtils, PositionUtils } from './ojpopupcore.js';
+import { DrawerConstants, DrawerUtils } from './ojdrawerutils.js';
+import Context from './ojcontext.js';
var __decorate = (null && null.__decorate) || function (decorators, target, key, desc) {
var c = arguments.length, r = c < 3 ? target : desc === null ? desc = Object.getOwnPropertyDescriptor(target, key) : desc, d;
diff --git a/dist/js/libs/oj/debug_esm/ojdrawerpopup.js b/dist/js/libs/oj/debug_esm/ojdrawerpopup.js
index 95c3e292..ed4ddce4 100644
--- a/dist/js/libs/oj/debug_esm/ojdrawerpopup.js
+++ b/dist/js/libs/oj/debug_esm/ojdrawerpopup.js
@@ -6,17 +6,17 @@
* @ignore
*/
import { jsx, jsxs } from 'preact/jsx-runtime';
-import { Root, customElement } from 'ojs/ojvcomponent';
+import { Root, customElement } from './ojvcomponent.js';
import { Component, createRef } from 'preact';
import $ from 'jquery';
-import { slideIn, slideOut } from 'ojs/ojanimation';
-import oj from 'ojs/ojcore-base';
-import 'ojs/ojpopup';
-import { PopupService, ZOrderUtils } from 'ojs/ojpopupcore';
-import { DrawerUtils, DrawerConstants } from 'ojs/ojdrawerutils';
+import { slideIn, slideOut } from './ojanimation.js';
+import oj from './ojcore-base.js';
+import './ojpopup.js';
+import { PopupService, ZOrderUtils } from './ojpopupcore.js';
+import { DrawerUtils, DrawerConstants } from './ojdrawerutils.js';
import Hammer from 'hammerjs';
-import { CustomElementUtils } from 'ojs/ojcustomelement-utils';
-import Context from 'ojs/ojcontext';
+import { CustomElementUtils } from './ojcustomelement-utils.js';
+import Context from './ojcontext.js';
var __decorate = (null && null.__decorate) || function (decorators, target, key, desc) {
var c = arguments.length, r = c < 3 ? target : desc === null ? desc = Object.getOwnPropertyDescriptor(target, key) : desc, d;
diff --git a/dist/js/libs/oj/debug_esm/ojdrawerutils.js b/dist/js/libs/oj/debug_esm/ojdrawerutils.js
index 8ba985f7..9644e3a6 100644
--- a/dist/js/libs/oj/debug_esm/ojdrawerutils.js
+++ b/dist/js/libs/oj/debug_esm/ojdrawerutils.js
@@ -5,7 +5,7 @@
* as shown at https://oss.oracle.com/licenses/upl/
* @ignore
*/
-import { getReadingDirection } from 'ojs/ojdomutils';
+import { getReadingDirection } from './ojdomutils.js';
// @ts-ignore
// @ts-ignore
diff --git a/dist/js/libs/oj/debug_esm/ojdvt-axis.js b/dist/js/libs/oj/debug_esm/ojdvt-axis.js
index 697f7722..93b82ef2 100644
--- a/dist/js/libs/oj/debug_esm/ojdvt-axis.js
+++ b/dist/js/libs/oj/debug_esm/ojdvt-axis.js
@@ -5,7 +5,7 @@
* as shown at https://oss.oracle.com/licenses/upl/
* @ignore
*/
-import { IntlNumberConverter } from 'ojs/ojconverter-number';
+import { IntlNumberConverter } from './ojconverter-number.js';
/**
* Calculated axis information and drawable creation. This class should
diff --git a/dist/js/libs/oj/debug_esm/ojdvt-base.js b/dist/js/libs/oj/debug_esm/ojdvt-base.js
index 5c143752..d24ca733 100644
--- a/dist/js/libs/oj/debug_esm/ojdvt-base.js
+++ b/dist/js/libs/oj/debug_esm/ojdvt-base.js
@@ -5,23 +5,23 @@
* as shown at https://oss.oracle.com/licenses/upl/
* @ignore
*/
-import 'ojs/ojdataprovider';
-import oj from 'ojs/ojcore-base';
-import { JsonUtils, Agent, Context } from 'ojs/ojdvt-toolkit';
-import Context$1 from 'ojs/ojcontext';
-import { __getTemplateEngine, getLocale } from 'ojs/ojconfig';
-import ojMap from 'ojs/ojmap';
-import * as LocaleData from 'ojs/ojlocaledata';
-import { subtreeAttached, __GetWidgetConstructor } from 'ojs/ojcomponentcore';
+import './ojdataprovider.js';
+import oj from './ojcore-base.js';
+import { JsonUtils, Agent, Context } from './ojdvt-toolkit.js';
+import Context$1 from './ojcontext.js';
+import { __getTemplateEngine, getLocale } from './ojconfig.js';
+import ojMap from './ojmap.js';
+import * as LocaleData from './ojlocaledata.js';
+import { subtreeAttached, __GetWidgetConstructor } from './ojcomponentcore.js';
import $ from 'jquery';
-import KeySetImpl from 'ojs/ojkeysetimpl';
-import { getCSSTimeUnitAsMillis, isTouchSupported, addResizeListener, removeResizeListener } from 'ojs/ojdomutils';
-import { ColorAttributeGroupHandler, AttributeGroupHandler, ShapeAttributeGroupHandler } from 'ojs/ojattributegrouphandler';
-import { error } from 'ojs/ojlogger';
-import 'ojs/ojcustomelement';
-import { AttributeUtils, CustomElementUtils, JetElementError } from 'ojs/ojcustomelement-utils';
-import { checkEnumValues } from 'ojs/ojmetadatautils';
-import { getCachedCSSVarValues } from 'ojs/ojthemeutils';
+import KeySetImpl from './ojkeysetimpl.js';
+import { getCSSTimeUnitAsMillis, isTouchSupported, addResizeListener, removeResizeListener } from './ojdomutils.js';
+import { ColorAttributeGroupHandler, AttributeGroupHandler, ShapeAttributeGroupHandler } from './ojattributegrouphandler.js';
+import { error } from './ojlogger.js';
+import './ojcustomelement.js';
+import { AttributeUtils, CustomElementUtils, JetElementError } from './ojcustomelement-utils.js';
+import { checkEnumValues } from './ojmetadatautils.js';
+import { getCachedCSSVarValues } from './ojthemeutils.js';
import 'ojdnd';
/**
diff --git a/dist/js/libs/oj/debug_esm/ojdvt-overview.js b/dist/js/libs/oj/debug_esm/ojdvt-overview.js
index 6ad16348..c41f9786 100644
--- a/dist/js/libs/oj/debug_esm/ojdvt-overview.js
+++ b/dist/js/libs/oj/debug_esm/ojdvt-overview.js
@@ -5,7 +5,7 @@
* as shown at https://oss.oracle.com/licenses/upl/
* @ignore
*/
-import { BaseComponentDefaults, EventManager, SvgDocumentUtils, Point, MouseEvent, Agent, Rect, PathUtils, Path, ToolkitUtils, OutputText, Container, Line, Stroke, TextUtils, TouchEvent, CSSStyle, Animator, Easing, BackgroundOutputText, EventFactory, KeyboardEvent } from 'ojs/ojdvt-toolkit';
+import { BaseComponentDefaults, EventManager, SvgDocumentUtils, Point, MouseEvent, Agent, Rect, PathUtils, Path, ToolkitUtils, OutputText, Container, Line, Stroke, TextUtils, TouchEvent, CSSStyle, Animator, Easing, BackgroundOutputText, EventFactory, KeyboardEvent } from './ojdvt-toolkit.js';
/**
* Default values and utility functions for component versioning.
diff --git a/dist/js/libs/oj/debug_esm/ojdvt-panzoomcanvas.js b/dist/js/libs/oj/debug_esm/ojdvt-panzoomcanvas.js
index d831e3d3..63af494c 100644
--- a/dist/js/libs/oj/debug_esm/ojdvt-panzoomcanvas.js
+++ b/dist/js/libs/oj/debug_esm/ojdvt-panzoomcanvas.js
@@ -5,7 +5,7 @@
* as shown at https://oss.oracle.com/licenses/upl/
* @ignore
*/
-import { EventManager, MouseEvent, EventFactory, Playable, Timer, Container, Rect, Matrix, Dimension, ClipPath, Animator, Point, Rectangle, Easing, Agent, ToolkitUtils, KeyboardHandler, KeyboardEvent, BaseComponent } from 'ojs/ojdvt-toolkit';
+import { EventManager, MouseEvent, EventFactory, Playable, Timer, Container, Rect, Matrix, Dimension, ClipPath, Animator, Point, Rectangle, Easing, Agent, ToolkitUtils, KeyboardHandler, KeyboardEvent, BaseComponent } from './ojdvt-toolkit.js';
/**
* @constructor
diff --git a/dist/js/libs/oj/debug_esm/ojdvt-timecomponent.js b/dist/js/libs/oj/debug_esm/ojdvt-timecomponent.js
index 15ea7256..889a4ba3 100644
--- a/dist/js/libs/oj/debug_esm/ojdvt-timecomponent.js
+++ b/dist/js/libs/oj/debug_esm/ojdvt-timecomponent.js
@@ -5,8 +5,8 @@
* as shown at https://oss.oracle.com/licenses/upl/
* @ignore
*/
-import { CSSStyle, BaseComponent, Agent, Container, ClipPath, ToolkitUtils, TransientButton, EventManager, Rectangle, Rect, SvgDocumentUtils, MouseEvent, Point, KeyboardHandler, KeyboardEvent } from 'ojs/ojdvt-toolkit';
-import { TimeAxisUtils } from 'ojs/ojtimeaxis-toolkit';
+import { CSSStyle, BaseComponent, Agent, Container, ClipPath, ToolkitUtils, TransientButton, EventManager, Rectangle, Rect, SvgDocumentUtils, MouseEvent, Point, KeyboardHandler, KeyboardEvent } from './ojdvt-toolkit.js';
+import { TimeAxisUtils } from './ojtimeaxis-toolkit.js';
/**
* Style related utility functions for TimeComponent.
diff --git a/dist/js/libs/oj/debug_esm/ojdvt-toolkit.js b/dist/js/libs/oj/debug_esm/ojdvt-toolkit.js
index a6349e1d..df8e7f72 100644
--- a/dist/js/libs/oj/debug_esm/ojdvt-toolkit.js
+++ b/dist/js/libs/oj/debug_esm/ojdvt-toolkit.js
@@ -5,7 +5,7 @@
* as shown at https://oss.oracle.com/licenses/upl/
* @ignore
*/
-import { parseJSONFromFontFamily } from 'ojs/ojthemeutils';
+import { parseJSONFromFontFamily } from './ojthemeutils.js';
/**
* Base object for HTML toolkit derivative objects.
diff --git a/dist/js/libs/oj/debug_esm/ojdvt-treeview.js b/dist/js/libs/oj/debug_esm/ojdvt-treeview.js
index 7e4c19db..896ca155 100644
--- a/dist/js/libs/oj/debug_esm/ojdvt-treeview.js
+++ b/dist/js/libs/oj/debug_esm/ojdvt-treeview.js
@@ -5,7 +5,7 @@
* as shown at https://oss.oracle.com/licenses/upl/
* @ignore
*/
-import { CSSStyle, Obj, Displayable, JsonUtils, Rectangle, ArrayUtils, CustomAnimation, Animator, ColorUtils, AnimFadeIn, AnimFadeOut, PatternFill, SolidFill, Agent, Shadow, SimpleObjPeer, DataAnimationHandler, BaseComponentDefaults, EventManager, EventFactory, KeyboardEvent, OutputText, DisplayableUtils, Rect, Button, TextUtils, Container, KeyboardFocusEffect, IconButton, MouseEvent, KeyboardHandler, Math as Math$1, Point, Path, Stroke, PathUtils, Circle, ToolkitUtils, MultilineText, Automation, CategoryRolloverHandler, BaseComponent, BlackBoxAnimationHandler, SelectionHandler, ParallelPlayable } from 'ojs/ojdvt-toolkit';
+import { CSSStyle, Obj, Displayable, JsonUtils, Rectangle, ArrayUtils, CustomAnimation, Animator, ColorUtils, AnimFadeIn, AnimFadeOut, PatternFill, SolidFill, Agent, Shadow, SimpleObjPeer, DataAnimationHandler, BaseComponentDefaults, EventManager, EventFactory, KeyboardEvent, OutputText, DisplayableUtils, Rect, Button, TextUtils, Container, KeyboardFocusEffect, IconButton, MouseEvent, KeyboardHandler, Math as Math$1, Point, Path, Stroke, PathUtils, Circle, ToolkitUtils, MultilineText, Automation, CategoryRolloverHandler, BaseComponent, BlackBoxAnimationHandler, SelectionHandler, ParallelPlayable } from './ojdvt-toolkit.js';
/**
* Base class for tree component nodes.
diff --git a/dist/js/libs/oj/debug_esm/ojeditablevalue.js b/dist/js/libs/oj/debug_esm/ojeditablevalue.js
index e1a2b800..6d63a201 100644
--- a/dist/js/libs/oj/debug_esm/ojeditablevalue.js
+++ b/dist/js/libs/oj/debug_esm/ojeditablevalue.js
@@ -5,25 +5,25 @@
* as shown at https://oss.oracle.com/licenses/upl/
* @ignore
*/
-import oj from 'ojs/ojcore-base';
-import { __GetWidgetConstructor, setDefaultOptions, createDynamicPropertyGetter, isComponentInitialized } from 'ojs/ojcomponentcore';
-import 'ojs/ojpopup';
-import { isAncestorOrSelf, isAncestor, isTouchSupported, isHTMLContent, cleanHtml, validateURL, makeFocusable } from 'ojs/ojdomutils';
-import { parseJSONFromFontFamily } from 'ojs/ojthemeutils';
-import Context from 'ojs/ojcontext';
+import oj from './ojcore-base.js';
+import { __GetWidgetConstructor, setDefaultOptions, createDynamicPropertyGetter, isComponentInitialized } from './ojcomponentcore.js';
+import './ojpopup.js';
+import { isAncestorOrSelf, isAncestor, isTouchSupported, isHTMLContent, cleanHtml, validateURL, makeFocusable } from './ojdomutils.js';
+import { parseJSONFromFontFamily } from './ojthemeutils.js';
+import Context from './ojcontext.js';
import $ from 'jquery';
-import 'ojs/ojlabel';
-import FocusUtils from 'ojs/ojfocusutils';
-import { error, info, warn } from 'ojs/ojlogger';
-import RequiredValidator from 'ojs/ojvalidator-required';
-import LabelledByUtils from 'ojs/ojlabelledbyutils';
-import { getTranslatedString } from 'ojs/ojtranslation';
-import Message from 'ojs/ojmessaging';
-import ConverterUtils from 'ojs/ojconverterutils';
-import { ConverterError, ValidatorError } from 'ojs/ojvalidation-error';
+import './ojlabel.js';
+import FocusUtils from './ojfocusutils.js';
+import { error, info, warn } from './ojlogger.js';
+import RequiredValidator from './ojvalidator-required.js';
+import LabelledByUtils from './ojlabelledbyutils.js';
+import { getTranslatedString } from './ojtranslation.js';
+import Message from './ojmessaging.js';
+import ConverterUtils from './ojconverterutils.js';
+import { ConverterError, ValidatorError } from './ojvalidation-error.js';
import { Press } from 'hammerjs';
-import 'ojs/ojjquery-hammer';
-import { startAnimation } from 'ojs/ojanimation';
+import './ojjquery-hammer.js';
+import { startAnimation } from './ojanimation.js';
/**
* Base class for rendering the 'inside' labels. This is so InsideLabelStrategy
diff --git a/dist/js/libs/oj/debug_esm/ojeventtarget.js b/dist/js/libs/oj/debug_esm/ojeventtarget.js
index 543cf230..0bec6bff 100644
--- a/dist/js/libs/oj/debug_esm/ojeventtarget.js
+++ b/dist/js/libs/oj/debug_esm/ojeventtarget.js
@@ -5,7 +5,7 @@
* as shown at https://oss.oracle.com/licenses/upl/
* @ignore
*/
-import oj from 'ojs/ojcore-base';
+import oj from './ojcore-base.js';
/**
* @preserve Copyright 2013 jQuery Foundation and other contributors
diff --git a/dist/js/libs/oj/debug_esm/ojexpressionutils.js b/dist/js/libs/oj/debug_esm/ojexpressionutils.js
index f868f64a..0e5d2faa 100644
--- a/dist/js/libs/oj/debug_esm/ojexpressionutils.js
+++ b/dist/js/libs/oj/debug_esm/ojexpressionutils.js
@@ -5,8 +5,8 @@
* as shown at https://oss.oracle.com/licenses/upl/
* @ignore
*/
-import { getExpressionEvaluator } from 'ojs/ojconfig';
-import { AttributeUtils } from 'ojs/ojcustomelement-utils';
+import { getExpressionEvaluator } from './ojconfig.js';
+import { AttributeUtils } from './ojcustomelement-utils.js';
/**
* @namespace
diff --git a/dist/js/libs/oj/debug_esm/ojfilepicker.js b/dist/js/libs/oj/debug_esm/ojfilepicker.js
index c872ccab..a00aa4d7 100644
--- a/dist/js/libs/oj/debug_esm/ojfilepicker.js
+++ b/dist/js/libs/oj/debug_esm/ojfilepicker.js
@@ -6,13 +6,13 @@
* @ignore
*/
import { jsx } from 'preact/jsx-runtime';
-import oj from 'ojs/ojcore-base';
-import { recentPointer } from 'ojs/ojdomutils';
-import { Root, customElement } from 'ojs/ojvcomponent';
+import oj from './ojcore-base.js';
+import { recentPointer } from './ojdomutils.js';
+import { Root, customElement } from './ojvcomponent.js';
import { Component, createRef } from 'preact';
-import { getTranslatedString } from 'ojs/ojtranslation';
-import { pickFiles } from 'ojs/ojfilepickerutils';
-import FocusUtils from 'ojs/ojfocusutils';
+import { getTranslatedString } from './ojtranslation.js';
+import { pickFiles } from './ojfilepickerutils.js';
+import FocusUtils from './ojfocusutils.js';
import 'jqueryui-amd/tabbable';
var __decorate = (null && null.__decorate) || function (decorators, target, key, desc) {
diff --git a/dist/js/libs/oj/debug_esm/ojfilepickerutils.js b/dist/js/libs/oj/debug_esm/ojfilepickerutils.js
index 796aeced..f786864b 100644
--- a/dist/js/libs/oj/debug_esm/ojfilepickerutils.js
+++ b/dist/js/libs/oj/debug_esm/ojfilepickerutils.js
@@ -5,7 +5,7 @@
* as shown at https://oss.oracle.com/licenses/upl/
* @ignore
*/
-import oj from 'ojs/ojcore-base';
+import oj from './ojcore-base.js';
/**
* Contains utility functions intended to be used to pick files
diff --git a/dist/js/libs/oj/debug_esm/ojfilmstrip.js b/dist/js/libs/oj/debug_esm/ojfilmstrip.js
index 2e7f5b04..54132b64 100644
--- a/dist/js/libs/oj/debug_esm/ojfilmstrip.js
+++ b/dist/js/libs/oj/debug_esm/ojfilmstrip.js
@@ -5,13 +5,13 @@
* as shown at https://oss.oracle.com/licenses/upl/
* @ignore
*/
-import oj from 'ojs/ojcore-base';
+import oj from './ojcore-base.js';
import $ from 'jquery';
-import Context from 'ojs/ojcontext';
-import { subtreeDetached, subtreeAttached, subtreeShown, subtreeHidden } from 'ojs/ojcomponentcore';
-import { warn } from 'ojs/ojlogger';
-import { isValidIdentifier, isTouchSupported, addResizeListener, removeResizeListener } from 'ojs/ojdomutils';
-import FocusUtils from 'ojs/ojfocusutils';
+import Context from './ojcontext.js';
+import { subtreeDetached, subtreeAttached, subtreeShown, subtreeHidden } from './ojcomponentcore.js';
+import { warn } from './ojlogger.js';
+import { isValidIdentifier, isTouchSupported, addResizeListener, removeResizeListener } from './ojdomutils.js';
+import FocusUtils from './ojfocusutils.js';
import 'touchr';
var __oj_film_strip_metadata =
diff --git a/dist/js/libs/oj/debug_esm/ojflattenedtreedatagriddatasource.js b/dist/js/libs/oj/debug_esm/ojflattenedtreedatagriddatasource.js
index 977685c7..bae044c1 100644
--- a/dist/js/libs/oj/debug_esm/ojflattenedtreedatagriddatasource.js
+++ b/dist/js/libs/oj/debug_esm/ojflattenedtreedatagriddatasource.js
@@ -5,9 +5,9 @@
* as shown at https://oss.oracle.com/licenses/upl/
* @ignore
*/
-import oj$1 from 'ojs/ojcore-base';
-import 'ojs/ojrowexpander';
-import 'ojs/ojdatasource-common';
+import oj$1 from './ojcore-base.js';
+import './ojrowexpander.js';
+import './ojdatasource-common.js';
/**
* @class FlattenedTreeCellSet
diff --git a/dist/js/libs/oj/debug_esm/ojflattenedtreedataproviderview.js b/dist/js/libs/oj/debug_esm/ojflattenedtreedataproviderview.js
index a313dbab..93a481bd 100644
--- a/dist/js/libs/oj/debug_esm/ojflattenedtreedataproviderview.js
+++ b/dist/js/libs/oj/debug_esm/ojflattenedtreedataproviderview.js
@@ -5,13 +5,13 @@
* as shown at https://oss.oracle.com/licenses/upl/
* @ignore
*/
-import oj from 'ojs/ojcore-base';
-import ojSet from 'ojs/ojset';
-import { EventTargetMixin } from 'ojs/ojeventtarget';
-import { BehaviorSubject } from 'ojs/ojobservable';
-import ojMap from 'ojs/ojmap';
-import { SortUtils, DataProviderMutationEvent, DataProviderRefreshEvent, DataProviderUtils } from 'ojs/ojdataprovider';
-import { KeySetImpl } from 'ojs/ojkeyset';
+import oj from './ojcore-base.js';
+import ojSet from './ojset.js';
+import { EventTargetMixin } from './ojeventtarget.js';
+import { BehaviorSubject } from './ojobservable.js';
+import ojMap from './ojmap.js';
+import { SortUtils, DataProviderMutationEvent, DataProviderRefreshEvent, DataProviderUtils } from './ojdataprovider.js';
+import { KeySetImpl } from './ojkeyset.js';
/**
* @preserve Copyright 2013 jQuery Foundation and other contributors
diff --git a/dist/js/libs/oj/debug_esm/ojfocusutils.js b/dist/js/libs/oj/debug_esm/ojfocusutils.js
index 18bd4c4f..00b07320 100644
--- a/dist/js/libs/oj/debug_esm/ojfocusutils.js
+++ b/dist/js/libs/oj/debug_esm/ojfocusutils.js
@@ -6,8 +6,8 @@
* @ignore
*/
import $ from 'jquery';
-import oj from 'ojs/ojcore-base';
-import { isAncestorOrSelf } from 'ojs/ojdomutils';
+import oj from './ojcore-base.js';
+import { isAncestorOrSelf } from './ojdomutils.js';
/**
* Focus utilities.
diff --git a/dist/js/libs/oj/debug_esm/ojformlayout.js b/dist/js/libs/oj/debug_esm/ojformlayout.js
index 80dc138b..d8c3e622 100644
--- a/dist/js/libs/oj/debug_esm/ojformlayout.js
+++ b/dist/js/libs/oj/debug_esm/ojformlayout.js
@@ -5,14 +5,14 @@
* as shown at https://oss.oracle.com/licenses/upl/
* @ignore
*/
-import 'ojs/ojcore';
-import 'ojs/ojcomponentcore';
-import 'ojs/ojlabel';
-import oj from 'ojs/ojcore-base';
-import { addResizeListener, removeResizeListener, isAncestorOrSelf } from 'ojs/ojdomutils';
-import Context from 'ojs/ojcontext';
-import { error } from 'ojs/ojlogger';
-import { parseJSONFromFontFamily } from 'ojs/ojthemeutils';
+import './ojcore.js';
+import './ojcomponentcore.js';
+import './ojlabel.js';
+import oj from './ojcore-base.js';
+import { addResizeListener, removeResizeListener, isAncestorOrSelf } from './ojdomutils.js';
+import Context from './ojcontext.js';
+import { error } from './ojlogger.js';
+import { parseJSONFromFontFamily } from './ojthemeutils.js';
import { FormVariantContext } from '@oracle/oraclejet-preact/hooks/UNSAFE_useFormVariantContext';
/**
diff --git a/dist/js/libs/oj/debug_esm/ojgantt-toolkit.js b/dist/js/libs/oj/debug_esm/ojgantt-toolkit.js
index 68c0d0ab..1abf20f1 100644
--- a/dist/js/libs/oj/debug_esm/ojgantt-toolkit.js
+++ b/dist/js/libs/oj/debug_esm/ojgantt-toolkit.js
@@ -5,9 +5,9 @@
* as shown at https://oss.oracle.com/licenses/upl/
* @ignore
*/
-import { BaseComponentDefaults, CSSStyle, Agent, Container, ToolkitUtils, Path, Stroke, PathUtils, KeyboardEvent, MouseEvent, Rect, OutputText, IconButton, Displayable, Obj, SelectionEffectUtils, ColorUtils, ResourceUtils, TouchEvent, Rectangle, AriaUtils, EventFactory, Point, EventManager, ClipPath, TextUtils, SolidFill, JsonUtils, Line, AnimFadeIn, Easing, AnimFadeOut, CustomAnimation, ParallelPlayable, Playable, Animator, Automation, SvgShapeUtils, SimpleScrollbar, LayoutUtils, Dimension, MarqueeHandler, Matrix, SelectionHandler } from 'ojs/ojdvt-toolkit';
-import { TimeComponent, TimeComponentEventManager, TimeComponentKeyboardHandler } from 'ojs/ojdvt-timecomponent';
-import { TimeAxisUtils as TimeAxisUtils$1, TimeAxis } from 'ojs/ojtimeaxis-toolkit';
+import { BaseComponentDefaults, CSSStyle, Agent, Container, ToolkitUtils, Path, Stroke, PathUtils, KeyboardEvent, MouseEvent, Rect, OutputText, IconButton, Displayable, Obj, SelectionEffectUtils, ColorUtils, ResourceUtils, TouchEvent, Rectangle, AriaUtils, EventFactory, Point, EventManager, ClipPath, TextUtils, SolidFill, JsonUtils, Line, AnimFadeIn, Easing, AnimFadeOut, CustomAnimation, ParallelPlayable, Playable, Animator, Automation, SvgShapeUtils, SimpleScrollbar, LayoutUtils, Dimension, MarqueeHandler, Matrix, SelectionHandler } from './ojdvt-toolkit.js';
+import { TimeComponent, TimeComponentEventManager, TimeComponentKeyboardHandler } from './ojdvt-timecomponent.js';
+import { TimeAxisUtils as TimeAxisUtils$1, TimeAxis } from './ojtimeaxis-toolkit.js';
/**
* Style related utility functions for Gantt.
diff --git a/dist/js/libs/oj/debug_esm/ojgantt.js b/dist/js/libs/oj/debug_esm/ojgantt.js
index 828c402f..e5366122 100644
--- a/dist/js/libs/oj/debug_esm/ojgantt.js
+++ b/dist/js/libs/oj/debug_esm/ojgantt.js
@@ -5,18 +5,18 @@
* as shown at https://oss.oracle.com/licenses/upl/
* @ignore
*/
-import oj from 'ojs/ojcore-base';
+import oj from './ojcore-base.js';
import $ from 'jquery';
-import { setDefaultOptions, createDynamicPropertyGetter } from 'ojs/ojcomponentcore';
-import { isTouchSupported } from 'ojs/ojdomutils';
-import 'ojs/ojtime-base';
-import { Gantt } from 'ojs/ojgantt-toolkit';
-import 'ojs/ojkeyset';
-import 'ojs/ojdvttimecomponentscale';
-import { error } from 'ojs/ojlogger';
-import { IntlDateTimeConverter } from 'ojs/ojconverter-datetime';
-import { IntlNumberConverter } from 'ojs/ojconverter-number';
-import { parseJSONFromFontFamily } from 'ojs/ojthemeutils';
+import { setDefaultOptions, createDynamicPropertyGetter } from './ojcomponentcore.js';
+import { isTouchSupported } from './ojdomutils.js';
+import './ojtime-base.js';
+import { Gantt } from './ojgantt-toolkit.js';
+import './ojkeyset.js';
+import './ojdvttimecomponentscale.js';
+import { error } from './ojlogger.js';
+import { IntlDateTimeConverter } from './ojconverter-datetime.js';
+import { IntlNumberConverter } from './ojconverter-number.js';
+import { parseJSONFromFontFamily } from './ojthemeutils.js';
/**
* Ignore tag only needed for DVTs that have jsDoc in separate _doc.js files.
diff --git a/dist/js/libs/oj/debug_esm/ojganttutils.js b/dist/js/libs/oj/debug_esm/ojganttutils.js
index afa0b146..e40eda4b 100644
--- a/dist/js/libs/oj/debug_esm/ojganttutils.js
+++ b/dist/js/libs/oj/debug_esm/ojganttutils.js
@@ -5,8 +5,8 @@
* as shown at https://oss.oracle.com/licenses/upl/
* @ignore
*/
-import oj from 'ojs/ojcore-base';
-import { parseJSONFromFontFamily } from 'ojs/ojthemeutils';
+import oj from './ojcore-base.js';
+import { parseJSONFromFontFamily } from './ojthemeutils.js';
/**
* @namespace GanttUtils
diff --git a/dist/js/libs/oj/debug_esm/ojgauge-toolkit.js b/dist/js/libs/oj/debug_esm/ojgauge-toolkit.js
index 2469279a..34d0913f 100644
--- a/dist/js/libs/oj/debug_esm/ojgauge-toolkit.js
+++ b/dist/js/libs/oj/debug_esm/ojgauge-toolkit.js
@@ -5,8 +5,8 @@
* as shown at https://oss.oracle.com/licenses/upl/
* @ignore
*/
-import { Rectangle, ResourceUtils, OutputText, TextUtils, MultilineText, Automation, EventManager, TouchEvent, KeyboardEvent, KeyboardHandler, Agent, EventFactory, BaseComponent, Rect, Container, SelectionEffectUtils, CustomDatatipPeer, SimpleObjPeer, CSSStyle, BlackBoxAnimationHandler, CustomAnimation, Animator, ParallelPlayable, AriaUtils, Displayable, BaseComponentDefaults, JsonUtils, ColorUtils, Cache, Polygon, Circle, Path, DisplayableUtils, PathUtils, PolygonUtils, LinearGradientFill, Matrix, Use, ImageMarker, ImageLoader, ClipPath, Math as Math$1, Line, Stroke, Shadow, Easing } from 'ojs/ojdvt-toolkit';
-import { LinearScaleAxisValueFormatter, DataAxisInfoMixin, BaseAxisInfo } from 'ojs/ojdvt-axis';
+import { Rectangle, ResourceUtils, OutputText, TextUtils, MultilineText, Automation, EventManager, TouchEvent, KeyboardEvent, KeyboardHandler, Agent, EventFactory, BaseComponent, Rect, Container, SelectionEffectUtils, CustomDatatipPeer, SimpleObjPeer, CSSStyle, BlackBoxAnimationHandler, CustomAnimation, Animator, ParallelPlayable, AriaUtils, Displayable, BaseComponentDefaults, JsonUtils, ColorUtils, Cache, Polygon, Circle, Path, DisplayableUtils, PathUtils, PolygonUtils, LinearGradientFill, Matrix, Use, ImageMarker, ImageLoader, ClipPath, Math as Math$1, Line, Stroke, Shadow, Easing } from './ojdvt-toolkit.js';
+import { LinearScaleAxisValueFormatter, DataAxisInfoMixin, BaseAxisInfo } from './ojdvt-axis.js';
/**
* Style related utility functions for gauge components.
diff --git a/dist/js/libs/oj/debug_esm/ojgauge.js b/dist/js/libs/oj/debug_esm/ojgauge.js
index f652540e..103d7674 100644
--- a/dist/js/libs/oj/debug_esm/ojgauge.js
+++ b/dist/js/libs/oj/debug_esm/ojgauge.js
@@ -5,15 +5,15 @@
* as shown at https://oss.oracle.com/licenses/upl/
* @ignore
*/
-import 'ojs/ojcomponentcore';
-import oj from 'ojs/ojcore-base';
-import DvtAttributeUtils from 'ojs/ojdvt-base';
+import './ojcomponentcore.js';
+import oj from './ojcore-base.js';
+import DvtAttributeUtils from './ojdvt-base.js';
import $ from 'jquery';
-import { error } from 'ojs/ojlogger';
-import * as ConverterUtils from 'ojs/ojconverterutils-i18n';
-import * as NumberConverter from 'ojs/ojconverter-number';
-import LabelledByUtils from 'ojs/ojlabelledbyutils';
-import { LedGauge, RatingGauge, StatusMeterGauge } from 'ojs/ojgauge-toolkit';
+import { error } from './ojlogger.js';
+import * as ConverterUtils from './ojconverterutils-i18n.js';
+import * as NumberConverter from './ojconverter-number.js';
+import LabelledByUtils from './ojlabelledbyutils.js';
+import { LedGauge, RatingGauge, StatusMeterGauge } from './ojgauge-toolkit.js';
/**
* Ignore tag only needed for DVTs that have jsDoc in separate _doc.js files.
diff --git a/dist/js/libs/oj/debug_esm/ojgestureutils.js b/dist/js/libs/oj/debug_esm/ojgestureutils.js
index 02feb8f2..7add73b8 100644
--- a/dist/js/libs/oj/debug_esm/ojgestureutils.js
+++ b/dist/js/libs/oj/debug_esm/ojgestureutils.js
@@ -6,8 +6,8 @@
* @ignore
*/
import $ from 'jquery';
-import { PRESS_HOLD_THRESHOLD, isTouchSupported } from 'ojs/ojdomutils';
-import oj from 'ojs/ojcore-base';
+import { PRESS_HOLD_THRESHOLD, isTouchSupported } from './ojdomutils.js';
+import oj from './ojcore-base.js';
/* jslint browser: true*/
diff --git a/dist/js/libs/oj/debug_esm/ojgroupingdataprovider.js b/dist/js/libs/oj/debug_esm/ojgroupingdataprovider.js
index 9f347bb7..acaa87bc 100644
--- a/dist/js/libs/oj/debug_esm/ojgroupingdataprovider.js
+++ b/dist/js/libs/oj/debug_esm/ojgroupingdataprovider.js
@@ -5,13 +5,13 @@
* as shown at https://oss.oracle.com/licenses/upl/
* @ignore
*/
-import oj from 'ojs/ojcore-base';
+import oj from './ojcore-base.js';
import { observableArray } from 'knockout';
-import ArrayTreeDataProvider from 'ojs/ojarraytreedataprovider';
-import ArrayDataProvider from 'ojs/ojarraydataprovider';
-import { DataProviderMutationEvent, DataProviderRefreshEvent } from 'ojs/ojdataprovider';
-import { EventTargetMixin } from 'ojs/ojeventtarget';
-import KeyMap from 'ojs/ojmap';
+import ArrayTreeDataProvider from './ojarraytreedataprovider.js';
+import ArrayDataProvider from './ojarraydataprovider.js';
+import { DataProviderMutationEvent, DataProviderRefreshEvent } from './ojdataprovider.js';
+import { EventTargetMixin } from './ojeventtarget.js';
+import KeyMap from './ojmap.js';
/* jslint browser: true,devel:true*/
/**
diff --git a/dist/js/libs/oj/debug_esm/ojhighlighttext.js b/dist/js/libs/oj/debug_esm/ojhighlighttext.js
index 004e3c23..678c1676 100644
--- a/dist/js/libs/oj/debug_esm/ojhighlighttext.js
+++ b/dist/js/libs/oj/debug_esm/ojhighlighttext.js
@@ -7,8 +7,8 @@
*/
import { jsx } from 'preact/jsx-runtime';
import { Component } from 'preact';
-import { Root, customElement } from 'ojs/ojvcomponent';
-import oj from 'ojs/ojcore-base';
+import { Root, customElement } from './ojvcomponent.js';
+import oj from './ojcore-base.js';
var __decorate = (null && null.__decorate) || function (decorators, target, key, desc) {
var c = arguments.length, r = c < 3 ? target : desc === null ? desc = Object.getOwnPropertyDescriptor(target, key) : desc, d;
diff --git a/dist/js/libs/oj/debug_esm/ojimmutabletreedatautils.js b/dist/js/libs/oj/debug_esm/ojimmutabletreedatautils.js
index c7ba60b4..017486d2 100644
--- a/dist/js/libs/oj/debug_esm/ojimmutabletreedatautils.js
+++ b/dist/js/libs/oj/debug_esm/ojimmutabletreedatautils.js
@@ -46,10 +46,10 @@
* @ojtsexample Find path of 'Today'
* import {
* MutableArrayTreeDataProvider
- * } from 'ojs/ojmutablearraytreedataprovider';
+ * } from './ojmutablearraytreedataprovider.js';
* import {
* findPathByData
- * } from 'ojs/ojimmutabletreedatautils';
+ * } from './ojimmutabletreedatautils.js';
* const baseData = [
* {title:"News", id:"news"},
* {title:"Blogs", id:"blogs", "children": [
@@ -104,11 +104,11 @@
* @ojtsexample Add a child node to 'Today'
* import {
* MutableArrayTreeDataProvider
- * } from 'ojs/ojmutablearraytreedataprovider';
+ * } from './ojmutablearraytreedataprovider.js';
* import {
* addNode,
* findPathByData
- * } from 'ojs/ojimmutabletreedatautils';
+ * } from './ojimmutabletreedatautils.js';
* const baseData = [
* {title:"News", id:"news"},
* {title:"Blogs", id:"blogs", "children": [
@@ -152,11 +152,11 @@
* @ojtsexample Add a new node before 'Archive' by using -1 in path array
* import {
* MutableArrayTreeDataProvider
- * } from 'ojs/ojmutablearraytreedataprovider';
+ * } from './ojmutablearraytreedataprovider.js';
* import {
* addNode,
* findPathByData
- * } from 'ojs/ojimmutabletreedatautils';
+ * } from './ojimmutabletreedatautils.js';
* const baseData = [
* {title:"News", id:"news"},
* {title:"Blogs", id:"blogs", "children": [
@@ -226,11 +226,11 @@
* @ojtsexample Update 'Today' title
* import {
* MutableArrayTreeDataProvider
- * } from 'ojs/ojmutablearraytreedataprovider';
+ * } from './ojmutablearraytreedataprovider.js';
* import {
* replaceNode,
* findPathByData
- * } from 'ojs/ojimmutabletreedatautils';
+ * } from './ojimmutabletreedatautils.js';
* const baseData = [
* {title:"News", id:"news"},
* {title:"Blogs", id:"blogs", "children": [
@@ -292,11 +292,11 @@
* @ojtsexample Remove node 'Today'
* import {
* MutableArrayTreeDataProvider
- * } from 'ojs/ojmutablearraytreedataprovider';
+ * } from './ojmutablearraytreedataprovider.js';
* import {
* removeNode,
* findPathByData
- * } from 'ojs/ojimmutabletreedatautils';
+ * } from './ojimmutabletreedatautils.js';
* const baseData = [
* {title:"News", id:"news"},
* {title:"Blogs", id:"blogs", "children": [
@@ -364,10 +364,10 @@
* @ojtsexample Add node
* import {
* MutableArrayTreeDataProvider
- * } from 'ojs/ojmutablearraytreedataprovider';
+ * } from './ojmutablearraytreedataprovider.js';
* import {
* spliceNode
- * } from 'ojs/ojimmutabletreedatautils';
+ * } from './ojimmutabletreedatautils.js';
* const oldData = [
{ title: 'News', id: 'news' },
{
@@ -386,10 +386,10 @@
* @ojtsexample remove node
* import {
* MutableArrayTreeDataProvider
-* } from 'ojs/ojmutablearraytreedataprovider';
+* } from './ojmutablearraytreedataprovider.js';
* import {
* spliceNode
-* } from 'ojs/ojimmutabletreedatautils';
+* } from './ojimmutabletreedatautils.js';
* const oldData = [
{ title: 'News', id: 'news' },
{
@@ -407,10 +407,10 @@
* @ojtsexample update node
* import {
* MutableArrayTreeDataProvider
-* } from 'ojs/ojmutablearraytreedataprovider';
+* } from './ojmutablearraytreedataprovider.js';
* import {
* spliceNode
-* } from 'ojs/ojimmutabletreedatautils';
+* } from './ojimmutabletreedatautils.js';
* const oldData = [
{ title: 'News', id: 'news' },
{
diff --git a/dist/js/libs/oj/debug_esm/ojindexer.js b/dist/js/libs/oj/debug_esm/ojindexer.js
index 78d32b56..f6d1bce0 100644
--- a/dist/js/libs/oj/debug_esm/ojindexer.js
+++ b/dist/js/libs/oj/debug_esm/ojindexer.js
@@ -5,14 +5,14 @@
* as shown at https://oss.oracle.com/licenses/upl/
* @ignore
*/
-import oj from 'ojs/ojcore-base';
-import { getTranslatedString } from 'ojs/ojtranslation';
+import oj from './ojcore-base.js';
+import { getTranslatedString } from './ojtranslation.js';
import $ from 'jquery';
import { Pan, DIRECTION_VERTICAL } from 'hammerjs';
-import Context from 'ojs/ojcontext';
-import 'ojs/ojjquery-hammer';
-import 'ojs/ojcomponentcore';
-import { unwrap, isTouchSupported, removeResizeListener, addResizeListener } from 'ojs/ojdomutils';
+import Context from './ojcontext.js';
+import './ojjquery-hammer.js';
+import './ojcomponentcore.js';
+import { unwrap, isTouchSupported, removeResizeListener, addResizeListener } from './ojdomutils.js';
(function () {
var __oj_indexer_metadata =
diff --git a/dist/js/libs/oj/debug_esm/ojindexermodeltreedataprovider.js b/dist/js/libs/oj/debug_esm/ojindexermodeltreedataprovider.js
index 8fd3d65b..751ef652 100644
--- a/dist/js/libs/oj/debug_esm/ojindexermodeltreedataprovider.js
+++ b/dist/js/libs/oj/debug_esm/ojindexermodeltreedataprovider.js
@@ -5,11 +5,11 @@
* as shown at https://oss.oracle.com/licenses/upl/
* @ignore
*/
-import oj from 'ojs/ojcore-base';
-import { getTranslatedString } from 'ojs/ojtranslation';
-import ArrayDataProvider from 'ojs/ojarraydataprovider';
-import ArrayTreeDataProvider from 'ojs/ojarraytreedataprovider';
-import 'ojs/ojindexer';
+import oj from './ojcore-base.js';
+import { getTranslatedString } from './ojtranslation.js';
+import ArrayDataProvider from './ojarraydataprovider.js';
+import ArrayTreeDataProvider from './ojarraytreedataprovider.js';
+import './ojindexer.js';
/**
* Implementation of the IndexerModel and TreeDataProvider based on an array of data set.
diff --git a/dist/js/libs/oj/debug_esm/ojindexermodeltreedatasource.js b/dist/js/libs/oj/debug_esm/ojindexermodeltreedatasource.js
index 85de75df..3f3351f1 100644
--- a/dist/js/libs/oj/debug_esm/ojindexermodeltreedatasource.js
+++ b/dist/js/libs/oj/debug_esm/ojindexermodeltreedatasource.js
@@ -5,9 +5,9 @@
* as shown at https://oss.oracle.com/licenses/upl/
* @ignore
*/
-import oj from 'ojs/ojcore-base';
-import 'ojs/ojindexer';
-import 'ojs/ojdatasource-common';
+import oj from './ojcore-base.js';
+import './ojindexer.js';
+import './ojdatasource-common.js';
/**
* Implementation of the IndexerModel and TreeDataSource based on an array of data set.
diff --git a/dist/js/libs/oj/debug_esm/ojinputnumber.js b/dist/js/libs/oj/debug_esm/ojinputnumber.js
index 070719e3..1b36e73f 100644
--- a/dist/js/libs/oj/debug_esm/ojinputnumber.js
+++ b/dist/js/libs/oj/debug_esm/ojinputnumber.js
@@ -5,17 +5,17 @@
* as shown at https://oss.oracle.com/licenses/upl/
* @ignore
*/
-import oj from 'ojs/ojcore-base';
+import oj from './ojcore-base.js';
import $ from 'jquery';
-import 'ojs/ojcontext';
-import 'ojs/ojbutton';
-import { EditableValueUtils } from 'ojs/ojeditablevalue';
-import { setDefaultOptions, createDynamicPropertyGetter } from 'ojs/ojcomponentcore';
-import { unwrap, recentTouchEnd } from 'ojs/ojdomutils';
-import { getCachedCSSVarValues } from 'ojs/ojthemeutils';
-import { error, warn } from 'ojs/ojlogger';
-import NumberRangeValidator from 'ojs/ojvalidator-numberrange';
-import { IntlNumberConverter } from 'ojs/ojconverter-number';
+import './ojcontext.js';
+import './ojbutton.js';
+import { EditableValueUtils } from './ojeditablevalue.js';
+import { setDefaultOptions, createDynamicPropertyGetter } from './ojcomponentcore.js';
+import { unwrap, recentTouchEnd } from './ojdomutils.js';
+import { getCachedCSSVarValues } from './ojthemeutils.js';
+import { error, warn } from './ojlogger.js';
+import NumberRangeValidator from './ojvalidator-numberrange.js';
+import { IntlNumberConverter } from './ojconverter-number.js';
(function () {
var __oj_input_number_metadata =
diff --git a/dist/js/libs/oj/debug_esm/ojinputsearch.js b/dist/js/libs/oj/debug_esm/ojinputsearch.js
index f2a9150e..4657407b 100644
--- a/dist/js/libs/oj/debug_esm/ojinputsearch.js
+++ b/dist/js/libs/oj/debug_esm/ojinputsearch.js
@@ -6,21 +6,21 @@
* @ignore
*/
import { jsx, jsxs } from 'preact/jsx-runtime';
-import { recentTouchEnd, getReadingDirection } from 'ojs/ojdomutils';
-import 'ojs/ojlistdataproviderview';
-import oj from 'ojs/ojcore-base';
-import { getDeviceRenderMode, getDeviceType } from 'ojs/ojconfig';
-import Context from 'ojs/ojcontext';
-import { error } from 'ojs/ojlogger';
-import { parseJSONFromFontFamily, getCachedCSSVarValues } from 'ojs/ojthemeutils';
-import { getTimer } from 'ojs/ojtimerutils';
-import { getTranslatedString } from 'ojs/ojtranslation';
+import { recentTouchEnd, getReadingDirection } from './ojdomutils.js';
+import './ojlistdataproviderview.js';
+import oj from './ojcore-base.js';
+import { getDeviceRenderMode, getDeviceType } from './ojconfig.js';
+import Context from './ojcontext.js';
+import { error } from './ojlogger.js';
+import { parseJSONFromFontFamily, getCachedCSSVarValues } from './ojthemeutils.js';
+import { getTimer } from './ojtimerutils.js';
+import { getTranslatedString } from './ojtranslation.js';
import { Component } from 'preact';
-import { HighlightText } from 'ojs/ojhighlighttext';
-import { getUniqueId, Root, customElement } from 'ojs/ojvcomponent';
-import { PositionUtils, VPopup } from 'ojs/ojpopupcore';
-import { getAbortReason } from 'ojs/ojabortreason';
-import { DebouncingDataProviderView } from 'ojs/ojdebouncingdataproviderview';
+import { HighlightText } from './ojhighlighttext.js';
+import { getUniqueId, Root, customElement } from './ojvcomponent.js';
+import { PositionUtils, VPopup } from './ojpopupcore.js';
+import { getAbortReason } from './ojabortreason.js';
+import { DebouncingDataProviderView } from './ojdebouncingdataproviderview.js';
class InputSearchSkeleton extends Component {
constructor(props) {
diff --git a/dist/js/libs/oj/debug_esm/ojinputtext.js b/dist/js/libs/oj/debug_esm/ojinputtext.js
index bda622a9..b6645f6d 100644
--- a/dist/js/libs/oj/debug_esm/ojinputtext.js
+++ b/dist/js/libs/oj/debug_esm/ojinputtext.js
@@ -5,15 +5,15 @@
* as shown at https://oss.oracle.com/licenses/upl/
* @ignore
*/
-import 'ojs/ojcore';
+import './ojcore.js';
import $ from 'jquery';
-import 'ojs/ojthemeutils';
-import { EditableValueUtils } from 'ojs/ojeditablevalue';
-import oj from 'ojs/ojcore-base';
-import { unwrap, isAncestorOrSelf } from 'ojs/ojdomutils';
-import LengthFilter from 'ojs/ojfilter-length';
-import RegExpValidator from 'ojs/ojvalidator-regexp';
-import { CustomElementUtils } from 'ojs/ojcustomelement-utils';
+import './ojthemeutils.js';
+import { EditableValueUtils } from './ojeditablevalue.js';
+import oj from './ojcore-base.js';
+import { unwrap, isAncestorOrSelf } from './ojdomutils.js';
+import LengthFilter from './ojfilter-length.js';
+import RegExpValidator from './ojvalidator-regexp.js';
+import { CustomElementUtils } from './ojcustomelement-utils.js';
(function () {
var bindingMeta = {
diff --git a/dist/js/libs/oj/debug_esm/ojjoiningdataprovider.js b/dist/js/libs/oj/debug_esm/ojjoiningdataprovider.js
index d74c9ced..5c8ca51b 100644
--- a/dist/js/libs/oj/debug_esm/ojjoiningdataprovider.js
+++ b/dist/js/libs/oj/debug_esm/ojjoiningdataprovider.js
@@ -5,11 +5,11 @@
* as shown at https://oss.oracle.com/licenses/upl/
* @ignore
*/
-import ojMap from 'ojs/ojmap';
-import ojSet from 'ojs/ojset';
-import { wrapWithAbortHandling, FilterUtils } from 'ojs/ojdataprovider';
-import { EventTargetMixin } from 'ojs/ojeventtarget';
-import { warn } from 'ojs/ojlogger';
+import ojMap from './ojmap.js';
+import ojSet from './ojset.js';
+import { wrapWithAbortHandling, FilterUtils } from './ojdataprovider.js';
+import { EventTargetMixin } from './ojeventtarget.js';
+import { warn } from './ojlogger.js';
/**
* @preserve Copyright 2013 jQuery Foundation and other contributors
diff --git a/dist/js/libs/oj/debug_esm/ojjquery-hammer.js b/dist/js/libs/oj/debug_esm/ojjquery-hammer.js
index f7049124..849db136 100644
--- a/dist/js/libs/oj/debug_esm/ojjquery-hammer.js
+++ b/dist/js/libs/oj/debug_esm/ojjquery-hammer.js
@@ -5,7 +5,7 @@
* as shown at https://oss.oracle.com/licenses/upl/
* @ignore
*/
-import { warn } from 'ojs/ojlogger';
+import { warn } from './ojlogger.js';
import * as Hammer from 'hammerjs';
import { Manager } from 'hammerjs';
import $ from 'jquery';
diff --git a/dist/js/libs/oj/debug_esm/ojjsontreedatasource.js b/dist/js/libs/oj/debug_esm/ojjsontreedatasource.js
index 0318cd3e..87e066e5 100644
--- a/dist/js/libs/oj/debug_esm/ojjsontreedatasource.js
+++ b/dist/js/libs/oj/debug_esm/ojjsontreedatasource.js
@@ -5,9 +5,9 @@
* as shown at https://oss.oracle.com/licenses/upl/
* @ignore
*/
-import oj from 'ojs/ojcore-base';
-import 'ojs/ojdatasource-common';
-import { error } from 'ojs/ojlogger';
+import oj from './ojcore-base.js';
+import './ojdatasource-common.js';
+import { error } from './ojlogger.js';
/**
* A JsonNodeSet represents a collection of nodes. The JsonNodeSet is an object returned by the success callback
diff --git a/dist/js/libs/oj/debug_esm/ojkeyboardfocus-utils.js b/dist/js/libs/oj/debug_esm/ojkeyboardfocus-utils.js
index 885a98e3..8dcb7839 100644
--- a/dist/js/libs/oj/debug_esm/ojkeyboardfocus-utils.js
+++ b/dist/js/libs/oj/debug_esm/ojkeyboardfocus-utils.js
@@ -6,9 +6,9 @@
* @ignore
*/
import $ from 'jquery';
-import oj from 'ojs/ojcore-base';
-import { ZOrderUtils } from 'ojs/ojpopupcore';
-import { getLogicalParent } from 'ojs/ojdomutils';
+import oj from './ojcore-base.js';
+import { ZOrderUtils } from './ojpopupcore.js';
+import { getLogicalParent } from './ojdomutils.js';
/**
* @private
diff --git a/dist/js/libs/oj/debug_esm/ojkeyset.js b/dist/js/libs/oj/debug_esm/ojkeyset.js
index 53a2b938..300f07e8 100644
--- a/dist/js/libs/oj/debug_esm/ojkeyset.js
+++ b/dist/js/libs/oj/debug_esm/ojkeyset.js
@@ -5,8 +5,8 @@
* as shown at https://oss.oracle.com/licenses/upl/
* @ignore
*/
-import oj from 'ojs/ojcore-base';
-import KeySetImpl$1 from 'ojs/ojkeysetimpl';
+import oj from './ojcore-base.js';
+import KeySetImpl$1 from './ojkeysetimpl.js';
/**
* A set of unique keys that will not change once it's created. It contains mutation methods that will create a copy of this set.
diff --git a/dist/js/libs/oj/debug_esm/ojkeysetimpl.js b/dist/js/libs/oj/debug_esm/ojkeysetimpl.js
index d40c2106..abcaf64e 100644
--- a/dist/js/libs/oj/debug_esm/ojkeysetimpl.js
+++ b/dist/js/libs/oj/debug_esm/ojkeysetimpl.js
@@ -5,7 +5,7 @@
* as shown at https://oss.oracle.com/licenses/upl/
* @ignore
*/
-import oj from 'ojs/ojcore-base';
+import oj from './ojcore-base.js';
/**
* Contains all the core functionalities of KeySet.
diff --git a/dist/js/libs/oj/debug_esm/ojknockout-base.js b/dist/js/libs/oj/debug_esm/ojknockout-base.js
index 4f283943..dd72714f 100644
--- a/dist/js/libs/oj/debug_esm/ojknockout-base.js
+++ b/dist/js/libs/oj/debug_esm/ojknockout-base.js
@@ -6,21 +6,21 @@
* @ignore
*/
import { bindingHandlers, computed, utils, computedContext, virtualElements, applyBindingsToDescendants, version, unwrap, ignoreDependencies, isObservable, isWriteableObservable, contextFor, cleanNode, observable, pureComputed } from 'knockout';
-import BindingProviderImpl from 'ojs/ojkoshared';
-import oj$1 from 'ojs/ojcore';
-import { isElementRegistered, isComposite, isVComponent, getMetadata } from 'ojs/ojcustomelement-registry';
-import * as DomUtils from 'ojs/ojdomutils';
-import { setInKoCleanExternal } from 'ojs/ojdomutils';
-import { error, info } from 'ojs/ojlogger';
-import { AttributeUtils, CustomElementUtils, JetElementError, KoBindingUtils, OJ_BIND_CONVERTED_NODE, ElementUtils } from 'ojs/ojcustomelement-utils';
-import { performMonitoredWriteback } from 'ojs/ojmonitoring';
-import { CONSUMED_CONTEXT, getPropagationMetadataViaCache, STATIC_PROPAGATION } from 'ojs/ojbindpropagation';
-import KeySetImpl from 'ojs/ojkeysetimpl';
-import Context from 'ojs/ojcontext';
-import templateEngine from 'ojs/ojtemplateengine-ko';
-import oj$2 from 'ojs/ojcore-base';
-import * as KnockoutTemplateUtils from 'ojs/ojknockouttemplateutils';
-import * as ResponsiveKnockoutUtils from 'ojs/ojresponsiveknockoututils';
+import BindingProviderImpl from './ojkoshared.js';
+import oj$1 from './ojcore.js';
+import { isElementRegistered, isComposite, isVComponent, getMetadata } from './ojcustomelement-registry.js';
+import * as DomUtils from './ojdomutils.js';
+import { setInKoCleanExternal } from './ojdomutils.js';
+import { error, info } from './ojlogger.js';
+import { AttributeUtils, CustomElementUtils, JetElementError, KoBindingUtils, OJ_BIND_CONVERTED_NODE, ElementUtils } from './ojcustomelement-utils.js';
+import { performMonitoredWriteback } from './ojmonitoring.js';
+import { CONSUMED_CONTEXT, getPropagationMetadataViaCache, STATIC_PROPAGATION } from './ojbindpropagation.js';
+import KeySetImpl from './ojkeysetimpl.js';
+import Context from './ojcontext.js';
+import templateEngine from './ojtemplateengine-ko.js';
+import oj$2 from './ojcore-base.js';
+import * as KnockoutTemplateUtils from './ojknockouttemplateutils.js';
+import * as ResponsiveKnockoutUtils from './ojresponsiveknockoututils.js';
/**
* @ojoverviewdoc BindingOverview - [4]JET Binding Elements
diff --git a/dist/js/libs/oj/debug_esm/ojknockout-keyset.js b/dist/js/libs/oj/debug_esm/ojknockout-keyset.js
index 134eeff0..1321c1da 100644
--- a/dist/js/libs/oj/debug_esm/ojknockout-keyset.js
+++ b/dist/js/libs/oj/debug_esm/ojknockout-keyset.js
@@ -6,7 +6,7 @@
* @ignore
*/
import { observable, utils } from 'knockout';
-import { ExpandedKeySet, KeySetImpl } from 'ojs/ojkeyset';
+import { ExpandedKeySet, KeySetImpl } from './ojkeyset.js';
class ObservableExpandedKeySet {
constructor(initialValue) {
diff --git a/dist/js/libs/oj/debug_esm/ojknockout-legacy.js b/dist/js/libs/oj/debug_esm/ojknockout-legacy.js
index 250e8c54..9ac38f4b 100644
--- a/dist/js/libs/oj/debug_esm/ojknockout-legacy.js
+++ b/dist/js/libs/oj/debug_esm/ojknockout-legacy.js
@@ -6,14 +6,14 @@
* @ignore
*/
import 'jqueryui-amd/widget';
-import BindingProviderImpl from 'ojs/ojkoshared';
+import BindingProviderImpl from './ojkoshared.js';
import * as ko from 'knockout';
import { bindingHandlers, applyBindingsToDescendants, ignoreDependencies, computed, utils, isObservable, isWriteableObservable, toJS, jsonExpressionRewriting, renderTemplate, virtualElements } from 'knockout';
-import { error } from 'ojs/ojlogger';
-import oj from 'ojs/ojcore';
+import { error } from './ojlogger.js';
+import oj from './ojcore.js';
import $ from 'jquery';
-import { ComponentBinding as ComponentBinding$1, ComponentChangeTracker, __ExpressionUtils } from 'ojs/ojknockout-base';
-import { isTouchSupported } from 'ojs/ojdomutils';
+import { ComponentBinding as ComponentBinding$1, ComponentChangeTracker, __ExpressionUtils } from './ojknockout-base.js';
+import { isTouchSupported } from './ojdomutils.js';
/**
* This is extension of the ComponentBinding class defined in ojknockout-base.
diff --git a/dist/js/libs/oj/debug_esm/ojknockout-model.js b/dist/js/libs/oj/debug_esm/ojknockout-model.js
index 701fdce0..e89389fd 100644
--- a/dist/js/libs/oj/debug_esm/ojknockout-model.js
+++ b/dist/js/libs/oj/debug_esm/ojknockout-model.js
@@ -5,9 +5,9 @@
* as shown at https://oss.oracle.com/licenses/upl/
* @ignore
*/
-import oj from 'ojs/ojcore';
+import oj from './ojcore.js';
import { observableArray, isObservable, observable } from 'knockout';
-import { Collection, Events, Model } from 'ojs/ojmodel';
+import { Collection, Events, Model } from './ojmodel.js';
/**
* @namespace oj.KnockoutUtils
diff --git a/dist/js/libs/oj/debug_esm/ojknockout-validation.js b/dist/js/libs/oj/debug_esm/ojknockout-validation.js
index 845caf61..17ef60af 100644
--- a/dist/js/libs/oj/debug_esm/ojknockout-validation.js
+++ b/dist/js/libs/oj/debug_esm/ojknockout-validation.js
@@ -5,11 +5,11 @@
* as shown at https://oss.oracle.com/licenses/upl/
* @ignore
*/
-import oj from 'ojs/ojcore';
+import oj from './ojcore.js';
import $ from 'jquery';
-import Context from 'ojs/ojcontext';
-import Message from 'ojs/ojmessaging';
-import 'ojs/ojknockout';
+import Context from './ojcontext.js';
+import Message from './ojmessaging.js';
+import './ojknockout.js';
import { isWriteableObservable, isObservable } from 'knockout';
/**
diff --git a/dist/js/libs/oj/debug_esm/ojknockout.js b/dist/js/libs/oj/debug_esm/ojknockout.js
index c3b829bf..c93ec750 100644
--- a/dist/js/libs/oj/debug_esm/ojknockout.js
+++ b/dist/js/libs/oj/debug_esm/ojknockout.js
@@ -5,7 +5,7 @@
* as shown at https://oss.oracle.com/licenses/upl/
* @ignore
*/
-import 'ojs/ojknockout-base';
+import './ojknockout-base.js';
/**
*Â @license
diff --git a/dist/js/libs/oj/debug_esm/ojknockoutrouteradapter.js b/dist/js/libs/oj/debug_esm/ojknockoutrouteradapter.js
index 88153f54..e4a46d73 100644
--- a/dist/js/libs/oj/debug_esm/ojknockoutrouteradapter.js
+++ b/dist/js/libs/oj/debug_esm/ojknockoutrouteradapter.js
@@ -6,7 +6,7 @@
* @ignore
*/
import { observable, pureComputed } from 'knockout';
-import { info } from 'ojs/ojlogger';
+import { info } from './ojlogger.js';
/**
* A Knockout adapter, to be used in conjunction with {@link CoreRouter}, to allow
diff --git a/dist/js/libs/oj/debug_esm/ojkoshared.js b/dist/js/libs/oj/debug_esm/ojkoshared.js
index 4195a988..dfb29fe2 100644
--- a/dist/js/libs/oj/debug_esm/ojkoshared.js
+++ b/dist/js/libs/oj/debug_esm/ojkoshared.js
@@ -5,11 +5,11 @@
* as shown at https://oss.oracle.com/licenses/upl/
* @ignore
*/
-import oj from 'ojs/ojcore-base';
+import oj from './ojcore-base.js';
import { bindingProvider, components, ignoreDependencies, virtualElements, nativeTemplateEngine, templateSources, utils, expressionRewriting } from 'knockout';
-import { getExpressionEvaluator } from 'ojs/ojconfig';
-import { error } from 'ojs/ojlogger';
-import { getTemplateContent } from 'ojs/ojhtmlutils';
+import { getExpressionEvaluator } from './ojconfig.js';
+import { error } from './ojlogger.js';
+import { getTemplateContent } from './ojhtmlutils.js';
/**
* @private
diff --git a/dist/js/libs/oj/debug_esm/ojlabel.js b/dist/js/libs/oj/debug_esm/ojlabel.js
index 08d834d1..0ec24bd0 100644
--- a/dist/js/libs/oj/debug_esm/ojlabel.js
+++ b/dist/js/libs/oj/debug_esm/ojlabel.js
@@ -5,16 +5,16 @@
* as shown at https://oss.oracle.com/licenses/upl/
* @ignore
*/
-import 'ojs/ojcore';
-import 'ojs/ojjquery-hammer';
-import 'ojs/ojcomponentcore';
-import 'ojs/ojpopup';
-import oj from 'ojs/ojcore-base';
+import './ojcore.js';
+import './ojjquery-hammer.js';
+import './ojcomponentcore.js';
+import './ojpopup.js';
+import oj from './ojcore-base.js';
import $ from 'jquery';
import { Press, Tap } from 'hammerjs';
-import { info } from 'ojs/ojlogger';
-import Context from 'ojs/ojcontext';
-import { isTouchSupported, validateURL, PRESS_HOLD_THRESHOLD, recentTouchStart, unwrap } from 'ojs/ojdomutils';
+import { info } from './ojlogger.js';
+import Context from './ojcontext.js';
+import { isTouchSupported, validateURL, PRESS_HOLD_THRESHOLD, recentTouchStart, unwrap } from './ojdomutils.js';
(function () {
/**
diff --git a/dist/js/libs/oj/debug_esm/ojlabelledbyutils.js b/dist/js/libs/oj/debug_esm/ojlabelledbyutils.js
index b8834b8b..d1ba1359 100644
--- a/dist/js/libs/oj/debug_esm/ojlabelledbyutils.js
+++ b/dist/js/libs/oj/debug_esm/ojlabelledbyutils.js
@@ -5,7 +5,7 @@
* as shown at https://oss.oracle.com/licenses/upl/
* @ignore
*/
-import 'ojs/ojlabel';
+import './ojlabel.js';
/**
* @class oj.LabelledByUtils
diff --git a/dist/js/libs/oj/debug_esm/ojlabelvalue.js b/dist/js/libs/oj/debug_esm/ojlabelvalue.js
index 59e51ea2..9ed160a2 100644
--- a/dist/js/libs/oj/debug_esm/ojlabelvalue.js
+++ b/dist/js/libs/oj/debug_esm/ojlabelvalue.js
@@ -5,10 +5,10 @@
* as shown at https://oss.oracle.com/licenses/upl/
* @ignore
*/
-import 'ojs/ojcore';
-import 'ojs/ojcomponentcore';
-import 'ojs/ojlabel';
-import oj from 'ojs/ojcore-base';
+import './ojcore.js';
+import './ojcomponentcore.js';
+import './ojlabel.js';
+import oj from './ojcore-base.js';
/**
* @ojcomponent oj.ojLabelValue
diff --git a/dist/js/libs/oj/debug_esm/ojlayerutils.js b/dist/js/libs/oj/debug_esm/ojlayerutils.js
index 0af7ac18..d6306a63 100644
--- a/dist/js/libs/oj/debug_esm/ojlayerutils.js
+++ b/dist/js/libs/oj/debug_esm/ojlayerutils.js
@@ -5,7 +5,7 @@
* as shown at https://oss.oracle.com/licenses/upl/
* @ignore
*/
-import oj from 'ojs/ojcore-base';
+import oj from './ojcore-base.js';
/**
* Contains utility functions intended to be used to configure layer
diff --git a/dist/js/libs/oj/debug_esm/ojlegend-toolkit.js b/dist/js/libs/oj/debug_esm/ojlegend-toolkit.js
index e3905f47..5edeab76 100644
--- a/dist/js/libs/oj/debug_esm/ojlegend-toolkit.js
+++ b/dist/js/libs/oj/debug_esm/ojlegend-toolkit.js
@@ -5,7 +5,7 @@
* as shown at https://oss.oracle.com/licenses/upl/
* @ignore
*/
-import { SelectionEffectUtils, IconButton, Displayable, Agent, MouseEvent, KeyboardHandler, Rectangle, Rect, Automation, BaseComponentDefaults, CSSStyle, TextUtils, EventManager, SimpleMarker, EventFactory, SimpleObjPeer, JsonUtils, ToolkitUtils, KeyboardEvent, SimpleScrollableContainer, Container, Dimension, LayoutUtils, OutputText, ImageMarker, PatternFill, Line, Stroke, BaseComponent, CategoryRolloverHandler, Obj, ResourceUtils, AriaUtils } from 'ojs/ojdvt-toolkit';
+import { SelectionEffectUtils, IconButton, Displayable, Agent, MouseEvent, KeyboardHandler, Rectangle, Rect, Automation, BaseComponentDefaults, CSSStyle, TextUtils, EventManager, SimpleMarker, EventFactory, SimpleObjPeer, JsonUtils, ToolkitUtils, KeyboardEvent, SimpleScrollableContainer, Container, Dimension, LayoutUtils, OutputText, ImageMarker, PatternFill, Line, Stroke, BaseComponent, CategoryRolloverHandler, Obj, ResourceUtils, AriaUtils } from './ojdvt-toolkit.js';
/**
* Utility functions for Legend.
diff --git a/dist/js/libs/oj/debug_esm/ojlegend.js b/dist/js/libs/oj/debug_esm/ojlegend.js
index 4a069b08..8c10613e 100644
--- a/dist/js/libs/oj/debug_esm/ojlegend.js
+++ b/dist/js/libs/oj/debug_esm/ojlegend.js
@@ -5,12 +5,12 @@
* as shown at https://oss.oracle.com/licenses/upl/
* @ignore
*/
-import oj from 'ojs/ojcore-base';
-import { setDefaultOptions, createDynamicPropertyGetter } from 'ojs/ojcomponentcore';
-import DvtAttributeUtils from 'ojs/ojdvt-base';
+import oj from './ojcore-base.js';
+import { setDefaultOptions, createDynamicPropertyGetter } from './ojcomponentcore.js';
+import DvtAttributeUtils from './ojdvt-base.js';
import $ from 'jquery';
-import { Legend } from 'ojs/ojlegend-toolkit';
-import { AllKeySetImpl } from 'ojs/ojkeyset';
+import { Legend } from './ojlegend-toolkit.js';
+import { AllKeySetImpl } from './ojkeyset.js';
var __oj_legend_metadata =
{
diff --git a/dist/js/libs/oj/debug_esm/ojlistdataproviderview.js b/dist/js/libs/oj/debug_esm/ojlistdataproviderview.js
index e3614a4b..8b822008 100644
--- a/dist/js/libs/oj/debug_esm/ojlistdataproviderview.js
+++ b/dist/js/libs/oj/debug_esm/ojlistdataproviderview.js
@@ -5,10 +5,10 @@
* as shown at https://oss.oracle.com/licenses/upl/
* @ignore
*/
-import oj from 'ojs/ojcore-base';
-import { wrapWithAbortHandling, DataProviderRefreshEvent, FilterFactory } from 'ojs/ojdataprovider';
-import { EventTargetMixin } from 'ojs/ojeventtarget';
-import { BehaviorSubject } from 'ojs/ojobservable';
+import oj from './ojcore-base.js';
+import { wrapWithAbortHandling, DataProviderRefreshEvent, FilterFactory } from './ojdataprovider.js';
+import { EventTargetMixin } from './ojeventtarget.js';
+import { BehaviorSubject } from './ojobservable.js';
/**
* @preserve Copyright 2013 jQuery Foundation and other contributors
diff --git a/dist/js/libs/oj/debug_esm/ojlistitemlayout.js b/dist/js/libs/oj/debug_esm/ojlistitemlayout.js
index 61edb926..dd0e64c2 100644
--- a/dist/js/libs/oj/debug_esm/ojlistitemlayout.js
+++ b/dist/js/libs/oj/debug_esm/ojlistitemlayout.js
@@ -6,7 +6,7 @@
* @ignore
*/
import { jsx, jsxs } from 'preact/jsx-runtime';
-import { customElement } from 'ojs/ojvcomponent';
+import { customElement } from './ojvcomponent.js';
import { Component } from 'preact';
import { useRef, useEffect } from 'preact/hooks';
diff --git a/dist/js/libs/oj/debug_esm/ojlistview.js b/dist/js/libs/oj/debug_esm/ojlistview.js
index daf65fed..8de2a5e2 100644
--- a/dist/js/libs/oj/debug_esm/ojlistview.js
+++ b/dist/js/libs/oj/debug_esm/ojlistview.js
@@ -5,25 +5,25 @@
* as shown at https://oss.oracle.com/licenses/upl/
* @ignore
*/
-import oj from 'ojs/ojcore-base';
+import oj from './ojcore-base.js';
import $ from 'jquery';
-import 'ojs/ojcustomelement';
-import { DataProviderContentHandler, IteratingDataProviderContentHandler } from 'ojs/ojdataproviderscroller';
-import Context from 'ojs/ojcontext';
-import { __getTemplateEngine } from 'ojs/ojconfig';
-import { parseJSONFromFontFamily, getCachedCSSVarValues } from 'ojs/ojthemeutils';
-import { __GetWidgetConstructor, setDefaultOptions, createDynamicPropertyGetter } from 'ojs/ojcomponentcore';
-import { enableAllFocusableElements, isFetchAborted, disableAllFocusableElements, isFirefox, isMobileTouchDevice, isIos, isElementIntersectingScrollerBounds, getBrowserVersion, isIE, isElementOrAncestorFocusable, isAndroid, isWindows, isEventClickthroughDisabled, handleActionablePrevTab, handleActionableTab, getFocusableElementsInNode, isEdge, getScrollEventElement, disableDefaultBrowserStyling } from 'ojs/ojdatacollection-common';
-import { fadeIn, startAnimation } from 'ojs/ojanimation';
-import { info, error, warn, log } from 'ojs/ojlogger';
-import { KeySet, KeySetImpl, KeySetUtils } from 'ojs/ojkeyset';
-import KeyMap from 'ojs/ojmap';
-import { getAbortReason } from 'ojs/ojabortreason';
-import { unwrap, removeResizeListener, addResizeListener, getCSSTimeUnitAsMillis, setScrollLeft, isTouchSupported, isMetaKeyPressed } from 'ojs/ojdomutils';
-import 'ojs/ojdataprovideradapter';
-import { CustomElementUtils } from 'ojs/ojcustomelement-utils';
-import { getLogicalChildPopup } from 'ojs/ojkeyboardfocus-utils';
-import { ListViewIndexerModel } from 'ojs/ojindexer';
+import './ojcustomelement.js';
+import { DataProviderContentHandler, IteratingDataProviderContentHandler } from './ojdataproviderscroller.js';
+import Context from './ojcontext.js';
+import { __getTemplateEngine } from './ojconfig.js';
+import { parseJSONFromFontFamily, getCachedCSSVarValues } from './ojthemeutils.js';
+import { __GetWidgetConstructor, setDefaultOptions, createDynamicPropertyGetter } from './ojcomponentcore.js';
+import { enableAllFocusableElements, isFetchAborted, disableAllFocusableElements, isFirefox, isMobileTouchDevice, isIos, isElementIntersectingScrollerBounds, getBrowserVersion, isIE, isElementOrAncestorFocusable, isAndroid, isWindows, isEventClickthroughDisabled, handleActionablePrevTab, handleActionableTab, getFocusableElementsInNode, isEdge, getScrollEventElement, disableDefaultBrowserStyling } from './ojdatacollection-common.js';
+import { fadeIn, startAnimation } from './ojanimation.js';
+import { info, error, warn, log } from './ojlogger.js';
+import { KeySet, KeySetImpl, KeySetUtils } from './ojkeyset.js';
+import KeyMap from './ojmap.js';
+import { getAbortReason } from './ojabortreason.js';
+import { unwrap, removeResizeListener, addResizeListener, getCSSTimeUnitAsMillis, setScrollLeft, isTouchSupported, isMetaKeyPressed } from './ojdomutils.js';
+import './ojdataprovideradapter.js';
+import { CustomElementUtils } from './ojcustomelement-utils.js';
+import { getLogicalChildPopup } from './ojkeyboardfocus-utils.js';
+import { ListViewIndexerModel } from './ojindexer.js';
(function () {
var __oj_list_view_metadata =
@@ -3493,7 +3493,7 @@ const _ojListView = _ListViewUtils.clazz(
new oj.TableDataSourceAdapter(data)
);
} else if (typeof oj.TreeDataSource !== 'undefined' && data instanceof oj.TreeDataSource) {
- var adapterPromise = import('ojs/ojtreedataprovideradapter');
+ var adapterPromise = import('./ojtreedataprovideradapter.js');
if (!adapterPromise) {
throw new Error('Error adapting a TreeDataSource');
}
diff --git a/dist/js/libs/oj/debug_esm/ojlistviewdnd.js b/dist/js/libs/oj/debug_esm/ojlistviewdnd.js
index 562577fc..9ff974d8 100644
--- a/dist/js/libs/oj/debug_esm/ojlistviewdnd.js
+++ b/dist/js/libs/oj/debug_esm/ojlistviewdnd.js
@@ -5,11 +5,11 @@
* as shown at https://oss.oracle.com/licenses/upl/
* @ignore
*/
-import oj from 'ojs/ojcore';
+import oj from './ojcore.js';
import $, { error as error$1 } from 'jquery';
-import { error } from 'ojs/ojlogger';
+import { error } from './ojlogger.js';
import 'ojdnd';
-import 'ojs/ojlistview';
+import './ojlistview.js';
/**
* @ignore
diff --git a/dist/js/libs/oj/debug_esm/ojlocaledata.js b/dist/js/libs/oj/debug_esm/ojlocaledata.js
index 94d27ba5..a87bf958 100644
--- a/dist/js/libs/oj/debug_esm/ojlocaledata.js
+++ b/dist/js/libs/oj/debug_esm/ojlocaledata.js
@@ -5,12 +5,15 @@
* as shown at https://oss.oracle.com/licenses/upl/
* @ignore
*/
-import oj from 'ojs/ojcore-base';
-import { getLocale } from 'ojs/ojconfig';
-import ojldimport from 'ojL10n!ojtranslations/nls/localeElements';
-import { CalendarUtils } from 'ojs/ojcalendarutils';
-
-var ojld = ojldimport;
+import oj from './ojcore-base.js';
+import { getLocale } from './ojconfig.js';
+import { loadMergedAmdBundle } from './ojamdloader.js';
+import { CalendarUtils } from './ojcalendarutils.js';
+
+var ojld = await loadMergedAmdBundle(
+ new URL('../resources/nls/localeElements.js', import.meta.url),
+ new URL('../resources/nls/en-US/localeElements.js', import.meta.url)
+);
/**
* @namespace oj.LocaleData
diff --git a/dist/js/libs/oj/debug_esm/ojmap.js b/dist/js/libs/oj/debug_esm/ojmap.js
index 9de871af..d2f62b76 100644
--- a/dist/js/libs/oj/debug_esm/ojmap.js
+++ b/dist/js/libs/oj/debug_esm/ojmap.js
@@ -5,7 +5,7 @@
* as shown at https://oss.oracle.com/licenses/upl/
* @ignore
*/
-import KeySetImpl from 'ojs/ojkeysetimpl';
+import KeySetImpl from './ojkeysetimpl.js';
/**
* Implementation of the ES6 Map API:
diff --git a/dist/js/libs/oj/debug_esm/ojmasonrylayout.js b/dist/js/libs/oj/debug_esm/ojmasonrylayout.js
index f9c1e84a..8e066cf8 100644
--- a/dist/js/libs/oj/debug_esm/ojmasonrylayout.js
+++ b/dist/js/libs/oj/debug_esm/ojmasonrylayout.js
@@ -5,16 +5,16 @@
* as shown at https://oss.oracle.com/licenses/upl/
* @ignore
*/
-import oj from 'ojs/ojcore-base';
+import oj from './ojcore-base.js';
import $ from 'jquery';
-import Context from 'ojs/ojcontext';
-import { getAutomationMode } from 'ojs/ojconfig';
-import { parseJSONFromFontFamily } from 'ojs/ojthemeutils';
-import { subtreeAttached, subtreeDetached, subtreeHidden, subtreeShown } from 'ojs/ojcomponentcore';
-import { startAnimation } from 'ojs/ojanimation';
-import { warn } from 'ojs/ojlogger';
-import { isTouchSupported, addResizeListener, removeResizeListener, isAncestor } from 'ojs/ojdomutils';
-import FocusUtils from 'ojs/ojfocusutils';
+import Context from './ojcontext.js';
+import { getAutomationMode } from './ojconfig.js';
+import { parseJSONFromFontFamily } from './ojthemeutils.js';
+import { subtreeAttached, subtreeDetached, subtreeHidden, subtreeShown } from './ojcomponentcore.js';
+import { startAnimation } from './ojanimation.js';
+import { warn } from './ojlogger.js';
+import { isTouchSupported, addResizeListener, removeResizeListener, isAncestor } from './ojdomutils.js';
+import FocusUtils from './ojfocusutils.js';
import 'ojdnd';
var __oj_masonry_layout_metadata =
diff --git a/dist/js/libs/oj/debug_esm/ojmenu.js b/dist/js/libs/oj/debug_esm/ojmenu.js
index 87029d93..98f18f22 100644
--- a/dist/js/libs/oj/debug_esm/ojmenu.js
+++ b/dist/js/libs/oj/debug_esm/ojmenu.js
@@ -6,20 +6,20 @@
* @ignore
*/
import $ from 'jquery';
-import 'ojs/ojjquery-hammer';
-import { PositionUtils, ZOrderUtils, PopupService, PopupWhenReadyMediator } from 'ojs/ojpopupcore';
-import 'ojs/ojoption';
-import oj from 'ojs/ojcore-base';
+import './ojjquery-hammer.js';
+import { PositionUtils, ZOrderUtils, PopupService, PopupWhenReadyMediator } from './ojpopupcore.js';
+import './ojoption.js';
+import oj from './ojcore-base.js';
import { Swipe, DIRECTION_HORIZONTAL } from 'hammerjs';
-import Context from 'ojs/ojcontext';
-import { getCachedCSSVarValues } from 'ojs/ojthemeutils';
-import { _OJ_CONTAINER_ATTR, subtreeShown, __GetWidgetConstructor, setDefaultOptions, createDynamicPropertyGetter } from 'ojs/ojcomponentcore';
-import { startAnimation } from 'ojs/ojanimation';
-import { warn } from 'ojs/ojlogger';
-import { getDeviceRenderMode } from 'ojs/ojconfig';
-import { CustomElementUtils } from 'ojs/ojcustomelement-utils';
-import { isElementRegistered } from 'ojs/ojcustomelement-registry';
-import { getTranslatedString } from 'ojs/ojtranslation';
+import Context from './ojcontext.js';
+import { getCachedCSSVarValues } from './ojthemeutils.js';
+import { _OJ_CONTAINER_ATTR, subtreeShown, __GetWidgetConstructor, setDefaultOptions, createDynamicPropertyGetter } from './ojcomponentcore.js';
+import { startAnimation } from './ojanimation.js';
+import { warn } from './ojlogger.js';
+import { getDeviceRenderMode } from './ojconfig.js';
+import { CustomElementUtils } from './ojcustomelement-utils.js';
+import { isElementRegistered } from './ojcustomelement-registry.js';
+import { getTranslatedString } from './ojtranslation.js';
(function () {
// -----------------------------------------------------------------------------
diff --git a/dist/js/libs/oj/debug_esm/ojmenuselectmany.js b/dist/js/libs/oj/debug_esm/ojmenuselectmany.js
index 83aa77e0..80adf4ba 100644
--- a/dist/js/libs/oj/debug_esm/ojmenuselectmany.js
+++ b/dist/js/libs/oj/debug_esm/ojmenuselectmany.js
@@ -5,10 +5,10 @@
* as shown at https://oss.oracle.com/licenses/upl/
* @ignore
*/
-import 'ojs/ojcomponentcore';
-import 'ojs/ojoption';
-import 'ojs/ojdataprovider';
-import { register } from 'ojs/ojcomposite';
+import './ojcomponentcore.js';
+import './ojoption.js';
+import './ojdataprovider.js';
+import { register } from './ojcomposite.js';
/**
* @ojcomponent oj.ojMenuSelectMany
diff --git a/dist/js/libs/oj/debug_esm/ojmessage.js b/dist/js/libs/oj/debug_esm/ojmessage.js
index f9c059dd..56ae0be9 100644
--- a/dist/js/libs/oj/debug_esm/ojmessage.js
+++ b/dist/js/libs/oj/debug_esm/ojmessage.js
@@ -5,22 +5,22 @@
* as shown at https://oss.oracle.com/licenses/upl/
* @ignore
*/
-import 'ojs/ojcore';
-import 'ojs/ojknockout';
-import 'ojs/ojbutton';
-import 'ojs/ojjquery-hammer';
-import oj from 'ojs/ojcore-base';
+import './ojcore.js';
+import './ojknockout.js';
+import './ojbutton.js';
+import './ojjquery-hammer.js';
+import oj from './ojcore-base.js';
import $ from 'jquery';
import { observable } from 'knockout';
-import { startAnimation } from 'ojs/ojanimation';
-import { isTouchSupported, getReadingDirection } from 'ojs/ojdomutils';
-import { subtreeHidden } from 'ojs/ojcomponentcore';
-import { register } from 'ojs/ojcomposite';
-import Context from 'ojs/ojcontext';
+import { startAnimation } from './ojanimation.js';
+import { isTouchSupported, getReadingDirection } from './ojdomutils.js';
+import { subtreeHidden } from './ojcomponentcore.js';
+import { register } from './ojcomposite.js';
+import Context from './ojcontext.js';
import { Swipe, DIRECTION_ALL } from 'hammerjs';
-import { info } from 'ojs/ojlogger';
-import { parseJSONFromFontFamily } from 'ojs/ojthemeutils';
-import { getComponentTranslations, getTranslatedString } from 'ojs/ojtranslation';
+import { info } from './ojlogger.js';
+import { parseJSONFromFontFamily } from './ojthemeutils.js';
+import { getComponentTranslations, getTranslatedString } from './ojtranslation.js';
const ojMessage = {};
@@ -1169,7 +1169,7 @@ MessageViewModel.prototype._formatTimestamp = function () {
};
MessageViewModel.prototype._getConverterPromise = function (timestamp) {
- const dateTimeConverterLoadPromise = import('ojs/ojconverter-datetime');
+ const dateTimeConverterLoadPromise = import('./ojconverter-datetime.js');
return dateTimeConverterLoadPromise.then(
function (__DateTimeConverter) {
// use default format as in UX specs
diff --git a/dist/js/libs/oj/debug_esm/ojmessagebanner.js b/dist/js/libs/oj/debug_esm/ojmessagebanner.js
index 75769fbf..59dcb6e6 100644
--- a/dist/js/libs/oj/debug_esm/ojmessagebanner.js
+++ b/dist/js/libs/oj/debug_esm/ojmessagebanner.js
@@ -8,16 +8,16 @@
import { jsx, jsxs } from 'preact/jsx-runtime';
import { useCallback, useEffect, useState, useContext, useRef, useLayoutEffect, useMemo, useImperativeHandle } from 'preact/hooks';
import { Fragment, Component, createContext, cloneElement, createRef } from 'preact';
-import { getLocale, getDeviceType } from 'ojs/ojconfig';
-import oj from 'ojs/ojcore-base';
-import { error, warn, info, log } from 'ojs/ojlogger';
-import { SoundUtils } from 'ojs/ojsoundutils';
-import { startAnimation } from 'ojs/ojanimation';
-import { getTranslatedString } from 'ojs/ojtranslation';
-import Context from 'ojs/ojcontext';
-import { withDataProvider } from 'ojs/ojdataproviderhandler';
-import { Root, customElement } from 'ojs/ojvcomponent';
-import 'ojs/ojbutton';
+import { getLocale, getDeviceType } from './ojconfig.js';
+import oj from './ojcore-base.js';
+import { error, warn, info, log } from './ojlogger.js';
+import { SoundUtils } from './ojsoundutils.js';
+import { startAnimation } from './ojanimation.js';
+import { getTranslatedString } from './ojtranslation.js';
+import Context from './ojcontext.js';
+import { withDataProvider } from './ojdataproviderhandler.js';
+import { Root, customElement } from './ojvcomponent.js';
+import './ojbutton.js';
/**
* A Component for rendering the message close button
diff --git a/dist/js/libs/oj/debug_esm/ojmessages.js b/dist/js/libs/oj/debug_esm/ojmessages.js
index ea80f7fb..9719aed5 100644
--- a/dist/js/libs/oj/debug_esm/ojmessages.js
+++ b/dist/js/libs/oj/debug_esm/ojmessages.js
@@ -5,22 +5,22 @@
* as shown at https://oss.oracle.com/licenses/upl/
* @ignore
*/
-import oj from 'ojs/ojcore-base';
+import oj from './ojcore-base.js';
import $ from 'jquery';
import { cleanNode, pureComputed } from 'knockout';
-import * as AnimationUtils from 'ojs/ojanimation';
-import Context from 'ojs/ojcontext';
-import { parseJSONFromFontFamily } from 'ojs/ojthemeutils';
-import { getComponentTranslations, getTranslatedString, applyParameters } from 'ojs/ojtranslation';
-import { register } from 'ojs/ojcomposite';
-import { subtreeShown, subtreeHidden } from 'ojs/ojcomponentcore';
-import { error } from 'ojs/ojlogger';
-import { isAncestor, getReadingDirection, isAncestorOrSelf } from 'ojs/ojdomutils';
-import 'ojs/ojknockout';
-import { ZOrderUtils, PositionUtils, PopupService } from 'ojs/ojpopupcore';
-import 'ojs/ojmessage';
-import 'ojs/ojdataprovider';
-import { CustomElementUtils } from 'ojs/ojcustomelement-utils';
+import * as AnimationUtils from './ojanimation.js';
+import Context from './ojcontext.js';
+import { parseJSONFromFontFamily } from './ojthemeutils.js';
+import { getComponentTranslations, getTranslatedString, applyParameters } from './ojtranslation.js';
+import { register } from './ojcomposite.js';
+import { subtreeShown, subtreeHidden } from './ojcomponentcore.js';
+import { error } from './ojlogger.js';
+import { isAncestor, getReadingDirection, isAncestorOrSelf } from './ojdomutils.js';
+import './ojknockout.js';
+import { ZOrderUtils, PositionUtils, PopupService } from './ojpopupcore.js';
+import './ojmessage.js';
+import './ojdataprovider.js';
+import { CustomElementUtils } from './ojcustomelement-utils.js';
/* jslint browser: true*/
diff --git a/dist/js/libs/oj/debug_esm/ojmessaging.js b/dist/js/libs/oj/debug_esm/ojmessaging.js
index 5bf33ae9..3a40122d 100644
--- a/dist/js/libs/oj/debug_esm/ojmessaging.js
+++ b/dist/js/libs/oj/debug_esm/ojmessaging.js
@@ -5,7 +5,7 @@
* as shown at https://oss.oracle.com/licenses/upl/
* @ignore
*/
-import oj from 'ojs/ojcore-base';
+import oj from './ojcore-base.js';
/**
* Constructs a message object.
diff --git a/dist/js/libs/oj/debug_esm/ojmetadatautils.js b/dist/js/libs/oj/debug_esm/ojmetadatautils.js
index c4ed021c..59b0b77c 100644
--- a/dist/js/libs/oj/debug_esm/ojmetadatautils.js
+++ b/dist/js/libs/oj/debug_esm/ojmetadatautils.js
@@ -5,8 +5,8 @@
* as shown at https://oss.oracle.com/licenses/upl/
* @ignore
*/
-import oj from 'ojs/ojcore-base';
-import { AttributeUtils } from 'ojs/ojcustomelement-utils';
+import oj from './ojcore-base.js';
+import { AttributeUtils } from './ojcustomelement-utils.js';
/**
* Component Metadata utilities.
diff --git a/dist/js/libs/oj/debug_esm/ojmodel.js b/dist/js/libs/oj/debug_esm/ojmodel.js
index 81e2978a..0a390648 100644
--- a/dist/js/libs/oj/debug_esm/ojmodel.js
+++ b/dist/js/libs/oj/debug_esm/ojmodel.js
@@ -5,10 +5,10 @@
* as shown at https://oss.oracle.com/licenses/upl/
* @ignore
*/
-import oj from 'ojs/ojcore-base';
-import { warn, error } from 'ojs/ojlogger';
+import oj from './ojcore-base.js';
+import { warn, error } from './ojlogger.js';
import $ from 'jquery';
-import { getLocale } from 'ojs/ojconfig';
+import { getLocale } from './ojconfig.js';
/**
* @constructor
diff --git a/dist/js/libs/oj/debug_esm/ojmodule-element-utils.js b/dist/js/libs/oj/debug_esm/ojmodule-element-utils.js
index 2622b86e..55bbe76c 100644
--- a/dist/js/libs/oj/debug_esm/ojmodule-element-utils.js
+++ b/dist/js/libs/oj/debug_esm/ojmodule-element-utils.js
@@ -5,8 +5,8 @@
* as shown at https://oss.oracle.com/licenses/upl/
* @ignore
*/
-import oj from 'ojs/ojcore-base';
-import { stringToNodeArray } from 'ojs/ojhtmlutils';
+import oj from './ojcore-base.js';
+import { stringToNodeArray } from './ojhtmlutils.js';
/**
* @namespace
diff --git a/dist/js/libs/oj/debug_esm/ojmodule-element.js b/dist/js/libs/oj/debug_esm/ojmodule-element.js
index 20ef2b48..298fcdc1 100644
--- a/dist/js/libs/oj/debug_esm/ojmodule-element.js
+++ b/dist/js/libs/oj/debug_esm/ojmodule-element.js
@@ -6,10 +6,10 @@
* @ignore
*/
import { observable, ignoreDependencies } from 'knockout';
-import Context from 'ojs/ojcontext';
-import 'ojs/ojmodule';
-import { register } from 'ojs/ojcomposite';
-import { OJ_BIND_CONVERTED_NODE } from 'ojs/ojcustomelement-utils';
+import Context from './ojcontext.js';
+import './ojmodule.js';
+import { register } from './ojcomposite.js';
+import { OJ_BIND_CONVERTED_NODE } from './ojcustomelement-utils.js';
/**
* @ojcomponent oj.ojModule
diff --git a/dist/js/libs/oj/debug_esm/ojmodule.js b/dist/js/libs/oj/debug_esm/ojmodule.js
index 7b7fcab2..8539c7c3 100644
--- a/dist/js/libs/oj/debug_esm/ojmodule.js
+++ b/dist/js/libs/oj/debug_esm/ojmodule.js
@@ -5,11 +5,11 @@
* as shown at https://oss.oracle.com/licenses/upl/
* @ignore
*/
-import oj from 'ojs/ojcore-base';
+import oj from './ojcore-base.js';
import { bindingHandlers, utils, virtualElements, computed, ignoreDependencies, cleanNode, contextFor, bindingProvider, applyBindings } from 'knockout';
-import { error } from 'ojs/ojlogger';
-import Context from 'ojs/ojcontext';
-import { CustomElementUtils } from 'ojs/ojcustomelement-utils';
+import { error } from './ojlogger.js';
+import Context from './ojcontext.js';
+import { CustomElementUtils } from './ojcustomelement-utils.js';
/**
* ojModule Conventions
diff --git a/dist/js/libs/oj/debug_esm/ojmoduleanimations.js b/dist/js/libs/oj/debug_esm/ojmoduleanimations.js
index c2ff56fb..f16d5633 100644
--- a/dist/js/libs/oj/debug_esm/ojmoduleanimations.js
+++ b/dist/js/libs/oj/debug_esm/ojmoduleanimations.js
@@ -7,10 +7,10 @@
*/
import { virtualElements } from 'knockout';
import $ from 'jquery';
-import oj from 'ojs/ojcore-base';
-import { getReadingDirection } from 'ojs/ojdomutils';
-import { parseJSONFromFontFamily } from 'ojs/ojthemeutils';
-import { startAnimation } from 'ojs/ojanimation';
+import oj from './ojcore-base.js';
+import { getReadingDirection } from './ojdomutils.js';
+import { parseJSONFromFontFamily } from './ojthemeutils.js';
+import { startAnimation } from './ojanimation.js';
/**
* A collection of ModuleAnimation implementations that can be specified on the "animation"
diff --git a/dist/js/libs/oj/debug_esm/ojmodulerouter-adapter.js b/dist/js/libs/oj/debug_esm/ojmodulerouter-adapter.js
index 080428f6..b97f8d03 100644
--- a/dist/js/libs/oj/debug_esm/ojmodulerouter-adapter.js
+++ b/dist/js/libs/oj/debug_esm/ojmodulerouter-adapter.js
@@ -5,9 +5,9 @@
* as shown at https://oss.oracle.com/licenses/upl/
* @ignore
*/
-import { error } from 'ojs/ojlogger';
-import { createConfig } from 'ojs/ojmodule-element-utils';
-import * as ModuleAnimations from 'ojs/ojmoduleanimations';
+import { error } from './ojlogger.js';
+import { createConfig } from './ojmodule-element-utils.js';
+import * as ModuleAnimations from './ojmoduleanimations.js';
import { observable } from 'knockout';
/**
diff --git a/dist/js/libs/oj/debug_esm/ojmutablearraydataprovider.js b/dist/js/libs/oj/debug_esm/ojmutablearraydataprovider.js
index 38155343..89183114 100644
--- a/dist/js/libs/oj/debug_esm/ojmutablearraydataprovider.js
+++ b/dist/js/libs/oj/debug_esm/ojmutablearraydataprovider.js
@@ -5,9 +5,9 @@
* as shown at https://oss.oracle.com/licenses/upl/
* @ignore
*/
-import { EventTargetMixin } from 'ojs/ojeventtarget';
-import { ArrayDataProviderImpl, getCapability, createOptimizedKeySet, createOptimizedKeyMap, getVal } from 'ojs/ojarraydataproviderimpl';
-import { getLocale } from 'ojs/ojconfig';
+import { EventTargetMixin } from './ojeventtarget.js';
+import { ArrayDataProviderImpl, getCapability, createOptimizedKeySet, createOptimizedKeyMap, getVal } from './ojarraydataproviderimpl.js';
+import { getLocale } from './ojconfig.js';
/**
* @preserve Copyright 2013 jQuery Foundation and other contributors
diff --git a/dist/js/libs/oj/debug_esm/ojmutablearraytreedataprovider.js b/dist/js/libs/oj/debug_esm/ojmutablearraytreedataprovider.js
index 9b339392..7b0ea4b1 100644
--- a/dist/js/libs/oj/debug_esm/ojmutablearraytreedataprovider.js
+++ b/dist/js/libs/oj/debug_esm/ojmutablearraytreedataprovider.js
@@ -5,10 +5,10 @@
* as shown at https://oss.oracle.com/licenses/upl/
* @ignore
*/
-import oj from 'ojs/ojcore-base';
-import ArrayDataProvider from 'ojs/ojarraydataprovider';
-import { EventTargetMixin } from 'ojs/ojeventtarget';
-import { warn } from 'ojs/ojlogger';
+import oj from './ojcore-base.js';
+import ArrayDataProvider from './ojarraydataprovider.js';
+import { EventTargetMixin } from './ojeventtarget.js';
+import { warn } from './ojlogger.js';
/**
* @preserve Copyright 2013 jQuery Foundation and other contributors
@@ -334,7 +334,7 @@ import { warn } from 'ojs/ojlogger';
* "FetchByKeysParameters","ContainsKeysResults","FetchByKeysResults","FetchByOffsetParameters", "FetchByOffsetResults",
* "FetchListResult","FetchListParameters"]}
* @ojtsexample
- * import { MutableArrayTreeDataProvider } from "ojs/ojmutablearraytreedataprovider";
+ * import { MutableArrayTreeDataProvider } from './ojmutablearraytreedataprovider.js';
* // First initialize the tree data. This can be defined locally or read from file.
* const treeData = [
* {"attr": {"id": "dir1", "title": "Directory 1"},
diff --git a/dist/js/libs/oj/debug_esm/ojmutateeventfilteringdataprovider.js b/dist/js/libs/oj/debug_esm/ojmutateeventfilteringdataprovider.js
index ec2435e3..5a8c9d71 100644
--- a/dist/js/libs/oj/debug_esm/ojmutateeventfilteringdataprovider.js
+++ b/dist/js/libs/oj/debug_esm/ojmutateeventfilteringdataprovider.js
@@ -5,11 +5,11 @@
* as shown at https://oss.oracle.com/licenses/upl/
* @ignore
*/
-import oj from 'ojs/ojcore-base';
-import { wrapWithAbortHandling } from 'ojs/ojdataprovider';
-import CachedIteratorResultsDataProvider from 'ojs/ojcachediteratorresultsdataprovider';
-import DedupDataProvider from 'ojs/ojdedupdataprovider';
-import { EventTargetMixin } from 'ojs/ojeventtarget';
+import oj from './ojcore-base.js';
+import { wrapWithAbortHandling } from './ojdataprovider.js';
+import CachedIteratorResultsDataProvider from './ojcachediteratorresultsdataprovider.js';
+import DedupDataProvider from './ojdedupdataprovider.js';
+import { EventTargetMixin } from './ojeventtarget.js';
/**
* @license
diff --git a/dist/js/libs/oj/debug_esm/ojnavigationlist.js b/dist/js/libs/oj/debug_esm/ojnavigationlist.js
index 57a4f357..c189b37e 100644
--- a/dist/js/libs/oj/debug_esm/ojnavigationlist.js
+++ b/dist/js/libs/oj/debug_esm/ojnavigationlist.js
@@ -5,17 +5,17 @@
* as shown at https://oss.oracle.com/licenses/upl/
* @ignore
*/
-import oj from 'ojs/ojcore-base';
-import { __GetWidgetConstructor, setDefaultOptions, createDynamicPropertyGetter } from 'ojs/ojcomponentcore';
-import { getCachedCSSVarValues, parseJSONFromFontFamily } from 'ojs/ojthemeutils';
+import oj from './ojcore-base.js';
+import { __GetWidgetConstructor, setDefaultOptions, createDynamicPropertyGetter } from './ojcomponentcore.js';
+import { getCachedCSSVarValues, parseJSONFromFontFamily } from './ojthemeutils.js';
import $ from 'jquery';
-import { isTouchSupported, getReadingDirection } from 'ojs/ojdomutils';
-import { isMobileTouchDevice, disableElement } from 'ojs/ojdatacollection-common';
-import { NavigationListDndContext } from 'ojs/ojnavigationlistdnd';
-import 'ojs/ojlistview';
-import Context from 'ojs/ojcontext';
-import 'ojs/ojmenu';
-import 'ojs/ojbutton';
+import { isTouchSupported, getReadingDirection } from './ojdomutils.js';
+import { isMobileTouchDevice, disableElement } from './ojdatacollection-common.js';
+import { NavigationListDndContext } from './ojnavigationlistdnd.js';
+import './ojlistview.js';
+import Context from './ojcontext.js';
+import './ojmenu.js';
+import './ojbutton.js';
(function () {
var __oj_navigation_list_metadata =
diff --git a/dist/js/libs/oj/debug_esm/ojnavigationlistdnd.js b/dist/js/libs/oj/debug_esm/ojnavigationlistdnd.js
index 85637bfc..340c5540 100644
--- a/dist/js/libs/oj/debug_esm/ojnavigationlistdnd.js
+++ b/dist/js/libs/oj/debug_esm/ojnavigationlistdnd.js
@@ -6,8 +6,8 @@
* @ignore
*/
import $ from 'jquery';
-import oj from 'ojs/ojcore-base';
-import 'ojs/ojlistviewdnd';
+import oj from './ojcore-base.js';
+import './ojlistviewdnd.js';
/**
* @ignore
diff --git a/dist/js/libs/oj/debug_esm/ojnbox-toolkit.js b/dist/js/libs/oj/debug_esm/ojnbox-toolkit.js
index 235f6fa4..524e9a83 100644
--- a/dist/js/libs/oj/debug_esm/ojnbox-toolkit.js
+++ b/dist/js/libs/oj/debug_esm/ojnbox-toolkit.js
@@ -5,8 +5,8 @@
* as shown at https://oss.oracle.com/licenses/upl/
* @ignore
*/
-import { Point, Rectangle, OutputText, GradientParser, LinearGradientFill, ArrayUtils, EventFactory, ResourceUtils, Displayable, KeyboardEvent, Agent, BlackBoxAnimationHandler, CSSStyle, JsonUtils, DataAnimationHandler, Container, TextUtils, Rect, Stroke, ColorUtils, ImageMarker, SimpleMarker, PatternFill, ToolkitUtils, ClipPath, AnimMoveTo, Playable, CustomAnimation, SolidFill, Animator, AnimMoveBy, AnimFadeOut, SelectionEffectUtils, MouseEvent, KeyboardHandler, EventManager, KeyboardFocusEffect, SimpleScrollableContainer, IconButton, AnimFadeIn, Shadow, ARIA_LABEL_STATE_DELIMITER, AriaUtils, AnimScaleTo, PathUtils, Path, Matrix, Automation, BaseComponentDefaults, CategoryRolloverHandler, BaseComponent, BaseComponentCache, SelectionHandler } from 'ojs/ojdvt-toolkit';
-import { getTranslatedString } from 'ojs/ojtranslation';
+import { Point, Rectangle, OutputText, GradientParser, LinearGradientFill, ArrayUtils, EventFactory, ResourceUtils, Displayable, KeyboardEvent, Agent, BlackBoxAnimationHandler, CSSStyle, JsonUtils, DataAnimationHandler, Container, TextUtils, Rect, Stroke, ColorUtils, ImageMarker, SimpleMarker, PatternFill, ToolkitUtils, ClipPath, AnimMoveTo, Playable, CustomAnimation, SolidFill, Animator, AnimMoveBy, AnimFadeOut, SelectionEffectUtils, MouseEvent, KeyboardHandler, EventManager, KeyboardFocusEffect, SimpleScrollableContainer, IconButton, AnimFadeIn, Shadow, ARIA_LABEL_STATE_DELIMITER, AriaUtils, AnimScaleTo, PathUtils, Path, Matrix, Automation, BaseComponentDefaults, CategoryRolloverHandler, BaseComponent, BaseComponentCache, SelectionHandler } from './ojdvt-toolkit.js';
+import { getTranslatedString } from './ojtranslation.js';
/**
* Utility functions for NBox.
diff --git a/dist/js/libs/oj/debug_esm/ojnbox.js b/dist/js/libs/oj/debug_esm/ojnbox.js
index bed16145..418063bd 100644
--- a/dist/js/libs/oj/debug_esm/ojnbox.js
+++ b/dist/js/libs/oj/debug_esm/ojnbox.js
@@ -5,11 +5,11 @@
* as shown at https://oss.oracle.com/licenses/upl/
* @ignore
*/
-import oj from 'ojs/ojcore-base';
-import 'ojs/ojcomponentcore';
-import DvtAttributeUtils from 'ojs/ojdvt-base';
+import oj from './ojcore-base.js';
+import './ojcomponentcore.js';
+import DvtAttributeUtils from './ojdvt-base.js';
import $ from 'jquery';
-import { NBox } from 'ojs/ojnbox-toolkit';
+import { NBox } from './ojnbox-toolkit.js';
var __oj_n_box_metadata =
{
diff --git a/dist/js/libs/oj/debug_esm/ojnocompbutton.js b/dist/js/libs/oj/debug_esm/ojnocompbutton.js
index 7e1ea406..242cf92b 100644
--- a/dist/js/libs/oj/debug_esm/ojnocompbutton.js
+++ b/dist/js/libs/oj/debug_esm/ojnocompbutton.js
@@ -6,7 +6,7 @@
* @ignore
*/
import $ from 'jquery';
-import { makeFocusable } from 'ojs/ojdomutils';
+import { makeFocusable } from './ojdomutils.js';
/**
* @class NocompButtonUtils
diff --git a/dist/js/libs/oj/debug_esm/ojoffcanvas.js b/dist/js/libs/oj/debug_esm/ojoffcanvas.js
index f12cf02a..63d3a906 100644
--- a/dist/js/libs/oj/debug_esm/ojoffcanvas.js
+++ b/dist/js/libs/oj/debug_esm/ojoffcanvas.js
@@ -5,17 +5,17 @@
* as shown at https://oss.oracle.com/licenses/upl/
* @ignore
*/
-import oj from 'ojs/ojcore-base';
+import oj from './ojcore-base.js';
import $ from 'jquery';
import { Swipe, DIRECTION_LEFT, DIRECTION_RIGHT, DIRECTION_UP, DIRECTION_DOWN, Pan, DIRECTION_HORIZONTAL, TouchInput } from 'hammerjs';
-import Context from 'ojs/ojcontext';
-import { getCachedCSSVarValues } from 'ojs/ojthemeutils';
-import { subtreeShown, subtreeHidden } from 'ojs/ojcomponentcore';
-import { warn } from 'ojs/ojlogger';
-import { getReadingDirection, makeFocusable, isChromeEvent, isLogicalAncestorOrSelf, isTouchSupported } from 'ojs/ojdomutils';
-import FocusUtils from 'ojs/ojfocusutils';
-import 'ojs/ojjquery-hammer';
-import { ZOrderUtils } from 'ojs/ojpopupcore';
+import Context from './ojcontext.js';
+import { getCachedCSSVarValues } from './ojthemeutils.js';
+import { subtreeShown, subtreeHidden } from './ojcomponentcore.js';
+import { warn } from './ojlogger.js';
+import { getReadingDirection, makeFocusable, isChromeEvent, isLogicalAncestorOrSelf, isTouchSupported } from './ojdomutils.js';
+import FocusUtils from './ojfocusutils.js';
+import './ojjquery-hammer.js';
+import { ZOrderUtils } from './ojpopupcore.js';
/**
* @namespace
diff --git a/dist/js/libs/oj/debug_esm/ojoptgroup.js b/dist/js/libs/oj/debug_esm/ojoptgroup.js
index 0df1274c..de30b9db 100644
--- a/dist/js/libs/oj/debug_esm/ojoptgroup.js
+++ b/dist/js/libs/oj/debug_esm/ojoptgroup.js
@@ -5,8 +5,8 @@
* as shown at https://oss.oracle.com/licenses/upl/
* @ignore
*/
-import oj from 'ojs/ojcore-base';
-import 'ojs/ojcomponentcore';
+import oj from './ojcore-base.js';
+import './ojcomponentcore.js';
/**
* @constructor
diff --git a/dist/js/libs/oj/debug_esm/ojoption.js b/dist/js/libs/oj/debug_esm/ojoption.js
index 9c0138e6..c2f1aba5 100644
--- a/dist/js/libs/oj/debug_esm/ojoption.js
+++ b/dist/js/libs/oj/debug_esm/ojoption.js
@@ -5,11 +5,11 @@
* as shown at https://oss.oracle.com/licenses/upl/
* @ignore
*/
-import oj from 'ojs/ojcore-base';
-import 'ojs/ojcomponentcore';
+import oj from './ojcore-base.js';
+import './ojcomponentcore.js';
import $ from 'jquery';
-import 'ojs/ojcustomelement';
-import { CustomElementUtils } from 'ojs/ojcustomelement-utils';
+import './ojcustomelement.js';
+import { CustomElementUtils } from './ojcustomelement-utils.js';
/**
* @constructor
diff --git a/dist/js/libs/oj/debug_esm/ojpagingcontrol.js b/dist/js/libs/oj/debug_esm/ojpagingcontrol.js
index db139a4e..de73716d 100644
--- a/dist/js/libs/oj/debug_esm/ojpagingcontrol.js
+++ b/dist/js/libs/oj/debug_esm/ojpagingcontrol.js
@@ -5,18 +5,18 @@
* as shown at https://oss.oracle.com/licenses/upl/
* @ignore
*/
-import 'ojs/ojdataprovider';
-import 'ojs/ojinputtext';
-import 'ojs/ojjquery-hammer';
-import 'ojs/ojpagingmodel';
-import oj from 'ojs/ojcore-base';
+import './ojdataprovider.js';
+import './ojinputtext.js';
+import './ojjquery-hammer.js';
+import './ojpagingmodel.js';
+import oj from './ojcore-base.js';
import $ from 'jquery';
-import { addResizeListener, isTouchSupported, removeResizeListener } from 'ojs/ojdomutils';
-import Context from 'ojs/ojcontext';
+import { addResizeListener, isTouchSupported, removeResizeListener } from './ojdomutils.js';
+import Context from './ojcontext.js';
import { DIRECTION_VERTICAL, DIRECTION_HORIZONTAL, Swipe, Manager } from 'hammerjs';
-import { error } from 'ojs/ojlogger';
-import { IntlNumberConverter } from 'ojs/ojconverter-number';
-import NumberRangeValidator from 'ojs/ojvalidator-numberrange';
+import { error } from './ojlogger.js';
+import { IntlNumberConverter } from './ojconverter-number.js';
+import NumberRangeValidator from './ojvalidator-numberrange.js';
(function () {
var __oj_paging_control_metadata =
diff --git a/dist/js/libs/oj/debug_esm/ojpagingdatagriddatasource.js b/dist/js/libs/oj/debug_esm/ojpagingdatagriddatasource.js
index c23b0c98..bdedf77f 100644
--- a/dist/js/libs/oj/debug_esm/ojpagingdatagriddatasource.js
+++ b/dist/js/libs/oj/debug_esm/ojpagingdatagriddatasource.js
@@ -5,9 +5,9 @@
* as shown at https://oss.oracle.com/licenses/upl/
* @ignore
*/
-import oj from 'ojs/ojcore-base';
-import Message from 'ojs/ojmessaging';
-import 'ojs/ojpagingtabledatasource';
+import oj from './ojcore-base.js';
+import Message from './ojmessaging.js';
+import './ojpagingtabledatasource.js';
/**
* @class PagingCellSet
diff --git a/dist/js/libs/oj/debug_esm/ojpagingdataproviderview.js b/dist/js/libs/oj/debug_esm/ojpagingdataproviderview.js
index 3e087d38..7541312e 100644
--- a/dist/js/libs/oj/debug_esm/ojpagingdataproviderview.js
+++ b/dist/js/libs/oj/debug_esm/ojpagingdataproviderview.js
@@ -5,8 +5,8 @@
* as shown at https://oss.oracle.com/licenses/upl/
* @ignore
*/
-import oj from 'ojs/ojcore-base';
-import 'ojs/ojeventtarget';
+import oj from './ojcore-base.js';
+import './ojeventtarget.js';
/* jslint browser: true,devel:true*/
/**
diff --git a/dist/js/libs/oj/debug_esm/ojpagingmodel.js b/dist/js/libs/oj/debug_esm/ojpagingmodel.js
index cef812eb..7f4ff803 100644
--- a/dist/js/libs/oj/debug_esm/ojpagingmodel.js
+++ b/dist/js/libs/oj/debug_esm/ojpagingmodel.js
@@ -5,7 +5,7 @@
* as shown at https://oss.oracle.com/licenses/upl/
* @ignore
*/
-import oj from 'ojs/ojcore-base';
+import oj from './ojcore-base.js';
import 'jquery';
/* jslint browser: true,devel:true*/
diff --git a/dist/js/libs/oj/debug_esm/ojpagingtabledatasource.js b/dist/js/libs/oj/debug_esm/ojpagingtabledatasource.js
index 21395c10..b63dc591 100644
--- a/dist/js/libs/oj/debug_esm/ojpagingtabledatasource.js
+++ b/dist/js/libs/oj/debug_esm/ojpagingtabledatasource.js
@@ -5,10 +5,10 @@
* as shown at https://oss.oracle.com/licenses/upl/
* @ignore
*/
-import oj from 'ojs/ojcore-base';
+import oj from './ojcore-base.js';
import 'jquery';
-import 'ojs/ojdatasource-common';
-import 'ojs/ojpagingmodel';
+import './ojdatasource-common.js';
+import './ojpagingmodel.js';
/**
* @preserve Copyright 2013 jQuery Foundation and other contributors
diff --git a/dist/js/libs/oj/debug_esm/ojpalette.js b/dist/js/libs/oj/debug_esm/ojpalette.js
index 504e9de0..8bbe78ca 100644
--- a/dist/js/libs/oj/debug_esm/ojpalette.js
+++ b/dist/js/libs/oj/debug_esm/ojpalette.js
@@ -5,7 +5,7 @@
* as shown at https://oss.oracle.com/licenses/upl/
* @ignore
*/
-import { getColorValue } from 'ojs/ojpaletteutils';
+import { getColorValue } from './ojpaletteutils.js';
/**
* Adapted from D3.js -- d3-scale-chromatic
diff --git a/dist/js/libs/oj/debug_esm/ojpictochart-toolkit.js b/dist/js/libs/oj/debug_esm/ojpictochart-toolkit.js
index 649bbc9d..a53115e3 100644
--- a/dist/js/libs/oj/debug_esm/ojpictochart-toolkit.js
+++ b/dist/js/libs/oj/debug_esm/ojpictochart-toolkit.js
@@ -5,7 +5,7 @@
* as shown at https://oss.oracle.com/licenses/upl/
* @ignore
*/
-import { ImageMarker, CustomAnimation, Animator, AnimFadeOut, AnimFadeIn, SimpleMarker, Stroke, Agent, KeyboardHandler, KeyboardEvent, EventManager, Container, Point, SelectionEffectUtils, Displayable, HtmlTooltipManager, ResourceUtils, MouseEvent, Automation, BaseComponentDefaults, CSSStyle, EventFactory, Rect, Map2D, ClipPath, ArrayUtils, BaseComponent, Dimension, ToolkitUtils, Rectangle, DataAnimationHandler, SelectionHandler, CategoryRolloverHandler, BlackBoxAnimationHandler, AnimPopIn, ParallelPlayable, JsonUtils } from 'ojs/ojdvt-toolkit';
+import { ImageMarker, CustomAnimation, Animator, AnimFadeOut, AnimFadeIn, SimpleMarker, Stroke, Agent, KeyboardHandler, KeyboardEvent, EventManager, Container, Point, SelectionEffectUtils, Displayable, HtmlTooltipManager, ResourceUtils, MouseEvent, Automation, BaseComponentDefaults, CSSStyle, EventFactory, Rect, Map2D, ClipPath, ArrayUtils, BaseComponent, Dimension, ToolkitUtils, Rectangle, DataAnimationHandler, SelectionHandler, CategoryRolloverHandler, BlackBoxAnimationHandler, AnimPopIn, ParallelPlayable, JsonUtils } from './ojdvt-toolkit.js';
/**
* @param {PictoChart} picto
diff --git a/dist/js/libs/oj/debug_esm/ojpictochart.js b/dist/js/libs/oj/debug_esm/ojpictochart.js
index f5563c2a..356fe2e1 100644
--- a/dist/js/libs/oj/debug_esm/ojpictochart.js
+++ b/dist/js/libs/oj/debug_esm/ojpictochart.js
@@ -5,11 +5,11 @@
* as shown at https://oss.oracle.com/licenses/upl/
* @ignore
*/
-import oj from 'ojs/ojcore-base';
-import 'ojs/ojcomponentcore';
+import oj from './ojcore-base.js';
+import './ojcomponentcore.js';
import $ from 'jquery';
-import { PictoChart } from 'ojs/ojpictochart-toolkit';
-import 'ojs/ojdvt-base';
+import { PictoChart } from './ojpictochart-toolkit.js';
+import './ojdvt-base.js';
/**
* Ignore tag only needed for DVTs that have jsDoc in separate _doc.js files.
diff --git a/dist/js/libs/oj/debug_esm/ojpopup.js b/dist/js/libs/oj/debug_esm/ojpopup.js
index 635b8f6e..ecd92eee 100644
--- a/dist/js/libs/oj/debug_esm/ojpopup.js
+++ b/dist/js/libs/oj/debug_esm/ojpopup.js
@@ -5,16 +5,16 @@
* as shown at https://oss.oracle.com/licenses/upl/
* @ignore
*/
-import { PositionUtils, ZOrderUtils, PopupService, PopupLiveRegion, PopupSkipLink, PopupWhenReadyMediator } from 'ojs/ojpopupcore';
-import oj from 'ojs/ojcore-base';
+import { PositionUtils, ZOrderUtils, PopupService, PopupLiveRegion, PopupSkipLink, PopupWhenReadyMediator } from './ojpopupcore.js';
+import oj from './ojcore-base.js';
import $ from 'jquery';
-import Context from 'ojs/ojcontext';
-import { isAncestorOrSelf, getCSSLengthAsInt, removeResizeListener, addResizeListener, isTouchSupported } from 'ojs/ojdomutils';
-import { getCachedCSSVarValues } from 'ojs/ojthemeutils';
-import { setDefaultOptions, createDynamicPropertyGetter } from 'ojs/ojcomponentcore';
-import { startAnimation } from 'ojs/ojanimation';
-import FocusUtils from 'ojs/ojfocusutils';
-import { CustomElementUtils } from 'ojs/ojcustomelement-utils';
+import Context from './ojcontext.js';
+import { isAncestorOrSelf, getCSSLengthAsInt, removeResizeListener, addResizeListener, isTouchSupported } from './ojdomutils.js';
+import { getCachedCSSVarValues } from './ojthemeutils.js';
+import { setDefaultOptions, createDynamicPropertyGetter } from './ojcomponentcore.js';
+import { startAnimation } from './ojanimation.js';
+import FocusUtils from './ojfocusutils.js';
+import { CustomElementUtils } from './ojcustomelement-utils.js';
(function () {
/**
diff --git a/dist/js/libs/oj/debug_esm/ojpopupcore.js b/dist/js/libs/oj/debug_esm/ojpopupcore.js
index 7ade6739..b0c8a012 100644
--- a/dist/js/libs/oj/debug_esm/ojpopupcore.js
+++ b/dist/js/libs/oj/debug_esm/ojpopupcore.js
@@ -5,17 +5,17 @@
* as shown at https://oss.oracle.com/licenses/upl/
* @ignore
*/
-import oj from 'ojs/ojcore-base';
+import oj from './ojcore-base.js';
import $ from 'jquery';
-import { subtreeShown, subtreeHidden, subtreeDetached, subtreeAttached, setComponentOption } from 'ojs/ojcomponentcore';
-import { error, info } from 'ojs/ojlogger';
-import { setLogicalParent, isTouchSupported, isChromeEvent, isAncestor, unwrap, isAncestorOrSelf, getCSSLengthAsFloat, getCSSLengthAsInt, getScrollBarWidth, getReadingDirection } from 'ojs/ojdomutils';
-import { OJ_POPUP, patchPopupParent } from 'ojs/ojpreact-patch';
+import { subtreeShown, subtreeHidden, subtreeDetached, subtreeAttached, setComponentOption } from './ojcomponentcore.js';
+import { error, info } from './ojlogger.js';
+import { setLogicalParent, isTouchSupported, isChromeEvent, isAncestor, unwrap, isAncestorOrSelf, getCSSLengthAsFloat, getCSSLengthAsInt, getScrollBarWidth, getReadingDirection } from './ojdomutils.js';
+import { OJ_POPUP, patchPopupParent } from './ojpreact-patch.js';
import 'jqueryui-amd/position';
-import Context from 'ojs/ojcontext';
+import Context from './ojcontext.js';
import { jsx } from 'preact/jsx-runtime';
import { Component } from 'preact';
-import { ElementUtils } from 'ojs/ojcustomelement-utils';
+import { ElementUtils } from './ojcustomelement-utils.js';
/**
* Invokes the callback function with the touchstart event if the touch sequence
diff --git a/dist/js/libs/oj/debug_esm/ojpreact-managetabstops.js b/dist/js/libs/oj/debug_esm/ojpreact-managetabstops.js
index 218e4c33..7cdc8bc3 100644
--- a/dist/js/libs/oj/debug_esm/ojpreact-managetabstops.js
+++ b/dist/js/libs/oj/debug_esm/ojpreact-managetabstops.js
@@ -9,7 +9,7 @@ import { jsx } from 'preact/jsx-runtime';
import { Fragment } from 'preact';
import { useRef, useEffect } from 'preact/hooks';
import { useTabbableMode } from '@oracle/oraclejet-preact/hooks/UNSAFE_useTabbableMode';
-import { disableAllFocusableElements, enableAllFocusableElements } from 'ojs/ojkeyboardfocus-utils';
+import { disableAllFocusableElements, enableAllFocusableElements } from './ojkeyboardfocus-utils.js';
/**
* The ManageTabStops component is used to provide tabbable mode for legacy components
diff --git a/dist/js/libs/oj/debug_esm/ojprogress-bar.js b/dist/js/libs/oj/debug_esm/ojprogress-bar.js
index 8d1bb44b..b48f5c1e 100644
--- a/dist/js/libs/oj/debug_esm/ojprogress-bar.js
+++ b/dist/js/libs/oj/debug_esm/ojprogress-bar.js
@@ -6,9 +6,9 @@
* @ignore
*/
import { jsx } from 'preact/jsx-runtime';
-import { Root, customElement } from 'ojs/ojvcomponent';
+import { Root, customElement } from './ojvcomponent.js';
import { Component } from 'preact';
-import { getTranslatedString } from 'ojs/ojtranslation';
+import { getTranslatedString } from './ojtranslation.js';
var __decorate = (null && null.__decorate) || function (decorators, target, key, desc) {
var c = arguments.length, r = c < 3 ? target : desc === null ? desc = Object.getOwnPropertyDescriptor(target, key) : desc, d;
diff --git a/dist/js/libs/oj/debug_esm/ojprogress-circle.js b/dist/js/libs/oj/debug_esm/ojprogress-circle.js
index 45154cb5..f8161a7d 100644
--- a/dist/js/libs/oj/debug_esm/ojprogress-circle.js
+++ b/dist/js/libs/oj/debug_esm/ojprogress-circle.js
@@ -6,9 +6,9 @@
* @ignore
*/
import { jsx, jsxs } from 'preact/jsx-runtime';
-import { Root, customElement } from 'ojs/ojvcomponent';
+import { Root, customElement } from './ojvcomponent.js';
import { Component } from 'preact';
-import { getTranslatedString } from 'ojs/ojtranslation';
+import { getTranslatedString } from './ojtranslation.js';
var __decorate = (null && null.__decorate) || function (decorators, target, key, desc) {
var c = arguments.length, r = c < 3 ? target : desc === null ? desc = Object.getOwnPropertyDescriptor(target, key) : desc, d;
diff --git a/dist/js/libs/oj/debug_esm/ojprogress.js b/dist/js/libs/oj/debug_esm/ojprogress.js
index 9ed69272..92009316 100644
--- a/dist/js/libs/oj/debug_esm/ojprogress.js
+++ b/dist/js/libs/oj/debug_esm/ojprogress.js
@@ -5,9 +5,9 @@
* as shown at https://oss.oracle.com/licenses/upl/
* @ignore
*/
-import oj from 'ojs/ojcore-base';
-import 'ojs/ojcomponentcore';
-import oj$1 from 'ojs/ojcore';
+import oj from './ojcore-base.js';
+import './ojcomponentcore.js';
+import oj$1 from './ojcore.js';
import $ from 'jquery';
(function () {
diff --git a/dist/js/libs/oj/debug_esm/ojprogressbar.js b/dist/js/libs/oj/debug_esm/ojprogressbar.js
index 7db2e2d1..60ae0875 100644
--- a/dist/js/libs/oj/debug_esm/ojprogressbar.js
+++ b/dist/js/libs/oj/debug_esm/ojprogressbar.js
@@ -5,4 +5,4 @@
* as shown at https://oss.oracle.com/licenses/upl/
* @ignore
*/
-import 'ojs/ojprogress';
+import './ojprogress.js';
diff --git a/dist/js/libs/oj/debug_esm/ojpulltorefresh.js b/dist/js/libs/oj/debug_esm/ojpulltorefresh.js
index 9a726dcc..1cef6e36 100644
--- a/dist/js/libs/oj/debug_esm/ojpulltorefresh.js
+++ b/dist/js/libs/oj/debug_esm/ojpulltorefresh.js
@@ -5,17 +5,17 @@
* as shown at https://oss.oracle.com/licenses/upl/
* @ignore
*/
-import oj from 'ojs/ojcore-base';
+import oj from './ojcore-base.js';
import $ from 'jquery';
-import Context from 'ojs/ojcontext';
-import { isTouchSupported } from 'ojs/ojdomutils';
-import { getTranslatedString } from 'ojs/ojtranslation';
+import Context from './ojcontext.js';
+import { isTouchSupported } from './ojdomutils.js';
+import { getTranslatedString } from './ojtranslation.js';
import { Pan, DIRECTION_VERTICAL } from 'hammerjs';
-import { parseJSONFromFontFamily } from 'ojs/ojthemeutils';
-import 'ojs/ojjquery-hammer';
-import 'ojs/ojcomponentcore';
+import { parseJSONFromFontFamily } from './ojthemeutils.js';
+import './ojjquery-hammer.js';
+import './ojcomponentcore.js';
import 'touchr';
-import 'ojs/ojprogress-circle';
+import './ojprogress-circle.js';
/**
* @namespace PullToRefreshUtils
diff --git a/dist/js/libs/oj/debug_esm/ojradiocheckbox.js b/dist/js/libs/oj/debug_esm/ojradiocheckbox.js
index 2c53fb33..3436e3b8 100644
--- a/dist/js/libs/oj/debug_esm/ojradiocheckbox.js
+++ b/dist/js/libs/oj/debug_esm/ojradiocheckbox.js
@@ -5,10 +5,10 @@
* as shown at https://oss.oracle.com/licenses/upl/
* @ignore
*/
-import oj from 'ojs/ojcore-base';
+import oj from './ojcore-base.js';
import $ from 'jquery';
-import { error, warn } from 'ojs/ojlogger';
-import { subtreeAttached } from 'ojs/ojcomponentcore';
+import { error, warn } from './ojlogger.js';
+import { subtreeAttached } from './ojcomponentcore.js';
/**
* The _ojRadio component enhances a browser input element into one that is
diff --git a/dist/js/libs/oj/debug_esm/ojradioset.js b/dist/js/libs/oj/debug_esm/ojradioset.js
index df1690e9..31642be9 100644
--- a/dist/js/libs/oj/debug_esm/ojradioset.js
+++ b/dist/js/libs/oj/debug_esm/ojradioset.js
@@ -5,16 +5,16 @@
* as shown at https://oss.oracle.com/licenses/upl/
* @ignore
*/
-import 'ojs/ojcore';
+import './ojcore.js';
import $ from 'jquery';
-import 'ojs/ojcomponentcore';
-import { EditableValueUtils } from 'ojs/ojeditablevalue';
-import 'ojs/ojradiocheckbox';
-import 'ojs/ojoption';
-import 'ojs/ojdataprovider';
-import oj from 'ojs/ojcore-base';
-import { warn } from 'ojs/ojlogger';
-import LabeledByUtils from 'ojs/ojlabelledbyutils';
+import './ojcomponentcore.js';
+import { EditableValueUtils } from './ojeditablevalue.js';
+import './ojradiocheckbox.js';
+import './ojoption.js';
+import './ojdataprovider.js';
+import oj from './ojcore-base.js';
+import { warn } from './ojlogger.js';
+import LabeledByUtils from './ojlabelledbyutils.js';
(function () {
var __oj_radioset_metadata =
diff --git a/dist/js/libs/oj/debug_esm/ojrefresher.js b/dist/js/libs/oj/debug_esm/ojrefresher.js
index 2ee09278..9da7386e 100644
--- a/dist/js/libs/oj/debug_esm/ojrefresher.js
+++ b/dist/js/libs/oj/debug_esm/ojrefresher.js
@@ -6,11 +6,11 @@
* @ignore
*/
import 'touchr';
-import oj from 'ojs/ojcore-base';
+import oj from './ojcore-base.js';
import $ from 'jquery';
-import Context from 'ojs/ojcontext';
-import { tearDownPullToRefresh, setupPullToRefresh } from 'ojs/ojpulltorefresh';
-import { error } from 'ojs/ojlogger';
+import Context from './ojcontext.js';
+import { tearDownPullToRefresh, setupPullToRefresh } from './ojpulltorefresh.js';
+import { error } from './ojlogger.js';
var __oj_refresher_metadata =
{
diff --git a/dist/js/libs/oj/debug_esm/ojresponsiveknockoututils.js b/dist/js/libs/oj/debug_esm/ojresponsiveknockoututils.js
index 8a6bfe6c..b5191b18 100644
--- a/dist/js/libs/oj/debug_esm/ojresponsiveknockoututils.js
+++ b/dist/js/libs/oj/debug_esm/ojresponsiveknockoututils.js
@@ -5,12 +5,12 @@
* as shown at https://oss.oracle.com/licenses/upl/
* @ignore
*/
-import oj from 'ojs/ojcore-base';
-import { isComposite } from 'ojs/ojcustomelement-registry';
+import oj from './ojcore-base.js';
+import { isComposite } from './ojcustomelement-registry.js';
import { observable, pureComputed } from 'knockout';
import $ from 'jquery';
-import { getFrameworkQuery, FRAMEWORK_QUERY_KEY, SCREEN_RANGE } from 'ojs/ojresponsiveutils';
-import { CustomElementUtils } from 'ojs/ojcustomelement-utils';
+import { getFrameworkQuery, FRAMEWORK_QUERY_KEY, SCREEN_RANGE } from './ojresponsiveutils.js';
+import { CustomElementUtils } from './ojcustomelement-utils.js';
const _createMediaQueryObservableInternal = function (queryString, componentElement) {
if (queryString == null) {
diff --git a/dist/js/libs/oj/debug_esm/ojresponsiveutils.js b/dist/js/libs/oj/debug_esm/ojresponsiveutils.js
index 391f7744..824b88a9 100644
--- a/dist/js/libs/oj/debug_esm/ojresponsiveutils.js
+++ b/dist/js/libs/oj/debug_esm/ojresponsiveutils.js
@@ -5,8 +5,8 @@
* as shown at https://oss.oracle.com/licenses/upl/
* @ignore
*/
-import oj from 'ojs/ojcore-base';
-import { warn } from 'ojs/ojlogger';
+import oj from './ojcore-base.js';
+import { warn } from './ojlogger.js';
/**
* @namespace
diff --git a/dist/js/libs/oj/debug_esm/ojrestdataprovider.js b/dist/js/libs/oj/debug_esm/ojrestdataprovider.js
index 5e4a912d..a6403093 100644
--- a/dist/js/libs/oj/debug_esm/ojrestdataprovider.js
+++ b/dist/js/libs/oj/debug_esm/ojrestdataprovider.js
@@ -5,11 +5,11 @@
* as shown at https://oss.oracle.com/licenses/upl/
* @ignore
*/
-import { EventTargetMixin } from 'ojs/ojeventtarget';
-import { DataProviderRefreshEvent, DataProviderMutationEvent, FilterFactory, FilterUtils, wrapWithAbortHandling } from 'ojs/ojdataprovider';
-import ojSet from 'ojs/ojset';
-import ojMap from 'ojs/ojmap';
-import { deepFreeze } from 'ojs/ojmetadatautils';
+import { EventTargetMixin } from './ojeventtarget.js';
+import { DataProviderRefreshEvent, DataProviderMutationEvent, FilterFactory, FilterUtils, wrapWithAbortHandling } from './ojdataprovider.js';
+import ojSet from './ojset.js';
+import ojMap from './ojmap.js';
+import { deepFreeze } from './ojmetadatautils.js';
/**
* @preserve Copyright 2013 jQuery Foundation and other contributors
diff --git a/dist/js/libs/oj/debug_esm/ojresttreedataprovider.js b/dist/js/libs/oj/debug_esm/ojresttreedataprovider.js
index c29aa6f4..e2eb32d5 100644
--- a/dist/js/libs/oj/debug_esm/ojresttreedataprovider.js
+++ b/dist/js/libs/oj/debug_esm/ojresttreedataprovider.js
@@ -5,11 +5,11 @@
* as shown at https://oss.oracle.com/licenses/upl/
* @ignore
*/
-import { EventTargetMixin } from 'ojs/ojeventtarget';
-import { RESTDataProvider } from 'ojs/ojrestdataprovider';
-import { DataProviderRefreshEvent, DataProviderMutationEvent, DataProviderFeatureChecker } from 'ojs/ojdataprovider';
-import ojSet from 'ojs/ojset';
-import ojMap from 'ojs/ojmap';
+import { EventTargetMixin } from './ojeventtarget.js';
+import { RESTDataProvider } from './ojrestdataprovider.js';
+import { DataProviderRefreshEvent, DataProviderMutationEvent, DataProviderFeatureChecker } from './ojdataprovider.js';
+import ojSet from './ojset.js';
+import ojMap from './ojmap.js';
class RESTTreeDataProvider {
constructor(options) {
diff --git a/dist/js/libs/oj/debug_esm/ojrowdatagridprovider.js b/dist/js/libs/oj/debug_esm/ojrowdatagridprovider.js
index e0e0c631..be6e646b 100644
--- a/dist/js/libs/oj/debug_esm/ojrowdatagridprovider.js
+++ b/dist/js/libs/oj/debug_esm/ojrowdatagridprovider.js
@@ -5,10 +5,10 @@
* as shown at https://oss.oracle.com/licenses/upl/
* @ignore
*/
-import { DataGridProviderUpdateEvent, DataGridProviderRefreshEvent, DataGridProviderRemoveEvent, DataGridProviderAddEvent } from 'ojs/ojdatagridprovider';
-import { EventTargetMixin } from 'ojs/ojeventtarget';
-import { KeyCache, DataProviderUtils } from 'ojs/ojdataprovider';
-import { KeySetImpl } from 'ojs/ojkeyset';
+import { DataGridProviderUpdateEvent, DataGridProviderRefreshEvent, DataGridProviderRemoveEvent, DataGridProviderAddEvent } from './ojdatagridprovider.js';
+import { EventTargetMixin } from './ojeventtarget.js';
+import { KeyCache, DataProviderUtils } from './ojdataprovider.js';
+import { KeySetImpl } from './ojkeyset.js';
class RowDataGridProvider {
constructor(dataProvider, options) {
diff --git a/dist/js/libs/oj/debug_esm/ojrowexpander.js b/dist/js/libs/oj/debug_esm/ojrowexpander.js
index 829d1695..2ed72b46 100644
--- a/dist/js/libs/oj/debug_esm/ojrowexpander.js
+++ b/dist/js/libs/oj/debug_esm/ojrowexpander.js
@@ -5,13 +5,13 @@
* as shown at https://oss.oracle.com/licenses/upl/
* @ignore
*/
-import 'ojs/ojdatasource-common';
-import oj from 'ojs/ojcore-base';
+import './ojdatasource-common.js';
+import oj from './ojcore-base.js';
import $ from 'jquery';
-import { isMetaKeyPressed } from 'ojs/ojdomutils';
-import { __GetWidgetConstructor } from 'ojs/ojcomponentcore';
-import { warn } from 'ojs/ojlogger';
-import { isSpaceBarKeyEvent, isEnterKeyEvent, isArrowRightKeyEvent, isArrowLeftKeyEvent, isNumberFiveKeyEvent } from 'ojs/ojdatacollection-common';
+import { isMetaKeyPressed } from './ojdomutils.js';
+import { __GetWidgetConstructor } from './ojcomponentcore.js';
+import { warn } from './ojlogger.js';
+import { isSpaceBarKeyEvent, isEnterKeyEvent, isArrowRightKeyEvent, isArrowLeftKeyEvent, isNumberFiveKeyEvent } from './ojdatacollection-common.js';
(function () {
var __oj_row_expander_metadata =
diff --git a/dist/js/libs/oj/debug_esm/ojselectbase.js b/dist/js/libs/oj/debug_esm/ojselectbase.js
index 2ba1a28d..ea1c3082 100644
--- a/dist/js/libs/oj/debug_esm/ojselectbase.js
+++ b/dist/js/libs/oj/debug_esm/ojselectbase.js
@@ -5,27 +5,27 @@
* as shown at https://oss.oracle.com/licenses/upl/
* @ignore
*/
-import { EditableValueUtils } from 'ojs/ojeditablevalue';
-import { PositionUtils, PopupService } from 'ojs/ojpopupcore';
-import 'ojs/ojinputtext';
-import 'ojs/ojlistview';
-import 'ojs/ojhighlighttext';
-import oj from 'ojs/ojcore-base';
+import { EditableValueUtils } from './ojeditablevalue.js';
+import { PositionUtils, PopupService } from './ojpopupcore.js';
+import './ojinputtext.js';
+import './ojlistview.js';
+import './ojhighlighttext.js';
+import oj from './ojcore-base.js';
import $ from 'jquery';
-import { getReadingDirection, isAncestorOrSelf, isAncestor, addResizeListener, removeResizeListener } from 'ojs/ojdomutils';
-import { warn, error } from 'ojs/ojlogger';
-import { getDeviceType, getDeviceRenderMode, __getTemplateEngine } from 'ojs/ojconfig';
-import { getCachedCSSVarValues } from 'ojs/ojthemeutils';
-import FocusUtils from 'ojs/ojfocusutils';
-import { DataProviderRefreshEvent, DataProviderFeatureChecker } from 'ojs/ojdataprovider';
-import Context from 'ojs/ojcontext';
-import { KeySetImpl } from 'ojs/ojkeyset';
-import { CustomElementUtils } from 'ojs/ojcustomelement-utils';
-import { getEnhancedDataProvider } from 'ojs/ojdataproviderfactory';
-import ListDataProviderView from 'ojs/ojlistdataproviderview';
-import TreeDataProviderView from 'ojs/ojtreedataproviderview';
-import { getTimer } from 'ojs/ojtimerutils';
-import { DebouncingDataProviderView } from 'ojs/ojdebouncingdataproviderview';
+import { getReadingDirection, isAncestorOrSelf, isAncestor, addResizeListener, removeResizeListener } from './ojdomutils.js';
+import { warn, error } from './ojlogger.js';
+import { getDeviceType, getDeviceRenderMode, __getTemplateEngine } from './ojconfig.js';
+import { getCachedCSSVarValues } from './ojthemeutils.js';
+import FocusUtils from './ojfocusutils.js';
+import { DataProviderRefreshEvent, DataProviderFeatureChecker } from './ojdataprovider.js';
+import Context from './ojcontext.js';
+import { KeySetImpl } from './ojkeyset.js';
+import { CustomElementUtils } from './ojcustomelement-utils.js';
+import { getEnhancedDataProvider } from './ojdataproviderfactory.js';
+import ListDataProviderView from './ojlistdataproviderview.js';
+import TreeDataProviderView from './ojtreedataproviderview.js';
+import { getTimer } from './ojtimerutils.js';
+import { DebouncingDataProviderView } from './ojdebouncingdataproviderview.js';
/**
* @private
diff --git a/dist/js/libs/oj/debug_esm/ojselectcombobox.js b/dist/js/libs/oj/debug_esm/ojselectcombobox.js
index 436d8f59..3de995ab 100644
--- a/dist/js/libs/oj/debug_esm/ojselectcombobox.js
+++ b/dist/js/libs/oj/debug_esm/ojselectcombobox.js
@@ -5,27 +5,27 @@
* as shown at https://oss.oracle.com/licenses/upl/
* @ignore
*/
-import { EditableValueUtils } from 'ojs/ojeditablevalue';
-import 'ojs/ojoptgroup';
-import 'ojs/ojoption';
-import 'ojs/ojhighlighttext';
-import 'ojs/ojprogress-circle';
-import oj from 'ojs/ojcore-base';
+import { EditableValueUtils } from './ojeditablevalue.js';
+import './ojoptgroup.js';
+import './ojoption.js';
+import './ojhighlighttext.js';
+import './ojprogress-circle.js';
+import oj from './ojcore-base.js';
import $ from 'jquery';
-import { getReadingDirection, isAncestorOrSelf } from 'ojs/ojdomutils';
-import ojSet from 'ojs/ojset';
-import { getTimer } from 'ojs/ojtimerutils';
-import { parseJSONFromFontFamily, getCachedCSSVarValues } from 'ojs/ojthemeutils';
-import Context from 'ojs/ojcontext';
-import ListDataProviderView from 'ojs/ojlistdataproviderview';
-import TreeDataProviderView from 'ojs/ojtreedataproviderview';
-import { getAbortReason } from 'ojs/ojabortreason';
-import { DebouncingDataProviderView } from 'ojs/ojdebouncingdataproviderview';
-import { PositionUtils, ZOrderUtils, PopupService } from 'ojs/ojpopupcore';
-import { getTranslatedString } from 'ojs/ojtranslation';
-import { warn, info, error } from 'ojs/ojlogger';
-import { CustomElementUtils } from 'ojs/ojcustomelement-utils';
-import { setDefaultOptions, createDynamicPropertyGetter } from 'ojs/ojcomponentcore';
+import { getReadingDirection, isAncestorOrSelf } from './ojdomutils.js';
+import ojSet from './ojset.js';
+import { getTimer } from './ojtimerutils.js';
+import { parseJSONFromFontFamily, getCachedCSSVarValues } from './ojthemeutils.js';
+import Context from './ojcontext.js';
+import ListDataProviderView from './ojlistdataproviderview.js';
+import TreeDataProviderView from './ojtreedataproviderview.js';
+import { getAbortReason } from './ojabortreason.js';
+import { DebouncingDataProviderView } from './ojdebouncingdataproviderview.js';
+import { PositionUtils, ZOrderUtils, PopupService } from './ojpopupcore.js';
+import { getTranslatedString } from './ojtranslation.js';
+import { warn, info, error } from './ojlogger.js';
+import { CustomElementUtils } from './ojcustomelement-utils.js';
+import { setDefaultOptions, createDynamicPropertyGetter } from './ojcomponentcore.js';
(function () {
var bindingMeta = {
diff --git a/dist/js/libs/oj/debug_esm/ojselector.js b/dist/js/libs/oj/debug_esm/ojselector.js
index 46cd6a65..6f2b1338 100644
--- a/dist/js/libs/oj/debug_esm/ojselector.js
+++ b/dist/js/libs/oj/debug_esm/ojselector.js
@@ -6,9 +6,9 @@
* @ignore
*/
import { jsx } from 'preact/jsx-runtime';
-import { Root, customElement } from 'ojs/ojvcomponent';
+import { Root, customElement } from './ojvcomponent.js';
import { Component, createRef } from 'preact';
-import { recentPointer } from 'ojs/ojdomutils';
+import { recentPointer } from './ojdomutils.js';
import { useEffect } from 'preact/hooks';
var __decorate = (null && null.__decorate) || function (decorators, target, key, desc) {
diff --git a/dist/js/libs/oj/debug_esm/ojselectsingle.js b/dist/js/libs/oj/debug_esm/ojselectsingle.js
index 4dadad77..063ca798 100644
--- a/dist/js/libs/oj/debug_esm/ojselectsingle.js
+++ b/dist/js/libs/oj/debug_esm/ojselectsingle.js
@@ -5,13 +5,13 @@
* as shown at https://oss.oracle.com/licenses/upl/
* @ignore
*/
-import { LovDropdown, LovUtils } from 'ojs/ojselectbase';
-import oj from 'ojs/ojcore-base';
-import { KeySetImpl } from 'ojs/ojkeyset';
+import { LovDropdown, LovUtils } from './ojselectbase.js';
+import oj from './ojcore-base.js';
+import { KeySetImpl } from './ojkeyset.js';
import $ from 'jquery';
-import { setDefaultOptions } from 'ojs/ojcomponentcore';
-import { parseJSONFromFontFamily } from 'ojs/ojthemeutils';
-import { warn } from 'ojs/ojlogger';
+import { setDefaultOptions } from './ojcomponentcore.js';
+import { parseJSONFromFontFamily } from './ojthemeutils.js';
+import { warn } from './ojlogger.js';
(function () {
var __oj_select_single_metadata =
diff --git a/dist/js/libs/oj/debug_esm/ojselectsingleplaceholder.js b/dist/js/libs/oj/debug_esm/ojselectsingleplaceholder.js
index c543203a..e4fac493 100644
--- a/dist/js/libs/oj/debug_esm/ojselectsingleplaceholder.js
+++ b/dist/js/libs/oj/debug_esm/ojselectsingleplaceholder.js
@@ -7,7 +7,7 @@
*/
import { jsxs, jsx } from 'preact/jsx-runtime';
import { Component } from 'preact';
-import { customElement } from 'ojs/ojvcomponent';
+import { customElement } from './ojvcomponent.js';
var __decorate = (null && null.__decorate) || function (decorators, target, key, desc) {
var c = arguments.length, r = c < 3 ? target : desc === null ? desc = Object.getOwnPropertyDescriptor(target, key) : desc, d;
diff --git a/dist/js/libs/oj/debug_esm/ojset.js b/dist/js/libs/oj/debug_esm/ojset.js
index 5d0f963c..19410551 100644
--- a/dist/js/libs/oj/debug_esm/ojset.js
+++ b/dist/js/libs/oj/debug_esm/ojset.js
@@ -5,7 +5,7 @@
* as shown at https://oss.oracle.com/licenses/upl/
* @ignore
*/
-import KeySetImpl from 'ojs/ojkeysetimpl';
+import KeySetImpl from './ojkeysetimpl.js';
/**
* Implementation of the ES6 Set API:
diff --git a/dist/js/libs/oj/debug_esm/ojslider.js b/dist/js/libs/oj/debug_esm/ojslider.js
index 3c3906a0..55d7baf0 100644
--- a/dist/js/libs/oj/debug_esm/ojslider.js
+++ b/dist/js/libs/oj/debug_esm/ojslider.js
@@ -5,14 +5,14 @@
* as shown at https://oss.oracle.com/licenses/upl/
* @ignore
*/
-import 'ojs/ojcore';
-import { EditableValueUtils } from 'ojs/ojeditablevalue';
+import './ojcore.js';
+import { EditableValueUtils } from './ojeditablevalue.js';
import 'jqueryui-amd/widgets/draggable';
-import 'ojs/ojtouchproxy';
-import oj from 'ojs/ojcore-base';
+import './ojtouchproxy.js';
+import oj from './ojcore-base.js';
import $ from 'jquery';
-import { getTranslatedString } from 'ojs/ojtranslation';
-import { getReadingDirection, unwrap } from 'ojs/ojdomutils';
+import { getTranslatedString } from './ojtranslation.js';
+import { getReadingDirection, unwrap } from './ojdomutils.js';
(function () {
var bindingMeta = {
diff --git a/dist/js/libs/oj/debug_esm/ojstreamlist.js b/dist/js/libs/oj/debug_esm/ojstreamlist.js
index 3d4f6c3a..97d3669f 100644
--- a/dist/js/libs/oj/debug_esm/ojstreamlist.js
+++ b/dist/js/libs/oj/debug_esm/ojstreamlist.js
@@ -7,17 +7,17 @@
*/
import { jsx } from 'preact/jsx-runtime';
import { Component } from 'preact';
-import { Root, customElement } from 'ojs/ojvcomponent';
-import { getTranslatedString } from 'ojs/ojtranslation';
-import { KEYBOARD_KEYS, handleActionablePrevTab, handleActionableTab, getNoJQFocusHandlers, getScrollEventElement, getActionableElementsInNode, disableAllFocusableElements, enableAllFocusableElements } from 'ojs/ojdatacollection-common';
-import Context from 'ojs/ojcontext';
-import { IteratingDataProviderContentHandler, IteratingTreeDataProviderContentHandler } from 'ojs/ojvcollection';
-import oj from 'ojs/ojcore-base';
-import { KeySetImpl } from 'ojs/ojkeyset';
-import 'ojs/ojtreedataprovider';
-import { fadeOut } from 'ojs/ojanimation';
-import { parseJSONFromFontFamily } from 'ojs/ojthemeutils';
-import { makeFocusable } from 'ojs/ojdomutils';
+import { Root, customElement } from './ojvcomponent.js';
+import { getTranslatedString } from './ojtranslation.js';
+import { KEYBOARD_KEYS, handleActionablePrevTab, handleActionableTab, getNoJQFocusHandlers, getScrollEventElement, getActionableElementsInNode, disableAllFocusableElements, enableAllFocusableElements } from './ojdatacollection-common.js';
+import Context from './ojcontext.js';
+import { IteratingDataProviderContentHandler, IteratingTreeDataProviderContentHandler } from './ojvcollection.js';
+import oj from './ojcore-base.js';
+import { KeySetImpl } from './ojkeyset.js';
+import './ojtreedataprovider.js';
+import { fadeOut } from './ojanimation.js';
+import { parseJSONFromFontFamily } from './ojthemeutils.js';
+import { makeFocusable } from './ojdomutils.js';
/**
* Class that interacts with DataProvider on behalf of the component
diff --git a/dist/js/libs/oj/debug_esm/ojsunburst.js b/dist/js/libs/oj/debug_esm/ojsunburst.js
index 2f36b648..197f7e14 100644
--- a/dist/js/libs/oj/debug_esm/ojsunburst.js
+++ b/dist/js/libs/oj/debug_esm/ojsunburst.js
@@ -5,13 +5,13 @@
* as shown at https://oss.oracle.com/licenses/upl/
* @ignore
*/
-import oj from 'ojs/ojcore-base';
-import 'ojs/ojcomponentcore';
+import oj from './ojcore-base.js';
+import './ojcomponentcore.js';
import $ from 'jquery';
-import 'ojs/ojdvt-base';
-import { Sunburst } from 'ojs/ojdvt-treeview';
-import { AllKeySetImpl } from 'ojs/ojkeyset';
-import { getResourceUrl } from 'ojs/ojconfig';
+import './ojdvt-base.js';
+import { Sunburst } from './ojdvt-treeview.js';
+import { AllKeySetImpl } from './ojkeyset.js';
+import { getResourceUrl } from './ojconfig.js';
/**
*
diff --git a/dist/js/libs/oj/debug_esm/ojsuppressnodetreedataprovider.js b/dist/js/libs/oj/debug_esm/ojsuppressnodetreedataprovider.js
index b90b3854..320b974e 100644
--- a/dist/js/libs/oj/debug_esm/ojsuppressnodetreedataprovider.js
+++ b/dist/js/libs/oj/debug_esm/ojsuppressnodetreedataprovider.js
@@ -5,8 +5,8 @@
* as shown at https://oss.oracle.com/licenses/upl/
* @ignore
*/
-import { EventTargetMixin } from 'ojs/ojeventtarget';
-import { wrapWithAbortHandling } from 'ojs/ojdataprovider';
+import { EventTargetMixin } from './ojeventtarget.js';
+import { wrapWithAbortHandling } from './ojdataprovider.js';
/**
* @preserve Copyright 2013 jQuery Foundation and other contributors
diff --git a/dist/js/libs/oj/debug_esm/ojswipeactions.js b/dist/js/libs/oj/debug_esm/ojswipeactions.js
index 79c81fe5..5760f928 100644
--- a/dist/js/libs/oj/debug_esm/ojswipeactions.js
+++ b/dist/js/libs/oj/debug_esm/ojswipeactions.js
@@ -5,16 +5,16 @@
* as shown at https://oss.oracle.com/licenses/upl/
* @ignore
*/
-import 'ojs/ojoption';
+import './ojoption.js';
import 'touchr';
-import oj from 'ojs/ojcore-base';
+import oj from './ojcore-base.js';
import $ from 'jquery';
-import { isTouchSupported, dispatchEvent } from 'ojs/ojdomutils';
-import Context from 'ojs/ojcontext';
-import { __getTemplateEngine } from 'ojs/ojconfig';
-import { close, open } from 'ojs/ojoffcanvas';
-import { tearDownSwipeActions, setupSwipeActions } from 'ojs/ojswipetoreveal';
-import { CustomElementUtils } from 'ojs/ojcustomelement-utils';
+import { isTouchSupported, dispatchEvent } from './ojdomutils.js';
+import Context from './ojcontext.js';
+import { __getTemplateEngine } from './ojconfig.js';
+import { close, open } from './ojoffcanvas.js';
+import { tearDownSwipeActions, setupSwipeActions } from './ojswipetoreveal.js';
+import { CustomElementUtils } from './ojcustomelement-utils.js';
(function () {
var __oj_swipe_actions_metadata =
diff --git a/dist/js/libs/oj/debug_esm/ojswipetoreveal.js b/dist/js/libs/oj/debug_esm/ojswipetoreveal.js
index 66881e1d..73562a49 100644
--- a/dist/js/libs/oj/debug_esm/ojswipetoreveal.js
+++ b/dist/js/libs/oj/debug_esm/ojswipetoreveal.js
@@ -5,10 +5,10 @@
* as shown at https://oss.oracle.com/licenses/upl/
* @ignore
*/
-import oj from 'ojs/ojcore-base';
+import oj from './ojcore-base.js';
import $ from 'jquery';
-import Context from 'ojs/ojcontext';
-import { setupPanToReveal, _getOuterWrapper, close, tearDownPanToReveal } from 'ojs/ojoffcanvas';
+import Context from './ojcontext.js';
+import { setupPanToReveal, _getOuterWrapper, close, tearDownPanToReveal } from './ojoffcanvas.js';
import 'touchr';
/**
diff --git a/dist/js/libs/oj/debug_esm/ojswitch.js b/dist/js/libs/oj/debug_esm/ojswitch.js
index 97c0941a..144fefa5 100644
--- a/dist/js/libs/oj/debug_esm/ojswitch.js
+++ b/dist/js/libs/oj/debug_esm/ojswitch.js
@@ -5,12 +5,12 @@
* as shown at https://oss.oracle.com/licenses/upl/
* @ignore
*/
-import 'ojs/ojcore';
-import { EditableValueUtils } from 'ojs/ojeditablevalue';
-import oj from 'ojs/ojcore-base';
+import './ojcore.js';
+import { EditableValueUtils } from './ojeditablevalue.js';
+import oj from './ojcore-base.js';
import $ from 'jquery';
-import { isAncestorOrSelf, unwrap, recentTouchEnd } from 'ojs/ojdomutils';
-import FocusUtils from 'ojs/ojfocusutils';
+import { isAncestorOrSelf, unwrap, recentTouchEnd } from './ojdomutils.js';
+import FocusUtils from './ojfocusutils.js';
(function () {
var __oj_switch_metadata =
diff --git a/dist/js/libs/oj/debug_esm/ojswitcher.js b/dist/js/libs/oj/debug_esm/ojswitcher.js
index d4ae3ab8..0a8f02dd 100644
--- a/dist/js/libs/oj/debug_esm/ojswitcher.js
+++ b/dist/js/libs/oj/debug_esm/ojswitcher.js
@@ -5,10 +5,10 @@
* as shown at https://oss.oracle.com/licenses/upl/
* @ignore
*/
-import { subtreeHidden, subtreeShown } from 'ojs/ojcomponentcore';
-import 'ojs/ojcustomelement';
-import { CustomElementUtils } from 'ojs/ojcustomelement-utils';
-import oj from 'ojs/ojcore-base';
+import { subtreeHidden, subtreeShown } from './ojcomponentcore.js';
+import './ojcustomelement.js';
+import { CustomElementUtils } from './ojcustomelement-utils.js';
+import oj from './ojcore-base.js';
/**
* @ojcomponent oj.ojSwitcher
diff --git a/dist/js/libs/oj/debug_esm/ojtable.js b/dist/js/libs/oj/debug_esm/ojtable.js
index 7d9282ea..5fe6367c 100644
--- a/dist/js/libs/oj/debug_esm/ojtable.js
+++ b/dist/js/libs/oj/debug_esm/ojtable.js
@@ -7,34 +7,34 @@
*/
import 'touchr';
import 'ojdnd';
-import 'ojs/ojeditablevalue';
-import 'ojs/ojinputnumber';
-import 'ojs/ojmenu';
-import 'ojs/ojpopup';
-import 'ojs/ojdialog';
-import 'ojs/ojbutton';
-import 'ojs/ojdatasource-common';
-import 'ojs/ojdataprovideradapter';
-import ListDataProviderView from 'ojs/ojlistdataproviderview';
-import 'ojs/ojselector';
-import oj$1 from 'ojs/ojcore-base';
+import './ojeditablevalue.js';
+import './ojinputnumber.js';
+import './ojmenu.js';
+import './ojpopup.js';
+import './ojdialog.js';
+import './ojbutton.js';
+import './ojdatasource-common.js';
+import './ojdataprovideradapter.js';
+import ListDataProviderView from './ojlistdataproviderview.js';
+import './ojselector.js';
+import oj$1 from './ojcore-base.js';
import $ from 'jquery';
-import { unwrap, getCSSTimeUnitAsMillis, addResizeListener, removeResizeListener, getReadingDirection, setScrollLeft, isMetaKeyPressed } from 'ojs/ojdomutils';
-import { error, warn, info } from 'ojs/ojlogger';
-import Context from 'ojs/ojcontext';
-import { __getTemplateEngine, getDeviceRenderMode } from 'ojs/ojconfig';
-import { applyParameters } from 'ojs/ojtranslation';
-import { _OJ_CONTAINER_ATTR, subtreeDetached, subtreeHidden, subtreeAttached, __GetWidgetConstructor, setDefaultOptions, createDynamicPropertyGetter } from 'ojs/ojcomponentcore';
-import { getCachedCSSVarValues, parseJSONFromFontFamily } from 'ojs/ojthemeutils';
-import { applyRendererContent, disableAllFocusableElements, isMobileTouchDevice, isIos, isFetchAborted, WARN_DUPLICATE_KEYS_DETAIL, isRequestIdleCallbackSupported, isBlink, isFirefox, getScrollEventElement, getDefaultScrollBarWidth, isSafari, getActionableElementsInNode, containsKey, isIterateAfterDoneNotAllowed, getAddEventKeysResult, applyMergedInlineStyles, isChrome, isEdgeChromium, isEscapeKeyEvent, isEnterKeyEvent, isF2KeyEvent, isTabKeyEvent, isArrowUpKeyEvent, isArrowDownKeyEvent, isArrowLeftKeyEvent, isArrowRightKeyEvent, isHomeKeyEvent, isEndKeyEvent, isSpaceBarKeyEvent, isMac, isMetaKeyEvent, isEventClickthroughDisabled, isFromDefaultSelector, isEdge, getFocusableElementsInNode, enableAllFocusableElements, KEYBOARD_KEYS, areKeySetsEqual, disableDefaultBrowserStyling } from 'ojs/ojdatacollection-common';
-import { startAnimation } from 'ojs/ojanimation';
-import DomScroller from 'ojs/ojdomscroller';
-import { CustomElementUtils, ElementUtils } from 'ojs/ojcustomelement-utils';
+import { unwrap, getCSSTimeUnitAsMillis, addResizeListener, removeResizeListener, getReadingDirection, setScrollLeft, isMetaKeyPressed } from './ojdomutils.js';
+import { error, warn, info } from './ojlogger.js';
+import Context from './ojcontext.js';
+import { __getTemplateEngine, getDeviceRenderMode } from './ojconfig.js';
+import { applyParameters } from './ojtranslation.js';
+import { _OJ_CONTAINER_ATTR, subtreeDetached, subtreeHidden, subtreeAttached, __GetWidgetConstructor, setDefaultOptions, createDynamicPropertyGetter } from './ojcomponentcore.js';
+import { getCachedCSSVarValues, parseJSONFromFontFamily } from './ojthemeutils.js';
+import { applyRendererContent, disableAllFocusableElements, isMobileTouchDevice, isIos, isFetchAborted, WARN_DUPLICATE_KEYS_DETAIL, isRequestIdleCallbackSupported, isBlink, isFirefox, getScrollEventElement, getDefaultScrollBarWidth, isSafari, getActionableElementsInNode, containsKey, isIterateAfterDoneNotAllowed, getAddEventKeysResult, applyMergedInlineStyles, isChrome, isEdgeChromium, isEscapeKeyEvent, isEnterKeyEvent, isF2KeyEvent, isTabKeyEvent, isArrowUpKeyEvent, isArrowDownKeyEvent, isArrowLeftKeyEvent, isArrowRightKeyEvent, isHomeKeyEvent, isEndKeyEvent, isSpaceBarKeyEvent, isMac, isMetaKeyEvent, isEventClickthroughDisabled, isFromDefaultSelector, isEdge, getFocusableElementsInNode, enableAllFocusableElements, KEYBOARD_KEYS, areKeySetsEqual, disableDefaultBrowserStyling } from './ojdatacollection-common.js';
+import { startAnimation } from './ojanimation.js';
+import DomScroller from './ojdomscroller.js';
+import { CustomElementUtils, ElementUtils } from './ojcustomelement-utils.js';
import { FormVariantContext } from '@oracle/oraclejet-preact/hooks/UNSAFE_useFormVariantContext';
-import { getAbortReason } from 'ojs/ojabortreason';
-import { KeySetImpl, AllKeySetImpl } from 'ojs/ojkeyset';
-import RegExpValidator from 'ojs/ojvalidator-regexp';
-import { getAllLogicalChildPopups, isActionableElement } from 'ojs/ojkeyboardfocus-utils';
+import { getAbortReason } from './ojabortreason.js';
+import { KeySetImpl, AllKeySetImpl } from './ojkeyset.js';
+import RegExpValidator from './ojvalidator-regexp.js';
+import { getAllLogicalChildPopups, isActionableElement } from './ojkeyboardfocus-utils.js';
// eslint-disable-next-line wrap-iife
(function () {
diff --git a/dist/js/libs/oj/debug_esm/ojtagcloud-toolkit.js b/dist/js/libs/oj/debug_esm/ojtagcloud-toolkit.js
index 988c75c9..9bdc9320 100644
--- a/dist/js/libs/oj/debug_esm/ojtagcloud-toolkit.js
+++ b/dist/js/libs/oj/debug_esm/ojtagcloud-toolkit.js
@@ -5,7 +5,7 @@
* as shown at https://oss.oracle.com/licenses/upl/
* @ignore
*/
-import { KeyboardHandler, KeyboardEvent, ToolkitUtils, Displayable, CSSStyle, MouseEvent, Agent, Automation, BaseComponentDefaults, EventManager, EventFactory, BackgroundOutputText, CustomAnimation, Animator, AnimFadeOut, AnimFadeIn, ColorUtils, OutputText, Rectangle, Dimension, Rect, ArrayUtils, JsonUtils, SelectionEffectUtils, Legend, LayoutUtils, BaseComponent, Container, BlackBoxAnimationHandler, DataAnimationHandler, CategoryRolloverHandler, SelectionHandler } from 'ojs/ojdvt-toolkit';
+import { KeyboardHandler, KeyboardEvent, ToolkitUtils, Displayable, CSSStyle, MouseEvent, Agent, Automation, BaseComponentDefaults, EventManager, EventFactory, BackgroundOutputText, CustomAnimation, Animator, AnimFadeOut, AnimFadeIn, ColorUtils, OutputText, Rectangle, Dimension, Rect, ArrayUtils, JsonUtils, SelectionEffectUtils, Legend, LayoutUtils, BaseComponent, Container, BlackBoxAnimationHandler, DataAnimationHandler, CategoryRolloverHandler, SelectionHandler } from './ojdvt-toolkit.js';
/**
* @param {dvt.EventManager} manager The owning dvt.EventManager
diff --git a/dist/js/libs/oj/debug_esm/ojtagcloud.js b/dist/js/libs/oj/debug_esm/ojtagcloud.js
index 7f61c4b2..d6ab429c 100644
--- a/dist/js/libs/oj/debug_esm/ojtagcloud.js
+++ b/dist/js/libs/oj/debug_esm/ojtagcloud.js
@@ -5,11 +5,11 @@
* as shown at https://oss.oracle.com/licenses/upl/
* @ignore
*/
-import oj from 'ojs/ojcore-base';
-import { setDefaultOptions, createDynamicPropertyGetter } from 'ojs/ojcomponentcore';
+import oj from './ojcore-base.js';
+import { setDefaultOptions, createDynamicPropertyGetter } from './ojcomponentcore.js';
import $ from 'jquery';
-import 'ojs/ojdvt-base';
-import { TagCloud } from 'ojs/ojtagcloud-toolkit';
+import './ojdvt-base.js';
+import { TagCloud } from './ojtagcloud-toolkit.js';
/**
*
diff --git a/dist/js/libs/oj/debug_esm/ojtemplateengine-ko.js b/dist/js/libs/oj/debug_esm/ojtemplateengine-ko.js
index b28eca66..12e306d6 100644
--- a/dist/js/libs/oj/debug_esm/ojtemplateengine-ko.js
+++ b/dist/js/libs/oj/debug_esm/ojtemplateengine-ko.js
@@ -6,13 +6,13 @@
* @ignore
*/
import { contextFor, computed, observable, applyBindingsToDescendants, pureComputed, utils, cleanNode } from 'knockout';
-import BindingProviderImpl from 'ojs/ojkoshared';
-import { TemplateEngineUtils, PreactTemplate } from 'ojs/ojtemplateengine-utils';
-import oj from 'ojs/ojcore';
-import { getTemplateContent } from 'ojs/ojhtmlutils';
-import { CACHED_BINDING_PROVIDER, AttributeUtils } from 'ojs/ojcustomelement-utils';
-import Context from 'ojs/ojcontext';
-import { warn } from 'ojs/ojlogger';
+import BindingProviderImpl from './ojkoshared.js';
+import { TemplateEngineUtils, PreactTemplate } from './ojtemplateengine-utils.js';
+import oj from './ojcore.js';
+import { getTemplateContent } from './ojhtmlutils.js';
+import { CACHED_BINDING_PROVIDER, AttributeUtils } from './ojcustomelement-utils.js';
+import Context from './ojcontext.js';
+import { warn } from './ojlogger.js';
const _propertyContribsCache = new WeakMap();
class TemplateEngineKoInternal {
diff --git a/dist/js/libs/oj/debug_esm/ojtemplateengine-preact.js b/dist/js/libs/oj/debug_esm/ojtemplateengine-preact.js
index f95bceef..5b603161 100644
--- a/dist/js/libs/oj/debug_esm/ojtemplateengine-preact.js
+++ b/dist/js/libs/oj/debug_esm/ojtemplateengine-preact.js
@@ -5,7 +5,7 @@
* as shown at https://oss.oracle.com/licenses/upl/
* @ignore
*/
-import { TemplateEngineUtils, PreactTemplate } from 'ojs/ojtemplateengine-utils';
+import { TemplateEngineUtils, PreactTemplate } from './ojtemplateengine-utils.js';
/**
* JET Template Engine implementation for used by legacy components with 'preact'
diff --git a/dist/js/libs/oj/debug_esm/ojtemplateengine-utils.js b/dist/js/libs/oj/debug_esm/ojtemplateengine-utils.js
index 92516bbb..c87535e2 100644
--- a/dist/js/libs/oj/debug_esm/ojtemplateengine-utils.js
+++ b/dist/js/libs/oj/debug_esm/ojtemplateengine-utils.js
@@ -7,11 +7,11 @@
*/
import { jsx } from 'preact/jsx-runtime';
import { render } from 'preact';
-import oj from 'ojs/ojcore-base';
-import { CACHED_BINDING_PROVIDER, convertPrivatePropFromPreact, transformPreactValue, ElementUtils, KoBindingUtils } from 'ojs/ojcustomelement-utils';
-import { getPropertiesForElementTag } from 'ojs/ojcustomelement-registry';
-import { getPropertyMetadata } from 'ojs/ojmetadatautils';
-import { info } from 'ojs/ojlogger';
+import oj from './ojcore-base.js';
+import { CACHED_BINDING_PROVIDER, convertPrivatePropFromPreact, transformPreactValue, ElementUtils, KoBindingUtils } from './ojcustomelement-utils.js';
+import { getPropertiesForElementTag } from './ojcustomelement-registry.js';
+import { getPropertyMetadata } from './ojmetadatautils.js';
+import { info } from './ojlogger.js';
const ROW = Symbol('row');
class PreactTemplate {
diff --git a/dist/js/libs/oj/debug_esm/ojthematicmap-toolkit.js b/dist/js/libs/oj/debug_esm/ojthematicmap-toolkit.js
index f76a1cdc..15c50f7f 100644
--- a/dist/js/libs/oj/debug_esm/ojthematicmap-toolkit.js
+++ b/dist/js/libs/oj/debug_esm/ojthematicmap-toolkit.js
@@ -5,8 +5,8 @@
* as shown at https://oss.oracle.com/licenses/upl/
* @ignore
*/
-import { Rectangle, Point, PathUtils, Container, Shape, Path, Image, Stroke, OutputText, Polyline, CSSStyle, Matrix, EventFactory, DataAnimationHandler, BlackBoxAnimationHandler, Rect, ParallelPlayable, DisplayableUtils, SolidFill, BaseComponent, Agent, Obj, KeyboardEvent, Displayable, SelectionEffectUtils, MouseEvent, KeyboardHandler, SimpleMarker, CustomAnimation, Animator, AnimFadeOut, AnimFadeIn, Automation, BaseComponentDefaults, JsonUtils, EventManager, SelectionHandler, ArrayUtils, ImageMarker, ImageLoader, ColorUtils, LayoutUtils, CategoryRolloverHandler, ToolkitUtils } from 'ojs/ojdvt-toolkit';
-import { PanZoomCanvasKeyboardHandler, PanZoomComponent } from 'ojs/ojdvt-panzoomcanvas';
+import { Rectangle, Point, PathUtils, Container, Shape, Path, Image, Stroke, OutputText, Polyline, CSSStyle, Matrix, EventFactory, DataAnimationHandler, BlackBoxAnimationHandler, Rect, ParallelPlayable, DisplayableUtils, SolidFill, BaseComponent, Agent, Obj, KeyboardEvent, Displayable, SelectionEffectUtils, MouseEvent, KeyboardHandler, SimpleMarker, CustomAnimation, Animator, AnimFadeOut, AnimFadeIn, Automation, BaseComponentDefaults, JsonUtils, EventManager, SelectionHandler, ArrayUtils, ImageMarker, ImageLoader, ColorUtils, LayoutUtils, CategoryRolloverHandler, ToolkitUtils } from './ojdvt-toolkit.js';
+import { PanZoomCanvasKeyboardHandler, PanZoomComponent } from './ojdvt-panzoomcanvas.js';
var DvtBaseMapManager;
/**
diff --git a/dist/js/libs/oj/debug_esm/ojthematicmap.js b/dist/js/libs/oj/debug_esm/ojthematicmap.js
index 4791e292..d2c8d5ab 100644
--- a/dist/js/libs/oj/debug_esm/ojthematicmap.js
+++ b/dist/js/libs/oj/debug_esm/ojthematicmap.js
@@ -5,13 +5,13 @@
* as shown at https://oss.oracle.com/licenses/upl/
* @ignore
*/
-import { __GetWidgetConstructor, setDefaultOptions, createDynamicPropertyGetter } from 'ojs/ojcomponentcore';
-import oj from 'ojs/ojcore-base';
-import DvtAttributeUtils from 'ojs/ojdvt-base';
+import { __GetWidgetConstructor, setDefaultOptions, createDynamicPropertyGetter } from './ojcomponentcore.js';
+import oj from './ojcore-base.js';
+import DvtAttributeUtils from './ojdvt-base.js';
import $ from 'jquery';
-import { ThematicMap, DvtBaseMapManager } from 'ojs/ojthematicmap-toolkit';
-import { warn } from 'ojs/ojlogger';
-import { getLocale, getResourceUrl } from 'ojs/ojconfig';
+import { ThematicMap, DvtBaseMapManager } from './ojthematicmap-toolkit.js';
+import { warn } from './ojlogger.js';
+import { getLocale, getResourceUrl } from './ojconfig.js';
var __oj_thematic_map_metadata =
{
diff --git a/dist/js/libs/oj/debug_esm/ojthemeutils.js b/dist/js/libs/oj/debug_esm/ojthemeutils.js
index ece5e676..0ce9eaa5 100644
--- a/dist/js/libs/oj/debug_esm/ojthemeutils.js
+++ b/dist/js/libs/oj/debug_esm/ojthemeutils.js
@@ -5,8 +5,8 @@
* as shown at https://oss.oracle.com/licenses/upl/
* @ignore
*/
-import oj from 'ojs/ojcore-base';
-import { warn, error } from 'ojs/ojlogger';
+import oj from './ojcore-base.js';
+import { warn, error } from './ojlogger.js';
const _OJ_THEME_JSON = 'oj-theme-json';
@@ -136,6 +136,15 @@ ThemeUtils.clearCache = function () {
* @static
*/
ThemeUtils.parseJSONFromFontFamily = function (selector) {
+ if (
+ typeof document === 'undefined' ||
+ typeof window === 'undefined' ||
+ !document.head ||
+ typeof window.getComputedStyle !== 'function'
+ ) {
+ return null;
+ }
+
// NOTE: I first tried code inspired by
// https://css-tricks.com/making-sass-talk-to-javascript-with-json/
// so I was using :before and content, for example
diff --git a/dist/js/libs/oj/debug_esm/ojtime-base.js b/dist/js/libs/oj/debug_esm/ojtime-base.js
index 0eab8453..7529fad4 100644
--- a/dist/js/libs/oj/debug_esm/ojtime-base.js
+++ b/dist/js/libs/oj/debug_esm/ojtime-base.js
@@ -5,15 +5,15 @@
* as shown at https://oss.oracle.com/licenses/upl/
* @ignore
*/
-import oj from 'ojs/ojcore-base';
+import oj from './ojcore-base.js';
import $ from 'jquery';
-import 'ojs/ojdvt-base';
-import 'ojs/ojcomponentcore';
-import { getFirstDayOfWeek } from 'ojs/ojlocaledata';
-import { error } from 'ojs/ojlogger';
-import { IntlDateTimeConverter } from 'ojs/ojconverter-datetime';
-import * as ConverterUtils from 'ojs/ojconverterutils-i18n';
-import * as NumberConverter from 'ojs/ojconverter-number';
+import './ojdvt-base.js';
+import './ojcomponentcore.js';
+import { getFirstDayOfWeek } from './ojlocaledata.js';
+import { error } from './ojlogger.js';
+import { IntlDateTimeConverter } from './ojconverter-datetime.js';
+import * as ConverterUtils from './ojconverterutils-i18n.js';
+import * as NumberConverter from './ojconverter-number.js';
/**
* @ojcomponent oj.dvtTimeComponent
diff --git a/dist/js/libs/oj/debug_esm/ojtimeaxis-toolkit.js b/dist/js/libs/oj/debug_esm/ojtimeaxis-toolkit.js
index a5085b81..19ee5bdd 100644
--- a/dist/js/libs/oj/debug_esm/ojtimeaxis-toolkit.js
+++ b/dist/js/libs/oj/debug_esm/ojtimeaxis-toolkit.js
@@ -5,7 +5,7 @@
* as shown at https://oss.oracle.com/licenses/upl/
* @ignore
*/
-import { BaseComponentDefaults, CSSStyle, Agent, OutputText, KeyboardEvent, MouseEvent, TouchEvent, Container, ClipPath, Path, PathUtils, ToolkitUtils, Stroke, TextUtils, SimpleObjPeer, Line, BaseComponent } from 'ojs/ojdvt-toolkit';
+import { BaseComponentDefaults, CSSStyle, Agent, OutputText, KeyboardEvent, MouseEvent, TouchEvent, Container, ClipPath, Path, PathUtils, ToolkitUtils, Stroke, TextUtils, SimpleObjPeer, Line, BaseComponent } from './ojdvt-toolkit.js';
class DvtTimeAxisCalendar {
constructor() {
diff --git a/dist/js/libs/oj/debug_esm/ojtimeaxis.js b/dist/js/libs/oj/debug_esm/ojtimeaxis.js
index b6c1cb41..20c7fd6c 100644
--- a/dist/js/libs/oj/debug_esm/ojtimeaxis.js
+++ b/dist/js/libs/oj/debug_esm/ojtimeaxis.js
@@ -5,15 +5,15 @@
* as shown at https://oss.oracle.com/licenses/upl/
* @ignore
*/
-import oj from 'ojs/ojcore-base';
+import oj from './ojcore-base.js';
import $ from 'jquery';
-import { setDefaultOptions, createDynamicPropertyGetter } from 'ojs/ojcomponentcore';
-import 'ojs/ojdvt-base';
-import { TimeAxis } from 'ojs/ojtimeaxis-toolkit';
-import { getFirstDayOfWeek } from 'ojs/ojlocaledata';
-import { IntlDateTimeConverter } from 'ojs/ojconverter-datetime';
-import * as ConverterUtils from 'ojs/ojconverterutils-i18n';
-import * as NumberConverter from 'ojs/ojconverter-number';
+import { setDefaultOptions, createDynamicPropertyGetter } from './ojcomponentcore.js';
+import './ojdvt-base.js';
+import { TimeAxis } from './ojtimeaxis-toolkit.js';
+import { getFirstDayOfWeek } from './ojlocaledata.js';
+import { IntlDateTimeConverter } from './ojconverter-datetime.js';
+import * as ConverterUtils from './ojconverterutils-i18n.js';
+import * as NumberConverter from './ojconverter-number.js';
/**
* Ignore tag only needed for DVTs that have jsDoc in separate _doc.js files.
diff --git a/dist/js/libs/oj/debug_esm/ojtimeline-toolkit.js b/dist/js/libs/oj/debug_esm/ojtimeline-toolkit.js
index e271f653..f6830dbb 100644
--- a/dist/js/libs/oj/debug_esm/ojtimeline-toolkit.js
+++ b/dist/js/libs/oj/debug_esm/ojtimeline-toolkit.js
@@ -5,11 +5,11 @@
* as shown at https://oss.oracle.com/licenses/upl/
* @ignore
*/
-import { KeyboardEvent, Agent, EventManager, ResourceUtils, HtmlTooltipManager, CSSStyle, PathUtils, JsonUtils, Rect, MouseEvent, Displayable, Point, Automation, BaseComponentDefaults, Container, Stroke, Polygon, Path, ToolkitUtils, Animator, Image, OutputText, TextUtils, Line, Timer, AriaUtils, EventFactory, SimpleMarker, ColorUtils, SolidFill, LinearGradientFill, Obj, IconButton, ClipPath, Matrix, TransientButton, Rectangle, SimpleScrollbar, LayoutUtils, Dimension, Easing, SelectionEffectUtils, BaseComponent, ParallelPlayable, AnimFadeOut, Playable, AnimFadeIn, SelectionHandler } from 'ojs/ojdvt-toolkit';
-import { TimeComponentKeyboardHandler, TimeComponent, TimeComponentEventManager } from 'ojs/ojdvt-timecomponent';
-import { TimeAxisUtils, TimeAxis } from 'ojs/ojtimeaxis-toolkit';
-import { getLogicalChildPopup } from 'ojs/ojkeyboardfocus-utils';
-import { OverviewParser, Overview, OverviewUtils } from 'ojs/ojdvt-overview';
+import { KeyboardEvent, Agent, EventManager, ResourceUtils, HtmlTooltipManager, CSSStyle, PathUtils, JsonUtils, Rect, MouseEvent, Displayable, Point, Automation, BaseComponentDefaults, Container, Stroke, Polygon, Path, ToolkitUtils, Animator, Image, OutputText, TextUtils, Line, Timer, AriaUtils, EventFactory, SimpleMarker, ColorUtils, SolidFill, LinearGradientFill, Obj, IconButton, ClipPath, Matrix, TransientButton, Rectangle, SimpleScrollbar, LayoutUtils, Dimension, Easing, SelectionEffectUtils, BaseComponent, ParallelPlayable, AnimFadeOut, Playable, AnimFadeIn, SelectionHandler } from './ojdvt-toolkit.js';
+import { TimeComponentKeyboardHandler, TimeComponent, TimeComponentEventManager } from './ojdvt-timecomponent.js';
+import { TimeAxisUtils, TimeAxis } from './ojtimeaxis-toolkit.js';
+import { getLogicalChildPopup } from './ojkeyboardfocus-utils.js';
+import { OverviewParser, Overview, OverviewUtils } from './ojdvt-overview.js';
/**
* Timeline keyboard handler.
diff --git a/dist/js/libs/oj/debug_esm/ojtimeline.js b/dist/js/libs/oj/debug_esm/ojtimeline.js
index 8e72fb86..fb763878 100644
--- a/dist/js/libs/oj/debug_esm/ojtimeline.js
+++ b/dist/js/libs/oj/debug_esm/ojtimeline.js
@@ -5,15 +5,15 @@
* as shown at https://oss.oracle.com/licenses/upl/
* @ignore
*/
-import oj from 'ojs/ojcore-base';
+import oj from './ojcore-base.js';
import $ from 'jquery';
-import { setDefaultOptions, createDynamicPropertyGetter } from 'ojs/ojcomponentcore';
-import 'ojs/ojtime-base';
-import 'ojs/ojkeyset';
-import { Timeline } from 'ojs/ojtimeline-toolkit';
-import { IntlDateTimeConverter } from 'ojs/ojconverter-datetime';
-import 'ojs/ojdvttimecomponentscale';
-import { enableAllFocusableElements, disableAllFocusableElements, getActionableElementsInNode } from 'ojs/ojkeyboardfocus-utils';
+import { setDefaultOptions, createDynamicPropertyGetter } from './ojcomponentcore.js';
+import './ojtime-base.js';
+import './ojkeyset.js';
+import { Timeline } from './ojtimeline-toolkit.js';
+import { IntlDateTimeConverter } from './ojconverter-datetime.js';
+import './ojdvttimecomponentscale.js';
+import { enableAllFocusableElements, disableAllFocusableElements, getActionableElementsInNode } from './ojkeyboardfocus-utils.js';
/**
* Ignore tag only needed for DVTs that have jsDoc in separate _doc.js files.
diff --git a/dist/js/libs/oj/debug_esm/ojtimeutils.js b/dist/js/libs/oj/debug_esm/ojtimeutils.js
index 9b3b31ae..0d8c9556 100644
--- a/dist/js/libs/oj/debug_esm/ojtimeutils.js
+++ b/dist/js/libs/oj/debug_esm/ojtimeutils.js
@@ -5,8 +5,8 @@
* as shown at https://oss.oracle.com/licenses/upl/
* @ignore
*/
-import oj from 'ojs/ojcore-base';
-import { getWeekendStart, getWeekendEnd } from 'ojs/ojlocaledata';
+import oj from './ojcore-base.js';
+import { getWeekendStart, getWeekendEnd } from './ojlocaledata.js';
/**
* @namespace TimeUtils
diff --git a/dist/js/libs/oj/debug_esm/ojtimezonedata.js b/dist/js/libs/oj/debug_esm/ojtimezonedata.js
index 46d1ed06..e76fe92a 100644
--- a/dist/js/libs/oj/debug_esm/ojtimezonedata.js
+++ b/dist/js/libs/oj/debug_esm/ojtimezonedata.js
@@ -5,9 +5,9 @@
* as shown at https://oss.oracle.com/licenses/upl/
* @ignore
*/
-import oj from 'ojs/ojcore-base';
-import { __getBundle } from 'ojs/ojlocaledata';
-import ojtd from 'ojL10n!ojtranslations/nls/timezoneData';
+import oj from './ojcore-base.js';
+import { __getBundle } from './ojlocaledata.js';
+import { loadMergedAmdBundle } from './ojamdloader.js';
/**
* Internal utilities for dealing with timezone data
@@ -49,7 +49,12 @@ TimezoneData._bundleNames = [];
(function () {
TimezoneData.__registerBundleName('/timezoneData');
- TimezoneData.__mergeIntoLocaleElements(typeof ojtd === 'undefined' ? {} : ojtd);
})();
+const initialTimezoneBundle = await loadMergedAmdBundle(
+ new URL('../resources/nls/timezoneData.js', import.meta.url),
+ new URL('../resources/nls/en-US/timezoneData.js', import.meta.url)
+);
+TimezoneData.__mergeIntoLocaleElements(initialTimezoneBundle);
+
export default TimezoneData;
diff --git a/dist/js/libs/oj/debug_esm/ojtimezoneutils.js b/dist/js/libs/oj/debug_esm/ojtimezoneutils.js
index aa08e50b..15223f50 100644
--- a/dist/js/libs/oj/debug_esm/ojtimezoneutils.js
+++ b/dist/js/libs/oj/debug_esm/ojtimezoneutils.js
@@ -5,8 +5,8 @@
* as shown at https://oss.oracle.com/licenses/upl/
* @ignore
*/
-import { AvailableTimeZones } from 'ojs/ojavailabletimezones';
-import 'ojs/ojtimezonedata';
+import { AvailableTimeZones } from './ojavailabletimezones.js';
+import './ojtimezonedata.js';
/**
* A utility class for retrieving available timezones. NOTE: This module automatically
diff --git a/dist/js/libs/oj/debug_esm/ojtoolbar.js b/dist/js/libs/oj/debug_esm/ojtoolbar.js
index c588ce34..d49740a3 100644
--- a/dist/js/libs/oj/debug_esm/ojtoolbar.js
+++ b/dist/js/libs/oj/debug_esm/ojtoolbar.js
@@ -5,11 +5,11 @@
* as shown at https://oss.oracle.com/licenses/upl/
* @ignore
*/
-import oj from 'ojs/ojcore-base';
+import oj from './ojcore-base.js';
import $ from 'jquery';
-import { getCachedCSSVarValues } from 'ojs/ojthemeutils';
-import { _OJ_CONTAINER_ATTR, __GetWidgetConstructor, setDefaultOptions, createDynamicPropertyGetter } from 'ojs/ojcomponentcore';
-import { warn } from 'ojs/ojlogger';
+import { getCachedCSSVarValues } from './ojthemeutils.js';
+import { _OJ_CONTAINER_ATTR, __GetWidgetConstructor, setDefaultOptions, createDynamicPropertyGetter } from './ojcomponentcore.js';
+import { warn } from './ojlogger.js';
(function () {
// Toolbar wrapper function, to keep "private static members" private
diff --git a/dist/js/libs/oj/debug_esm/ojtouchproxy.js b/dist/js/libs/oj/debug_esm/ojtouchproxy.js
index 629b728f..0cc51b34 100644
--- a/dist/js/libs/oj/debug_esm/ojtouchproxy.js
+++ b/dist/js/libs/oj/debug_esm/ojtouchproxy.js
@@ -6,7 +6,7 @@
* @ignore
*/
import $ from 'jquery';
-import oj from 'ojs/ojcore-base';
+import oj from './ojcore-base.js';
const _TouchProxy = function (elem) {
this._init(elem);
diff --git a/dist/js/libs/oj/debug_esm/ojtracer.js b/dist/js/libs/oj/debug_esm/ojtracer.js
index b543b9f7..8b47cce5 100644
--- a/dist/js/libs/oj/debug_esm/ojtracer.js
+++ b/dist/js/libs/oj/debug_esm/ojtracer.js
@@ -5,7 +5,7 @@
* as shown at https://oss.oracle.com/licenses/upl/
* @ignore
*/
-import { CustomElementUtils } from 'ojs/ojcustomelement-utils';
+import { CustomElementUtils } from './ojcustomelement-utils.js';
/**
* Contains telemetry utility functions
diff --git a/dist/js/libs/oj/debug_esm/ojtrain.js b/dist/js/libs/oj/debug_esm/ojtrain.js
index 373f26ed..c3816fcb 100644
--- a/dist/js/libs/oj/debug_esm/ojtrain.js
+++ b/dist/js/libs/oj/debug_esm/ojtrain.js
@@ -5,11 +5,11 @@
* as shown at https://oss.oracle.com/licenses/upl/
* @ignore
*/
-import oj from 'ojs/ojcore-base';
+import oj from './ojcore-base.js';
import $ from 'jquery';
-import Context from 'ojs/ojcontext';
-import { parseJSONFromFontFamily } from 'ojs/ojthemeutils';
-import 'ojs/ojcomponentcore';
+import Context from './ojcontext.js';
+import { parseJSONFromFontFamily } from './ojthemeutils.js';
+import './ojcomponentcore.js';
var __oj_train_metadata =
{
diff --git a/dist/js/libs/oj/debug_esm/ojtranslation.js b/dist/js/libs/oj/debug_esm/ojtranslation.js
index b52fc68f..bb764a5a 100644
--- a/dist/js/libs/oj/debug_esm/ojtranslation.js
+++ b/dist/js/libs/oj/debug_esm/ojtranslation.js
@@ -5,8 +5,8 @@
* as shown at https://oss.oracle.com/licenses/upl/
* @ignore
*/
-import oj from 'ojs/ojcore-base';
-import { getConfigBundle } from 'ojs/ojconfig';
+import oj from './ojcore-base.js';
+import { getConfigBundle } from './ojconfig.js';
/**
* @namespace oj.Translations
diff --git a/dist/js/libs/oj/debug_esm/ojtranslationbundleutils.js b/dist/js/libs/oj/debug_esm/ojtranslationbundleutils.js
index 1868f3f2..fe692476 100644
--- a/dist/js/libs/oj/debug_esm/ojtranslationbundleutils.js
+++ b/dist/js/libs/oj/debug_esm/ojtranslationbundleutils.js
@@ -5,7 +5,7 @@
* as shown at https://oss.oracle.com/licenses/upl/
* @ignore
*/
-import { getLocale } from 'ojs/ojconfig';
+import { getLocale } from './ojconfig.js';
import { matchTranslationBundle as matchTranslationBundle$1 } from '@oracle/oraclejet-preact/utils/UNSAFE_matchTranslationBundle';
import supportedLocales from '@oracle/oraclejet-preact/resources/nls/supportedLocales';
diff --git a/dist/js/libs/oj/debug_esm/ojtranslations.js b/dist/js/libs/oj/debug_esm/ojtranslations.js
new file mode 100644
index 00000000..3727465c
--- /dev/null
+++ b/dist/js/libs/oj/debug_esm/ojtranslations.js
@@ -0,0 +1,1116 @@
+const translations = {
+ "_ojLocale_": "en",
+ "oj-message": {
+ "fatal": "Fatal",
+ "error": "Error",
+ "warning": "Warning",
+ "info": "Info",
+ "confirmation": "Confirmation",
+ "compact-type-summary": "{0}: {1}"
+ },
+ "oj-converter": {
+ "summary": "Value is not in the expected format.",
+ "detail": "Enter a value in the expected format.",
+ "plural-separator": ", ",
+ "hint": {
+ "summary": "Example: {exampleValue}",
+ "detail": "Try again using a format like this: {exampleValue}.",
+ "detail-plural": "Enter a value in these formats: {exampleValue}."
+ },
+ "optionHint": {
+ "detail": "An accepted value for option '{propertyName}' is '{propertyValueValid}'.",
+ "detail-plural": "Accepted values for option '{propertyName}' are '{propertyValueValid}'."
+ },
+ "optionTypesMismatch": {
+ "summary": "A value for the option '{requiredPropertyName}' is required when the option '{propertyName}' is set to '{propertyValue}'."
+ },
+ "optionTypeInvalid": {
+ "summary": "A value of the expected type was not provided for option '{propertyName}'."
+ },
+ "optionOutOfRange": {
+ "summary": "Value {propertyValue} is out of range for the option '{propertyName}'."
+ },
+ "optionValueInvalid": {
+ "summary": "An invalid value '{propertyValue}' was specified for the option '{propertyName}'."
+ },
+ "number": {
+ "decimalFormatMismatch": {
+ "summary": "The provided value is not in the expected number format."
+ },
+ "shortLongUnsupportedParse": {
+ "summary": "'short' and 'long' are not supported for converter parsing.",
+ "detail": "Change component to readonly. readonly fields do not call the converter's parse function."
+ },
+ "currencyFormatMismatch": {
+ "summary": "The provided value is not in the expected currency format."
+ },
+ "percentFormatMismatch": {
+ "summary": "The provided value is not in the expected percent format."
+ },
+ "invalidNumberFormat": {
+ "summary": "The provided value is not a valid number.",
+ "detail": "Please provide valid number."
+ },
+ "parseError": {
+ "detail": "Enter a number."
+ }
+ },
+ "color": {
+ "invalidFormat": {
+ "summary": "Invalid color format.",
+ "detail": "Invalid color format option specification."
+ },
+ "invalidSyntax": {
+ "summary": "Invalid color specification.",
+ "detail": "Enter a color value that conforms to the CSS3 standard."
+ }
+ },
+ "datetime": {
+ "datetimeOutOfRange": {
+ "summary": "Value '{value}' is out of range for the '{propertyName}'.",
+ "detail": "Enter a value between '{minValue}' and '{maxValue}'.",
+ "hour": "hour",
+ "minute": "minute",
+ "second": "second",
+ "millisec": "millisec",
+ "month": "month",
+ "day": "day",
+ "year": "year",
+ "month name": "month name",
+ "weekday": "weekday"
+ },
+ "dateFormatMismatch": {
+ "summary": "The provided value is not in the expected date format."
+ },
+ "invalidTimeZoneID": {
+ "summary": "Invalid timezone id {timeZoneID} provided."
+ },
+ "nonExistingTime": {
+ "summary": "The input time does not exist because it falls during the transition to daylight saving time."
+ },
+ "missingTimeZoneData": {
+ "summary": "TimeZone data is missing. Please call require 'ojs/ojtimezonedata' in order to load the TimeZone data."
+ },
+ "timeFormatMismatch": {
+ "summary": "The provided value is not in the expected time format."
+ },
+ "datetimeFormatMismatch": {
+ "summary": "The provided value is not in the expected date and time format."
+ },
+ "dateToWeekdayMismatch": {
+ "summary": "Day '{date}' does not fall on a '{weekday}'.",
+ "detail": "Enter a weekday that corresponds with the date."
+ },
+ "invalidISOString": {
+ "invalidRangeSummary": "The value '{value}' is out of range for the '{propertyName}' field in the ISO 8601 string '{isoStr}'.",
+ "summary": "The provided '{isoStr}' is not a valid ISO 8601 string.",
+ "detail": "Please provide valid ISO 8601 string."
+ }
+ }
+ },
+ "oj-validator": {
+ "length": {
+ "hint": {
+ "min": "Enter {min} or more characters.",
+ "max": "Enter {max} or fewer characters.",
+ "inRange": "Enter {min} to {max} characters.",
+ "exact": "Enter {length} characters."
+ },
+ "messageDetail": {
+ "tooShort": "Enter {min} or more characters.",
+ "tooLong": "Enter no more than {max} characters."
+ },
+ "messageSummary": {
+ "tooShort": "There are too few characters.",
+ "tooLong": "There are too many characters."
+ }
+ },
+ "range": {
+ "number": {
+ "hint": {
+ "min": "Enter a number greater than or equal to {min}.",
+ "max": "Enter a number less than or equal to {max}.",
+ "inRange": "Enter a number between {min} and {max}.",
+ "exact": "Enter the number {num}."
+ },
+ "messageDetail": {
+ "rangeUnderflow": "Enter a number that's {min} or higher.",
+ "rangeOverflow": "Enter a number that's {max} or lower.",
+ "exact": "Enter the number {num}."
+ },
+ "messageSummary": {
+ "rangeUnderflow": "The number is too low.",
+ "rangeOverflow": "The number is too high."
+ }
+ },
+ "datetime": {
+ "hint": {
+ "min": "Enter a date and time on or after {min}.",
+ "max": "Enter a date and time on or before {max}.",
+ "inRange": "Enter a date and time between {min} and {max}."
+ },
+ "messageDetail": {
+ "rangeUnderflow": "Enter a date and time that's on or after {min}.",
+ "rangeOverflow": "Enter a date and time that's on or before {max}."
+ },
+ "messageSummary": {
+ "rangeUnderflow": "Date and time is earlier than the minimum date and time.",
+ "rangeOverflow": "Date and time is later than the maximum date and time."
+ }
+ },
+ "date": {
+ "hint": {
+ "min": "Enter a date on or after {min}.",
+ "max": "Enter a date on or before {max}.",
+ "inRange": "Enter a date between {min} and {max}."
+ },
+ "messageDetail": {
+ "rangeUnderflow": "Enter a date that's on or after {min}.",
+ "rangeOverflow": "Enter a date that's on or before {max}."
+ },
+ "messageSummary": {
+ "rangeUnderflow": "Date is earlier than the minimum date.",
+ "rangeOverflow": "Date is later than the maximum date."
+ }
+ },
+ "time": {
+ "hint": {
+ "min": "Enter a time on or after {min}.",
+ "max": "Enter a time on or before {max}.",
+ "inRange": "Enter a time between {min} and {max}."
+ },
+ "messageDetail": {
+ "rangeUnderflow": "Enter a time that's {min} or later.",
+ "rangeOverflow": "Enter a time that's {max} or earlier."
+ },
+ "messageSummary": {
+ "rangeUnderflow": "Time is earlier than the minimum time.",
+ "rangeOverflow": "Time is later than the maximum time."
+ }
+ }
+ },
+ "restriction": {
+ "date": {
+ "messageSummary": "Date {value} is of a disabled entry.",
+ "messageDetail": "The date you selected isn't available. Try another date."
+ }
+ },
+ "regExp": {
+ "summary": "Format is incorrect.",
+ "detail": "Enter allowable values described in this regular expression: '{pattern}'."
+ },
+ "required": {
+ "summary": "Value is required.",
+ "detail": "Enter a value."
+ }
+ },
+ "oj-ojEditableValue": {
+ "loading": "Loading",
+ "requiredText": "Required",
+ "helpSourceText": "Learn more..."
+ },
+ "oj-ojInputDate": {
+ "done": "Done",
+ "cancel": "Cancel",
+ "time": "Time",
+ "accessibleClearIconAltText": "Clear input",
+ "prevText": "Previous",
+ "nextText": "Next",
+ "currentText": "Today",
+ "weekHeader": "Wk",
+ "tooltipCalendar": "Select Date.",
+ "tooltipCalendarTime": "Select Date Time.",
+ "tooltipCalendarDisabled": "Select Date Disabled.",
+ "tooltipCalendarTimeDisabled": "Select Date Time Disabled.",
+ "setTime": "Set Time",
+ "setDate": "Set Date",
+ "picker": "Picker",
+ "weekText": "Week",
+ "datePicker": "Date Picker",
+ "dateTimePicker": "Date and Time Picker",
+ "inputHelp": "Press Key down or Key up for access to Calendar.",
+ "inputHelpBoth": "Press Key down or Key up for access to Calendar and Shift + Key down or Shift Key up for access to time drop down.",
+ "dateTimeRange": {
+ "hint": {
+ "min": "",
+ "max": "",
+ "inRange": ""
+ },
+ "messageDetail": {
+ "rangeUnderflow": "",
+ "rangeOverflow": ""
+ },
+ "messageSummary": {
+ "rangeUnderflow": "",
+ "rangeOverflow": ""
+ }
+ },
+ "dateRestriction": {
+ "hint": "",
+ "messageSummary": "",
+ "messageDetail": ""
+ },
+ "accessibleMaxLengthExceeded": "Maximum length {len} exceeded.",
+ "accessibleMaxLengthRemaining": "{chars} characters left.",
+ "regexp": {
+ "messageSummary": "",
+ "messageDetail": ""
+ },
+ "required": {
+ "hint": ""
+ }
+ },
+ "oj-ojInputTime": {
+ "accessibleClearIconAltText": "Clear input",
+ "cancelText": "Cancel",
+ "okText": "OK",
+ "currentTimeText": "Now",
+ "hourWheelLabel": "Hour",
+ "minuteWheelLabel": "Minute",
+ "ampmWheelLabel": "AMPM",
+ "tooltipTime": "Select Time.",
+ "tooltipTimeDisabled": "Select Time Disabled.",
+ "inputHelp": "Press Key down or Key up for access to time drop down.",
+ "dateTimeRange": {
+ "hint": {
+ "min": "",
+ "max": "",
+ "inRange": ""
+ },
+ "messageDetail": {
+ "rangeUnderflow": "",
+ "rangeOverflow": ""
+ },
+ "messageSummary": {
+ "rangeUnderflow": "",
+ "rangeOverflow": ""
+ }
+ }
+ },
+ "oj-inputBase": {
+ "required": {
+ "hint": "",
+ "messageSummary": "",
+ "messageDetail": ""
+ },
+ "regexp": {
+ "messageSummary": "",
+ "messageDetail": ""
+ },
+ "accessibleMaxLengthExceeded": "Maximum length {len} exceeded.",
+ "accessibleMaxLengthRemaining": "{chars} characters left."
+ },
+ "oj-ojInputText": {
+ "accessibleClearIcon": "Clear"
+ },
+ "oj-ojInputPassword": {
+ "regexp": {
+ "messageDetail": "Value must match this pattern: '{pattern}'."
+ },
+ "accessibleShowPassword": "Show password.",
+ "accessibleHidePassword": "Hide password."
+ },
+ "oj-ojFilmStrip": {
+ "labelAccFilmStrip": "Displaying page {pageIndex} of {pageCount}",
+ "labelAccArrowNextPage": "Select Next to display next page",
+ "labelAccArrowPreviousPage": "Select Previous to display previous page",
+ "tipArrowNextPage": "Next",
+ "tipArrowPreviousPage": "Previous"
+ },
+ "oj-ojDataGrid": {
+ "accessibleSortAscending": "{id} sorted in ascending order",
+ "accessibleSortDescending": "{id} sorted in descending order",
+ "accessibleSortable": "{id} sortable",
+ "accessibleActionableMode": "Enter actionable mode.",
+ "accessibleNavigationMode": "Enter navigation mode, press F2 to enter edit or actionable mode.",
+ "accessibleEditableMode": "Enter editable mode, press escape to navigate outside the data grid.",
+ "accessibleSummaryExact": "This is a data grid with {rownum} rows and {colnum} columns",
+ "accessibleSummaryEstimate": "This is a data grid with unknown number of rows and columns",
+ "accessibleSummaryExpanded": "There are currently {num} rows expanded",
+ "accessibleRowExpanded": "Row expanded",
+ "accessibleExpanded": "Expanded",
+ "accessibleRowCollapsed": "Row collapsed",
+ "accessibleCollapsed": "Collapsed",
+ "accessibleRowSelected": "Row {row} selected",
+ "accessibleColumnSelected": "Column {column} selected",
+ "accessibleStateSelected": "selected",
+ "accessibleMultiCellSelected": "{num} cells selected",
+ "accessibleColumnSpanContext": "{extent} wide",
+ "accessibleRowSpanContext": "{extent} high",
+ "accessibleRowContext": "Row {index}",
+ "accessibleColumnContext": "Column {index}",
+ "accessibleRowHeaderContext": "Row Header {index}",
+ "accessibleColumnHeaderContext": "Column Header {index}",
+ "accessibleRowEndHeaderContext": "Row End Header {index}",
+ "accessibleColumnEndHeaderContext": "Column End Header {index}",
+ "accessibleRowHeaderLabelContext": "Row Header Label {level}",
+ "accessibleColumnHeaderLabelContext": "Column Header Label {level}",
+ "accessibleRowEndHeaderLabelContext": "Row End Header Label {level}",
+ "accessibleColumnEndHeaderLabelContext": "Column End Header Label {level}",
+ "accessibleLevelContext": "Level {level}",
+ "accessibleRangeSelectModeOn": "Add selected range of cells mode on.",
+ "accessibleRangeSelectModeOff": "Add selected range of cells mode off.",
+ "accessibleFirstRow": "You have reached the first row.",
+ "accessibleLastRow": "You have reached the last row.",
+ "accessibleFirstColumn": "You have reached the first column",
+ "accessibleLastColumn": "You have reached the last column.",
+ "accessibleEndOfDataGrid": "End of data grid.",
+ "accessibleSelectionAffordanceTop": "Top selection handle.",
+ "accessibleSelectionAffordanceBottom": "Bottom selection handle.",
+ "accessibleLevelHierarchicalContext": "Level {level}",
+ "accessibleRowHierarchicalFull": "Row {posInSet} of {setSize} rows",
+ "accessibleRowHierarchicalPartial": "Row {posInSet} of at least {setSize} rows",
+ "accessibleRowHierarchicalUnknown": "At least row {posInSet} of at least {setSize} rows",
+ "accessibleColumnHierarchicalFull": "Column {posInSet} of {setSize} columns",
+ "accessibleColumnHierarchicalPartial": "Column {posInSet} of at least {setSize} columns",
+ "accessibleColumnHierarchicalUnknown": "At least column {posInSet} of at least {setSize} columns",
+ "accessibleFilterable": "Filterable",
+ "accessibleFiltered": "Filtered",
+ "msgFetchingData": "Fetching Data...",
+ "msgNoData": "No items to display.",
+ "msgReadOnly": "This cell is read-only and can't be edited.",
+ "labelHideColumns": "Hide Columns",
+ "labelHideRows": "Hide Rows",
+ "labelUnhideColumns": "Unhide Columns",
+ "labelUnhideRows": "Unhide Rows",
+ "labelResize": "Resize",
+ "labelResizeWidth": "Resize Width",
+ "labelResizeHeight": "Resize Height",
+ "labelSortAsc": "Sort Ascending",
+ "labelSortDsc": "Sort Descending",
+ "labelSortRow": "Sort Row",
+ "labelSortRowAsc": "Sort Row Ascending",
+ "labelSortRowDsc": "Sort Row Descending",
+ "labelSortCol": "Sort Column",
+ "labelSortColAsc": "Sort Column Ascending",
+ "labelSortColDsc": "Sort Column Descending",
+ "labelFilter": "Filter",
+ "labelFilterCol": "Filter Column",
+ "labelCut": "Cut",
+ "labelPaste": "Paste",
+ "labelCutCells": "Cut",
+ "labelPasteCells": "Paste",
+ "labelCopyCells": "Copy",
+ "labelAutoFill": "Autofill",
+ "labelEnableNonContiguous": "Enable Non-Contiguous Selection",
+ "labelDisableNonContiguous": "Disable Non-Contiguous Selection",
+ "labelResizeDialogSubmit": "OK",
+ "labelResizeDialogCancel": "Cancel",
+ "accessibleContainsControls": "Contains Controls",
+ "labelSelectMultiple": "Select Multiple",
+ "labelResizeDialogApply": "Apply",
+ "labelResizeFitToContent": "Resize to Fit",
+ "columnWidth": "Width in Pixels",
+ "rowHeight": "Height in Pixels",
+ "labelResizeColumn": "Resize Column",
+ "labelResizeRow": "Resize Row",
+ "resizeColumnDialog": "Resize column",
+ "resizeRowDialog": "Resize row",
+ "labelFreezeRow": "Freeze Rows",
+ "labelFreezeCol": "Freeze Columns",
+ "labelUnfreezeRow": "Unfreeze Rows",
+ "labelUnfreezeCol": "Unfreeze Columns",
+ "collapsedText": "Collapse",
+ "expandedText": "Expand",
+ "tooltipRequired": "Required"
+ },
+ "oj-ojRowExpander": {
+ "accessibleLevelDescription": "Level {level}",
+ "accessibleRowDescription": "Level {level}, Row {num} of {total}",
+ "accessibleRowDescriptionAtLeast": "Level {level}, Row {num} of at least {total}",
+ "accessibleRowExpanded": "Row expanded",
+ "accessibleRowCollapsed": "Row collapsed",
+ "accessibleStateExpanded": "expanded",
+ "accessibleStateCollapsed": "collapsed"
+ },
+ "oj-ojStreamList": {
+ "msgFetchingData": "Fetching Data..."
+ },
+ "oj-ojListView": {
+ "msgFetchingData": "Loading",
+ "msgNoData": "No items to display.",
+ "msgItemsAppended": "{count} items appended to the end.",
+ "msgFetchCompleted": "Loaded",
+ "indexerCharacters": "A|B|C|D|E|F|G|H|I|J|K|L|M|N|O|P|Q|R|S|T|U|V|W|X|Y|Z",
+ "accessibleExpandCollapseInstructionText": "Use arrow keys to expand and collapse.",
+ "accessibleGroupExpand": "Expanded",
+ "accessibleGroupCollapse": "Collapsed",
+ "accessibleReorderTouchInstructionText": "Double tap and hold. Wait for the sound then drag to rearrange.",
+ "accessibleReorderBeforeItem": "Before {item}",
+ "accessibleReorderAfterItem": "After {item}",
+ "accessibleReorderInsideItem": "Into {item}",
+ "accessibleNavigateSkipItems": "Skipping {numSkip} items",
+ "accessibleSuggestion": "Suggestion",
+ "labelCut": "Cut",
+ "labelCopy": "Copy",
+ "labelPaste": "Paste",
+ "labelPasteBefore": "Paste Before",
+ "labelPasteAfter": "Paste After"
+ },
+ "oj-ojWaterfallLayout": {
+ "msgFetchingData": "Fetching Data..."
+ },
+ "oj-_ojLabel": {
+ "tooltipHelp": "Help",
+ "tooltipRequired": "Required"
+ },
+ "oj-ojLabel": {
+ "tooltipHelp": "Help",
+ "tooltipRequired": "Required"
+ },
+ "oj-ojInputNumber": {
+ "required": {
+ "hint": "",
+ "messageSummary": "",
+ "messageDetail": ""
+ },
+ "numberRange": {
+ "hint": {
+ "min": "",
+ "max": "",
+ "inRange": "",
+ "exact": ""
+ },
+ "messageDetail": {
+ "rangeUnderflow": "",
+ "rangeOverflow": "",
+ "exact": ""
+ },
+ "messageSummary": {
+ "rangeUnderflow": "",
+ "rangeOverflow": ""
+ }
+ },
+ "tooltipDecrement": "Decrement",
+ "tooltipIncrement": "Increment"
+ },
+ "oj-ojTable": {
+ "accessibleAddRow": "Enter data to add a new row.",
+ "accessibleColumnContext": "Column {index}",
+ "accessibleColumnFooterContext": "Column Footer {index}",
+ "accessibleColumnHeaderContext": "Column Header {index}",
+ "accessibleContainsControls": "Contains Controls",
+ "accessibleColumnsSpan": "Spans {count} Columns",
+ "accessibleEditableSummary": "Press F2 to focus read only controls or enter to begin editing",
+ "accessibleRowContext": "Row {index}",
+ "accessibleSortable": "{id} sortable",
+ "accessibleSortAscending": "{id} sorted in ascending order",
+ "accessibleSortDescending": "{id} sorted in descending order",
+ "accessibleStateSelected": "selected",
+ "accessibleStateUnselected": "unselected",
+ "accessibleSummaryEstimate": "Table with {colnum} columns and more than {rownum} rows",
+ "accessibleSummaryExact": "Table with {colnum} columns and {rownum} rows",
+ "labelAccSelectionAffordanceTop": "Top selection handle",
+ "labelAccSelectionAffordanceBottom": "Bottom selection handle",
+ "labelEnableNonContiguousSelection": "Enable Non-Contiguous Selection",
+ "labelDisableNonContiguousSelection": "Disable Non-Contiguous Selection",
+ "labelResize": "Resize",
+ "labelResizeColumn": "Resize Column",
+ "labelResizePopupSubmit": "OK",
+ "labelResizePopupCancel": "Cancel",
+ "labelResizePopupSpinner": "Resize Column",
+ "labelResizeColumnDialog": "Resize column",
+ "labelColumnWidth": "Width in Pixels",
+ "labelResizeDialogApply": "Apply",
+ "labelSelectRow": "Select Row",
+ "labelSelectAllRows": "Select All Rows",
+ "labelEditRow": "Edit Row",
+ "labelSelectAndEditRow": "Select And Edit Row",
+ "labelSelectColumn": "Select Column",
+ "labelSort": "Sort",
+ "labelSortAsc": "Sort Ascending",
+ "labelSortDsc": "Sort Descending",
+ "msgFetchingData": "Fetching Data...",
+ "msgNoData": "No data to display.",
+ "msgInitializing": "Initializing...",
+ "msgColumnResizeWidthValidation": "Width value must be an integer.",
+ "msgScrollPolicyMaxCountSummary": "Exceeded maximum rows for table scrolling.",
+ "msgScrollPolicyMaxCountDetail": "Please reload with smaller data set.",
+ "msgStatusSortAscending": "{0} sorted in ascending order.",
+ "msgStatusSortDescending": "{0} sorted in descending order.",
+ "tooltipRequired": "Required",
+ "tooltipSeparator": " - "
+ },
+ "oj-ojTabs": {
+ "labelCut": "Cut",
+ "labelPasteBefore": "Paste Before",
+ "labelPasteAfter": "Paste After",
+ "labelRemove": "Remove",
+ "labelReorder": "Reorder",
+ "removeCueText": "Removable"
+ },
+ "oj-ojCheckboxset": {
+ "readonlyNoValue": "",
+ "required": {
+ "hint": "",
+ "messageSummary": "",
+ "messageDetail": "Select a value."
+ }
+ },
+ "oj-ojRadioset": {
+ "readonlyNoValue": "",
+ "required": {
+ "hint": "",
+ "messageSummary": "",
+ "messageDetail": "Select a value."
+ }
+ },
+ "oj-ojSelect": {
+ "required": {
+ "hint": "",
+ "messageSummary": "",
+ "messageDetail": "Select a value."
+ },
+ "searchField": "{label} search",
+ "noMatchesFound": "No matches found",
+ "noMoreResults": "No more results",
+ "oneMatchesFound": "One match found",
+ "moreMatchesFound": "{num} matches found",
+ "filterFurther": "More results available, please filter further."
+ },
+ "oj-ojSwitch": {
+ "SwitchON": "On",
+ "SwitchOFF": "Off"
+ },
+ "oj-ojCombobox": {
+ "required": {
+ "hint": "",
+ "messageSummary": "",
+ "messageDetail": ""
+ },
+ "noMatchesFound": "No matches found",
+ "noMoreResults": "No more results",
+ "oneMatchesFound": "One match found",
+ "moreMatchesFound": "{num} matches found",
+ "filterFurther": "More results available, please filter further."
+ },
+ "oj-ojSelectSingle": {
+ "required": {
+ "hint": "",
+ "messageSummary": "",
+ "messageDetail": "Select a value."
+ },
+ "noMatchesFound": "No matches found",
+ "oneMatchFound": "One match found",
+ "multipleMatchesFound": "{num} matches found",
+ "nOrMoreMatchesFound": "{num} or more matches found",
+ "cancel": "Cancel",
+ "labelAccOpenDropdown": "expand",
+ "labelAccClearValue": "clear value",
+ "noResultsLine1": "No results found",
+ "noResultsLine2": "We can't find anything matching your search."
+ },
+ "oj-ojInputSearch2": {
+ "cancel": "Cancel",
+ "noSuggestionsFound": "No suggestions found"
+ },
+ "oj-ojInputSearch": {
+ "required": {
+ "hint": "",
+ "messageSummary": "",
+ "messageDetail": ""
+ },
+ "noMatchesFound": "No matches found",
+ "oneMatchesFound": "One match found",
+ "moreMatchesFound": "{num} matches found"
+ },
+ "oj-ojTreeView": {
+ "treeViewSelectorAria": "TreeView Selector {rowKey}",
+ "retrievingDataAria": "Retrieving data for node: {nodeText}",
+ "receivedDataAria": "Received data for node: {nodeText}"
+ },
+ "oj-ojTree": {
+ "stateLoading": "Loading...",
+ "labelNewNode": "New Node",
+ "labelMultiSelection": "Multiple Selection",
+ "labelEdit": "Edit",
+ "labelCreate": "Create",
+ "labelCut": "Cut",
+ "labelCopy": "Copy",
+ "labelPaste": "Paste",
+ "labelPasteAfter": "Paste After",
+ "labelPasteBefore": "Paste Before",
+ "labelRemove": "Remove",
+ "labelRename": "Rename",
+ "labelNoData": "No data"
+ },
+ "oj-ojPagingControl": {
+ "labelAccPaging": "Pagination",
+ "labelAccPageNumber": "Page {pageNum} content loaded",
+ "labelAccNavFirstPage": "First Page",
+ "labelAccNavLastPage": "Last Page",
+ "labelAccNavNextPage": "Next Page",
+ "labelAccNavPreviousPage": "Previous Page",
+ "labelAccNavPage": "Page",
+ "labelLoadMore": "Show More...",
+ "labelLoadMoreMaxRows": "Reached Maximum Limit of {maxRows} rows",
+ "labelNavInputPage": "Page",
+ "labelNavInputPageMax": "of {pageMax}",
+ "fullMsgItemRange": "{pageFrom}-{pageTo} of {pageMax} items",
+ "fullMsgItemRangeAtLeast": "{pageFrom}-{pageTo} of at least {pageMax} items",
+ "fullMsgItemRangeApprox": "{pageFrom}-{pageTo} of approx {pageMax} items",
+ "msgItemRangeNoTotal": "{pageFrom}-{pageTo} items",
+ "fullMsgItem": "{pageTo} of {pageMax} items",
+ "fullMsgItemAtLeast": "{pageTo} of at least {pageMax} items",
+ "fullMsgItemApprox": "{pageTo} of approx {pageMax} items",
+ "msgItemNoTotal": "{pageTo} items",
+ "msgItemRangeCurrent": "{pageFrom}-{pageTo}",
+ "msgItemRangeCurrentSingle": "{pageFrom}",
+ "msgItemRangeOf": "of",
+ "msgItemRangeOfAtLeast": "of at least",
+ "msgItemRangeOfApprox": "of approx.",
+ "msgItemRangeItems": "items",
+ "tipNavInputPage": "Go To Page",
+ "tipNavPageLink": "Go To Page {pageNum}",
+ "tipNavNextPage": "Next",
+ "tipNavPreviousPage": "Previous",
+ "tipNavFirstPage": "First",
+ "tipNavLastPage": "Last",
+ "pageInvalid": {
+ "summary": "The page value entered is invalid.",
+ "detail": "Please enter a value greater than 0."
+ },
+ "maxPageLinksInvalid": {
+ "summary": "Value for maxPageLinks is invalid.",
+ "detail": "Please enter a value greater than 4."
+ }
+ },
+ "oj-ojMasonryLayout": {
+ "labelCut": "Cut",
+ "labelPasteBefore": "Paste Before",
+ "labelPasteAfter": "Paste After"
+ },
+ "oj-panel": {
+ "labelAccButtonExpand": "Expand",
+ "labelAccButtonCollapse": "Collapse",
+ "labelAccButtonRemove": "Remove",
+ "labelAccFlipForward": "Flip forward",
+ "labelAccFlipBack": "Flip back",
+ "tipDragToReorder": "Drag to reorder",
+ "labelAccDragToReorder": "Drag to reorder, context menu available"
+ },
+ "oj-ojChart": {
+ "accessibleContainsControls": "Contains Controls",
+ "labelCountWithTotal": "{0} of {1}",
+ "stateCollapsed": "Collapsed",
+ "stateExpanded": "Expanded",
+ "stateIsolated": "Isolated",
+ "stateMaximized": "Maximized",
+ "stateMinimized": "Minimized",
+ "labelDefaultGroupName": "Group {0}",
+ "labelSeries": "Series",
+ "labelGroup": "Group",
+ "labelDate": "Date",
+ "labelValue": "Value",
+ "labelDataLabel": "Label",
+ "labelTargetValue": "Target",
+ "labelX": "X",
+ "labelY": "Y",
+ "labelZ": "Z",
+ "labelPercentage": "Percentage",
+ "labelLow": "Low",
+ "labelHigh": "High",
+ "labelOpen": "Open",
+ "labelClose": "Close",
+ "labelVolume": "Volume",
+ "labelQ1": "Q1",
+ "labelQ2": "Q2",
+ "labelQ3": "Q3",
+ "labelMin": "Min",
+ "labelMax": "Max",
+ "labelOther": "Other",
+ "tooltipPan": "Pan",
+ "tooltipSelect": "Marquee select",
+ "tooltipZoom": "Marquee zoom",
+ "stateLoading": "Loading",
+ "stateLoaded": "Loaded",
+ "componentName": "Chart"
+ },
+ "oj-dvtBaseGauge": {
+ "componentName": "Gauge"
+ },
+ "oj-ojDiagram": {
+ "promotedLink": "{0} link",
+ "promotedLinks": "{0} links",
+ "promotedLinkAriaDesc": "Indirect",
+ "componentName": "Diagram"
+ },
+ "oj-ojGantt": {
+ "componentName": "Gantt",
+ "accessibleDurationDays": "{0} days",
+ "accessibleDurationHours": "{0} hours",
+ "accessibleTaskInfo": "Start time is {0}, end time is {1}, duration is {2}",
+ "accessibleMilestoneInfo": "Time is {0}",
+ "accessibleRowInfo": "Row {0}",
+ "accessibleTaskTypeMilestone": "Milestone",
+ "accessibleTaskTypeSummary": "Summary",
+ "accessiblePredecessorInfo": "{0} predecessors",
+ "accessibleSuccessorInfo": "{0} successors",
+ "accessibleDependencyInfo": "Dependency type {0}, connects {1} to {2}",
+ "startStartDependencyAriaDesc": "start to start",
+ "startFinishDependencyAriaDesc": "start to finish",
+ "finishStartDependencyAriaDesc": "finish to start",
+ "finishFinishDependencyAriaDesc": "finish to finish",
+ "tooltipZoomIn": "Zoom In",
+ "tooltipZoomOut": "Zoom Out",
+ "labelLevel": "Level",
+ "labelRow": "Row",
+ "labelStart": "Start",
+ "labelEnd": "End",
+ "labelDate": "Date",
+ "labelBaselineStart": "Baseline Start",
+ "labelBaselineEnd": "Baseline End",
+ "labelBaselineDate": "Baseline Date",
+ "labelDowntimeStart": "Downtime Start",
+ "labelDowntimeEnd": "Downtime End",
+ "labelOvertimeStart": "Overtime Start",
+ "labelOvertimeEnd": "Overtime End",
+ "labelAttribute": "Attribute",
+ "labelLabel": "Label",
+ "labelProgress": "Progress",
+ "labelMoveBy": "Move By",
+ "labelResizeBy": "Resize By",
+ "taskMoveInitiated": "Task move initiated",
+ "rowAxisLabel": "Row labels",
+ "taskResizeEndInitiated": "Task resize end initiated",
+ "taskResizeStartInitiated": "Task resize start initiated",
+ "taskMoveSelectionInfo": "{0} others selected",
+ "taskResizeSelectionInfo": "{0} others selected",
+ "taskMoveInitiatedInstruction": "Use the arrow keys to move",
+ "taskResizeInitiatedInstruction": "Use the arrow keys to resize",
+ "taskMoveFinalized": "Task move finalized",
+ "taskResizeFinalized": "Task resize finalized",
+ "taskMoveCancelled": "Task move cancelled",
+ "taskResizeCancelled": "Task resize cancelled",
+ "taskResizeStartHandle": "Task resize start handle",
+ "taskResizeEndHandle": "Task resize end handle"
+ },
+ "oj-ojLegend": {
+ "componentName": "Legend",
+ "tooltipExpand": "Expand",
+ "tooltipCollapse": "Collapse",
+ "labelInvalidData": "Invalid data",
+ "labelNoData": "No data to display",
+ "labelClearSelection": "Clear Selection",
+ "stateSelected": "Selected",
+ "stateUnselected": "Unselected",
+ "stateMaximized": "Maximized",
+ "stateMinimized": "Minimized",
+ "stateIsolated": "Isolated",
+ "labelCountWithTotal": "{0} of {1}",
+ "accessibleContainsControls": "Contains Controls"
+ },
+ "oj-ojNBox": {
+ "highlightedCount": "{0}/{1}",
+ "labelOther": "Other",
+ "labelGroup": "Group",
+ "labelSize": "Size",
+ "labelAdditionalData": "Additional Data",
+ "componentName": "{0} Box"
+ },
+ "oj-ojPictoChart": {
+ "componentName": "Picture Chart"
+ },
+ "oj-ojSparkChart": {
+ "componentName": "Chart"
+ },
+ "oj-ojSunburst": {
+ "labelColor": "Color",
+ "labelSize": "Size",
+ "tooltipExpand": "Expand",
+ "tooltipCollapse": "Collapse",
+ "stateLoading": "Loading",
+ "stateLoaded": "Loaded",
+ "componentName": "Sunburst"
+ },
+ "oj-ojTagCloud": {
+ "componentName": "Tag Cloud",
+ "accessibleContainsControls": "Contains Controls",
+ "labelCountWithTotal": "{0} of {1}",
+ "labelInvalidData": "Invalid data",
+ "stateCollapsed": "Collapsed",
+ "stateDrillable": "Drillable",
+ "stateExpanded": "Expanded",
+ "stateIsolated": "Isolated",
+ "stateHidden": "Hidden",
+ "stateMaximized": "Maximized",
+ "stateMinimized": "Minimized",
+ "stateVisible": "Visible"
+ },
+ "oj-ojThematicMap": {
+ "componentName": "Thematic Map",
+ "areasRegion": "Areas",
+ "linksRegion": "Links",
+ "markersRegion": "Markers"
+ },
+ "oj-ojTimeAxis": {
+ "componentName": "Time Axis"
+ },
+ "oj-ojTimeline": {
+ "componentName": "Timeline",
+ "stateMinimized": "Minimized",
+ "stateMaximized": "Maximized",
+ "stateIsolated": "Isolated",
+ "stateHidden": "Hidden",
+ "stateExpanded": "Expanded",
+ "stateVisible": "Visible",
+ "stateDrillable": "Drillable",
+ "stateCollapsed": "Collapsed",
+ "labelCountWithTotal": "{0} of {1}",
+ "accessibleItemDesc": "Description is {0}.",
+ "accessibleItemEnd": "End time is {0}.",
+ "accessibleItemStart": "Start time is {0}.",
+ "accessibleItemTitle": "Title is {0}.",
+ "labelSeries": "Series",
+ "tooltipZoomIn": "Zoom In",
+ "tooltipZoomOut": "Zoom Out",
+ "labelStart": "Start",
+ "labelEnd": "End",
+ "labelAccNavNextPage": "Next Page",
+ "labelAccNavPreviousPage": "Previous Page",
+ "tipArrowNextPage": "Next",
+ "tipArrowPreviousPage": "Previous",
+ "navArrowDisabledState": "Disabled",
+ "labelDate": "Date",
+ "labelTitle": "Title",
+ "labelDescription": "Description",
+ "labelMoveBy": "Move By",
+ "labelResizeBy": "Resize By",
+ "itemMoveInitiated": "Event move initiated",
+ "itemResizeEndInitiated": "Event resize end initiated",
+ "itemResizeStartInitiated": "Event resize start initiated",
+ "itemMoveSelectionInfo": "{0} others selected",
+ "itemResizeSelectionInfo": "{0} others selected",
+ "itemMoveInitiatedInstruction": "Use the arrow keys to move",
+ "itemResizeInitiatedInstruction": "Use the arrow keys to resize",
+ "itemMoveFinalized": "Event move finalized",
+ "itemResizeFinalized": "Event resize finalized",
+ "itemMoveCancelled": "Event move cancelled",
+ "itemResizeCancelled": "Event resize cancelled",
+ "itemResizeStartHandle": "Event resize start handle",
+ "itemResizeEndHandle": "Event resize end handle"
+ },
+ "oj-ojTreemap": {
+ "labelColor": "Color",
+ "labelSize": "Size",
+ "tooltipIsolate": "Isolate",
+ "tooltipRestore": "Restore",
+ "stateLoading": "Loading",
+ "stateLoaded": "Loaded",
+ "componentName": "Treemap"
+ },
+ "oj-dvtBaseComponent": {
+ "labelScalingSuffixThousand": "K",
+ "labelScalingSuffixMillion": "M",
+ "labelScalingSuffixBillion": "B",
+ "labelScalingSuffixTrillion": "T",
+ "labelScalingSuffixQuadrillion": "Q",
+ "labelInvalidData": "Invalid data",
+ "labelNoData": "No data to display",
+ "labelClearSelection": "Clear Selection",
+ "labelDataVisualization": "Data Visualization",
+ "stateSelected": "Selected",
+ "stateUnselected": "Unselected",
+ "stateMaximized": "Maximized",
+ "stateMinimized": "Minimized",
+ "stateExpanded": "Expanded",
+ "stateCollapsed": "Collapsed",
+ "stateIsolated": "Isolated",
+ "stateHidden": "Hidden",
+ "stateVisible": "Visible",
+ "stateDrillable": "Drillable",
+ "labelAndValue": "{0}: {1}",
+ "labelCountWithTotal": "{0} of {1}",
+ "accessibleContainsControls": "Contains Controls"
+ },
+ "oj-ojRatingGauge": {
+ "labelClearSelection": "Clear Selection",
+ "stateSelected": "Selected",
+ "stateUnselected": "Unselected",
+ "stateMaximized": "Maximized",
+ "stateMinimized": "Minimized",
+ "stateExpanded": "Expanded",
+ "stateCollapsed": "Collapsed",
+ "stateIsolated": "Isolated",
+ "stateHidden": "Hidden",
+ "stateVisible": "Visible",
+ "stateDrillable": "Drillable",
+ "labelCountWithTotal": "{0} of {1}",
+ "accessibleContainsControls": "Contains Controls"
+ },
+ "oj-ojStatusMeterGauge": {
+ "labelClearSelection": "Clear Selection",
+ "stateSelected": "Selected",
+ "stateUnselected": "Unselected",
+ "stateMaximized": "Maximized",
+ "stateMinimized": "Minimized",
+ "stateExpanded": "Expanded",
+ "stateCollapsed": "Collapsed",
+ "stateIsolated": "Isolated",
+ "stateHidden": "Hidden",
+ "stateVisible": "Visible",
+ "stateDrillable": "Drillable",
+ "labelCountWithTotal": "{0} of {1}",
+ "accessibleContainsControls": "Contains Controls"
+ },
+ "oj-ojNavigationList": {
+ "defaultRootLabel": "Navigation List",
+ "hierMenuBtnLabel": "Hierarchical Menu button",
+ "selectedLabel": "selected",
+ "previousIcon": "Previous",
+ "msgFetchingData": "Fetching Data...",
+ "msgNoData": "",
+ "overflowItemLabel": "More Tabs",
+ "accessibleReorderTouchInstructionText": "Double tap and hold. Wait for the sound then drag to rearrange.",
+ "accessibleReorderBeforeItem": "Before {item}",
+ "accessibleReorderAfterItem": "After {item}",
+ "labelCut": "Cut",
+ "labelPasteBefore": "Paste Before",
+ "labelPasteAfter": "Paste After",
+ "labelRemove": "Remove",
+ "removeCueText": "Removable",
+ "accessibleExpandCollapseInstructionText": "Use arrow keys to expand and collapse.",
+ "labelActions": "Actions",
+ "labelMoveLeft": "Move Left",
+ "labelMoveRight": "Move Right",
+ "labelContextMenu": "has context menu"
+ },
+ "oj-ojSlider": {
+ "noValue": "ojSlider has no value",
+ "maxMin": "Max must not be less than or equal to min",
+ "startEnd": "value.start must not be greater than value.end",
+ "valueRange": "Value must be within min to max range",
+ "optionNum": "{option} option is not a number",
+ "invalidStep": "Invalid step; step must be > 0",
+ "lowerValueThumb": "lower value thumb",
+ "higherValueThumb": "higher value thumb"
+ },
+ "oj-ojDialog": {
+ "labelCloseIcon": "Close"
+ },
+ "oj-ojPopup": {
+ "ariaLiveRegionInitialFocusFirstFocusable": "Entering pop-up. Press F6 to navigate between the pop-up and associated control.",
+ "ariaLiveRegionInitialFocusNone": "Pop-up opened. Press F6 to navigate between the pop-up and associated control.",
+ "ariaLiveRegionInitialFocusFirstFocusableTouch": "Entering pop-up. Pop-up can be closed by navigating to the last link within the pop-up.",
+ "ariaLiveRegionInitialFocusNoneTouch": "Pop-up opened. Navigate to the next link to establish focus within the pop-up.",
+ "ariaFocusSkipLink": "Double tap to navigate to the open pop-up.",
+ "ariaCloseSkipLink": "Double tap to close the open pop-up."
+ },
+ "oj-ojRefresher": {
+ "ariaRefreshLink": "Activate link to refresh content",
+ "ariaRefreshingLink": "Refreshing content",
+ "ariaRefreshCompleteLink": "Refresh complete"
+ },
+ "oj-ojSwipeActions": {
+ "ariaShowStartActionsDescription": "Show start actions",
+ "ariaShowEndActionsDescription": "Show end actions",
+ "ariaHideActionsDescription": "Hide actions"
+ },
+ "oj-ojIndexer": {
+ "indexerCharacters": "A|B|C|D|E|F|G|H|I|J|K|L|M|N|O|P|Q|R|S|T|U|V|W|X|Y|Z",
+ "indexerOthers": "#",
+ "ariaDisabledLabel": "No matching group header",
+ "ariaOthersLabel": "number",
+ "ariaInBetweenText": "Between {first} and {second}",
+ "ariaKeyboardInstructionText": "Press enter to select value.",
+ "ariaTouchInstructionText": "Double tap and hold to enter gesture mode, then drag up or down to adjust value."
+ },
+ "oj-ojMenu": {
+ "labelCancel": "Cancel",
+ "ariaFocusSkipLink": "Focus is within the menu, double tap or swipe to move focus to the first menu item."
+ },
+ "oj-ojColorSpectrum": {
+ "labelHue": "Hue",
+ "labelOpacity": "Opacity",
+ "labelSatLum": "Saturation/Luminance",
+ "labelThumbDesc": "Color spectrum four way slider."
+ },
+ "oj-ojColorPalette": {
+ "labelNone": "None"
+ },
+ "oj-ojColorPicker": {
+ "labelSwatches": "Swatches",
+ "labelCustomColors": "Custom Colors",
+ "labelPrevColor": "Previous Color",
+ "labelDefColor": "Default Color",
+ "labelDelete": "Delete",
+ "labelDeleteQ": "Delete?",
+ "labelAdd": "Add",
+ "labelAddColor": "Add color",
+ "labelMenuHex": "HEX",
+ "labelMenuRgba": "RGBa",
+ "labelMenuHsla": "HSLa",
+ "labelSliderHue": "Hue",
+ "labelSliderSaturation": "Saturation",
+ "labelSliderSat": "Sat",
+ "labelSliderLightness": "Lightness",
+ "labelSliderLum": "Luminosity",
+ "labelSliderAlpha": "Alpha",
+ "labelOpacity": "Opacity",
+ "labelSliderRed": "Red",
+ "labelSliderGreen": "Green",
+ "labelSliderBlue": "Blue"
+ },
+ "oj-ojFilePicker": {
+ "dropzoneText": "Drop files here or click to upload",
+ "singleFileUploadError": "Upload one file at a time.",
+ "singleFileTypeUploadError": "You can't upload files of type {fileType}.",
+ "multipleFileTypeUploadError": "You can't upload files of type: {fileTypes}.",
+ "dropzonePrimaryText": "Drag and Drop",
+ "secondaryDropzoneText": "Select a file or drop one here.",
+ "secondaryDropzoneTextMultiple": "Select or drop files here.",
+ "unknownFileType": "unknown"
+ },
+ "oj-ojProgressbar": {
+ "ariaIndeterminateProgressText": "In Progress"
+ },
+ "oj-ojMessage": {
+ "labelCloseIcon": "Close",
+ "categories": {
+ "error": "Error",
+ "warning": "Warning",
+ "info": "Information",
+ "confirmation": "Confirmation",
+ "none": "None"
+ }
+ },
+ "oj-ojMessages": {
+ "labelLandmark": "Messages",
+ "ariaLiveRegion": {
+ "navigationFromKeyboard": "Entering messages region. Press F6 to navigate back to prior focused element.",
+ "navigationToTouch": "Messages region has new messages.",
+ "navigationToKeyboard": "Messages region has new messages. Press F6 to navigate.",
+ "newMessage": "Message category {category}. {summary}. {detail}.",
+ "noDetail": "Detail is not available"
+ }
+ },
+ "oj-ojMessageBanner": {
+ "close": "Close",
+ "navigationFromMessagesRegion": "Entering messages region. Press F6 to navigate back to prior focused element.",
+ "navigationToMessagesRegion": "Messages region has new messages. Press F6 to navigate.",
+ "navigationToTouch": "Messages region has new messages.",
+ "error": "Error",
+ "warning": "Warning",
+ "info": "Information",
+ "confirmation": "Confirmation"
+ },
+ "oj-ojConveyorBelt": {
+ "tipArrowNext": "Next",
+ "tipArrowPrevious": "Previous"
+ },
+ "oj-ojTrain": {
+ "stepInfo": "Step {index} out of {count}.",
+ "stepStatus": "Status: {status}.",
+ "stepCurrent": "Current",
+ "stepVisited": "Visited",
+ "stepNotVisited": "Not visited",
+ "stepDisabled": "Disabled",
+ "stepMessageType": "Message type: {messageType}.",
+ "stepMessageConfirmation": "Confirmed",
+ "stepMessageInfo": "Info",
+ "stepMessageWarning": "Warning",
+ "stepMessageError": "Error"
+ }
+};
+
+export default translations;
diff --git a/dist/js/libs/oj/debug_esm/ojtreedataprovider.js b/dist/js/libs/oj/debug_esm/ojtreedataprovider.js
index 0095b8cb..f1aaba0f 100644
--- a/dist/js/libs/oj/debug_esm/ojtreedataprovider.js
+++ b/dist/js/libs/oj/debug_esm/ojtreedataprovider.js
@@ -5,7 +5,7 @@
* as shown at https://oss.oracle.com/licenses/upl/
* @ignore
*/
-import oj from 'ojs/ojcore';
+import oj from './ojcore.js';
const TreeDataProvider = function () {};
// mapping variable definition, used in a no-require environment. Maps the TreeDataProvider function object to the name used in the require callback.
diff --git a/dist/js/libs/oj/debug_esm/ojtreedataprovideradapter.js b/dist/js/libs/oj/debug_esm/ojtreedataprovideradapter.js
index fb85ac3d..7f256318 100644
--- a/dist/js/libs/oj/debug_esm/ojtreedataprovideradapter.js
+++ b/dist/js/libs/oj/debug_esm/ojtreedataprovideradapter.js
@@ -5,10 +5,10 @@
* as shown at https://oss.oracle.com/licenses/upl/
* @ignore
*/
-import oj from 'ojs/ojcore-base';
-import DataSourceAdapter from 'ojs/ojdataprovideradapter-base';
-import { DataProviderMutationEvent, DataProviderRefreshEvent, FetchByKeysMixin, FetchByOffsetMixin } from 'ojs/ojdataprovider';
-import KeyMap from 'ojs/ojmap';
+import oj from './ojcore-base.js';
+import DataSourceAdapter from './ojdataprovideradapter-base.js';
+import { DataProviderMutationEvent, DataProviderRefreshEvent, FetchByKeysMixin, FetchByOffsetMixin } from './ojdataprovider.js';
+import KeyMap from './ojmap.js';
class TreeDataSourceAdapter extends DataSourceAdapter {
constructor(treeDataSource) {
diff --git a/dist/js/libs/oj/debug_esm/ojtreedataproviderview.js b/dist/js/libs/oj/debug_esm/ojtreedataproviderview.js
index 6d52e053..aa7446b9 100644
--- a/dist/js/libs/oj/debug_esm/ojtreedataproviderview.js
+++ b/dist/js/libs/oj/debug_esm/ojtreedataproviderview.js
@@ -5,8 +5,8 @@
* as shown at https://oss.oracle.com/licenses/upl/
* @ignore
*/
-import oj from 'ojs/ojcore-base';
-import ListDataProviderView from 'ojs/ojlistdataproviderview';
+import oj from './ojcore-base.js';
+import ListDataProviderView from './ojlistdataproviderview.js';
/**
* @preserve Copyright 2013 jQuery Foundation and other contributors
diff --git a/dist/js/libs/oj/debug_esm/ojtreemap.js b/dist/js/libs/oj/debug_esm/ojtreemap.js
index 02f2471f..9a9e0071 100644
--- a/dist/js/libs/oj/debug_esm/ojtreemap.js
+++ b/dist/js/libs/oj/debug_esm/ojtreemap.js
@@ -5,12 +5,12 @@
* as shown at https://oss.oracle.com/licenses/upl/
* @ignore
*/
-import oj from 'ojs/ojcore-base';
-import 'ojs/ojcomponentcore';
+import oj from './ojcore-base.js';
+import './ojcomponentcore.js';
import $ from 'jquery';
-import 'ojs/ojdvt-base';
-import { Treemap } from 'ojs/ojdvt-treeview';
-import { AllKeySetImpl } from 'ojs/ojkeyset';
+import './ojdvt-base.js';
+import { Treemap } from './ojdvt-treeview.js';
+import { AllKeySetImpl } from './ojkeyset.js';
var __oj_treemap_metadata =
{
diff --git a/dist/js/libs/oj/debug_esm/ojtreeview.js b/dist/js/libs/oj/debug_esm/ojtreeview.js
index 9b4e8cc5..ac036f23 100644
--- a/dist/js/libs/oj/debug_esm/ojtreeview.js
+++ b/dist/js/libs/oj/debug_esm/ojtreeview.js
@@ -5,22 +5,22 @@
* as shown at https://oss.oracle.com/licenses/upl/
* @ignore
*/
-import oj from 'ojs/ojcore-base';
+import oj from './ojcore-base.js';
import $ from 'jquery';
-import Context from 'ojs/ojcontext';
-import { getCachedCSSVarValues } from 'ojs/ojthemeutils';
-import { __GetWidgetConstructor } from 'ojs/ojcomponentcore';
-import { fadeIn, startAnimation, fadeOut } from 'ojs/ojanimation';
-import { isTouchSupported, getCSSTimeUnitAsMillis, isMetaKeyPressed } from 'ojs/ojdomutils';
-import { error, info } from 'ojs/ojlogger';
-import { __getTemplateEngine } from 'ojs/ojconfig';
-import { KeySetImpl, KeySetUtils, AllKeySetImpl } from 'ojs/ojkeyset';
-import 'ojs/ojselector';
+import Context from './ojcontext.js';
+import { getCachedCSSVarValues } from './ojthemeutils.js';
+import { __GetWidgetConstructor } from './ojcomponentcore.js';
+import { fadeIn, startAnimation, fadeOut } from './ojanimation.js';
+import { isTouchSupported, getCSSTimeUnitAsMillis, isMetaKeyPressed } from './ojdomutils.js';
+import { error, info } from './ojlogger.js';
+import { __getTemplateEngine } from './ojconfig.js';
+import { KeySetImpl, KeySetUtils, AllKeySetImpl } from './ojkeyset.js';
+import './ojselector.js';
import 'ojdnd';
-import { CustomElementUtils, ElementUtils } from 'ojs/ojcustomelement-utils';
-import { areKeySetsEqual, applyRendererContent, disableAllFocusableElements, isArrowUpKeyEvent, isArrowDownKeyEvent, isSpaceBarKeyEvent, isFromDefaultSelector, isArrowLeftKeyEvent, isArrowRightKeyEvent, isLetterAKeyEvent, isSafari, getAddEventKeysResult, getEventDetail } from 'ojs/ojdatacollection-common';
-import { getTranslatedString } from 'ojs/ojtranslation';
-import OjSet from 'ojs/ojset';
+import { CustomElementUtils, ElementUtils } from './ojcustomelement-utils.js';
+import { areKeySetsEqual, applyRendererContent, disableAllFocusableElements, isArrowUpKeyEvent, isArrowDownKeyEvent, isSpaceBarKeyEvent, isFromDefaultSelector, isArrowLeftKeyEvent, isArrowRightKeyEvent, isLetterAKeyEvent, isSafari, getAddEventKeysResult, getEventDetail } from './ojdatacollection-common.js';
+import { getTranslatedString } from './ojtranslation.js';
+import OjSet from './ojset.js';
class TreeviewSelectionManager {
constructor(
@@ -1583,7 +1583,7 @@ class TreeviewSelectionManager {
if (self.m_dataSource == null) {
data = self.options.data;
if (!oj.DataProviderFeatureChecker.isTreeDataProvider(data)) {
- var adapterPromise = import('ojs/ojtreedataprovideradapter');
+ var adapterPromise = import('./ojtreedataprovideradapter.js');
if (!adapterPromise) {
throw new Error('Error adapting a TreeDataSource');
}
diff --git a/dist/js/libs/oj/debug_esm/ojurlparamadapter.js b/dist/js/libs/oj/debug_esm/ojurlparamadapter.js
index e04c775f..ef02fe11 100644
--- a/dist/js/libs/oj/debug_esm/ojurlparamadapter.js
+++ b/dist/js/libs/oj/debug_esm/ojurlparamadapter.js
@@ -5,7 +5,7 @@
* as shown at https://oss.oracle.com/licenses/upl/
* @ignore
*/
-import UrlPathAdapter from 'ojs/ojurlpathadapter';
+import UrlPathAdapter from './ojurlpathadapter.js';
// The old (8.0.0) paramter name
var _OLD_PARAM_NAME = '_ojCoreRouter';
diff --git a/dist/js/libs/oj/debug_esm/ojvalidation-error.js b/dist/js/libs/oj/debug_esm/ojvalidation-error.js
index ced3aa63..dd25615a 100644
--- a/dist/js/libs/oj/debug_esm/ojvalidation-error.js
+++ b/dist/js/libs/oj/debug_esm/ojvalidation-error.js
@@ -5,8 +5,8 @@
* as shown at https://oss.oracle.com/licenses/upl/
* @ignore
*/
-import oj from 'ojs/ojcore';
-import Message from 'ojs/ojmessaging';
+import oj from './ojcore.js';
+import Message from './ojmessaging.js';
// ValidatorError
diff --git a/dist/js/libs/oj/debug_esm/ojvalidationgroup.js b/dist/js/libs/oj/debug_esm/ojvalidationgroup.js
index ab2d3d14..e06208f3 100644
--- a/dist/js/libs/oj/debug_esm/ojvalidationgroup.js
+++ b/dist/js/libs/oj/debug_esm/ojvalidationgroup.js
@@ -5,11 +5,11 @@
* as shown at https://oss.oracle.com/licenses/upl/
* @ignore
*/
-import oj$1 from 'ojs/ojcore-base';
-import { CustomElementUtils } from 'ojs/ojcustomelement-utils';
-import Context from 'ojs/ojcontext';
-import { info } from 'ojs/ojlogger';
-import { __GetWidgetConstructor } from 'ojs/ojcomponentcore';
+import oj$1 from './ojcore-base.js';
+import { CustomElementUtils } from './ojcustomelement-utils.js';
+import Context from './ojcontext.js';
+import { info } from './ojlogger.js';
+import { __GetWidgetConstructor } from './ojcomponentcore.js';
/**
* @ojcomponent oj.ojValidationGroup
diff --git a/dist/js/libs/oj/debug_esm/ojvalidator-daterestriction.js b/dist/js/libs/oj/debug_esm/ojvalidator-daterestriction.js
index 7274968a..3d01645b 100644
--- a/dist/js/libs/oj/debug_esm/ojvalidator-daterestriction.js
+++ b/dist/js/libs/oj/debug_esm/ojvalidator-daterestriction.js
@@ -5,13 +5,13 @@
* as shown at https://oss.oracle.com/licenses/upl/
* @ignore
*/
-import oj from 'ojs/ojcore';
-import * as Translations from 'ojs/ojtranslation';
-import Validator from 'ojs/ojvalidator';
-import { ValidatorError } from 'ojs/ojvalidation-error';
-import { IntlDateTimeConverter } from 'ojs/ojconverter-datetime';
-import { IntlConverterUtils } from 'ojs/ojconverterutils-i18n';
-import ConverterUtils from 'ojs/ojconverterutils';
+import oj from './ojcore.js';
+import * as Translations from './ojtranslation.js';
+import Validator from './ojvalidator.js';
+import { ValidatorError } from './ojvalidation-error.js';
+import { IntlDateTimeConverter } from './ojconverter-datetime.js';
+import { IntlConverterUtils } from './ojconverterutils-i18n.js';
+import ConverterUtils from './ojconverterutils.js';
/**
* Constructs a DateRestrictionValidator that ensures the value provided is
diff --git a/dist/js/libs/oj/debug_esm/ojvalidator-datetimerange.js b/dist/js/libs/oj/debug_esm/ojvalidator-datetimerange.js
index 1b50c2a7..195fd972 100644
--- a/dist/js/libs/oj/debug_esm/ojvalidator-datetimerange.js
+++ b/dist/js/libs/oj/debug_esm/ojvalidator-datetimerange.js
@@ -5,14 +5,14 @@
* as shown at https://oss.oracle.com/licenses/upl/
* @ignore
*/
-import oj from 'ojs/ojcore';
-import * as Translations from 'ojs/ojtranslation';
-import { getTranslatedString } from 'ojs/ojtranslation';
-import Validator from 'ojs/ojvalidator';
-import { ValidatorError } from 'ojs/ojvalidation-error';
-import { IntlDateTimeConverter } from 'ojs/ojconverter-datetime';
-import { IntlConverterUtils } from 'ojs/ojconverterutils-i18n';
-import ConverterUtils from 'ojs/ojconverterutils';
+import oj from './ojcore.js';
+import * as Translations from './ojtranslation.js';
+import { getTranslatedString } from './ojtranslation.js';
+import Validator from './ojvalidator.js';
+import { ValidatorError } from './ojvalidation-error.js';
+import { IntlDateTimeConverter } from './ojconverter-datetime.js';
+import { IntlConverterUtils } from './ojconverterutils-i18n.js';
+import ConverterUtils from './ojconverterutils.js';
/**
* Constructs a DateTimeRangeValidator that ensures the value provided is within a given range.
diff --git a/dist/js/libs/oj/debug_esm/ojvalidator-length.js b/dist/js/libs/oj/debug_esm/ojvalidator-length.js
index 5fa27754..19571ed4 100644
--- a/dist/js/libs/oj/debug_esm/ojvalidator-length.js
+++ b/dist/js/libs/oj/debug_esm/ojvalidator-length.js
@@ -5,10 +5,10 @@
* as shown at https://oss.oracle.com/licenses/upl/
* @ignore
*/
-import oj from 'ojs/ojcore';
-import * as Translations from 'ojs/ojtranslation';
-import Validator from 'ojs/ojvalidator';
-import { ValidatorError } from 'ojs/ojvalidation-error';
+import oj from './ojcore.js';
+import * as Translations from './ojtranslation.js';
+import Validator from './ojvalidator.js';
+import { ValidatorError } from './ojvalidation-error.js';
/**
* Constructs a LengthValidator that ensures the value entered is within a given length.
diff --git a/dist/js/libs/oj/debug_esm/ojvalidator-localdaterange.js b/dist/js/libs/oj/debug_esm/ojvalidator-localdaterange.js
index 0831dfd3..10e71d4c 100644
--- a/dist/js/libs/oj/debug_esm/ojvalidator-localdaterange.js
+++ b/dist/js/libs/oj/debug_esm/ojvalidator-localdaterange.js
@@ -5,7 +5,7 @@
* as shown at https://oss.oracle.com/licenses/upl/
* @ignore
*/
-import * as Translations from 'ojs/ojtranslation';
+import * as Translations from './ojtranslation.js';
import { DateTimeUtils } from '@oracle/oraclejet-preact/UNSAFE_IntlDateTime';
// This class is used to validate that a local date (a date with no time element) falls within
diff --git a/dist/js/libs/oj/debug_esm/ojvalidator-numberrange.js b/dist/js/libs/oj/debug_esm/ojvalidator-numberrange.js
index 544e3deb..b6ee9c72 100644
--- a/dist/js/libs/oj/debug_esm/ojvalidator-numberrange.js
+++ b/dist/js/libs/oj/debug_esm/ojvalidator-numberrange.js
@@ -5,11 +5,11 @@
* as shown at https://oss.oracle.com/licenses/upl/
* @ignore
*/
-import oj from 'ojs/ojcore';
-import * as Translations from 'ojs/ojtranslation';
-import Validator from 'ojs/ojvalidator';
-import { ValidatorError } from 'ojs/ojvalidation-error';
-import ConverterUtils from 'ojs/ojconverterutils';
+import oj from './ojcore.js';
+import * as Translations from './ojtranslation.js';
+import Validator from './ojvalidator.js';
+import { ValidatorError } from './ojvalidation-error.js';
+import ConverterUtils from './ojconverterutils.js';
/**
* Constructs a NumberRangeValidator that ensures the value provided is within a given range.
diff --git a/dist/js/libs/oj/debug_esm/ojvalidator-regexp.js b/dist/js/libs/oj/debug_esm/ojvalidator-regexp.js
index 67421c87..3770c526 100644
--- a/dist/js/libs/oj/debug_esm/ojvalidator-regexp.js
+++ b/dist/js/libs/oj/debug_esm/ojvalidator-regexp.js
@@ -5,10 +5,10 @@
* as shown at https://oss.oracle.com/licenses/upl/
* @ignore
*/
-import oj from 'ojs/ojcore';
-import { applyParameters, getTranslatedString } from 'ojs/ojtranslation';
-import Validator from 'ojs/ojvalidator';
-import { ValidatorError } from 'ojs/ojvalidation-error';
+import oj from './ojcore.js';
+import { applyParameters, getTranslatedString } from './ojtranslation.js';
+import Validator from './ojvalidator.js';
+import { ValidatorError } from './ojvalidation-error.js';
/**
* Constructs a RegExpValidator that ensures the value matches the provided pattern.
diff --git a/dist/js/libs/oj/debug_esm/ojvalidator-required.js b/dist/js/libs/oj/debug_esm/ojvalidator-required.js
index 17c58b9c..7bbb9de5 100644
--- a/dist/js/libs/oj/debug_esm/ojvalidator-required.js
+++ b/dist/js/libs/oj/debug_esm/ojvalidator-required.js
@@ -5,10 +5,10 @@
* as shown at https://oss.oracle.com/licenses/upl/
* @ignore
*/
-import oj from 'ojs/ojcore';
-import { applyParameters, getTranslatedString } from 'ojs/ojtranslation';
-import Validator from 'ojs/ojvalidator';
-import { ValidatorError } from 'ojs/ojvalidation-error';
+import oj from './ojcore.js';
+import { applyParameters, getTranslatedString } from './ojtranslation.js';
+import Validator from './ojvalidator.js';
+import { ValidatorError } from './ojvalidation-error.js';
/**
* Constructs a RequiredValidator that ensures that the value provided is not empty.
diff --git a/dist/js/libs/oj/debug_esm/ojvalidator.js b/dist/js/libs/oj/debug_esm/ojvalidator.js
index 396ec345..d9e7dc45 100644
--- a/dist/js/libs/oj/debug_esm/ojvalidator.js
+++ b/dist/js/libs/oj/debug_esm/ojvalidator.js
@@ -5,7 +5,7 @@
* as shown at https://oss.oracle.com/licenses/upl/
* @ignore
*/
-import oj from 'ojs/ojcore';
+import oj from './ojcore.js';
/**
* Validator Contract
diff --git a/dist/js/libs/oj/debug_esm/ojvcollection.js b/dist/js/libs/oj/debug_esm/ojvcollection.js
index bd74300a..00a2d9c8 100644
--- a/dist/js/libs/oj/debug_esm/ojvcollection.js
+++ b/dist/js/libs/oj/debug_esm/ojvcollection.js
@@ -5,11 +5,11 @@
* as shown at https://oss.oracle.com/licenses/upl/
* @ignore
*/
-import oj from 'ojs/ojcore-base';
-import { getEventDetail, CHECKVIEWPORT_THRESHOLD, getScrollEventElement } from 'ojs/ojdatacollection-common';
-import { info, warn, error } from 'ojs/ojlogger';
-import CachedIteratorResultsDataProvider from 'ojs/ojcachediteratorresultsdataprovider';
-import DomScroller from 'ojs/ojdomscroller';
+import oj from './ojcore-base.js';
+import { getEventDetail, CHECKVIEWPORT_THRESHOLD, getScrollEventElement } from './ojdatacollection-common.js';
+import { info, warn, error } from './ojlogger.js';
+import CachedIteratorResultsDataProvider from './ojcachediteratorresultsdataprovider.js';
+import DomScroller from './ojdomscroller.js';
/**
* Base class that generates content from a DataProvider on behalf of the component
diff --git a/dist/js/libs/oj/debug_esm/ojvcomponent-binding.js b/dist/js/libs/oj/debug_esm/ojvcomponent-binding.js
index 980d3739..1c6fc63e 100644
--- a/dist/js/libs/oj/debug_esm/ojvcomponent-binding.js
+++ b/dist/js/libs/oj/debug_esm/ojvcomponent-binding.js
@@ -29,8 +29,8 @@
*
*
*
- * import { consumedBindings, providedBindings } from "ojs/ojvcomponent-binding";
- * import { customElement, ExtendGlobalProps } from "ojs/ojvcomponent";
+ * import { consumedBindings, providedBindings } from './ojvcomponent-binding.js';
+ * import { customElement, ExtendGlobalProps } from './ojvcomponent.js';
* import { Component } from "preact";
*
* type Props = Readonly<{
diff --git a/dist/js/libs/oj/debug_esm/ojvcomponent-template.js b/dist/js/libs/oj/debug_esm/ojvcomponent-template.js
index 848526ae..fe9232bf 100644
--- a/dist/js/libs/oj/debug_esm/ojvcomponent-template.js
+++ b/dist/js/libs/oj/debug_esm/ojvcomponent-template.js
@@ -5,22 +5,22 @@
* as shown at https://oss.oracle.com/licenses/upl/
* @ignore
*/
-import { info } from 'ojs/ojlogger';
-import { getTemplateContent } from 'ojs/ojhtmlutils';
-import { CustomElementUtils, AttributeUtils, ElementUtils } from 'ojs/ojcustomelement-utils';
-import { getMetadata, getPropertiesForElementTag, isElementRegistered } from 'ojs/ojcustomelement-registry';
+import { info } from './ojlogger.js';
+import { getTemplateContent } from './ojhtmlutils.js';
+import { CustomElementUtils, AttributeUtils, ElementUtils } from './ojcustomelement-utils.js';
+import { getMetadata, getPropertiesForElementTag, isElementRegistered } from './ojcustomelement-registry.js';
import { Component, Fragment, h, render } from 'preact';
import { jsx } from 'preact/jsx-runtime';
-import Context from 'ojs/ojcontext';
-import { ReportBusyContext } from 'ojs/ojvcomponent';
-import { withDataProvider } from 'ojs/ojdataproviderhandler';
-import { ManageTabStops } from 'ojs/ojpreact-managetabstops';
-import { getPropagationMetadataViaCache, CONSUMED_CONTEXT, STATIC_PROPAGATION } from 'ojs/ojbindpropagation';
-import { getExpressionEvaluator } from 'ojs/ojconfig';
-import { getPropertyMetadata } from 'ojs/ojmetadatautils';
-import { PROXY_SYMBOL, CspExpressionEvaluatorInternal } from 'ojs/ojcspexpressionevaluator-internal';
-import { performMonitoredWriteback } from 'ojs/ojmonitoring';
-import { IDENTIFIER, ARRAY_EXP, LITERAL, OBJECT_EXP, PROPERTY, UNARY_EXP, CONDITIONAL_EXP, CALL_EXP } from 'ojs/ojexpparser';
+import Context from './ojcontext.js';
+import { ReportBusyContext } from './ojvcomponent.js';
+import { withDataProvider } from './ojdataproviderhandler.js';
+import { ManageTabStops } from './ojpreact-managetabstops.js';
+import { getPropagationMetadataViaCache, CONSUMED_CONTEXT, STATIC_PROPAGATION } from './ojbindpropagation.js';
+import { getExpressionEvaluator } from './ojconfig.js';
+import { getPropertyMetadata } from './ojmetadatautils.js';
+import { PROXY_SYMBOL, CspExpressionEvaluatorInternal } from './ojcspexpressionevaluator-internal.js';
+import { performMonitoredWriteback } from './ojmonitoring.js';
+import { IDENTIFIER, ARRAY_EXP, LITERAL, OBJECT_EXP, PROPERTY, UNARY_EXP, CONDITIONAL_EXP, CALL_EXP } from './ojexpparser.js';
class Props {
}
diff --git a/dist/js/libs/oj/debug_esm/ojvcomponent.js b/dist/js/libs/oj/debug_esm/ojvcomponent.js
index af73aea3..777460cc 100644
--- a/dist/js/libs/oj/debug_esm/ojvcomponent.js
+++ b/dist/js/libs/oj/debug_esm/ojvcomponent.js
@@ -8,19 +8,19 @@
import { forwardRef } from 'preact/compat';
import { jsx } from 'preact/jsx-runtime';
import { h, options, Component, createRef, render, cloneElement, Fragment, createContext } from 'preact';
-import { JetElementError, CustomElementUtils, AttributeUtils, transformPreactValue, ElementUtils, CHILD_BINDING_PROVIDER, publicToPrivateName, toSymbolizedValue, LifecycleElementState, ElementState, addPrivatePropGetterSetters } from 'ojs/ojcustomelement-utils';
-import { getElementRegistration, isElementRegistered, isVComponent, getElementDescriptor, registerElement as registerElement$1 } from 'ojs/ojcustomelement-registry';
+import { JetElementError, CustomElementUtils, AttributeUtils, transformPreactValue, ElementUtils, CHILD_BINDING_PROVIDER, publicToPrivateName, toSymbolizedValue, LifecycleElementState, ElementState, addPrivatePropGetterSetters } from './ojcustomelement-utils.js';
+import { getElementRegistration, isElementRegistered, isVComponent, getElementDescriptor, registerElement as registerElement$1 } from './ojcustomelement-registry.js';
import { useLayoutEffect, useContext, useMemo, useCallback } from 'preact/hooks';
import { EnvironmentContext, RootEnvironmentProvider } from '@oracle/oraclejet-preact/UNSAFE_Environment';
-import oj from 'ojs/ojcore-base';
-import { patchSlotParent, OJ_SLOT_REMOVE } from 'ojs/ojpreact-patch';
-import { error, info, warn } from 'ojs/ojlogger';
-import { getPropertyMetadata, getComplexPropertyMetadata, checkEnumValues, getFlattenedAttributes, deepFreeze } from 'ojs/ojmetadatautils';
+import oj from './ojcore-base.js';
+import { patchSlotParent, OJ_SLOT_REMOVE } from './ojpreact-patch.js';
+import { error, info, warn } from './ojlogger.js';
+import { getPropertyMetadata, getComplexPropertyMetadata, checkEnumValues, getFlattenedAttributes, deepFreeze } from './ojmetadatautils.js';
import { LayerContext } from '@oracle/oraclejet-preact/UNSAFE_Layer';
-import { getLayerContext } from 'ojs/ojlayerutils';
-import { getLocale } from 'ojs/ojconfig';
-import Context from 'ojs/ojcontext';
-import { getTranslationBundlePromise, registerTranslationBundleLoaders } from 'ojs/ojtranslationbundleutils';
+import { getLayerContext } from './ojlayerutils.js';
+import { getLocale } from './ojconfig.js';
+import Context from './ojcontext.js';
+import { getTranslationBundlePromise, registerTranslationBundleLoaders } from './ojtranslationbundleutils.js';
import { BusyStateContext } from '@oracle/oraclejet-preact/hooks/UNSAFE_useBusyStateContext';
let _slotIdCount = 0;
@@ -1651,7 +1651,7 @@ if (isPreactDebugEnabled) {
* custom element tag via the @customElement decorator:
*
* import { Component, ComponentChild } from 'preact';
- * import { customElement, GlobalProps } from 'ojs/ojvcomponent';
+ * import { customElement, GlobalProps } from './ojvcomponent.js';
*
* @customElement('oj-hello-world')
* export class HelloWorld extends Component<GlobalProps> {
@@ -1663,7 +1663,7 @@ if (isPreactDebugEnabled) {
* Function-based components register their custom element tag with the VComponent
* framework via the registerCustomElement
* function:
- * import { registerCustomElement } from 'ojs/ojvcomponent';
+ * import { registerCustomElement } from './ojvcomponent.js';
*
* export const HelloWorld = registerCustomElement(
* 'oj-hello-world',
@@ -1786,7 +1786,7 @@ if (isPreactDebugEnabled) {
* the above Props type (including some default values) ends up looking like:
*
* import { Component, ComponentChild } from 'preact';
- * import { customElement, ExtendGlobalProps } from 'ojs/ojvcomponent';
+ * import { customElement, ExtendGlobalProps } from './ojvcomponent.js';
*
* type Props = {
* greeting?: string;
@@ -1875,7 +1875,7 @@ if (isPreactDebugEnabled) {
* VComponent-specific Slot type:
*
* import { Component, ComponentChildren } from 'preact';
- * import { customElement, ExtendGlobalProps, Slot } from 'ojs/ojvcomponent';
+ * import { customElement, ExtendGlobalProps, Slot } from './ojvcomponent.js';
*
* type Props = {
* // This indicates that the VComponent accepts arbitrary
@@ -1967,7 +1967,7 @@ if (isPreactDebugEnabled) {
* type is used:
*
* import { Component } from "preact";
- * import { customElement, ExtendGlobalProps, TemplateSlot } from "ojs/ojvcomponent";
+ * import { customElement, ExtendGlobalProps, TemplateSlot } from './ojvcomponent.js';
*
* type Props = {
* // This indicates that the VComponent exposes a template
@@ -2035,7 +2035,7 @@ if (isPreactDebugEnabled) {
* following declaration indicates that the component fires a
* "greetingComplete" event:
*
- * import { customElement, ExtendGlobalProps, Action } from 'ojs/ojvcomponent';
+ * import { customElement, ExtendGlobalProps, Action } from './ojvcomponent.js';
*
* type Props = {
* onGreetingComplete?: Action;
@@ -2150,7 +2150,7 @@ if (isPreactDebugEnabled) {
* Can be converted into a writeback property by adding a second property named
* "onValueChanged":
*
- * import { customElement, ExtendGlobalProps, PropertyChanged } from "ojs/ojvcomponent";
+ * import { customElement, ExtendGlobalProps, PropertyChanged } from './ojvcomponent.js';
*
* type Props = {
* value?: string;
@@ -2236,7 +2236,7 @@ if (isPreactDebugEnabled) {
* exposes "greeting" and "name" properties and also observes the global
* "id" and "tabIndex" props:
*
- * import { customElement, ExtendGlobalProps, ObservedGlobalProps } from 'ojs/ojvcomponent';
+ * import { customElement, ExtendGlobalProps, ObservedGlobalProps } from './ojvcomponent.js';
*
* type Props = {
* greeting?: string;
@@ -2259,7 +2259,7 @@ if (isPreactDebugEnabled) {
* indexed access type reference to the same global prop. Note that the following variation of the
* previous example is functionally equivalent:
*
- * import { customElement, ExtendGlobalProps, GlobalProps, ObservedGlobalProps } from 'ojs/ojvcomponent';
+ * import { customElement, ExtendGlobalProps, GlobalProps, ObservedGlobalProps } from './ojvcomponent.js';
*
* type Props = {
* greeting?: string;
@@ -2289,7 +2289,7 @@ if (isPreactDebugEnabled) {
*
* For example, consider this case of a VComponent that renders a link:
*
- * import { customElement, ExtendGlobalProps, ObservedGlobalProps } from "ojs/ojvcomponent";
+ * import { customElement, ExtendGlobalProps, ObservedGlobalProps } from './ojvcomponent.js';
* import { Component, ComponentChild } from "preact";
*
* type Props = {
@@ -2320,7 +2320,7 @@ if (isPreactDebugEnabled) {
* named "Root". The Root component is exported from the
* "ojs/ojvcomponent" module, so we add this in our import list:
*
- * import { customElement, ExtendGlobalProps, ObservedGlobalProps, Root } from "ojs/ojvcomponent";
+ * import { customElement, ExtendGlobalProps, ObservedGlobalProps, Root } from './ojvcomponent.js';
*
*
* And then we can include the Root component in the virtual DOM tree,
@@ -2617,7 +2617,7 @@ if (isPreactDebugEnabled) {
* ExtendGlobalProps is a convenience type for combining component-specific
* properties with GlobalProps, e.g.:
*
- * import { customElement, ExtendGlobalProps } from 'ojs/ojvcomponent';
+ * import { customElement, ExtendGlobalProps } from './ojvcomponent.js';
*
* // These are the component-specific props:
* type Props = {
@@ -2874,7 +2874,7 @@ if (isPreactDebugEnabled) {
* with Preact's ComponentChildren type or with the Slot type as needed:
*
* import { Component, ComponentChildren } from 'preact';
- * import { customElement, ExtendGlobalProps, ImplicitBusyContext, Slot } from 'ojs/ojvcomponent';
+ * import { customElement, ExtendGlobalProps, ImplicitBusyContext, Slot } from './ojvcomponent.js';
*
* type Props = {
* // This indicates that the VComponent accepts arbitrary (non-slot) children,
@@ -2986,7 +2986,7 @@ if (isPreactDebugEnabled) {
* import { h, Ref } from 'preact';
* import { useImperativeHandle, useRef } from 'preact/hooks';
* import { forwardRef } from 'preact/compat';
- * import { registerCustomElement } from 'ojs/ojvcomponent';
+ * import { registerCustomElement } from './ojvcomponent.js';
*
* type Props = Readonly<{
* labelEdge?: 'inside' | 'start' | 'top';
@@ -3149,9 +3149,9 @@ if (isPreactDebugEnabled) {
* Putting this all together, we end up with a component like this:
*
* import { Component, ComponentChild } from 'preact';
- * import { customElement, ExtendGlobalProps, ObservedGlobalProps, getUniqueId } from 'ojs/ojvcomponent';
- * import "ojs/ojinputtext";
- * import "ojs/ojlabel";
+ * import { customElement, ExtendGlobalProps, ObservedGlobalProps, getUniqueId } from './ojvcomponent.js';
+ * import './ojinputtext.js';
+ * import './ojlabel.js';
*
* export type Props = ObservedGlobalProps<'id'>;
*
@@ -3208,7 +3208,7 @@ if (isPreactDebugEnabled) {
* Here is a simple example:
*
*
- * import { registerCustomElement } from 'ojs/ojvcomponent';
+ * import { registerCustomElement } from './ojvcomponent.js';
*
* export type Props = Readonly<{
* message?: string;
@@ -3639,7 +3639,7 @@ class VComponentState extends LifecycleElementState {
* Once loaded, the template engine is cached in a class variable.
*/
_getTemplateEnginePromise() {
- return import('ojs/ojvcomponent-template').then((eng) => {
+ return import('./ojvcomponent-template.js').then((eng) => {
VComponentState._cachedTemplateEngine = eng;
});
}
diff --git a/dist/js/libs/oj/debug_esm/ojvformgenerator.js b/dist/js/libs/oj/debug_esm/ojvformgenerator.js
index a1453c58..7c94f9f4 100644
--- a/dist/js/libs/oj/debug_esm/ojvformgenerator.js
+++ b/dist/js/libs/oj/debug_esm/ojvformgenerator.js
@@ -7,10 +7,10 @@
*/
import { jsxs, jsx } from 'preact/jsx-runtime';
import { Fragment, Component, toChildArray } from 'preact';
-import { parseJSONFromFontFamily } from 'ojs/ojthemeutils';
-import 'ojs/ojlabel';
-import { ElementUtils } from 'ojs/ojcustomelement-utils';
-import { addResizeListener, removeResizeListener } from 'ojs/ojdomutils';
+import { parseJSONFromFontFamily } from './ojthemeutils.js';
+import './ojlabel.js';
+import { ElementUtils } from './ojcustomelement-utils.js';
+import { addResizeListener, removeResizeListener } from './ojdomutils.js';
// VStartLabeler function component adds the dom for the
function VStartLabeler(props) {
diff --git a/dist/js/libs/oj/debug_esm/ojvmenu.js b/dist/js/libs/oj/debug_esm/ojvmenu.js
index c4308522..75785d82 100644
--- a/dist/js/libs/oj/debug_esm/ojvmenu.js
+++ b/dist/js/libs/oj/debug_esm/ojvmenu.js
@@ -6,7 +6,7 @@
* @ignore
*/
import { jsx } from 'preact/jsx-runtime';
-import 'ojs/ojmenu';
+import './ojmenu.js';
import { Component } from 'preact';
class VMenu extends Component {
diff --git a/dist/js/libs/oj/debug_esm/ojwaterfalllayout.js b/dist/js/libs/oj/debug_esm/ojwaterfalllayout.js
index 087acf19..d811fe87 100644
--- a/dist/js/libs/oj/debug_esm/ojwaterfalllayout.js
+++ b/dist/js/libs/oj/debug_esm/ojwaterfalllayout.js
@@ -7,16 +7,16 @@
*/
import { jsx } from 'preact/jsx-runtime';
import { h, Component } from 'preact';
-import { Root, customElement } from 'ojs/ojvcomponent';
-import oj from 'ojs/ojcore-base';
-import { handleActionablePrevTab, handleActionableTab, disableAllFocusableElements, getNoJQFocusHandlers, enableAllFocusableElements } from 'ojs/ojdatacollection-common';
-import { fadeOut, slideIn, fadeIn, slideOut } from 'ojs/ojanimation';
-import { getCachedCSSVarValues } from 'ojs/ojthemeutils';
-import { getTranslatedString } from 'ojs/ojtranslation';
-import Context from 'ojs/ojcontext';
-import { info } from 'ojs/ojlogger';
-import { IteratingDataProviderContentHandler } from 'ojs/ojvcollection';
-import { makeFocusable, getCSSTimeUnitAsMillis } from 'ojs/ojdomutils';
+import { Root, customElement } from './ojvcomponent.js';
+import oj from './ojcore-base.js';
+import { handleActionablePrevTab, handleActionableTab, disableAllFocusableElements, getNoJQFocusHandlers, enableAllFocusableElements } from './ojdatacollection-common.js';
+import { fadeOut, slideIn, fadeIn, slideOut } from './ojanimation.js';
+import { getCachedCSSVarValues } from './ojthemeutils.js';
+import { getTranslatedString } from './ojtranslation.js';
+import Context from './ojcontext.js';
+import { info } from './ojlogger.js';
+import { IteratingDataProviderContentHandler } from './ojvcollection.js';
+import { makeFocusable, getCSSTimeUnitAsMillis } from './ojdomutils.js';
/**
* Default class that controls how the items are layout in WaterfallLayout. In the future release,
diff --git a/dist/js/libs/oj/debug_esm/ojwebdrivertest-proxy.js b/dist/js/libs/oj/debug_esm/ojwebdrivertest-proxy.js
index 55082092..e1af6be3 100644
--- a/dist/js/libs/oj/debug_esm/ojwebdrivertest-proxy.js
+++ b/dist/js/libs/oj/debug_esm/ojwebdrivertest-proxy.js
@@ -11,13 +11,13 @@
*/
const TEST_OBJ_NAME = '__ojwebdrivertest_proxy';
const modules = {
- BusyContext: () => import('ojs/ojcontext').then(({ default: Context }) => Context.getPageContext().getBusyContext()),
+ BusyContext: () => import('./ojcontext.js').then(({ default: Context }) => Context.getPageContext().getBusyContext()),
Chai: () => import('chai').then(({ default: Chai }) => Chai),
- Core: () => import('ojs/ojcore-base').then(({ default: Core }) => Core),
- CspExpressionEvaluator: () => import('ojs/ojcspexpressionevaluator').then(({ default: CspExpressionEvaluator }) => CspExpressionEvaluator),
- CustomElementUtils: () => import('ojs/ojcustomelement-utils').then(({ CustomElementUtils }) => CustomElementUtils),
- KeySet: () => import('ojs/ojkeyset'),
- KeyUtils: () => import('ojs/ojcore-base').then(({ default: { KeyUtils } }) => KeyUtils),
+ Core: () => import('./ojcore-base.js').then(({ default: Core }) => Core),
+ CspExpressionEvaluator: () => import('./ojcspexpressionevaluator.js').then(({ default: CspExpressionEvaluator }) => CspExpressionEvaluator),
+ CustomElementUtils: () => import('./ojcustomelement-utils.js').then(({ CustomElementUtils }) => CustomElementUtils),
+ KeySet: () => import('./ojkeyset.js'),
+ KeyUtils: () => import('./ojcore-base.js').then(({ default: { KeyUtils } }) => KeyUtils),
Knockout: () => import('knockout')
};
const cachedModules = {};
diff --git a/dist/js/libs/oj/debug_esm/package.json b/dist/js/libs/oj/debug_esm/package.json
new file mode 100644
index 00000000..3dbc1ca5
--- /dev/null
+++ b/dist/js/libs/oj/debug_esm/package.json
@@ -0,0 +1,3 @@
+{
+ "type": "module"
+}
diff --git a/package.json b/package.json
index b074575a..ec187709 100644
--- a/package.json
+++ b/package.json
@@ -26,6 +26,15 @@
"THIRDPARTYLICENSE.txt",
"SECURITY.md"
],
+ "exports": {
+ "./package.json": "./package.json",
+ "./dist/*": "./dist/*",
+ "./*": {
+ "types": "./dist/types/*/index.d.ts",
+ "import": "./dist/js/libs/oj/debug_esm/*.js",
+ "default": "./dist/js/libs/oj/debug_esm/*.js"
+ }
+ },
"typesVersions": {
"*": {
"*": [