opus-react 0.2.8 → 0.2.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/dist/index.cjs +1254 -1105
- package/dist/index.cjs.map +1 -1
- package/dist/index.css +68 -0
- package/dist/index.css.map +1 -1
- package/dist/index.d.cts +17 -1
- package/dist/index.d.ts +17 -1
- package/dist/index.js +1176 -1028
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
package/dist/index.css
CHANGED
|
@@ -1869,6 +1869,74 @@
|
|
|
1869
1869
|
font-size: .8rem;
|
|
1870
1870
|
}
|
|
1871
1871
|
|
|
1872
|
+
/* components/fields/CountryPickerField/CountryPickerField.module.css */
|
|
1873
|
+
.opus_O7qqfR_root {
|
|
1874
|
+
position: relative;
|
|
1875
|
+
}
|
|
1876
|
+
|
|
1877
|
+
.opus_O7qqfR_triggerValue {
|
|
1878
|
+
text-overflow: ellipsis;
|
|
1879
|
+
white-space: nowrap;
|
|
1880
|
+
align-items: center;
|
|
1881
|
+
gap: 8px;
|
|
1882
|
+
min-width: 0;
|
|
1883
|
+
display: inline-flex;
|
|
1884
|
+
overflow: hidden;
|
|
1885
|
+
}
|
|
1886
|
+
|
|
1887
|
+
.opus_O7qqfR_flag {
|
|
1888
|
+
width: 20px;
|
|
1889
|
+
height: 15px;
|
|
1890
|
+
box-shadow: 0 0 0 1px color-mix(in srgb, var(--opus-border-strong) 70%, transparent);
|
|
1891
|
+
background-position: center;
|
|
1892
|
+
background-size: cover;
|
|
1893
|
+
border-radius: 2px;
|
|
1894
|
+
flex-shrink: 0;
|
|
1895
|
+
}
|
|
1896
|
+
|
|
1897
|
+
.opus_O7qqfR_option {
|
|
1898
|
+
width: 100%;
|
|
1899
|
+
color: var(--opus-text);
|
|
1900
|
+
text-align: left;
|
|
1901
|
+
cursor: pointer;
|
|
1902
|
+
background: none;
|
|
1903
|
+
border: 0;
|
|
1904
|
+
align-items: center;
|
|
1905
|
+
gap: 10px;
|
|
1906
|
+
padding: 8px 10px;
|
|
1907
|
+
font-size: .82rem;
|
|
1908
|
+
display: flex;
|
|
1909
|
+
}
|
|
1910
|
+
|
|
1911
|
+
.opus_O7qqfR_option:hover {
|
|
1912
|
+
background: color-mix(in srgb, var(--opus-accent-soft) 65%, transparent);
|
|
1913
|
+
}
|
|
1914
|
+
|
|
1915
|
+
.opus_O7qqfR_optionActive {
|
|
1916
|
+
background: var(--opus-accent-soft);
|
|
1917
|
+
color: var(--opus-accent);
|
|
1918
|
+
}
|
|
1919
|
+
|
|
1920
|
+
.opus_O7qqfR_optionLabel {
|
|
1921
|
+
text-overflow: ellipsis;
|
|
1922
|
+
white-space: nowrap;
|
|
1923
|
+
flex: 1;
|
|
1924
|
+
min-width: 0;
|
|
1925
|
+
overflow: hidden;
|
|
1926
|
+
}
|
|
1927
|
+
|
|
1928
|
+
.opus_O7qqfR_optionCode {
|
|
1929
|
+
color: var(--opus-muted);
|
|
1930
|
+
font-size: .78rem;
|
|
1931
|
+
}
|
|
1932
|
+
|
|
1933
|
+
.opus_O7qqfR_empty {
|
|
1934
|
+
color: var(--opus-muted);
|
|
1935
|
+
margin: 0;
|
|
1936
|
+
padding: 12px 10px;
|
|
1937
|
+
font-size: .8rem;
|
|
1938
|
+
}
|
|
1939
|
+
|
|
1872
1940
|
/* components/fields/TreeSelectField/TreeSelectField.module.css */
|
|
1873
1941
|
.opus_Mq6C00_root {
|
|
1874
1942
|
position: relative;
|