@instructure/ui-side-nav-bar 11.4.0 → 11.4.1-snapshot-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/CHANGELOG.md +8 -0
- package/es/SideNavBar/SideNavBarItem/index.js +3 -4
- package/es/SideNavBar/index.js +4 -4
- package/es/index.js +1 -2
- package/package.json +30 -17
- package/tsconfig.build.tsbuildinfo +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -3,6 +3,14 @@
|
|
|
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.4.1-snapshot-0](https://github.com/instructure/instructure-ui/compare/v11.4.0...v11.4.1-snapshot-0) (2026-02-02)
|
|
7
|
+
|
|
8
|
+
**Note:** Version bump only for package @instructure/ui-side-nav-bar
|
|
9
|
+
|
|
10
|
+
|
|
11
|
+
|
|
12
|
+
|
|
13
|
+
|
|
6
14
|
# [11.4.0](https://github.com/instructure/instructure-ui/compare/v11.3.0...v11.4.0) (2026-01-20)
|
|
7
15
|
|
|
8
16
|
**Note:** Version bump only for package @instructure/ui-side-nav-bar
|
|
@@ -28,10 +28,9 @@ import { omitProps, getElementType } from '@instructure/ui-react-utils';
|
|
|
28
28
|
import { Tooltip } from '@instructure/ui-tooltip';
|
|
29
29
|
import { hasVisibleChildren } from '@instructure/ui-a11y-utils';
|
|
30
30
|
import { withStyle } from '@instructure/emotion';
|
|
31
|
-
import generateStyle from
|
|
32
|
-
import generateComponentTheme from
|
|
33
|
-
import { allowedProps } from
|
|
34
|
-
|
|
31
|
+
import generateStyle from "./styles.js";
|
|
32
|
+
import generateComponentTheme from "./theme.js";
|
|
33
|
+
import { allowedProps } from "./props.js";
|
|
35
34
|
/**
|
|
36
35
|
---
|
|
37
36
|
parent: SideNavBar
|
package/es/SideNavBar/index.js
CHANGED
|
@@ -27,10 +27,10 @@ import { omitProps, safeCloneElement } from '@instructure/ui-react-utils';
|
|
|
27
27
|
import { IconMoveStartLine } from '@instructure/ui-icons';
|
|
28
28
|
import { ScreenReaderContent } from '@instructure/ui-a11y-content';
|
|
29
29
|
import { withStyle } from '@instructure/emotion';
|
|
30
|
-
import { SideNavBarItem } from
|
|
31
|
-
import generateStyle from
|
|
32
|
-
import generateComponentTheme from
|
|
33
|
-
import { allowedProps } from
|
|
30
|
+
import { SideNavBarItem } from "./SideNavBarItem/index.js";
|
|
31
|
+
import generateStyle from "./styles.js";
|
|
32
|
+
import generateComponentTheme from "./theme.js";
|
|
33
|
+
import { allowedProps } from "./props.js";
|
|
34
34
|
import { jsx as _jsx, jsxs as _jsxs } from "@emotion/react/jsx-runtime";
|
|
35
35
|
const navMinimized = ({
|
|
36
36
|
minimized
|
package/es/index.js
CHANGED
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@instructure/ui-side-nav-bar",
|
|
3
|
-
"version": "11.4.0",
|
|
3
|
+
"version": "11.4.1-snapshot-0",
|
|
4
4
|
"description": "Main and application level navigational components",
|
|
5
5
|
"author": "Instructure, Inc. Engineering and Product Design",
|
|
6
6
|
"module": "./es/index.js",
|
|
@@ -13,27 +13,27 @@
|
|
|
13
13
|
"homepage": "https://instructure.github.io/instructure-ui/",
|
|
14
14
|
"bugs": "https://github.com/instructure/instructure-ui/issues",
|
|
15
15
|
"license": "MIT",
|
|
16
|
+
"dependencies": {
|
|
17
|
+
"@babel/runtime": "^7.27.6",
|
|
18
|
+
"@instructure/emotion": "11.4.1-snapshot-0",
|
|
19
|
+
"@instructure/shared-types": "11.4.1-snapshot-0",
|
|
20
|
+
"@instructure/debounce": "11.4.1-snapshot-0",
|
|
21
|
+
"@instructure/ui-a11y-content": "11.4.1-snapshot-0",
|
|
22
|
+
"@instructure/ui-a11y-utils": "11.4.1-snapshot-0",
|
|
23
|
+
"@instructure/ui-badge": "11.4.1-snapshot-0",
|
|
24
|
+
"@instructure/ui-icons": "11.4.1-snapshot-0",
|
|
25
|
+
"@instructure/ui-react-utils": "11.4.1-snapshot-0",
|
|
26
|
+
"@instructure/ui-tooltip": "11.4.1-snapshot-0"
|
|
27
|
+
},
|
|
16
28
|
"devDependencies": {
|
|
17
29
|
"@testing-library/jest-dom": "^6.6.3",
|
|
18
30
|
"@testing-library/react": "15.0.7",
|
|
19
31
|
"@testing-library/user-event": "^14.6.1",
|
|
20
32
|
"vitest": "^3.2.2",
|
|
21
|
-
"@instructure/ui-
|
|
22
|
-
"@instructure/ui-
|
|
23
|
-
"@instructure/ui-
|
|
24
|
-
"@instructure/ui-
|
|
25
|
-
},
|
|
26
|
-
"dependencies": {
|
|
27
|
-
"@babel/runtime": "^7.27.6",
|
|
28
|
-
"@instructure/debounce": "11.4.0",
|
|
29
|
-
"@instructure/emotion": "11.4.0",
|
|
30
|
-
"@instructure/ui-a11y-content": "11.4.0",
|
|
31
|
-
"@instructure/shared-types": "11.4.0",
|
|
32
|
-
"@instructure/ui-a11y-utils": "11.4.0",
|
|
33
|
-
"@instructure/ui-badge": "11.4.0",
|
|
34
|
-
"@instructure/ui-icons": "11.4.0",
|
|
35
|
-
"@instructure/ui-tooltip": "11.4.0",
|
|
36
|
-
"@instructure/ui-react-utils": "11.4.0"
|
|
33
|
+
"@instructure/ui-axe-check": "11.4.1-snapshot-0",
|
|
34
|
+
"@instructure/ui-babel-preset": "11.4.1-snapshot-0",
|
|
35
|
+
"@instructure/ui-color-utils": "11.4.1-snapshot-0",
|
|
36
|
+
"@instructure/ui-themes": "11.4.1-snapshot-0"
|
|
37
37
|
},
|
|
38
38
|
"peerDependencies": {
|
|
39
39
|
"react": ">=18 <=19"
|
|
@@ -42,6 +42,19 @@
|
|
|
42
42
|
"access": "public"
|
|
43
43
|
},
|
|
44
44
|
"sideEffects": false,
|
|
45
|
+
"exports": {
|
|
46
|
+
".": {
|
|
47
|
+
"types": "./types/index.d.ts",
|
|
48
|
+
"import": "./es/index.js",
|
|
49
|
+
"require": "./lib/index.js",
|
|
50
|
+
"default": "./es/index.js"
|
|
51
|
+
},
|
|
52
|
+
"./lib/*": "./lib/*",
|
|
53
|
+
"./es/*": "./es/*",
|
|
54
|
+
"./types/*": "./types/*",
|
|
55
|
+
"./package.json": "./package.json",
|
|
56
|
+
"./src/*": "./src/*"
|
|
57
|
+
},
|
|
45
58
|
"scripts": {
|
|
46
59
|
"lint": "ui-scripts lint",
|
|
47
60
|
"lint:fix": "ui-scripts lint --fix",
|