nitro-web 0.0.14 → 0.0.15

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.
@@ -32,11 +32,11 @@ export function Signup({ config }: { config: Config}) {
32
32
  <div class="grid grid-cols-2 gap-6">
33
33
  <div>
34
34
  <label for="name">Your Name</label>
35
- <Input name="name" placeholder="E.g. Tony Stark" state={state} onChange={onChange.bind(setState)} />
35
+ <Input name="name" placeholder="E.g. Bruce Wayne" state={state} onChange={onChange.bind(setState)} />
36
36
  </div>
37
37
  <div>
38
38
  <label for="business.name">Company Name</label>
39
- <Input name="business.name" placeholder="E.g. Stark Industries" state={state} onChange={onChange.bind(setState)} />
39
+ <Input name="business.name" placeholder="E.g. Wayne Enterprises" state={state} onChange={onChange.bind(setState)} />
40
40
  </div>
41
41
  </div>
42
42
  <div>
@@ -11,7 +11,7 @@ export function Styleguide({ config }: { config: Config }) {
11
11
  currency: 'nzd', // can be commented too
12
12
  amount: 100,
13
13
  brandColor: '#F3CA5F',
14
- firstName: 'Tony',
14
+ firstName: 'Bruce',
15
15
  date: Date.now(),
16
16
  errors: [
17
17
  { title: 'address', detail: 'Address is required' },
@@ -48,11 +48,11 @@ export function SettingsAccount() {
48
48
  <div class="cols cols-6 cols-gap-3">
49
49
  <div class="col">
50
50
  <label for="firstName">First Name(s)</label>
51
- <Input name="firstName" placeholder="E.g. Tony" state={state} onChange={onChange(setState)} />
51
+ <Input name="firstName" placeholder="E.g. Bruce" state={state} onChange={onChange(setState)} />
52
52
  </div>
53
53
  <div class="col">
54
54
  <label for="lastName">Last Name</label>
55
- <Input name="lastName" placeholder="E.g. Stark" state={state} onChange={onChange(setState)} />
55
+ <Input name="lastName" placeholder="E.g. Wayne" state={state} onChange={onChange(setState)} />
56
56
  </div>
57
57
  <div class="col">
58
58
  <label for="email">Email Address</label>
@@ -80,7 +80,7 @@ export function SettingsBusiness({ config }) {
80
80
  </div>
81
81
  <div class="col">
82
82
  <label for="business.name">Trading Name</label>
83
- <Input name="business.name" placeholder="E.g. Stark Industries" state={state} onChange={onChange(setState)} />
83
+ <Input name="business.name" placeholder="E.g. Wayne Enterprises" state={state} onChange={onChange(setState)} />
84
84
  </div>
85
85
  <div class="col">
86
86
  <Link to="#" class="label-right link2 underline2 is-active">Custom Address</Link>
@@ -72,11 +72,11 @@ export function SettingsTeamMember ({ showModal, setShowModal }) {
72
72
  </div>
73
73
  <div class="col">
74
74
  <label for="firstName">First Name</label>
75
- <Input name="firstName" placeholder="E.g. Tony" state={state} onChange={onChange(setState)} />
75
+ <Input name="firstName" placeholder="E.g. Bruce" state={state} onChange={onChange(setState)} />
76
76
  </div>
77
77
  <div class="col">
78
78
  <label for="lastName">Last Name</label>
79
- <Input name="lastName" placeholder="E.g. Stark" state={state} onChange={onChange(setState)} />
79
+ <Input name="lastName" placeholder="E.g. Wayne" state={state} onChange={onChange(setState)} />
80
80
  </div>
81
81
  <div class="col-12">
82
82
  <label for="message">Invitation Message</label>
package/package.json CHANGED
@@ -3,7 +3,7 @@
3
3
  "description": "Nitro is a battle-tested, modular base project to turbocharge your projects, styled using Tailwind 🚀",
4
4
  "repository": "github:boycce/nitro-web",
5
5
  "homepage": "https://boycce.github.io/nitro-web/",
6
- "version": "0.0.14",
6
+ "version": "0.0.15",
7
7
  "main": "./client/index.ts",
8
8
  "type": "module",
9
9
  "keywords": [
package/readme.md CHANGED
@@ -11,7 +11,7 @@ npm i nitro-web
11
11
  ### Install
12
12
 
13
13
  1. Copy ./_example into your project
14
- 2. In package.json, replace `"nitro-web": "file:.."` with `"nitro-web": "~0.0.14"`
14
+ 2. In package.json, replace `"nitro-web": "file:.."` with `"nitro-web": "~0.0.15"`
15
15
  3. In package.json, replace `"../.eslintrc.json"` with `"./node_modules/nitro-web/.eslintrc.json"`
16
16
  4. Run `npm i`
17
17