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
|
@@ -693,8 +693,7 @@ var Select = ({
|
|
|
693
693
|
if (!(0, import_react4.isValidElement)(child)) return;
|
|
694
694
|
const typedChild = child;
|
|
695
695
|
if (typedChild.type === SelectItem && typedChild.props.value === targetValue) {
|
|
696
|
-
|
|
697
|
-
found = typedChild.props.children;
|
|
696
|
+
found = getLabelAsNode(typedChild.props.children);
|
|
698
697
|
}
|
|
699
698
|
if (typedChild.props.children && !found)
|
|
700
699
|
search(typedChild.props.children);
|