Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

ROU-4477: update version to 2.13.0 #381

Merged
merged 18 commits into from
Nov 9, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
18 commits
Select commit Hold shift + click to select a range
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ jobs:
- uses: actions/checkout@v2
- uses: actions/setup-node@v1
with:
node-version: "13.x"
node-version: "16.x"
- name: NPM install
run: npm install
- name: ESLINT
Expand Down
25 changes: 16 additions & 9 deletions docs/assets/highlight.css
Original file line number Diff line number Diff line change
@@ -1,15 +1,19 @@
:root {
--light-code-background: #FFFFFF;
--dark-code-background: #1E1E1E;
--light-code-background: #ffffff;
rugoncalves marked this conversation as resolved.
Show resolved Hide resolved
--dark-code-background: #1e1e1e;
}

@media (prefers-color-scheme: light) { :root {
--code-background: var(--light-code-background);
} }
@media (prefers-color-scheme: light) {
:root {
--code-background: var(--light-code-background);
}
}

@media (prefers-color-scheme: dark) { :root {
--code-background: var(--dark-code-background);
} }
@media (prefers-color-scheme: dark) {
:root {
--code-background: var(--dark-code-background);
}
}

:root[data-theme='light'] {
--code-background: var(--light-code-background);
Expand All @@ -19,4 +23,7 @@
--code-background: var(--dark-code-background);
}

pre, code { background: var(--code-background); }
pre,
code {
background: var(--code-background);
}
2,236 changes: 2,232 additions & 4 deletions docs/assets/main.js

Large diffs are not rendered by default.

4 changes: 3 additions & 1 deletion docs/assets/search.js
Original file line number Diff line number Diff line change
@@ -1 +1,3 @@
window.searchData = JSON.parse("{\"rows\":[],\"index\":{\"version\":\"2.3.9\",\"fields\":[\"name\",\"comment\"],\"fieldVectors\":[],\"invertedIndex\":[],\"pipeline\":[]}}");
window.searchData = JSON.parse(
'{"rows":[],"index":{"version":"2.3.9","fields":["name","comment"],"fieldVectors":[],"invertedIndex":[],"pipeline":[]}}'
);
36 changes: 18 additions & 18 deletions docs/assets/style.css
Original file line number Diff line number Diff line change
Expand Up @@ -170,7 +170,7 @@ body {
margin: 0;
}

:root[data-theme="light"] {
:root[data-theme='light'] {
--color-background: var(--light-color-background);
--color-background-secondary: var(--light-color-background-secondary);
--color-background-warning: var(--light-color-background-warning);
Expand Down Expand Up @@ -209,7 +209,7 @@ body {
--color-scheme: var(--light-color-scheme);
}

:root[data-theme="dark"] {
:root[data-theme='dark'] {
--color-background: var(--dark-color-background);
--color-background-secondary: var(--dark-color-background-secondary);
--color-background-warning: var(--dark-color-background-warning);
Expand Down Expand Up @@ -401,7 +401,7 @@ dd {
}
body {
background: var(--color-background);
font-family: "Segoe UI", sans-serif;
font-family: 'Segoe UI', sans-serif;
font-size: 16px;
color: var(--color-text);
}
Expand All @@ -413,7 +413,7 @@ a {
a:hover {
text-decoration: underline;
}
a.external[target="_blank"] {
a.external[target='_blank'] {
background-image: var(--external-icon);
background-position: top 3px right;
background-repeat: no-repeat;
Expand All @@ -422,7 +422,7 @@ a.external[target="_blank"] {

code,
pre {
font-family: Menlo, Monaco, Consolas, "Courier New", monospace;
font-family: Menlo, Monaco, Consolas, 'Courier New', monospace;
padding: 0.2em;
margin: 0;
font-size: 0.875rem;
Expand Down Expand Up @@ -502,7 +502,7 @@ blockquote {
display: inline;
}
.tsd-breadcrumb li:after {
content: " / ";
content: ' / ';
}

.tsd-comment-tags {
Expand Down Expand Up @@ -536,7 +536,7 @@ h1 code.tsd-tag:first-of-type {

dl.tsd-comment-tag-group dd:before,
dl.tsd-comment-tag-group dd:after {
content: " ";
content: ' ';
}
dl.tsd-comment-tag-group dd pre,
dl.tsd-comment-tag-group dd:after {
Expand Down Expand Up @@ -575,14 +575,14 @@ dl.tsd-comment-tag-group p {
-ms-user-select: none;
cursor: pointer;
}
.tsd-filter-input input[type="checkbox"] {
.tsd-filter-input input[type='checkbox'] {
cursor: pointer;
position: absolute;
width: 1.5em;
height: 1.5em;
opacity: 0;
}
.tsd-filter-input input[type="checkbox"]:disabled {
.tsd-filter-input input[type='checkbox']:disabled {
pointer-events: none;
}
.tsd-filter-input svg {
Expand All @@ -595,16 +595,16 @@ dl.tsd-comment-tag-group p {
Don't remove unless you know what you're doing. */
opacity: 0.99;
}
.tsd-filter-input input[type="checkbox"]:focus + svg {
.tsd-filter-input input[type='checkbox']:focus + svg {
transform: scale(0.95);
}
.tsd-filter-input input[type="checkbox"]:focus:not(:focus-visible) + svg {
.tsd-filter-input input[type='checkbox']:focus:not(:focus-visible) + svg {
transform: scale(1);
}
.tsd-checkbox-background {
fill: var(--color-accent);
}
input[type="checkbox"]:checked ~ svg .tsd-checkbox-checkmark {
input[type='checkbox']:checked ~ svg .tsd-checkbox-checkmark {
stroke: var(--color-text);
}
.tsd-filter-input input:disabled ~ svg > .tsd-checkbox-background {
Expand Down Expand Up @@ -965,7 +965,7 @@ a.tsd-index-link {
margin: 0 0 1rem 0;
padding: 1rem 0.5rem;
border: 1px solid var(--color-accent);
font-family: Menlo, Monaco, Consolas, "Courier New", monospace;
font-family: Menlo, Monaco, Consolas, 'Courier New', monospace;
font-size: 14px;
overflow-x: auto;
}
Expand Down Expand Up @@ -1092,10 +1092,10 @@ ul.tsd-type-parameter-list h5 {
.tsd-widget.menu {
display: none;
}
input[type="checkbox"] + .tsd-widget:before {
input[type='checkbox'] + .tsd-widget:before {
background-position: -120px 0;
}
input[type="checkbox"]:checked + .tsd-widget:before {
input[type='checkbox']:checked + .tsd-widget:before {
background-position: -160px 0;
}

Expand Down Expand Up @@ -1256,7 +1256,7 @@ img {
padding-bottom: 20px;
}
html .overlay {
content: "";
content: '';
display: block;
position: fixed;
z-index: 1023;
Expand Down Expand Up @@ -1309,7 +1309,7 @@ img {
.container-main {
display: grid;
grid-template-columns: minmax(0, 1fr) minmax(0, 2fr);
grid-template-areas: "sidebar content";
grid-template-areas: 'sidebar content';
margin: 2rem auto;
}

Expand Down Expand Up @@ -1338,7 +1338,7 @@ img {
@media (min-width: 1200px) {
.container-main {
grid-template-columns: minmax(0, 1fr) minmax(0, 2.5fr) minmax(0, 20rem);
grid-template-areas: "sidebar content toc";
grid-template-areas: 'sidebar content toc';
}

.col-sidebar {
Expand Down
Loading
Loading