325 lines
7.0 KiB
JavaScript
325 lines
7.0 KiB
JavaScript
'use client'
|
|
"use strict";
|
|
var __defProp = Object.defineProperty;
|
|
var __getOwnPropDesc = Object.getOwnPropertyDescriptor;
|
|
var __getOwnPropNames = Object.getOwnPropertyNames;
|
|
var __hasOwnProp = Object.prototype.hasOwnProperty;
|
|
var __export = (target, all) => {
|
|
for (var name in all)
|
|
__defProp(target, name, { get: all[name], enumerable: true });
|
|
};
|
|
var __copyProps = (to, from, except, desc) => {
|
|
if (from && typeof from === "object" || typeof from === "function") {
|
|
for (let key of __getOwnPropNames(from))
|
|
if (!__hasOwnProp.call(to, key) && key !== except)
|
|
__defProp(to, key, { get: () => from[key], enumerable: !(desc = __getOwnPropDesc(from, key)) || desc.enumerable });
|
|
}
|
|
return to;
|
|
};
|
|
var __toCommonJS = (mod) => __copyProps(__defProp({}, "__esModule", { value: true }), mod);
|
|
|
|
// src/index.ts
|
|
var src_exports = {};
|
|
__export(src_exports, {
|
|
CSSPolyfill: () => CSSPolyfill,
|
|
CSSReset: () => CSSReset
|
|
});
|
|
module.exports = __toCommonJS(src_exports);
|
|
|
|
// src/css-reset.tsx
|
|
var import_react = require("@emotion/react");
|
|
var import_jsx_runtime = require("react/jsx-runtime");
|
|
var css = String.raw;
|
|
var vhPolyfill = css`
|
|
:root,
|
|
:host {
|
|
--chakra-vh: 100vh;
|
|
}
|
|
|
|
@supports (height: -webkit-fill-available) {
|
|
:root,
|
|
:host {
|
|
--chakra-vh: -webkit-fill-available;
|
|
}
|
|
}
|
|
|
|
@supports (height: -moz-fill-available) {
|
|
:root,
|
|
:host {
|
|
--chakra-vh: -moz-fill-available;
|
|
}
|
|
}
|
|
|
|
@supports (height: 100dvh) {
|
|
:root,
|
|
:host {
|
|
--chakra-vh: 100dvh;
|
|
}
|
|
}
|
|
`;
|
|
var CSSPolyfill = () => /* @__PURE__ */ (0, import_jsx_runtime.jsx)(import_react.Global, { styles: vhPolyfill });
|
|
var CSSReset = ({ scope = "" }) => /* @__PURE__ */ (0, import_jsx_runtime.jsx)(
|
|
import_react.Global,
|
|
{
|
|
styles: css`
|
|
html {
|
|
line-height: 1.5;
|
|
-webkit-text-size-adjust: 100%;
|
|
font-family: system-ui, sans-serif;
|
|
-webkit-font-smoothing: antialiased;
|
|
text-rendering: optimizeLegibility;
|
|
-moz-osx-font-smoothing: grayscale;
|
|
touch-action: manipulation;
|
|
}
|
|
|
|
body {
|
|
position: relative;
|
|
min-height: 100%;
|
|
margin: 0;
|
|
font-feature-settings: "kern";
|
|
}
|
|
|
|
${scope} :where(*, *::before, *::after) {
|
|
border-width: 0;
|
|
border-style: solid;
|
|
box-sizing: border-box;
|
|
word-wrap: break-word;
|
|
}
|
|
|
|
main {
|
|
display: block;
|
|
}
|
|
|
|
${scope} hr {
|
|
border-top-width: 1px;
|
|
box-sizing: content-box;
|
|
height: 0;
|
|
overflow: visible;
|
|
}
|
|
|
|
${scope} :where(pre, code, kbd,samp) {
|
|
font-family: SFMono-Regular, Menlo, Monaco, Consolas, monospace;
|
|
font-size: 1em;
|
|
}
|
|
|
|
${scope} a {
|
|
background-color: transparent;
|
|
color: inherit;
|
|
text-decoration: inherit;
|
|
}
|
|
|
|
${scope} abbr[title] {
|
|
border-bottom: none;
|
|
text-decoration: underline;
|
|
-webkit-text-decoration: underline dotted;
|
|
text-decoration: underline dotted;
|
|
}
|
|
|
|
${scope} :where(b, strong) {
|
|
font-weight: bold;
|
|
}
|
|
|
|
${scope} small {
|
|
font-size: 80%;
|
|
}
|
|
|
|
${scope} :where(sub,sup) {
|
|
font-size: 75%;
|
|
line-height: 0;
|
|
position: relative;
|
|
vertical-align: baseline;
|
|
}
|
|
|
|
${scope} sub {
|
|
bottom: -0.25em;
|
|
}
|
|
|
|
${scope} sup {
|
|
top: -0.5em;
|
|
}
|
|
|
|
${scope} img {
|
|
border-style: none;
|
|
}
|
|
|
|
${scope} :where(button, input, optgroup, select, textarea) {
|
|
font-family: inherit;
|
|
font-size: 100%;
|
|
line-height: 1.15;
|
|
margin: 0;
|
|
}
|
|
|
|
${scope} :where(button, input) {
|
|
overflow: visible;
|
|
}
|
|
|
|
${scope} :where(button, select) {
|
|
text-transform: none;
|
|
}
|
|
|
|
${scope} :where(
|
|
button::-moz-focus-inner,
|
|
[type="button"]::-moz-focus-inner,
|
|
[type="reset"]::-moz-focus-inner,
|
|
[type="submit"]::-moz-focus-inner
|
|
) {
|
|
border-style: none;
|
|
padding: 0;
|
|
}
|
|
|
|
${scope} fieldset {
|
|
padding: 0.35em 0.75em 0.625em;
|
|
}
|
|
|
|
${scope} legend {
|
|
box-sizing: border-box;
|
|
color: inherit;
|
|
display: table;
|
|
max-width: 100%;
|
|
padding: 0;
|
|
white-space: normal;
|
|
}
|
|
|
|
${scope} progress {
|
|
vertical-align: baseline;
|
|
}
|
|
|
|
${scope} textarea {
|
|
overflow: auto;
|
|
}
|
|
|
|
${scope} :where([type="checkbox"], [type="radio"]) {
|
|
box-sizing: border-box;
|
|
padding: 0;
|
|
}
|
|
|
|
${scope} input[type="number"]::-webkit-inner-spin-button,
|
|
${scope} input[type="number"]::-webkit-outer-spin-button {
|
|
-webkit-appearance: none !important;
|
|
}
|
|
|
|
${scope} input[type="number"] {
|
|
-moz-appearance: textfield;
|
|
}
|
|
|
|
${scope} input[type="search"] {
|
|
-webkit-appearance: textfield;
|
|
outline-offset: -2px;
|
|
}
|
|
|
|
${scope} input[type="search"]::-webkit-search-decoration {
|
|
-webkit-appearance: none !important;
|
|
}
|
|
|
|
${scope} ::-webkit-file-upload-button {
|
|
-webkit-appearance: button;
|
|
font: inherit;
|
|
}
|
|
|
|
${scope} details {
|
|
display: block;
|
|
}
|
|
|
|
${scope} summary {
|
|
display: list-item;
|
|
}
|
|
|
|
template {
|
|
display: none;
|
|
}
|
|
|
|
[hidden] {
|
|
display: none !important;
|
|
}
|
|
|
|
${scope} :where(
|
|
blockquote,
|
|
dl,
|
|
dd,
|
|
h1,
|
|
h2,
|
|
h3,
|
|
h4,
|
|
h5,
|
|
h6,
|
|
hr,
|
|
figure,
|
|
p,
|
|
pre
|
|
) {
|
|
margin: 0;
|
|
}
|
|
|
|
${scope} button {
|
|
background: transparent;
|
|
padding: 0;
|
|
}
|
|
|
|
${scope} fieldset {
|
|
margin: 0;
|
|
padding: 0;
|
|
}
|
|
|
|
${scope} :where(ol, ul) {
|
|
margin: 0;
|
|
padding: 0;
|
|
}
|
|
|
|
${scope} textarea {
|
|
resize: vertical;
|
|
}
|
|
|
|
${scope} :where(button, [role="button"]) {
|
|
cursor: pointer;
|
|
}
|
|
|
|
${scope} button::-moz-focus-inner {
|
|
border: 0 !important;
|
|
}
|
|
|
|
${scope} table {
|
|
border-collapse: collapse;
|
|
}
|
|
|
|
${scope} :where(h1, h2, h3, h4, h5, h6) {
|
|
font-size: inherit;
|
|
font-weight: inherit;
|
|
}
|
|
|
|
${scope} :where(button, input, optgroup, select, textarea) {
|
|
padding: 0;
|
|
line-height: inherit;
|
|
color: inherit;
|
|
}
|
|
|
|
${scope} :where(img, svg, video, canvas, audio, iframe, embed, object) {
|
|
display: block;
|
|
}
|
|
|
|
${scope} :where(img, video) {
|
|
max-width: 100%;
|
|
height: auto;
|
|
}
|
|
|
|
[data-js-focus-visible]
|
|
:focus:not([data-focus-visible-added]):not(
|
|
[data-focus-visible-disabled]
|
|
) {
|
|
outline: none;
|
|
box-shadow: none;
|
|
}
|
|
|
|
${scope} select::-ms-expand {
|
|
display: none;
|
|
}
|
|
|
|
${vhPolyfill}
|
|
`
|
|
}
|
|
);
|
|
// Annotate the CommonJS export names for ESM import in node:
|
|
0 && (module.exports = {
|
|
CSSPolyfill,
|
|
CSSReset
|
|
});
|
|
//# sourceMappingURL=index.js.map
|