@sunggang/ui-lib 0.2.12 → 0.2.14
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/index.esm.js +2 -2
- package/package.json +1 -1
- package/src/index.d.ts +1 -0
package/index.esm.js
CHANGED
|
@@ -108074,7 +108074,7 @@ var CustomSelect = function(param) {
|
|
|
108074
108074
|
};
|
|
108075
108075
|
}, []);
|
|
108076
108076
|
var getSelectedItemName = function() {
|
|
108077
|
-
if (
|
|
108077
|
+
if (currentID === undefined || currentID === null) return "請選擇";
|
|
108078
108078
|
var selectedItem = items.find(function(item) {
|
|
108079
108079
|
return String(item.value) === String(currentID);
|
|
108080
108080
|
});
|
|
@@ -109792,4 +109792,4 @@ var TabsPanel = function(param) {
|
|
|
109792
109792
|
});
|
|
109793
109793
|
};
|
|
109794
109794
|
|
|
109795
|
-
export { BaseTable, BigCalender, CkEditor, CustomSelect, CustomUpload, DataTable, DateRangePicker, DnDCalendar, DropDown, DropImage, ReactDateRange, Regex, Spin, Switch, TabsPanel, UiLibrary, decryptByEcPay, encryptByEcPay, verifyId, verifyTaxId };
|
|
109795
|
+
export { BaseTable, BigCalender, Button, CkEditor, CustomSelect, CustomUpload, DataTable, DateRangePicker, DnDCalendar, DropDown, DropImage, ReactDateRange, Regex, Spin, Switch, TabsPanel, UiLibrary, buttonVariants, decryptByEcPay, encryptByEcPay, verifyId, verifyTaxId };
|
package/package.json
CHANGED
package/src/index.d.ts
CHANGED
|
@@ -9,6 +9,7 @@ export * from './lib/UploadImage/CustomUpload';
|
|
|
9
9
|
export * from './lib/Switch';
|
|
10
10
|
export * from './components/ui/dateRangePicker';
|
|
11
11
|
export * from './components/ui/reactDateRange';
|
|
12
|
+
export * from './components/ui/button';
|
|
12
13
|
export * from './lib/DataTable';
|
|
13
14
|
export * from './lib/DataTable/BaseTable';
|
|
14
15
|
export * from './lib/Function';
|