v-eris 1.0.220 → 1.0.222
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/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "v-eris",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.222",
|
|
4
4
|
"description": "",
|
|
5
5
|
"bootstrapVersion": 3,
|
|
6
6
|
"styleLoaders": [],
|
|
@@ -50,6 +50,7 @@
|
|
|
50
50
|
"html-webpack-plugin": "^5.5.3",
|
|
51
51
|
"module-alias": "^2.2.3",
|
|
52
52
|
"node-sass": "^9.0.0",
|
|
53
|
+
"qs": "^6.14.0",
|
|
53
54
|
"sass-loader": "^13.3.2",
|
|
54
55
|
"style-loader": "^3.3.3",
|
|
55
56
|
"ts-loader": "^9.4.4",
|
|
@@ -6,7 +6,7 @@ var react_1 = tslib_1.__importDefault(require("react"));
|
|
|
6
6
|
var props_1 = require("../../utility/props");
|
|
7
7
|
require("./index.scss");
|
|
8
8
|
var Row = function (props) {
|
|
9
|
-
var className = props.className, children = props.children, style = props.style, flex = props.flex, gap = props.gap, stretch = props.stretch, reverse = props.reverse, rest = tslib_1.__rest(props, ["className", "children", "style", "flex", "gap", "stretch", "reverse"]);
|
|
9
|
+
var className = props.className, children = props.children, style = props.style, flex = props.flex, gap = props.gap, stretch = props.stretch, reverse = props.reverse, align = props.align, justify = props.justify, rest = tslib_1.__rest(props, ["className", "children", "style", "flex", "gap", "stretch", "reverse", "align", "justify"]);
|
|
10
10
|
var inlineStyle = tslib_1.__assign({}, style);
|
|
11
11
|
if (flex)
|
|
12
12
|
inlineStyle["flex"] = props_1.Props.parseFlex(flex);
|
|
@@ -14,6 +14,10 @@ var Row = function (props) {
|
|
|
14
14
|
inlineStyle["gap"] = props_1.Props.parseGap(gap);
|
|
15
15
|
if (stretch)
|
|
16
16
|
inlineStyle["width"] = "100%";
|
|
17
|
+
if (align)
|
|
18
|
+
inlineStyle["align-items"] = align;
|
|
19
|
+
if (justify)
|
|
20
|
+
inlineStyle["justify-content"] = justify;
|
|
17
21
|
return (react_1.default.createElement("div", tslib_1.__assign({ className: props_1.Props.className("row", className, { reverse: reverse }), style: inlineStyle }, rest), children));
|
|
18
22
|
};
|
|
19
23
|
exports.Row = Row;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../../../source/components/Row/index.tsx"],"names":[],"mappings":";;;;AAAA,wDAA0C;AAE1C,6CAA4C;AAE5C,wBAAqB;AAEd,IAAM,GAAG,GAAG,UAAE,KAAK;IAExB,IAAA,SAAS,
|
|
1
|
+
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../../../source/components/Row/index.tsx"],"names":[],"mappings":";;;;AAAA,wDAA0C;AAE1C,6CAA4C;AAE5C,wBAAqB;AAEd,IAAM,GAAG,GAAG,UAAE,KAAK;IAExB,IAAA,SAAS,GAUN,KAAK,UAVC,EACT,QAAQ,GASL,KAAK,SATA,EACR,KAAK,GAQF,KAAK,MARH,EACL,IAAI,GAOD,KAAK,KAPJ,EACJ,GAAG,GAMA,KAAK,IANL,EACH,OAAO,GAKJ,KAAK,QALD,EACP,OAAO,GAIJ,KAAK,QAJD,EACP,KAAK,GAGF,KAAK,MAHH,EACL,OAAO,GAEJ,KAAK,QAFD,EACJ,IAAI,kBACJ,KAAK,EAXL,2FAWH,CADO,CACE;IAEV,IAAI,WAAW,wBAAQ,KAAK,CAAE,CAAC;IAE/B,IAAI,IAAI;QACP,WAAW,CAAE,MAAM,CAAE,GAAG,aAAK,CAAC,SAAS,CAAE,IAAI,CAAE,CAAC;IAEjD,IAAI,GAAG;QACN,WAAW,CAAE,KAAK,CAAE,GAAG,aAAK,CAAC,QAAQ,CAAE,GAAG,CAAE,CAAC;IAE9C,IAAI,OAAO;QACV,WAAW,CAAE,OAAO,CAAE,GAAG,MAAM,CAAC;IAEjC,IAAI,KAAK;QACR,WAAW,CAAE,aAAa,CAAE,GAAG,KAAK,CAAC;IAEtC,IAAI,OAAO;QACV,WAAW,CAAE,iBAAiB,CAAE,GAAG,OAAO,CAAC;IAE5C,OAAO,CAAC,wDACP,SAAS,EACR,aAAK,CAAC,SAAS,CAAE,KAAK,EAAE,SAAS,EAAE,EAAE,OAAO,EAAE,OAAO,EAAE,CAAE,EAE1D,KAAK,EAAG,WAAW,IACd,IAAI,GAET,QAAQ,CACF,CAAC,CAAC;AACV,CAAC,CAAC;AAxCW,QAAA,GAAG,OAwCd"}
|
|
@@ -3,7 +3,7 @@ import React from "react";
|
|
|
3
3
|
import { Props } from "../../utility/props";
|
|
4
4
|
import "./index.scss";
|
|
5
5
|
export var Row = function (props) {
|
|
6
|
-
var className = props.className, children = props.children, style = props.style, flex = props.flex, gap = props.gap, stretch = props.stretch, reverse = props.reverse, rest = __rest(props, ["className", "children", "style", "flex", "gap", "stretch", "reverse"]);
|
|
6
|
+
var className = props.className, children = props.children, style = props.style, flex = props.flex, gap = props.gap, stretch = props.stretch, reverse = props.reverse, align = props.align, justify = props.justify, rest = __rest(props, ["className", "children", "style", "flex", "gap", "stretch", "reverse", "align", "justify"]);
|
|
7
7
|
var inlineStyle = __assign({}, style);
|
|
8
8
|
if (flex)
|
|
9
9
|
inlineStyle["flex"] = Props.parseFlex(flex);
|
|
@@ -11,6 +11,10 @@ export var Row = function (props) {
|
|
|
11
11
|
inlineStyle["gap"] = Props.parseGap(gap);
|
|
12
12
|
if (stretch)
|
|
13
13
|
inlineStyle["width"] = "100%";
|
|
14
|
+
if (align)
|
|
15
|
+
inlineStyle["align-items"] = align;
|
|
16
|
+
if (justify)
|
|
17
|
+
inlineStyle["justify-content"] = justify;
|
|
14
18
|
return (React.createElement("div", __assign({ className: Props.className("row", className, { reverse: reverse }), style: inlineStyle }, rest), children));
|
|
15
19
|
};
|
|
16
20
|
//# sourceMappingURL=index.js.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../../../source/components/Row/index.tsx"],"names":[],"mappings":";AAAA,OAAO,KAAqB,MAAM,OAAO,CAAC;AAE1C,OAAO,EAAE,KAAK,EAAE,MAAM,qBAAqB,CAAC;AAE5C,OAAO,cAAc,CAAA;AAErB,MAAM,CAAC,IAAM,GAAG,GAAG,UAAE,KAAK;IAExB,IAAA,SAAS,
|
|
1
|
+
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../../../source/components/Row/index.tsx"],"names":[],"mappings":";AAAA,OAAO,KAAqB,MAAM,OAAO,CAAC;AAE1C,OAAO,EAAE,KAAK,EAAE,MAAM,qBAAqB,CAAC;AAE5C,OAAO,cAAc,CAAA;AAErB,MAAM,CAAC,IAAM,GAAG,GAAG,UAAE,KAAK;IAExB,IAAA,SAAS,GAUN,KAAK,UAVC,EACT,QAAQ,GASL,KAAK,SATA,EACR,KAAK,GAQF,KAAK,MARH,EACL,IAAI,GAOD,KAAK,KAPJ,EACJ,GAAG,GAMA,KAAK,IANL,EACH,OAAO,GAKJ,KAAK,QALD,EACP,OAAO,GAIJ,KAAK,QAJD,EACP,KAAK,GAGF,KAAK,MAHH,EACL,OAAO,GAEJ,KAAK,QAFD,EACJ,IAAI,UACJ,KAAK,EAXL,2FAWH,CADO,CACE;IAEV,IAAI,WAAW,gBAAQ,KAAK,CAAE,CAAC;IAE/B,IAAI,IAAI;QACP,WAAW,CAAE,MAAM,CAAE,GAAG,KAAK,CAAC,SAAS,CAAE,IAAI,CAAE,CAAC;IAEjD,IAAI,GAAG;QACN,WAAW,CAAE,KAAK,CAAE,GAAG,KAAK,CAAC,QAAQ,CAAE,GAAG,CAAE,CAAC;IAE9C,IAAI,OAAO;QACV,WAAW,CAAE,OAAO,CAAE,GAAG,MAAM,CAAC;IAEjC,IAAI,KAAK;QACR,WAAW,CAAE,aAAa,CAAE,GAAG,KAAK,CAAC;IAEtC,IAAI,OAAO;QACV,WAAW,CAAE,iBAAiB,CAAE,GAAG,OAAO,CAAC;IAE5C,OAAO,CAAC,sCACP,SAAS,EACR,KAAK,CAAC,SAAS,CAAE,KAAK,EAAE,SAAS,EAAE,EAAE,OAAO,EAAE,OAAO,EAAE,CAAE,EAE1D,KAAK,EAAG,WAAW,IACd,IAAI,GAET,QAAQ,CACF,CAAC,CAAC;AACV,CAAC,CAAC"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../source/components/Row/index.tsx"],"names":[],"mappings":"AAIA,OAAO,cAAc,CAAA;AAErB,eAAO,MAAM,GAAG,
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../source/components/Row/index.tsx"],"names":[],"mappings":"AAIA,OAAO,cAAc,CAAA;AAErB,eAAO,MAAM,GAAG,qBAwCf,CAAC"}
|