@planningcenter/tapestry-migration-cli 3.0.0-rc.14 → 3.0.0-rc.16
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.
|
@@ -2611,7 +2611,7 @@ function LoadingSpinner() {
|
|
|
2611
2611
|
const buildComponentClassName$1 = ({ className, fullWidth, kind, loading, size }) => {
|
|
2612
2612
|
return classNames(kind && "tds-btn", size && size !== "md" && COMPONENT_SIZE_CLASS_MAP[size], kind && COMPONENT_KIND_CLASS_MAP[kind], fullWidth && "tds-btn--full-width", loading && "tds-btn--loading", className);
|
|
2613
2613
|
};
|
|
2614
|
-
const BaseButton = reactExports.forwardRef(({
|
|
2614
|
+
const BaseButton = reactExports.forwardRef(({ "aria-label": ariaLabel, className, disabled = false, fullWidth, kind = "secondary", label, loading = false, loadingAriaLabel = "Loading...", prefix, size, suffix, ...restProps }, ref) => {
|
|
2615
2615
|
const combinedClassName = buildComponentClassName$1({
|
|
2616
2616
|
className,
|
|
2617
2617
|
fullWidth,
|
|
@@ -2669,7 +2669,7 @@ const DropdownButton = reactExports.forwardRef((props, ref) => {
|
|
|
2669
2669
|
return React.createElement(BaseButton, { ref, ...props, ...dropdownProps(props) });
|
|
2670
2670
|
});
|
|
2671
2671
|
DropdownButton.displayName = "DropdownButton";
|
|
2672
|
-
const IconButton = reactExports.forwardRef(({
|
|
2672
|
+
const IconButton = reactExports.forwardRef(({ className, icon, ...restProps }, ref) => {
|
|
2673
2673
|
const iconOnlyClassName = classNames("tds-btn--icononly", className);
|
|
2674
2674
|
return React.createElement(BaseButton, { ...restProps, label: icon, className: iconOnlyClassName, ref });
|
|
2675
2675
|
});
|
|
@@ -2690,14 +2690,14 @@ function needsAttentionProps({ className, needsAttention }) {
|
|
|
2690
2690
|
className
|
|
2691
2691
|
};
|
|
2692
2692
|
}
|
|
2693
|
-
const PageHeaderActionsDropdownButton = reactExports.forwardRef(({
|
|
2693
|
+
const PageHeaderActionsDropdownButton = reactExports.forwardRef(({ className, needsAttention, ...props }, ref) => {
|
|
2694
2694
|
return React.createElement(DropdownButton, { ref, ...props, kind: "secondary-page-header", ...needsAttentionProps({ className, needsAttention }) });
|
|
2695
2695
|
});
|
|
2696
2696
|
PageHeaderActionsDropdownButton.displayName = "PageHeaderActionsDropdownButton";
|
|
2697
2697
|
const buildComponentClassName = (size, kind, className) => {
|
|
2698
2698
|
return classNames("tds-btn", size && size !== "md" && kind && COMPONENT_SIZE_CLASS_MAP[size], kind && COMPONENT_KIND_CLASS_MAP[kind], className);
|
|
2699
2699
|
};
|
|
2700
|
-
const BaseLink = reactExports.forwardRef(({
|
|
2700
|
+
const BaseLink = reactExports.forwardRef(({ children, className, external = false, href, kind, label, prefix, size, suffix, ...restProps }, ref) => {
|
|
2701
2701
|
const combinedClassName = buildComponentClassName(size, kind, className);
|
|
2702
2702
|
const prefixElement = enhanceElementWithClassName(prefix, "prefix");
|
|
2703
2703
|
const suffixElement = enhanceElementWithClassName(suffix, "suffix");
|
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.16",
|
|
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": "3e9aebb07141e08923ceb00efffb0f662d56dcdc"
|
|
55
55
|
}
|