@edu-tosel/design 1.0.334 → 1.0.341
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/README.md +42 -42
- package/asset/SVG.tsx +47 -47
- package/asset/html/gomito-promotion.html +116 -116
- package/asset/html/speaking-series-promotion.html +58 -58
- package/asset/sizes.ts +202 -202
- package/asset/svg/Close.tsx +32 -32
- package/asset/svg/Collab.tsx +51 -51
- package/asset/svg/Direction.tsx +76 -76
- package/asset/svg/Email.tsx +19 -19
- package/asset/svg/Eye.tsx +48 -48
- package/asset/svg/HallofFame.tsx +179 -179
- package/asset/svg/Icon.tsx +324 -324
- package/asset/svg/Image.tsx +24 -24
- package/asset/svg/Login.tsx +116 -116
- package/asset/svg/MiniCheck.tsx +16 -16
- package/asset/svg/MiniClose.tsx +19 -19
- package/asset/svg/Notification.tsx +34 -34
- package/asset/svg/Operation.tsx +130 -130
- package/asset/svg/Phone.tsx +19 -19
- package/asset/svg/Print.tsx +18 -18
- package/asset/svg/Profile.tsx +27 -27
- package/asset/svg/Search.tsx +24 -24
- package/asset/svg/Symbol.tsx +61 -61
- package/asset/svg/TOSEL.tsx +63 -63
- package/asset/svg/TestOption.tsx +51 -51
- package/asset/svg/User.tsx +18 -18
- package/asset/url.ts +12 -12
- package/globals.css +341 -341
- package/layout/template/home/Announcement.d.ts +2 -1
- package/layout/template/home/Announcement.js +7 -3
- package/package.json +1 -1
- package/tailwind.config.ts +763 -763
- package/version.txt +1 -1
- package/widget/template/Select/Select.LG.js +3 -1
package/version.txt
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
1.0.
|
|
1
|
+
1.0.341
|
|
@@ -49,10 +49,12 @@ export default function SelectLG({ state, selectOptions: selectOptionsInput, pla
|
|
|
49
49
|
useEffect(() => {
|
|
50
50
|
if (!selectOptions)
|
|
51
51
|
return;
|
|
52
|
-
|
|
52
|
+
// 검색어가 없으면 전체 옵션 표시
|
|
53
|
+
if (!search) {
|
|
53
54
|
setFilteredOptions(selectOptions);
|
|
54
55
|
}
|
|
55
56
|
else {
|
|
57
|
+
// 검색어가 있으면 필터링된 옵션 표시
|
|
56
58
|
const responses = selectOptions.filter(({ title }) => title?.includes(search));
|
|
57
59
|
setFilteredOptions(responses);
|
|
58
60
|
}
|