@ecan-bi/sheet 0.0.9 → 0.0.13
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/index.es.js +98538 -64
- package/dist/index.es.js.map +1 -1
- package/dist/index.umd.js +4149 -1
- package/dist/index.umd.js.map +1 -1
- package/dist/style.css +4 -0
- package/package.json +29 -6
- package/types/luckysheet/config.d.ts +78 -0
- package/types/luckysheet/controllers/cellDatePickerCtrl.d.ts +4 -0
- package/types/luckysheet/controllers/cellFormat.d.ts +1 -0
- package/types/luckysheet/controllers/conditionformat.d.ts +47 -0
- package/types/luckysheet/controllers/constant.d.ts +142 -0
- package/types/luckysheet/controllers/controlHistory.d.ts +5 -0
- package/types/luckysheet/controllers/dropCell.d.ts +95 -0
- package/types/luckysheet/controllers/expendPlugins.d.ts +4 -0
- package/types/luckysheet/controllers/filter.d.ts +5 -0
- package/types/luckysheet/controllers/formulaBar.d.ts +1 -0
- package/types/luckysheet/controllers/handler.d.ts +1 -0
- package/types/luckysheet/controllers/ifFormulaGenerator.d.ts +12 -0
- package/types/luckysheet/controllers/imageUpdateCtrl.d.ts +1 -0
- package/types/luckysheet/controllers/inlineString.d.ts +25 -0
- package/types/luckysheet/controllers/insertFormula.d.ts +9 -0
- package/types/luckysheet/controllers/keyboard.d.ts +1 -0
- package/types/luckysheet/controllers/listener.d.ts +1 -0
- package/types/luckysheet/controllers/locationCell.d.ts +10 -0
- package/types/luckysheet/controllers/luckysheetConfigsetting.d.ts +36 -0
- package/types/luckysheet/controllers/matrixOperation.d.ts +1 -0
- package/types/luckysheet/controllers/mobile.d.ts +1 -0
- package/types/luckysheet/controllers/orderBy.d.ts +1 -0
- package/types/luckysheet/controllers/postil.d.ts +27 -0
- package/types/luckysheet/controllers/print.d.ts +2 -0
- package/types/luckysheet/controllers/protection.d.ts +10 -0
- package/types/luckysheet/controllers/resize.d.ts +10 -0
- package/types/luckysheet/controllers/rowColumnOperation.d.ts +9 -0
- package/types/luckysheet/controllers/searchReplace.d.ts +10 -0
- package/types/luckysheet/controllers/select.d.ts +7 -0
- package/types/luckysheet/controllers/selection.d.ts +14 -0
- package/types/luckysheet/controllers/sheetBar.d.ts +1 -0
- package/types/luckysheet/controllers/sheetMove.d.ts +5 -0
- package/types/luckysheet/controllers/sheetSearch.d.ts +1 -0
- package/types/luckysheet/controllers/splitColumn.d.ts +10 -0
- package/types/luckysheet/controllers/toolbar.d.ts +42 -0
- package/types/luckysheet/controllers/updateCell.d.ts +10 -0
- package/types/luckysheet/controllers/zoom.d.ts +4 -0
- package/types/luckysheet/core.d.ts +41 -0
- package/types/luckysheet/expendPlugins/chart/plugin.d.ts +4 -0
- package/types/luckysheet/expendPlugins/print/plugin.d.ts +1 -0
- package/types/luckysheet/function/func.d.ts +10 -0
- package/types/luckysheet/function/functionImplementation.d.ts +451 -0
- package/types/luckysheet/function/functionlist.d.ts +2 -0
- package/types/luckysheet/function/matrix_methods.d.ts +1 -0
- package/types/luckysheet/global/analysis.d.ts +8 -0
- package/types/luckysheet/global/api.d.ts +1193 -0
- package/types/luckysheet/global/array.d.ts +8 -0
- package/types/luckysheet/global/border.d.ts +2 -0
- package/types/luckysheet/global/browser.d.ts +15 -0
- package/types/luckysheet/global/cleargridelement.d.ts +1 -0
- package/types/luckysheet/global/count.d.ts +1 -0
- package/types/luckysheet/global/createdom.d.ts +1 -0
- package/types/luckysheet/global/createsheet.d.ts +1 -0
- package/types/luckysheet/global/cursorPos.d.ts +7 -0
- package/types/luckysheet/global/datecontroll.d.ts +7 -0
- package/types/luckysheet/global/draw.d.ts +3 -0
- package/types/luckysheet/global/dynamicArray.d.ts +4 -0
- package/types/luckysheet/global/editor.d.ts +11 -0
- package/types/luckysheet/global/extend.d.ts +13 -0
- package/types/luckysheet/global/format.d.ts +5 -0
- package/types/luckysheet/global/func_methods.d.ts +25 -0
- package/types/luckysheet/global/getRowlen.d.ts +16 -0
- package/types/luckysheet/global/getdata.d.ts +13 -0
- package/types/luckysheet/global/json.d.ts +5 -0
- package/types/luckysheet/global/loading.d.ts +2 -0
- package/types/luckysheet/global/location.d.ts +6 -0
- package/types/luckysheet/global/method.d.ts +10 -0
- package/types/luckysheet/global/refresh.d.ts +8 -0
- package/types/luckysheet/global/rhchInit.d.ts +2 -0
- package/types/luckysheet/global/scroll.d.ts +1 -0
- package/types/luckysheet/global/setdata.d.ts +2 -0
- package/types/luckysheet/global/sort.d.ts +4 -0
- package/types/luckysheet/global/tooltip.d.ts +12 -0
- package/types/luckysheet/global/validate.d.ts +23 -0
- package/types/luckysheet/index.d.ts +2 -0
- package/types/luckysheet/locale/en.d.ts +1216 -0
- package/types/luckysheet/locale/es.d.ts +1194 -0
- package/types/luckysheet/locale/locale.d.ts +12 -0
- package/types/luckysheet/locale/zh.d.ts +1235 -0
- package/types/luckysheet/locale/zh_tw.d.ts +1249 -0
- package/types/luckysheet/methods/get.d.ts +11 -0
- package/types/luckysheet/methods/set.d.ts +6 -0
- package/types/luckysheet/plugins/js/jquery-mousewheel.d.ts +8 -0
- package/types/luckysheet/plugins/js/spectrum.d.ts +1 -0
- package/types/luckysheet/store/index.d.ts +145 -0
- package/types/luckysheet/utils/chartUtil.d.ts +20 -0
- package/types/luckysheet/utils/polyfill.d.ts +5 -0
- package/types/luckysheet/utils/util.d.ts +87 -0
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
export namespace locales {
|
|
2
|
+
export { en };
|
|
3
|
+
export { zh };
|
|
4
|
+
export { es };
|
|
5
|
+
export { zh_tw };
|
|
6
|
+
}
|
|
7
|
+
export default locale;
|
|
8
|
+
import en from "./en";
|
|
9
|
+
import zh from "./zh";
|
|
10
|
+
import es from "./es";
|
|
11
|
+
import zh_tw from "./zh_tw";
|
|
12
|
+
declare function locale(): any;
|