green-screen-react 0.4.0 → 1.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/dist/styles.css CHANGED
@@ -133,6 +133,7 @@
133
133
  background-color: var(--gs-bg);
134
134
  flex: 1;
135
135
  display: flex;
136
+ justify-content: center;
136
137
  padding: 0;
137
138
  overflow: hidden;
138
139
  }
@@ -191,7 +192,13 @@
191
192
  .gs-input-field {
192
193
  display: inline-block;
193
194
  position: relative;
194
- border-bottom: 2px solid var(--gs-green);
195
+ border-bottom: 1px solid rgba(16, 185, 129, 0.45);
196
+ }
197
+
198
+ .gs-confirmed-field {
199
+ display: inline-block;
200
+ position: relative;
201
+ color: var(--gs-cyan);
195
202
  }
196
203
 
197
204
  /* ── Overlays ─────────────────────────────────────────────────────── */
@@ -230,6 +237,26 @@
230
237
  color: #FF6B00;
231
238
  }
232
239
 
240
+ /* ── Sign-in Hint ────────────────────────────────────────────────── */
241
+
242
+ .gs-signin-hint {
243
+ position: absolute;
244
+ bottom: 0;
245
+ left: 0;
246
+ right: 0;
247
+ padding: 6px 12px;
248
+ background-color: rgba(16, 185, 129, 0.12);
249
+ border-top: 1px solid rgba(16, 185, 129, 0.3);
250
+ color: var(--gs-green);
251
+ font-family: var(--gs-font);
252
+ font-size: 12px;
253
+ text-align: center;
254
+ letter-spacing: 0.05em;
255
+ z-index: 5;
256
+ animation: gs-fade-in 400ms ease-out;
257
+ pointer-events: none;
258
+ }
259
+
233
260
  /* ── Inline Sign-In ──────────────────────────────────────────────── */
234
261
 
235
262
  .gs-signin {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "green-screen-react",
3
- "version": "0.4.0",
3
+ "version": "1.0.1",
4
4
  "description": "Multi-protocol legacy terminal React component (TN5250, TN3270, VT, HP 6530)",
5
5
  "main": "dist/index.js",
6
6
  "module": "dist/index.mjs",
@@ -23,7 +23,7 @@
23
23
  ],
24
24
  "scripts": {
25
25
  "build": "tsup && cp src/styles/terminal.css dist/styles.css",
26
- "dev": "tsup --watch",
26
+ "dev:lib": "tsup --watch",
27
27
  "test": "vitest run",
28
28
  "test:watch": "vitest",
29
29
  "lint": "tsc --noEmit",
@@ -34,6 +34,7 @@
34
34
  "react-dom": ">=18.0.0"
35
35
  },
36
36
  "devDependencies": {
37
+ "green-screen-types": "*",
37
38
  "@testing-library/jest-dom": "^6.6.3",
38
39
  "@testing-library/react": "^16.1.0",
39
40
  "@types/react": "^19.0.0",
@@ -67,7 +68,8 @@
67
68
  "license": "MIT",
68
69
  "repository": {
69
70
  "type": "git",
70
- "url": "https://github.com/visionbridge-solutions/green-screen-react.git"
71
+ "url": "https://github.com/visionbridge-solutions/green-screen-react.git",
72
+ "directory": "packages/react"
71
73
  },
72
74
  "homepage": "https://github.com/visionbridge-solutions/green-screen-react#readme",
73
75
  "bugs": {
package/LICENSE DELETED
@@ -1,21 +0,0 @@
1
- MIT License
2
-
3
- Copyright (c) 2026 VisionBridge
4
-
5
- Permission is hereby granted, free of charge, to any person obtaining a copy
6
- of this software and associated documentation files (the "Software"), to deal
7
- in the Software without restriction, including without limitation the rights
8
- to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9
- copies of the Software, and to permit persons to whom the Software is
10
- furnished to do so, subject to the following conditions:
11
-
12
- The above copyright notice and this permission notice shall be included in all
13
- copies or substantial portions of the Software.
14
-
15
- THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16
- IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17
- FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18
- AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19
- LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20
- OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21
- SOFTWARE.