@brightspace-ui/core 2.104.0 → 2.104.2

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.
@@ -106,7 +106,7 @@ export const _LocalizeMixinBase = dedupeMixin(superclass => class LocalizeMixinC
106
106
  if (!value) return '';
107
107
 
108
108
  let params = {};
109
- if (arguments.length > 1 && arguments[1].constructor === Object) {
109
+ if (arguments.length > 1 && arguments[1]?.constructor === Object) {
110
110
  // support for key-value replacements as a single arg
111
111
  params = arguments[1];
112
112
  } else {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@brightspace-ui/core",
3
- "version": "2.104.0",
3
+ "version": "2.104.2",
4
4
  "description": "A collection of accessible, free, open-source web components for building Brightspace applications",
5
5
  "type": "module",
6
6
  "repository": "https://github.com/BrightspaceUI/core.git",
@@ -66,7 +66,8 @@
66
66
  "rollup-plugin-copy": "^3",
67
67
  "rollup-plugin-delete": "^2",
68
68
  "sinon": "^15",
69
- "stylelint": "^15"
69
+ "stylelint": "^15",
70
+ "typescript": "^5.0.3"
70
71
  },
71
72
  "dependencies": {
72
73
  "@brightspace-ui/intl": "^3",
@@ -1 +0,0 @@
1
- export { ArrowKeysMixin } from './arrow-keys/arrow-keys-mixin.js';
@@ -1 +0,0 @@
1
- export { LocalizeStaticMixin } from './localize/localize-mixin.js';
@@ -1 +0,0 @@
1
- export { ThemeMixin } from './theme/theme-mixin.js';
@@ -1 +0,0 @@
1
- export { VisibleOnAncestorMixin, visibleOnAncestorStyles } from './visible-on-ancestor/visible-on-ancestor-mixin.js';