@object-ui/components 6.2.0 → 6.2.2

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 CHANGED
@@ -1,5 +1,24 @@
1
1
  # @object-ui/components
2
2
 
3
+ ## 6.2.2
4
+
5
+ ### Patch Changes
6
+
7
+ - Updated dependencies [a66f788]
8
+ - @object-ui/react@6.2.2
9
+ - @object-ui/types@6.2.2
10
+ - @object-ui/core@6.2.2
11
+ - @object-ui/i18n@6.2.2
12
+
13
+ ## 6.2.1
14
+
15
+ ### Patch Changes
16
+
17
+ - @object-ui/types@6.2.1
18
+ - @object-ui/core@6.2.1
19
+ - @object-ui/i18n@6.2.1
20
+ - @object-ui/react@6.2.1
21
+
3
22
  ## 6.2.0
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
  }