@arcgis/core-adapter 4.34.0-next.21 → 4.34.0-next.23
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 +13 -0
- package/dist/index.d.cts +2 -0
- package/dist/index.d.ts +2 -0
- package/dist/index.js +13 -0
- package/package.json +1 -1
package/dist/index.cjs
CHANGED
|
@@ -1844,6 +1844,17 @@ async function newLayersSupportPixelBlock(properties) {
|
|
|
1844
1844
|
const ModConstructor = await importLayersSupportPixelBlock();
|
|
1845
1845
|
return new ModConstructor(properties);
|
|
1846
1846
|
}
|
|
1847
|
+
async function importLayersSupportPlaybackInfo() {
|
|
1848
|
+
if (isAMD) {
|
|
1849
|
+
return await window.$arcgis.import("esri/layers/support/PlaybackInfo");
|
|
1850
|
+
}
|
|
1851
|
+
const module2 = await import("@arcgis/core/layers/support/PlaybackInfo.js");
|
|
1852
|
+
return isDefaultModule(module2) ? module2.default : module2;
|
|
1853
|
+
}
|
|
1854
|
+
async function newLayersSupportPlaybackInfo(properties) {
|
|
1855
|
+
const ModConstructor = await importLayersSupportPlaybackInfo();
|
|
1856
|
+
return new ModConstructor(properties);
|
|
1857
|
+
}
|
|
1847
1858
|
async function importLayersSupportPublishingInfo() {
|
|
1848
1859
|
if (isAMD) {
|
|
1849
1860
|
return await window.$arcgis.import("esri/layers/support/PublishingInfo");
|
|
@@ -11019,6 +11030,7 @@ exports.importLayersSupportParquetEncodingLocation = importLayersSupportParquetE
|
|
|
11019
11030
|
exports.importLayersSupportParquetEncodingWkb = importLayersSupportParquetEncodingWkb;
|
|
11020
11031
|
exports.importLayersSupportParquetUtils = importLayersSupportParquetUtils;
|
|
11021
11032
|
exports.importLayersSupportPixelBlock = importLayersSupportPixelBlock;
|
|
11033
|
+
exports.importLayersSupportPlaybackInfo = importLayersSupportPlaybackInfo;
|
|
11022
11034
|
exports.importLayersSupportPublishingInfo = importLayersSupportPublishingInfo;
|
|
11023
11035
|
exports.importLayersSupportRangeDomain = importLayersSupportRangeDomain;
|
|
11024
11036
|
exports.importLayersSupportRasterBandInfo = importLayersSupportRasterBandInfo;
|
|
@@ -11962,6 +11974,7 @@ exports.newLayersSupportOrderByInfo = newLayersSupportOrderByInfo;
|
|
|
11962
11974
|
exports.newLayersSupportParquetEncodingLocation = newLayersSupportParquetEncodingLocation;
|
|
11963
11975
|
exports.newLayersSupportParquetEncodingWkb = newLayersSupportParquetEncodingWkb;
|
|
11964
11976
|
exports.newLayersSupportPixelBlock = newLayersSupportPixelBlock;
|
|
11977
|
+
exports.newLayersSupportPlaybackInfo = newLayersSupportPlaybackInfo;
|
|
11965
11978
|
exports.newLayersSupportPublishingInfo = newLayersSupportPublishingInfo;
|
|
11966
11979
|
exports.newLayersSupportRangeDomain = newLayersSupportRangeDomain;
|
|
11967
11980
|
exports.newLayersSupportRasterBandInfo = newLayersSupportRasterBandInfo;
|
package/dist/index.d.cts
CHANGED
|
@@ -343,6 +343,8 @@ export declare function importLayersSupportParquetEncodingWkb(): Promise<typeof
|
|
|
343
343
|
export declare function newLayersSupportParquetEncodingWkb(properties: __esri.ParquetEncodingWkbProperties): Promise<__esri.ParquetEncodingWkb>;
|
|
344
344
|
export declare function importLayersSupportPixelBlock(): Promise<typeof __esri.PixelBlock>;
|
|
345
345
|
export declare function newLayersSupportPixelBlock(properties: __esri.PixelBlockProperties): Promise<__esri.PixelBlock>;
|
|
346
|
+
export declare function importLayersSupportPlaybackInfo(): Promise<typeof __esri.PlaybackInfo>;
|
|
347
|
+
export declare function newLayersSupportPlaybackInfo(properties: __esri.PlaybackInfoProperties): Promise<__esri.PlaybackInfo>;
|
|
346
348
|
export declare function importLayersSupportPublishingInfo(): Promise<typeof __esri.PublishingInfo>;
|
|
347
349
|
export declare function newLayersSupportPublishingInfo(properties: __esri.PublishingInfoProperties): Promise<__esri.PublishingInfo>;
|
|
348
350
|
export declare function importLayersSupportRangeDomain(): Promise<typeof __esri.RangeDomain>;
|
package/dist/index.d.ts
CHANGED
|
@@ -343,6 +343,8 @@ export declare function importLayersSupportParquetEncodingWkb(): Promise<typeof
|
|
|
343
343
|
export declare function newLayersSupportParquetEncodingWkb(properties: __esri.ParquetEncodingWkbProperties): Promise<__esri.ParquetEncodingWkb>;
|
|
344
344
|
export declare function importLayersSupportPixelBlock(): Promise<typeof __esri.PixelBlock>;
|
|
345
345
|
export declare function newLayersSupportPixelBlock(properties: __esri.PixelBlockProperties): Promise<__esri.PixelBlock>;
|
|
346
|
+
export declare function importLayersSupportPlaybackInfo(): Promise<typeof __esri.PlaybackInfo>;
|
|
347
|
+
export declare function newLayersSupportPlaybackInfo(properties: __esri.PlaybackInfoProperties): Promise<__esri.PlaybackInfo>;
|
|
346
348
|
export declare function importLayersSupportPublishingInfo(): Promise<typeof __esri.PublishingInfo>;
|
|
347
349
|
export declare function newLayersSupportPublishingInfo(properties: __esri.PublishingInfoProperties): Promise<__esri.PublishingInfo>;
|
|
348
350
|
export declare function importLayersSupportRangeDomain(): Promise<typeof __esri.RangeDomain>;
|
package/dist/index.js
CHANGED
|
@@ -1820,6 +1820,17 @@ async function newLayersSupportPixelBlock(properties) {
|
|
|
1820
1820
|
const ModConstructor = await importLayersSupportPixelBlock();
|
|
1821
1821
|
return new ModConstructor(properties);
|
|
1822
1822
|
}
|
|
1823
|
+
async function importLayersSupportPlaybackInfo() {
|
|
1824
|
+
if (isAMD) {
|
|
1825
|
+
return await window.$arcgis.import("esri/layers/support/PlaybackInfo");
|
|
1826
|
+
}
|
|
1827
|
+
const module = await import("@arcgis/core/layers/support/PlaybackInfo.js");
|
|
1828
|
+
return isDefaultModule(module) ? module.default : module;
|
|
1829
|
+
}
|
|
1830
|
+
async function newLayersSupportPlaybackInfo(properties) {
|
|
1831
|
+
const ModConstructor = await importLayersSupportPlaybackInfo();
|
|
1832
|
+
return new ModConstructor(properties);
|
|
1833
|
+
}
|
|
1823
1834
|
async function importLayersSupportPublishingInfo() {
|
|
1824
1835
|
if (isAMD) {
|
|
1825
1836
|
return await window.$arcgis.import("esri/layers/support/PublishingInfo");
|
|
@@ -10996,6 +11007,7 @@ export {
|
|
|
10996
11007
|
importLayersSupportParquetEncodingWkb,
|
|
10997
11008
|
importLayersSupportParquetUtils,
|
|
10998
11009
|
importLayersSupportPixelBlock,
|
|
11010
|
+
importLayersSupportPlaybackInfo,
|
|
10999
11011
|
importLayersSupportPublishingInfo,
|
|
11000
11012
|
importLayersSupportRangeDomain,
|
|
11001
11013
|
importLayersSupportRasterBandInfo,
|
|
@@ -11939,6 +11951,7 @@ export {
|
|
|
11939
11951
|
newLayersSupportParquetEncodingLocation,
|
|
11940
11952
|
newLayersSupportParquetEncodingWkb,
|
|
11941
11953
|
newLayersSupportPixelBlock,
|
|
11954
|
+
newLayersSupportPlaybackInfo,
|
|
11942
11955
|
newLayersSupportPublishingInfo,
|
|
11943
11956
|
newLayersSupportRangeDomain,
|
|
11944
11957
|
newLayersSupportRasterBandInfo,
|