Skip to content

Commit 97169a0

Browse files
committed
Release 9.1.0
1 parent 80a7cbf commit 97169a0

File tree

715 files changed

+30752
-18570
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

715 files changed

+30752
-18570
lines changed

README.md

+4-4
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# Oracle JET version 9.0.0
1+
# Oracle JET version 9.1.0
22

33
## About Oracle JET
44
Oracle JET is targeted at intermediate to advanced JavaScript developers working on client-side applications. It's a collection of open source JavaScript libraries along with a set of Oracle contributed JavaScript libraries that make it as simple and efficient as possible to build applications that consume and interact with Oracle products and services, especially Oracle Cloud services.
@@ -34,13 +34,13 @@ npm install -g @oracle/ojet-cli
3434
3535
ojet create <app name>
3636
```
37-
See the [Oracle JET Developer Guide](http://www.oracle.com/pls/topic/lookup?ctx=jet900&id=homepage) for complete installation details, including prerequisites.
37+
See the [Oracle JET Developer Guide](http://www.oracle.com/pls/topic/lookup?ctx=jet910&id=homepage) for complete installation details, including prerequisites.
3838

3939
## Related GitHub Projects
4040
All related projects on GitHub are associated under the [oracle-jet topic](https://github.com/search?q=topic%3Aoracle-jet+org%3Aoracle&type=Repositories).
4141

42-
## [Documentation](http://www.oracle.com/pls/topic/lookup?ctx=jet900&id=homepage)
43-
Oracle JET comes with a full [Developers Guide](http://www.oracle.com/pls/topic/lookup?ctx=jet900&id=homepage) to help with Getting Started and many common issues.
42+
## [Documentation](http://www.oracle.com/pls/topic/lookup?ctx=jet910&id=homepage)
43+
Oracle JET comes with a full [Developers Guide](http://www.oracle.com/pls/topic/lookup?ctx=jet910&id=homepage) to help with Getting Started and many common issues.
4444

4545
## [Contributing](https://github.com/oracle/oraclejet/blob/master/CONTRIBUTING.md)
4646
Oracle JET is an open source project. Pull Requests are currently not being accepted. See

THIRDPARTYLICENSE.txt

+8-8
Original file line numberDiff line numberDiff line change
@@ -27,20 +27,20 @@ js/libs/jquery/jqueryui-amd-1.12.1/sortable.js MIT
2727
js/libs/jquery/jqueryui-amd-1.12.1/widget.js MIT
2828
js/libs/knockout/knockout-3.5.1.js MIT
2929
js/libs/knockout/knockout-mapping-latest.js MIT
30-
js/libs/oj/v9.0.0/min/ojcspexpressionevaluator.js (cspexpressionevaluator.js) MIT
31-
js/libs/oj/v9.0.0/min/ojexpparser.js (expparser.js) MIT
32-
js/libs/oj/v9.0.0/min/ojknockout.js (knockout-fast-foreach.js) MIT
33-
js/libs/oj/v9.0.0/min/ojselectcombobox.js (Select2.js) Apache 2.0
34-
js/libs/oj/v9.0.0/min/ojtree.js (jsTree.js) MIT
35-
js/libs/oj/v9.0.0/ojL10n.js (requireJS i18n) MIT
30+
js/libs/oj/v9.1.0/min/ojcspexpressionevaluator.js (cspexpressionevaluator.js) MIT
31+
js/libs/oj/v9.1.0/min/ojexpparser.js (expparser.js) MIT
32+
js/libs/oj/v9.1.0/min/ojknockout.js (knockout-fast-foreach.js) MIT
33+
js/libs/oj/v9.1.0/min/ojselectcombobox.js (Select2.js) Apache 2.0
34+
js/libs/oj/v9.1.0/min/ojtree.js (jsTree.js) MIT
35+
js/libs/oj/v9.1.0/ojL10n.js (requireJS i18n) MIT
3636
js/libs/proj4js/dist/proj4.js Proj4js
3737
js/libs/require/require.js MIT
3838
js/libs/require/text.js MIT
3939
js/libs/require-css/css.min.js (require-css) MIT
4040
js/libs/webcomponents/custom-elements.min.js custom-elements
41-
scss/oj/v9.0.0/3rdparty/normalize/normalize.scss MIT
41+
scss/oj/v9.1.0/3rdparty/normalize/normalize.scss MIT
4242
js/libs/touchr/touchr.js MIT
43-
js/libs/oj/v9.0.0/min/ojvcomponent.js (petit-dom.js) MIT
43+
js/libs/oj/v9.1.0/min/ojvcomponent.js (petit-dom.js) MIT
4444

4545
/*!
4646
* chai

dist/css/alta-android/oj-alta-min.css

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/css/alta-android/oj-alta.css

+183-35
Original file line numberDiff line numberDiff line change
@@ -5392,6 +5392,9 @@ html[dir="rtl"] .oj-menu-item-end-icon {
53925392
.oj-hicontrast .oj-menu-item.oj-focus.oj-disabled > a {
53935393
outline: dotted 1px; }
53945394

5395+
.oj-hicontrast .oj-menu-item.oj-disabled > a {
5396+
border: dotted 1px; }
5397+
53955398
.oj-menu-option-defaults {
53965399
font-family: '{"animation":{"dropdown":{"open":{"effect":"zoomIn","transformOrigin":"#myPosition","duration":"0.25s"},"close":{"effect":"none"}},"sheet":{"open":{"effect":"slideIn","direction":"top","duration":"0.25s"},"close":{"effect":"slideOut","direction":"bottom","duration":"0.25s"}},"submenu":{"open":{"effect":"zoomIn","transformOrigin":"#myPosition","duration":"0.25s"},"close":{"effect":"none"}}}}'; }
53975400

@@ -10781,8 +10784,11 @@ oj-list-view:not(.oj-complete) {
1078110784

1078210785
/* Styling for item when display mode is card */
1078310786
.oj-listview-card {
10784-
margin-top: 8px;
10785-
margin-right: 8px; }
10787+
margin-top: 8px; }
10788+
html[dir="rtl"] .oj-listview-card {
10789+
margin-left: 8px; }
10790+
html:not([dir="rtl"]) .oj-listview-card {
10791+
margin-right: 8px; }
1078610792

1078710793
/* Styling for group item when display mode is card */
1078810794
.oj-listview-card-group {
@@ -10968,39 +10974,45 @@ oj-list-item-layout:not(.oj-complete) {
1096810974
display: flex;
1096910975
box-sizing: border-box;
1097010976
align-items: center;
10971-
min-height: 2.9375rem;
10972-
padding: 0 0.5rem; }
10977+
min-height: 2.9375rem; }
10978+
html:not([dir="rtl"]) .oj-listitemlayout {
10979+
padding-right: 0.5rem; }
10980+
html[dir="rtl"] .oj-listitemlayout {
10981+
padding-left: 0.5rem; }
1097310982

1097410983
.oj-listitemlayout-selector,
10975-
.oj-listitemlayout-avatar {
10984+
.oj-listitemlayout-image {
1097610985
display: flex;
1097710986
align-items: center;
1097810987
justify-content: center; }
1097910988

10980-
.oj-listitemlayout-content {
10981-
padding: 0.5rem 0;
10989+
.oj-listitemlayout-textslots {
10990+
flex: auto; }
10991+
10992+
.oj-listitemlayout-allslots {
1098210993
display: flex;
1098310994
flex: auto;
1098410995
align-items: center; }
1098510996

10986-
.oj-listitemlayout-textslots {
10987-
display: flex;
10988-
flex: auto; }
10989-
10990-
html:not([dir="rtl"]) .oj-listitemlayout-leading {
10991-
padding-right: 0.5rem; }
10997+
.oj-listitemlayout-vertical-padding {
10998+
padding-top: 0.5rem;
10999+
padding-bottom: 0.5rem; }
1099211000

10993-
html[dir="rtl"] .oj-listitemlayout-leading {
11001+
html:not([dir="rtl"]) .oj-listitemlayout-horizontal-padding {
1099411002
padding-left: 0.5rem; }
1099511003

10996-
.oj-listitemlayout-main {
10997-
flex: auto; }
11004+
html[dir="rtl"] .oj-listitemlayout-horizontal-padding {
11005+
padding-right: 0.5rem; }
1099811006

10999-
.oj-listitemlayout-meta {
11000-
justify-self: flex-end;
11001-
align-self: baseline; }
11007+
.oj-listitemlayout-action {
11008+
padding-top: 4px;
11009+
padding-bottom: 4px; }
11010+
html[dir="rtl"] .oj-listitemlayout-action {
11011+
padding-right: 0.5rem; }
11012+
html:not([dir="rtl"]) .oj-listitemlayout-action {
11013+
padding-left: 0.5rem; }
1100211014

11003-
.oj-listitemlayout-tertiary-padding {
11015+
.oj-listitemlayout-tertiary {
1100411016
padding-top: 2px; }
1100511017

1100611018
oj-indexer:not(.oj-complete) {
@@ -11674,6 +11686,10 @@ html .oj-form-control {
1167411686
.oj-text-field.oj-warning .oj-text-field-container {
1167511687
border-color: #f8ca75; }
1167611688

11689+
.oj-text-field.oj-disabled .oj-text-field-container {
11690+
background-color: transparent;
11691+
border-color: #b1b3b4; }
11692+
1167711693
.oj-text-field-label-inside.oj-text-field .oj-text-field-container {
1167811694
min-height: 2.75rem; }
1167911695

@@ -11737,6 +11753,51 @@ html .oj-form-control {
1173711753
.oj-text-field-label-inside .oj-text-field-middle {
1173811754
height: 100%; }
1173911755

11756+
.oj-text-field.oj-text-field-label-inside .oj-text-field-start,
11757+
.oj-text-field.oj-text-field-label-inside .oj-text-field-end {
11758+
display: flex;
11759+
justify-content: center;
11760+
align-items: center; }
11761+
11762+
html:not([dir="rtl"]) .oj-text-field .oj-text-field-start .oj-text-field-start-end-icon {
11763+
margin-left: 0; }
11764+
11765+
html[dir="rtl"] .oj-text-field .oj-text-field-start .oj-text-field-start-end-icon {
11766+
margin-right: 0; }
11767+
11768+
html:not([dir="rtl"]) .oj-text-field .oj-text-field-end .oj-text-field-start-end-icon {
11769+
margin-right: 0; }
11770+
11771+
html[dir="rtl"] .oj-text-field .oj-text-field-end .oj-text-field-start-end-icon {
11772+
margin-left: 0; }
11773+
11774+
.oj-text-field .oj-text-field-start .oj-button,
11775+
.oj-text-field .oj-text-field-end .oj-button {
11776+
margin-bottom: 0; }
11777+
11778+
html:not([dir="rtl"]) .oj-text-field.oj-read-only .oj-text-field-start .oj-text-field-start-end-icon {
11779+
margin-left: 0;
11780+
margin-right: 0; }
11781+
11782+
html[dir="rtl"] .oj-text-field.oj-read-only .oj-text-field-start .oj-text-field-start-end-icon {
11783+
margin-right: 0;
11784+
margin-left: 0; }
11785+
11786+
html:not([dir="rtl"]) .oj-text-field .oj-text-field-end .oj-text-field-start-end-icon {
11787+
margin-right: 0;
11788+
margin-left: 0; }
11789+
11790+
html[dir="rtl"] .oj-text-field .oj-text-field-end .oj-text-field-start-end-icon {
11791+
margin-left: 0;
11792+
margin-right: 0; }
11793+
11794+
.oj-text-field.oj-read-only:not(.oj-text-field-label-inline) .oj-text-field-start,
11795+
.oj-text-field.oj-read-only:not(.oj-text-field-label-inline) .oj-text-field-end {
11796+
min-height: 1.75rem; }
11797+
11798+
.oj-text-field.oj-disabled .oj-text-field-start .oj-text-field-start-end-icon {
11799+
color: #cbcccd; }
11800+
1174011801
.oj-text-field-counter {
1174111802
align-items: center;
1174211803
justify-content: center;
@@ -13626,16 +13687,6 @@ oj-text-area:not(.oj-complete) {
1362613687
.oj-form-control-full-width .oj-textarea-nocomp {
1362713688
max-width: 100%; }
1362813689

13629-
.oj-inputtext-start,
13630-
.oj-inputtext-end {
13631-
min-height: 2.75rem;
13632-
min-width: 2.75rem;
13633-
margin: unset; }
13634-
13635-
.oj-inputtext .oj-text-field-middle {
13636-
width: 100%;
13637-
flex: auto; }
13638-
1363913690
.oj-inputtext .oj-inputtext-clear-icon-btn {
1364013691
display: inline-flex;
1364113692
align-items: center;
@@ -14108,6 +14159,20 @@ html[dir="rtl"] .oj-buttonset-multi.oj-button-full-chrome .oj-inputnumber-button
1410814159
border-width: 0 0 2px 0;
1410914160
padding-bottom: 0; }
1411014161

14162+
/* highlight-text */
14163+
/* --------------------------------------------------------------- */
14164+
oj-highlight-text:not(.oj-complete) {
14165+
visibility: hidden; }
14166+
14167+
.oj-highlighttext {
14168+
display: inline; }
14169+
14170+
/*
14171+
* Applied to the matching text
14172+
*/
14173+
.oj-highlighttext-highlighter, .oj-listbox-highlighter {
14174+
font-weight: bold; }
14175+
1411114176
/* listbox */
1411214177
/* --------------------------------------------------------------- */
1411314178
/*
@@ -14179,7 +14244,6 @@ html[dir="rtl"] .oj-buttonset-multi.oj-button-full-chrome .oj-inputnumber-button
1417914244
.oj-listbox-result-label {
1418014245
line-height: 2rem;
1418114246
margin: 0;
14182-
cursor: pointer;
1418314247
min-height: 2rem;
1418414248
word-wrap: break-word;
1418514249
-webkit-touch-callout: none;
@@ -14473,9 +14537,6 @@ html[dir="rtl"] .oj-listbox-no-results {
1447314537
/*
1447414538
* Applied to the matching text in the dropdown options
1447514539
*/
14476-
.oj-listbox-highlighter {
14477-
font-weight: bold; }
14478-
1447914540
.oj-form-control-inherit:not(.oj-form-control-default) .oj-listbox-input {
1448014541
color: inherit;
1448114542
height: 100%;
@@ -15990,7 +16051,8 @@ oj-select:not(.oj-complete) {
1599016051
padding-right: 0; }
1599116052

1599216053
.oj-select-choice .oj-text-field-middle {
15993-
height: auto; }
16054+
height: auto;
16055+
min-width: 0; }
1599416056

1599516057
/* Styling for readonly mode */
1599616058
.oj-select.oj-read-only .oj-select-choice,
@@ -17419,6 +17481,10 @@ oj-color-palette:not(.oj-complete) {
1741917481
background-clip: padding-box;
1742017482
-webkit-print-color-adjust: exact; }
1742117483

17484+
.oj-colorpalette-listview-full {
17485+
width: 100%;
17486+
height: 100%; }
17487+
1742217488
.oj-colorpalette-swatch-none-icon {
1742317489
/* Color Hardcoded because this value is not related to theming and regardless of theme the swatch for none will be white */
1742417490
background-color: #ffffff;
@@ -25156,3 +25222,85 @@ oj-module:not(.oj-complete) {
2515625222

2515725223
oj-module {
2515825224
display: block; }
25225+
25226+
oj-action-card:not(.oj-complete) {
25227+
visibility: hidden; }
25228+
25229+
/* Styling for card entrance animation during initial load */
25230+
.oj-actioncard-initial-entrance-animation {
25231+
animation-name: actioncard-initial-fade-in;
25232+
animation-duration: 0.3s;
25233+
animation-timing-function: cubic-bezier(0, 0, 0.2, 1);
25234+
animation-iteration-count: 1;
25235+
animation-fill-mode: forwards; }
25236+
25237+
@keyframes actioncard-initial-fade-in {
25238+
0% {
25239+
visibility: visible;
25240+
opacity: 0;
25241+
transform: translateY(300px); }
25242+
100% {
25243+
visibility: visible;
25244+
opacity: 1;
25245+
transform: translateY(0); } }
25246+
25247+
/* Styling for card exit animation when data changed */
25248+
.oj-actioncard-initial-exit-animation {
25249+
animation-name: actioncard-initial-fade-out;
25250+
animation-duration: 0.3s;
25251+
animation-timing-function: cubic-bezier(0, 0, 0.2, 1);
25252+
animation-iteration-count: 1;
25253+
animation-fill-mode: forwards; }
25254+
25255+
@keyframes actioncard-initial-fade-out {
25256+
0% {
25257+
visibility: visible;
25258+
opacity: 1;
25259+
transform: translateY(0px); }
25260+
100% {
25261+
visibility: visible;
25262+
opacity: 0;
25263+
transform: translateY(300px); } }
25264+
25265+
/* Styling for card entrance animation during load more */
25266+
.oj-actioncard-loadmore-entrance-animation {
25267+
animation-name: actioncard-loadmore-fade-in;
25268+
animation-duration: 0.15s;
25269+
animation-iteration-count: 1;
25270+
animation-fill-mode: forwards; }
25271+
25272+
@keyframes actioncard-loadmore-fade-in {
25273+
0% {
25274+
visibility: visible;
25275+
opacity: 0; }
25276+
100% {
25277+
visibility: visible;
25278+
opacity: 1; } }
25279+
25280+
.oj-actioncard {
25281+
display: inline-flex;
25282+
cursor: pointer;
25283+
transform: scale(1);
25284+
transition: transform 0.15s cubic-bezier(0.4, 0, 0.2, 1);
25285+
box-shadow: 1px 1px 5px 0 hsla(0, 0%, 0%,0.4);
25286+
background-color: #ffffff;
25287+
border: 1px solid #e0e1e1;
25288+
border-radius: 2px;
25289+
box-sizing: border-box;
25290+
overflow: hidden;
25291+
position: relative; }
25292+
25293+
.oj-actioncard:hover,
25294+
.oj-actioncard.oj-active {
25295+
transform: scale(1.02);
25296+
transition: transform 0.15s cubic-bezier(0.4, 0, 0.2, 1); }
25297+
25298+
.oj-actioncard.oj-active {
25299+
box-shadow: 0 0 5px 0 hsla(0, 0%, 0%,0.2); }
25300+
25301+
.oj-actioncard:hover:not(.oj-active),
25302+
.oj-actioncard:focus:not(.oj-active) {
25303+
box-shadow: 1px 1px 10px 0 hsla(0, 0%, 0%,0.45); }
25304+
25305+
.oj-actioncard:not(.oj-focus-highlight):focus {
25306+
outline: none; }

dist/css/alta-ios/oj-alta-min.css

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)