@gfazioli/mantine-flip 1.0.15 → 1.0.17
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/CHANGELOG.md +7 -1
- package/CONTRIBUTING.md +1 -1
- package/README.md +1 -0
- package/dist/styles.layer.css +1 -1
- package/dist/types/Flip.context.d.ts +1 -1
- package/dist/types/Flip.d.ts +1 -1
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,8 +1,14 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
-
The following is a list of notable changes to the Mantine
|
|
3
|
+
The following is a list of notable changes to the Mantine Flip component.
|
|
4
4
|
Minor versions that are not listed in the changelog are bug fixes and small improvements.
|
|
5
5
|
|
|
6
|
+
## 1.0.16 (2024-06-10)
|
|
7
|
+
|
|
8
|
+
- 📝 Minor fixes on CHANGELOG, CONTRIBUTING and CODE_OF_CONDUCT
|
|
9
|
+
- 📦️ Updated Mantine 7.10.1
|
|
10
|
+
- 👷 Updated script release
|
|
11
|
+
|
|
6
12
|
## 1.0.15 (2024-03-17)
|
|
7
13
|
|
|
8
14
|
- 📝 Added CHANGELOG, CONTRIBUTING and CODE_OF_CONDUCT
|
package/CONTRIBUTING.md
CHANGED
package/README.md
CHANGED
|
@@ -24,6 +24,7 @@
|
|
|
24
24
|
This component is created on top of the [Mantine](https://mantine.dev/) library.
|
|
25
25
|
It allows for easy management of two separate views, such as in the cases of a registration form and a login form.
|
|
26
26
|
Essentially, when switching between views, the component will handle the flip animation.
|
|
27
|
+
You can find more components on the [Mantine Extensions Hub](https://mantine-extensions.vercel.app/) library.
|
|
27
28
|
|
|
28
29
|
## Installation
|
|
29
30
|
|
package/dist/styles.layer.css
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
@layer mantine {.me-51f1fe22{perspective:var(--flip-perspective,"1000px")}.me-ae362a36{height:100%;position:relative;transform-style:preserve-3d;transition:transform var(--flip-transition-duration,".1") var(--flip-transition-timing-function,"ease-in-out");width:100%}.me-bdaa9859{backface-visibility:hidden;height:100%;position:absolute;width:100%}}
|
|
1
|
+
@layer mantine-flip {.me-51f1fe22{perspective:var(--flip-perspective,"1000px")}.me-ae362a36{height:100%;position:relative;transform-style:preserve-3d;transition:transform var(--flip-transition-duration,".1") var(--flip-transition-timing-function,"ease-in-out");width:100%}.me-bdaa9859{backface-visibility:hidden;height:100%;position:absolute;width:100%}}
|
|
@@ -5,5 +5,5 @@ interface FlipContext {
|
|
|
5
5
|
export declare const FlipContextProvider: ({ children, value }: {
|
|
6
6
|
value: FlipContext;
|
|
7
7
|
children: import("react").ReactNode;
|
|
8
|
-
}) => import("react").JSX.Element, useFlipContext: () => FlipContext;
|
|
8
|
+
}) => import("react/jsx-runtime").JSX.Element, useFlipContext: () => FlipContext;
|
|
9
9
|
export {};
|
package/dist/types/Flip.d.ts
CHANGED
|
@@ -51,7 +51,7 @@ export declare const Flip: (<C = "div">(props: import("@mantine/core").Polymorph
|
|
|
51
51
|
ref?: any;
|
|
52
52
|
renderRoot?: (props: any) => any;
|
|
53
53
|
}) | (FlipProps & {
|
|
54
|
-
component: React.ElementType<any>;
|
|
54
|
+
component: React.ElementType<any, keyof React.JSX.IntrinsicElements>;
|
|
55
55
|
renderRoot?: (props: Record<string, any>) => any;
|
|
56
56
|
})>, never> & import("@mantine/core/lib/core/factory/factory").ThemeExtend<{
|
|
57
57
|
props: FlipProps;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@gfazioli/mantine-flip",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.17",
|
|
4
4
|
"description": "Flip component is a wrapper for any component that can be flipped. It is used to create cards, flip boxes and more.",
|
|
5
5
|
"homepage": "https://gfazioli.github.io/mantine-flip/",
|
|
6
6
|
"packageManager": "yarn@4.0.1",
|