@lerianstudio/sindarian-ui 1.0.0-beta.12 → 1.0.0-beta.13
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.
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../src/components/page/index.tsx"],"names":[],"mappings":"AAEA,wBAAgB,QAAQ,CAAC,EAAE,SAAS,EAAE,GAAG,KAAK,EAAE,EAAE,KAAK,CAAC,cAAc,CAAC,KAAK,CAAC,2CAW5E;AAED,wBAAgB,QAAQ,CAAC,EAAE,SAAS,EAAE,GAAG,KAAK,EAAE,EAAE,KAAK,CAAC,cAAc,CAAC,KAAK,CAAC,
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../src/components/page/index.tsx"],"names":[],"mappings":"AAEA,wBAAgB,QAAQ,CAAC,EAAE,SAAS,EAAE,GAAG,KAAK,EAAE,EAAE,KAAK,CAAC,cAAc,CAAC,KAAK,CAAC,2CAW5E;AAED,wBAAgB,QAAQ,CAAC,EAAE,SAAS,EAAE,GAAG,KAAK,EAAE,EAAE,KAAK,CAAC,cAAc,CAAC,KAAK,CAAC,2CAQ5E;AAED,wBAAgB,WAAW,CAAC,EAC1B,SAAS,EACT,GAAG,KAAK,EACT,EAAE,KAAK,CAAC,cAAc,CAAC,KAAK,CAAC,2CAQ7B"}
|
|
@@ -6,11 +6,11 @@ exports.PageContent = PageContent;
|
|
|
6
6
|
const jsx_runtime_1 = require("react/jsx-runtime");
|
|
7
7
|
const utils_1 = require("../../lib/utils");
|
|
8
8
|
function PageRoot({ className, ...props }) {
|
|
9
|
-
return ((0, jsx_runtime_1.jsx)("div", { "data-slot": "page-root", className: (0, utils_1.cn)('bg-background text-foreground flex h-
|
|
9
|
+
return ((0, jsx_runtime_1.jsx)("div", { "data-slot": "page-root", className: (0, utils_1.cn)('bg-background text-foreground flex h-screen min-h-screen w-full flex-col overflow-y-auto', className), ...props }));
|
|
10
10
|
}
|
|
11
11
|
function PageView({ className, ...props }) {
|
|
12
|
-
return ((0, jsx_runtime_1.jsx)("div", { "data-slot": "page-view", className: (0, utils_1.cn)('
|
|
12
|
+
return ((0, jsx_runtime_1.jsx)("div", { "data-slot": "page-view", className: (0, utils_1.cn)('flex min-h-0 flex-1', className), ...props }));
|
|
13
13
|
}
|
|
14
14
|
function PageContent({ className, ...props }) {
|
|
15
|
-
return ((0, jsx_runtime_1.jsx)("div", { "data-slot": "page-content", className: (0, utils_1.cn)('
|
|
15
|
+
return ((0, jsx_runtime_1.jsx)("div", { "data-slot": "page-content", className: (0, utils_1.cn)('flex grow flex-col overflow-y-auto p-16', className), ...props }));
|
|
16
16
|
}
|
package/dist/globals.css
CHANGED
|
@@ -212,22 +212,6 @@
|
|
|
212
212
|
}
|
|
213
213
|
}
|
|
214
214
|
|
|
215
|
-
@layer base {
|
|
216
|
-
* {
|
|
217
|
-
@apply border-border;
|
|
218
|
-
}
|
|
219
|
-
|
|
220
|
-
html {
|
|
221
|
-
@apply h-full overflow-y-auto;
|
|
222
|
-
font-family: var(--font-inter), Inter, ui-sans-serif, system-ui, sans-serif;
|
|
223
|
-
}
|
|
224
|
-
|
|
225
|
-
body {
|
|
226
|
-
@apply bg-background text-foreground h-full overflow-y-auto;
|
|
227
|
-
font-family: var(--font-inter), Inter, ui-sans-serif, system-ui, sans-serif;
|
|
228
|
-
}
|
|
229
|
-
}
|
|
230
|
-
|
|
231
215
|
.ticket {
|
|
232
216
|
mask: radial-gradient(21px 13px at 50% 102%, #0000 98%, #000) 50%
|
|
233
217
|
calc(100% - 16px) / 64px 100% repeat-x;
|