@mrts/soltw 0.2.16

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.
@@ -0,0 +1,11 @@
1
+ 'use strict';
2
+
3
+ var web = require('solid-js/web');
4
+
5
+ var _tmpl$ = /*#__PURE__*/web.template(`<div>S O L T W`);
6
+ const SolTw = props => {
7
+ return _tmpl$();
8
+ };
9
+
10
+ exports.SolTw = SolTw;
11
+ //# sourceMappingURL=index.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"index.js","sources":["../../src/soltw.tsx"],"sourcesContent":["import type { Component } from \"solid-js\";\n\ntype TProps = {}\n\nexport const SolTw : Component<TProps> = (props) =>{\n return <div>S O L T W</div>\n}\n\n\n"],"names":["SolTw","props","_tmpl$"],"mappings":";;;;;AAIO,MAAMA,KAAyB,GAAIC,KAAK,IAAI;AACjD,EAAA,OAAAC,MAAA,EAAA;AACF;;;;"}
@@ -0,0 +1,9 @@
1
+ import { template } from 'solid-js/web';
2
+
3
+ var _tmpl$ = /*#__PURE__*/template(`<div>S O L T W`);
4
+ const SolTw = props => {
5
+ return _tmpl$();
6
+ };
7
+
8
+ export { SolTw };
9
+ //# sourceMappingURL=index.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"index.js","sources":["../../src/soltw.tsx"],"sourcesContent":["import type { Component } from \"solid-js\";\n\ntype TProps = {}\n\nexport const SolTw : Component<TProps> = (props) =>{\n return <div>S O L T W</div>\n}\n\n\n"],"names":["SolTw","props","_tmpl$"],"mappings":";;;AAIO,MAAMA,KAAyB,GAAIC,KAAK,IAAI;AACjD,EAAA,OAAAC,MAAA,EAAA;AACF;;;;"}
@@ -0,0 +1 @@
1
+ export * from "./soltw.js";
@@ -0,0 +1,3 @@
1
+ export const SolTw = (props) => {
2
+ return <div>S O L T W</div>;
3
+ };
@@ -0,0 +1 @@
1
+ export * from "./soltw.js";
@@ -0,0 +1,4 @@
1
+ import type { Component } from "solid-js";
2
+ type TProps = {};
3
+ export declare const SolTw: Component<TProps>;
4
+ export {};
package/package.json ADDED
@@ -0,0 +1,38 @@
1
+ {
2
+ "name": "@mrts/soltw",
3
+ "description": "S O L T W : SolidJS + tailwindcss ui components",
4
+ "version": "0.2.16",
5
+ "type": "module",
6
+ "main": "dist/cjs/index.js",
7
+ "module": "dist/esm/index.js",
8
+ "types": "dist/types/index.d.ts",
9
+ "scripts": {
10
+ "build": "rollup -c",
11
+ "build:watch": "rollup -c --watch",
12
+ "test": "node --import tsx --test test/**/*.test.ts"
13
+ },
14
+ "author": "microu",
15
+ "license": "MIT",
16
+ "dependencies": {
17
+ "solid-js": "^1.9.4",
18
+ "tailwind-merge": "^3.0.1"
19
+ },
20
+ "devDependencies": {
21
+ "@types/node": "^22.13.0",
22
+ "esbuild": "^0.25.0",
23
+ "rollup": "^4.40.0",
24
+ "rollup-preset-solid": "^2.0.1",
25
+ "tailwindcss": "^4.1.3",
26
+ "tsx": "^4.19.2",
27
+ "typescript": "^5.7.3"
28
+ },
29
+ "files": [
30
+ "dist",
31
+ "LICENSE",
32
+ "README.md"
33
+ ],
34
+ "publishConfig": {
35
+ "access": "public"
36
+ },
37
+ "gitHead": "feb3141d830630d5c3fb4f29e2bf98bbffeca9ec"
38
+ }