@arcgis/core-adapter 4.34.0-next.24 → 4.34.0-next.26
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/index.cjs +16 -0
- package/dist/index.d.cts +2 -0
- package/dist/index.d.ts +2 -0
- package/dist/index.js +16 -0
- package/package.json +1 -1
package/dist/index.cjs
CHANGED
|
@@ -10687,6 +10687,13 @@ async function importApplicationsComponentsReactiveUtils() {
|
|
|
10687
10687
|
const module2 = await import("@arcgis/core/applications/Components/reactiveUtils.js");
|
|
10688
10688
|
return isDefaultModule(module2) ? module2.default : module2;
|
|
10689
10689
|
}
|
|
10690
|
+
async function importApplicationsComponentsSanitizerUtils() {
|
|
10691
|
+
if (isAMD) {
|
|
10692
|
+
return await window.$arcgis.import("esri/applications/Components/sanitizerUtils");
|
|
10693
|
+
}
|
|
10694
|
+
const module2 = await import("@arcgis/core/applications/Components/sanitizerUtils.js");
|
|
10695
|
+
return isDefaultModule(module2) ? module2.default : module2;
|
|
10696
|
+
}
|
|
10690
10697
|
async function importApplicationsComponentsSelectionOperation() {
|
|
10691
10698
|
if (isAMD) {
|
|
10692
10699
|
return await window.$arcgis.import("esri/applications/Components/SelectionOperation");
|
|
@@ -10701,6 +10708,13 @@ async function importApplicationsComponentsSketchTooltipControls() {
|
|
|
10701
10708
|
const module2 = await import("@arcgis/core/applications/Components/SketchTooltipControls.js");
|
|
10702
10709
|
return isDefaultModule(module2) ? module2.default : module2;
|
|
10703
10710
|
}
|
|
10711
|
+
async function importApplicationsComponentsStringUtils() {
|
|
10712
|
+
if (isAMD) {
|
|
10713
|
+
return await window.$arcgis.import("esri/applications/Components/stringUtils");
|
|
10714
|
+
}
|
|
10715
|
+
const module2 = await import("@arcgis/core/applications/Components/stringUtils.js");
|
|
10716
|
+
return isDefaultModule(module2) ? module2.default : module2;
|
|
10717
|
+
}
|
|
10704
10718
|
async function importApplicationsComponentsStyleUtils() {
|
|
10705
10719
|
if (isAMD) {
|
|
10706
10720
|
return await window.$arcgis.import("esri/applications/Components/styleUtils");
|
|
@@ -10781,8 +10795,10 @@ exports.importApplicationsComponentsLayerOriginUtils = importApplicationsCompone
|
|
|
10781
10795
|
exports.importApplicationsComponentsLayersEffectsJsonUtils = importApplicationsComponentsLayersEffectsJsonUtils;
|
|
10782
10796
|
exports.importApplicationsComponentsPreviewSymbol2D = importApplicationsComponentsPreviewSymbol2D;
|
|
10783
10797
|
exports.importApplicationsComponentsReactiveUtils = importApplicationsComponentsReactiveUtils;
|
|
10798
|
+
exports.importApplicationsComponentsSanitizerUtils = importApplicationsComponentsSanitizerUtils;
|
|
10784
10799
|
exports.importApplicationsComponentsSelectionOperation = importApplicationsComponentsSelectionOperation;
|
|
10785
10800
|
exports.importApplicationsComponentsSketchTooltipControls = importApplicationsComponentsSketchTooltipControls;
|
|
10801
|
+
exports.importApplicationsComponentsStringUtils = importApplicationsComponentsStringUtils;
|
|
10786
10802
|
exports.importApplicationsComponentsStyleUtils = importApplicationsComponentsStyleUtils;
|
|
10787
10803
|
exports.importApplicationsComponentsSvgUtils = importApplicationsComponentsSvgUtils;
|
|
10788
10804
|
exports.importApplicationsComponentsViewUtils = importApplicationsComponentsViewUtils;
|
package/dist/index.d.cts
CHANGED
|
@@ -1896,8 +1896,10 @@ export declare function importApplicationsComponentsLayerOriginUtils(): Promise<
|
|
|
1896
1896
|
export declare function importApplicationsComponentsLayersEffectsJsonUtils(): Promise<typeof __esri.layersEffectsJsonUtils>;
|
|
1897
1897
|
export declare function importApplicationsComponentsPreviewSymbol2D(): Promise<typeof __esri.previewSymbol2D>;
|
|
1898
1898
|
export declare function importApplicationsComponentsReactiveUtils(): Promise<typeof __esri.ComponentsReactiveUtils>;
|
|
1899
|
+
export declare function importApplicationsComponentsSanitizerUtils(): Promise<typeof __esri.sanitizerUtils>;
|
|
1899
1900
|
export declare function importApplicationsComponentsSelectionOperation(): Promise<any>;
|
|
1900
1901
|
export declare function importApplicationsComponentsSketchTooltipControls(): Promise<any>;
|
|
1902
|
+
export declare function importApplicationsComponentsStringUtils(): Promise<typeof __esri.stringUtils>;
|
|
1901
1903
|
export declare function importApplicationsComponentsStyleUtils(): Promise<typeof __esri.styleUtils>;
|
|
1902
1904
|
export declare function importApplicationsComponentsSvgUtils(): Promise<typeof __esri.svgUtils>;
|
|
1903
1905
|
export declare function importApplicationsComponentsViewUtils(): Promise<typeof __esri.viewUtils>;
|
package/dist/index.d.ts
CHANGED
|
@@ -1896,8 +1896,10 @@ export declare function importApplicationsComponentsLayerOriginUtils(): Promise<
|
|
|
1896
1896
|
export declare function importApplicationsComponentsLayersEffectsJsonUtils(): Promise<typeof __esri.layersEffectsJsonUtils>;
|
|
1897
1897
|
export declare function importApplicationsComponentsPreviewSymbol2D(): Promise<typeof __esri.previewSymbol2D>;
|
|
1898
1898
|
export declare function importApplicationsComponentsReactiveUtils(): Promise<typeof __esri.ComponentsReactiveUtils>;
|
|
1899
|
+
export declare function importApplicationsComponentsSanitizerUtils(): Promise<typeof __esri.sanitizerUtils>;
|
|
1899
1900
|
export declare function importApplicationsComponentsSelectionOperation(): Promise<any>;
|
|
1900
1901
|
export declare function importApplicationsComponentsSketchTooltipControls(): Promise<any>;
|
|
1902
|
+
export declare function importApplicationsComponentsStringUtils(): Promise<typeof __esri.stringUtils>;
|
|
1901
1903
|
export declare function importApplicationsComponentsStyleUtils(): Promise<typeof __esri.styleUtils>;
|
|
1902
1904
|
export declare function importApplicationsComponentsSvgUtils(): Promise<typeof __esri.svgUtils>;
|
|
1903
1905
|
export declare function importApplicationsComponentsViewUtils(): Promise<typeof __esri.viewUtils>;
|
package/dist/index.js
CHANGED
|
@@ -10663,6 +10663,13 @@ async function importApplicationsComponentsReactiveUtils() {
|
|
|
10663
10663
|
const module = await import("@arcgis/core/applications/Components/reactiveUtils.js");
|
|
10664
10664
|
return isDefaultModule(module) ? module.default : module;
|
|
10665
10665
|
}
|
|
10666
|
+
async function importApplicationsComponentsSanitizerUtils() {
|
|
10667
|
+
if (isAMD) {
|
|
10668
|
+
return await window.$arcgis.import("esri/applications/Components/sanitizerUtils");
|
|
10669
|
+
}
|
|
10670
|
+
const module = await import("@arcgis/core/applications/Components/sanitizerUtils.js");
|
|
10671
|
+
return isDefaultModule(module) ? module.default : module;
|
|
10672
|
+
}
|
|
10666
10673
|
async function importApplicationsComponentsSelectionOperation() {
|
|
10667
10674
|
if (isAMD) {
|
|
10668
10675
|
return await window.$arcgis.import("esri/applications/Components/SelectionOperation");
|
|
@@ -10677,6 +10684,13 @@ async function importApplicationsComponentsSketchTooltipControls() {
|
|
|
10677
10684
|
const module = await import("@arcgis/core/applications/Components/SketchTooltipControls.js");
|
|
10678
10685
|
return isDefaultModule(module) ? module.default : module;
|
|
10679
10686
|
}
|
|
10687
|
+
async function importApplicationsComponentsStringUtils() {
|
|
10688
|
+
if (isAMD) {
|
|
10689
|
+
return await window.$arcgis.import("esri/applications/Components/stringUtils");
|
|
10690
|
+
}
|
|
10691
|
+
const module = await import("@arcgis/core/applications/Components/stringUtils.js");
|
|
10692
|
+
return isDefaultModule(module) ? module.default : module;
|
|
10693
|
+
}
|
|
10680
10694
|
async function importApplicationsComponentsStyleUtils() {
|
|
10681
10695
|
if (isAMD) {
|
|
10682
10696
|
return await window.$arcgis.import("esri/applications/Components/styleUtils");
|
|
@@ -10758,8 +10772,10 @@ export {
|
|
|
10758
10772
|
importApplicationsComponentsLayersEffectsJsonUtils,
|
|
10759
10773
|
importApplicationsComponentsPreviewSymbol2D,
|
|
10760
10774
|
importApplicationsComponentsReactiveUtils,
|
|
10775
|
+
importApplicationsComponentsSanitizerUtils,
|
|
10761
10776
|
importApplicationsComponentsSelectionOperation,
|
|
10762
10777
|
importApplicationsComponentsSketchTooltipControls,
|
|
10778
|
+
importApplicationsComponentsStringUtils,
|
|
10763
10779
|
importApplicationsComponentsStyleUtils,
|
|
10764
10780
|
importApplicationsComponentsSvgUtils,
|
|
10765
10781
|
importApplicationsComponentsViewUtils,
|