@object-ui/components 6.2.1 → 6.2.3
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/CHANGELOG.md +19 -0
- package/dist/index.css +15 -0
- package/dist/index.js +2810 -2245
- package/dist/index.umd.cjs +6 -6
- package/dist/packages/components/src/index.d.ts +1 -0
- package/dist/packages/components/src/renderers/basic/elements.d.ts +26 -0
- package/dist/packages/components/src/share/ShareDialog.d.ts +55 -0
- package/dist/packages/components/src/share/index.d.ts +2 -0
- package/package.json +5 -5
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,24 @@
|
|
|
1
1
|
# @object-ui/components
|
|
2
2
|
|
|
3
|
+
## 6.2.3
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- @object-ui/types@6.2.3
|
|
8
|
+
- @object-ui/core@6.2.3
|
|
9
|
+
- @object-ui/i18n@6.2.3
|
|
10
|
+
- @object-ui/react@6.2.3
|
|
11
|
+
|
|
12
|
+
## 6.2.2
|
|
13
|
+
|
|
14
|
+
### Patch Changes
|
|
15
|
+
|
|
16
|
+
- Updated dependencies [a66f788]
|
|
17
|
+
- @object-ui/react@6.2.2
|
|
18
|
+
- @object-ui/types@6.2.2
|
|
19
|
+
- @object-ui/core@6.2.2
|
|
20
|
+
- @object-ui/i18n@6.2.2
|
|
21
|
+
|
|
3
22
|
## 6.2.1
|
|
4
23
|
|
|
5
24
|
### Patch Changes
|
package/dist/index.css
CHANGED
|
@@ -1681,6 +1681,12 @@
|
|
|
1681
1681
|
border-color: color-mix(in oklab, var(--color-destructive) 30%, transparent);
|
|
1682
1682
|
}
|
|
1683
1683
|
}
|
|
1684
|
+
.border-destructive\/40 {
|
|
1685
|
+
border-color: color-mix(in srgb, hsl(var(--destructive)) 40%, transparent);
|
|
1686
|
+
@supports (color: color-mix(in lab, red, red)) {
|
|
1687
|
+
border-color: color-mix(in oklab, var(--color-destructive) 40%, transparent);
|
|
1688
|
+
}
|
|
1689
|
+
}
|
|
1684
1690
|
.border-destructive\/50 {
|
|
1685
1691
|
border-color: color-mix(in srgb, hsl(var(--destructive)) 50%, transparent);
|
|
1686
1692
|
@supports (color: color-mix(in lab, red, red)) {
|
|
@@ -1962,9 +1968,15 @@
|
|
|
1962
1968
|
.fill-yellow-400 {
|
|
1963
1969
|
fill: var(--color-yellow-400);
|
|
1964
1970
|
}
|
|
1971
|
+
.object-contain {
|
|
1972
|
+
object-fit: contain;
|
|
1973
|
+
}
|
|
1965
1974
|
.object-cover {
|
|
1966
1975
|
object-fit: cover;
|
|
1967
1976
|
}
|
|
1977
|
+
.object-fill {
|
|
1978
|
+
object-fit: fill;
|
|
1979
|
+
}
|
|
1968
1980
|
.p-0 {
|
|
1969
1981
|
padding: calc(var(--spacing) * 0);
|
|
1970
1982
|
}
|
|
@@ -2361,6 +2373,9 @@
|
|
|
2361
2373
|
.text-yellow-400 {
|
|
2362
2374
|
color: var(--color-yellow-400);
|
|
2363
2375
|
}
|
|
2376
|
+
.capitalize {
|
|
2377
|
+
text-transform: capitalize;
|
|
2378
|
+
}
|
|
2364
2379
|
.uppercase {
|
|
2365
2380
|
text-transform: uppercase;
|
|
2366
2381
|
}
|