@esri/solutions-components 0.10.32 → 0.10.34
Sign up to get free protection for your applications and to get access to all the features.
- package/dist/cjs/card-manager_3.cjs.entry.js +99 -6
- package/dist/cjs/crowdsource-manager.cjs.entry.js +13 -4
- package/dist/cjs/feature-list.cjs.entry.js +12 -3
- package/dist/cjs/instant-apps-time-filter.cjs.entry.js +2 -2
- package/dist/cjs/loader.cjs.js +1 -1
- package/dist/cjs/solution-item-icon.cjs.entry.js +4 -1
- package/dist/cjs/solutions-components.cjs.js +1 -1
- package/dist/collection/assets/t9n/map-card/resources.json +2 -1
- package/dist/collection/assets/t9n/map-card/resources_en.json +2 -1
- package/dist/collection/components/card-manager/card-manager.js +2 -2
- package/dist/collection/components/crowdsource-manager/crowdsource-manager.js +36 -4
- package/dist/collection/components/feature-list/feature-list.js +12 -3
- package/dist/collection/components/layer-table/layer-table.js +36 -2
- package/dist/collection/components/map-card/map-card.js +168 -2
- package/dist/collection/components/solution-item-icon/item-icons/group16.png +0 -0
- package/dist/collection/components/solution-item-icon/solution-item-icon.js +4 -1
- package/dist/components/card-manager2.js +2 -2
- package/dist/components/crowdsource-manager.js +14 -4
- package/dist/components/feature-list2.js +12 -3
- package/dist/components/instant-apps-time-filter.js +2 -2
- package/dist/components/layer-table2.js +13 -2
- package/dist/components/map-card2.js +157 -60
- package/dist/components/solution-item-icon2.js +4 -1
- package/dist/esm/card-manager_3.entry.js +99 -6
- package/dist/esm/crowdsource-manager.entry.js +13 -4
- package/dist/esm/feature-list.entry.js +12 -3
- package/dist/esm/instant-apps-time-filter.entry.js +2 -2
- package/dist/esm/loader.js +1 -1
- package/dist/esm/solution-item-icon.entry.js +4 -1
- package/dist/esm/solutions-components.js +1 -1
- package/dist/solutions-components/assets/t9n/map-card/resources.json +2 -1
- package/dist/solutions-components/assets/t9n/map-card/resources_en.json +2 -1
- package/dist/solutions-components/item-icons/group16.png +0 -0
- package/dist/solutions-components/p-3a513c67.entry.js +6 -0
- package/dist/solutions-components/p-4f5913f3.entry.js +6 -0
- package/dist/solutions-components/{p-3900240c.entry.js → p-5fc0e134.entry.js} +1 -1
- package/dist/solutions-components/p-8d2d66d0.entry.js +6 -0
- package/dist/solutions-components/p-cf878a34.entry.js +6 -0
- package/dist/solutions-components/solutions-components.esm.js +1 -1
- package/dist/types/components/crowdsource-manager/crowdsource-manager.d.ts +8 -0
- package/dist/types/components/feature-list/feature-list.d.ts +4 -0
- package/dist/types/components/layer-table/layer-table.d.ts +9 -1
- package/dist/types/components/map-card/map-card.d.ts +46 -1
- package/dist/types/components.d.ts +48 -0
- package/package.json +4 -4
- package/dist/solutions-components/p-3bcdf332.entry.js +0 -6
- package/dist/solutions-components/p-710bd9ec.entry.js +0 -6
- package/dist/solutions-components/p-bd5f3c9e.entry.js +0 -6
- package/dist/solutions-components/p-cc4c013e.entry.js +0 -6
@@ -68,7 +68,8 @@ const SolutionItemIcon = class {
|
|
68
68
|
*/
|
69
69
|
_getIconUrl(type, typeKeywords) {
|
70
70
|
const icon = this._getItemIcon(type, typeKeywords);
|
71
|
-
return index.getAssetPath(`./item-icons/${icon}16.
|
71
|
+
return icon === "group" ? index.getAssetPath(`./item-icons/${icon}16.png`) :
|
72
|
+
index.getAssetPath(`./item-icons/${icon}16.svg`);
|
72
73
|
}
|
73
74
|
/**
|
74
75
|
* This function was copied and slightly modified from the arcgis-app-components.
|
@@ -119,6 +120,8 @@ const SolutionItemIcon = class {
|
|
119
120
|
return "utilitynetwork";
|
120
121
|
}
|
121
122
|
return hosted ? "featureshosted" : "features";
|
123
|
+
case "group":
|
124
|
+
return "group";
|
122
125
|
case "group layer":
|
123
126
|
if (keywords.includes("Map")) {
|
124
127
|
return "layergroup2d";
|