@planningcenter/tapestry-react 1.3.0 → 1.4.0
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/cjs/Field/Field.js +1 -0
- package/dist/esm/Field/Field.js +1 -0
- package/package.json +2 -2
- package/src/Field/Field.js +1 -0
package/dist/cjs/Field/Field.js
CHANGED
|
@@ -103,6 +103,7 @@ var Field = /*#__PURE__*/function (_Component) {
|
|
|
103
103
|
order: inline ? 0 : 1,
|
|
104
104
|
grow: 1,
|
|
105
105
|
marginTop: inline || !label ? undefined : 1,
|
|
106
|
+
maxWidth: "100%",
|
|
106
107
|
spacing: spacing
|
|
107
108
|
}, (0, _utils.cloneChildren)(children, function (child, _ref) {
|
|
108
109
|
var firstChild = _ref.firstChild;
|
package/dist/esm/Field/Field.js
CHANGED
|
@@ -87,6 +87,7 @@ var Field = /*#__PURE__*/function (_Component) {
|
|
|
87
87
|
order: inline ? 0 : 1,
|
|
88
88
|
grow: 1,
|
|
89
89
|
marginTop: inline || !label ? undefined : 1,
|
|
90
|
+
maxWidth: "100%",
|
|
90
91
|
spacing: spacing
|
|
91
92
|
}, cloneChildren(children, function (child, _ref) {
|
|
92
93
|
var firstChild = _ref.firstChild;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@planningcenter/tapestry-react",
|
|
3
|
-
"version": "1.
|
|
3
|
+
"version": "1.4.0",
|
|
4
4
|
"description": "A collection of flexible React components to help you build resilient, accessible user interfaces quickly and effectively.",
|
|
5
5
|
"author": "Front End Systems Engineering <frontend@pco.bz>",
|
|
6
6
|
"main": "dist/cjs/index.js",
|
|
@@ -90,7 +90,7 @@
|
|
|
90
90
|
},
|
|
91
91
|
"dependencies": {
|
|
92
92
|
"@popmotion/popcorn": "^0.4.4",
|
|
93
|
-
"@popperjs/core": "
|
|
93
|
+
"@popperjs/core": "~2.9.0",
|
|
94
94
|
"@testing-library/jest-dom": "^5.11.9",
|
|
95
95
|
"@testing-library/user-event": "^13.1.9",
|
|
96
96
|
"camel-to-kebab": "^1.1.0",
|
package/src/Field/Field.js
CHANGED