@mailwoman/react 0.0.1
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/README.md +12 -0
- package/index.ts +13 -0
- package/out/index.d.ts +13 -0
- package/out/index.d.ts.map +1 -0
- package/out/index.js +13 -0
- package/out/index.js.map +1 -0
- package/package.json +40 -0
package/README.md
ADDED
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
# @mailwoman/react
|
|
2
|
+
|
|
3
|
+
React components + headless hooks for [mailwoman](https://mailwoman.sister.software) — the
|
|
4
|
+
parse/geocode/POI explorers from the docs site, packaged for use in any React app.
|
|
5
|
+
|
|
6
|
+
> **v0.0.1 is a name-reservation placeholder** published to configure npm Trusted
|
|
7
|
+
> Publishing. The first functional release ships with the next mailwoman minor and will
|
|
8
|
+
> include Storybook + browser-mode component tests.
|
|
9
|
+
|
|
10
|
+
## License
|
|
11
|
+
|
|
12
|
+
AGPL-3.0-only OR LicenseRef-Commercial — see the [mailwoman repository](https://github.com/sister-software/mailwoman).
|
package/index.ts
ADDED
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* @copyright Sister Software
|
|
3
|
+
* @license AGPL-3.0
|
|
4
|
+
* @author Teffen Ellis, et al.
|
|
5
|
+
*
|
|
6
|
+
* `@mailwoman/react` — React components + headless hooks for mailwoman.
|
|
7
|
+
*
|
|
8
|
+
* v0.0.1 is a name-reservation placeholder published to configure npm Trusted Publishing.
|
|
9
|
+
* The first functional release extracts the docs-site explorers (parse, geocode, POI) into
|
|
10
|
+
* decomposed, Storybook-tested components with headless hooks.
|
|
11
|
+
*/
|
|
12
|
+
|
|
13
|
+
export const MAILWOMAN_REACT_STATUS = "placeholder" as const
|
package/out/index.d.ts
ADDED
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* @copyright Sister Software
|
|
3
|
+
* @license AGPL-3.0
|
|
4
|
+
* @author Teffen Ellis, et al.
|
|
5
|
+
*
|
|
6
|
+
* `@mailwoman/react` — React components + headless hooks for mailwoman.
|
|
7
|
+
*
|
|
8
|
+
* v0.0.1 is a name-reservation placeholder published to configure npm Trusted Publishing.
|
|
9
|
+
* The first functional release extracts the docs-site explorers (parse, geocode, POI) into
|
|
10
|
+
* decomposed, Storybook-tested components with headless hooks.
|
|
11
|
+
*/
|
|
12
|
+
export declare const MAILWOMAN_REACT_STATUS: "placeholder";
|
|
13
|
+
//# sourceMappingURL=index.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../index.ts"],"names":[],"mappings":"AAAA;;;;;;;;;;GAUG;AAEH,eAAO,MAAM,sBAAsB,EAAG,aAAsB,CAAA"}
|
package/out/index.js
ADDED
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* @copyright Sister Software
|
|
3
|
+
* @license AGPL-3.0
|
|
4
|
+
* @author Teffen Ellis, et al.
|
|
5
|
+
*
|
|
6
|
+
* `@mailwoman/react` — React components + headless hooks for mailwoman.
|
|
7
|
+
*
|
|
8
|
+
* v0.0.1 is a name-reservation placeholder published to configure npm Trusted Publishing.
|
|
9
|
+
* The first functional release extracts the docs-site explorers (parse, geocode, POI) into
|
|
10
|
+
* decomposed, Storybook-tested components with headless hooks.
|
|
11
|
+
*/
|
|
12
|
+
export const MAILWOMAN_REACT_STATUS = "placeholder";
|
|
13
|
+
//# sourceMappingURL=index.js.map
|
package/out/index.js.map
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"index.js","sourceRoot":"","sources":["../index.ts"],"names":[],"mappings":"AAAA;;;;;;;;;;GAUG;AAEH,MAAM,CAAC,MAAM,sBAAsB,GAAG,aAAsB,CAAA"}
|
package/package.json
ADDED
|
@@ -0,0 +1,40 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@mailwoman/react",
|
|
3
|
+
"version": "0.0.1",
|
|
4
|
+
"description": "React components + headless hooks for mailwoman — parse/geocode/POI explorers, Storybook-tested, Docusaurus-independent. 0.0.1 is a name-reservation placeholder; the first functional release ships with the next mailwoman minor.",
|
|
5
|
+
"license": "AGPL-3.0-only OR LicenseRef-Commercial",
|
|
6
|
+
"repository": {
|
|
7
|
+
"type": "git",
|
|
8
|
+
"url": "https://github.com/sister-software/mailwoman.git",
|
|
9
|
+
"directory": "react"
|
|
10
|
+
},
|
|
11
|
+
"files": [
|
|
12
|
+
"out/**/*.js",
|
|
13
|
+
"out/**/*.js.map",
|
|
14
|
+
"out/**/*.d.ts",
|
|
15
|
+
"out/**/*.d.ts.map",
|
|
16
|
+
"*.ts",
|
|
17
|
+
"*.tsx",
|
|
18
|
+
"**/*.ts",
|
|
19
|
+
"**/*.tsx",
|
|
20
|
+
"!*.test.ts",
|
|
21
|
+
"!*.test.tsx",
|
|
22
|
+
"!**/*.test.ts",
|
|
23
|
+
"!**/*.test.tsx"
|
|
24
|
+
],
|
|
25
|
+
"type": "module",
|
|
26
|
+
"exports": {
|
|
27
|
+
"./package.json": "./package.json",
|
|
28
|
+
".": {
|
|
29
|
+
"node": "./index.ts",
|
|
30
|
+
"default": "./out/index.js",
|
|
31
|
+
"types": "./out/index.d.ts"
|
|
32
|
+
}
|
|
33
|
+
},
|
|
34
|
+
"publishConfig": {
|
|
35
|
+
"access": "public"
|
|
36
|
+
},
|
|
37
|
+
"peerDependencies": {
|
|
38
|
+
"react": ">=18"
|
|
39
|
+
}
|
|
40
|
+
}
|