@instructure/ui-themes 11.7.0 → 11.7.1-snapshot-3
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/themes/newThemes/dark/components/dataPermissionLevels.js +1 -1
- package/es/themes/newThemes/dark/components/sideNavBarNew.js +1 -0
- package/es/themes/newThemes/legacyCanvas/components/dataPermissionLevels.js +1 -1
- package/es/themes/newThemes/legacyCanvas/components/menuItem.js +3 -3
- package/es/themes/newThemes/legacyCanvas/components/optionsItem.js +2 -2
- package/es/themes/newThemes/legacyCanvas/components/sideNavBarNew.js +2 -1
- package/es/themes/newThemes/legacyCanvasHighContrast/components/dataPermissionLevels.js +1 -1
- package/es/themes/newThemes/legacyCanvasHighContrast/components/menuItem.js +3 -3
- package/es/themes/newThemes/legacyCanvasHighContrast/components/optionsItem.js +2 -2
- package/es/themes/newThemes/legacyCanvasHighContrast/components/sideNavBarNew.js +2 -1
- package/es/themes/newThemes/light/components/dataPermissionLevels.js +1 -1
- package/es/themes/newThemes/light/components/sideNavBarNew.js +1 -0
- package/lib/themes/newThemes/dark/components/dataPermissionLevels.js +1 -1
- package/lib/themes/newThemes/dark/components/sideNavBarNew.js +1 -0
- package/lib/themes/newThemes/legacyCanvas/components/dataPermissionLevels.js +1 -1
- package/lib/themes/newThemes/legacyCanvas/components/menuItem.js +3 -3
- package/lib/themes/newThemes/legacyCanvas/components/optionsItem.js +2 -2
- package/lib/themes/newThemes/legacyCanvas/components/sideNavBarNew.js +2 -1
- package/lib/themes/newThemes/legacyCanvasHighContrast/components/dataPermissionLevels.js +1 -1
- package/lib/themes/newThemes/legacyCanvasHighContrast/components/menuItem.js +3 -3
- package/lib/themes/newThemes/legacyCanvasHighContrast/components/optionsItem.js +2 -2
- package/lib/themes/newThemes/legacyCanvasHighContrast/components/sideNavBarNew.js +2 -1
- package/lib/themes/newThemes/light/components/dataPermissionLevels.js +1 -1
- package/lib/themes/newThemes/light/components/sideNavBarNew.js +1 -0
- package/package.json +3 -3
- package/src/themes/newThemes/componentTypes/sideNavBarNew.ts +1 -0
- package/src/themes/newThemes/dark/components/dataPermissionLevels.ts +1 -1
- package/src/themes/newThemes/dark/components/sideNavBarNew.ts +1 -0
- package/src/themes/newThemes/legacyCanvas/components/dataPermissionLevels.ts +1 -1
- package/src/themes/newThemes/legacyCanvas/components/menuItem.ts +3 -3
- package/src/themes/newThemes/legacyCanvas/components/optionsItem.ts +2 -2
- package/src/themes/newThemes/legacyCanvas/components/sideNavBarNew.ts +1 -0
- package/src/themes/newThemes/legacyCanvasHighContrast/components/dataPermissionLevels.ts +1 -1
- package/src/themes/newThemes/legacyCanvasHighContrast/components/menuItem.ts +3 -3
- package/src/themes/newThemes/legacyCanvasHighContrast/components/optionsItem.ts +2 -2
- package/src/themes/newThemes/legacyCanvasHighContrast/components/sideNavBarNew.ts +1 -0
- package/src/themes/newThemes/light/components/dataPermissionLevels.ts +1 -1
- package/src/themes/newThemes/light/components/sideNavBarNew.ts +1 -0
- package/tokens/canvas/scss/_variables.scss +7 -6
- package/tokens/canvas/source.json +1 -1
- package/tsconfig.build.tsbuildinfo +1 -1
- package/types/themes/newThemes/componentTypes/sideNavBarNew.d.ts +1 -0
- package/types/themes/newThemes/componentTypes/sideNavBarNew.d.ts.map +1 -1
- package/types/themes/newThemes/dark/components/sideNavBarNew.d.ts.map +1 -1
- package/types/themes/newThemes/legacyCanvas/components/sideNavBarNew.d.ts.map +1 -1
- package/types/themes/newThemes/legacyCanvasHighContrast/components/sideNavBarNew.d.ts.map +1 -1
- package/types/themes/newThemes/light/components/sideNavBarNew.d.ts.map +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.7.1-snapshot-3](https://github.com/instructure/instructure-ui/compare/v11.7.0...v11.7.1-snapshot-3) (2026-03-18)
|
|
7
|
+
|
|
8
|
+
**Note:** Version bump only for package @instructure/ui-themes
|
|
9
|
+
|
|
10
|
+
|
|
11
|
+
|
|
12
|
+
|
|
13
|
+
|
|
6
14
|
# [11.7.0](https://github.com/instructure/instructure-ui/compare/v11.6.0...v11.7.0) (2026-03-18)
|
|
7
15
|
|
|
8
16
|
|
|
@@ -33,7 +33,7 @@ const dataPermissionLevels = {
|
|
|
33
33
|
levelColor: semantics.color.text.aiColor,
|
|
34
34
|
aiTextLeftGradientColor: semantics.color.background.aiTopGradient,
|
|
35
35
|
aiTextRightGradientColor: semantics.color.background.aiBottomGradient,
|
|
36
|
-
bodyPadding:
|
|
36
|
+
bodyPadding: "0rem",
|
|
37
37
|
contentContainerColor: semantics.color.background.elevatedSurface.base
|
|
38
38
|
};
|
|
39
39
|
export default dataPermissionLevels;
|
|
@@ -25,6 +25,7 @@ import semantics from "../semantics.js";
|
|
|
25
25
|
const sideNavBarNew = {
|
|
26
26
|
backgroundColor: semantics.color.background.elevatedSurface.base,
|
|
27
27
|
fill: semantics.color.icon.interactive.action.primaryOnColor.base,
|
|
28
|
+
borderColor: semantics.color.stroke.muted,
|
|
28
29
|
fontColor: semantics.color.text.base,
|
|
29
30
|
minimizedWidth: "3.75rem",
|
|
30
31
|
toggleTransition: "300ms",
|
|
@@ -32,7 +32,7 @@ const dataPermissionLevels = {
|
|
|
32
32
|
levelColor: semantics.color.text.aiColor,
|
|
33
33
|
aiTextLeftGradientColor: semantics.color.background.aiTopGradient,
|
|
34
34
|
aiTextRightGradientColor: semantics.color.background.aiBottomGradient,
|
|
35
|
-
bodyPadding:
|
|
35
|
+
bodyPadding: "0rem",
|
|
36
36
|
contentContainerColor: semantics.color.background.elevatedSurface.base,
|
|
37
37
|
contentContainerBorderRadius: "0rem"
|
|
38
38
|
};
|
|
@@ -36,9 +36,9 @@ const menuItem = {
|
|
|
36
36
|
labelPadding: "2.25rem",
|
|
37
37
|
paddingVertical: semantics.spacing.spaceSm,
|
|
38
38
|
paddingHorizontal: semantics.spacing.spaceMd,
|
|
39
|
-
highlightedBackground: semantics.color.background.
|
|
39
|
+
highlightedBackground: semantics.color.background.muted,
|
|
40
40
|
selectedHighlightedBackground: semantics.color.background.interactive.action.primary.hover,
|
|
41
|
-
highlightedLabelColor: semantics.color.text.
|
|
42
|
-
highlightedLabelInfoColor: semantics.color.text.
|
|
41
|
+
highlightedLabelColor: semantics.color.text.base,
|
|
42
|
+
highlightedLabelInfoColor: semantics.color.text.muted
|
|
43
43
|
};
|
|
44
44
|
export default menuItem;
|
|
@@ -35,8 +35,8 @@ const optionsItem = {
|
|
|
35
35
|
fontSize: semantics.fontSize.textBase,
|
|
36
36
|
fontWeight: semantics.fontWeight.body.base,
|
|
37
37
|
fontWeightSelected: semantics.fontWeight.body.base,
|
|
38
|
-
highlightedBackground: semantics.color.background.
|
|
39
|
-
highlightedLabelColor: semantics.color.text.
|
|
38
|
+
highlightedBackground: semantics.color.background.muted,
|
|
39
|
+
highlightedLabelColor: semantics.color.text.base,
|
|
40
40
|
iconPadding: semantics.spacing.spaceMd,
|
|
41
41
|
lineHeight: semantics.lineHeight.standalone.base,
|
|
42
42
|
paddingHorizontal: semantics.spacing.spaceMd,
|
|
@@ -32,7 +32,7 @@ const dataPermissionLevels = {
|
|
|
32
32
|
levelColor: semantics.color.text.aiColor,
|
|
33
33
|
aiTextLeftGradientColor: semantics.color.background.aiTopGradient,
|
|
34
34
|
aiTextRightGradientColor: semantics.color.background.aiBottomGradient,
|
|
35
|
-
bodyPadding:
|
|
35
|
+
bodyPadding: "0rem",
|
|
36
36
|
contentContainerColor: semantics.color.background.elevatedSurface.base,
|
|
37
37
|
contentContainerBorderRadius: "0rem"
|
|
38
38
|
};
|
|
@@ -36,9 +36,9 @@ const menuItem = {
|
|
|
36
36
|
labelPadding: "2.25rem",
|
|
37
37
|
paddingVertical: semantics.spacing.spaceSm,
|
|
38
38
|
paddingHorizontal: semantics.spacing.spaceMd,
|
|
39
|
-
highlightedBackground: semantics.color.background.
|
|
39
|
+
highlightedBackground: semantics.color.background.muted,
|
|
40
40
|
selectedHighlightedBackground: semantics.color.background.interactive.action.primary.hover,
|
|
41
|
-
highlightedLabelColor: semantics.color.text.
|
|
42
|
-
highlightedLabelInfoColor: semantics.color.text.
|
|
41
|
+
highlightedLabelColor: semantics.color.text.base,
|
|
42
|
+
highlightedLabelInfoColor: semantics.color.text.muted
|
|
43
43
|
};
|
|
44
44
|
export default menuItem;
|
|
@@ -35,8 +35,8 @@ const optionsItem = {
|
|
|
35
35
|
fontSize: semantics.fontSize.textBase,
|
|
36
36
|
fontWeight: semantics.fontWeight.body.base,
|
|
37
37
|
fontWeightSelected: semantics.fontWeight.body.base,
|
|
38
|
-
highlightedBackground: semantics.color.background.
|
|
39
|
-
highlightedLabelColor: semantics.color.text.
|
|
38
|
+
highlightedBackground: semantics.color.background.muted,
|
|
39
|
+
highlightedLabelColor: semantics.color.text.base,
|
|
40
40
|
iconPadding: semantics.spacing.spaceMd,
|
|
41
41
|
lineHeight: semantics.lineHeight.standalone.base,
|
|
42
42
|
paddingHorizontal: semantics.spacing.spaceMd,
|
|
@@ -33,7 +33,7 @@ const dataPermissionLevels = {
|
|
|
33
33
|
levelColor: semantics.color.text.aiColor,
|
|
34
34
|
aiTextLeftGradientColor: semantics.color.background.aiTopGradient,
|
|
35
35
|
aiTextRightGradientColor: semantics.color.background.aiBottomGradient,
|
|
36
|
-
bodyPadding:
|
|
36
|
+
bodyPadding: "0rem",
|
|
37
37
|
contentContainerColor: semantics.color.background.elevatedSurface.base
|
|
38
38
|
};
|
|
39
39
|
export default dataPermissionLevels;
|
|
@@ -25,6 +25,7 @@ import semantics from "../semantics.js";
|
|
|
25
25
|
const sideNavBarNew = {
|
|
26
26
|
backgroundColor: semantics.color.background.elevatedSurface.base,
|
|
27
27
|
fill: semantics.color.icon.interactive.action.primaryOnColor.base,
|
|
28
|
+
borderColor: semantics.color.stroke.muted,
|
|
28
29
|
fontColor: semantics.color.text.base,
|
|
29
30
|
minimizedWidth: "3.75rem",
|
|
30
31
|
toggleTransition: "300ms",
|
|
@@ -41,7 +41,7 @@ const dataPermissionLevels = {
|
|
|
41
41
|
levelColor: _semantics.default.color.text.aiColor,
|
|
42
42
|
aiTextLeftGradientColor: _semantics.default.color.background.aiTopGradient,
|
|
43
43
|
aiTextRightGradientColor: _semantics.default.color.background.aiBottomGradient,
|
|
44
|
-
bodyPadding:
|
|
44
|
+
bodyPadding: "0rem",
|
|
45
45
|
contentContainerColor: _semantics.default.color.background.elevatedSurface.base
|
|
46
46
|
};
|
|
47
47
|
var _default = exports.default = dataPermissionLevels;
|
|
@@ -33,6 +33,7 @@ var _semantics = _interopRequireDefault(require("../semantics"));
|
|
|
33
33
|
const sideNavBarNew = {
|
|
34
34
|
backgroundColor: _semantics.default.color.background.elevatedSurface.base,
|
|
35
35
|
fill: _semantics.default.color.icon.interactive.action.primaryOnColor.base,
|
|
36
|
+
borderColor: _semantics.default.color.stroke.muted,
|
|
36
37
|
fontColor: _semantics.default.color.text.base,
|
|
37
38
|
minimizedWidth: "3.75rem",
|
|
38
39
|
toggleTransition: "300ms",
|
|
@@ -40,7 +40,7 @@ const dataPermissionLevels = {
|
|
|
40
40
|
levelColor: _semantics.default.color.text.aiColor,
|
|
41
41
|
aiTextLeftGradientColor: _semantics.default.color.background.aiTopGradient,
|
|
42
42
|
aiTextRightGradientColor: _semantics.default.color.background.aiBottomGradient,
|
|
43
|
-
bodyPadding:
|
|
43
|
+
bodyPadding: "0rem",
|
|
44
44
|
contentContainerColor: _semantics.default.color.background.elevatedSurface.base,
|
|
45
45
|
contentContainerBorderRadius: "0rem"
|
|
46
46
|
};
|
|
@@ -44,9 +44,9 @@ const menuItem = {
|
|
|
44
44
|
labelPadding: "2.25rem",
|
|
45
45
|
paddingVertical: _semantics.default.spacing.spaceSm,
|
|
46
46
|
paddingHorizontal: _semantics.default.spacing.spaceMd,
|
|
47
|
-
highlightedBackground: _semantics.default.color.background.
|
|
47
|
+
highlightedBackground: _semantics.default.color.background.muted,
|
|
48
48
|
selectedHighlightedBackground: _semantics.default.color.background.interactive.action.primary.hover,
|
|
49
|
-
highlightedLabelColor: _semantics.default.color.text.
|
|
50
|
-
highlightedLabelInfoColor: _semantics.default.color.text.
|
|
49
|
+
highlightedLabelColor: _semantics.default.color.text.base,
|
|
50
|
+
highlightedLabelInfoColor: _semantics.default.color.text.muted
|
|
51
51
|
};
|
|
52
52
|
var _default = exports.default = menuItem;
|
|
@@ -43,8 +43,8 @@ const optionsItem = {
|
|
|
43
43
|
fontSize: _semantics.default.fontSize.textBase,
|
|
44
44
|
fontWeight: _semantics.default.fontWeight.body.base,
|
|
45
45
|
fontWeightSelected: _semantics.default.fontWeight.body.base,
|
|
46
|
-
highlightedBackground: _semantics.default.color.background.
|
|
47
|
-
highlightedLabelColor: _semantics.default.color.text.
|
|
46
|
+
highlightedBackground: _semantics.default.color.background.muted,
|
|
47
|
+
highlightedLabelColor: _semantics.default.color.text.base,
|
|
48
48
|
iconPadding: _semantics.default.spacing.spaceMd,
|
|
49
49
|
lineHeight: _semantics.default.lineHeight.standalone.base,
|
|
50
50
|
paddingHorizontal: _semantics.default.spacing.spaceMd,
|
|
@@ -40,7 +40,7 @@ const dataPermissionLevels = {
|
|
|
40
40
|
levelColor: _semantics.default.color.text.aiColor,
|
|
41
41
|
aiTextLeftGradientColor: _semantics.default.color.background.aiTopGradient,
|
|
42
42
|
aiTextRightGradientColor: _semantics.default.color.background.aiBottomGradient,
|
|
43
|
-
bodyPadding:
|
|
43
|
+
bodyPadding: "0rem",
|
|
44
44
|
contentContainerColor: _semantics.default.color.background.elevatedSurface.base,
|
|
45
45
|
contentContainerBorderRadius: "0rem"
|
|
46
46
|
};
|
|
@@ -44,9 +44,9 @@ const menuItem = {
|
|
|
44
44
|
labelPadding: "2.25rem",
|
|
45
45
|
paddingVertical: _semantics.default.spacing.spaceSm,
|
|
46
46
|
paddingHorizontal: _semantics.default.spacing.spaceMd,
|
|
47
|
-
highlightedBackground: _semantics.default.color.background.
|
|
47
|
+
highlightedBackground: _semantics.default.color.background.muted,
|
|
48
48
|
selectedHighlightedBackground: _semantics.default.color.background.interactive.action.primary.hover,
|
|
49
|
-
highlightedLabelColor: _semantics.default.color.text.
|
|
50
|
-
highlightedLabelInfoColor: _semantics.default.color.text.
|
|
49
|
+
highlightedLabelColor: _semantics.default.color.text.base,
|
|
50
|
+
highlightedLabelInfoColor: _semantics.default.color.text.muted
|
|
51
51
|
};
|
|
52
52
|
var _default = exports.default = menuItem;
|
|
@@ -43,8 +43,8 @@ const optionsItem = {
|
|
|
43
43
|
fontSize: _semantics.default.fontSize.textBase,
|
|
44
44
|
fontWeight: _semantics.default.fontWeight.body.base,
|
|
45
45
|
fontWeightSelected: _semantics.default.fontWeight.body.base,
|
|
46
|
-
highlightedBackground: _semantics.default.color.background.
|
|
47
|
-
highlightedLabelColor: _semantics.default.color.text.
|
|
46
|
+
highlightedBackground: _semantics.default.color.background.muted,
|
|
47
|
+
highlightedLabelColor: _semantics.default.color.text.base,
|
|
48
48
|
iconPadding: _semantics.default.spacing.spaceMd,
|
|
49
49
|
lineHeight: _semantics.default.lineHeight.standalone.base,
|
|
50
50
|
paddingHorizontal: _semantics.default.spacing.spaceMd,
|
|
@@ -41,7 +41,7 @@ const dataPermissionLevels = {
|
|
|
41
41
|
levelColor: _semantics.default.color.text.aiColor,
|
|
42
42
|
aiTextLeftGradientColor: _semantics.default.color.background.aiTopGradient,
|
|
43
43
|
aiTextRightGradientColor: _semantics.default.color.background.aiBottomGradient,
|
|
44
|
-
bodyPadding:
|
|
44
|
+
bodyPadding: "0rem",
|
|
45
45
|
contentContainerColor: _semantics.default.color.background.elevatedSurface.base
|
|
46
46
|
};
|
|
47
47
|
var _default = exports.default = dataPermissionLevels;
|
|
@@ -33,6 +33,7 @@ var _semantics = _interopRequireDefault(require("../semantics"));
|
|
|
33
33
|
const sideNavBarNew = {
|
|
34
34
|
backgroundColor: _semantics.default.color.background.elevatedSurface.base,
|
|
35
35
|
fill: _semantics.default.color.icon.interactive.action.primaryOnColor.base,
|
|
36
|
+
borderColor: _semantics.default.color.stroke.muted,
|
|
36
37
|
fontColor: _semantics.default.color.text.base,
|
|
37
38
|
minimizedWidth: "3.75rem",
|
|
38
39
|
toggleTransition: "300ms",
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@instructure/ui-themes",
|
|
3
|
-
"version": "11.7.
|
|
3
|
+
"version": "11.7.1-snapshot-3",
|
|
4
4
|
"description": "A library of instructure themes",
|
|
5
5
|
"author": "Instructure, Inc. Engineering and Product Design",
|
|
6
6
|
"module": "./es/index.js",
|
|
@@ -17,11 +17,11 @@
|
|
|
17
17
|
"@testing-library/jest-dom": "^6.6.3",
|
|
18
18
|
"@testing-library/react": "15.0.7",
|
|
19
19
|
"vitest": "^3.2.2",
|
|
20
|
-
"@instructure/ui-babel-preset": "11.7.
|
|
20
|
+
"@instructure/ui-babel-preset": "11.7.1-snapshot-3"
|
|
21
21
|
},
|
|
22
22
|
"dependencies": {
|
|
23
23
|
"@tokens-studio/types": "^0.5.2",
|
|
24
|
-
"@instructure/shared-types": "11.7.
|
|
24
|
+
"@instructure/shared-types": "11.7.1-snapshot-3"
|
|
25
25
|
},
|
|
26
26
|
"publishConfig": {
|
|
27
27
|
"access": "public"
|
|
@@ -36,7 +36,7 @@ const dataPermissionLevels: DataPermissionLevels = {
|
|
|
36
36
|
levelColor: semantics.color.text.aiColor,
|
|
37
37
|
aiTextLeftGradientColor: semantics.color.background.aiTopGradient,
|
|
38
38
|
aiTextRightGradientColor: semantics.color.background.aiBottomGradient,
|
|
39
|
-
bodyPadding:
|
|
39
|
+
bodyPadding: "0rem",
|
|
40
40
|
contentContainerColor: semantics.color.background.elevatedSurface.base,
|
|
41
41
|
}
|
|
42
42
|
export default dataPermissionLevels
|
|
@@ -28,6 +28,7 @@ import semantics from "../semantics"
|
|
|
28
28
|
const sideNavBarNew: SideNavBarNew = {
|
|
29
29
|
backgroundColor: semantics.color.background.elevatedSurface.base,
|
|
30
30
|
fill: semantics.color.icon.interactive.action.primaryOnColor.base,
|
|
31
|
+
borderColor: semantics.color.stroke.muted,
|
|
31
32
|
fontColor: semantics.color.text.base,
|
|
32
33
|
minimizedWidth: "3.75rem",
|
|
33
34
|
toggleTransition: "300ms",
|
|
@@ -35,7 +35,7 @@ const dataPermissionLevels: DataPermissionLevels = {
|
|
|
35
35
|
levelColor: semantics.color.text.aiColor,
|
|
36
36
|
aiTextLeftGradientColor: semantics.color.background.aiTopGradient,
|
|
37
37
|
aiTextRightGradientColor: semantics.color.background.aiBottomGradient,
|
|
38
|
-
bodyPadding:
|
|
38
|
+
bodyPadding: "0rem",
|
|
39
39
|
contentContainerColor: semantics.color.background.elevatedSurface.base,
|
|
40
40
|
contentContainerBorderRadius: "0rem",
|
|
41
41
|
}
|
|
@@ -39,9 +39,9 @@ const menuItem: MenuItem = {
|
|
|
39
39
|
labelPadding: "2.25rem",
|
|
40
40
|
paddingVertical: semantics.spacing.spaceSm,
|
|
41
41
|
paddingHorizontal: semantics.spacing.spaceMd,
|
|
42
|
-
highlightedBackground: semantics.color.background.
|
|
42
|
+
highlightedBackground: semantics.color.background.muted,
|
|
43
43
|
selectedHighlightedBackground: semantics.color.background.interactive.action.primary.hover,
|
|
44
|
-
highlightedLabelColor: semantics.color.text.
|
|
45
|
-
highlightedLabelInfoColor: semantics.color.text.
|
|
44
|
+
highlightedLabelColor: semantics.color.text.base,
|
|
45
|
+
highlightedLabelInfoColor: semantics.color.text.muted,
|
|
46
46
|
}
|
|
47
47
|
export default menuItem
|
|
@@ -38,8 +38,8 @@ const optionsItem: OptionsItem = {
|
|
|
38
38
|
fontSize: semantics.fontSize.textBase,
|
|
39
39
|
fontWeight: semantics.fontWeight.body.base,
|
|
40
40
|
fontWeightSelected: semantics.fontWeight.body.base,
|
|
41
|
-
highlightedBackground: semantics.color.background.
|
|
42
|
-
highlightedLabelColor: semantics.color.text.
|
|
41
|
+
highlightedBackground: semantics.color.background.muted,
|
|
42
|
+
highlightedLabelColor: semantics.color.text.base,
|
|
43
43
|
iconPadding: semantics.spacing.spaceMd,
|
|
44
44
|
lineHeight: semantics.lineHeight.standalone.base,
|
|
45
45
|
paddingHorizontal: semantics.spacing.spaceMd,
|
|
@@ -35,7 +35,7 @@ const dataPermissionLevels: DataPermissionLevels = {
|
|
|
35
35
|
levelColor: semantics.color.text.aiColor,
|
|
36
36
|
aiTextLeftGradientColor: semantics.color.background.aiTopGradient,
|
|
37
37
|
aiTextRightGradientColor: semantics.color.background.aiBottomGradient,
|
|
38
|
-
bodyPadding:
|
|
38
|
+
bodyPadding: "0rem",
|
|
39
39
|
contentContainerColor: semantics.color.background.elevatedSurface.base,
|
|
40
40
|
contentContainerBorderRadius: "0rem",
|
|
41
41
|
}
|
|
@@ -39,9 +39,9 @@ const menuItem: MenuItem = {
|
|
|
39
39
|
labelPadding: "2.25rem",
|
|
40
40
|
paddingVertical: semantics.spacing.spaceSm,
|
|
41
41
|
paddingHorizontal: semantics.spacing.spaceMd,
|
|
42
|
-
highlightedBackground: semantics.color.background.
|
|
42
|
+
highlightedBackground: semantics.color.background.muted,
|
|
43
43
|
selectedHighlightedBackground: semantics.color.background.interactive.action.primary.hover,
|
|
44
|
-
highlightedLabelColor: semantics.color.text.
|
|
45
|
-
highlightedLabelInfoColor: semantics.color.text.
|
|
44
|
+
highlightedLabelColor: semantics.color.text.base,
|
|
45
|
+
highlightedLabelInfoColor: semantics.color.text.muted,
|
|
46
46
|
}
|
|
47
47
|
export default menuItem
|
|
@@ -38,8 +38,8 @@ const optionsItem: OptionsItem = {
|
|
|
38
38
|
fontSize: semantics.fontSize.textBase,
|
|
39
39
|
fontWeight: semantics.fontWeight.body.base,
|
|
40
40
|
fontWeightSelected: semantics.fontWeight.body.base,
|
|
41
|
-
highlightedBackground: semantics.color.background.
|
|
42
|
-
highlightedLabelColor: semantics.color.text.
|
|
41
|
+
highlightedBackground: semantics.color.background.muted,
|
|
42
|
+
highlightedLabelColor: semantics.color.text.base,
|
|
43
43
|
iconPadding: semantics.spacing.spaceMd,
|
|
44
44
|
lineHeight: semantics.lineHeight.standalone.base,
|
|
45
45
|
paddingHorizontal: semantics.spacing.spaceMd,
|
|
@@ -36,7 +36,7 @@ const dataPermissionLevels: DataPermissionLevels = {
|
|
|
36
36
|
levelColor: semantics.color.text.aiColor,
|
|
37
37
|
aiTextLeftGradientColor: semantics.color.background.aiTopGradient,
|
|
38
38
|
aiTextRightGradientColor: semantics.color.background.aiBottomGradient,
|
|
39
|
-
bodyPadding:
|
|
39
|
+
bodyPadding: "0rem",
|
|
40
40
|
contentContainerColor: semantics.color.background.elevatedSurface.base,
|
|
41
41
|
}
|
|
42
42
|
export default dataPermissionLevels
|
|
@@ -28,6 +28,7 @@ import semantics from "../semantics"
|
|
|
28
28
|
const sideNavBarNew: SideNavBarNew = {
|
|
29
29
|
backgroundColor: semantics.color.background.elevatedSurface.base,
|
|
30
30
|
fill: semantics.color.icon.interactive.action.primaryOnColor.base,
|
|
31
|
+
borderColor: semantics.color.stroke.muted,
|
|
31
32
|
fontColor: semantics.color.text.base,
|
|
32
33
|
minimizedWidth: "3.75rem",
|
|
33
34
|
toggleTransition: "300ms",
|
|
@@ -1813,10 +1813,10 @@ $instui-canvas-new-theme-components-menu-item-line-height: 1.25rem;
|
|
|
1813
1813
|
$instui-canvas-new-theme-components-menu-item-label-padding: 2.25rem;
|
|
1814
1814
|
$instui-canvas-new-theme-components-menu-item-padding-vertical: 0.5rem;
|
|
1815
1815
|
$instui-canvas-new-theme-components-menu-item-padding-horizontal: 0.75rem;
|
|
1816
|
-
$instui-canvas-new-theme-components-menu-item-highlighted-background: #
|
|
1816
|
+
$instui-canvas-new-theme-components-menu-item-highlighted-background: #F2F4F5;
|
|
1817
1817
|
$instui-canvas-new-theme-components-menu-item-selected-highlighted-background: #2369A4;
|
|
1818
|
-
$instui-canvas-new-theme-components-menu-item-highlighted-label-color: #
|
|
1819
|
-
$instui-canvas-new-theme-components-menu-item-highlighted-label-info-color: #
|
|
1818
|
+
$instui-canvas-new-theme-components-menu-item-highlighted-label-color: #273540;
|
|
1819
|
+
$instui-canvas-new-theme-components-menu-item-highlighted-label-info-color: #576773;
|
|
1820
1820
|
$instui-canvas-new-theme-components-menu-separator-background: #8D959F;
|
|
1821
1821
|
$instui-canvas-new-theme-components-menu-separator-height: 0.0625rem;
|
|
1822
1822
|
$instui-canvas-new-theme-components-menu-separator-margin-vertical: 0rem;
|
|
@@ -2096,8 +2096,8 @@ $instui-canvas-new-theme-components-options-item-font-family: Lato, "Helvetica N
|
|
|
2096
2096
|
$instui-canvas-new-theme-components-options-item-font-size: 1rem;
|
|
2097
2097
|
$instui-canvas-new-theme-components-options-item-font-weight: 400;
|
|
2098
2098
|
$instui-canvas-new-theme-components-options-item-font-weight-selected: 400;
|
|
2099
|
-
$instui-canvas-new-theme-components-options-item-highlighted-background: #
|
|
2100
|
-
$instui-canvas-new-theme-components-options-item-highlighted-label-color: #
|
|
2099
|
+
$instui-canvas-new-theme-components-options-item-highlighted-background: #F2F4F5;
|
|
2100
|
+
$instui-canvas-new-theme-components-options-item-highlighted-label-color: #273540;
|
|
2101
2101
|
$instui-canvas-new-theme-components-options-item-icon-padding: 0.75rem;
|
|
2102
2102
|
$instui-canvas-new-theme-components-options-item-line-height: 125%;
|
|
2103
2103
|
$instui-canvas-new-theme-components-options-item-padding-horizontal: 0.75rem;
|
|
@@ -2287,7 +2287,7 @@ $instui-canvas-new-theme-components-data-permission-levels-permission-title-bott
|
|
|
2287
2287
|
$instui-canvas-new-theme-components-data-permission-levels-level-color: #8A49A7;
|
|
2288
2288
|
$instui-canvas-new-theme-components-data-permission-levels-ai-text-left-gradient-color: #9E58BD;
|
|
2289
2289
|
$instui-canvas-new-theme-components-data-permission-levels-ai-text-right-gradient-color: #00828E;
|
|
2290
|
-
$instui-canvas-new-theme-components-data-permission-levels-body-padding:
|
|
2290
|
+
$instui-canvas-new-theme-components-data-permission-levels-body-padding: 0rem;
|
|
2291
2291
|
$instui-canvas-new-theme-components-data-permission-levels-content-container-color: #ffffff;
|
|
2292
2292
|
$instui-canvas-new-theme-components-data-permission-levels-content-container-border-radius: 0rem;
|
|
2293
2293
|
$instui-canvas-new-theme-components-nutrition-facts-border-radius: 0.25rem;
|
|
@@ -2560,6 +2560,7 @@ $instui-canvas-new-theme-components-side-nav-bar-new-box-shadow-1-color: #000000
|
|
|
2560
2560
|
$instui-canvas-new-theme-components-side-nav-bar-new-box-shadow-1-type: dropShadow;
|
|
2561
2561
|
$instui-canvas-new-theme-components-side-nav-bar-new-border-radius: 0rem;
|
|
2562
2562
|
$instui-canvas-new-theme-components-side-nav-bar-new-minimized-border-radius: 0rem;
|
|
2563
|
+
$instui-canvas-new-theme-components-side-nav-bar-new-border-color: #8D959F;
|
|
2563
2564
|
$instui-canvas-new-theme-components-side-nav-bar-item-new-icon-wrapper-height: 2.25rem;
|
|
2564
2565
|
$instui-canvas-new-theme-components-side-nav-bar-item-new-border-radius: 0rem;
|
|
2565
2566
|
$instui-canvas-new-theme-components-side-nav-bar-item-new-background-color: transparent;
|