analytica-frontend-lib 1.4.77 → 1.4.78
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/AccessibilityWidget/index.js +1 -2
- package/dist/AccessibilityWidget/index.js.map +1 -1
- package/dist/AccessibilityWidget/index.mjs +1 -2
- package/dist/AccessibilityWidget/index.mjs.map +1 -1
- package/dist/ActivitiesHistory/index.js.map +1 -1
- package/dist/ActivitiesHistory/index.mjs.map +1 -1
- package/dist/ActivityCardQuestionBanks/index.js +1 -2
- package/dist/ActivityCardQuestionBanks/index.js.map +1 -1
- package/dist/ActivityCardQuestionBanks/index.mjs +1 -2
- package/dist/ActivityCardQuestionBanks/index.mjs.map +1 -1
- package/dist/ActivityPageLayout/index.js.map +1 -1
- package/dist/ActivityPageLayout/index.mjs.map +1 -1
- package/dist/AppLayout/index.js +6 -0
- package/dist/AppLayout/index.js.map +1 -1
- package/dist/AppLayout/index.mjs +6 -0
- package/dist/AppLayout/index.mjs.map +1 -1
- package/dist/BreadcrumbMenu/index.js.map +1 -1
- package/dist/BreadcrumbMenu/index.mjs.map +1 -1
- package/dist/Menu/index.d.ts.map +1 -1
- package/dist/Menu/index.js +6 -0
- package/dist/Menu/index.js.map +1 -1
- package/dist/Menu/index.mjs +6 -0
- package/dist/Menu/index.mjs.map +1 -1
- package/dist/Quiz/index.js +1 -2
- package/dist/Quiz/index.js.map +1 -1
- package/dist/Quiz/index.mjs +1 -2
- package/dist/Quiz/index.mjs.map +1 -1
- package/dist/RecommendedLessonsHistory/index.js.map +1 -1
- package/dist/RecommendedLessonsHistory/index.mjs.map +1 -1
- package/dist/RichEditor/index.js.map +1 -1
- package/dist/RichEditor/index.mjs.map +1 -1
- package/dist/Select/index.js +1 -2
- package/dist/Select/index.js.map +1 -1
- package/dist/Select/index.mjs +1 -2
- package/dist/Select/index.mjs.map +1 -1
- package/dist/StatisticsCard/index.js +1 -2
- package/dist/StatisticsCard/index.js.map +1 -1
- package/dist/StatisticsCard/index.mjs +1 -2
- package/dist/StatisticsCard/index.mjs.map +1 -1
- package/dist/Support/index.js +1 -2
- package/dist/Support/index.js.map +1 -1
- package/dist/Support/index.mjs +1 -2
- package/dist/Support/index.mjs.map +1 -1
- package/dist/index.js +36 -11
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +36 -11
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
|
@@ -2501,8 +2501,7 @@ var Select = ({
|
|
|
2501
2501
|
if (!(0, import_react10.isValidElement)(child)) return;
|
|
2502
2502
|
const typedChild = child;
|
|
2503
2503
|
if (typedChild.type === SelectItem && typedChild.props.value === targetValue) {
|
|
2504
|
-
|
|
2505
|
-
found = typedChild.props.children;
|
|
2504
|
+
found = getLabelAsNode(typedChild.props.children);
|
|
2506
2505
|
}
|
|
2507
2506
|
if (typedChild.props.children && !found)
|
|
2508
2507
|
search(typedChild.props.children);
|