@unvired/turboforms-embed-sdk 1.0.15 → 1.0.16
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/unvired-form-sdk.html +18 -2
- package/dist/unvired-forms-sdk.js +22 -1
- package/package.json +1 -1
|
@@ -790,6 +790,15 @@ body {
|
|
|
790
790
|
box-sizing: border-box;
|
|
791
791
|
}
|
|
792
792
|
|
|
793
|
+
.build-version {
|
|
794
|
+
margin-right: auto;
|
|
795
|
+
font-size: 11px;
|
|
796
|
+
color: #888;
|
|
797
|
+
padding-left: 10px;
|
|
798
|
+
font-family: inherit;
|
|
799
|
+
pointer-events: none;
|
|
800
|
+
}
|
|
801
|
+
|
|
793
802
|
/* Tooltip (formerly inline) */
|
|
794
803
|
#moreTooltip {
|
|
795
804
|
display: none;
|
|
@@ -807,7 +816,6 @@ body {
|
|
|
807
816
|
gap: 0px;
|
|
808
817
|
}
|
|
809
818
|
|
|
810
|
-
#unvired-more-btn {}
|
|
811
819
|
|
|
812
820
|
/* Print and PDF Modes */
|
|
813
821
|
@media print {
|
|
@@ -40831,6 +40839,15 @@ body {
|
|
|
40831
40839
|
box-sizing: border-box;
|
|
40832
40840
|
}
|
|
40833
40841
|
|
|
40842
|
+
.build-version {
|
|
40843
|
+
margin-right: auto;
|
|
40844
|
+
font-size: 11px;
|
|
40845
|
+
color: #888;
|
|
40846
|
+
padding-left: 10px;
|
|
40847
|
+
font-family: inherit;
|
|
40848
|
+
pointer-events: none;
|
|
40849
|
+
}
|
|
40850
|
+
|
|
40834
40851
|
/* Tooltip (formerly inline) */
|
|
40835
40852
|
#moreTooltip {
|
|
40836
40853
|
display: none;
|
|
@@ -40848,7 +40865,6 @@ body {
|
|
|
40848
40865
|
gap: 0px;
|
|
40849
40866
|
}
|
|
40850
40867
|
|
|
40851
|
-
#unvired-more-btn {}
|
|
40852
40868
|
|
|
40853
40869
|
/* Print and PDF Modes */
|
|
40854
40870
|
@media print {
|
|
@@ -1766,6 +1766,15 @@ body {
|
|
|
1766
1766
|
box-sizing: border-box;
|
|
1767
1767
|
}
|
|
1768
1768
|
|
|
1769
|
+
.build-version {
|
|
1770
|
+
margin-right: auto;
|
|
1771
|
+
font-size: 11px;
|
|
1772
|
+
color: #888;
|
|
1773
|
+
padding-left: 10px;
|
|
1774
|
+
font-family: inherit;
|
|
1775
|
+
pointer-events: none;
|
|
1776
|
+
}
|
|
1777
|
+
|
|
1769
1778
|
/* Tooltip (formerly inline) */
|
|
1770
1779
|
#moreTooltip {
|
|
1771
1780
|
display: none;
|
|
@@ -1783,7 +1792,6 @@ body {
|
|
|
1783
1792
|
gap: 0px;
|
|
1784
1793
|
}
|
|
1785
1794
|
|
|
1786
|
-
#unvired-more-btn {}
|
|
1787
1795
|
|
|
1788
1796
|
/* Print and PDF Modes */
|
|
1789
1797
|
@media print {
|
|
@@ -27759,6 +27767,14 @@ select.ui.dropdown {
|
|
|
27759
27767
|
#sticky-footer {
|
|
27760
27768
|
flex-shrink: 0;
|
|
27761
27769
|
}
|
|
27770
|
+
.build-version {
|
|
27771
|
+
margin-right: auto;
|
|
27772
|
+
font-size: 11px;
|
|
27773
|
+
color: #888;
|
|
27774
|
+
padding-left: 10px;
|
|
27775
|
+
font-family: inherit;
|
|
27776
|
+
pointer-events: none;
|
|
27777
|
+
}
|
|
27762
27778
|
/* SDK Loader Styles */
|
|
27763
27779
|
#sdk-form-loader {
|
|
27764
27780
|
position: fixed;
|
|
@@ -27867,6 +27883,7 @@ select.ui.dropdown {
|
|
|
27867
27883
|
<div id="formio-cmt" style="margin-bottom: 20px;"></div>
|
|
27868
27884
|
</div>
|
|
27869
27885
|
<div id="sticky-footer">
|
|
27886
|
+
<div class="build-version">v@PACKAGE_NUMBER@</div>
|
|
27870
27887
|
<button class="ui button primary dataGrid-addRow" id="saveBtn" disabled="true" onclick="FormOnSave()">
|
|
27871
27888
|
<i class="icon save large"></i>Save
|
|
27872
27889
|
</button>
|
|
@@ -67907,6 +67924,10 @@ window.deleteAppDocument = async function(id) {
|
|
|
67907
67924
|
};
|
|
67908
67925
|
window.getAllDocuments = getAllDocuments;
|
|
67909
67926
|
window.hasDocuments = hasDocuments;
|
|
67927
|
+
function getBuildVersion() {
|
|
67928
|
+
return "@PACKAGE_NUMBER@";
|
|
67929
|
+
}
|
|
67910
67930
|
export {
|
|
67931
|
+
getBuildVersion,
|
|
67911
67932
|
loadUnviredForms
|
|
67912
67933
|
};
|
package/package.json
CHANGED