@arcgis/core-adapter 4.34.0-next.110 → 4.34.0-next.111
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 +0 -26
- package/dist/index.d.cts +0 -4
- package/dist/index.d.ts +0 -4
- package/dist/index.js +0 -26
- package/package.json +1 -1
package/dist/index.cjs
CHANGED
|
@@ -6145,28 +6145,6 @@ async function newTimeTimeInterval(properties) {
|
|
|
6145
6145
|
const ModConstructor = await importTimeTimeInterval();
|
|
6146
6146
|
return new ModConstructor(properties);
|
|
6147
6147
|
}
|
|
6148
|
-
async function importTimeExtent() {
|
|
6149
|
-
if (isAMD) {
|
|
6150
|
-
return await window.$arcgis.import("esri/TimeExtent");
|
|
6151
|
-
}
|
|
6152
|
-
const module2 = await import("@arcgis/core/TimeExtent.js");
|
|
6153
|
-
return isDefaultModule(module2) ? module2.default : module2;
|
|
6154
|
-
}
|
|
6155
|
-
async function newTimeExtent(properties) {
|
|
6156
|
-
const ModConstructor = await importTimeExtent();
|
|
6157
|
-
return new ModConstructor(properties);
|
|
6158
|
-
}
|
|
6159
|
-
async function importTimeInterval() {
|
|
6160
|
-
if (isAMD) {
|
|
6161
|
-
return await window.$arcgis.import("esri/TimeInterval");
|
|
6162
|
-
}
|
|
6163
|
-
const module2 = await import("@arcgis/core/TimeInterval.js");
|
|
6164
|
-
return isDefaultModule(module2) ? module2.default : module2;
|
|
6165
|
-
}
|
|
6166
|
-
async function newTimeInterval(properties) {
|
|
6167
|
-
const ModConstructor = await importTimeInterval();
|
|
6168
|
-
return new ModConstructor(properties);
|
|
6169
|
-
}
|
|
6170
6148
|
async function importVersionManagementVersioningState() {
|
|
6171
6149
|
if (isAMD) {
|
|
6172
6150
|
return await window.$arcgis.import("esri/versionManagement/VersioningState");
|
|
@@ -12078,8 +12056,6 @@ exports.importTablesElementsAttributeTableElement = importTablesElementsAttribut
|
|
|
12078
12056
|
exports.importTablesElementsAttributeTableFieldElement = importTablesElementsAttributeTableFieldElement;
|
|
12079
12057
|
exports.importTablesElementsAttributeTableGroupElement = importTablesElementsAttributeTableGroupElement;
|
|
12080
12058
|
exports.importTablesElementsAttributeTableRelationshipElement = importTablesElementsAttributeTableRelationshipElement;
|
|
12081
|
-
exports.importTimeExtent = importTimeExtent;
|
|
12082
|
-
exports.importTimeInterval = importTimeInterval;
|
|
12083
12059
|
exports.importTimeTimeExtent = importTimeTimeExtent;
|
|
12084
12060
|
exports.importTimeTimeInterval = importTimeTimeInterval;
|
|
12085
12061
|
exports.importVersionManagementUtils = importVersionManagementUtils;
|
|
@@ -12975,8 +12951,6 @@ exports.newTablesElementsAttributeTableElement = newTablesElementsAttributeTable
|
|
|
12975
12951
|
exports.newTablesElementsAttributeTableFieldElement = newTablesElementsAttributeTableFieldElement;
|
|
12976
12952
|
exports.newTablesElementsAttributeTableGroupElement = newTablesElementsAttributeTableGroupElement;
|
|
12977
12953
|
exports.newTablesElementsAttributeTableRelationshipElement = newTablesElementsAttributeTableRelationshipElement;
|
|
12978
|
-
exports.newTimeExtent = newTimeExtent;
|
|
12979
|
-
exports.newTimeInterval = newTimeInterval;
|
|
12980
12954
|
exports.newTimeTimeExtent = newTimeTimeExtent;
|
|
12981
12955
|
exports.newTimeTimeInterval = newTimeTimeInterval;
|
|
12982
12956
|
exports.newVersionManagementVersionManagementService = newVersionManagementVersionManagementService;
|
package/dist/index.d.cts
CHANGED
|
@@ -1125,10 +1125,6 @@ export declare function importTimeTimeExtent(): Promise<typeof __esri.TimeExtent
|
|
|
1125
1125
|
export declare function newTimeTimeExtent(properties: __esri.TimeExtentProperties): Promise<__esri.TimeExtent>;
|
|
1126
1126
|
export declare function importTimeTimeInterval(): Promise<typeof __esri.TimeInterval>;
|
|
1127
1127
|
export declare function newTimeTimeInterval(properties: __esri.TimeIntervalProperties): Promise<__esri.TimeInterval>;
|
|
1128
|
-
export declare function importTimeExtent(): Promise<typeof __esri.esriTimeExtent>;
|
|
1129
|
-
export declare function newTimeExtent(properties: __esri.esriTimeExtentProperties): Promise<__esri.esriTimeExtent>;
|
|
1130
|
-
export declare function importTimeInterval(): Promise<typeof __esri.esriTimeInterval>;
|
|
1131
|
-
export declare function newTimeInterval(properties: __esri.esriTimeIntervalProperties): Promise<__esri.esriTimeInterval>;
|
|
1132
1128
|
export declare function importVersionManagementVersioningState(): Promise<typeof __esri.VersioningState>;
|
|
1133
1129
|
export declare function newVersionManagementVersioningState(properties: any): Promise<__esri.VersioningState>;
|
|
1134
1130
|
export declare function importVersionManagementVersionManagementService(): Promise<typeof __esri.VersionManagementService>;
|
package/dist/index.d.ts
CHANGED
|
@@ -1125,10 +1125,6 @@ export declare function importTimeTimeExtent(): Promise<typeof __esri.TimeExtent
|
|
|
1125
1125
|
export declare function newTimeTimeExtent(properties: __esri.TimeExtentProperties): Promise<__esri.TimeExtent>;
|
|
1126
1126
|
export declare function importTimeTimeInterval(): Promise<typeof __esri.TimeInterval>;
|
|
1127
1127
|
export declare function newTimeTimeInterval(properties: __esri.TimeIntervalProperties): Promise<__esri.TimeInterval>;
|
|
1128
|
-
export declare function importTimeExtent(): Promise<typeof __esri.esriTimeExtent>;
|
|
1129
|
-
export declare function newTimeExtent(properties: __esri.esriTimeExtentProperties): Promise<__esri.esriTimeExtent>;
|
|
1130
|
-
export declare function importTimeInterval(): Promise<typeof __esri.esriTimeInterval>;
|
|
1131
|
-
export declare function newTimeInterval(properties: __esri.esriTimeIntervalProperties): Promise<__esri.esriTimeInterval>;
|
|
1132
1128
|
export declare function importVersionManagementVersioningState(): Promise<typeof __esri.VersioningState>;
|
|
1133
1129
|
export declare function newVersionManagementVersioningState(properties: any): Promise<__esri.VersioningState>;
|
|
1134
1130
|
export declare function importVersionManagementVersionManagementService(): Promise<typeof __esri.VersionManagementService>;
|
package/dist/index.js
CHANGED
|
@@ -6121,28 +6121,6 @@ async function newTimeTimeInterval(properties) {
|
|
|
6121
6121
|
const ModConstructor = await importTimeTimeInterval();
|
|
6122
6122
|
return new ModConstructor(properties);
|
|
6123
6123
|
}
|
|
6124
|
-
async function importTimeExtent() {
|
|
6125
|
-
if (isAMD) {
|
|
6126
|
-
return await window.$arcgis.import("esri/TimeExtent");
|
|
6127
|
-
}
|
|
6128
|
-
const module = await import("@arcgis/core/TimeExtent.js");
|
|
6129
|
-
return isDefaultModule(module) ? module.default : module;
|
|
6130
|
-
}
|
|
6131
|
-
async function newTimeExtent(properties) {
|
|
6132
|
-
const ModConstructor = await importTimeExtent();
|
|
6133
|
-
return new ModConstructor(properties);
|
|
6134
|
-
}
|
|
6135
|
-
async function importTimeInterval() {
|
|
6136
|
-
if (isAMD) {
|
|
6137
|
-
return await window.$arcgis.import("esri/TimeInterval");
|
|
6138
|
-
}
|
|
6139
|
-
const module = await import("@arcgis/core/TimeInterval.js");
|
|
6140
|
-
return isDefaultModule(module) ? module.default : module;
|
|
6141
|
-
}
|
|
6142
|
-
async function newTimeInterval(properties) {
|
|
6143
|
-
const ModConstructor = await importTimeInterval();
|
|
6144
|
-
return new ModConstructor(properties);
|
|
6145
|
-
}
|
|
6146
6124
|
async function importVersionManagementVersioningState() {
|
|
6147
6125
|
if (isAMD) {
|
|
6148
6126
|
return await window.$arcgis.import("esri/versionManagement/VersioningState");
|
|
@@ -12055,8 +12033,6 @@ export {
|
|
|
12055
12033
|
importTablesElementsAttributeTableFieldElement,
|
|
12056
12034
|
importTablesElementsAttributeTableGroupElement,
|
|
12057
12035
|
importTablesElementsAttributeTableRelationshipElement,
|
|
12058
|
-
importTimeExtent,
|
|
12059
|
-
importTimeInterval,
|
|
12060
12036
|
importTimeTimeExtent,
|
|
12061
12037
|
importTimeTimeInterval,
|
|
12062
12038
|
importVersionManagementUtils,
|
|
@@ -12952,8 +12928,6 @@ export {
|
|
|
12952
12928
|
newTablesElementsAttributeTableFieldElement,
|
|
12953
12929
|
newTablesElementsAttributeTableGroupElement,
|
|
12954
12930
|
newTablesElementsAttributeTableRelationshipElement,
|
|
12955
|
-
newTimeExtent,
|
|
12956
|
-
newTimeInterval,
|
|
12957
12931
|
newTimeTimeExtent,
|
|
12958
12932
|
newTimeTimeInterval,
|
|
12959
12933
|
newVersionManagementVersionManagementService,
|