@xh/hoist 74.1.0 → 74.1.1
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/CHANGELOG.md +14 -0
- package/build/types/cmp/grouping/GroupingChooserModel.d.ts +1 -0
- package/build/types/core/types/Interfaces.d.ts +1 -1
- package/build/types/desktop/cmp/grouping/GroupingChooser.d.ts +14 -3
- package/build/types/desktop/cmp/panel/Panel.d.ts +1 -1
- package/cmp/grouping/GroupingChooserModel.ts +5 -0
- package/core/exception/ExceptionHandler.ts +1 -1
- package/core/types/Interfaces.ts +2 -2
- package/desktop/cmp/grouping/GroupingChooser.scss +25 -10
- package/desktop/cmp/grouping/GroupingChooser.ts +123 -45
- package/desktop/cmp/panel/Panel.ts +1 -1
- package/package.json +1 -1
- package/svc/TrackService.ts +4 -3
- package/tsconfig.tsbuildinfo +1 -1
- package/utils/js/LangUtils.ts +1 -1
package/utils/js/LangUtils.ts
CHANGED
|
@@ -178,7 +178,7 @@ export function apiDeprecated(name: string, opts: APIWarnOptions = {}) {
|
|
|
178
178
|
|
|
179
179
|
const v = opts.v ?? 'a future release',
|
|
180
180
|
msg = opts.msg ? ` ${opts.msg}.` : '',
|
|
181
|
-
warn = `The use of '${name}' has been deprecated and will be removed in ${v}
|
|
181
|
+
warn = `The use of '${name}' has been deprecated and will be removed in ${v}. ${msg}`;
|
|
182
182
|
if (!_seenWarnings[warn]) {
|
|
183
183
|
console.warn(warn);
|
|
184
184
|
_seenWarnings[warn] = true;
|