@shoplflow/base 0.46.3 → 0.46.4
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/index.cjs +5 -5
- package/dist/index.d.cts +3 -3
- package/dist/index.d.ts +3 -3
- package/dist/index.js +5 -5
- package/package.json +1 -1
package/dist/index.cjs
CHANGED
|
@@ -3017,7 +3017,7 @@ var StyledCallout = styled6__default.default.div`
|
|
|
3017
3017
|
display: flex;
|
|
3018
3018
|
justify-content: flex-start;
|
|
3019
3019
|
align-items: start;
|
|
3020
|
-
padding:
|
|
3020
|
+
padding: 12px;
|
|
3021
3021
|
gap: 4px;
|
|
3022
3022
|
border-radius: ${exports.borderRadiusTokens.borderRadius08};
|
|
3023
3023
|
${({ styleVar }) => styleVar === "INFORMATION" && informationStyle}
|
|
@@ -3080,7 +3080,7 @@ exports.CalloutTypes = {
|
|
|
3080
3080
|
};
|
|
3081
3081
|
|
|
3082
3082
|
// src/components/Callout/version.ts
|
|
3083
|
-
exports.CALLOUT_VERSION = "2.1.
|
|
3083
|
+
exports.CALLOUT_VERSION = "2.1.2";
|
|
3084
3084
|
var StyledDropdown = styled6__default.default.div`
|
|
3085
3085
|
width: ${({ width }) => width};
|
|
3086
3086
|
`;
|
|
@@ -3438,12 +3438,12 @@ var StyledText2Rows = styled6__default.default.div`
|
|
|
3438
3438
|
gap: 2px;
|
|
3439
3439
|
`;
|
|
3440
3440
|
var List = (_a) => {
|
|
3441
|
-
var _b = _a, { children, leftSource, rightSource } = _b, rest = __objRest(_b, ["children", "leftSource", "rightSource"]);
|
|
3441
|
+
var _b = _a, { children, leftSource, rightSource, style } = _b, rest = __objRest(_b, ["children", "leftSource", "rightSource", "style"]);
|
|
3442
3442
|
const LeftSourceClone = leftSource ? React3__namespace.default.cloneElement(leftSource, __spreadValues({}, rest)) : leftSource;
|
|
3443
3443
|
if (!children && rightSource) {
|
|
3444
3444
|
throw new Error("RightSource\uB294 children\uC774 \uD544\uC218\uB85C \uD3EC\uD568\uB418\uC5B4\uC57C\uD569\uB2C8\uB2E4.");
|
|
3445
3445
|
}
|
|
3446
|
-
return /* @__PURE__ */ jsxRuntime.jsxs(StyledList, __spreadProps(__spreadValues({ "data-shoplflow": "List" }, rest), { children: [
|
|
3446
|
+
return /* @__PURE__ */ jsxRuntime.jsxs(StyledList, __spreadProps(__spreadValues({ "data-shoplflow": "List", style }, rest), { children: [
|
|
3447
3447
|
LeftSourceClone && LeftSourceClone,
|
|
3448
3448
|
/* @__PURE__ */ jsxRuntime.jsx(exports.Stack.Horizontal, { minHeight: "36px", width: "100%", spacing: "spacing08", align: "center", children }),
|
|
3449
3449
|
rightSource && rightSource
|
|
@@ -3459,7 +3459,7 @@ List.Text2Rows = exports.Text2Rows;
|
|
|
3459
3459
|
exports.List = List;
|
|
3460
3460
|
|
|
3461
3461
|
// src/components/List/version.ts
|
|
3462
|
-
exports.LIST_VERSION = "2.0.
|
|
3462
|
+
exports.LIST_VERSION = "2.0.1";
|
|
3463
3463
|
var getTypographyBySize = (size2) => {
|
|
3464
3464
|
switch (size2) {
|
|
3465
3465
|
case "XS":
|
package/dist/index.d.cts
CHANGED
|
@@ -792,7 +792,7 @@ declare const Callout: {
|
|
|
792
792
|
};
|
|
793
793
|
|
|
794
794
|
/** @internal 컴포넌트 메타데이터: 버전 */
|
|
795
|
-
declare const CALLOUT_VERSION = "2.1.
|
|
795
|
+
declare const CALLOUT_VERSION = "2.1.2";
|
|
796
796
|
|
|
797
797
|
interface PopperProps extends PopperOptionProps {
|
|
798
798
|
}
|
|
@@ -1054,13 +1054,13 @@ interface ListText2RowsProps {
|
|
|
1054
1054
|
}
|
|
1055
1055
|
|
|
1056
1056
|
declare const List: {
|
|
1057
|
-
({ children, leftSource, rightSource, ...rest }: ListProps): react_jsx_runtime.JSX.Element;
|
|
1057
|
+
({ children, leftSource, rightSource, style, ...rest }: ListProps): react_jsx_runtime.JSX.Element;
|
|
1058
1058
|
Text2Rows: ({ title, subTitle }: ListText2RowsProps) => react_jsx_runtime.JSX.Element;
|
|
1059
1059
|
};
|
|
1060
1060
|
declare const Text2Rows: ({ title, subTitle }: ListText2RowsProps) => react_jsx_runtime.JSX.Element;
|
|
1061
1061
|
|
|
1062
1062
|
/** @internal 컴포넌트 메타데이터: 버전 */
|
|
1063
|
-
declare const LIST_VERSION = "2.0.
|
|
1063
|
+
declare const LIST_VERSION = "2.0.1";
|
|
1064
1064
|
|
|
1065
1065
|
declare const TagStyleVariants: {
|
|
1066
1066
|
readonly SOLID: "SOLID";
|
package/dist/index.d.ts
CHANGED
|
@@ -792,7 +792,7 @@ declare const Callout: {
|
|
|
792
792
|
};
|
|
793
793
|
|
|
794
794
|
/** @internal 컴포넌트 메타데이터: 버전 */
|
|
795
|
-
declare const CALLOUT_VERSION = "2.1.
|
|
795
|
+
declare const CALLOUT_VERSION = "2.1.2";
|
|
796
796
|
|
|
797
797
|
interface PopperProps extends PopperOptionProps {
|
|
798
798
|
}
|
|
@@ -1054,13 +1054,13 @@ interface ListText2RowsProps {
|
|
|
1054
1054
|
}
|
|
1055
1055
|
|
|
1056
1056
|
declare const List: {
|
|
1057
|
-
({ children, leftSource, rightSource, ...rest }: ListProps): react_jsx_runtime.JSX.Element;
|
|
1057
|
+
({ children, leftSource, rightSource, style, ...rest }: ListProps): react_jsx_runtime.JSX.Element;
|
|
1058
1058
|
Text2Rows: ({ title, subTitle }: ListText2RowsProps) => react_jsx_runtime.JSX.Element;
|
|
1059
1059
|
};
|
|
1060
1060
|
declare const Text2Rows: ({ title, subTitle }: ListText2RowsProps) => react_jsx_runtime.JSX.Element;
|
|
1061
1061
|
|
|
1062
1062
|
/** @internal 컴포넌트 메타데이터: 버전 */
|
|
1063
|
-
declare const LIST_VERSION = "2.0.
|
|
1063
|
+
declare const LIST_VERSION = "2.0.1";
|
|
1064
1064
|
|
|
1065
1065
|
declare const TagStyleVariants: {
|
|
1066
1066
|
readonly SOLID: "SOLID";
|
package/dist/index.js
CHANGED
|
@@ -2990,7 +2990,7 @@ var StyledCallout = styled6.div`
|
|
|
2990
2990
|
display: flex;
|
|
2991
2991
|
justify-content: flex-start;
|
|
2992
2992
|
align-items: start;
|
|
2993
|
-
padding:
|
|
2993
|
+
padding: 12px;
|
|
2994
2994
|
gap: 4px;
|
|
2995
2995
|
border-radius: ${borderRadiusTokens.borderRadius08};
|
|
2996
2996
|
${({ styleVar }) => styleVar === "INFORMATION" && informationStyle}
|
|
@@ -3053,7 +3053,7 @@ var CalloutTypes = {
|
|
|
3053
3053
|
};
|
|
3054
3054
|
|
|
3055
3055
|
// src/components/Callout/version.ts
|
|
3056
|
-
var CALLOUT_VERSION = "2.1.
|
|
3056
|
+
var CALLOUT_VERSION = "2.1.2";
|
|
3057
3057
|
var StyledDropdown = styled6.div`
|
|
3058
3058
|
width: ${({ width }) => width};
|
|
3059
3059
|
`;
|
|
@@ -3411,12 +3411,12 @@ var StyledText2Rows = styled6.div`
|
|
|
3411
3411
|
gap: 2px;
|
|
3412
3412
|
`;
|
|
3413
3413
|
var List = (_a) => {
|
|
3414
|
-
var _b = _a, { children, leftSource, rightSource } = _b, rest = __objRest(_b, ["children", "leftSource", "rightSource"]);
|
|
3414
|
+
var _b = _a, { children, leftSource, rightSource, style } = _b, rest = __objRest(_b, ["children", "leftSource", "rightSource", "style"]);
|
|
3415
3415
|
const LeftSourceClone = leftSource ? React3__default.cloneElement(leftSource, __spreadValues({}, rest)) : leftSource;
|
|
3416
3416
|
if (!children && rightSource) {
|
|
3417
3417
|
throw new Error("RightSource\uB294 children\uC774 \uD544\uC218\uB85C \uD3EC\uD568\uB418\uC5B4\uC57C\uD569\uB2C8\uB2E4.");
|
|
3418
3418
|
}
|
|
3419
|
-
return /* @__PURE__ */ jsxs(StyledList, __spreadProps(__spreadValues({ "data-shoplflow": "List" }, rest), { children: [
|
|
3419
|
+
return /* @__PURE__ */ jsxs(StyledList, __spreadProps(__spreadValues({ "data-shoplflow": "List", style }, rest), { children: [
|
|
3420
3420
|
LeftSourceClone && LeftSourceClone,
|
|
3421
3421
|
/* @__PURE__ */ jsx(Stack_default.Horizontal, { minHeight: "36px", width: "100%", spacing: "spacing08", align: "center", children }),
|
|
3422
3422
|
rightSource && rightSource
|
|
@@ -3432,7 +3432,7 @@ List.Text2Rows = Text2Rows;
|
|
|
3432
3432
|
var List_default = List;
|
|
3433
3433
|
|
|
3434
3434
|
// src/components/List/version.ts
|
|
3435
|
-
var LIST_VERSION = "2.0.
|
|
3435
|
+
var LIST_VERSION = "2.0.1";
|
|
3436
3436
|
var getTypographyBySize = (size2) => {
|
|
3437
3437
|
switch (size2) {
|
|
3438
3438
|
case "XS":
|