bnstooltips 1.6.3 → 1.7.0
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/build/ItemImproveTooltip/ItemImproveTooltip.d.ts +5 -0
- package/build/ItemImproveTooltip/ItemImproveTooltip.types.d.ts +11 -0
- package/build/ItemImproveTooltipWrapper/ItemImproveTooltipWrapper.d.ts +6 -0
- package/build/ItemImproveTooltipWrapper/ItemImproveTooltipWrapper.types.d.ts +11 -0
- package/build/ItemTooltip/ItemTooltip.d.ts +1 -1
- package/build/ItemTooltip/ItemTooltip.types.d.ts +1 -0
- package/build/ItemTooltip/SubComponents/DecomposeResults.d.ts +1 -0
- package/build/ItemTooltip/SubComponents/ItemIconNameDiv.d.ts +4 -1
- package/build/ItemTooltipWrapper/ItemTooltipWrapper.types.d.ts +1 -0
- package/build/TooltipWrapper/TooltipWrapper.d.ts +6 -0
- package/build/TooltipWrapper/TooltipWrapper.types.d.ts +17 -0
- package/build/Utilities/INpc.d.ts +1 -1
- package/build/Utilities/Models.d.ts +2 -1
- package/build/Utilities/TooltipSettingsBase.d.ts +13 -0
- package/build/index.d.ts +4 -0
- package/build/index.es.js +543 -311
- package/build/index.es.js.map +1 -1
- package/build/index.js +544 -310
- package/build/index.js.map +1 -1
- package/build/itemapiclient/api.d.ts +111 -0
- package/package.json +9 -9
|
@@ -174,6 +174,12 @@ export interface BnsItemDto {
|
|
|
174
174
|
* @memberof BnsItemDto
|
|
175
175
|
*/
|
|
176
176
|
skillModifierGroups?: Array<SkillModifierGroupDto>;
|
|
177
|
+
/**
|
|
178
|
+
*
|
|
179
|
+
* @type {ItemImproveDto}
|
|
180
|
+
* @memberof BnsItemDto
|
|
181
|
+
*/
|
|
182
|
+
itemImprove?: ItemImproveDto;
|
|
177
183
|
/**
|
|
178
184
|
*
|
|
179
185
|
* @type {Array<ItemSkillDto>}
|
|
@@ -410,6 +416,86 @@ export interface ItemIconDto {
|
|
|
410
416
|
*/
|
|
411
417
|
iconIndex?: number;
|
|
412
418
|
}
|
|
419
|
+
/**
|
|
420
|
+
*
|
|
421
|
+
* @export
|
|
422
|
+
* @interface ItemImproveDto
|
|
423
|
+
*/
|
|
424
|
+
export interface ItemImproveDto {
|
|
425
|
+
/**
|
|
426
|
+
*
|
|
427
|
+
* @type {number}
|
|
428
|
+
* @memberof ItemImproveDto
|
|
429
|
+
*/
|
|
430
|
+
moneyCost?: number;
|
|
431
|
+
/**
|
|
432
|
+
*
|
|
433
|
+
* @type {Array<ItemRefWithCount>}
|
|
434
|
+
* @memberof ItemImproveDto
|
|
435
|
+
*/
|
|
436
|
+
itemCost?: Array<ItemRefWithCount>;
|
|
437
|
+
/**
|
|
438
|
+
*
|
|
439
|
+
* @type {ItemRefWithCount}
|
|
440
|
+
* @memberof ItemImproveDto
|
|
441
|
+
*/
|
|
442
|
+
itemResult?: ItemRefWithCount;
|
|
443
|
+
/**
|
|
444
|
+
*
|
|
445
|
+
* @type {boolean}
|
|
446
|
+
* @memberof ItemImproveDto
|
|
447
|
+
*/
|
|
448
|
+
fixedAllOptions?: boolean;
|
|
449
|
+
/**
|
|
450
|
+
*
|
|
451
|
+
* @type {boolean}
|
|
452
|
+
* @memberof ItemImproveDto
|
|
453
|
+
*/
|
|
454
|
+
useMileageSave?: boolean;
|
|
455
|
+
/**
|
|
456
|
+
*
|
|
457
|
+
* @type {Array<ItemImproveOptionDto>}
|
|
458
|
+
* @memberof ItemImproveDto
|
|
459
|
+
*/
|
|
460
|
+
options?: Array<ItemImproveOptionDto>;
|
|
461
|
+
}
|
|
462
|
+
/**
|
|
463
|
+
*
|
|
464
|
+
* @export
|
|
465
|
+
* @interface ItemImproveOptionDto
|
|
466
|
+
*/
|
|
467
|
+
export interface ItemImproveOptionDto {
|
|
468
|
+
/**
|
|
469
|
+
*
|
|
470
|
+
* @type {string}
|
|
471
|
+
* @memberof ItemImproveOptionDto
|
|
472
|
+
*/
|
|
473
|
+
statName?: string;
|
|
474
|
+
/**
|
|
475
|
+
*
|
|
476
|
+
* @type {number}
|
|
477
|
+
* @memberof ItemImproveOptionDto
|
|
478
|
+
*/
|
|
479
|
+
statValue?: number;
|
|
480
|
+
/**
|
|
481
|
+
*
|
|
482
|
+
* @type {boolean}
|
|
483
|
+
* @memberof ItemImproveOptionDto
|
|
484
|
+
*/
|
|
485
|
+
isEffect?: boolean;
|
|
486
|
+
/**
|
|
487
|
+
*
|
|
488
|
+
* @type {string}
|
|
489
|
+
* @memberof ItemImproveOptionDto
|
|
490
|
+
*/
|
|
491
|
+
effectDescription?: string;
|
|
492
|
+
/**
|
|
493
|
+
*
|
|
494
|
+
* @type {ItemIconDto}
|
|
495
|
+
* @memberof ItemImproveOptionDto
|
|
496
|
+
*/
|
|
497
|
+
icon?: ItemIconDto;
|
|
498
|
+
}
|
|
413
499
|
/**
|
|
414
500
|
*
|
|
415
501
|
* @export
|
|
@@ -878,6 +964,12 @@ export declare const BnsItemApiFetchParamCreator: (configuration?: Configuration
|
|
|
878
964
|
* @throws {RequiredError}
|
|
879
965
|
*/
|
|
880
966
|
bnsItemPingGet(options?: any): FetchArgs;
|
|
967
|
+
/**
|
|
968
|
+
*
|
|
969
|
+
* @param {*} [options] Override http request option.
|
|
970
|
+
* @throws {RequiredError}
|
|
971
|
+
*/
|
|
972
|
+
bnsItemRegionsGet(options?: any): FetchArgs;
|
|
881
973
|
/**
|
|
882
974
|
*
|
|
883
975
|
* @param {string} region
|
|
@@ -977,6 +1069,12 @@ export declare const BnsItemApiFp: (configuration?: Configuration) => {
|
|
|
977
1069
|
* @throws {RequiredError}
|
|
978
1070
|
*/
|
|
979
1071
|
bnsItemPingGet(options?: any): (fetch?: FetchAPI, basePath?: string) => Promise<string>;
|
|
1072
|
+
/**
|
|
1073
|
+
*
|
|
1074
|
+
* @param {*} [options] Override http request option.
|
|
1075
|
+
* @throws {RequiredError}
|
|
1076
|
+
*/
|
|
1077
|
+
bnsItemRegionsGet(options?: any): (fetch?: FetchAPI, basePath?: string) => Promise<Array<string>>;
|
|
980
1078
|
/**
|
|
981
1079
|
*
|
|
982
1080
|
* @param {string} region
|
|
@@ -1076,6 +1174,12 @@ export declare const BnsItemApiFactory: (configuration?: Configuration, fetch?:
|
|
|
1076
1174
|
* @throws {RequiredError}
|
|
1077
1175
|
*/
|
|
1078
1176
|
bnsItemPingGet(options?: any): Promise<string>;
|
|
1177
|
+
/**
|
|
1178
|
+
*
|
|
1179
|
+
* @param {*} [options] Override http request option.
|
|
1180
|
+
* @throws {RequiredError}
|
|
1181
|
+
*/
|
|
1182
|
+
bnsItemRegionsGet(options?: any): Promise<string[]>;
|
|
1079
1183
|
/**
|
|
1080
1184
|
*
|
|
1081
1185
|
* @param {string} region
|
|
@@ -1186,6 +1290,13 @@ export declare class BnsItemApi extends BaseAPI {
|
|
|
1186
1290
|
* @memberof BnsItemApi
|
|
1187
1291
|
*/
|
|
1188
1292
|
bnsItemPingGet(options?: any): Promise<string>;
|
|
1293
|
+
/**
|
|
1294
|
+
*
|
|
1295
|
+
* @param {*} [options] Override http request option.
|
|
1296
|
+
* @throws {RequiredError}
|
|
1297
|
+
* @memberof BnsItemApi
|
|
1298
|
+
*/
|
|
1299
|
+
bnsItemRegionsGet(options?: any): Promise<string[]>;
|
|
1189
1300
|
/**
|
|
1190
1301
|
*
|
|
1191
1302
|
* @param {string} region
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "bnstooltips",
|
|
3
|
-
"version": "1.
|
|
3
|
+
"version": "1.7.0",
|
|
4
4
|
"description": "Blade & Soul style tooltips",
|
|
5
5
|
"main": "build/index.js",
|
|
6
6
|
"module": "build/index.es.js",
|
|
@@ -21,12 +21,12 @@
|
|
|
21
21
|
"@babel/core": "^7.16.0",
|
|
22
22
|
"@rollup/plugin-commonjs": "^21.0.1",
|
|
23
23
|
"@rollup/plugin-node-resolve": "^13.0.6",
|
|
24
|
-
"@storybook/addon-actions": "^6.
|
|
25
|
-
"@storybook/addon-essentials": "^6.
|
|
26
|
-
"@storybook/addon-links": "^6.
|
|
27
|
-
"@storybook/builder-webpack5": "^6.
|
|
28
|
-
"@storybook/manager-webpack5": "^6.
|
|
29
|
-
"@storybook/react": "^6.
|
|
24
|
+
"@storybook/addon-actions": "^6.4.19",
|
|
25
|
+
"@storybook/addon-essentials": "^6.4.19",
|
|
26
|
+
"@storybook/addon-links": "^6.4.19",
|
|
27
|
+
"@storybook/builder-webpack5": "^6.4.19",
|
|
28
|
+
"@storybook/manager-webpack5": "^6.4.19",
|
|
29
|
+
"@storybook/react": "^6.4.19",
|
|
30
30
|
"@testing-library/jest-dom": "^5.15.0",
|
|
31
31
|
"@testing-library/react": "^12.1.2",
|
|
32
32
|
"@types/jest": "^27.0.2",
|
|
@@ -45,7 +45,7 @@
|
|
|
45
45
|
"rollup-plugin-typescript2": "^0.30.0",
|
|
46
46
|
"sass-loader": "^12.3.0",
|
|
47
47
|
"ts-jest": "^27.0.7",
|
|
48
|
-
"typescript": "^4.
|
|
48
|
+
"typescript": "^4.7.3",
|
|
49
49
|
"webpack": "*"
|
|
50
50
|
},
|
|
51
51
|
"peerDependencies": {
|
|
@@ -58,4 +58,4 @@
|
|
|
58
58
|
"isomorphic-fetch": "^3.0.0"
|
|
59
59
|
},
|
|
60
60
|
"browserslist": "last 2 versions"
|
|
61
|
-
}
|
|
61
|
+
}
|