-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Deploying to gh-pages from @ b4db293 🚀
- Loading branch information
0 parents
commit ac2af78
Showing
955 changed files
with
2,208,357 additions
and
0 deletions.
There are no files selected for viewing
Empty file.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
import { r as reactExports } from "./index-DM9bPmif.js"; | ||
const Svg2D = (props) => { | ||
return reactExports.createElement( | ||
"svg", | ||
{ viewBox: "0 0 16 16", width: "1rem", height: "1rem", fill: "var(--iui-color-icon-muted, currentColor)", ...props }, | ||
reactExports.createElement("path", { d: "M12 5v.5a6.48 6.48 0 01-.18 1.5H14v7H7v-2.18a6.48 6.48 0 01-1.5.18H5v4h11V5z" }), | ||
reactExports.createElement("path", { d: "M5.5 2A3.5 3.5 0 112 5.5 3.5 3.5 0 015.5 2m0-2A5.5 5.5 0 1011 5.5 5.5 5.5 0 005.5 0" }) | ||
); | ||
}; | ||
export { | ||
Svg2D as S | ||
}; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
import { r as reactExports } from "./index-DM9bPmif.js"; | ||
const Svg3D = (props) => { | ||
return reactExports.createElement( | ||
"svg", | ||
{ viewBox: "0 0 16 16", width: "1rem", height: "1rem", fill: "var(--iui-color-icon-muted, currentColor)", ...props }, | ||
reactExports.createElement("path", { d: "M16 7v6l-5 3V8.84M5 7v6l5 3V8.84M10.31 5L5.65 6.11l5 1.89 4.84-1.89" }), | ||
reactExports.createElement("path", { d: "M4 6.5a1.2 1.2 0 01.92-1.16l3.8-1.64a1.33 1.33 0 01.28 0V3a11.07 11.07 0 01-4.5 1A11.11 11.11 0 010 3v8.85c0 .54 2.14 1 4 1.14zM4.5 0C7 0 9 .67 9 1.5S7 3 4.5 3 0 2.33 0 1.5 2 0 4.5 0z" }) | ||
); | ||
}; | ||
export { | ||
Svg3D as S | ||
}; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
import { r as reactExports } from "./index-DM9bPmif.js"; | ||
const SvgActivity = (props) => { | ||
return reactExports.createElement( | ||
"svg", | ||
{ viewBox: "0 0 32 32", width: "1rem", height: "1rem", fill: "var(--iui-color-icon-muted, currentColor)", ...props }, | ||
reactExports.createElement("path", { d: "M31 16H20.7l-2.2 5L14.2.8 9.5 16H1.4c-.6 0-1.1.4-1.3.9-.3 1.2.3 2.1 1.3 2.1h10.1l2.2-7.2 4 18.5L22.5 19h8.1c1 0 1.6-.9 1.3-2.1-.2-.5-.7-.9-1.3-.9" }) | ||
); | ||
}; | ||
export { | ||
SvgActivity as S | ||
}; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,233 @@ | ||
/*--------------------------------------------------------------------------------------------- | ||
* Copyright (c) Bentley Systems, Incorporated. All rights reserved. | ||
* See LICENSE.md in the project root for license terms and full copyright notice. | ||
*--------------------------------------------------------------------------------------------*/ | ||
/*--------------------------------------------------------------------------------------------- | ||
* Copyright (c) Bentley Systems, Incorporated. All rights reserved. | ||
* See LICENSE.md in the project root for license terms and full copyright notice. | ||
*--------------------------------------------------------------------------------------------*/ | ||
/* Backgrounds and strokes */ | ||
/** Text and icons */ | ||
/** Themed colors */ | ||
/** Static colors */ | ||
/** Widget Opacity */ | ||
/** Toolbar Opacity */ | ||
/*--------------------------------------------------------------------------------------------- | ||
* Copyright (c) Bentley Systems, Incorporated. All rights reserved. | ||
* See LICENSE.md in the project root for license terms and full copyright notice. | ||
*--------------------------------------------------------------------------------------------*/ | ||
/*--------------------------------------------------------------------------------------------- | ||
* Copyright (c) Bentley Systems, Incorporated. All rights reserved. | ||
* See LICENSE.md in the project root for license terms and full copyright notice. | ||
*--------------------------------------------------------------------------------------------*/ | ||
/* Backgrounds and strokes */ | ||
/** Text and icons */ | ||
/** Themed colors */ | ||
/** Static colors */ | ||
/** Widget Opacity */ | ||
/** Toolbar Opacity */ | ||
.component-examples { | ||
width: 100%; | ||
height: 100%; | ||
color: var(--buic-foreground-body); | ||
font-size: var(--iui-font-size-1); | ||
display: grid; | ||
grid-template-columns: 280px auto; | ||
column-gap: 8px; | ||
} | ||
.component-examples .component-examples-categories { | ||
background: var(--buic-background-dialog); | ||
height: 100%; | ||
overflow-y: auto; | ||
} | ||
@supports (-webkit-overflow-scrolling: touch) { | ||
.component-examples .component-examples-categories { | ||
overflow-y: scroll; /* overflow-y has to be scroll, not auto */ | ||
-webkit-overflow-scrolling: touch; | ||
} | ||
} | ||
.component-examples .component-examples-categories::-webkit-scrollbar { | ||
width: 12px; | ||
height: 12px; | ||
} | ||
.component-examples .component-examples-categories::-webkit-scrollbar-thumb { | ||
border-radius: 12px; | ||
background-color: var(--buic-background-scrollbar); | ||
background-clip: content-box; | ||
border-style: solid; | ||
border-color: transparent; | ||
border-width: 2px; | ||
} | ||
.component-examples .component-examples-categories::-webkit-scrollbar-thumb:hover { | ||
background-color: var(--buic-background-scrollbar-hover); | ||
} | ||
.component-examples .component-examples-categories::-webkit-scrollbar-corner { | ||
background-color: transparent; | ||
} | ||
.component-examples .component-examples-categories::-webkit-scrollbar-track-piece:corner-present { | ||
margin-bottom: -4px; | ||
margin-right: -4px; | ||
} | ||
.component-examples .component-examples-items { | ||
background: var(--buic-background-dialog); | ||
height: 100%; | ||
overflow-y: auto; | ||
display: flex; | ||
flex-direction: column; | ||
} | ||
@supports (-webkit-overflow-scrolling: touch) { | ||
.component-examples .component-examples-items { | ||
overflow-y: scroll; /* overflow-y has to be scroll, not auto */ | ||
-webkit-overflow-scrolling: touch; | ||
} | ||
} | ||
.component-examples .component-examples-items::-webkit-scrollbar { | ||
width: 12px; | ||
height: 12px; | ||
} | ||
.component-examples .component-examples-items::-webkit-scrollbar-thumb { | ||
border-radius: 12px; | ||
background-color: var(--buic-background-scrollbar); | ||
background-clip: content-box; | ||
border-style: solid; | ||
border-color: transparent; | ||
border-width: 2px; | ||
} | ||
.component-examples .component-examples-items::-webkit-scrollbar-thumb:hover { | ||
background-color: var(--buic-background-scrollbar-hover); | ||
} | ||
.component-examples .component-examples-items::-webkit-scrollbar-corner { | ||
background-color: transparent; | ||
} | ||
.component-examples .component-examples-items::-webkit-scrollbar-track-piece:corner-present { | ||
margin-bottom: -4px; | ||
margin-right: -4px; | ||
} | ||
.component-examples .component-examples-items .component-examples-item { | ||
display: flex; | ||
} | ||
.component-examples .component-examples-items .component-examples-item > .panel { | ||
display: flex; | ||
box-sizing: border-box; | ||
} | ||
.component-examples .component-examples-items .component-examples-item > .left-panel { | ||
flex: 1; | ||
flex-direction: column; | ||
min-width: 225px; | ||
padding: 15px; | ||
} | ||
.component-examples .component-examples-items .component-examples-item > .left-panel > .title { | ||
font-size: 18px; | ||
} | ||
.component-examples .component-examples-items .component-examples-item > .left-panel > .description { | ||
margin-top: 10px; | ||
font-size: 12px; | ||
color: var(--buic-foreground-muted); | ||
} | ||
.component-examples .component-examples-items .component-examples-item > .right-panel { | ||
flex: 4; | ||
align-items: center; | ||
min-width: 200px; | ||
padding: 15px; | ||
} | ||
.component-examples .component-examples-items .component-examples-items-separator { | ||
width: 100%; | ||
color: var(--buic-inputs-border); | ||
} | ||
.content-layout-fullscreen { | ||
height: calc(100vh - 80px); | ||
background: var(--buic-background-dialog); | ||
top: auto; | ||
} | ||
.test-split-pane-fullscreen { | ||
height: calc(100vh - 80px); | ||
top: auto; | ||
} | ||
.input-field-message { | ||
top: 400px; | ||
left: 520px; | ||
}/*--------------------------------------------------------------------------------------------- | ||
* Copyright (c) Bentley Systems, Incorporated. All rights reserved. | ||
* See LICENSE.md in the project root for license terms and full copyright notice. | ||
*--------------------------------------------------------------------------------------------*/ | ||
.uitestapp-popup-view-panel-container { | ||
width: 100%; | ||
height: 100%; | ||
overflow: hidden; | ||
box-sizing: border-box; | ||
}/*--------------------------------------------------------------------------------------------- | ||
* Copyright (c) Bentley Systems, Incorporated. All rights reserved. | ||
* See LICENSE.md in the project root for license terms and full copyright notice. | ||
*--------------------------------------------------------------------------------------------*/ | ||
.uifw-statusFields-displayStyle-selector { | ||
min-width: 10em; | ||
max-width: 20em; | ||
}/*--------------------------------------------------------------------------------------------- | ||
* Copyright (c) Bentley Systems, Incorporated. All rights reserved. | ||
* See LICENSE.md in the project root for license terms and full copyright notice. | ||
*--------------------------------------------------------------------------------------------*/ | ||
.sample-options { | ||
box-sizing: border-box; | ||
width: 100%; | ||
height: 100%; | ||
padding: 8px; | ||
display: grid; | ||
grid-template: min-content 1fr/1fr; | ||
gap: 16px; | ||
} | ||
.sample-options .sample-grid { | ||
display: flex; | ||
flex-wrap: wrap; | ||
row-gap: 16px; | ||
column-gap: 16px; | ||
align-items: center; | ||
} | ||
.sample-options .instructions { | ||
justify-self: start; | ||
align-self: end; | ||
}/*--------------------------------------------------------------------------------------------- | ||
* Copyright (c) Bentley Systems, Incorporated. All rights reserved. | ||
* See LICENSE.md in the project root for license terms and full copyright notice. | ||
*--------------------------------------------------------------------------------------------*/ | ||
.test-content-container { | ||
display: flex; | ||
height: 100%; | ||
width: 100%; | ||
justify-content: center; | ||
user-select: none; | ||
}/*--------------------------------------------------------------------------------------------- | ||
* Copyright (c) Bentley Systems, Incorporated. All rights reserved. | ||
* See LICENSE.md in the project root for license terms and full copyright notice. | ||
*--------------------------------------------------------------------------------------------*/ | ||
.test-popup-test-view { | ||
height: 100%; | ||
position: relative; | ||
}/*--------------------------------------------------------------------------------------------- | ||
* Copyright (c) Bentley Systems, Incorporated. All rights reserved. | ||
* See LICENSE.md in the project root for license terms and full copyright notice. | ||
*--------------------------------------------------------------------------------------------*/ | ||
.test-popout-dialog { | ||
box-sizing: border-box; | ||
height: 100%; | ||
margin: auto; | ||
width: 100%; | ||
overflow-y: scroll; | ||
}/*--------------------------------------------------------------------------------------------- | ||
* Copyright (c) Bentley Systems, Incorporated. All rights reserved. | ||
* See LICENSE.md in the project root for license terms and full copyright notice. | ||
*--------------------------------------------------------------------------------------------*/ | ||
.test-syncrhonized-test-view { | ||
height: 100%; | ||
position: relative; | ||
} | ||
.test-syncrhonized-test-view #floatingviewportcontainerdiv { | ||
height: calc(100% - 27px); | ||
} | ||
|
||
.no-views-message { | ||
height: 25%; | ||
margin: auto; | ||
width: 50%; | ||
padding: 25%; | ||
text-align: center; | ||
} |
Oops, something went wrong.