sixseconds-modules 3.0.16 → 3.0.18
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/components/common/CriticalStyles.d.ts +9 -0
- package/dist/components/common/icons.d.ts +1 -0
- package/dist/components/common/index.d.ts +1 -0
- package/dist/index.cjs.js +99 -30
- package/dist/index.cjs.js.map +1 -1
- package/dist/index.es.js +99 -30
- package/dist/index.es.js.map +1 -1
- package/dist/styles/critical.d.ts +26 -0
- package/dist/utils/validation.d.ts +9 -0
- package/package.json +1 -1
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Renders the header's boot-time CSS inline, in the same HTML as the header
|
|
3
|
+
* markup, so the first paint of an SSR page is already styled instead of
|
|
4
|
+
* flashing an unstyled header until the JS-injected stylesheet arrives.
|
|
5
|
+
* Deliberately not `<style precedence>` (React 19 only) — the library also
|
|
6
|
+
* supports React 18. See `styles/critical.ts` for the cascade reasoning.
|
|
7
|
+
*/
|
|
8
|
+
export declare function CriticalStyles(): import("react").JSX.Element;
|
|
9
|
+
export default CriticalStyles;
|
|
@@ -4,4 +4,5 @@ export declare const CloseIcon: (props: SVGProps<SVGSVGElement>) => import("reac
|
|
|
4
4
|
export declare const CheckIcon: (props: SVGProps<SVGSVGElement>) => import("react").JSX.Element;
|
|
5
5
|
export declare const CaretDownIcon: (props: SVGProps<SVGSVGElement>) => import("react").JSX.Element;
|
|
6
6
|
export declare const EyeOffIcon: (props: SVGProps<SVGSVGElement>) => import("react").JSX.Element;
|
|
7
|
+
export declare const LockIcon: (props: SVGProps<SVGSVGElement>) => import("react").JSX.Element;
|
|
7
8
|
export declare const ExitIcon: (props: SVGProps<SVGSVGElement>) => import("react").JSX.Element;
|