@planningcenter/tapestry-migration-cli 3.0.0-rc.24 → 3.0.0-rc.26
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.
|
@@ -2694,11 +2694,11 @@ const PageHeaderActionsDropdownButton = reactExports.forwardRef(({ className, ne
|
|
|
2694
2694
|
return React.createElement(DropdownButton, { ref, ...props, kind: "secondary-page-header", ...needsAttentionProps({ className, needsAttention }) });
|
|
2695
2695
|
});
|
|
2696
2696
|
PageHeaderActionsDropdownButton.displayName = "PageHeaderActionsDropdownButton";
|
|
2697
|
-
const buildComponentClassName = (size, kind, className) => {
|
|
2698
|
-
return classNames("tds-btn", size && size !== "md" && kind && COMPONENT_SIZE_CLASS_MAP[size], kind && COMPONENT_KIND_CLASS_MAP[kind], className);
|
|
2697
|
+
const buildComponentClassName = (size, kind, fullWidth, className) => {
|
|
2698
|
+
return classNames("tds-btn", size && size !== "md" && kind && COMPONENT_SIZE_CLASS_MAP[size], kind && COMPONENT_KIND_CLASS_MAP[kind], fullWidth && "tds-btn--full-width", className);
|
|
2699
2699
|
};
|
|
2700
|
-
const BaseLink = reactExports.forwardRef(({ children, className, external = false, href, kind, label, prefix, size, suffix, ...restProps }, ref) => {
|
|
2701
|
-
const combinedClassName = buildComponentClassName(size, kind, className);
|
|
2700
|
+
const BaseLink = reactExports.forwardRef(({ children, className, external = false, fullWidth, href, kind, label, prefix, size, suffix, ...restProps }, ref) => {
|
|
2701
|
+
const combinedClassName = buildComponentClassName(size, kind, fullWidth, className);
|
|
2702
2702
|
const prefixElement = enhanceElementWithClassName(prefix, "prefix");
|
|
2703
2703
|
const suffixElement = enhanceElementWithClassName(suffix, "suffix");
|
|
2704
2704
|
const externalProps = external ? { rel: "noopener noreferrer", target: "_blank" } : {};
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@planningcenter/tapestry-migration-cli",
|
|
3
|
-
"version": "3.0.0-rc.
|
|
3
|
+
"version": "3.0.0-rc.26",
|
|
4
4
|
"description": "CLI tool for Tapestry migrations",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "dist/index.js",
|
|
@@ -51,5 +51,5 @@
|
|
|
51
51
|
"publishConfig": {
|
|
52
52
|
"access": "public"
|
|
53
53
|
},
|
|
54
|
-
"gitHead": "
|
|
54
|
+
"gitHead": "aea28b347c2ec3f8fa459eb4dbe58e47710d54a5"
|
|
55
55
|
}
|