@sendoutcards/quantum-design-ui 1.7.74 → 1.7.75
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/index.es.js
CHANGED
|
@@ -15021,13 +15021,15 @@ var Transition = function (_a) {
|
|
|
15021
15021
|
color: "primaryBody",
|
|
15022
15022
|
content: title,
|
|
15023
15023
|
outset: 'x0',
|
|
15024
|
+
alignment: "center",
|
|
15024
15025
|
inset: {
|
|
15025
15026
|
bottom: 'x1'
|
|
15026
15027
|
}
|
|
15027
15028
|
}), jsx(Text, {
|
|
15028
15029
|
type: loadedStatus === 'error' ? 'body' : 'largeBody',
|
|
15029
15030
|
color: "primaryHeading",
|
|
15030
|
-
content: subtitle
|
|
15031
|
+
content: subtitle,
|
|
15032
|
+
alignment: "center"
|
|
15031
15033
|
})));
|
|
15032
15034
|
};
|
|
15033
15035
|
|
package/package.json
CHANGED
|
@@ -1,17 +0,0 @@
|
|
|
1
|
-
import React from 'react';
|
|
2
|
-
import { HOCBaseProps } from "../../helpers/hoc-types/hocBasePropTypes";
|
|
3
|
-
import { HOCMotionProps } from "../../helpers/hoc-types/hocMotionTypes";
|
|
4
|
-
export declare type DivProps = {
|
|
5
|
-
children?: React.ReactNode;
|
|
6
|
-
outsideClick?: () => void;
|
|
7
|
-
clickElementBypass?: string;
|
|
8
|
-
} & HOCBaseProps & HOCMotionProps;
|
|
9
|
-
export declare const Companion: React.ForwardRefExoticComponent<{
|
|
10
|
-
children?: React.ReactNode;
|
|
11
|
-
outsideClick?: (() => void) | undefined;
|
|
12
|
-
clickElementBypass?: string | undefined;
|
|
13
|
-
} & HOCBaseProps & {
|
|
14
|
-
className?: string | undefined;
|
|
15
|
-
motionKey?: string | number | undefined;
|
|
16
|
-
id?: string | undefined;
|
|
17
|
-
} & import("framer-motion").MotionProps & React.RefAttributes<HTMLDivElement>>;
|