@pocketprep/ui-kit 3.0.35 → 3.0.37
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/@pocketprep/ui-kit.js +1 -1
- package/dist/@pocketprep/ui-kit.js.map +1 -1
- package/dist/@pocketprep/ui-kit.umd.cjs +1 -1
- package/dist/@pocketprep/ui-kit.umd.cjs.map +1 -1
- package/lib/components/Bundles/BundleSearch.vue +1 -1
- package/lib/components/Icons/icon.d.ts +2 -1
- package/package.json +1 -1
|
@@ -15816,7 +15816,7 @@ let Ce = class extends yt {
|
|
|
15816
15816
|
}
|
|
15817
15817
|
get filteredExams() {
|
|
15818
15818
|
return this.bundleExams.filter(
|
|
15819
|
-
(s) => `${s.nativeAppName} ${s.descriptiveName}
|
|
15819
|
+
(s) => `${s.nativeAppName} ${s.descriptiveName}`.toLowerCase().includes(this.examSearchString.toLowerCase())
|
|
15820
15820
|
);
|
|
15821
15821
|
}
|
|
15822
15822
|
get selectedBundleExams() {
|