@nimbus-ds/box 2.7.0-rc.2 → 2.7.0-rc.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 +1 -1
- package/dist/index.d.ts +4 -0
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -9,7 +9,7 @@ A low-level utility component that accepts styled system props to enable custom
|
|
|
9
9
|
- Added server side-rendering support to component. ([#105](https://github.com/TiendaNube/nimbus-design-system/pull/105) by [@juniorconquista](https://github.com/juniorconquista))
|
|
10
10
|
- Added `zIndex` property to component sprinkles. ([#106](https://github.com/TiendaNube/nimbus-design-system/pull/106) by [@juanchigallego](https://github.com/juanchigallego))
|
|
11
11
|
- Added `"border-box"` as default value for `boxSizing` property. ([#106](https://github.com/TiendaNube/nimbus-design-system/pull/106) by [@juanchigallego](https://github.com/juanchigallego))
|
|
12
|
-
- Added `backgroundImage`, `minWidth` and `minHeight` properties to component sprinkles. ([#106](https://github.com/TiendaNube/nimbus-design-system/pull/106) by [@juanchigallego](https://github.com/juanchigallego))
|
|
12
|
+
- Added `backgroundImage`, `backgroundPosition`, `backgroundBlendMode`, `backgroundRepeat`, `backgroundSize` `minWidth` and `minHeight` properties to component sprinkles. ([#106](https://github.com/TiendaNube/nimbus-design-system/pull/106) by [@juanchigallego](https://github.com/juanchigallego))
|
|
13
13
|
|
|
14
14
|
## 2023-02-13 `2.6.0`
|
|
15
15
|
|
package/dist/index.d.ts
CHANGED
|
@@ -268,6 +268,10 @@ export interface BoxSprinkle {
|
|
|
268
268
|
transitionDuration?: TransitionDurationProperties | BoxConditions<TransitionDurationProperties>;
|
|
269
269
|
zIndex?: number | BoxConditions<number>;
|
|
270
270
|
backgroundImage?: string | BoxConditions<string>;
|
|
271
|
+
backgroundPosition?: string | BoxConditions<string>;
|
|
272
|
+
backgroundBlendMode?: string | BoxConditions<string>;
|
|
273
|
+
backgroundRepeat?: string | BoxConditions<string>;
|
|
274
|
+
backgroundSize?: string | BoxConditions<string>;
|
|
271
275
|
}
|
|
272
276
|
export type BoxExtends = BoxSprinkle & HTMLAttributes<HTMLElement>;
|
|
273
277
|
export interface BoxProps extends BoxExtends {
|