@kupola/kupola 1.5.4 → 1.6.0
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/css/components-ext.css +3 -3
- package/dist/css/components-ext.css +3 -3
- package/dist/kupola.cjs.js +17 -17
- package/dist/kupola.cjs.js.map +1 -1
- package/dist/kupola.esm.js +880 -843
- package/dist/kupola.esm.js.map +1 -1
- package/dist/kupola.umd.js +17 -17
- package/dist/kupola.umd.js.map +1 -1
- package/js/datepicker.js +8 -3
- package/js/dropdown.js +14 -3
- package/js/kupola-config.js +14 -0
- package/js/message.js +5 -2
- package/js/notification.js +5 -2
- package/js/select.js +9 -2
- package/js/tooltip.js +6 -2
- package/package.json +1 -1
package/css/components-ext.css
CHANGED
|
@@ -1682,7 +1682,7 @@
|
|
|
1682
1682
|
right: 0;
|
|
1683
1683
|
bottom: 0;
|
|
1684
1684
|
background-color: rgba(0, 0, 0, 0.5);
|
|
1685
|
-
z-index: 1000;
|
|
1685
|
+
z-index: var(--z-index-modal, 1000);
|
|
1686
1686
|
opacity: 0;
|
|
1687
1687
|
visibility: hidden;
|
|
1688
1688
|
transition: opacity 0.3s ease, visibility 0.3s ease;
|
|
@@ -1699,7 +1699,7 @@
|
|
|
1699
1699
|
bottom: 0;
|
|
1700
1700
|
width: 320px;
|
|
1701
1701
|
background-color: var(--bg-base-secondary);
|
|
1702
|
-
z-index:
|
|
1702
|
+
z-index: calc(var(--z-index-modal, 1000) + 1);
|
|
1703
1703
|
transform: translateX(-100%);
|
|
1704
1704
|
transition: transform 0.3s ease;
|
|
1705
1705
|
display: flex;
|
|
@@ -1769,7 +1769,7 @@
|
|
|
1769
1769
|
right: 0;
|
|
1770
1770
|
bottom: 0;
|
|
1771
1771
|
background-color: rgba(0, 0, 0, 0.5);
|
|
1772
|
-
z-index: 1000;
|
|
1772
|
+
z-index: var(--z-index-modal, 1000);
|
|
1773
1773
|
display: flex;
|
|
1774
1774
|
align-items: center;
|
|
1775
1775
|
justify-content: center;
|
|
@@ -1682,7 +1682,7 @@
|
|
|
1682
1682
|
right: 0;
|
|
1683
1683
|
bottom: 0;
|
|
1684
1684
|
background-color: rgba(0, 0, 0, 0.5);
|
|
1685
|
-
z-index: 1000;
|
|
1685
|
+
z-index: var(--z-index-modal, 1000);
|
|
1686
1686
|
opacity: 0;
|
|
1687
1687
|
visibility: hidden;
|
|
1688
1688
|
transition: opacity 0.3s ease, visibility 0.3s ease;
|
|
@@ -1699,7 +1699,7 @@
|
|
|
1699
1699
|
bottom: 0;
|
|
1700
1700
|
width: 320px;
|
|
1701
1701
|
background-color: var(--bg-base-secondary);
|
|
1702
|
-
z-index:
|
|
1702
|
+
z-index: calc(var(--z-index-modal, 1000) + 1);
|
|
1703
1703
|
transform: translateX(-100%);
|
|
1704
1704
|
transition: transform 0.3s ease;
|
|
1705
1705
|
display: flex;
|
|
@@ -1769,7 +1769,7 @@
|
|
|
1769
1769
|
right: 0;
|
|
1770
1770
|
bottom: 0;
|
|
1771
1771
|
background-color: rgba(0, 0, 0, 0.5);
|
|
1772
|
-
z-index: 1000;
|
|
1772
|
+
z-index: var(--z-index-modal, 1000);
|
|
1773
1773
|
display: flex;
|
|
1774
1774
|
align-items: center;
|
|
1775
1775
|
justify-content: center;
|