@utahdts/utah-design-system 1.9.0 → 1.9.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/css/6-components/_components-index.scss +1 -1
- package/css/6-components/base-components/navigation/_main-menu.scss +4 -4
- package/css/6-components/base-components/popups/_popups.scss +8 -0
- package/css/6-components/base-components/templates/{_documenation-template.scss → _documentation-template.scss} +2 -5
- package/dist/style.css +7 -5
- package/dist/utah-design-system.es.js +5 -5
- package/dist/utah-design-system.umd.js +5 -5
- package/package.json +5 -5
|
@@ -34,7 +34,7 @@ component specific, BEM (Block, Element, Modifier)
|
|
|
34
34
|
@use "base-components/popups/tooltips";
|
|
35
35
|
@use "base-components/popups/modal";
|
|
36
36
|
@use "base-components/popups/search-modal";
|
|
37
|
-
@use "base-components/templates/
|
|
37
|
+
@use "base-components/templates/documentation-template";
|
|
38
38
|
@use "base-components/templates/landing-page-template";
|
|
39
39
|
@use "base-components/text/block-quote";
|
|
40
40
|
@use "base-components/text/pre-code";
|
|
@@ -2,11 +2,11 @@
|
|
|
2
2
|
@use "../../../1-settings/color-swatches";
|
|
3
3
|
|
|
4
4
|
#{class-vars.$base-class} {
|
|
5
|
+
&.main-menu__outer {
|
|
6
|
+
position: relative;
|
|
7
|
+
z-index: 2500;
|
|
8
|
+
}
|
|
5
9
|
.main-menu {
|
|
6
|
-
&__outer {
|
|
7
|
-
position: relative;
|
|
8
|
-
z-index: 2000;
|
|
9
|
-
}
|
|
10
10
|
&__wrapper {
|
|
11
11
|
background-color: var(--gray-light-color);
|
|
12
12
|
display: flex;
|
|
@@ -50,7 +50,7 @@
|
|
|
50
50
|
}
|
|
51
51
|
}
|
|
52
52
|
}
|
|
53
|
-
&__side-panel-right{
|
|
53
|
+
&__side-panel-right {
|
|
54
54
|
position: sticky;
|
|
55
55
|
top: 0;
|
|
56
56
|
border-left: 1px solid var(--gray-border);
|
|
@@ -61,7 +61,6 @@
|
|
|
61
61
|
max-height: 100vh;
|
|
62
62
|
overflow: auto;
|
|
63
63
|
}
|
|
64
|
-
|
|
65
64
|
}
|
|
66
65
|
}
|
|
67
66
|
|
|
@@ -80,13 +79,11 @@
|
|
|
80
79
|
.documentation-template {
|
|
81
80
|
&__right-group {
|
|
82
81
|
flex-direction: column;
|
|
82
|
+
max-width: calc(100% - (2 * var(--spacing-xl)) - (var(--documentation-left-width) + 2px));
|
|
83
83
|
}
|
|
84
84
|
&__side-panel-left {
|
|
85
85
|
padding: var(--documentation-padding-small);
|
|
86
86
|
}
|
|
87
|
-
&__right-group {
|
|
88
|
-
max-width: calc(100% - (2 * var(--spacing-xl)) - (var(--documentation-left-width) + 2px));
|
|
89
|
-
}
|
|
90
87
|
&__content {
|
|
91
88
|
order: 2;
|
|
92
89
|
width: 100%;
|
package/dist/style.css
CHANGED
|
@@ -3354,9 +3354,9 @@ base color swatches for the design system
|
|
|
3354
3354
|
padding: 0;
|
|
3355
3355
|
}
|
|
3356
3356
|
|
|
3357
|
-
.utah-design-system
|
|
3357
|
+
.utah-design-system.main-menu__outer {
|
|
3358
3358
|
position: relative;
|
|
3359
|
-
z-index:
|
|
3359
|
+
z-index: 2500;
|
|
3360
3360
|
}
|
|
3361
3361
|
|
|
3362
3362
|
.utah-design-system .main-menu__wrapper {
|
|
@@ -4807,6 +4807,10 @@ variables and settings
|
|
|
4807
4807
|
border-left: 1px solid var(--gray-3-1-contrast);
|
|
4808
4808
|
}
|
|
4809
4809
|
|
|
4810
|
+
.utah-design-system .menu-item--mega-menu .popup__content {
|
|
4811
|
+
max-width: 720px;
|
|
4812
|
+
}
|
|
4813
|
+
|
|
4810
4814
|
/*
|
|
4811
4815
|
BEM standard: Block, Element, Modifier
|
|
4812
4816
|
Block: use dashes to separate words:
|
|
@@ -5076,13 +5080,11 @@ BEM standard: Block, Element, Modifier
|
|
|
5076
5080
|
@media screen and (max-width: 1024px) {
|
|
5077
5081
|
.utah-design-system .documentation-template__right-group {
|
|
5078
5082
|
flex-direction: column;
|
|
5083
|
+
max-width: calc(100% - 2 * var(--spacing-xl) - (var(--documentation-left-width) + 2px));
|
|
5079
5084
|
}
|
|
5080
5085
|
.utah-design-system .documentation-template__side-panel-left {
|
|
5081
5086
|
padding: var(--documentation-padding-small);
|
|
5082
5087
|
}
|
|
5083
|
-
.utah-design-system .documentation-template__right-group {
|
|
5084
|
-
max-width: calc(100% - 2 * var(--spacing-xl) - (var(--documentation-left-width) + 2px));
|
|
5085
|
-
}
|
|
5086
5088
|
.utah-design-system .documentation-template__content {
|
|
5087
5089
|
order: 2;
|
|
5088
5090
|
width: 100%;
|
|
@@ -32,7 +32,7 @@ const index = "";
|
|
|
32
32
|
const name = "@utahdts/utah-design-system";
|
|
33
33
|
const description = "Utah Design System React Library";
|
|
34
34
|
const displayName = "Utah Design System React Library";
|
|
35
|
-
const version$1 = "1.9.
|
|
35
|
+
const version$1 = "1.9.2";
|
|
36
36
|
const exports = {
|
|
37
37
|
".": {
|
|
38
38
|
"development-local": "./index.js",
|
|
@@ -89,7 +89,7 @@ const bugs = {
|
|
|
89
89
|
};
|
|
90
90
|
const homepage = "https://github.com/utahdts/utah-design-system";
|
|
91
91
|
const dependencies = {
|
|
92
|
-
"@utahdts/utah-design-system-header": "1.9.
|
|
92
|
+
"@utahdts/utah-design-system-header": "1.9.2",
|
|
93
93
|
lodash: "4.17.21",
|
|
94
94
|
"prop-types": "15.8.1",
|
|
95
95
|
react: "18.x",
|
|
@@ -99,12 +99,12 @@ const dependencies = {
|
|
|
99
99
|
uuid: "9.0.1"
|
|
100
100
|
};
|
|
101
101
|
const devDependencies = {
|
|
102
|
-
"@types/react": "18.2.
|
|
103
|
-
"@types/react-dom": "18.2.
|
|
102
|
+
"@types/react": "18.2.33",
|
|
103
|
+
"@types/react-dom": "18.2.14",
|
|
104
104
|
"@vitejs/plugin-react": "4.1.0",
|
|
105
105
|
"@vitest/coverage-istanbul": "0.34.6",
|
|
106
106
|
jsdom: "22.1.0",
|
|
107
|
-
sass: "1.69.
|
|
107
|
+
sass: "1.69.5",
|
|
108
108
|
vite: "4.5.0",
|
|
109
109
|
vitest: "0.34.6"
|
|
110
110
|
};
|
|
@@ -48,7 +48,7 @@ var __privateSet = (obj, member, value, setter) => {
|
|
|
48
48
|
const name = "@utahdts/utah-design-system";
|
|
49
49
|
const description = "Utah Design System React Library";
|
|
50
50
|
const displayName = "Utah Design System React Library";
|
|
51
|
-
const version$1 = "1.9.
|
|
51
|
+
const version$1 = "1.9.2";
|
|
52
52
|
const exports$1 = {
|
|
53
53
|
".": {
|
|
54
54
|
"development-local": "./index.js",
|
|
@@ -105,7 +105,7 @@ var __privateSet = (obj, member, value, setter) => {
|
|
|
105
105
|
};
|
|
106
106
|
const homepage = "https://github.com/utahdts/utah-design-system";
|
|
107
107
|
const dependencies = {
|
|
108
|
-
"@utahdts/utah-design-system-header": "1.9.
|
|
108
|
+
"@utahdts/utah-design-system-header": "1.9.2",
|
|
109
109
|
lodash: "4.17.21",
|
|
110
110
|
"prop-types": "15.8.1",
|
|
111
111
|
react: "18.x",
|
|
@@ -115,12 +115,12 @@ var __privateSet = (obj, member, value, setter) => {
|
|
|
115
115
|
uuid: "9.0.1"
|
|
116
116
|
};
|
|
117
117
|
const devDependencies = {
|
|
118
|
-
"@types/react": "18.2.
|
|
119
|
-
"@types/react-dom": "18.2.
|
|
118
|
+
"@types/react": "18.2.33",
|
|
119
|
+
"@types/react-dom": "18.2.14",
|
|
120
120
|
"@vitejs/plugin-react": "4.1.0",
|
|
121
121
|
"@vitest/coverage-istanbul": "0.34.6",
|
|
122
122
|
jsdom: "22.1.0",
|
|
123
|
-
sass: "1.69.
|
|
123
|
+
sass: "1.69.5",
|
|
124
124
|
vite: "4.5.0",
|
|
125
125
|
vitest: "0.34.6"
|
|
126
126
|
};
|
package/package.json
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
"name": "@utahdts/utah-design-system",
|
|
3
3
|
"description": "Utah Design System React Library",
|
|
4
4
|
"displayName": "Utah Design System React Library",
|
|
5
|
-
"version": "1.9.
|
|
5
|
+
"version": "1.9.2",
|
|
6
6
|
"exports": {
|
|
7
7
|
".": {
|
|
8
8
|
"development-local": "./index.js",
|
|
@@ -59,7 +59,7 @@
|
|
|
59
59
|
},
|
|
60
60
|
"homepage": "https://github.com/utahdts/utah-design-system",
|
|
61
61
|
"dependencies": {
|
|
62
|
-
"@utahdts/utah-design-system-header": "1.9.
|
|
62
|
+
"@utahdts/utah-design-system-header": "1.9.2",
|
|
63
63
|
"lodash": "4.17.21",
|
|
64
64
|
"prop-types": "15.8.1",
|
|
65
65
|
"react": "18.x",
|
|
@@ -69,12 +69,12 @@
|
|
|
69
69
|
"uuid": "9.0.1"
|
|
70
70
|
},
|
|
71
71
|
"devDependencies": {
|
|
72
|
-
"@types/react": "18.2.
|
|
73
|
-
"@types/react-dom": "18.2.
|
|
72
|
+
"@types/react": "18.2.33",
|
|
73
|
+
"@types/react-dom": "18.2.14",
|
|
74
74
|
"@vitejs/plugin-react": "4.1.0",
|
|
75
75
|
"@vitest/coverage-istanbul": "0.34.6",
|
|
76
76
|
"jsdom": "22.1.0",
|
|
77
|
-
"sass": "1.69.
|
|
77
|
+
"sass": "1.69.5",
|
|
78
78
|
"vite": "4.5.0",
|
|
79
79
|
"vitest": "0.34.6"
|
|
80
80
|
},
|