Skip to content

Commit

Permalink
fix some minors in cards item
Browse files Browse the repository at this point in the history
  • Loading branch information
RonnyWeiss committed Aug 9, 2021
1 parent 4789d22 commit 39ed33d
Show file tree
Hide file tree
Showing 8 changed files with 811 additions and 805 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": "1.0.0.18",
"version": "1.0.0.19",
"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>",
"keywords": ["oracle", "apex", "plugin", "charts", "region", "responsive", "d3"],
"homepage": "https://github.com/RonnyWeiss/APEX-Material-BI-Dashboard",
Expand Down
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/cards.css
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
.bida-item-card {
display: inline-block;
display: block;
position: relative;
width: 100%;
transition: all .7s ease-out;
Expand Down
811 changes: 407 additions & 404 deletions demoApp/Demo_App.sql

Large diffs are not rendered by default.

4 changes: 4 additions & 0 deletions demoApp/ddl/packages.sql
Original file line number Diff line number Diff line change
Expand Up @@ -862,12 +862,16 @@ create or replace PACKAGE BODY PKG_DASHBOARD_ITEM_DATA AS
'fa-apex',
'https://raw.githubusercontent.com/RonnyWeiss/APEX-Advent-Calendar/master/img/thumb/0' || ROUND(DBMS_RANDOM.VALUE(1,9)) || '.jpg'
),
/* optional - set text instead on an icon */
'iconText' VALUE NULL,
/* optional - icon color of the card [string] */
'iconColor' VALUE 'white',
/* optional - background color of the card [string] */
'iconBackColor' VALUE NULL,
/* optional - value that is shown [string] */
'value' VALUE ROUND(DBMS_RANDOM.VALUE(80,90))||' %',
/* optional - small value below value that is shown [string] */
'valueSmall' VALUE 'This is a smaller Text',
/* optional - footer text [string] */
'footer' VALUE 'This is a Dashboard KPI Card.',
/* optional - link on click [string] */
Expand Down
2 changes: 1 addition & 1 deletion js/script.js
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ var apexBIDashBoard = function (apex, $) {
var util = {
"featureDetails": {
name: "Material-BI-Dashboard",
scriptVersion: "1.0.0.18",
scriptVersion: "1.0.0.19",
utilVersion: "1.4",
url: "https://github.com/RonnyWeiss",
url2: "https://linktr.ee/ronny.weiss",
Expand Down
791 changes: 395 additions & 396 deletions region_type_plugin_apex_bi_dashboard_d3.sql

Large diffs are not rendered by default.

0 comments on commit 39ed33d

Please sign in to comment.