@smilodon/core 1.3.5 → 1.3.9
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/README.md +404 -8
- package/dist/index.cjs +8 -3
- package/dist/index.cjs.map +1 -1
- package/dist/index.js +8 -3
- package/dist/index.js.map +1 -1
- package/dist/index.min.js +1 -1
- package/dist/index.min.js.map +1 -1
- package/dist/index.umd.js +8 -3
- package/dist/index.umd.js.map +1 -1
- package/dist/index.umd.min.js +1 -1
- package/dist/index.umd.min.js.map +1 -1
- package/package.json +1 -1
package/dist/index.umd.js
CHANGED
|
@@ -1628,7 +1628,7 @@
|
|
|
1628
1628
|
const container = document.createElement('div');
|
|
1629
1629
|
container.className = 'dropdown-arrow-container';
|
|
1630
1630
|
container.innerHTML = `
|
|
1631
|
-
<svg class="dropdown-arrow"
|
|
1631
|
+
<svg class="dropdown-arrow" viewBox="0 0 16 16" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
1632
1632
|
<path d="M4 6L8 10L12 6" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/>
|
|
1633
1633
|
</svg>
|
|
1634
1634
|
`;
|
|
@@ -1696,13 +1696,13 @@
|
|
|
1696
1696
|
transform: translateY(-50%);
|
|
1697
1697
|
width: var(--select-separator-width, 1px);
|
|
1698
1698
|
height: var(--select-separator-height, 60%);
|
|
1699
|
-
background: var(--select-separator-gradient, linear-gradient(
|
|
1699
|
+
background: var(--select-separator-bg, var(--select-separator-gradient, linear-gradient(
|
|
1700
1700
|
to bottom,
|
|
1701
1701
|
transparent 0%,
|
|
1702
1702
|
rgba(0, 0, 0, 0.1) 20%,
|
|
1703
1703
|
rgba(0, 0, 0, 0.1) 80%,
|
|
1704
1704
|
transparent 100%
|
|
1705
|
-
));
|
|
1705
|
+
)));
|
|
1706
1706
|
pointer-events: none;
|
|
1707
1707
|
z-index: 1;
|
|
1708
1708
|
}
|
|
@@ -1734,6 +1734,10 @@
|
|
|
1734
1734
|
transform: translateY(0);
|
|
1735
1735
|
}
|
|
1736
1736
|
|
|
1737
|
+
.dropdown-arrow path {
|
|
1738
|
+
stroke-width: var(--select-arrow-stroke-width, 2);
|
|
1739
|
+
}
|
|
1740
|
+
|
|
1737
1741
|
.dropdown-arrow-container:hover .dropdown-arrow {
|
|
1738
1742
|
color: var(--select-arrow-hover-color, #667eea);
|
|
1739
1743
|
}
|
|
@@ -1833,6 +1837,7 @@
|
|
|
1833
1837
|
user-select: none;
|
|
1834
1838
|
font-size: var(--select-option-font-size, 14px);
|
|
1835
1839
|
line-height: var(--select-option-line-height, 1.5);
|
|
1840
|
+
border: var(--select-option-border, none);
|
|
1836
1841
|
border-bottom: var(--select-option-border-bottom, none);
|
|
1837
1842
|
}
|
|
1838
1843
|
|