Skip to content

Commit

Permalink
better support for vita dark theme and update of libs
Browse files Browse the repository at this point in the history
  • Loading branch information
RonnyWeiss committed Oct 9, 2023
1 parent 4b02763 commit 9a9f56d
Show file tree
Hide file tree
Showing 18 changed files with 24,312 additions and 23,549 deletions.
2 changes: 1 addition & 1 deletion apexplugin.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "APEX Material BI Dashboard",
"version": "23.07.18",
"version": "23.10.09",
"description": "This plug-in allows to integrate a freely configurable dashboard into Oracle APEX.<p>It offers many display options, e.g. charts, lists, KPI cards, world map, tables, HTML, analog clock, calendar and much more. Each dashboard item can be customized, even at runtime without page submit!</p><p>The main advantage of the dashboard is that end-users of your APEX app can configure one or more dashboards at runtime without having to touch the region or page by a developer! This was not possible in APEX so far! Of course, the dashboard can also be used as a fixed region.</p><p>The plug-in requires an APEX 5.1.3 or newer and an Oracle 12c or newer. The Sample App requires an APEX 20.2 or newer. However, you can quickly install it in a free workspace on apex.oracle.com and then get started right away with the help of the Sample App!</p><p>The item dialog in the Sample App is just a very simplified example, of course in your application the respective data source (table, view, function...) and many setting options for the respective dashboard item can be offered there.</p><p>You can find a tutorial at<p>https:\/\/www.youtube.com/playlist?list=PL9daxiSwWyTbIm8fTa0ypeC6dFfMgXALq</p><p><b>Important clarification: My work in the development team of Oracle APEX is in no way related to my open source projects or the plug-ins here on apex.world! All plug-ins are built in my spare time and are not supported by Oracle!</b></p>",
"keywords": ["oracle", "apex", "plugin", "charts", "region", "responsive", "d3", "heatmap", "calendar", "cards", "html", "badge", "masonry", "map", "escape", "security", "sanitizer", "gauge", "donut", "line", "bar", "pie", "scatter", "list", "icon", "clock", "tables", "note", "editor", "images", "stack", "area"],
"homepage": "https://github.com/RonnyWeiss/APEX-Material-BI-Dashboard",
Expand Down
2 changes: 1 addition & 1 deletion build/bida-calendar.pkgd.min.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion build/bida-chart.pkgd.min.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion build/bida.pkgd.min.css

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion build/bida.pkgd.min.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion css/billboard.css
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
* billboard.js, JavaScript chart library
* https://naver.github.io/billboard.js/
*
* @version 3.9.1
* @version 3.9.4
*/
/*-- Graph Theme --*/
/*-- Default color pattern --*/
Expand Down
4 changes: 4 additions & 0 deletions css/charts.css
Original file line number Diff line number Diff line change
Expand Up @@ -55,3 +55,7 @@
.bb-color-pattern {
background-image: url("#2ac4b3;#feaf29;#ff617b;#73a2ef;#b180d0;#3064cf;#d0a45f;#8aaec7;#ef65a2;#8aaec7;");
}

.bb text, .bb .bb-button, .bb-chart-arcs .bb-chart-arcs-gauge-min, .bb-chart-arcs .bb-chart-arcs-gauge-max {
fill: var(--ut-body-text-color, #303030);
}
16 changes: 8 additions & 8 deletions css/clock.css
Original file line number Diff line number Diff line change
Expand Up @@ -4,25 +4,25 @@

.bida-clock-second-hand {
stroke-width: 2px;
stroke: #303030;
stroke: var(--ut-body-text-color, #303030);
}

.bida-clock-minute-hand {
stroke-width: 4px;
stroke: #303030;
stroke: var(--ut-body-text-color, #303030);
stroke-linecap: round;
}

.bida-clock-hour-hand {
stroke-width: 6px;
stroke: #303030;
stroke: var(--ut-body-text-color, #303030);
stroke-linecap: round;
}

.bida-clock-hands-center {
stroke-width: 3px;
stroke: #303030;
fill: #303030;
stroke: var(--ut-body-text-color, #303030);
fill: var(--ut-body-text-color, #303030);
}

.bida-clock-second-tick {
Expand All @@ -43,19 +43,19 @@

.bida-clock-hour-label {
font-size: inherit;
fill: #303030;
fill: var(--ut-body-text-color, #303030);
font-weight: 600;
}

.bida-clock-second-label {
font-size: inherit;
fill: #707070;
fill: var(--ut-body-text-color, #303030);
}

.bida-clock-label,
.bida-clock-label2 {
font-size: inherit;
fill: #303030;
fill: var(--ut-body-text-color, #303030);
font-weight: 600;
}

Expand Down
23,997 changes: 12,259 additions & 11,738 deletions demoApp/Demo_App.sql

Large diffs are not rendered by default.

2 changes: 2 additions & 0 deletions demoApp/ddl/packages.sql
Original file line number Diff line number Diff line change
Expand Up @@ -675,6 +675,8 @@ create or replace PACKAGE BODY PKG_DASHBOARD_ITEM_DATA AS
'gaugeFullCircle' VALUE 0,
/* optional - Set title in the center of the gauge */
'gaugeTitle' VALUE NULL,
/* optional - Set if axis labels are shown at the bottom of the gauge */
'gaugeAxisLabels' VALUE NULL,
/* optional - Set length of transitions [number] */
'transitionDuration' VALUE NULL,
/* optional - Set Charts should show absolute values e.g. pie, gauge and donut [sqlbool (1,0)] */
Expand Down
3 changes: 3 additions & 0 deletions index.html
Original file line number Diff line number Diff line change
Expand Up @@ -148,6 +148,9 @@
"right": 20,
"top": 10
},
"gauge": {
"axisLabels": false
},
"rotateAxis": false,
"showDataLabels": false,
"showDataPoints": true,
Expand Down
11 changes: 6 additions & 5 deletions indexRaw.html
Original file line number Diff line number Diff line change
Expand Up @@ -163,8 +163,9 @@
"type": "single",
"width": null,
"arcMinWidth": null,
"fullCircle": false,
"title": null
"fullCircle": true,
"title": null,
"axisLabels": false
},
"grid": {
"x": true,
Expand All @@ -176,10 +177,10 @@
"show": true
},
"padding": {
"bottom": 0,
"bottom": null,
"left": null,
"right": 20,
"top": 10
"right": null,
"top": null
},
"rotateAxis": false,
"showDataLabels": false,
Expand Down
Loading

0 comments on commit 9a9f56d

Please sign in to comment.