datastake-daf 0.6.113 → 0.6.114
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/components/index.js +3 -4
- package/package.json +1 -1
- package/rollup.config.js +4 -2
- /package/dist/{SDGs → components/SDGs}/SDGs-1.svg +0 -0
- /package/dist/{SDGs → components/SDGs}/SDGs-10.svg +0 -0
- /package/dist/{SDGs → components/SDGs}/SDGs-11.svg +0 -0
- /package/dist/{SDGs → components/SDGs}/SDGs-12.svg +0 -0
- /package/dist/{SDGs → components/SDGs}/SDGs-13.svg +0 -0
- /package/dist/{SDGs → components/SDGs}/SDGs-14.svg +0 -0
- /package/dist/{SDGs → components/SDGs}/SDGs-15.svg +0 -0
- /package/dist/{SDGs → components/SDGs}/SDGs-16.svg +0 -0
- /package/dist/{SDGs → components/SDGs}/SDGs-17.svg +0 -0
- /package/dist/{SDGs → components/SDGs}/SDGs-18.svg +0 -0
- /package/dist/{SDGs → components/SDGs}/SDGs-19.svg +0 -0
- /package/dist/{SDGs → components/SDGs}/SDGs-2.svg +0 -0
- /package/dist/{SDGs → components/SDGs}/SDGs-20.svg +0 -0
- /package/dist/{SDGs → components/SDGs}/SDGs-21.svg +0 -0
- /package/dist/{SDGs → components/SDGs}/SDGs-22.svg +0 -0
- /package/dist/{SDGs → components/SDGs}/SDGs-23.svg +0 -0
- /package/dist/{SDGs → components/SDGs}/SDGs-24.svg +0 -0
- /package/dist/{SDGs → components/SDGs}/SDGs-25.svg +0 -0
- /package/dist/{SDGs → components/SDGs}/SDGs-26.svg +0 -0
- /package/dist/{SDGs → components/SDGs}/SDGs-27.svg +0 -0
- /package/dist/{SDGs → components/SDGs}/SDGs-28.svg +0 -0
- /package/dist/{SDGs → components/SDGs}/SDGs-29.svg +0 -0
- /package/dist/{SDGs → components/SDGs}/SDGs-3.svg +0 -0
- /package/dist/{SDGs → components/SDGs}/SDGs-30.svg +0 -0
- /package/dist/{SDGs → components/SDGs}/SDGs-31.svg +0 -0
- /package/dist/{SDGs → components/SDGs}/SDGs-32.svg +0 -0
- /package/dist/{SDGs → components/SDGs}/SDGs-33.svg +0 -0
- /package/dist/{SDGs → components/SDGs}/SDGs-4.svg +0 -0
- /package/dist/{SDGs → components/SDGs}/SDGs-5.svg +0 -0
- /package/dist/{SDGs → components/SDGs}/SDGs-6.svg +0 -0
- /package/dist/{SDGs → components/SDGs}/SDGs-7.svg +0 -0
- /package/dist/{SDGs → components/SDGs}/SDGs-8.svg +0 -0
- /package/dist/{SDGs → components/SDGs}/SDGs-9.svg +0 -0
- /package/dist/{SDGs → components/SDGs}/SDGs.svg +0 -0
package/dist/components/index.js
CHANGED
|
@@ -13757,9 +13757,8 @@ const determineHasChildren = ({
|
|
|
13757
13757
|
|
|
13758
13758
|
const sortByPosition = (items, getConfig) => {
|
|
13759
13759
|
return items.sort((a, b) => {
|
|
13760
|
-
|
|
13761
|
-
const
|
|
13762
|
-
const positionB = ((_getConfig2 = getConfig(b)) === null || _getConfig2 === void 0 ? void 0 : _getConfig2.position) || 0;
|
|
13760
|
+
const positionA = getConfig(a)?.position || 0;
|
|
13761
|
+
const positionB = getConfig(b)?.position || 0;
|
|
13763
13762
|
return positionA - positionB;
|
|
13764
13763
|
});
|
|
13765
13764
|
};
|
|
@@ -13776,7 +13775,7 @@ const resolveDynamicLabel = (labelConfig, item, defaultLabel) => {
|
|
|
13776
13775
|
const parts = labelKey.split(' is ');
|
|
13777
13776
|
if (parts.length === 2) {
|
|
13778
13777
|
const [conditionKey, conditionValue] = parts;
|
|
13779
|
-
if (
|
|
13778
|
+
if (item?.[conditionKey] === conditionValue) {
|
|
13780
13779
|
return labelConfig[labelKey];
|
|
13781
13780
|
}
|
|
13782
13781
|
}
|
package/package.json
CHANGED
package/rollup.config.js
CHANGED
|
@@ -67,6 +67,9 @@ export default [
|
|
|
67
67
|
minimize: true,
|
|
68
68
|
modules: true,
|
|
69
69
|
}),
|
|
70
|
+
copy({
|
|
71
|
+
targets: [{ src: "public/SDGs/*", dest: "dist/components/SDGs" }],
|
|
72
|
+
}),
|
|
70
73
|
],
|
|
71
74
|
},
|
|
72
75
|
{
|
|
@@ -137,8 +140,7 @@ export default [
|
|
|
137
140
|
}),
|
|
138
141
|
copy({
|
|
139
142
|
targets: [
|
|
140
|
-
{ src: "src/styles/datastake/*", dest: "dist/style/datastake" },
|
|
141
|
-
{ src: "public/SDGs/*", dest: "dist/SDGs" },
|
|
143
|
+
{ src: "src/styles/datastake/*", dest: "dist/style/datastake" },
|
|
142
144
|
],
|
|
143
145
|
}),
|
|
144
146
|
],
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|