solid-shim 0.1.0
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/LICENSE +21 -0
- package/README.md +147 -0
- package/dist/index.d.ts +54 -0
- package/dist/index.d.ts.map +1 -0
- package/dist/index.html +44 -0
- package/dist/mashlib.js +3337 -0
- package/dist/styles.d.ts +29 -0
- package/dist/styles.d.ts.map +1 -0
- package/dist/vendors-node_modules_jsonld_lib_jsonld_js.mashlib.js +415 -0
- package/dist/versionInfo.d.ts +12 -0
- package/dist/versionInfo.d.ts.map +1 -0
- package/package.json +59 -0
package/dist/styles.d.ts
ADDED
|
@@ -0,0 +1,29 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* JSS Theme Styles
|
|
3
|
+
* Modern, polished styling for Solid Browser
|
|
4
|
+
*/
|
|
5
|
+
export declare const jssTheme: {
|
|
6
|
+
primary: string;
|
|
7
|
+
primaryDark: string;
|
|
8
|
+
secondary: string;
|
|
9
|
+
gradient: string;
|
|
10
|
+
};
|
|
11
|
+
/**
|
|
12
|
+
* Minimal CSS theme - soft enhancements only
|
|
13
|
+
*/
|
|
14
|
+
export declare const jssThemeCSS = "\n/* ========================================\n JSS Theme - Soft & Minimal\n ======================================== */\n\n:root {\n --jss-primary: #7C3AED;\n --jss-primary-dark: #6D28D9;\n --jss-secondary: #2563EB;\n}\n\n/* System font stack */\nbody {\n font-family: system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;\n}\n\n/* Softer link colors */\na { color: var(--jss-primary-dark); }\n\n/* Selection */\n::selection { background: rgba(124, 58, 237, 0.15); }\n\n/* Focus states */\n:focus-visible {\n outline: 2px solid rgba(124, 58, 237, 0.4) !important;\n outline-offset: 2px !important;\n}\n\n/* Scrollbar */\n::-webkit-scrollbar { width: 8px; height: 8px; }\n::-webkit-scrollbar-track { background: transparent; }\n::-webkit-scrollbar-thumb { background: #D1D5DB; border-radius: 4px; }\n::-webkit-scrollbar-thumb:hover { background: #9CA3AF; }\n";
|
|
15
|
+
/**
|
|
16
|
+
* Inject the JSS theme CSS into the document
|
|
17
|
+
*/
|
|
18
|
+
export declare function injectJssTheme(): void;
|
|
19
|
+
/**
|
|
20
|
+
* Styles for the data browser layout
|
|
21
|
+
*/
|
|
22
|
+
export declare const shimStyle: {
|
|
23
|
+
dbLayout: string;
|
|
24
|
+
dbLayoutHeader: string;
|
|
25
|
+
dbLayoutFooter: string;
|
|
26
|
+
dbLayoutContent: string;
|
|
27
|
+
};
|
|
28
|
+
export default shimStyle;
|
|
29
|
+
//# sourceMappingURL=styles.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"styles.d.ts","sourceRoot":"","sources":["../src/styles.ts"],"names":[],"mappings":"AAAA;;;GAGG;AAGH,eAAO,MAAM,QAAQ;;;;;CAKpB,CAAA;AAED;;GAEG;AACH,eAAO,MAAM,WAAW,62BAiCvB,CAAA;AAED;;GAEG;AACH,wBAAgB,cAAc,IAAI,IAAI,CAQrC;AAED;;GAEG;AACH,eAAO,MAAM,SAAS;;;;;CA+BrB,CAAA;AAED,eAAe,SAAS,CAAA"}
|