qpp-style 9.22.2 → 9.23.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/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "qpp-style",
|
|
3
|
-
"version": "9.
|
|
3
|
+
"version": "9.23.0",
|
|
4
4
|
"description": "Shared style guide across the QPP program.",
|
|
5
5
|
"main": "dist/index.js",
|
|
6
6
|
"homepage": "https://cmsgov.github.io/qpp-style",
|
|
@@ -59,7 +59,7 @@
|
|
|
59
59
|
"husky": "^8.0.2",
|
|
60
60
|
"jest": "^29.3.1",
|
|
61
61
|
"jest-environment-jsdom": "^29.3.1",
|
|
62
|
-
"jsonwebtoken": "^
|
|
62
|
+
"jsonwebtoken": "^9.0.0",
|
|
63
63
|
"mini-css-extract-plugin": "^2.7.2",
|
|
64
64
|
"moxios": "^0.4.0",
|
|
65
65
|
"preact": "^10.11.3",
|
|
@@ -102,12 +102,12 @@
|
|
|
102
102
|
"@material-ui/icons": "^4.11.2",
|
|
103
103
|
"@reach/portal": "^0.17.0",
|
|
104
104
|
"@reach/tooltip": "^0.17.0",
|
|
105
|
-
"@storybook/addon-storysource": "^6.5.
|
|
106
|
-
"@storybook/addon-viewport": "^6.5.
|
|
107
|
-
"@storybook/addons": "^6.5.
|
|
108
|
-
"@storybook/builder-webpack5": "^6.5.
|
|
109
|
-
"@storybook/manager-webpack5": "^6.5.
|
|
110
|
-
"@storybook/react": "^6.5.
|
|
105
|
+
"@storybook/addon-storysource": "^6.5.15",
|
|
106
|
+
"@storybook/addon-viewport": "^6.5.15",
|
|
107
|
+
"@storybook/addons": "^6.5.15",
|
|
108
|
+
"@storybook/builder-webpack5": "^6.5.15",
|
|
109
|
+
"@storybook/manager-webpack5": "^6.5.15",
|
|
110
|
+
"@storybook/react": "^6.5.15",
|
|
111
111
|
"ariakit": "^2.0.0-next.41",
|
|
112
112
|
"axios": "^1.2.1",
|
|
113
113
|
"cookie": "^0.5.0",
|
|
@@ -0,0 +1,74 @@
|
|
|
1
|
+
@import '../settings/index';
|
|
2
|
+
|
|
3
|
+
/* stylelint-disable selector-no-qualifying-type, max-nesting-depth */
|
|
4
|
+
.qpp-c-details {
|
|
5
|
+
> summary {
|
|
6
|
+
cursor: pointer;
|
|
7
|
+
list-style: none;
|
|
8
|
+
border: 1px solid transparent;
|
|
9
|
+
|
|
10
|
+
svg {
|
|
11
|
+
display: inline-block;
|
|
12
|
+
}
|
|
13
|
+
|
|
14
|
+
.qpp-c-details--icon-open {
|
|
15
|
+
display: none;
|
|
16
|
+
}
|
|
17
|
+
|
|
18
|
+
&:focus {
|
|
19
|
+
@include focus-ring;
|
|
20
|
+
}
|
|
21
|
+
}
|
|
22
|
+
|
|
23
|
+
> summary::marker,
|
|
24
|
+
> summary::-webkit-details-marker {
|
|
25
|
+
display: none;
|
|
26
|
+
}
|
|
27
|
+
|
|
28
|
+
&.qpp-c-details--header {
|
|
29
|
+
> summary {
|
|
30
|
+
background-color: $gray-04;
|
|
31
|
+
width: 100%;
|
|
32
|
+
padding: 1rem 2.5rem;
|
|
33
|
+
color: #242424;
|
|
34
|
+
font-size: 1.25rem;
|
|
35
|
+
font-weight: 400;
|
|
36
|
+
|
|
37
|
+
span {
|
|
38
|
+
&.qpp-c-details--icon,
|
|
39
|
+
&.qpp-c-details--icon-closed,
|
|
40
|
+
&.qpp-c-details--icon-open {
|
|
41
|
+
float: right;
|
|
42
|
+
font-weight: 500;
|
|
43
|
+
color: $blue-60;
|
|
44
|
+
font-size: 1rem;
|
|
45
|
+
line-height: 2;
|
|
46
|
+
}
|
|
47
|
+
}
|
|
48
|
+
|
|
49
|
+
&:focus {
|
|
50
|
+
@include focus-ring;
|
|
51
|
+
}
|
|
52
|
+
}
|
|
53
|
+
}
|
|
54
|
+
|
|
55
|
+
&[open] {
|
|
56
|
+
> summary {
|
|
57
|
+
.qpp-c-details--icon-closed {
|
|
58
|
+
display: none;
|
|
59
|
+
}
|
|
60
|
+
.qpp-c-details--icon-open {
|
|
61
|
+
display: inline-block;
|
|
62
|
+
}
|
|
63
|
+
}
|
|
64
|
+
}
|
|
65
|
+
}
|
|
66
|
+
|
|
67
|
+
.qpp-c-details-list {
|
|
68
|
+
@include unstyled-list;
|
|
69
|
+
|
|
70
|
+
li {
|
|
71
|
+
padding-bottom: $spacing-16;
|
|
72
|
+
}
|
|
73
|
+
}
|
|
74
|
+
/* stylelint-enable selector-no-qualifying-type, max-nesting-depth */
|