@univerjs/sheets-numfmt 0.6.0-nightly.202502111606 → 0.6.0-nightly.202502121606
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/lib/types/base/const/{CURRENCY-SYMBOLS.d.ts → currency-symbols.d.ts} +1 -1
- package/lib/types/base/const/{FORMATDETAIL.d.ts → formatdetail.d.ts} +1 -1
- package/lib/types/base/const/{PLUGIN_NAME.d.ts → plugin-name.d.ts} +1 -1
- package/lib/types/controllers/numfmt-currency.controller.d.ts +1 -1
- package/lib/types/controllers/type.d.ts +1 -1
- package/lib/types/facade/index.d.ts +1 -1
- package/lib/types/index.d.ts +4 -4
- package/lib/types/service/menu.currency.service.d.ts +1 -1
- package/lib/types/utils/currency.d.ts +1 -1
- package/lib/types/utils/decimal.d.ts +1 -1
- package/lib/types/utils/options.d.ts +1 -1
- package/package.json +5 -5
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { countryCurrencyMap } from '../base/const/
|
|
1
|
+
import { countryCurrencyMap } from '../base/const/currency-symbols';
|
|
2
2
|
import { Disposable } from '@univerjs/core';
|
|
3
3
|
export declare class NumfmtCurrencyController extends Disposable {
|
|
4
4
|
private _currencySymbol$;
|
package/lib/types/index.d.ts
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
/**
|
|
2
|
-
* Copyright 2023-present DreamNum
|
|
2
|
+
* Copyright 2023-present DreamNum Co., Ltd.
|
|
3
3
|
*
|
|
4
4
|
* Licensed under the Apache License, Version 2.0 (the "License");
|
|
5
5
|
* you may not use this file except in compliance with the License.
|
|
@@ -13,14 +13,14 @@
|
|
|
13
13
|
* See the License for the specific language governing permissions and
|
|
14
14
|
* limitations under the License.
|
|
15
15
|
*/
|
|
16
|
-
export { countryCurrencyMap } from './base/const/
|
|
17
|
-
export { CURRENCYFORMAT, DATEFMTLISG, NUMBERFORMAT } from './base/const/
|
|
16
|
+
export { countryCurrencyMap } from './base/const/currency-symbols';
|
|
17
|
+
export { CURRENCYFORMAT, DATEFMTLISG, NUMBERFORMAT } from './base/const/formatdetail';
|
|
18
18
|
export { UniverSheetsNumfmtPlugin } from './numfmt-plugin';
|
|
19
19
|
export { MenuCurrencyService } from './service/menu.currency.service';
|
|
20
20
|
export { getPatternPreview, getPatternPreviewIgnoreGeneral, getPatternType } from './utils/pattern';
|
|
21
21
|
export { getDecimalFromPattern, getDecimalString, isPatternEqualWithoutDecimal, isPatternHasDecimal, setPatternDecimal } from './utils/decimal';
|
|
22
22
|
export { getCurrencyType } from './utils/currency';
|
|
23
|
-
export { currencySymbols } from './base/const/
|
|
23
|
+
export { currencySymbols } from './base/const/currency-symbols';
|
|
24
24
|
export { SheetsNumfmtCellContentController } from './controllers/numfmt-cell-content.controller';
|
|
25
25
|
export { getCurrencyFormatOptions, getCurrencyOptions, getDateFormatOptions, getNumberFormatOptions } from './utils/options';
|
|
26
26
|
export { AddDecimalCommand } from './commands/commands/add-decimal.command';
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { countryCurrencyMap } from '../base/const/
|
|
1
|
+
import { countryCurrencyMap } from '../base/const/currency-symbols';
|
|
2
2
|
export declare class MenuCurrencyService {
|
|
3
3
|
private _currencySymbol$;
|
|
4
4
|
readonly currencySymbol$: import('rxjs').Observable<"AT" | "US" | "CA" | "GB" | "JP" | "IN" | "AU" | "CN" | "KR" | "RU" | "BE" | "CY" | "EE" | "FI" | "FR" | "DE" | "GR" | "IE" | "IT" | "LV" | "LT" | "LU" | "MT" | "NL" | "PT" | "SK" | "SI" | "ES">;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@univerjs/sheets-numfmt",
|
|
3
|
-
"version": "0.6.0-nightly.
|
|
3
|
+
"version": "0.6.0-nightly.202502121606",
|
|
4
4
|
"private": false,
|
|
5
5
|
"description": "UniverSheet numfmt plugin",
|
|
6
6
|
"author": "DreamNum <developer@univer.ai>",
|
|
@@ -53,10 +53,10 @@
|
|
|
53
53
|
"rxjs": ">=7.0.0"
|
|
54
54
|
},
|
|
55
55
|
"dependencies": {
|
|
56
|
-
"@univerjs/
|
|
57
|
-
"@univerjs/engine-
|
|
58
|
-
"@univerjs/
|
|
59
|
-
"@univerjs/
|
|
56
|
+
"@univerjs/engine-formula": "0.6.0-nightly.202502121606",
|
|
57
|
+
"@univerjs/engine-numfmt": "0.6.0-nightly.202502121606",
|
|
58
|
+
"@univerjs/sheets": "0.6.0-nightly.202502121606",
|
|
59
|
+
"@univerjs/core": "0.6.0-nightly.202502121606"
|
|
60
60
|
},
|
|
61
61
|
"devDependencies": {
|
|
62
62
|
"rxjs": "^7.8.1",
|