@mantine/spotlight 7.12.1 → 7.12.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.
package/cjs/index.cjs CHANGED
@@ -3,6 +3,7 @@
3
3
  var spotlight_store = require('./spotlight.store.cjs');
4
4
  var isActionsGroup = require('./is-actions-group.cjs');
5
5
  var Spotlight = require('./Spotlight.cjs');
6
+ var SpotlightRoot = require('./SpotlightRoot.cjs');
6
7
  var SpotlightAction = require('./SpotlightAction.cjs');
7
8
  var SpotlightActionsGroup = require('./SpotlightActionsGroup.cjs');
8
9
  var SpotlightActionsList = require('./SpotlightActionsList.cjs');
@@ -21,6 +22,7 @@ exports.toggleSpotlight = spotlight_store.toggleSpotlight;
21
22
  exports.useSpotlight = spotlight_store.useSpotlight;
22
23
  exports.isActionsGroup = isActionsGroup.isActionsGroup;
23
24
  exports.Spotlight = Spotlight.Spotlight;
25
+ exports.SpotlightRoot = SpotlightRoot.SpotlightRoot;
24
26
  exports.SpotlightAction = SpotlightAction.SpotlightAction;
25
27
  exports.SpotlightActionsGroup = SpotlightActionsGroup.SpotlightActionsGroup;
26
28
  exports.SpotlightActionsList = SpotlightActionsList.SpotlightActionsList;
package/cjs/index.cjs.map CHANGED
@@ -1 +1 @@
1
- {"version":3,"file":"index.cjs","sources":[],"sourcesContent":[],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;"}
1
+ {"version":3,"file":"index.cjs","sources":[],"sourcesContent":[],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;"}
package/esm/index.mjs CHANGED
@@ -1,6 +1,7 @@
1
1
  export { closeSpotlight, createSpotlight, createSpotlightStore, openSpotlight, spotlight, toggleSpotlight, useSpotlight } from './spotlight.store.mjs';
2
2
  export { isActionsGroup } from './is-actions-group.mjs';
3
3
  export { Spotlight } from './Spotlight.mjs';
4
+ export { SpotlightRoot } from './SpotlightRoot.mjs';
4
5
  export { SpotlightAction } from './SpotlightAction.mjs';
5
6
  export { SpotlightActionsGroup } from './SpotlightActionsGroup.mjs';
6
7
  export { SpotlightActionsList } from './SpotlightActionsList.mjs';
package/esm/index.mjs.map CHANGED
@@ -1 +1 @@
1
- {"version":3,"file":"index.mjs","sources":[],"sourcesContent":[],"names":[],"mappings":";;;;;;;;"}
1
+ {"version":3,"file":"index.mjs","sources":[],"sourcesContent":[],"names":[],"mappings":";;;;;;;;;"}
package/lib/index.d.mts CHANGED
@@ -2,6 +2,7 @@ export { spotlight, createSpotlight, createSpotlightStore, useSpotlight, openSpo
2
2
  export type { SpotlightState, SpotlightStore } from './spotlight.store';
3
3
  export { isActionsGroup } from './is-actions-group';
4
4
  export { Spotlight } from './Spotlight';
5
+ export { SpotlightRoot } from './SpotlightRoot';
5
6
  export { SpotlightAction } from './SpotlightAction';
6
7
  export { SpotlightActionsGroup } from './SpotlightActionsGroup';
7
8
  export { SpotlightActionsList } from './SpotlightActionsList';
package/lib/index.d.ts CHANGED
@@ -2,6 +2,7 @@ export { spotlight, createSpotlight, createSpotlightStore, useSpotlight, openSpo
2
2
  export type { SpotlightState, SpotlightStore } from './spotlight.store';
3
3
  export { isActionsGroup } from './is-actions-group';
4
4
  export { Spotlight } from './Spotlight';
5
+ export { SpotlightRoot } from './SpotlightRoot';
5
6
  export { SpotlightAction } from './SpotlightAction';
6
7
  export { SpotlightActionsGroup } from './SpotlightActionsGroup';
7
8
  export { SpotlightActionsList } from './SpotlightActionsList';
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@mantine/spotlight",
3
- "version": "7.12.1",
3
+ "version": "7.12.2",
4
4
  "description": "Command center components for react and Mantine",
5
5
  "homepage": "https://mantine.dev",
6
6
  "license": "MIT",
@@ -41,17 +41,17 @@
41
41
  "directory": "packages/@mantine/spotlight"
42
42
  },
43
43
  "peerDependencies": {
44
- "@mantine/core": "7.12.1",
45
- "@mantine/hooks": "7.12.1",
44
+ "@mantine/core": "7.12.2",
45
+ "@mantine/hooks": "7.12.2",
46
46
  "react": "^18.2.0",
47
47
  "react-dom": "^18.2.0"
48
48
  },
49
49
  "dependencies": {
50
- "@mantine/store": "7.12.1"
50
+ "@mantine/store": "7.12.2"
51
51
  },
52
52
  "devDependencies": {
53
53
  "@mantine-tests/core": "1.1.0",
54
- "@mantine/core": "7.12.1",
55
- "@mantine/hooks": "7.12.1"
54
+ "@mantine/core": "7.12.2",
55
+ "@mantine/hooks": "7.12.2"
56
56
  }
57
57
  }