@purpurds/container 8.0.0 → 8.1.1
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/container.cjs.js +1 -1
- package/dist/container.cjs.js.map +1 -1
- package/dist/container.d.ts +8 -1
- package/dist/container.d.ts.map +1 -1
- package/dist/container.es.js +27 -14
- package/dist/container.es.js.map +1 -1
- package/package.json +3 -3
- package/src/container.test.tsx +99 -1
- package/src/container.tsx +21 -4
package/dist/container.cjs.js
CHANGED
|
@@ -2,5 +2,5 @@
|
|
|
2
2
|
Copyright (c) 2018 Jed Watson.
|
|
3
3
|
Licensed under the MIT License (MIT), see
|
|
4
4
|
http://jedwatson.github.io/classnames
|
|
5
|
-
*/var
|
|
5
|
+
*/var a;function _(){return a||(a=1,function(n){(function(){var s={}.hasOwnProperty;function e(){for(var r="",t=0;t<arguments.length;t++){var i=arguments[t];i&&(r=o(r,u.call(this,i)))}return r}function u(r){if(typeof r=="string"||typeof r=="number")return this&&this[r]||r;if(typeof r!="object")return"";if(Array.isArray(r))return e.apply(this,r);if(r.toString!==Object.prototype.toString&&!r.toString.toString().includes("[native code]"))return r.toString();var t="";for(var i in r)s.call(r,i)&&r[i]&&(t=o(t,this&&this[i]||i));return t}function o(r,t){return t?r?r+" "+t:r+t:r}n.exports?(e.default=e,n.exports=e):window.classNames=e})()}(p)),p.exports}var m=_();const h=d(m),S={"purpur-container":"_purpur-container_1t9gx_1","purpur-container--xs":"_purpur-container--xs_1t9gx_13","purpur-container--sm":"_purpur-container--sm_1t9gx_24","purpur-container--md":"_purpur-container--md_1t9gx_39","purpur-container--lg":"_purpur-container--lg_1t9gx_42","purpur-container--xl":"_purpur-container--xl_1t9gx_45","purpur-container--xxl":"_purpur-container--xxl_1t9gx_48"},v=h.bind(S),y={XS:"xs",SM:"sm",MD:"md",LG:"lg",XL:"xl",XXL:"xxl"},E={ARTICLE:"article",ASIDE:"aside",DIV:"div",FOOTER:"footer",HEADER:"header",MAIN:"main",NAV:"nav",SECTION:"section",SPAN:"span"},c="purpur-container",l=x.forwardRef(({children:n,className:s,width:e="xxl",element:u="div",...o},r)=>{const t=v([s,c,`${c}--${e}`]);return f.jsx(u,{className:t,ref:r,...o,children:n})});l.displayName="Container";exports.Container=l;exports.Element=E;exports.Width=y;
|
|
6
6
|
//# sourceMappingURL=container.cjs.js.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"container.cjs.js","sources":["../../../common/temp/node_modules/.pnpm/classnames@2.5.1/node_modules/classnames/bind.js","../src/container.tsx"],"sourcesContent":["/*!\n\tCopyright (c) 2018 Jed Watson.\n\tLicensed under the MIT License (MIT), see\n\thttp://jedwatson.github.io/classnames\n*/\n/* global define */\n\n(function () {\n\t'use strict';\n\n\tvar hasOwn = {}.hasOwnProperty;\n\n\tfunction classNames () {\n\t\tvar classes = '';\n\n\t\tfor (var i = 0; i < arguments.length; i++) {\n\t\t\tvar arg = arguments[i];\n\t\t\tif (arg) {\n\t\t\t\tclasses = appendClass(classes, parseValue.call(this, arg));\n\t\t\t}\n\t\t}\n\n\t\treturn classes;\n\t}\n\n\tfunction parseValue (arg) {\n\t\tif (typeof arg === 'string' || typeof arg === 'number') {\n\t\t\treturn this && this[arg] || arg;\n\t\t}\n\n\t\tif (typeof arg !== 'object') {\n\t\t\treturn '';\n\t\t}\n\n\t\tif (Array.isArray(arg)) {\n\t\t\treturn classNames.apply(this, arg);\n\t\t}\n\n\t\tif (arg.toString !== Object.prototype.toString && !arg.toString.toString().includes('[native code]')) {\n\t\t\treturn arg.toString();\n\t\t}\n\n\t\tvar classes = '';\n\n\t\tfor (var key in arg) {\n\t\t\tif (hasOwn.call(arg, key) && arg[key]) {\n\t\t\t\tclasses = appendClass(classes, this && this[key] || key);\n\t\t\t}\n\t\t}\n\n\t\treturn classes;\n\t}\n\n\tfunction appendClass (value, newClass) {\n\t\tif (!newClass) {\n\t\t\treturn value;\n\t\t}\n\t\n\t\tif (value) {\n\t\t\treturn value + ' ' + newClass;\n\t\t}\n\t\n\t\treturn value + newClass;\n\t}\n\n\tif (typeof module !== 'undefined' && module.exports) {\n\t\tclassNames.default = classNames;\n\t\tmodule.exports = classNames;\n\t} else if (typeof define === 'function' && typeof define.amd === 'object' && define.amd) {\n\t\t// register as 'classnames', consistent with npm package name\n\t\tdefine('classnames', [], function () {\n\t\t\treturn classNames;\n\t\t});\n\t} else {\n\t\twindow.classNames = classNames;\n\t}\n}());\n","import React, { forwardRef, type ReactNode } from \"react\";\nimport type { BaseProps } from \"@purpurds/common-types\";\nimport c from \"classnames/bind\";\n\nimport styles from \"./container.module.scss\";\n\nconst cx = c.bind(styles);\n\nexport const Width = {\n XS: \"xs\",\n SM: \"sm\",\n MD: \"md\",\n LG: \"lg\",\n XL: \"xl\",\n XXL: \"xxl\",\n} as const;\n\nexport type WidthType = (typeof Width)[keyof typeof Width];\n\nexport const Element = {\n DIV: \"div\",\n SPAN: \"span\",\n} as const;\n\nexport type ElementType = (typeof Element)[keyof typeof Element];\n\nexport type ContainerProps = Omit<BaseProps, \"children\"> & {\n children: ReactNode;\n width?: WidthType;\n element?: ElementType;\n};\n\nconst rootClassName = \"purpur-container\";\n\nexport const Container = forwardRef<
|
|
1
|
+
{"version":3,"file":"container.cjs.js","sources":["../../../common/temp/node_modules/.pnpm/classnames@2.5.1/node_modules/classnames/bind.js","../src/container.tsx"],"sourcesContent":["/*!\n\tCopyright (c) 2018 Jed Watson.\n\tLicensed under the MIT License (MIT), see\n\thttp://jedwatson.github.io/classnames\n*/\n/* global define */\n\n(function () {\n\t'use strict';\n\n\tvar hasOwn = {}.hasOwnProperty;\n\n\tfunction classNames () {\n\t\tvar classes = '';\n\n\t\tfor (var i = 0; i < arguments.length; i++) {\n\t\t\tvar arg = arguments[i];\n\t\t\tif (arg) {\n\t\t\t\tclasses = appendClass(classes, parseValue.call(this, arg));\n\t\t\t}\n\t\t}\n\n\t\treturn classes;\n\t}\n\n\tfunction parseValue (arg) {\n\t\tif (typeof arg === 'string' || typeof arg === 'number') {\n\t\t\treturn this && this[arg] || arg;\n\t\t}\n\n\t\tif (typeof arg !== 'object') {\n\t\t\treturn '';\n\t\t}\n\n\t\tif (Array.isArray(arg)) {\n\t\t\treturn classNames.apply(this, arg);\n\t\t}\n\n\t\tif (arg.toString !== Object.prototype.toString && !arg.toString.toString().includes('[native code]')) {\n\t\t\treturn arg.toString();\n\t\t}\n\n\t\tvar classes = '';\n\n\t\tfor (var key in arg) {\n\t\t\tif (hasOwn.call(arg, key) && arg[key]) {\n\t\t\t\tclasses = appendClass(classes, this && this[key] || key);\n\t\t\t}\n\t\t}\n\n\t\treturn classes;\n\t}\n\n\tfunction appendClass (value, newClass) {\n\t\tif (!newClass) {\n\t\t\treturn value;\n\t\t}\n\t\n\t\tif (value) {\n\t\t\treturn value + ' ' + newClass;\n\t\t}\n\t\n\t\treturn value + newClass;\n\t}\n\n\tif (typeof module !== 'undefined' && module.exports) {\n\t\tclassNames.default = classNames;\n\t\tmodule.exports = classNames;\n\t} else if (typeof define === 'function' && typeof define.amd === 'object' && define.amd) {\n\t\t// register as 'classnames', consistent with npm package name\n\t\tdefine('classnames', [], function () {\n\t\t\treturn classNames;\n\t\t});\n\t} else {\n\t\twindow.classNames = classNames;\n\t}\n}());\n","import React, { forwardRef, type ReactNode } from \"react\";\nimport type { BaseProps } from \"@purpurds/common-types\";\nimport c from \"classnames/bind\";\n\nimport styles from \"./container.module.scss\";\n\nconst cx = c.bind(styles);\n\nexport const Width = {\n XS: \"xs\",\n SM: \"sm\",\n MD: \"md\",\n LG: \"lg\",\n XL: \"xl\",\n XXL: \"xxl\",\n} as const;\n\nexport type WidthType = (typeof Width)[keyof typeof Width];\n\nexport const Element = {\n ARTICLE: \"article\",\n ASIDE: \"aside\",\n DIV: \"div\",\n FOOTER: \"footer\",\n HEADER: \"header\",\n MAIN: \"main\",\n NAV: \"nav\",\n SECTION: \"section\",\n SPAN: \"span\",\n} as const;\n\nexport type ElementType = (typeof Element)[keyof typeof Element];\n\nexport type ContainerProps = Omit<BaseProps, \"children\"> & {\n children: ReactNode;\n width?: WidthType;\n element?: ElementType;\n};\n\nconst rootClassName = \"purpur-container\";\n\nexport const Container = forwardRef<HTMLElement, ContainerProps>(\n (\n {\n children,\n className,\n width = \"xxl\",\n element: ElementTag = \"div\" as React.ElementType,\n ...props\n },\n ref\n ) => {\n const classes = cx([className, rootClassName, `${rootClassName}--${width}`]);\n\n return (\n <ElementTag className={classes} ref={ref} {...props}>\n {children}\n </ElementTag>\n );\n }\n);\n\nContainer.displayName = \"Container\";\n"],"names":["hasOwn","classNames","classes","i","arg","appendClass","parseValue","key","value","newClass","module","cx","c","styles","Width","Element","rootClassName","Container","forwardRef","children","className","width","ElementTag","props","ref"],"mappings":";;;;iDAOC,UAAY,CAGZ,IAAIA,EAAS,CAAA,EAAG,eAEhB,SAASC,GAAc,CAGtB,QAFIC,EAAU,GAELC,EAAI,EAAGA,EAAI,UAAU,OAAQA,IAAK,CAC1C,IAAIC,EAAM,UAAUD,CAAC,EACjBC,IACHF,EAAUG,EAAYH,EAASI,EAAW,KAAK,KAAMF,CAAG,CAAC,EAE7D,CAEE,OAAOF,CACT,CAEC,SAASI,EAAYF,EAAK,CACzB,GAAI,OAAOA,GAAQ,UAAY,OAAOA,GAAQ,SAC7C,OAAO,MAAQ,KAAKA,CAAG,GAAKA,EAG7B,GAAI,OAAOA,GAAQ,SAClB,MAAO,GAGR,GAAI,MAAM,QAAQA,CAAG,EACpB,OAAOH,EAAW,MAAM,KAAMG,CAAG,EAGlC,GAAIA,EAAI,WAAa,OAAO,UAAU,UAAY,CAACA,EAAI,SAAS,SAAQ,EAAG,SAAS,eAAe,EAClG,OAAOA,EAAI,SAAU,EAGtB,IAAIF,EAAU,GAEd,QAASK,KAAOH,EACXJ,EAAO,KAAKI,EAAKG,CAAG,GAAKH,EAAIG,CAAG,IACnCL,EAAUG,EAAYH,EAAS,MAAQ,KAAKK,CAAG,GAAKA,CAAG,GAIzD,OAAOL,CACT,CAEC,SAASG,EAAaG,EAAOC,EAAU,CACtC,OAAKA,EAIDD,EACIA,EAAQ,IAAMC,EAGfD,EAAQC,EAPPD,CAQV,CAEsCE,EAAO,SAC3CT,EAAW,QAAUA,EACrBS,UAAiBT,GAOjB,OAAO,WAAaA,CAEtB,gbCtEMU,EAAKC,EAAE,KAAKC,CAAM,EAEXC,EAAQ,CACnB,GAAI,KACJ,GAAI,KACJ,GAAI,KACJ,GAAI,KACJ,GAAI,KACJ,IAAK,KACP,EAIaC,EAAU,CACrB,QAAS,UACT,MAAO,QACP,IAAK,MACL,OAAQ,SACR,OAAQ,SACR,KAAM,OACN,IAAK,MACL,QAAS,UACT,KAAM,MACR,EAUMC,EAAgB,mBAETC,EAAYC,EAAA,WACvB,CACE,CACE,SAAAC,EACA,UAAAC,EACA,MAAAC,EAAQ,MACR,QAASC,EAAa,MACtB,GAAGC,GAELC,IACG,CACG,MAAAtB,EAAUS,EAAG,CAACS,EAAWJ,EAAe,GAAGA,CAAa,KAAKK,CAAK,EAAE,CAAC,EAE3E,aACGC,EAAW,CAAA,UAAWpB,EAAS,IAAAsB,EAAW,GAAGD,EAC3C,SAAAJ,EACH,CAAA,CAGN,EAEAF,EAAU,YAAc","x_google_ignoreList":[0]}
|
package/dist/container.d.ts
CHANGED
|
@@ -11,7 +11,14 @@ export declare const Width: {
|
|
|
11
11
|
};
|
|
12
12
|
export type WidthType = (typeof Width)[keyof typeof Width];
|
|
13
13
|
export declare const Element: {
|
|
14
|
+
readonly ARTICLE: "article";
|
|
15
|
+
readonly ASIDE: "aside";
|
|
14
16
|
readonly DIV: "div";
|
|
17
|
+
readonly FOOTER: "footer";
|
|
18
|
+
readonly HEADER: "header";
|
|
19
|
+
readonly MAIN: "main";
|
|
20
|
+
readonly NAV: "nav";
|
|
21
|
+
readonly SECTION: "section";
|
|
15
22
|
readonly SPAN: "span";
|
|
16
23
|
};
|
|
17
24
|
export type ElementType = (typeof Element)[keyof typeof Element];
|
|
@@ -20,5 +27,5 @@ export type ContainerProps = Omit<BaseProps, "children"> & {
|
|
|
20
27
|
width?: WidthType;
|
|
21
28
|
element?: ElementType;
|
|
22
29
|
};
|
|
23
|
-
export declare const Container: React.ForwardRefExoticComponent<Omit<ContainerProps, "ref"> & React.RefAttributes<
|
|
30
|
+
export declare const Container: React.ForwardRefExoticComponent<Omit<ContainerProps, "ref"> & React.RefAttributes<HTMLElement>>;
|
|
24
31
|
//# sourceMappingURL=container.d.ts.map
|
package/dist/container.d.ts.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"container.d.ts","sourceRoot":"","sources":["../src/container.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,EAAc,KAAK,SAAS,EAAE,MAAM,OAAO,CAAC;AAC1D,OAAO,KAAK,EAAE,SAAS,EAAE,MAAM,wBAAwB,CAAC;AAOxD,eAAO,MAAM,KAAK;;;;;;;CAOR,CAAC;AAEX,MAAM,MAAM,SAAS,GAAG,CAAC,OAAO,KAAK,CAAC,CAAC,MAAM,OAAO,KAAK,CAAC,CAAC;AAE3D,eAAO,MAAM,OAAO
|
|
1
|
+
{"version":3,"file":"container.d.ts","sourceRoot":"","sources":["../src/container.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,EAAc,KAAK,SAAS,EAAE,MAAM,OAAO,CAAC;AAC1D,OAAO,KAAK,EAAE,SAAS,EAAE,MAAM,wBAAwB,CAAC;AAOxD,eAAO,MAAM,KAAK;;;;;;;CAOR,CAAC;AAEX,MAAM,MAAM,SAAS,GAAG,CAAC,OAAO,KAAK,CAAC,CAAC,MAAM,OAAO,KAAK,CAAC,CAAC;AAE3D,eAAO,MAAM,OAAO;;;;;;;;;;CAUV,CAAC;AAEX,MAAM,MAAM,WAAW,GAAG,CAAC,OAAO,OAAO,CAAC,CAAC,MAAM,OAAO,OAAO,CAAC,CAAC;AAEjE,MAAM,MAAM,cAAc,GAAG,IAAI,CAAC,SAAS,EAAE,UAAU,CAAC,GAAG;IACzD,QAAQ,EAAE,SAAS,CAAC;IACpB,KAAK,CAAC,EAAE,SAAS,CAAC;IAClB,OAAO,CAAC,EAAE,WAAW,CAAC;CACvB,CAAC;AAIF,eAAO,MAAM,SAAS,iGAmBrB,CAAC"}
|
package/dist/container.es.js
CHANGED
|
@@ -9,9 +9,9 @@ var p = { exports: {} };
|
|
|
9
9
|
Licensed under the MIT License (MIT), see
|
|
10
10
|
http://jedwatson.github.io/classnames
|
|
11
11
|
*/
|
|
12
|
-
var
|
|
13
|
-
function
|
|
14
|
-
return
|
|
12
|
+
var a;
|
|
13
|
+
function d() {
|
|
14
|
+
return a || (a = 1, function(n) {
|
|
15
15
|
(function() {
|
|
16
16
|
var s = {}.hasOwnProperty;
|
|
17
17
|
function e() {
|
|
@@ -42,8 +42,8 @@ function _() {
|
|
|
42
42
|
})();
|
|
43
43
|
}(p)), p.exports;
|
|
44
44
|
}
|
|
45
|
-
var
|
|
46
|
-
const m = /* @__PURE__ */ x(
|
|
45
|
+
var _ = d();
|
|
46
|
+
const m = /* @__PURE__ */ x(_), h = {
|
|
47
47
|
"purpur-container": "_purpur-container_1t9gx_1",
|
|
48
48
|
"purpur-container--xs": "_purpur-container--xs_1t9gx_13",
|
|
49
49
|
"purpur-container--sm": "_purpur-container--sm_1t9gx_24",
|
|
@@ -51,26 +51,39 @@ const m = /* @__PURE__ */ x(d), h = {
|
|
|
51
51
|
"purpur-container--lg": "_purpur-container--lg_1t9gx_42",
|
|
52
52
|
"purpur-container--xl": "_purpur-container--xl_1t9gx_45",
|
|
53
53
|
"purpur-container--xxl": "_purpur-container--xxl_1t9gx_48"
|
|
54
|
-
}, v = m.bind(h),
|
|
54
|
+
}, v = m.bind(h), N = {
|
|
55
55
|
XS: "xs",
|
|
56
56
|
SM: "sm",
|
|
57
57
|
MD: "md",
|
|
58
58
|
LG: "lg",
|
|
59
59
|
XL: "xl",
|
|
60
60
|
XXL: "xxl"
|
|
61
|
-
},
|
|
61
|
+
}, A = {
|
|
62
|
+
ARTICLE: "article",
|
|
63
|
+
ASIDE: "aside",
|
|
62
64
|
DIV: "div",
|
|
65
|
+
FOOTER: "footer",
|
|
66
|
+
HEADER: "header",
|
|
67
|
+
MAIN: "main",
|
|
68
|
+
NAV: "nav",
|
|
69
|
+
SECTION: "section",
|
|
63
70
|
SPAN: "span"
|
|
64
|
-
},
|
|
65
|
-
({
|
|
66
|
-
|
|
71
|
+
}, c = "purpur-container", S = f(
|
|
72
|
+
({
|
|
73
|
+
children: n,
|
|
74
|
+
className: s,
|
|
75
|
+
width: e = "xxl",
|
|
76
|
+
element: u = "div",
|
|
77
|
+
...i
|
|
78
|
+
}, r) => {
|
|
79
|
+
const t = v([s, c, `${c}--${e}`]);
|
|
67
80
|
return /* @__PURE__ */ l(u, { className: t, ref: r, ...i, children: n });
|
|
68
81
|
}
|
|
69
82
|
);
|
|
70
|
-
|
|
83
|
+
S.displayName = "Container";
|
|
71
84
|
export {
|
|
72
|
-
|
|
73
|
-
|
|
74
|
-
|
|
85
|
+
S as Container,
|
|
86
|
+
A as Element,
|
|
87
|
+
N as Width
|
|
75
88
|
};
|
|
76
89
|
//# sourceMappingURL=container.es.js.map
|
package/dist/container.es.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"container.es.js","sources":["../../../common/temp/node_modules/.pnpm/classnames@2.5.1/node_modules/classnames/bind.js","../src/container.tsx"],"sourcesContent":["/*!\n\tCopyright (c) 2018 Jed Watson.\n\tLicensed under the MIT License (MIT), see\n\thttp://jedwatson.github.io/classnames\n*/\n/* global define */\n\n(function () {\n\t'use strict';\n\n\tvar hasOwn = {}.hasOwnProperty;\n\n\tfunction classNames () {\n\t\tvar classes = '';\n\n\t\tfor (var i = 0; i < arguments.length; i++) {\n\t\t\tvar arg = arguments[i];\n\t\t\tif (arg) {\n\t\t\t\tclasses = appendClass(classes, parseValue.call(this, arg));\n\t\t\t}\n\t\t}\n\n\t\treturn classes;\n\t}\n\n\tfunction parseValue (arg) {\n\t\tif (typeof arg === 'string' || typeof arg === 'number') {\n\t\t\treturn this && this[arg] || arg;\n\t\t}\n\n\t\tif (typeof arg !== 'object') {\n\t\t\treturn '';\n\t\t}\n\n\t\tif (Array.isArray(arg)) {\n\t\t\treturn classNames.apply(this, arg);\n\t\t}\n\n\t\tif (arg.toString !== Object.prototype.toString && !arg.toString.toString().includes('[native code]')) {\n\t\t\treturn arg.toString();\n\t\t}\n\n\t\tvar classes = '';\n\n\t\tfor (var key in arg) {\n\t\t\tif (hasOwn.call(arg, key) && arg[key]) {\n\t\t\t\tclasses = appendClass(classes, this && this[key] || key);\n\t\t\t}\n\t\t}\n\n\t\treturn classes;\n\t}\n\n\tfunction appendClass (value, newClass) {\n\t\tif (!newClass) {\n\t\t\treturn value;\n\t\t}\n\t\n\t\tif (value) {\n\t\t\treturn value + ' ' + newClass;\n\t\t}\n\t\n\t\treturn value + newClass;\n\t}\n\n\tif (typeof module !== 'undefined' && module.exports) {\n\t\tclassNames.default = classNames;\n\t\tmodule.exports = classNames;\n\t} else if (typeof define === 'function' && typeof define.amd === 'object' && define.amd) {\n\t\t// register as 'classnames', consistent with npm package name\n\t\tdefine('classnames', [], function () {\n\t\t\treturn classNames;\n\t\t});\n\t} else {\n\t\twindow.classNames = classNames;\n\t}\n}());\n","import React, { forwardRef, type ReactNode } from \"react\";\nimport type { BaseProps } from \"@purpurds/common-types\";\nimport c from \"classnames/bind\";\n\nimport styles from \"./container.module.scss\";\n\nconst cx = c.bind(styles);\n\nexport const Width = {\n XS: \"xs\",\n SM: \"sm\",\n MD: \"md\",\n LG: \"lg\",\n XL: \"xl\",\n XXL: \"xxl\",\n} as const;\n\nexport type WidthType = (typeof Width)[keyof typeof Width];\n\nexport const Element = {\n DIV: \"div\",\n SPAN: \"span\",\n} as const;\n\nexport type ElementType = (typeof Element)[keyof typeof Element];\n\nexport type ContainerProps = Omit<BaseProps, \"children\"> & {\n children: ReactNode;\n width?: WidthType;\n element?: ElementType;\n};\n\nconst rootClassName = \"purpur-container\";\n\nexport const Container = forwardRef<
|
|
1
|
+
{"version":3,"file":"container.es.js","sources":["../../../common/temp/node_modules/.pnpm/classnames@2.5.1/node_modules/classnames/bind.js","../src/container.tsx"],"sourcesContent":["/*!\n\tCopyright (c) 2018 Jed Watson.\n\tLicensed under the MIT License (MIT), see\n\thttp://jedwatson.github.io/classnames\n*/\n/* global define */\n\n(function () {\n\t'use strict';\n\n\tvar hasOwn = {}.hasOwnProperty;\n\n\tfunction classNames () {\n\t\tvar classes = '';\n\n\t\tfor (var i = 0; i < arguments.length; i++) {\n\t\t\tvar arg = arguments[i];\n\t\t\tif (arg) {\n\t\t\t\tclasses = appendClass(classes, parseValue.call(this, arg));\n\t\t\t}\n\t\t}\n\n\t\treturn classes;\n\t}\n\n\tfunction parseValue (arg) {\n\t\tif (typeof arg === 'string' || typeof arg === 'number') {\n\t\t\treturn this && this[arg] || arg;\n\t\t}\n\n\t\tif (typeof arg !== 'object') {\n\t\t\treturn '';\n\t\t}\n\n\t\tif (Array.isArray(arg)) {\n\t\t\treturn classNames.apply(this, arg);\n\t\t}\n\n\t\tif (arg.toString !== Object.prototype.toString && !arg.toString.toString().includes('[native code]')) {\n\t\t\treturn arg.toString();\n\t\t}\n\n\t\tvar classes = '';\n\n\t\tfor (var key in arg) {\n\t\t\tif (hasOwn.call(arg, key) && arg[key]) {\n\t\t\t\tclasses = appendClass(classes, this && this[key] || key);\n\t\t\t}\n\t\t}\n\n\t\treturn classes;\n\t}\n\n\tfunction appendClass (value, newClass) {\n\t\tif (!newClass) {\n\t\t\treturn value;\n\t\t}\n\t\n\t\tif (value) {\n\t\t\treturn value + ' ' + newClass;\n\t\t}\n\t\n\t\treturn value + newClass;\n\t}\n\n\tif (typeof module !== 'undefined' && module.exports) {\n\t\tclassNames.default = classNames;\n\t\tmodule.exports = classNames;\n\t} else if (typeof define === 'function' && typeof define.amd === 'object' && define.amd) {\n\t\t// register as 'classnames', consistent with npm package name\n\t\tdefine('classnames', [], function () {\n\t\t\treturn classNames;\n\t\t});\n\t} else {\n\t\twindow.classNames = classNames;\n\t}\n}());\n","import React, { forwardRef, type ReactNode } from \"react\";\nimport type { BaseProps } from \"@purpurds/common-types\";\nimport c from \"classnames/bind\";\n\nimport styles from \"./container.module.scss\";\n\nconst cx = c.bind(styles);\n\nexport const Width = {\n XS: \"xs\",\n SM: \"sm\",\n MD: \"md\",\n LG: \"lg\",\n XL: \"xl\",\n XXL: \"xxl\",\n} as const;\n\nexport type WidthType = (typeof Width)[keyof typeof Width];\n\nexport const Element = {\n ARTICLE: \"article\",\n ASIDE: \"aside\",\n DIV: \"div\",\n FOOTER: \"footer\",\n HEADER: \"header\",\n MAIN: \"main\",\n NAV: \"nav\",\n SECTION: \"section\",\n SPAN: \"span\",\n} as const;\n\nexport type ElementType = (typeof Element)[keyof typeof Element];\n\nexport type ContainerProps = Omit<BaseProps, \"children\"> & {\n children: ReactNode;\n width?: WidthType;\n element?: ElementType;\n};\n\nconst rootClassName = \"purpur-container\";\n\nexport const Container = forwardRef<HTMLElement, ContainerProps>(\n (\n {\n children,\n className,\n width = \"xxl\",\n element: ElementTag = \"div\" as React.ElementType,\n ...props\n },\n ref\n ) => {\n const classes = cx([className, rootClassName, `${rootClassName}--${width}`]);\n\n return (\n <ElementTag className={classes} ref={ref} {...props}>\n {children}\n </ElementTag>\n );\n }\n);\n\nContainer.displayName = \"Container\";\n"],"names":["hasOwn","classNames","classes","i","arg","appendClass","parseValue","key","value","newClass","module","cx","c","styles","Width","Element","rootClassName","Container","forwardRef","children","className","width","ElementTag","props","ref"],"mappings":";;;;;;;;;;;;;;AAOA,KAAC,WAAY;AAGZ,UAAIA,IAAS,CAAA,EAAG;AAEhB,eAASC,IAAc;AAGtB,iBAFIC,IAAU,IAELC,IAAI,GAAGA,IAAI,UAAU,QAAQA,KAAK;AAC1C,cAAIC,IAAM,UAAUD,CAAC;AACrB,UAAIC,MACHF,IAAUG,EAAYH,GAASI,EAAW,KAAK,MAAMF,CAAG,CAAC;AAAA,QAE7D;AAEE,eAAOF;AAAA,MACT;AAEC,eAASI,EAAYF,GAAK;AACzB,YAAI,OAAOA,KAAQ,YAAY,OAAOA,KAAQ;AAC7C,iBAAO,QAAQ,KAAKA,CAAG,KAAKA;AAG7B,YAAI,OAAOA,KAAQ;AAClB,iBAAO;AAGR,YAAI,MAAM,QAAQA,CAAG;AACpB,iBAAOH,EAAW,MAAM,MAAMG,CAAG;AAGlC,YAAIA,EAAI,aAAa,OAAO,UAAU,YAAY,CAACA,EAAI,SAAS,SAAQ,EAAG,SAAS,eAAe;AAClG,iBAAOA,EAAI,SAAU;AAGtB,YAAIF,IAAU;AAEd,iBAASK,KAAOH;AACf,UAAIJ,EAAO,KAAKI,GAAKG,CAAG,KAAKH,EAAIG,CAAG,MACnCL,IAAUG,EAAYH,GAAS,QAAQ,KAAKK,CAAG,KAAKA,CAAG;AAIzD,eAAOL;AAAA,MACT;AAEC,eAASG,EAAaG,GAAOC,GAAU;AACtC,eAAKA,IAIDD,IACIA,IAAQ,MAAMC,IAGfD,IAAQC,IAPPD;AAAA,MAQV;AAEC,MAAqCE,EAAO,WAC3CT,EAAW,UAAUA,GACrBS,YAAiBT,KAOjB,OAAO,aAAaA;AAAA,IAEtB;;;;;;;;;;;;GCtEMU,IAAKC,EAAE,KAAKC,CAAM,GAEXC,IAAQ;AAAA,EACnB,IAAI;AAAA,EACJ,IAAI;AAAA,EACJ,IAAI;AAAA,EACJ,IAAI;AAAA,EACJ,IAAI;AAAA,EACJ,KAAK;AACP,GAIaC,IAAU;AAAA,EACrB,SAAS;AAAA,EACT,OAAO;AAAA,EACP,KAAK;AAAA,EACL,QAAQ;AAAA,EACR,QAAQ;AAAA,EACR,MAAM;AAAA,EACN,KAAK;AAAA,EACL,SAAS;AAAA,EACT,MAAM;AACR,GAUMC,IAAgB,oBAETC,IAAYC;AAAA,EACvB,CACE;AAAA,IACE,UAAAC;AAAA,IACA,WAAAC;AAAA,IACA,OAAAC,IAAQ;AAAA,IACR,SAASC,IAAa;AAAA,IACtB,GAAGC;AAAA,KAELC,MACG;AACG,UAAAtB,IAAUS,EAAG,CAACS,GAAWJ,GAAe,GAAGA,CAAa,KAAKK,CAAK,EAAE,CAAC;AAE3E,6BACGC,GAAW,EAAA,WAAWpB,GAAS,KAAAsB,GAAW,GAAGD,GAC3C,UAAAJ,GACH;AAAA,EAAA;AAGN;AAEAF,EAAU,cAAc;","x_google_ignoreList":[0]}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@purpurds/container",
|
|
3
|
-
"version": "8.
|
|
3
|
+
"version": "8.1.1",
|
|
4
4
|
"license": "AGPL-3.0-only",
|
|
5
5
|
"main": "./dist/container.cjs.js",
|
|
6
6
|
"types": "./dist/container.d.ts",
|
|
@@ -16,8 +16,8 @@
|
|
|
16
16
|
"source": "src/container.tsx",
|
|
17
17
|
"dependencies": {
|
|
18
18
|
"classnames": "~2.5.0",
|
|
19
|
-
"@purpurds/
|
|
20
|
-
"@purpurds/
|
|
19
|
+
"@purpurds/common-types": "8.1.1",
|
|
20
|
+
"@purpurds/tokens": "8.1.1"
|
|
21
21
|
},
|
|
22
22
|
"devDependencies": {
|
|
23
23
|
"@storybook/react-vite": "^9.0.18",
|
package/src/container.test.tsx
CHANGED
|
@@ -3,7 +3,7 @@ import * as matchers from "@testing-library/jest-dom/matchers";
|
|
|
3
3
|
import { render, screen } from "@testing-library/react";
|
|
4
4
|
import { describe, expect, it } from "vitest";
|
|
5
5
|
|
|
6
|
-
import { Container } from "./container";
|
|
6
|
+
import { Container, Element } from "./container";
|
|
7
7
|
|
|
8
8
|
expect.extend(matchers);
|
|
9
9
|
|
|
@@ -12,4 +12,102 @@ describe("Container", () => {
|
|
|
12
12
|
render(<Container data-testid="unique">Some text content</Container>);
|
|
13
13
|
expect(screen.getByTestId("unique")).toHaveTextContent("Some text content");
|
|
14
14
|
});
|
|
15
|
+
|
|
16
|
+
describe("element types", () => {
|
|
17
|
+
it("should render as div element by default", () => {
|
|
18
|
+
render(<Container data-testid="container-default">Content</Container>);
|
|
19
|
+
const container = screen.getByTestId("container-default");
|
|
20
|
+
expect(container.tagName.toLowerCase()).toBe("div");
|
|
21
|
+
});
|
|
22
|
+
|
|
23
|
+
it("should render as article element", () => {
|
|
24
|
+
render(
|
|
25
|
+
<Container element={Element.ARTICLE} data-testid="container-article">
|
|
26
|
+
Content
|
|
27
|
+
</Container>
|
|
28
|
+
);
|
|
29
|
+
const container = screen.getByTestId("container-article");
|
|
30
|
+
expect(container.tagName.toLowerCase()).toBe("article");
|
|
31
|
+
});
|
|
32
|
+
|
|
33
|
+
it("should render as aside element", () => {
|
|
34
|
+
render(
|
|
35
|
+
<Container element={Element.ASIDE} data-testid="container-aside">
|
|
36
|
+
Content
|
|
37
|
+
</Container>
|
|
38
|
+
);
|
|
39
|
+
const container = screen.getByTestId("container-aside");
|
|
40
|
+
expect(container.tagName.toLowerCase()).toBe("aside");
|
|
41
|
+
});
|
|
42
|
+
|
|
43
|
+
it("should render as div element", () => {
|
|
44
|
+
render(
|
|
45
|
+
<Container element={Element.DIV} data-testid="container-div">
|
|
46
|
+
Content
|
|
47
|
+
</Container>
|
|
48
|
+
);
|
|
49
|
+
const container = screen.getByTestId("container-div");
|
|
50
|
+
expect(container.tagName.toLowerCase()).toBe("div");
|
|
51
|
+
});
|
|
52
|
+
|
|
53
|
+
it("should render as footer element", () => {
|
|
54
|
+
render(
|
|
55
|
+
<Container element={Element.FOOTER} data-testid="container-footer">
|
|
56
|
+
Content
|
|
57
|
+
</Container>
|
|
58
|
+
);
|
|
59
|
+
const container = screen.getByTestId("container-footer");
|
|
60
|
+
expect(container.tagName.toLowerCase()).toBe("footer");
|
|
61
|
+
});
|
|
62
|
+
|
|
63
|
+
it("should render as header element", () => {
|
|
64
|
+
render(
|
|
65
|
+
<Container element={Element.HEADER} data-testid="container-header">
|
|
66
|
+
Content
|
|
67
|
+
</Container>
|
|
68
|
+
);
|
|
69
|
+
const container = screen.getByTestId("container-header");
|
|
70
|
+
expect(container.tagName.toLowerCase()).toBe("header");
|
|
71
|
+
});
|
|
72
|
+
|
|
73
|
+
it("should render as main element", () => {
|
|
74
|
+
render(
|
|
75
|
+
<Container element={Element.MAIN} data-testid="container-main">
|
|
76
|
+
Content
|
|
77
|
+
</Container>
|
|
78
|
+
);
|
|
79
|
+
const container = screen.getByTestId("container-main");
|
|
80
|
+
expect(container.tagName.toLowerCase()).toBe("main");
|
|
81
|
+
});
|
|
82
|
+
|
|
83
|
+
it("should render as nav element", () => {
|
|
84
|
+
render(
|
|
85
|
+
<Container element={Element.NAV} data-testid="container-nav">
|
|
86
|
+
Content
|
|
87
|
+
</Container>
|
|
88
|
+
);
|
|
89
|
+
const container = screen.getByTestId("container-nav");
|
|
90
|
+
expect(container.tagName.toLowerCase()).toBe("nav");
|
|
91
|
+
});
|
|
92
|
+
|
|
93
|
+
it("should render as section element", () => {
|
|
94
|
+
render(
|
|
95
|
+
<Container element={Element.SECTION} data-testid="container-section">
|
|
96
|
+
Content
|
|
97
|
+
</Container>
|
|
98
|
+
);
|
|
99
|
+
const container = screen.getByTestId("container-section");
|
|
100
|
+
expect(container.tagName.toLowerCase()).toBe("section");
|
|
101
|
+
});
|
|
102
|
+
|
|
103
|
+
it("should render as span element", () => {
|
|
104
|
+
render(
|
|
105
|
+
<Container element={Element.SPAN} data-testid="container-span">
|
|
106
|
+
Content
|
|
107
|
+
</Container>
|
|
108
|
+
);
|
|
109
|
+
const container = screen.getByTestId("container-span");
|
|
110
|
+
expect(container.tagName.toLowerCase()).toBe("span");
|
|
111
|
+
});
|
|
112
|
+
});
|
|
15
113
|
});
|
package/src/container.tsx
CHANGED
|
@@ -18,7 +18,14 @@ export const Width = {
|
|
|
18
18
|
export type WidthType = (typeof Width)[keyof typeof Width];
|
|
19
19
|
|
|
20
20
|
export const Element = {
|
|
21
|
+
ARTICLE: "article",
|
|
22
|
+
ASIDE: "aside",
|
|
21
23
|
DIV: "div",
|
|
24
|
+
FOOTER: "footer",
|
|
25
|
+
HEADER: "header",
|
|
26
|
+
MAIN: "main",
|
|
27
|
+
NAV: "nav",
|
|
28
|
+
SECTION: "section",
|
|
22
29
|
SPAN: "span",
|
|
23
30
|
} as const;
|
|
24
31
|
|
|
@@ -32,13 +39,23 @@ export type ContainerProps = Omit<BaseProps, "children"> & {
|
|
|
32
39
|
|
|
33
40
|
const rootClassName = "purpur-container";
|
|
34
41
|
|
|
35
|
-
export const Container = forwardRef<
|
|
36
|
-
(
|
|
42
|
+
export const Container = forwardRef<HTMLElement, ContainerProps>(
|
|
43
|
+
(
|
|
44
|
+
{
|
|
45
|
+
children,
|
|
46
|
+
className,
|
|
47
|
+
width = "xxl",
|
|
48
|
+
element: ElementTag = "div" as React.ElementType,
|
|
49
|
+
...props
|
|
50
|
+
},
|
|
51
|
+
ref
|
|
52
|
+
) => {
|
|
37
53
|
const classes = cx([className, rootClassName, `${rootClassName}--${width}`]);
|
|
54
|
+
|
|
38
55
|
return (
|
|
39
|
-
<
|
|
56
|
+
<ElementTag className={classes} ref={ref} {...props}>
|
|
40
57
|
{children}
|
|
41
|
-
</
|
|
58
|
+
</ElementTag>
|
|
42
59
|
);
|
|
43
60
|
}
|
|
44
61
|
);
|