@tempots/beatui 0.46.0 → 0.48.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/dist/beatui.css +11 -1
- package/dist/beatui.tailwind.css +11 -1
- package/dist/index.cjs.js +4 -4
- package/dist/index.es.js +1889 -1845
- package/dist/types/components/auth/types.d.ts +2 -0
- package/dist/types/components/data/index.d.ts +1 -0
- package/dist/types/components/data/page-drop-zone.d.ts +30 -0
- package/package.json +1 -1
package/dist/beatui.css
CHANGED
|
@@ -2364,9 +2364,19 @@ a:focus-visible {
|
|
|
2364
2364
|
border: 1px solid var(--color-neutral-300);
|
|
2365
2365
|
}
|
|
2366
2366
|
|
|
2367
|
+
.bc-input-container .bc-color-input__swatch-container {
|
|
2368
|
+
display: flex;
|
|
2369
|
+
align-items: center;
|
|
2370
|
+
justify-content: end;
|
|
2371
|
+
padding-right: var(--spacing-base);
|
|
2372
|
+
}
|
|
2373
|
+
|
|
2367
2374
|
.bc-input-container .bc-color-input__swatch {
|
|
2368
|
-
width:
|
|
2375
|
+
width: 1.8rem;
|
|
2376
|
+
height: 1.8rem;
|
|
2369
2377
|
cursor: pointer;
|
|
2378
|
+
border: 1px solid var(--color-neutral-300);
|
|
2379
|
+
border-radius: 100%;
|
|
2370
2380
|
}
|
|
2371
2381
|
|
|
2372
2382
|
.bc-color-swatch-input__control--alpha {
|
package/dist/beatui.tailwind.css
CHANGED
|
@@ -2039,9 +2039,19 @@ a:focus-visible {
|
|
|
2039
2039
|
border: 1px solid var(--color-neutral-300);
|
|
2040
2040
|
}
|
|
2041
2041
|
|
|
2042
|
+
.bc-input-container .bc-color-input__swatch-container {
|
|
2043
|
+
display: flex;
|
|
2044
|
+
align-items: center;
|
|
2045
|
+
justify-content: end;
|
|
2046
|
+
padding-right: var(--spacing-base);
|
|
2047
|
+
}
|
|
2048
|
+
|
|
2042
2049
|
.bc-input-container .bc-color-input__swatch {
|
|
2043
|
-
width:
|
|
2050
|
+
width: 1.8rem;
|
|
2051
|
+
height: 1.8rem;
|
|
2044
2052
|
cursor: pointer;
|
|
2053
|
+
border: 1px solid var(--color-neutral-300);
|
|
2054
|
+
border-radius: 100%;
|
|
2045
2055
|
}
|
|
2046
2056
|
|
|
2047
2057
|
.bc-color-swatch-input__control--alpha {
|