@spark-web/box 2.0.0-rc.1 → 2.0.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
CHANGED
|
@@ -1,5 +1,29 @@
|
|
|
1
1
|
# @spark-web/box
|
|
2
2
|
|
|
3
|
+
## 2.0.0-rc.3
|
|
4
|
+
|
|
5
|
+
### Major Changes
|
|
6
|
+
|
|
7
|
+
- upgrade package
|
|
8
|
+
|
|
9
|
+
### Patch Changes
|
|
10
|
+
|
|
11
|
+
- Updated dependencies []:
|
|
12
|
+
- @spark-web/theme@4.0.0-rc.3
|
|
13
|
+
- @spark-web/utils@2.0.0-rc.3
|
|
14
|
+
|
|
15
|
+
## 2.0.0-rc.2
|
|
16
|
+
|
|
17
|
+
### Major Changes
|
|
18
|
+
|
|
19
|
+
- add parser
|
|
20
|
+
|
|
21
|
+
### Patch Changes
|
|
22
|
+
|
|
23
|
+
- Updated dependencies []:
|
|
24
|
+
- @spark-web/theme@4.0.0-rc.2
|
|
25
|
+
- @spark-web/utils@2.0.0-rc.2
|
|
26
|
+
|
|
3
27
|
## 2.0.0-rc.1
|
|
4
28
|
|
|
5
29
|
### Major Changes
|
|
@@ -20,7 +20,7 @@ export declare type BoxProps = {
|
|
|
20
20
|
/** Exposes a prop-based API for adding styles to a view, within the constraints of the theme. */
|
|
21
21
|
export declare const Box: <Comp extends import("react").ElementType<any, keyof import("react").JSX.IntrinsicElements> = "div">(props: {
|
|
22
22
|
as?: Comp | undefined;
|
|
23
|
-
ref?: import("react").Ref<Comp extends "symbol" | "
|
|
23
|
+
ref?: import("react").Ref<Comp extends "symbol" | "text" | "svg" | "animate" | "animateMotion" | "animateTransform" | "circle" | "clipPath" | "defs" | "desc" | "ellipse" | "feBlend" | "feColorMatrix" | "feComponentTransfer" | "feComposite" | "feConvolveMatrix" | "feDiffuseLighting" | "feDisplacementMap" | "feDistantLight" | "feDropShadow" | "feFlood" | "feFuncA" | "feFuncB" | "feFuncG" | "feFuncR" | "feGaussianBlur" | "feImage" | "feMerge" | "feMergeNode" | "feMorphology" | "feOffset" | "fePointLight" | "feSpecularLighting" | "feSpotLight" | "feTile" | "feTurbulence" | "filter" | "foreignObject" | "g" | "image" | "line" | "linearGradient" | "marker" | "mask" | "metadata" | "mpath" | "path" | "pattern" | "polygon" | "polyline" | "radialGradient" | "rect" | "set" | "stop" | "switch" | "textPath" | "tspan" | "use" | "view" | keyof HTMLElementTagNameMap ? (HTMLElementTagNameMap & Pick<SVGElementTagNameMap, "symbol" | "text" | "svg" | "animate" | "animateMotion" | "animateTransform" | "circle" | "clipPath" | "defs" | "desc" | "ellipse" | "feBlend" | "feColorMatrix" | "feComponentTransfer" | "feComposite" | "feConvolveMatrix" | "feDiffuseLighting" | "feDisplacementMap" | "feDistantLight" | "feDropShadow" | "feFlood" | "feFuncA" | "feFuncB" | "feFuncG" | "feFuncR" | "feGaussianBlur" | "feImage" | "feMerge" | "feMergeNode" | "feMorphology" | "feOffset" | "fePointLight" | "feSpecularLighting" | "feSpotLight" | "feTile" | "feTurbulence" | "filter" | "foreignObject" | "g" | "image" | "line" | "linearGradient" | "marker" | "mask" | "metadata" | "mpath" | "path" | "pattern" | "polygon" | "polyline" | "radialGradient" | "rect" | "set" | "stop" | "switch" | "textPath" | "tspan" | "use" | "view">)[Comp] : Comp extends new (...args: any) => any ? InstanceType<Comp> : undefined> | undefined;
|
|
24
24
|
} & Omit<import("react").PropsWithoutRef<import("react").ComponentProps<Comp>>, "as"> & {
|
|
25
25
|
/** Children element to be rendered inside the component. */
|
|
26
26
|
children?: ReactNode;
|
|
@@ -37,7 +37,7 @@ export declare const Box: <Comp extends import("react").ElementType<any, keyof i
|
|
|
37
37
|
*/
|
|
38
38
|
asElement?: keyof HTMLElementTagNameMap | undefined;
|
|
39
39
|
} & {
|
|
40
|
-
background?: "
|
|
40
|
+
background?: "infoLight" | "criticalLight" | "positiveLight" | "cautionLight" | "muted" | "disabled" | "backdrop" | "body" | "surface" | "surfaceMuted" | "surfacePressed" | "fieldAccent" | "input" | "inputPressed" | "inputDisabled" | "accent" | "accentMuted" | "neutral" | "neutralLow" | "primary" | "primaryLow" | "primaryMuted" | "secondary" | "secondaryLow" | "secondaryMuted" | "caution" | "cautionLow" | "cautionMuted" | "critical" | "criticalLow" | "criticalMuted" | "info" | "infoLow" | "infoMuted" | "positive" | "positiveLow" | "positiveMuted" | undefined;
|
|
41
41
|
cursor?: "default" | "pointer" | undefined;
|
|
42
42
|
minHeight?: 0 | undefined;
|
|
43
43
|
minWidth?: 0 | undefined;
|
|
@@ -4,7 +4,7 @@ Object.defineProperty(exports, '__esModule', { value: true });
|
|
|
4
4
|
|
|
5
5
|
var theme = require('@spark-web/theme');
|
|
6
6
|
var react = require('react');
|
|
7
|
-
var jsxRuntime = require('react/jsx-runtime');
|
|
7
|
+
var jsxRuntime = require('@emotion/react/jsx-runtime');
|
|
8
8
|
var _objectSpread = require('@babel/runtime/helpers/objectSpread2');
|
|
9
9
|
var _objectWithoutProperties = require('@babel/runtime/helpers/objectWithoutProperties');
|
|
10
10
|
var react$1 = require('@emotion/react');
|
|
@@ -22,7 +22,7 @@ var useBackground = function useBackground() {
|
|
|
22
22
|
// conditional provider
|
|
23
23
|
|
|
24
24
|
function renderBackgroundProvider(background, element) {
|
|
25
|
-
return background ?
|
|
25
|
+
return background ? jsxRuntime.jsx(InternalBackgroundProvider, {
|
|
26
26
|
value: background,
|
|
27
27
|
children: element
|
|
28
28
|
}) : element;
|
|
@@ -327,11 +327,11 @@ var Box = ts.forwardRefWithAs(function (_ref, forwardedRef) {
|
|
|
327
327
|
styles = _useBoxProps.styles,
|
|
328
328
|
attributes = _useBoxProps.attributes;
|
|
329
329
|
var resetStyles = internal.resetElementStyles(asElement !== null && asElement !== void 0 ? asElement : Tag);
|
|
330
|
-
var element =
|
|
330
|
+
var element = jsxRuntime.jsx(react$1.ClassNames, {
|
|
331
331
|
children: function children(_ref2) {
|
|
332
332
|
var css = _ref2.css,
|
|
333
333
|
cx = _ref2.cx;
|
|
334
|
-
return
|
|
334
|
+
return jsxRuntime.jsx(Tag, _objectSpread(_objectSpread({}, data ? internal.buildDataAttributes(data) : undefined), {}, {
|
|
335
335
|
ref: forwardedRef,
|
|
336
336
|
id: id,
|
|
337
337
|
className: cx(css(resetStyles), css(styles), className)
|
|
@@ -4,7 +4,7 @@ Object.defineProperty(exports, '__esModule', { value: true });
|
|
|
4
4
|
|
|
5
5
|
var theme = require('@spark-web/theme');
|
|
6
6
|
var react = require('react');
|
|
7
|
-
var jsxRuntime = require('react/jsx-runtime');
|
|
7
|
+
var jsxRuntime = require('@emotion/react/jsx-runtime');
|
|
8
8
|
var _objectSpread = require('@babel/runtime/helpers/objectSpread2');
|
|
9
9
|
var _objectWithoutProperties = require('@babel/runtime/helpers/objectWithoutProperties');
|
|
10
10
|
var react$1 = require('@emotion/react');
|
|
@@ -22,7 +22,7 @@ var useBackground = function useBackground() {
|
|
|
22
22
|
// conditional provider
|
|
23
23
|
|
|
24
24
|
function renderBackgroundProvider(background, element) {
|
|
25
|
-
return background ?
|
|
25
|
+
return background ? jsxRuntime.jsx(InternalBackgroundProvider, {
|
|
26
26
|
value: background,
|
|
27
27
|
children: element
|
|
28
28
|
}) : element;
|
|
@@ -327,11 +327,11 @@ var Box = ts.forwardRefWithAs(function (_ref, forwardedRef) {
|
|
|
327
327
|
styles = _useBoxProps.styles,
|
|
328
328
|
attributes = _useBoxProps.attributes;
|
|
329
329
|
var resetStyles = internal.resetElementStyles(asElement !== null && asElement !== void 0 ? asElement : Tag);
|
|
330
|
-
var element =
|
|
330
|
+
var element = jsxRuntime.jsx(react$1.ClassNames, {
|
|
331
331
|
children: function children(_ref2) {
|
|
332
332
|
var css = _ref2.css,
|
|
333
333
|
cx = _ref2.cx;
|
|
334
|
-
return
|
|
334
|
+
return jsxRuntime.jsx(Tag, _objectSpread(_objectSpread({}, data ? internal.buildDataAttributes(data) : undefined), {}, {
|
|
335
335
|
ref: forwardedRef,
|
|
336
336
|
id: id,
|
|
337
337
|
className: cx(css(resetStyles), css(styles), className)
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import { useTheme } from '@spark-web/theme';
|
|
2
2
|
import { createContext, useContext } from 'react';
|
|
3
|
-
import { jsx } from 'react/jsx-runtime';
|
|
3
|
+
import { jsx } from '@emotion/react/jsx-runtime';
|
|
4
4
|
import _objectSpread from '@babel/runtime/helpers/esm/objectSpread2';
|
|
5
5
|
import _objectWithoutProperties from '@babel/runtime/helpers/esm/objectWithoutProperties';
|
|
6
6
|
import { ClassNames } from '@emotion/react';
|
|
@@ -18,7 +18,7 @@ var useBackground = function useBackground() {
|
|
|
18
18
|
// conditional provider
|
|
19
19
|
|
|
20
20
|
function renderBackgroundProvider(background, element) {
|
|
21
|
-
return background ?
|
|
21
|
+
return background ? jsx(InternalBackgroundProvider, {
|
|
22
22
|
value: background,
|
|
23
23
|
children: element
|
|
24
24
|
}) : element;
|
|
@@ -323,11 +323,11 @@ var Box = forwardRefWithAs(function (_ref, forwardedRef) {
|
|
|
323
323
|
styles = _useBoxProps.styles,
|
|
324
324
|
attributes = _useBoxProps.attributes;
|
|
325
325
|
var resetStyles = resetElementStyles(asElement !== null && asElement !== void 0 ? asElement : Tag);
|
|
326
|
-
var element =
|
|
326
|
+
var element = jsx(ClassNames, {
|
|
327
327
|
children: function children(_ref2) {
|
|
328
328
|
var css = _ref2.css,
|
|
329
329
|
cx = _ref2.cx;
|
|
330
|
-
return
|
|
330
|
+
return jsx(Tag, _objectSpread(_objectSpread({}, data ? buildDataAttributes(data) : undefined), {}, {
|
|
331
331
|
ref: forwardedRef,
|
|
332
332
|
id: id,
|
|
333
333
|
className: cx(css(resetStyles), css(styles), className)
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@spark-web/box",
|
|
3
|
-
"version": "2.0.0-rc.
|
|
3
|
+
"version": "2.0.0-rc.3",
|
|
4
4
|
"homepage": "https://github.com/brighte-labs/spark-web#readme",
|
|
5
5
|
"repository": {
|
|
6
6
|
"type": "git",
|
|
@@ -16,9 +16,9 @@
|
|
|
16
16
|
],
|
|
17
17
|
"dependencies": {
|
|
18
18
|
"@babel/runtime": "^7.25.0",
|
|
19
|
-
"@emotion/react": "^11.
|
|
20
|
-
"@spark-web/theme": "^4.0.0-rc.
|
|
21
|
-
"@spark-web/utils": "^2.0.0-rc.
|
|
19
|
+
"@emotion/react": "^11.14.0",
|
|
20
|
+
"@spark-web/theme": "^4.0.0-rc.3",
|
|
21
|
+
"@spark-web/utils": "^2.0.0-rc.3"
|
|
22
22
|
},
|
|
23
23
|
"devDependencies": {
|
|
24
24
|
"@types/react": "^18.2.0",
|