@instructure/ui-side-nav-bar 11.7.3-snapshot-4 → 11.7.3-snapshot-7

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 CHANGED
@@ -3,7 +3,7 @@
3
3
  All notable changes to this project will be documented in this file.
4
4
  See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
5
5
 
6
- ## [11.7.3-snapshot-4](https://github.com/instructure/instructure-ui/compare/v11.7.2...v11.7.3-snapshot-4) (2026-04-28)
6
+ ## [11.7.3-snapshot-7](https://github.com/instructure/instructure-ui/compare/v11.7.2...v11.7.3-snapshot-7) (2026-04-29)
7
7
 
8
8
  **Note:** Version bump only for package @instructure/ui-side-nav-bar
9
9
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@instructure/ui-side-nav-bar",
3
- "version": "11.7.3-snapshot-4",
3
+ "version": "11.7.3-snapshot-7",
4
4
  "description": "Main and application level navigational components",
5
5
  "author": "Instructure, Inc. Engineering and Product Design",
6
6
  "module": "./es/index.js",
@@ -15,25 +15,25 @@
15
15
  "license": "MIT",
16
16
  "dependencies": {
17
17
  "@babel/runtime": "^7.27.6",
18
- "@instructure/debounce": "11.7.3-snapshot-4",
19
- "@instructure/emotion": "11.7.3-snapshot-4",
20
- "@instructure/shared-types": "11.7.3-snapshot-4",
21
- "@instructure/ui-a11y-content": "11.7.3-snapshot-4",
22
- "@instructure/ui-a11y-utils": "11.7.3-snapshot-4",
23
- "@instructure/ui-icons": "11.7.3-snapshot-4",
24
- "@instructure/ui-tooltip": "11.7.3-snapshot-4",
25
- "@instructure/ui-badge": "11.7.3-snapshot-4",
26
- "@instructure/ui-react-utils": "11.7.3-snapshot-4"
18
+ "@instructure/debounce": "11.7.3-snapshot-7",
19
+ "@instructure/emotion": "11.7.3-snapshot-7",
20
+ "@instructure/ui-a11y-content": "11.7.3-snapshot-7",
21
+ "@instructure/shared-types": "11.7.3-snapshot-7",
22
+ "@instructure/ui-a11y-utils": "11.7.3-snapshot-7",
23
+ "@instructure/ui-badge": "11.7.3-snapshot-7",
24
+ "@instructure/ui-icons": "11.7.3-snapshot-7",
25
+ "@instructure/ui-react-utils": "11.7.3-snapshot-7",
26
+ "@instructure/ui-themes": "11.7.3-snapshot-7",
27
+ "@instructure/ui-tooltip": "11.7.3-snapshot-7"
27
28
  },
28
29
  "devDependencies": {
29
30
  "@testing-library/jest-dom": "^6.6.3",
30
31
  "@testing-library/react": "15.0.7",
31
32
  "@testing-library/user-event": "^14.6.1",
32
33
  "vitest": "^3.2.2",
33
- "@instructure/ui-axe-check": "11.7.3-snapshot-4",
34
- "@instructure/ui-babel-preset": "11.7.3-snapshot-4",
35
- "@instructure/ui-color-utils": "11.7.3-snapshot-4",
36
- "@instructure/ui-themes": "11.7.3-snapshot-4"
34
+ "@instructure/ui-axe-check": "11.7.3-snapshot-7",
35
+ "@instructure/ui-babel-preset": "11.7.3-snapshot-7",
36
+ "@instructure/ui-color-utils": "11.7.3-snapshot-7"
37
37
  },
38
38
  "peerDependencies": {
39
39
  "react": ">=18 <=19"
@@ -25,10 +25,10 @@
25
25
  import React from 'react'
26
26
  import type {
27
27
  AsElementType,
28
- SideNavBarItemTheme,
29
28
  OtherHTMLAttributes
30
29
  } from '@instructure/shared-types'
31
30
  import type { WithStyleProps, ComponentStyle } from '@instructure/emotion'
31
+ import type { NewComponentTypes } from '@instructure/ui-themes'
32
32
 
33
33
  type SideNavBarItemOwnProps = {
34
34
  /**
@@ -70,7 +70,10 @@ type PropKeys = keyof SideNavBarItemOwnProps
70
70
  type AllowedPropKeys = Readonly<Array<PropKeys>>
71
71
 
72
72
  type SideNavBarItemProps = SideNavBarItemOwnProps &
73
- WithStyleProps<SideNavBarItemTheme, SideNavBarItemStyle> &
73
+ WithStyleProps<
74
+ ReturnType<NewComponentTypes['SideNavBarItem']>,
75
+ SideNavBarItemStyle
76
+ > &
74
77
  OtherHTMLAttributes<SideNavBarItemOwnProps>
75
78
 
76
79
  type SideNavBarItemStyle = ComponentStyle<'navigationItem' | 'icon' | 'label'>
@@ -23,11 +23,9 @@
23
23
  */
24
24
  import React from 'react'
25
25
 
26
- import type {
27
- SideNavBarTheme,
28
- OtherHTMLAttributes
29
- } from '@instructure/shared-types'
26
+ import type { OtherHTMLAttributes } from '@instructure/shared-types'
30
27
  import type { WithStyleProps, ComponentStyle } from '@instructure/emotion'
28
+ import type { NewComponentTypes } from '@instructure/ui-themes'
31
29
 
32
30
  type SideNavBarOwnProps = {
33
31
  /**
@@ -73,7 +71,7 @@ type PropKeys = keyof SideNavBarOwnProps
73
71
  type AllowedPropKeys = Readonly<Array<PropKeys>>
74
72
 
75
73
  type SideNavBarProps = SideNavBarOwnProps &
76
- WithStyleProps<SideNavBarTheme, SideNavBarStyle> &
74
+ WithStyleProps<ReturnType<NewComponentTypes['SideNavBar']>, SideNavBarStyle> &
77
75
  OtherHTMLAttributes<SideNavBarOwnProps>
78
76
 
79
77
  type SideNavBarStyle = ComponentStyle<