@sikka/hawa 0.30.6-next → 0.30.8-next
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/blocks/auth/index.d.mts +4 -0
- package/dist/blocks/auth/index.d.ts +4 -0
- package/dist/blocks/auth/index.js +335 -314
- package/dist/blocks/auth/index.mjs +335 -314
- package/dist/blocks/index.d.mts +4 -0
- package/dist/blocks/index.d.ts +4 -0
- package/dist/blocks/index.js +335 -314
- package/dist/blocks/index.mjs +335 -314
- package/dist/index.css +9 -0
- package/dist/index.d.mts +4 -0
- package/dist/index.d.ts +4 -0
- package/dist/index.js +335 -314
- package/dist/index.mjs +335 -314
- package/package.json +1 -1
package/dist/index.css
CHANGED
@@ -2954,6 +2954,11 @@ input[type="number"]::-webkit-inner-spin-button,
|
|
2954
2954
|
.hawa-opacity-90 {
|
2955
2955
|
opacity: 0.9;
|
2956
2956
|
}
|
2957
|
+
.\!hawa-shadow-none {
|
2958
|
+
--tw-shadow: 0 0 #0000 !important;
|
2959
|
+
--tw-shadow-colored: 0 0 #0000 !important;
|
2960
|
+
box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow) !important;
|
2961
|
+
}
|
2957
2962
|
.hawa-shadow {
|
2958
2963
|
--tw-shadow: 0 1px 3px 0 rgb(0 0 0 / 0.1), 0 1px 2px -1px rgb(0 0 0 / 0.1);
|
2959
2964
|
--tw-shadow-colored: 0 1px 3px 0 var(--tw-shadow-color), 0 1px 2px -1px var(--tw-shadow-color);
|
@@ -2994,6 +2999,10 @@ input[type="number"]::-webkit-inner-spin-button,
|
|
2994
2999
|
.hawa-ring-offset-background {
|
2995
3000
|
--tw-ring-offset-color: hsl(var(--background));
|
2996
3001
|
}
|
3002
|
+
.\!hawa-drop-shadow-none {
|
3003
|
+
--tw-drop-shadow: drop-shadow(0 0 #0000) !important;
|
3004
|
+
filter: var(--tw-blur) var(--tw-brightness) var(--tw-contrast) var(--tw-grayscale) var(--tw-hue-rotate) var(--tw-invert) var(--tw-saturate) var(--tw-sepia) var(--tw-drop-shadow) !important;
|
3005
|
+
}
|
2997
3006
|
.hawa-drop-shadow-md {
|
2998
3007
|
--tw-drop-shadow: drop-shadow(0 4px 3px rgb(0 0 0 / 0.07)) drop-shadow(0 2px 2px rgb(0 0 0 / 0.06));
|
2999
3008
|
filter: var(--tw-blur) var(--tw-brightness) var(--tw-contrast) var(--tw-grayscale) var(--tw-hue-rotate) var(--tw-invert) var(--tw-saturate) var(--tw-sepia) var(--tw-drop-shadow);
|
package/dist/index.d.mts
CHANGED
@@ -1533,6 +1533,8 @@ type LoginFormTypes = {
|
|
1533
1533
|
additionalButtons?: any;
|
1534
1534
|
/** The allowed length of the password input field */
|
1535
1535
|
passwordLength?: number;
|
1536
|
+
/** If true, the form is displayed without a card container styling.*/
|
1537
|
+
cardless?: boolean;
|
1536
1538
|
};
|
1537
1539
|
declare const LoginForm: FC<LoginFormTypes>;
|
1538
1540
|
|
@@ -1602,6 +1604,8 @@ type RegisterFormTypes = {
|
|
1602
1604
|
form?: string;
|
1603
1605
|
card?: string;
|
1604
1606
|
};
|
1607
|
+
/** If true, the form is displayed without a card container styling.*/
|
1608
|
+
cardless?: boolean;
|
1605
1609
|
};
|
1606
1610
|
declare const RegisterForm: FC<RegisterFormTypes>;
|
1607
1611
|
|
package/dist/index.d.ts
CHANGED
@@ -1533,6 +1533,8 @@ type LoginFormTypes = {
|
|
1533
1533
|
additionalButtons?: any;
|
1534
1534
|
/** The allowed length of the password input field */
|
1535
1535
|
passwordLength?: number;
|
1536
|
+
/** If true, the form is displayed without a card container styling.*/
|
1537
|
+
cardless?: boolean;
|
1536
1538
|
};
|
1537
1539
|
declare const LoginForm: FC<LoginFormTypes>;
|
1538
1540
|
|
@@ -1602,6 +1604,8 @@ type RegisterFormTypes = {
|
|
1602
1604
|
form?: string;
|
1603
1605
|
card?: string;
|
1604
1606
|
};
|
1607
|
+
/** If true, the form is displayed without a card container styling.*/
|
1608
|
+
cardless?: boolean;
|
1605
1609
|
};
|
1606
1610
|
declare const RegisterForm: FC<RegisterFormTypes>;
|
1607
1611
|
|